diff --git a/movie_sentiment_analysis using linear regression.ipynb b/movie_sentiment_analysis using linear regression.ipynb new file mode 100644 index 0000000..ff6a270 --- /dev/null +++ b/movie_sentiment_analysis using linear regression.ipynb @@ -0,0 +1,812 @@ +{ + "nbformat": 4, + "nbformat_minor": 0, + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.3" + }, + "colab": { + "name": "movie_sentiment_analysis.ipynb", + "provenance": [], + "collapsed_sections": [] + } + }, + "cells": [ + { + "cell_type": "markdown", + "metadata": { + "id": "kmSwfTD1xfu1", + "colab_type": "text" + }, + "source": [ + "# NLP - movie review sentiment analysis in python" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "f5vKzXTsxfvN", + "colab_type": "text" + }, + "source": [ + "## Data Facts and Import \n", + "First download movie dataset from kaggle and uplod the file." + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "n-_DF4emCdC9", + "colab_type": "code", + "colab": {} + }, + "source": [ + "import pandas as pd \n", + "\n", + "Reviewdata = pd.read_csv('/train.tsv',sep='\\t')\n", + "\n", + "#Data Credit - https://www.kaggle.com/anu0012/hotel-review/data" + ], + "execution_count": 4, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "WKJfZX4JxfwI", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 204 + }, + "outputId": "13733e23-aa57-4306-eadd-51f726502b45" + }, + "source": [ + "#Reviewdata.shape\n", + "#Reviewdata.head()\n", + "Reviewdata.info()" + ], + "execution_count": 5, + "outputs": [ + { + "output_type": "stream", + "text": [ + "\n", + "RangeIndex: 156060 entries, 0 to 156059\n", + "Data columns (total 4 columns):\n", + " # Column Non-Null Count Dtype \n", + "--- ------ -------------- ----- \n", + " 0 PhraseId 156060 non-null int64 \n", + " 1 SentenceId 156060 non-null int64 \n", + " 2 Phrase 156060 non-null object\n", + " 3 Sentiment 156060 non-null int64 \n", + "dtypes: int64(3), object(1)\n", + "memory usage: 4.8+ MB\n" + ], + "name": "stdout" + } + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "ddPn3gi-xfwW", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 142 + }, + "outputId": "7e07c64f-3852-47dc-b405-a5430af29d62" + }, + "source": [ + "Reviewdata.describe().transpose()" + ], + "execution_count": 6, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
countmeanstdmin25%50%75%max
PhraseId156060.078030.50000045050.7858421.039015.7578030.5117045.25156060.0
SentenceId156060.04079.7327442502.7643941.01861.754017.06244.008544.0
Sentiment156060.02.0635780.8938320.02.002.03.004.0
\n", + "
" + ], + "text/plain": [ + " count mean std ... 50% 75% max\n", + "PhraseId 156060.0 78030.500000 45050.785842 ... 78030.5 117045.25 156060.0\n", + "SentenceId 156060.0 4079.732744 2502.764394 ... 4017.0 6244.00 8544.0\n", + "Sentiment 156060.0 2.063578 0.893832 ... 2.0 3.00 4.0\n", + "\n", + "[3 rows x 8 columns]" + ] + }, + "metadata": { + "tags": [] + }, + "execution_count": 6 + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "klOogvqXxfwj", + "colab_type": "text" + }, + "source": [ + "## Data visualization using matplotlib\n" + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "HJSFECKvxfw1", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 414 + }, + "outputId": "34f8e605-d8e9-4455-a5ad-02dd642f9c6e" + }, + "source": [ + "### Checking for the Distribution of Default ###\n", + "import matplotlib.pyplot as plt\n", + "%matplotlib inline\n", + "print('Percentage for default\\n')\n", + "print(round(Reviewdata.Sentiment.value_counts(normalize=True)*100,2))\n", + "round(Reviewdata.Sentiment.value_counts(normalize=True)*100,2).plot(kind='bar')\n", + "plt.title('Percentage Distributions by review type')\n", + "plt.show()" + ], + "execution_count": 7, + "outputs": [ + { + "output_type": "stream", + "text": [ + "Percentage for default\n", + "\n", + "2 50.99\n", + "3 21.10\n", + "1 17.48\n", + "4 5.90\n", + "0 4.53\n", + "Name: Sentiment, dtype: float64\n" + ], + "name": "stdout" + }, + { + "output_type": "display_data", + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAXAAAAEFCAYAAAD69rxNAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjIsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+WH4yJAAAWFklEQVR4nO3de7hddX3n8fc3hHBVLkOaCQQSFUTADqgR9PFSBClBVNAiI6MSFQdtZcRHp4K0zmBbn+IzThk6U2tTLwQvXIplgtDKUDCoo6AJ4AWjFTCQYG5AGEAQDXznj9/vmOXOOTk7yTlnn194v57nPGet9Vt7re9ea+3PXvu31j4nMhNJUnumDLoASdLWMcAlqVEGuCQ1ygCXpEYZ4JLUKANckhplgGvCRMQBEfFoROwwRsv7VER8pA4fHRErx2K5dXmviIifjNXy+lzn4oh410Susx8RcUdEHD3oOrQpA3wLRMTyiHi8htCaiLg4InYfdF1DIuL8iPjCgNb99oh4sm6bRyPiZxHxuYh47tA8mXlvZu6emU/2saxvjrbOzHxPZv75GNWfEXFgZ9nfyMyDx2LZrcvMwzJz8Xgtv9/9rU0Z4FvudZm5O/BCYC7wp1vy4Ci21+3+7bpt9gBeDTwOLI2I54/1isbqLP7pICKmDroGjZPM9KfPH2A58OrO+H8DrqnDLwG+BTwEfA84ujPfYuBjwP+lhNqBwGHA9cCDwBrgvDrvFOBc4C7gAeAKYO/aNgdIYD5wL3A/8Ce1bR7wK+DXwKPA9+r0dwDLgEeAu4F39zynDwGrgJ8D76rLP7C27QR8oq5rDfApYJcRts3bgW8OM/0a4Mqe+qd2HnN3re1nwFuAQ4BfAk/W5/FQnfdi4G+BfwJ+QXmDuBj4i9p+NLASOK9ul+XAW3r2wbuGqxf4eq3rF3Wd/35oeZ35D6nLeAi4A3h9p+1i4G+Aa+tzuQV4Tm0L4EJgLfAw8APg+SNsw8XAXwLfqfMu6uz7a4H/1DP/94E3DLOcoe18Rt13X6/T31mPhfXAdcDsOv1vgU/0LGMR8IHe457NH58LgQ/W4f1qDe+t48+hHOtTetazyf4GXkw53nbozPdGNh7T5wNXApfX7X0rcHhn3n2BLwPrKMfV+wadHeOWSYMuoKWfngN5//pC/vN6sD4AvKYe4MfV8el13sX1hXQYMBV4BiU0PwjsXMePqvOeDdwMzKIE6N8Bl9a2oRfm3wO7AIcDTwCH1PbzgS/01HxiffEE8HvAY8ALa9s8YHWta1fgC/x2gF8IXA3sXWv8CvCXI2ybtzN8gL8TWNNT/1RgN0pIHVzbZgKHjbQsSkj+P+BldRvvzKYBvgH4q7rdfo8SyAd39sGwAV7Hf/O8O8tbWYd3BO6kvDlMA46hBMfBndoeAI6sz+2LwGW17XhgKbBn3QeHADNH2IaLgfuA59ft8+Wh/QmcCtzSmffwus5pwyxnaDtfUpezC3BSfQ6H1Br/FPhWnf+VwAog6vhelBONfYc57jd3fL4T+Eod/g+UkL+807ao32MH+BFwQmf8Kja+OZxPOVE5pe6b/0wJ6h3rsbEU+C91Xz2bcpJw/KDzY1wyadAFtPRTD+Shs4R7gE/WF8c5wOd75r0OmF+HFwN/1mk7DbhthHUsA47tjM+sB+vUzgtzVqf9O8Cb6/D59AT4MMv/38DZdfizdAKZ8skg6++gBOBzOu0vBX42wnI3eRHW6fOAX9fhofqHAvwh4A/oOasf4QV9MXDJMNN6A3y3TvsVwEc6+2BrA/wVlDe6KZ32S4HzO3V8utP2GuDHdfgY4F8pn9Cm9G6fnuezGLigM34o5VPVDpQ3rPXAQbXtE8AnR1jO0HZ+dmfaPwNndManUN7MZ9d9fS/wytr2H4Ebe477oQDf3PH5nFrjFMqntXd3tuFC6hl9P8cO5TX1xTq8d611Zuc4v7nnuayq++ko4N6eZX0Y+NxY58Fk+Nle+2LH08mZuWdmzs7MP8rMxykvgjdFxENDP8DLKQf3kBWd4f0pZyfDmQ1c1VnOMsrHyxmdeVZ3hh8DRryQGhEnRMTNEfFgXd5rgH1q8749dXWHp1POypd2avlqnb4l9qN8dP4tmfkLSlfFe4BVEXFtRDxvlGWtGKV9fV3ukHsoz3Fb7QusyMynepa9X2d82H2SmTcC/4vSxbI2IhZExDM3s67uc7yHcla5T2b+ktJl8NZ6DeU04POj1N1d1mzgos6+fJAS3PtlSbnL6jKhnD1/cYRljnh8ZuZdlDf9Iyhheg3w84g4mPKJ6KZR6u36AvC6iNiN8unjG5m5arjnVvfLSsp+mg3s2/NaPI/ffv1sNwzwsbGCcga+Z+dnt8y8oDNP9sz/7M0s64SeZe2cmff1UUd3HUTETpSP4Z+gvMD2pPQhR51lFeWj8JD9O8P3Uz5GH9apY48sFym3xBuAbwxbbOZ1mXkc5Y3ux5SuoU2eR/cho6xrr/qCH3IApW8fSrDs2mn7t6Msq+vnwP49F58PoHR3jCoz/zozX0Q5o34u8Mebmb27Dw6gnN3eX8cXUq4THAs8lpnfHm3VneEVlOsf3eNql8z8Vm2/FDglImZTzmK/PMIyRzs+b6J0bUyr026iXLPZC7i9jzrLhPLYb1P6vt/Gpm9Wv9lOdb/MouynFZRPid36npGZrxlh3U0zwMfG0NnC8RGxQ0TsXO9LnjXC/NcAMyPi/RGxU0Q8IyKOqm2fAj5WX0hExPSIOKnPOtYAczpBM43ST7kO2BARJwC/35n/CuAdEXFIROwKfGSooZ7V/D1wYUT8Tq1lv4g4frQi6jZ4VkT8T0pXxEeHmWdGRJxUA/cJStfU0BnuGmBWREzr83l3fTQipkXEK4DXAv9Qp98OvDEidq23C57R87g1jPymegvlrPpDEbFjvSf6dZSz1s2KiBdHxFERsSPlTeSXbHyew3lrRBxa98efUS4APwlQA/sp4L8z+tl3r08BH46Iw2pde0TEm4YaM/M2yhvFp4HrMvOhzSxnc8fnTcBZlAvDULqFzqJ0kYx0++hI+/sSykX23wX+saftRRHxxnqHzfspx9DNlC7FRyLinIjYpR6Lz4+IF4+w7qYZ4GMgM1dQLhKdRwnLFZSzrGG3b2Y+QrnQ+TrKR++fAq+qzRdRLhz+n4h4hHJQHjXccoYxFFYPRMStdT3vowT1espH46s7dfwz8NfA1ygXuG6uTU/U3+cMTY+Ih4F/ATZ3b/RLI+JRysXJxcAzgRdn5g+GmXcK8AHKWdODlI/Yf1jbbqRcIF4dEfcP89iRrK7P8+eULoD3ZOaPa9uFlP7kNZQz2d4ugvOBhfVj96ndhsz8FWVfnUAJuU8Cp3eWvTnPpLwRrqd0iTxAuXtpJJ+n9KmvpvR7v6+n/RJKoG3R/f6ZeRXwceCyui9/SHk+XV+i3N3zpc0sarTj8ybKBe+hAP8m5ZPP1xnZSPv7KmqXTWY+1vOYRZQuuPWUM/Q3Zuav65vEayndOD9j45vSHptZf7OGrjpLRMQhlBf2Tpm5YdD1aFMRcTpwZma+fNC1TISIuIvS9fMvnWnnUy44v3VghU0SnoE/zUXEG2o3zl6UM7SvGN6TU+1W+SNgwaBrmQgR8QeU/vEbB13LZGWA692UL5ncRbmb4A83P7sGoV57WEfpAtpcF8d2ISIWU75g9N6eu3/UYReKJDXKM3BJapQBLkmNmtC/UrbPPvvknDlzJnKVktS8pUuX3p+Zm3wLekIDfM6cOSxZsmQiVylJzYuIe4abbheKJDXKAJekRhngktQoA1ySGmWAS1KjDHBJapQBLkmNMsAlqVET+kWesTDn3GsHXQLLLzhx0CVIUn8BHhHLgUcof250Q2bOjYi9Kf9kdQ7lv1afmpnrx6dMSVKvLelCeVVmHpGZc+v4ucANmXkQcEMdlyRNkG3pAz+J8r8Fqb9P3vZyJEn96jfAk/JPTJdGxJl12ozMXFWHVwMzhntgRJwZEUsiYsm6deu2sVxJ0pB+L2K+PDPvi4jfAa6PiN/6b9yZmREx7L/2ycwF1P/hN3fuXP/9jySNkb7OwDPzvvp7LXAVcCSwJiJmAtTfa8erSEnSpkYN8IjYLSKeMTQM/D7wQ+BqYH6dbT6waLyKlCRtqp8ulBnAVRExNP+XMvOrEfFd4IqIOAO4Bzh1/MqUJPUaNcAz827g8GGmPwAcOx5FSZJG51fpJalRBrgkNcoAl6RGGeCS1CgDXJIaZYBLUqMMcElqlAEuSY0ywCWpUQa4JDXKAJekRhngktQoA1ySGmWAS1KjDHBJapQBLkmNMsAlqVEGuCQ1ygCXpEYZ4JLUKANckhplgEtSowxwSWqUAS5JjTLAJalRBrgkNcoAl6RGGeCS1CgDXJIaZYBLUqMMcElqVN8BHhE7RMRtEXFNHX9WRNwSEXdGxOURMW38ypQk9dqSM/CzgWWd8Y8DF2bmgcB64IyxLEyStHl9BXhEzAJOBD5dxwM4BriyzrIQOHk8CpQkDa/fM/D/AXwIeKqO/xvgoczcUMdXAvuNcW2SpM0YNcAj4rXA2sxcujUriIgzI2JJRCxZt27d1ixCkjSMfs7AXwa8PiKWA5dRuk4uAvaMiKl1nlnAfcM9ODMXZObczJw7ffr0MShZkgR9BHhmfjgzZ2XmHODNwI2Z+Rbga8Apdbb5wKJxq1KStIltuQ/8HOADEXEnpU/8M2NTkiSpH1NHn2WjzFwMLK7DdwNHjn1JkqR++E1MSWqUAS5JjTLAJalRBrgkNcoAl6RGGeCS1CgDXJIaZYBLUqMMcElqlAEuSY0ywCWpUQa4JDXKAJekRhngktQoA1ySGmWAS1KjDHBJapQBLkmNMsAlqVEGuCQ1ygCXpEYZ4JLUKANckhplgEtSowxwSWqUAS5JjTLAJalRBrgkNcoAl6RGGeCS1CgDXJIaZYBLUqNGDfCI2DkivhMR34uIOyLio3X6syLiloi4MyIuj4hp41+uJGlIP2fgTwDHZObhwBHAvIh4CfBx4MLMPBBYD5wxfmVKknqNGuBZPFpHd6w/CRwDXFmnLwROHpcKJUnD6qsPPCJ2iIjbgbXA9cBdwEOZuaHOshLYb3xKlCQNp68Az8wnM/MIYBZwJPC8flcQEWdGxJKIWLJu3bqtLFOS1GuL7kLJzIeArwEvBfaMiKm1aRZw3wiPWZCZczNz7vTp07epWEnSRv3chTI9Ivasw7sAxwHLKEF+Sp1tPrBovIqUJG1q6uizMBNYGBE7UAL/isy8JiJ+BFwWEX8B3AZ8ZhzrlCT1GDXAM/P7wAuGmX43pT9ckjQAfhNTkhplgEtSowxwSWqUAS5JjTLAJalRBrgkNcoAl6RGGeCS1CgDXJIaZYBLUqMMcElqlAEuSY0ywCWpUQa4JDXKAJekRhngktQoA1ySGmWAS1KjDHBJapQBLkmNMsAlqVEGuCQ1ygCXpEYZ4JLUKANckhplgEtSowxwSWqUAS5JjTLAJalRBrgkNcoAl6RGTR1thojYH7gEmAEksCAzL4qIvYHLgTnAcuDUzFw/fqWq15xzrx10CSy/4MRBlyA9bfVzBr4B+GBmHgq8BHhvRBwKnAvckJkHATfUcUnSBBk1wDNzVWbeWocfAZYB+wEnAQvrbAuBk8erSEnSpraoDzwi5gAvAG4BZmTmqtq0mtLFIkmaIH0HeETsDnwZeH9mPtxty8yk9I8P97gzI2JJRCxZt27dNhUrSdqorwCPiB0p4f3FzPzHOnlNRMys7TOBtcM9NjMXZObczJw7ffr0sahZkkQfAR4RAXwGWJaZf9VpuhqYX4fnA4vGvjxJ0khGvY0QeBnwNuAHEXF7nXYecAFwRUScAdwDnDo+JUqShjNqgGfmN4EYofnYsS1HktQvv4kpSY0ywCWpUQa4JDXKAJekRhngktSofm4jlCa1yfBXGcG/zKiJ5xm4JDXKAJekRhngktQoA1ySGmWAS1KjDHBJapQBLkmNMsAlqVEGuCQ1ygCXpEYZ4JLUKANckhplgEtSowxwSWqUAS5JjTLAJalRBrgkNcoAl6RGGeCS1CgDXJIaZYBLUqMMcElqlAEuSY0ywCWpUQa4JDXKAJekRo0a4BHx2YhYGxE/7EzbOyKuj4if1t97jW+ZkqRe/ZyBXwzM65l2LnBDZh4E3FDHJUkTaNQAz8yvAw/2TD4JWFiHFwInj3FdkqRRbG0f+IzMXFWHVwMzxqgeSVKftvkiZmYmkCO1R8SZEbEkIpasW7duW1cnSaq2NsDXRMRMgPp77UgzZuaCzJybmXOnT5++lauTJPXa2gC/Gphfh+cDi8amHElSv/q5jfBS4NvAwRGxMiLOAC4AjouInwKvruOSpAk0dbQZMvO0EZqOHeNaJElbwG9iSlKjDHBJapQBLkmNMsAlqVEGuCQ1ygCXpEYZ4JLUKANckhplgEtSowxwSWqUAS5JjRr1b6FIasecc68ddAkALL/gxEGX8LTgGbgkNcoAl6RGGeCS1CgDXJIaZYBLUqO8C0XSdunpcEeOZ+CS1CgDXJIaZYBLUqMMcElqlAEuSY0ywCWpUQa4JDXKAJekRhngktQoA1ySGmWAS1KjDHBJapQBLkmNMsAlqVHbFOARMS8ifhIRd0bEuWNVlCRpdFsd4BGxA/A3wAnAocBpEXHoWBUmSdq8bTkDPxK4MzPvzsxfAZcBJ41NWZKk0URmbt0DI04B5mXmu+r424CjMvOsnvnOBM6sowcDP9n6csfEPsD9A65hsnBbbOS22MhtsdFk2RazM3N678Rx/5dqmbkAWDDe6+lXRCzJzLmDrmMycFts5LbYyG2x0WTfFtvShXIfsH9nfFadJkmaANsS4N8FDoqIZ0XENODNwNVjU5YkaTRb3YWSmRsi4izgOmAH4LOZeceYVTZ+Jk13ziTgttjIbbGR22KjSb0ttvoipiRpsPwmpiQ1ygCXpEYZ4JLUqHG/D3zQIuJ5wH7ALZn5aGf6vMz86uAqm3gRcSSQmfnd+mcP5gE/zsx/GnBpmkQi4pLMPH3QdQxCzYuTKJkB5dboqzNz2eCqGtl2fREzIt4HvBdYBhwBnJ2Zi2rbrZn5wkHWN5Ei4r9S/m7NVOB64Cjga8BxwHWZ+bEBljdpRMQ7MvNzg65jokRE762/AbwKuBEgM18/4UUNSEScA5xG+bMgK+vkWZRbpC/LzAsGVdtItvcA/wHw0sx8NCLmAFcCn8/MiyLitsx8wUALnEB1WxwB7ASsBmZl5sMRsQvl08m/G2iBk0RE3JuZBwy6jokSEbcCPwI+DSQlwC+lhBaZedPgqptYEfGvwGGZ+eue6dOAOzLzoMFUNrLtvQtlylC3SWYuj4ijgSsjYjblQH062ZCZTwKPRcRdmfkwQGY+HhFPDbi2CRUR3x+pCZgxkbVMAnOBs4E/Af44M2+PiMefTsHd8RSwL3BPz/SZtW3S2d4DfE1EHJGZtwPUM/HXAp8FfnewpU24X0XErpn5GPCioYkRsQeT9OAcRzOA44H1PdMD+NbElzM4mfkUcGFE/EP9vYbtPxdG8n7ghoj4KbCiTjsAOBA4a8RHDdD2vqNOBzZ0J2TmBuD0iPi7wZQ0MK/MzCfgNy/aITsC8wdT0sBcA+w+9MbeFRGLJ76cwcvMlcCbIuJE4OFB1zMImfnViHgu5U9ldy9ifrd+ep10tus+cEnannkfuCQ1ygCXpEYZ4JLUKANckhplgEtSo/4/COpOixIs2jEAAAAASUVORK5CYII=\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "tags": [], + "needs_background": "light" + } + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "vmoVBEGrxfxB", + "colab_type": "text" + }, + "source": [ + "#Removing columns\n", + "\n" + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "aH8z4ifb4v19", + "colab_type": "code", + "colab": {} + }, + "source": [ + "Reviewdata.drop(columns = ['PhraseId', 'SentenceId'], inplace = True)" + ], + "execution_count": 8, + "outputs": [] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "h4s3WCDsuM1z", + "colab_type": "text" + }, + "source": [ + "## DATA CLEANING USING REGEX " + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "bsQGVulBxfxN", + "colab_type": "code", + "colab": {} + }, + "source": [ + "# Apply first level cleaning\n", + "import re\n", + "import string\n", + "\n", + "#This function converts to lower-case, removes square bracket, removes numbers and punctuation\n", + "def text_clean_1(text):\n", + " text = text.lower()\n", + " text = re.sub('\\[.*?\\]', '', text)\n", + " text = re.sub('[%s]' % re.escape(string.punctuation), '', text)\n", + " text = re.sub('\\w*\\d\\w*', '', text)\n", + " return text\n", + "\n", + "cleaned1 = lambda x: text_clean_1(x)" + ], + "execution_count": 9, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "qJ2iJEFtxfxZ", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 204 + }, + "outputId": "7bd57715-5af6-4936-8f12-e5b4dc999d76" + }, + "source": [ + "# Let's take a look at the updated text\n", + "Reviewdata['cleaned_description'] = pd.DataFrame(Reviewdata.Phrase.apply(cleaned1))\n", + "Reviewdata.head(5)" + ], + "execution_count": 10, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
PhraseSentimentcleaned_description
0A series of escapades demonstrating the adage ...1a series of escapades demonstrating the adage ...
1A series of escapades demonstrating the adage ...2a series of escapades demonstrating the adage ...
2A series2a series
3A2a
4series2series
\n", + "
" + ], + "text/plain": [ + " Phrase ... cleaned_description\n", + "0 A series of escapades demonstrating the adage ... ... a series of escapades demonstrating the adage ...\n", + "1 A series of escapades demonstrating the adage ... ... a series of escapades demonstrating the adage ...\n", + "2 A series ... a series\n", + "3 A ... a\n", + "4 series ... series\n", + "\n", + "[5 rows x 3 columns]" + ] + }, + "metadata": { + "tags": [] + }, + "execution_count": 10 + } + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "A2cNFZoSxfxq", + "colab_type": "code", + "colab": {} + }, + "source": [ + "# Apply a second round of cleaning\n", + "def text_clean_2(text):\n", + " text = re.sub('[‘’“”…]', '', text)\n", + " text = re.sub('\\n', '', text)\n", + " return text\n", + "\n", + "cleaned2 = lambda x: text_clean_2(x)" + ], + "execution_count": 11, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "UEoTPeUZxfx3", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 238 + }, + "outputId": "971abb9f-a1cd-4238-8e58-26594d9e1c2a" + }, + "source": [ + "# Let's take a look at the updated text\n", + "Reviewdata['cleaned_description_new'] = pd.DataFrame(Reviewdata['cleaned_description'].apply(cleaned2))\n", + "Reviewdata.head(5)" + ], + "execution_count": 12, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
PhraseSentimentcleaned_descriptioncleaned_description_new
0A series of escapades demonstrating the adage ...1a series of escapades demonstrating the adage ...a series of escapades demonstrating the adage ...
1A series of escapades demonstrating the adage ...2a series of escapades demonstrating the adage ...a series of escapades demonstrating the adage ...
2A series2a seriesa series
3A2aa
4series2seriesseries
\n", + "
" + ], + "text/plain": [ + " Phrase ... cleaned_description_new\n", + "0 A series of escapades demonstrating the adage ... ... a series of escapades demonstrating the adage ...\n", + "1 A series of escapades demonstrating the adage ... ... a series of escapades demonstrating the adage ...\n", + "2 A series ... a series\n", + "3 A ... a\n", + "4 series ... series\n", + "\n", + "[5 rows x 4 columns]" + ] + }, + "metadata": { + "tags": [] + }, + "execution_count": 12 + } + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "LUDQPXnL0Ixb", + "colab_type": "code", + "colab": {} + }, + "source": [ + "Reviewdata.drop(columns = ['Phrase', 'cleaned_description'], inplace = True)" + ], + "execution_count": 13, + "outputs": [] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "fpPFvN_2xfyD", + "colab_type": "text" + }, + "source": [ + "## Model training " + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "JNGy8jJnxfyF", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 85 + }, + "outputId": "c247c63a-4a70-40b3-9a3f-cb7da8b36e15" + }, + "source": [ + "from sklearn.model_selection import train_test_split\n", + "\n", + "Independent_var = Reviewdata.cleaned_description_new\n", + "Dependent_var = Reviewdata.Sentiment\n", + "\n", + "IV_train, IV_test, DV_train, DV_test = train_test_split(Independent_var, Dependent_var, test_size = 0.1, random_state = 225)\n", + "\n", + "print('IV_train :', len(IV_train))\n", + "print('IV_test  :', len(IV_test))\n", + "print('DV_train :', len(DV_train))\n", + "print('DV_test  :', len(DV_test))\n" + ], + "execution_count": 14, + "outputs": [ + { + "output_type": "stream", + "text": [ + "IV_train : 140454\n", + "IV_test  : 15606\n", + "DV_train : 140454\n", + "DV_test  : 15606\n" + ], + "name": "stdout" + } + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "6nMYUCbNxfyR", + "colab_type": "code", + "colab": {} + }, + "source": [ + "from sklearn.feature_extraction.text import TfidfVectorizer\n", + "from sklearn.linear_model import LogisticRegression\n", + "\n", + "tvec = TfidfVectorizer()\n", + "clf2 = LogisticRegression(solver = \"lbfgs\")\n", + "\n", + "\n", + "from sklearn.pipeline import Pipeline" + ], + "execution_count": 15, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "_ouJpmWFxfyc", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 238 + }, + "outputId": "ff9b8e67-6f5b-417a-8d0f-1709b6886a74" + }, + "source": [ + "model = Pipeline([('vectorizer',tvec),('classifier',clf2)])\n", + "\n", + "model.fit(IV_train, DV_train)\n", + "\n", + "\n", + "from sklearn.metrics import confusion_matrix\n", + "\n", + "predictions = model.predict(IV_test)\n", + "\n", + "confusion_matrix(predictions, DV_test)" + ], + "execution_count": 16, + "outputs": [ + { + "output_type": "stream", + "text": [ + "/usr/local/lib/python3.6/dist-packages/sklearn/linear_model/_logistic.py:940: ConvergenceWarning: lbfgs failed to converge (status=1):\n", + "STOP: TOTAL NO. of ITERATIONS REACHED LIMIT.\n", + "\n", + "Increase the number of iterations (max_iter) or scale the data as shown in:\n", + " https://scikit-learn.org/stable/modules/preprocessing.html\n", + "Please also refer to the documentation for alternative solver options:\n", + " https://scikit-learn.org/stable/modules/linear_model.html#logistic-regression\n", + " extra_warning_msg=_LOGISTIC_SOLVER_CONVERGENCE_MSG)\n" + ], + "name": "stderr" + }, + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "array([[ 119, 99, 11, 2, 1],\n", + " [ 368, 993, 397, 87, 11],\n", + " [ 181, 1597, 6998, 1510, 149],\n", + " [ 15, 87, 512, 1502, 528],\n", + " [ 0, 7, 16, 151, 265]])" + ] + }, + "metadata": { + "tags": [] + }, + "execution_count": 16 + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "FPWdgaFtxfyo", + "colab_type": "text" + }, + "source": [ + "## Model prediciton " + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "DcwBYp06xfyq", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 68 + }, + "outputId": "c093cc06-78f5-4363-b5ce-684b67f70753" + }, + "source": [ + "from sklearn.metrics import accuracy_score, precision_score, recall_score\n", + "\n", + "print(\"Accuracy : \", accuracy_score(predictions, DV_test))\n", + "print(\"Precision : \", precision_score(predictions, DV_test, average = 'weighted'))\n", + "print(\"Recall : \", recall_score(predictions, DV_test, average = 'weighted'))" + ], + "execution_count": 17, + "outputs": [ + { + "output_type": "stream", + "text": [ + "Accuracy : 0.6328976034858388\n", + "Precision : 0.720859674869459\n", + "Recall : 0.6328976034858388\n" + ], + "name": "stdout" + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "zWgjYMx8xfy4", + "colab_type": "text" + }, + "source": [ + "## Trying on new reviews " + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "jjck9_0_xfzF", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 51 + }, + "outputId": "7f5d5bd9-75ff-4195-f6d4-a1c830a3437a" + }, + "source": [ + "ex=[input((\"enter a string: \"))]\n", + "re2=model.predict(ex)\n", + "if(re2==0):\n", + " print(\"very negative\")\n", + "elif (re2==1):\n", + " print(\"negative\")\n", + "elif (re2==2):\n", + " print(\"moderate\")\n", + "elif (re==3):\n", + " print(\"happy\")\n", + "else:\n", + " print(\"very happy\")" + ], + "execution_count": 20, + "outputs": [ + { + "output_type": "stream", + "text": [ + "enter a string: very bad movie\n", + "very negative\n" + ], + "name": "stdout" + } + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "k5BLyjaTvyAk", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 51 + }, + "outputId": "84e405a5-f801-4f5f-efaa-87949dd54ed7" + }, + "source": [ + "ex=[input((\"enter a string: \"))]\n", + "re2=model.predict(ex)\n", + "if(re2==0):\n", + " print(\"very negative\")\n", + "elif (re2==1):\n", + " print(\"negative\")\n", + "elif (re2==2):\n", + " print(\"moderate\")\n", + "elif (re==3):\n", + " print(\"happy\")\n", + "else:\n", + " print(\"very happy\")" + ], + "execution_count": 21, + "outputs": [ + { + "output_type": "stream", + "text": [ + "enter a string: its a very good movie\n", + "very happy\n" + ], + "name": "stdout" + } + ] + } + ] +} \ No newline at end of file diff --git a/train.tsv b/train.tsv new file mode 100644 index 0000000..35f3b73 --- /dev/null +++ b/train.tsv @@ -0,0 +1,156061 @@ +PhraseId SentenceId Phrase Sentiment +1 1 A series of escapades demonstrating the adage that what is good for the goose is also good for the gander , some of which occasionally amuses but none of which amounts to much of a story . 1 +2 1 A series of escapades demonstrating the adage that what is good for the goose 2 +3 1 A series 2 +4 1 A 2 +5 1 series 2 +6 1 of escapades demonstrating the adage that what is good for the goose 2 +7 1 of 2 +8 1 escapades demonstrating the adage that what is good for the goose 2 +9 1 escapades 2 +10 1 demonstrating the adage that what is good for the goose 2 +11 1 demonstrating the adage 2 +12 1 demonstrating 2 +13 1 the adage 2 +14 1 the 2 +15 1 adage 2 +16 1 that what is good for the goose 2 +17 1 that 2 +18 1 what is good for the goose 2 +19 1 what 2 +20 1 is good for the goose 2 +21 1 is 2 +22 1 good for the goose 3 +23 1 good 3 +24 1 for the goose 2 +25 1 for 2 +26 1 the goose 2 +27 1 goose 2 +28 1 is also good for the gander , some of which occasionally amuses but none of which amounts to much of a story . 2 +29 1 is also good for the gander , some of which occasionally amuses but none of which amounts to much of a story 2 +30 1 is also 2 +31 1 also 2 +32 1 good for the gander , some of which occasionally amuses but none of which amounts to much of a story 2 +33 1 for the gander , some of which occasionally amuses but none of which amounts to much of a story 2 +34 1 the gander , some of which occasionally amuses but none of which amounts to much of a story 1 +35 1 the gander , 2 +36 1 the gander 2 +37 1 gander 2 +38 1 , 2 +39 1 some of which occasionally amuses but none of which amounts to much of a story 2 +40 1 some of which 2 +41 1 some 2 +42 1 of which 2 +43 1 which 2 +44 1 occasionally amuses but none of which amounts to much of a story 2 +45 1 occasionally 2 +46 1 amuses but none of which amounts to much of a story 2 +47 1 amuses 3 +48 1 but none of which amounts to much of a story 1 +49 1 but 2 +50 1 none of which amounts to much of a story 1 +51 1 none 2 +52 1 of which amounts to much of a story 2 +53 1 which amounts to much of a story 2 +54 1 amounts to much of a story 2 +55 1 amounts 2 +56 1 to much of a story 2 +57 1 to 2 +58 1 much of a story 2 +59 1 much 2 +60 1 of a story 2 +61 1 a story 2 +62 1 story 2 +63 1 . 2 +64 2 This quiet , introspective and entertaining independent is worth seeking . 4 +65 2 This quiet , introspective and entertaining independent 3 +66 2 This 2 +67 2 quiet , introspective and entertaining independent 4 +68 2 quiet , introspective and entertaining 3 +69 2 quiet 2 +70 2 , introspective and entertaining 3 +71 2 introspective and entertaining 3 +72 2 introspective and 3 +73 2 introspective 2 +74 2 and 2 +75 2 entertaining 4 +76 2 independent 2 +77 2 is worth seeking . 3 +78 2 is worth seeking 4 +79 2 is worth 2 +80 2 worth 2 +81 2 seeking 2 +82 3 Even fans of Ismail Merchant 's work , I suspect , would have a hard time sitting through this one . 1 +83 3 Even fans of Ismail Merchant 's work 2 +84 3 Even fans 2 +85 3 Even 2 +86 3 fans 3 +87 3 of Ismail Merchant 's work 2 +88 3 Ismail Merchant 's work 2 +89 3 Ismail Merchant 's 2 +90 3 Ismail 2 +91 3 Merchant 's 2 +92 3 Merchant 2 +93 3 's 2 +94 3 work 2 +95 3 , I suspect , would have a hard time sitting through this one . 1 +96 3 , I suspect , 2 +97 3 I suspect , 2 +98 3 I suspect 2 +99 3 I 2 +100 3 suspect 2 +101 3 would have a hard time sitting through this one . 1 +102 3 would have a hard time sitting through this one 0 +103 3 would 2 +104 3 have a hard time sitting through this one 0 +105 3 have 2 +106 3 a hard time sitting through this one 1 +107 3 a hard time 1 +108 3 hard time 1 +109 3 hard 2 +110 3 time 2 +111 3 sitting through this one 1 +112 3 sitting 2 +113 3 through this one 2 +114 3 through 2 +115 3 this one 2 +116 3 one 2 +117 4 A positively thrilling combination of ethnography and all the intrigue , betrayal , deceit and murder of a Shakespearean tragedy or a juicy soap opera . 3 +118 4 A positively thrilling combination of ethnography and all the intrigue , betrayal , deceit and murder of a Shakespearean tragedy or a juicy soap opera 4 +119 4 A positively thrilling combination of ethnography and all the intrigue , betrayal , deceit and murder 4 +120 4 A positively thrilling combination 3 +121 4 positively thrilling combination 3 +122 4 positively 3 +123 4 thrilling combination 3 +124 4 thrilling 4 +125 4 combination 2 +126 4 of ethnography and all the intrigue , betrayal , deceit and murder 2 +127 4 ethnography and all the intrigue , betrayal , deceit and murder 2 +128 4 ethnography and 2 +129 4 ethnography 2 +130 4 all the intrigue , betrayal , deceit and murder 2 +131 4 all 2 +132 4 the intrigue , betrayal , deceit and murder 1 +133 4 intrigue , betrayal , deceit and murder 2 +134 4 intrigue 3 +135 4 , betrayal , deceit and murder 2 +136 4 betrayal , deceit and murder 1 +137 4 betrayal 2 +138 4 , deceit and murder 1 +139 4 deceit and murder 1 +140 4 deceit and 2 +141 4 deceit 1 +142 4 murder 1 +143 4 of a Shakespearean tragedy or a juicy soap opera 2 +144 4 a Shakespearean tragedy or a juicy soap opera 2 +145 4 a Shakespearean tragedy or 2 +146 4 a Shakespearean tragedy 1 +147 4 Shakespearean tragedy 2 +148 4 Shakespearean 2 +149 4 tragedy 1 +150 4 or 2 +151 4 a juicy soap opera 3 +152 4 juicy soap opera 3 +153 4 juicy 3 +154 4 soap opera 1 +155 4 soap 2 +156 4 opera 2 +157 5 Aggressive self-glorification and a manipulative whitewash . 1 +158 5 Aggressive self-glorification and a manipulative whitewash 0 +159 5 Aggressive 2 +160 5 self-glorification and a manipulative whitewash 0 +161 5 self-glorification and 1 +162 5 self-glorification 2 +163 5 a manipulative whitewash 1 +164 5 manipulative whitewash 1 +165 5 manipulative 2 +166 5 whitewash 2 +167 6 A comedy-drama of nearly epic proportions rooted in a sincere performance by the title character undergoing midlife crisis . 4 +168 6 A comedy-drama of nearly epic proportions 3 +169 6 A comedy-drama 2 +170 6 comedy-drama 2 +171 6 of nearly epic proportions 3 +172 6 nearly epic proportions 2 +173 6 nearly epic 4 +174 6 nearly 2 +175 6 epic 3 +176 6 proportions 2 +177 6 rooted in a sincere performance by the title character undergoing midlife crisis . 4 +178 6 rooted in a sincere performance by the title character undergoing midlife crisis 3 +179 6 rooted in a sincere performance 3 +180 6 rooted 3 +181 6 in a sincere performance 4 +182 6 in 2 +183 6 a sincere performance 4 +184 6 sincere performance 4 +185 6 sincere 3 +186 6 performance 2 +187 6 by the title character undergoing midlife crisis 2 +188 6 by 2 +189 6 the title character undergoing midlife crisis 2 +190 6 the title character 2 +191 6 title character 2 +192 6 title 2 +193 6 character 2 +194 6 undergoing midlife crisis 2 +195 6 undergoing 2 +196 6 midlife crisis 1 +197 6 midlife 2 +198 6 crisis 2 +199 7 Narratively , Trouble Every Day is a plodding mess . 1 +200 7 Narratively 2 +201 7 , Trouble Every Day is a plodding mess . 1 +202 7 Trouble Every Day is a plodding mess . 0 +203 7 Trouble Every Day 2 +204 7 Trouble 1 +205 7 Every Day 2 +206 7 Every 2 +207 7 Day 2 +208 7 is a plodding mess . 1 +209 7 is a plodding mess 0 +210 7 a plodding mess 1 +211 7 plodding mess 0 +212 7 plodding 1 +213 7 mess 1 +214 8 The Importance of Being Earnest , so thick with wit it plays like a reading from Bartlett 's Familiar Quotations 3 +215 8 The Importance 2 +216 8 Importance 3 +217 8 of Being Earnest , so thick with wit it plays like a reading from Bartlett 's Familiar Quotations 2 +218 8 Being Earnest , so thick with wit it plays like a reading from Bartlett 's Familiar Quotations 3 +219 8 Being 2 +220 8 Earnest , so thick with wit it plays like a reading from Bartlett 's Familiar Quotations 2 +221 8 Earnest , 3 +222 8 Earnest 3 +223 8 so thick with wit it plays like a reading from Bartlett 's Familiar Quotations 2 +224 8 so 2 +225 8 thick with wit it plays like a reading from Bartlett 's Familiar Quotations 3 +226 8 thick 2 +227 8 with wit it plays like a reading from Bartlett 's Familiar Quotations 3 +228 8 with 2 +229 8 wit it plays like a reading from Bartlett 's Familiar Quotations 2 +230 8 wit 2 +231 8 it plays like a reading from Bartlett 's Familiar Quotations 2 +232 8 it 2 +233 8 plays like a reading from Bartlett 's Familiar Quotations 3 +234 8 plays 2 +235 8 like a reading from Bartlett 's Familiar Quotations 2 +236 8 like 2 +237 8 a reading from Bartlett 's Familiar Quotations 2 +238 8 a reading 2 +239 8 reading 2 +240 8 from Bartlett 's Familiar Quotations 2 +241 8 from 2 +242 8 Bartlett 's Familiar Quotations 2 +243 8 Bartlett 's 2 +244 8 Bartlett 2 +245 8 Familiar Quotations 2 +246 8 Familiar 2 +247 8 Quotations 2 +248 9 But it does n't leave you with much . 1 +249 9 it does n't leave you with much . 1 +250 9 does n't leave you with much . 1 +251 9 does n't leave you with much 1 +252 9 does n't 1 +253 9 does 2 +254 9 n't 2 +255 9 leave you with much 2 +256 9 leave you 2 +257 9 leave 1 +258 9 you 2 +259 9 with much 2 +260 10 You could hate it for the same reason . 1 +261 10 could hate it for the same reason . 1 +262 10 could hate it for the same reason 0 +263 10 could 2 +264 10 hate it for the same reason 1 +265 10 hate it 0 +266 10 hate 0 +267 10 for the same reason 2 +268 10 the same reason 2 +269 10 same reason 2 +270 10 same 2 +271 10 reason 2 +272 11 There 's little to recommend Snow Dogs , unless one considers cliched dialogue and perverse escapism a source of high hilarity . 1 +273 11 There 2 +274 11 's little to recommend Snow Dogs , unless one considers cliched dialogue and perverse escapism a source of high hilarity . 1 +275 11 's little to recommend Snow Dogs , unless one considers cliched dialogue and perverse escapism a source of high hilarity 1 +276 11 's little to recommend Snow Dogs , 1 +277 11 's little to recommend Snow Dogs 1 +278 11 little to recommend Snow Dogs 2 +279 11 little 2 +280 11 to recommend Snow Dogs 2 +281 11 recommend Snow Dogs 4 +282 11 recommend 3 +283 11 Snow Dogs 2 +284 11 Snow 2 +285 11 Dogs 2 +286 11 unless one considers cliched dialogue and perverse escapism a source of high hilarity 1 +287 11 unless 2 +288 11 one considers cliched dialogue and perverse escapism a source of high hilarity 2 +289 11 considers cliched dialogue and perverse escapism a source of high hilarity 2 +290 11 considers 2 +291 11 cliched dialogue and perverse escapism a source of high hilarity 1 +292 11 cliched dialogue and perverse escapism 1 +293 11 cliched dialogue and 1 +294 11 cliched dialogue 1 +295 11 cliched 1 +296 11 dialogue 2 +297 11 perverse escapism 2 +298 11 perverse 1 +299 11 escapism 2 +300 11 a source of high hilarity 3 +301 11 a source 2 +302 11 source 2 +303 11 of high hilarity 3 +304 11 high hilarity 4 +305 11 high 3 +306 11 hilarity 3 +307 12 Kung Pow is Oedekerk 's realization of his childhood dream to be in a martial-arts flick , and proves that sometimes the dreams of youth should remain just that . 1 +308 12 Kung Pow 2 +309 12 Kung 2 +310 12 Pow 3 +311 12 is Oedekerk 's realization of his childhood dream to be in a martial-arts flick , and proves that sometimes the dreams of youth should remain just that . 2 +312 12 is Oedekerk 's realization of his childhood dream to be in a martial-arts flick , and proves that sometimes the dreams of youth should remain just that 0 +313 12 is Oedekerk 's realization of his childhood dream to be in a martial-arts flick , and 2 +314 12 is Oedekerk 's realization of his childhood dream to be in a martial-arts flick , 2 +315 12 is Oedekerk 's realization of his childhood dream to be in a martial-arts flick 2 +316 12 Oedekerk 's realization of his childhood dream to be in a martial-arts flick 2 +317 12 Oedekerk 's realization of his childhood dream 2 +318 12 Oedekerk 's realization 2 +319 12 Oedekerk 's 2 +320 12 Oedekerk 2 +321 12 realization 2 +322 12 of his childhood dream 2 +323 12 his childhood dream 2 +324 12 his 2 +325 12 childhood dream 2 +326 12 childhood 2 +327 12 dream 3 +328 12 to be in a martial-arts flick 2 +329 12 be in a martial-arts flick 2 +330 12 be 2 +331 12 in a martial-arts flick 2 +332 12 a martial-arts flick 2 +333 12 martial-arts flick 2 +334 12 martial-arts 2 +335 12 flick 2 +336 12 proves that sometimes the dreams of youth should remain just that 1 +337 12 proves 2 +338 12 that sometimes the dreams of youth should remain just that 1 +339 12 sometimes the dreams of youth should remain just that 1 +340 12 sometimes 2 +341 12 the dreams of youth should remain just that 2 +342 12 the dreams of youth 3 +343 12 the dreams 2 +344 12 dreams 2 +345 12 of youth 2 +346 12 youth 2 +347 12 should remain just that 2 +348 12 should 2 +349 12 remain just that 2 +350 12 remain 2 +351 12 just that 2 +352 12 just 2 +353 13 The performances are an absolute joy . 4 +354 13 The performances 2 +355 13 performances 2 +356 13 are an absolute joy . 4 +357 13 are an absolute joy 3 +358 13 are 2 +359 13 an absolute joy 4 +360 13 an 2 +361 13 absolute joy 3 +362 13 absolute 2 +363 13 joy 4 +364 14 Fresnadillo has something serious to say about the ways in which extravagant chance can distort our perspective and throw us off the path of good sense . 3 +365 14 Fresnadillo 2 +366 14 has something serious to say about the ways in which extravagant chance can distort our perspective and throw us off the path of good sense . 3 +367 14 has something serious to say about the ways in which extravagant chance can distort our perspective and throw us off the path of good sense 3 +368 14 has 2 +369 14 something serious to say about the ways in which extravagant chance can distort our perspective and throw us off the path of good sense 3 +370 14 something 2 +371 14 serious to say about the ways in which extravagant chance can distort our perspective and throw us off the path of good sense 2 +372 14 serious 2 +373 14 to say about the ways in which extravagant chance can distort our perspective and throw us off the path of good sense 3 +374 14 say about the ways in which extravagant chance can distort our perspective and throw us off the path of good sense 2 +375 14 say 2 +376 14 about the ways in which extravagant chance can distort our perspective and throw us off the path of good sense 2 +377 14 about 2 +378 14 the ways in which extravagant chance can distort our perspective and throw us off the path of good sense 1 +379 14 the ways 2 +380 14 ways 2 +381 14 in which extravagant chance can distort our perspective and throw us off the path of good sense 2 +382 14 in which 2 +383 14 extravagant chance can distort our perspective and throw us off the path of good sense 2 +384 14 extravagant chance 2 +385 14 extravagant 4 +386 14 chance 2 +387 14 can distort our perspective and throw us off the path of good sense 2 +388 14 can 2 +389 14 distort our perspective and throw us off the path of good sense 2 +390 14 distort our perspective and 2 +391 14 distort our perspective 2 +392 14 distort 2 +393 14 our perspective 2 +394 14 our 2 +395 14 perspective 2 +396 14 throw us off the path of good sense 2 +397 14 throw us 2 +398 14 throw 2 +399 14 us 3 +400 14 off the path of good sense 1 +401 14 off 1 +402 14 the path of good sense 2 +403 14 the path 2 +404 14 path 2 +405 14 of good sense 3 +406 14 good sense 3 +407 14 sense 2 +408 15 I still like Moonlight Mile , better judgment be damned . 3 +409 15 still like Moonlight Mile , better judgment be damned . 3 +410 15 still 2 +411 15 like Moonlight Mile , better judgment be damned . 2 +412 15 like Moonlight Mile , better judgment be damned 2 +413 15 Moonlight Mile , better judgment be damned 2 +414 15 Moonlight Mile , better judgment 2 +415 15 Moonlight 2 +416 15 Mile , better judgment 2 +417 15 Mile 2 +418 15 , better judgment 2 +419 15 better judgment 2 +420 15 better 4 +421 15 judgment 2 +422 15 be damned 2 +423 15 damned 1 +424 16 A welcome relief from baseball movies that try too hard to be mythic , this one is a sweet and modest and ultimately winning story . 3 +425 16 A welcome relief from baseball movies that try too hard to be mythic 3 +426 16 A welcome relief 3 +427 16 welcome relief 3 +428 16 welcome 2 +429 16 relief 2 +430 16 from baseball movies that try too hard to be mythic 1 +431 16 baseball movies that try too hard to be mythic 0 +432 16 baseball movies 2 +433 16 baseball 2 +434 16 movies 2 +435 16 that try too hard to be mythic 1 +436 16 try too hard to be mythic 1 +437 16 try 2 +438 16 too hard to be mythic 1 +439 16 too 2 +440 16 hard to be mythic 1 +441 16 to be mythic 2 +442 16 be mythic 2 +443 16 mythic 2 +444 16 , this one is a sweet and modest and ultimately winning story . 3 +445 16 this one is a sweet and modest and ultimately winning story . 4 +446 16 is a sweet and modest and ultimately winning story . 4 +447 16 is a sweet and modest and ultimately winning story 3 +448 16 a sweet and modest and ultimately winning story 3 +449 16 a sweet and modest and 3 +450 16 a sweet and modest 4 +451 16 sweet and modest 3 +452 16 sweet and 3 +453 16 sweet 4 +454 16 modest 3 +455 16 ultimately winning story 4 +456 16 ultimately 2 +457 16 winning story 3 +458 16 winning 3 +459 17 a bilingual charmer , just like the woman who inspired it 3 +460 17 a bilingual charmer , 3 +461 17 a bilingual charmer 3 +462 17 bilingual charmer 3 +463 17 bilingual 2 +464 17 charmer 3 +465 17 just like the woman who inspired it 2 +466 17 like the woman who inspired it 2 +467 17 the woman who inspired it 2 +468 17 the woman 2 +469 17 woman 2 +470 17 who inspired it 2 +471 17 who 2 +472 17 inspired it 2 +473 17 inspired 3 +474 18 Like a less dizzily gorgeous companion to Mr. Wong 's In the Mood for Love -- very much a Hong Kong movie despite its mainland setting . 2 +475 18 Like a less dizzily gorgeous companion to Mr. 3 +476 18 a less dizzily gorgeous companion to Mr. 2 +477 18 a less dizzily gorgeous companion 2 +478 18 less dizzily gorgeous companion 2 +479 18 less dizzily gorgeous 2 +480 18 less 2 +481 18 dizzily gorgeous 4 +482 18 dizzily 2 +483 18 gorgeous 3 +484 18 companion 3 +485 18 to Mr. 2 +486 18 Mr. 2 +487 18 Wong 's In the Mood for Love -- very much a Hong Kong movie despite its mainland setting . 2 +488 18 Wong 2 +489 18 's In the Mood for Love -- very much a Hong Kong movie despite its mainland setting . 2 +490 18 's In the Mood for Love -- very much a Hong Kong movie despite its mainland setting 2 +491 18 's In the Mood for Love -- very much a Hong Kong movie 2 +492 18 In the Mood for Love -- very much a Hong Kong movie 3 +493 18 the Mood for Love -- very much a Hong Kong movie 2 +494 18 the Mood 3 +495 18 Mood 2 +496 18 for Love -- very much a Hong Kong movie 2 +497 18 Love -- very much a Hong Kong movie 3 +498 18 Love -- very much 4 +499 18 Love -- 3 +500 18 Love 4 +501 18 -- 2 +502 18 very much 2 +503 18 very 2 +504 18 a Hong Kong movie 2 +505 18 Hong Kong movie 2 +506 18 Hong 2 +507 18 Kong movie 2 +508 18 Kong 2 +509 18 movie 2 +510 18 despite its mainland setting 2 +511 18 despite 2 +512 18 its mainland setting 3 +513 18 its 2 +514 18 mainland setting 2 +515 18 mainland 2 +516 18 setting 2 +517 19 As inept as big-screen remakes of The Avengers and The Wild Wild West . 1 +518 19 As inept as big-screen remakes of The Avengers and The Wild Wild West 2 +519 19 As inept 1 +520 19 As 2 +521 19 inept 1 +522 19 as big-screen remakes of The Avengers and The Wild Wild West 1 +523 19 big-screen remakes of The Avengers and The Wild Wild West 2 +524 19 big-screen remakes 2 +525 19 big-screen 2 +526 19 remakes 2 +527 19 of The Avengers and The Wild Wild West 2 +528 19 The Avengers and The Wild Wild West 2 +529 19 The Avengers and 2 +530 19 The Avengers 2 +531 19 Avengers 2 +532 19 The Wild Wild West 3 +533 19 Wild Wild West 2 +534 19 Wild 3 +535 19 Wild West 2 +536 19 West 2 +537 20 It 's everything you 'd expect -- but nothing more . 2 +538 20 's everything you 'd expect -- but nothing more . 1 +539 20 's everything you 'd expect -- but nothing more 2 +540 20 everything you 'd expect -- but nothing more 1 +541 20 everything 2 +542 20 you 'd expect -- but nothing more 1 +543 20 'd expect -- but nothing more 2 +544 20 'd 2 +545 20 expect -- but nothing more 2 +546 20 expect -- but nothing 2 +547 20 expect -- 2 +548 20 expect 2 +549 20 but nothing 2 +550 20 nothing 1 +551 20 more 2 +552 21 Best indie of the year , so far . 4 +553 21 Best 4 +554 21 indie of the year , so far . 3 +555 21 indie of the year , so far 4 +556 21 indie of the year , 3 +557 21 indie of the year 3 +558 21 indie 2 +559 21 of the year 2 +560 21 the year 2 +561 21 year 2 +562 21 so far 2 +563 21 far 2 +564 22 Hatfield and Hicks make the oddest of couples , and in this sense the movie becomes a study of the gambles of the publishing world , offering a case study that exists apart from all the movie 's political ramifications . 3 +565 22 Hatfield and Hicks make the oddest of couples , and in this sense the movie becomes a study of the gambles of the publishing world , offering a case study that exists apart from all the movie 's political ramifications 3 +566 22 Hatfield and Hicks make the oddest of couples , and 2 +567 22 Hatfield and Hicks make the oddest of couples , 2 +568 22 Hatfield and Hicks make the oddest of couples 2 +569 22 Hatfield and Hicks 2 +570 22 Hatfield and 2 +571 22 Hatfield 2 +572 22 Hicks 2 +573 22 make the oddest of couples 2 +574 22 make 2 +575 22 the oddest of couples 2 +576 22 the oddest 2 +577 22 oddest 1 +578 22 of couples 2 +579 22 couples 2 +580 22 in this sense the movie becomes a study of the gambles of the publishing world , offering a case study that exists apart from all the movie 's political ramifications 3 +581 22 in this sense 2 +582 22 this sense 2 +583 22 the movie becomes a study of the gambles of the publishing world , offering a case study that exists apart from all the movie 's political ramifications 2 +584 22 the movie 2 +585 22 becomes a study of the gambles of the publishing world , offering a case study that exists apart from all the movie 's political ramifications 2 +586 22 becomes a study of the gambles of the publishing world , 2 +587 22 becomes a study of the gambles of the publishing world 2 +588 22 becomes 2 +589 22 a study of the gambles of the publishing world 2 +590 22 a study 2 +591 22 study 2 +592 22 of the gambles of the publishing world 2 +593 22 the gambles of the publishing world 2 +594 22 the gambles 2 +595 22 gambles 2 +596 22 of the publishing world 2 +597 22 the publishing world 2 +598 22 publishing world 2 +599 22 publishing 2 +600 22 world 2 +601 22 offering a case study that exists apart from all the movie 's political ramifications 2 +602 22 offering 2 +603 22 a case study that exists apart from all the movie 's political ramifications 3 +604 22 a case study 2 +605 22 case study 2 +606 22 case 2 +607 22 that exists apart from all the movie 's political ramifications 2 +608 22 exists apart from all the movie 's political ramifications 2 +609 22 exists apart 2 +610 22 exists 2 +611 22 apart 2 +612 22 from all the movie 's political ramifications 2 +613 22 all the movie 's political ramifications 2 +614 22 the movie 's political ramifications 2 +615 22 the movie 's 2 +616 22 movie 's 2 +617 22 political ramifications 2 +618 22 political 2 +619 22 ramifications 2 +620 23 It 's like going to a house party and watching the host defend himself against a frothing ex-girlfriend . 1 +621 23 's like going to a house party and watching the host defend himself against a frothing ex-girlfriend . 1 +622 23 's like going to a house party and watching the host defend himself against a frothing ex-girlfriend 1 +623 23 like going to a house party and watching the host defend himself against a frothing ex-girlfriend 1 +624 23 going to a house party and watching the host defend himself against a frothing ex-girlfriend 1 +625 23 going to a house party and 2 +626 23 going to a house party 2 +627 23 going 2 +628 23 to a house party 2 +629 23 a house party 2 +630 23 house party 2 +631 23 house 2 +632 23 party 2 +633 23 watching the host defend himself against a frothing ex-girlfriend 2 +634 23 watching 2 +635 23 the host defend himself against a frothing ex-girlfriend 2 +636 23 the host 2 +637 23 host 2 +638 23 defend himself against a frothing ex-girlfriend 2 +639 23 defend himself 3 +640 23 defend 2 +641 23 himself 2 +642 23 against a frothing ex-girlfriend 2 +643 23 against 2 +644 23 a frothing ex-girlfriend 2 +645 23 frothing ex-girlfriend 2 +646 23 frothing 1 +647 23 ex-girlfriend 2 +648 24 That the Chuck Norris `` grenade gag '' occurs about 7 times during Windtalkers is a good indication of how serious-minded the film is . 2 +649 24 That the Chuck Norris `` grenade gag '' 2 +650 24 the Chuck Norris `` grenade gag '' 2 +651 24 Chuck Norris `` grenade gag '' 2 +652 24 Chuck 2 +653 24 Norris `` grenade gag '' 2 +654 24 Norris 2 +655 24 `` grenade gag '' 2 +656 24 `` 2 +657 24 grenade gag '' 2 +658 24 grenade 1 +659 24 gag '' 2 +660 24 gag 1 +661 24 '' 2 +662 24 occurs about 7 times during Windtalkers is a good indication of how serious-minded the film is . 2 +663 24 occurs about 7 times during Windtalkers is a good indication of how serious-minded the film is 3 +664 24 occurs 2 +665 24 about 7 times during Windtalkers is a good indication of how serious-minded the film is 2 +666 24 about 7 times during Windtalkers 2 +667 24 about 7 times 2 +668 24 7 times 2 +669 24 7 2 +670 24 times 2 +671 24 during Windtalkers 2 +672 24 during 2 +673 24 Windtalkers 2 +674 24 is a good indication of how serious-minded the film is 3 +675 24 a good indication of how serious-minded the film is 3 +676 24 a good indication 3 +677 24 good indication 3 +678 24 indication 2 +679 24 of how serious-minded the film is 2 +680 24 how serious-minded the film is 3 +681 24 how 2 +682 24 serious-minded the film is 2 +683 24 serious-minded the film 3 +684 24 serious-minded 2 +685 24 the film 2 +686 24 film 2 +687 25 The plot is romantic comedy boilerplate from start to finish . 2 +688 25 The plot 2 +689 25 plot 2 +690 25 is romantic comedy boilerplate from start to finish . 2 +691 25 is romantic comedy boilerplate from start to finish 3 +692 25 romantic comedy boilerplate from start to finish 2 +693 25 romantic comedy boilerplate from start 2 +694 25 romantic comedy boilerplate 1 +695 25 romantic 2 +696 25 comedy boilerplate 2 +697 25 comedy 3 +698 25 boilerplate 2 +699 25 from start 2 +700 25 start 2 +701 25 to finish 2 +702 25 finish 2 +703 26 It arrives with an impeccable pedigree , mongrel pep , and almost indecipherable plot complications . 2 +704 26 arrives with an impeccable pedigree , mongrel pep , and almost indecipherable plot complications . 2 +705 26 arrives with an impeccable pedigree , mongrel pep , and almost indecipherable plot complications 2 +706 26 arrives 2 +707 26 with an impeccable pedigree , mongrel pep , and almost indecipherable plot complications 2 +708 26 an impeccable pedigree , mongrel pep , and almost indecipherable plot complications 1 +709 26 an impeccable pedigree , mongrel pep , and almost 2 +710 26 an impeccable pedigree , mongrel pep , and 2 +711 26 an impeccable pedigree , mongrel pep , 2 +712 26 an impeccable pedigree , mongrel pep 3 +713 26 impeccable pedigree , mongrel pep 3 +714 26 impeccable 4 +715 26 pedigree , mongrel pep 2 +716 26 pedigree 2 +717 26 , mongrel pep 2 +718 26 mongrel pep 2 +719 26 mongrel 1 +720 26 pep 2 +721 26 almost 2 +722 26 indecipherable plot complications 1 +723 26 indecipherable 2 +724 26 plot complications 2 +725 26 complications 1 +726 27 A film that clearly means to preach exclusively to the converted . 2 +727 27 A film that clearly means to 2 +728 27 A film 2 +729 27 that clearly means to 2 +730 27 clearly means to 2 +731 27 clearly 2 +732 27 means to 2 +733 27 means 2 +734 27 preach exclusively to the converted . 1 +735 27 preach exclusively to the converted 2 +736 27 preach exclusively 2 +737 27 preach 2 +738 27 exclusively 2 +739 27 to the converted 2 +740 27 the converted 2 +741 27 converted 2 +742 28 While The Importance of Being Earnest offers opportunities for occasional smiles and chuckles , it does n't give us a reason to be in the theater beyond Wilde 's wit and the actors ' performances . 1 +743 28 While The Importance of Being Earnest offers opportunities for occasional smiles and chuckles 3 +744 28 While 2 +745 28 The Importance of Being Earnest offers opportunities for occasional smiles and chuckles 3 +746 28 The Importance of Being Earnest 3 +747 28 of Being Earnest 2 +748 28 Being Earnest 2 +749 28 offers opportunities for occasional smiles and chuckles 2 +750 28 offers opportunities for occasional smiles and 3 +751 28 offers opportunities for occasional smiles 3 +752 28 offers 2 +753 28 opportunities for occasional smiles 2 +754 28 opportunities 2 +755 28 for occasional smiles 3 +756 28 occasional smiles 3 +757 28 occasional 2 +758 28 smiles 2 +759 28 chuckles 1 +760 28 , it does n't give us a reason to be in the theater beyond Wilde 's wit and the actors ' performances . 2 +761 28 it does n't give us a reason to be in the theater beyond Wilde 's wit and the actors ' performances . 2 +762 28 does n't give us a reason to be in the theater beyond Wilde 's wit and the actors ' performances . 2 +763 28 does n't give us a reason to be in the theater beyond Wilde 's wit and the actors ' performances 1 +764 28 give us a reason to be in the theater beyond Wilde 's wit and the actors ' performances 1 +765 28 give us 2 +766 28 give 3 +767 28 a reason to be in the theater beyond Wilde 's wit and the actors ' performances 2 +768 28 reason to be in the theater beyond Wilde 's wit and the actors ' performances 2 +769 28 to be in the theater beyond Wilde 's wit and the actors ' performances 2 +770 28 be in the theater beyond Wilde 's wit and the actors ' performances 2 +771 28 be in the theater 2 +772 28 in the theater 2 +773 28 the theater 2 +774 28 theater 3 +775 28 beyond Wilde 's wit and the actors ' performances 2 +776 28 beyond 2 +777 28 Wilde 's wit and the actors ' performances 2 +778 28 Wilde 's wit and 3 +779 28 Wilde 's wit 2 +780 28 Wilde 's 2 +781 28 Wilde 2 +782 28 the actors ' performances 2 +783 28 the actors ' 2 +784 28 actors ' 2 +785 28 actors 2 +786 28 ' 2 +787 29 The latest vapid actor 's exercise to appropriate the structure of Arthur Schnitzler 's Reigen . 1 +788 29 The latest 2 +789 29 latest 2 +790 29 vapid actor 's exercise to appropriate the structure of Arthur Schnitzler 's Reigen . 2 +791 29 vapid actor 's exercise to appropriate the structure of Arthur Schnitzler 's Reigen 1 +792 29 vapid actor 's exercise 1 +793 29 vapid 1 +794 29 actor 's exercise 2 +795 29 actor 's 2 +796 29 actor 2 +797 29 exercise 2 +798 29 to appropriate the structure of Arthur Schnitzler 's Reigen 2 +799 29 appropriate the structure of Arthur Schnitzler 's Reigen 2 +800 29 appropriate the structure 2 +801 29 appropriate 3 +802 29 the structure 2 +803 29 structure 2 +804 29 of Arthur Schnitzler 's Reigen 2 +805 29 Arthur Schnitzler 's Reigen 3 +806 29 Arthur Schnitzler 's 2 +807 29 Arthur 2 +808 29 Schnitzler 's 2 +809 29 Schnitzler 2 +810 29 Reigen 2 +811 30 More vaudeville show than well-constructed narrative , but on those terms it 's inoffensive and actually rather sweet . 2 +812 30 More vaudeville show than well-constructed narrative , but on those terms it 's inoffensive and actually rather sweet 3 +813 30 More vaudeville show than well-constructed narrative , but 2 +814 30 More vaudeville show than well-constructed narrative , 1 +815 30 More vaudeville show than well-constructed narrative 1 +816 30 More vaudeville 2 +817 30 vaudeville 2 +818 30 show than well-constructed narrative 3 +819 30 show 2 +820 30 than well-constructed narrative 3 +821 30 than 2 +822 30 well-constructed narrative 4 +823 30 well-constructed 3 +824 30 narrative 2 +825 30 on those terms it 's inoffensive and actually rather sweet 3 +826 30 on those terms 2 +827 30 on 2 +828 30 those terms 2 +829 30 those 2 +830 30 terms 2 +831 30 it 's inoffensive and actually rather sweet 3 +832 30 's inoffensive and actually rather sweet 3 +833 30 inoffensive and actually rather sweet 3 +834 30 inoffensive and actually 2 +835 30 inoffensive and 2 +836 30 inoffensive 1 +837 30 actually 2 +838 30 rather sweet 3 +839 30 rather 2 +840 31 Nothing more than a run-of-the-mill action flick . 2 +841 31 more than a run-of-the-mill action flick . 2 +842 31 more than a run-of-the-mill action 3 +843 31 than a run-of-the-mill action 2 +844 31 a run-of-the-mill action 2 +845 31 run-of-the-mill action 1 +846 31 run-of-the-mill 1 +847 31 action 2 +848 31 flick . 2 +849 32 Hampered -- no , paralyzed -- by a self-indulgent script ... that aims for poetry and ends up sounding like satire . 0 +850 32 Hampered -- no , paralyzed -- by a self-indulgent script ... that aims for poetry and ends up sounding like satire 1 +851 32 Hampered -- no , paralyzed -- by a self-indulgent script ... 1 +852 32 Hampered -- no , paralyzed -- by a self-indulgent script 1 +853 32 Hampered -- no , paralyzed -- 2 +854 32 Hampered 2 +855 32 -- no , paralyzed -- 2 +856 32 no , paralyzed -- 2 +857 32 no , paralyzed 1 +858 32 no 1 +859 32 , paralyzed 1 +860 32 paralyzed 2 +861 32 by a self-indulgent script 1 +862 32 a self-indulgent script 0 +863 32 self-indulgent script 2 +864 32 self-indulgent 1 +865 32 script 2 +866 32 ... 2 +867 32 that aims for poetry and ends up sounding like satire 1 +868 32 aims for poetry and ends up sounding like satire 1 +869 32 aims for poetry and 2 +870 32 aims for poetry 2 +871 32 aims 2 +872 32 for poetry 2 +873 32 poetry 3 +874 32 ends up sounding like satire 1 +875 32 ends up 2 +876 32 ends 2 +877 32 up 2 +878 32 sounding like satire 2 +879 32 sounding 3 +880 32 like satire 2 +881 32 satire 2 +882 33 Ice Age is the first computer-generated feature cartoon to feel like other movies , and that makes for some glacial pacing early on . 2 +883 33 Ice Age is the first computer-generated feature cartoon to feel like other movies , and that makes for some glacial pacing early on 2 +884 33 Ice Age is the first computer-generated feature cartoon to feel like other movies , and 3 +885 33 Ice Age is the first computer-generated feature cartoon to feel like other movies , 2 +886 33 Ice Age is the first computer-generated feature cartoon to feel like other movies 3 +887 33 Ice Age 2 +888 33 Ice 2 +889 33 Age 2 +890 33 is the first computer-generated feature cartoon to feel like other movies 3 +891 33 the first computer-generated feature cartoon to feel like other movies 4 +892 33 the first computer-generated feature cartoon 2 +893 33 first computer-generated feature cartoon 3 +894 33 first 2 +895 33 computer-generated feature cartoon 2 +896 33 computer-generated 2 +897 33 feature cartoon 2 +898 33 feature 2 +899 33 cartoon 2 +900 33 to feel like other movies 3 +901 33 feel like other movies 2 +902 33 feel 2 +903 33 like other movies 2 +904 33 other movies 2 +905 33 other 2 +906 33 that makes for some glacial pacing early on 2 +907 33 makes for some glacial pacing early on 1 +908 33 makes for some glacial pacing 1 +909 33 makes 2 +910 33 for some glacial pacing 2 +911 33 some glacial pacing 2 +912 33 glacial pacing 2 +913 33 glacial 2 +914 33 pacing 2 +915 33 early on 2 +916 33 early 2 +917 34 There 's very little sense to what 's going on here , but the makers serve up the cliches with considerable dash . 2 +918 34 There 's very little sense to what 's going on here , but the makers serve up the cliches with considerable dash 1 +919 34 There 's very little sense to what 's going on here , but 1 +920 34 There 's very little sense to what 's going on here , 0 +921 34 There 's very little sense to what 's going on here 1 +922 34 's very little sense to what 's going on here 1 +923 34 very little sense to what 's going on here 1 +924 34 very little sense 1 +925 34 very little 2 +926 34 to what 's going on here 2 +927 34 what 's going on here 1 +928 34 's going on here 2 +929 34 going on here 2 +930 34 going on 2 +931 34 here 2 +932 34 the makers serve up the cliches with considerable dash 2 +933 34 the makers 2 +934 34 makers 2 +935 34 serve up the cliches with considerable dash 2 +936 34 serve up 2 +937 34 serve 2 +938 34 the cliches with considerable dash 1 +939 34 the cliches 1 +940 34 cliches 2 +941 34 with considerable dash 2 +942 34 considerable dash 2 +943 34 considerable 3 +944 34 dash 2 +945 35 Cattaneo should have followed the runaway success of his first film , The Full Monty , with something different . 2 +946 35 Cattaneo 2 +947 35 should have followed the runaway success of his first film , The Full Monty , with something different . 2 +948 35 should have followed the runaway success of his first film , The Full Monty , with something different 2 +949 35 have followed the runaway success of his first film , The Full Monty , with something different 2 +950 35 followed the runaway success of his first film , The Full Monty , with something different 2 +951 35 followed the runaway success of his first film , The Full Monty , 3 +952 35 followed 2 +953 35 the runaway success of his first film , The Full Monty , 4 +954 35 the runaway success 4 +955 35 runaway success 3 +956 35 runaway 2 +957 35 success 3 +958 35 of his first film , The Full Monty , 1 +959 35 his first film , The Full Monty , 2 +960 35 his first film , The Full Monty 2 +961 35 his first film , 2 +962 35 his first film 2 +963 35 first film 2 +964 35 The Full Monty 2 +965 35 Full Monty 2 +966 35 Full 3 +967 35 Monty 2 +968 35 with something different 2 +969 35 something different 3 +970 35 different 2 +971 36 They 're the unnamed , easily substitutable forces that serve as whatever terror the heroes of horror movies try to avoid . 1 +972 36 They 2 +973 36 're the unnamed , easily substitutable forces that serve as whatever terror the heroes of horror movies try to avoid . 1 +974 36 're the unnamed , easily substitutable forces that serve as whatever terror the heroes of horror movies try to avoid 2 +975 36 're 2 +976 36 the unnamed , easily substitutable forces that serve as whatever terror the heroes of horror movies try to avoid 1 +977 36 the unnamed , easily substitutable forces 1 +978 36 unnamed , easily substitutable forces 2 +979 36 unnamed , easily substitutable 1 +980 36 unnamed 2 +981 36 , easily substitutable 1 +982 36 easily substitutable 2 +983 36 easily 3 +984 36 substitutable 1 +985 36 forces 2 +986 36 that serve as whatever terror the heroes of horror movies try to avoid 2 +987 36 serve as whatever terror the heroes of horror movies try to avoid 2 +988 36 as whatever terror the heroes of horror movies try to avoid 2 +989 36 whatever terror the heroes of horror movies try to avoid 1 +990 36 whatever 1 +991 36 terror the heroes of horror movies try to avoid 1 +992 36 terror 1 +993 36 the heroes of horror movies try to avoid 1 +994 36 the heroes of horror movies 2 +995 36 the heroes 2 +996 36 heroes 3 +997 36 of horror movies 2 +998 36 horror movies 2 +999 36 horror 1 +1000 36 try to avoid 1 +1001 36 to avoid 1 +1002 36 avoid 0 +1003 37 It almost feels as if the movie is more interested in entertaining itself than in amusing us . 1 +1004 37 almost feels as if the movie is more interested in entertaining itself than in amusing us . 0 +1005 37 feels as if the movie is more interested in entertaining itself than in amusing us . 1 +1006 37 feels as if the movie is more interested in entertaining itself than in amusing us 1 +1007 37 feels 2 +1008 37 as if the movie is more interested in entertaining itself than in amusing us 1 +1009 37 if the movie is more interested in entertaining itself than in amusing us 1 +1010 37 if 2 +1011 37 the movie is more interested in entertaining itself than in amusing us 1 +1012 37 is more interested in entertaining itself than in amusing us 1 +1013 37 more interested in entertaining itself than in amusing us 1 +1014 37 more interested in entertaining itself 1 +1015 37 interested in entertaining itself 3 +1016 37 interested 3 +1017 37 in entertaining itself 2 +1018 37 entertaining itself 3 +1019 37 itself 2 +1020 37 than in amusing us 2 +1021 37 in amusing us 3 +1022 37 amusing us 3 +1023 37 amusing 4 +1024 38 The movie 's progression into rambling incoherence gives new meaning to the phrase ` fatal script error . ' 0 +1025 38 The movie 's progression into rambling incoherence 0 +1026 38 The movie 's progression 3 +1027 38 progression 2 +1028 38 into rambling incoherence 1 +1029 38 into 2 +1030 38 rambling incoherence 1 +1031 38 rambling 1 +1032 38 incoherence 1 +1033 38 gives new meaning to the phrase ` fatal script error . ' 0 +1034 38 gives new meaning to the phrase ` fatal script error . 2 +1035 38 gives new meaning to the phrase ` fatal script error 1 +1036 38 gives new meaning 2 +1037 38 gives 2 +1038 38 new meaning 2 +1039 38 new 3 +1040 38 meaning 2 +1041 38 to the phrase ` fatal script error 1 +1042 38 the phrase ` fatal script error 1 +1043 38 phrase ` fatal script error 1 +1044 38 phrase 2 +1045 38 ` fatal script error 0 +1046 38 ` 2 +1047 38 fatal script error 0 +1048 38 fatal 2 +1049 38 script error 1 +1050 38 error 1 +1051 39 Do n't judge this one too soon - it 's a dark , gritty story but it takes off in totally unexpected directions and keeps on going . 3 +1052 39 Do n't judge this one too soon - it 's a dark , gritty story but it takes off in totally unexpected directions and keeps on going 2 +1053 39 Do n't judge this one too soon - 2 +1054 39 Do n't judge this one too soon 3 +1055 39 Do n't 1 +1056 39 Do 2 +1057 39 judge this one too soon 2 +1058 39 judge this one 2 +1059 39 judge 2 +1060 39 too soon 2 +1061 39 soon 2 +1062 39 - 2 +1063 39 it 's a dark , gritty story but it takes off in totally unexpected directions and keeps on going 2 +1064 39 it 's a dark , gritty story but 3 +1065 39 it 's a dark , gritty story 2 +1066 39 's a dark , gritty story 3 +1067 39 a dark , gritty story 2 +1068 39 dark , gritty story 2 +1069 39 dark 2 +1070 39 , gritty story 2 +1071 39 gritty story 2 +1072 39 gritty 3 +1073 39 it takes off in totally unexpected directions and keeps on going 3 +1074 39 takes off in totally unexpected directions and keeps on going 2 +1075 39 takes off in totally unexpected directions and 3 +1076 39 takes off in totally unexpected directions 3 +1077 39 takes off 2 +1078 39 takes 2 +1079 39 in totally unexpected directions 2 +1080 39 totally unexpected directions 3 +1081 39 totally unexpected 2 +1082 39 totally 2 +1083 39 unexpected 2 +1084 39 directions 2 +1085 39 keeps on going 2 +1086 39 keeps 2 +1087 39 on going 2 +1088 40 So could young romantics out on a date . 3 +1089 40 could young romantics out on a date . 2 +1090 40 could young romantics out on a date 3 +1091 40 young romantics out on a date 2 +1092 40 young romantics 4 +1093 40 young 2 +1094 40 romantics 3 +1095 40 out on a date 2 +1096 40 out 1 +1097 40 on a date 2 +1098 40 a date 3 +1099 40 date 2 +1100 41 Tartakovsky 's team has some freakish powers of visual charm , but the five writers slip into the modern rut of narrative banality . 0 +1101 41 Tartakovsky 's team has some freakish powers of visual charm , but the five writers slip into the modern rut of narrative banality 1 +1102 41 Tartakovsky 's team has some freakish powers of visual charm , but 3 +1103 41 Tartakovsky 's team has some freakish powers of visual charm , 3 +1104 41 Tartakovsky 's team has some freakish powers of visual charm 3 +1105 41 Tartakovsky 's team 2 +1106 41 Tartakovsky 's 2 +1107 41 Tartakovsky 2 +1108 41 team 3 +1109 41 has some freakish powers of visual charm 3 +1110 41 some freakish powers of visual charm 2 +1111 41 some freakish powers 2 +1112 41 freakish powers 2 +1113 41 freakish 3 +1114 41 powers 2 +1115 41 of visual charm 3 +1116 41 visual charm 3 +1117 41 visual 2 +1118 41 charm 3 +1119 41 the five writers slip into the modern rut of narrative banality 2 +1120 41 the five writers 3 +1121 41 five writers 2 +1122 41 five 2 +1123 41 writers 2 +1124 41 slip into the modern rut of narrative banality 1 +1125 41 slip 2 +1126 41 into the modern rut of narrative banality 1 +1127 41 the modern rut of narrative banality 1 +1128 41 the modern rut 1 +1129 41 modern rut 2 +1130 41 modern 2 +1131 41 rut 1 +1132 41 of narrative banality 0 +1133 41 narrative banality 1 +1134 41 banality 1 +1135 42 Vincent Gallo is right at home in this French shocker playing his usual bad boy weirdo role . 3 +1136 42 Vincent Gallo 2 +1137 42 Vincent 2 +1138 42 Gallo 2 +1139 42 is right at home in this French shocker playing his usual bad boy weirdo role . 3 +1140 42 is right at home in this French shocker playing his usual bad boy weirdo role 3 +1141 42 is right at home in this French shocker 2 +1142 42 right at home in this French shocker 3 +1143 42 right at home 3 +1144 42 right 3 +1145 42 at home 2 +1146 42 at 2 +1147 42 home 2 +1148 42 in this French shocker 2 +1149 42 this French shocker 2 +1150 42 French shocker 3 +1151 42 French 2 +1152 42 shocker 2 +1153 42 playing his usual bad boy weirdo role 2 +1154 42 playing 2 +1155 42 his usual bad boy weirdo role 2 +1156 42 usual bad boy weirdo role 2 +1157 42 usual 2 +1158 42 bad boy weirdo role 2 +1159 42 bad 0 +1160 42 boy weirdo role 2 +1161 42 boy 2 +1162 42 weirdo role 2 +1163 42 weirdo 2 +1164 42 role 2 +1165 43 If a horror movie 's primary goal is to frighten and disturb , then They works spectacularly well ... A shiver-inducing , nerve-rattling ride . 4 +1166 43 If a horror movie 's primary goal is to frighten and disturb 2 +1167 43 a horror movie 's primary goal is to frighten and disturb 2 +1168 43 a horror movie 's primary goal 2 +1169 43 a horror movie 's 2 +1170 43 horror movie 's 2 +1171 43 primary goal 2 +1172 43 primary 2 +1173 43 goal 3 +1174 43 is to frighten and disturb 1 +1175 43 to frighten and disturb 2 +1176 43 frighten and disturb 2 +1177 43 frighten and 1 +1178 43 frighten 2 +1179 43 disturb 1 +1180 43 , then They works spectacularly well ... A shiver-inducing , nerve-rattling ride . 4 +1181 43 then They works spectacularly well ... A shiver-inducing , nerve-rattling ride . 4 +1182 43 then 2 +1183 43 They works spectacularly well ... A shiver-inducing , nerve-rattling ride . 4 +1184 43 works spectacularly well ... A shiver-inducing , nerve-rattling ride . 4 +1185 43 works spectacularly well ... A shiver-inducing , nerve-rattling ride 4 +1186 43 works spectacularly well ... 3 +1187 43 works spectacularly well 3 +1188 43 works 2 +1189 43 spectacularly well 4 +1190 43 spectacularly 4 +1191 43 well 3 +1192 43 A shiver-inducing , nerve-rattling ride 2 +1193 43 A shiver-inducing , 2 +1194 43 A shiver-inducing 3 +1195 43 shiver-inducing 3 +1196 43 nerve-rattling ride 2 +1197 43 nerve-rattling 2 +1198 43 ride 2 +1199 44 This 100-minute movie only has about 25 minutes of decent material . 1 +1200 44 This 100-minute movie 2 +1201 44 100-minute movie 2 +1202 44 100-minute 2 +1203 44 only has about 25 minutes of decent material . 1 +1204 44 only 2 +1205 44 has about 25 minutes of decent material . 3 +1206 44 has about 25 minutes of decent material 1 +1207 44 about 25 minutes of decent material 1 +1208 44 about 25 minutes 2 +1209 44 about 25 2 +1210 44 25 2 +1211 44 minutes 2 +1212 44 of decent material 2 +1213 44 decent material 3 +1214 44 decent 3 +1215 44 material 2 +1216 45 Fortunately , you still have that option . 2 +1217 45 Fortunately 2 +1218 45 , you still have that option . 2 +1219 45 you still have that option . 2 +1220 45 still have that option . 2 +1221 45 have that option . 2 +1222 45 have that option 2 +1223 45 that option 2 +1224 45 option 2 +1225 46 Less the sensational true-crime hell-jaunt purists might like and more experimental in its storytelling -LRB- though no less horrifying for it -RRB- . 3 +1226 46 the sensational true-crime hell-jaunt purists might like and more experimental in its storytelling -LRB- though no less horrifying for it -RRB- . 3 +1227 46 the sensational true-crime hell-jaunt purists might like and more experimental in its storytelling -LRB- though no less horrifying for it -RRB- 4 +1228 46 the sensational true-crime hell-jaunt purists might like and more experimental in its storytelling 3 +1229 46 the sensational true-crime 3 +1230 46 sensational true-crime 4 +1231 46 sensational 4 +1232 46 true-crime 2 +1233 46 hell-jaunt purists might like and more experimental in its storytelling 2 +1234 46 hell-jaunt purists 1 +1235 46 hell-jaunt 1 +1236 46 purists 2 +1237 46 might like and more experimental in its storytelling 3 +1238 46 might 2 +1239 46 like and more experimental in its storytelling 2 +1240 46 like and 2 +1241 46 more experimental in its storytelling 3 +1242 46 more experimental 3 +1243 46 experimental 2 +1244 46 in its storytelling 2 +1245 46 its storytelling 2 +1246 46 storytelling 2 +1247 46 -LRB- though no less horrifying for it -RRB- 2 +1248 46 -LRB- 1 +1249 46 though no less horrifying for it -RRB- 2 +1250 46 though no 2 +1251 46 though 2 +1252 46 less horrifying for it -RRB- 2 +1253 46 less horrifying for it 2 +1254 46 horrifying for it 2 +1255 46 horrifying 1 +1256 46 for it 2 +1257 46 -RRB- 3 +1258 47 As tricky and satisfying as any of David Mamet 's airless cinematic shell games . 3 +1259 47 As tricky and satisfying as any of David 3 +1260 47 tricky and satisfying as any of David 3 +1261 47 tricky and satisfying 3 +1262 47 tricky and 2 +1263 47 tricky 2 +1264 47 satisfying 4 +1265 47 as any of David 2 +1266 47 any of David 2 +1267 47 any 2 +1268 47 of David 2 +1269 47 David 2 +1270 47 Mamet 's airless cinematic shell games . 3 +1271 47 Mamet 's 2 +1272 47 Mamet 2 +1273 47 airless cinematic shell games . 1 +1274 47 airless cinematic shell games 2 +1275 47 airless 2 +1276 47 cinematic shell games 2 +1277 47 cinematic 3 +1278 47 shell games 2 +1279 47 shell 2 +1280 47 games 2 +1281 48 I 'm sure the filmmaker would disagree , but , honestly , I do n't see the point . 1 +1282 48 'm sure the filmmaker would disagree , but , honestly , I do n't see the point . 1 +1283 48 'm sure the filmmaker would disagree , but , honestly , I do n't see the point 0 +1284 48 'm 2 +1285 48 sure the filmmaker would disagree , but , honestly , I do n't see the point 1 +1286 48 sure 2 +1287 48 the filmmaker would disagree , but , honestly , I do n't see the point 1 +1288 48 the filmmaker would disagree , but , 2 +1289 48 the filmmaker would disagree , but 2 +1290 48 the filmmaker would disagree , 2 +1291 48 the filmmaker would disagree 1 +1292 48 the filmmaker 2 +1293 48 filmmaker 2 +1294 48 would disagree 2 +1295 48 disagree 3 +1296 48 honestly , I do n't see the point 0 +1297 48 honestly 3 +1298 48 , I do n't see the point 1 +1299 48 I do n't see the point 1 +1300 48 do n't see the point 1 +1301 48 see the point 2 +1302 48 see 2 +1303 48 the point 2 +1304 48 point 2 +1305 49 Jones has tackled a meaty subject and drawn engaging characters while peppering the pages with memorable zingers . 4 +1306 49 Jones 2 +1307 49 has tackled a meaty subject and drawn engaging characters while peppering the pages with memorable zingers . 4 +1308 49 has tackled a meaty subject and drawn engaging characters while peppering the pages with memorable zingers 3 +1309 49 tackled a meaty subject and drawn engaging characters while peppering the pages with memorable zingers 4 +1310 49 tackled a meaty subject and 3 +1311 49 tackled a meaty subject 3 +1312 49 tackled 2 +1313 49 a meaty subject 3 +1314 49 meaty subject 3 +1315 49 meaty 3 +1316 49 subject 2 +1317 49 drawn engaging characters while peppering the pages with memorable zingers 3 +1318 49 drawn engaging characters 4 +1319 49 drawn 2 +1320 49 engaging characters 3 +1321 49 engaging 4 +1322 49 characters 2 +1323 49 while peppering the pages with memorable zingers 3 +1324 49 peppering the pages with memorable zingers 3 +1325 49 peppering the pages 2 +1326 49 peppering 2 +1327 49 the pages 2 +1328 49 pages 2 +1329 49 with memorable zingers 3 +1330 49 memorable zingers 3 +1331 49 memorable 4 +1332 49 zingers 2 +1333 50 Bloody Sunday has the grace to call for prevention rather than to place blame , making it one of the best war movies ever made . 4 +1334 50 Bloody Sunday 2 +1335 50 Bloody 1 +1336 50 Sunday 2 +1337 50 has the grace to call for prevention rather than to place blame , making it one of the best war movies ever made . 4 +1338 50 has the grace to call for prevention rather than to place blame , making it one of the best war movies ever made 4 +1339 50 the grace to call for prevention rather than to place blame , making it one of the best war movies ever made 4 +1340 50 grace to call for prevention rather than to place blame , making it one of the best war movies ever made 4 +1341 50 grace 3 +1342 50 to call for prevention rather than to place blame , making it one of the best war movies ever made 4 +1343 50 call for prevention rather than to place blame , making it one of the best war movies ever made 4 +1344 50 call for prevention rather than to place blame , 2 +1345 50 call for prevention rather than to place blame 2 +1346 50 call 2 +1347 50 for prevention rather than to place blame 2 +1348 50 for prevention rather than 2 +1349 50 for prevention 2 +1350 50 prevention 2 +1351 50 rather than 2 +1352 50 to place blame 1 +1353 50 place blame 2 +1354 50 place 2 +1355 50 blame 2 +1356 50 making it one of the best war movies ever made 4 +1357 50 making 2 +1358 50 it one of the best war movies ever made 4 +1359 50 one of the best war movies ever made 4 +1360 50 of the best war movies ever made 4 +1361 50 the best war movies ever made 4 +1362 50 the best war movies 3 +1363 50 best war movies 4 +1364 50 war movies 1 +1365 50 war 1 +1366 50 ever made 2 +1367 50 ever 2 +1368 50 made 2 +1369 51 Takes a clunky TV-movie approach to detailing a chapter in the life of the celebrated Irish playwright , poet and drinker . 1 +1370 51 Takes a clunky TV-movie approach to detailing a chapter in the life of the celebrated Irish playwright , poet and drinker 1 +1371 51 a clunky TV-movie approach to detailing a chapter in the life of the celebrated Irish playwright , poet and drinker 1 +1372 51 a clunky TV-movie approach 2 +1373 51 clunky TV-movie approach 0 +1374 51 clunky TV-movie 1 +1375 51 clunky 1 +1376 51 TV-movie 2 +1377 51 approach 2 +1378 51 to detailing a chapter in the life of the celebrated Irish playwright , poet and drinker 2 +1379 51 detailing a chapter in the life of the celebrated Irish playwright , poet and drinker 2 +1380 51 detailing a chapter 2 +1381 51 detailing 3 +1382 51 a chapter 2 +1383 51 chapter 2 +1384 51 in the life of the celebrated Irish playwright , poet and drinker 2 +1385 51 the life of the celebrated Irish playwright , poet and drinker 2 +1386 51 the life 2 +1387 51 life 3 +1388 51 of the celebrated Irish playwright , poet and drinker 2 +1389 51 the celebrated Irish playwright , poet and drinker 2 +1390 51 celebrated Irish playwright , poet and drinker 2 +1391 51 celebrated 3 +1392 51 Irish playwright , poet and drinker 2 +1393 51 Irish 2 +1394 51 playwright , poet and drinker 2 +1395 51 playwright 2 +1396 51 , poet and drinker 2 +1397 51 poet and drinker 2 +1398 51 poet and 2 +1399 51 poet 2 +1400 51 drinker 2 +1401 52 Finally coming down off of Miramax 's deep shelves after a couple of aborted attempts , Waking Up in Reno makes a strong case for letting sleeping dogs lie . 2 +1402 52 Finally 2 +1403 52 coming down off of Miramax 's deep shelves after a couple of aborted attempts , Waking Up in Reno makes a strong case for letting sleeping dogs lie . 1 +1404 52 coming down off of Miramax 's deep shelves after a couple of aborted attempts , Waking Up in Reno makes a strong case for letting sleeping dogs lie 1 +1405 52 coming down off of Miramax 's deep shelves after a couple of aborted attempts , Waking Up in Reno makes 1 +1406 52 coming down off of Miramax 's deep shelves after a couple of aborted attempts , Waking Up in Reno 1 +1407 52 coming down off of Miramax 's deep shelves after a couple of aborted attempts , 1 +1408 52 coming down off of Miramax 's deep shelves after a couple of aborted attempts 2 +1409 52 coming down off of Miramax 's deep shelves 2 +1410 52 coming down off 2 +1411 52 coming 2 +1412 52 down off 2 +1413 52 down 2 +1414 52 of Miramax 's deep shelves 2 +1415 52 Miramax 's deep shelves 2 +1416 52 Miramax 's 2 +1417 52 Miramax 2 +1418 52 deep shelves 2 +1419 52 deep 2 +1420 52 shelves 2 +1421 52 after a couple of aborted attempts 1 +1422 52 after 2 +1423 52 a couple of aborted attempts 1 +1424 52 a couple 2 +1425 52 couple 2 +1426 52 of aborted attempts 1 +1427 52 aborted attempts 1 +1428 52 aborted 2 +1429 52 attempts 2 +1430 52 Waking Up in Reno 2 +1431 52 Waking Up 2 +1432 52 Waking 2 +1433 52 in Reno 2 +1434 52 Reno 2 +1435 52 a strong case for letting sleeping dogs lie 1 +1436 52 a strong case 3 +1437 52 strong case 3 +1438 52 strong 3 +1439 52 for letting sleeping dogs lie 2 +1440 52 letting sleeping dogs lie 2 +1441 52 letting 2 +1442 52 sleeping dogs lie 2 +1443 52 sleeping dogs 2 +1444 52 sleeping 2 +1445 52 lie 1 +1446 53 Thanks largely to Williams , all the interesting developments are processed in 60 minutes -- the rest is just an overexposed waste of film . 0 +1447 53 Thanks largely to Williams , all the interesting developments are processed in 60 minutes -- the rest is just an overexposed waste of film 1 +1448 53 Thanks largely to Williams , all the interesting developments are processed in 60 minutes -- 2 +1449 53 Thanks largely to Williams , all the interesting developments are processed in 60 minutes 3 +1450 53 Thanks largely to Williams 2 +1451 53 Thanks largely 3 +1452 53 Thanks 2 +1453 53 largely 2 +1454 53 to Williams 2 +1455 53 Williams 2 +1456 53 , all the interesting developments are processed in 60 minutes 2 +1457 53 all the interesting developments are processed in 60 minutes 2 +1458 53 all the interesting developments 3 +1459 53 the interesting developments 2 +1460 53 interesting developments 3 +1461 53 interesting 3 +1462 53 developments 2 +1463 53 are processed in 60 minutes 2 +1464 53 processed in 60 minutes 2 +1465 53 processed 2 +1466 53 in 60 minutes 2 +1467 53 60 minutes 2 +1468 53 60 2 +1469 53 the rest is just an overexposed waste of film 0 +1470 53 the rest 2 +1471 53 rest 2 +1472 53 is just an overexposed waste of film 0 +1473 53 is just 2 +1474 53 an overexposed waste of film 0 +1475 53 an overexposed waste 0 +1476 53 overexposed waste 1 +1477 53 overexposed 1 +1478 53 waste 1 +1479 53 of film 2 +1480 54 Comes across as a relic from a bygone era , and its convolutions ... feel silly rather than plausible . 0 +1481 54 Comes across as a relic from a bygone era , and its convolutions ... feel silly rather than plausible 1 +1482 54 Comes across 2 +1483 54 Comes 2 +1484 54 across 2 +1485 54 as a relic from a bygone era , and its convolutions ... feel silly rather than plausible 0 +1486 54 a relic from a bygone era , and its convolutions ... feel silly rather than plausible 1 +1487 54 a relic from a bygone era , and its convolutions ... feel 2 +1488 54 relic from a bygone era , and its convolutions ... feel 2 +1489 54 relic from a bygone era , and its convolutions ... 1 +1490 54 relic 2 +1491 54 from a bygone era , and its convolutions ... 2 +1492 54 a bygone era , and its convolutions ... 2 +1493 54 a bygone era , and its convolutions 2 +1494 54 a bygone era , and 2 +1495 54 a bygone era , 2 +1496 54 a bygone era 2 +1497 54 bygone era 2 +1498 54 bygone 2 +1499 54 era 2 +1500 54 its convolutions 1 +1501 54 convolutions 2 +1502 54 silly rather than plausible 1 +1503 54 silly rather than 1 +1504 54 silly 3 +1505 54 plausible 2 +1506 55 Perhaps it 's cliche to call the film ` refreshing , ' but it is . 4 +1507 55 Perhaps it 's cliche to call the film ` refreshing , ' but it is 4 +1508 55 Perhaps it 's cliche to call the film ` refreshing , ' but 3 +1509 55 Perhaps it 's cliche to call the film ` refreshing , ' 3 +1510 55 Perhaps it 's cliche to call the film ` refreshing , 2 +1511 55 Perhaps it 's cliche to call the film ` refreshing 3 +1512 55 Perhaps 2 +1513 55 it 's cliche to call the film ` refreshing 2 +1514 55 's cliche to call the film ` refreshing 1 +1515 55 cliche to call the film ` refreshing 2 +1516 55 cliche 1 +1517 55 to call the film ` refreshing 3 +1518 55 call the film ` refreshing 3 +1519 55 the film ` refreshing 2 +1520 55 ` refreshing 4 +1521 55 refreshing 3 +1522 55 it is 3 +1523 56 Both lead performances are Oscar-size . 4 +1524 56 Both lead performances 2 +1525 56 Both 2 +1526 56 lead performances 3 +1527 56 lead 2 +1528 56 are Oscar-size . 2 +1529 56 are Oscar-size 3 +1530 56 Oscar-size 2 +1531 57 Run for your lives ! 0 +1532 57 Run for your lives 0 +1533 57 Run 2 +1534 57 for your lives 2 +1535 57 your lives 2 +1536 57 your 2 +1537 57 lives 2 +1538 57 ! 2 +1539 58 Mark Pellington 's latest pop thriller is as kooky and overeager as it is spooky and subtly in love with myth . 3 +1540 58 Mark Pellington 's latest pop thriller 2 +1541 58 Mark Pellington 's 2 +1542 58 Mark 2 +1543 58 Pellington 's 2 +1544 58 Pellington 2 +1545 58 latest pop thriller 2 +1546 58 pop thriller 2 +1547 58 pop 2 +1548 58 thriller 3 +1549 58 is as kooky and overeager as it is spooky and subtly in love with myth . 2 +1550 58 is as kooky and overeager as it is spooky and subtly in love with myth 2 +1551 58 as kooky and overeager as it is spooky and subtly in love with myth 3 +1552 58 kooky and overeager as it is spooky and subtly in love with myth 3 +1553 58 kooky and overeager 1 +1554 58 kooky and 2 +1555 58 kooky 2 +1556 58 overeager 1 +1557 58 as it is spooky and subtly in love with myth 3 +1558 58 it is spooky and subtly in love with myth 3 +1559 58 is spooky and subtly in love with myth 3 +1560 58 is spooky and subtly 3 +1561 58 spooky and subtly 3 +1562 58 spooky and 2 +1563 58 spooky 2 +1564 58 subtly 2 +1565 58 in love with myth 3 +1566 58 love with myth 2 +1567 58 with myth 2 +1568 58 myth 2 +1569 59 Claude Chabrol 's camera has a way of gently swaying back and forth as it cradles its characters , veiling tension beneath otherwise tender movements . 3 +1570 59 Claude Chabrol 's camera 2 +1571 59 Claude Chabrol 's 2 +1572 59 Claude 3 +1573 59 Chabrol 's 2 +1574 59 Chabrol 2 +1575 59 camera 2 +1576 59 has a way of gently swaying back and forth as it cradles its characters , veiling tension beneath otherwise tender movements . 3 +1577 59 has a way of gently swaying back and forth as it cradles its characters , veiling tension beneath otherwise tender movements 3 +1578 59 a way of gently swaying back and forth as it cradles its characters , veiling tension beneath otherwise tender movements 3 +1579 59 a way 2 +1580 59 way 2 +1581 59 of gently swaying back and forth as it cradles its characters , veiling tension beneath otherwise tender movements 3 +1582 59 gently swaying back and forth as it cradles its characters , veiling tension beneath otherwise tender movements 3 +1583 59 gently 2 +1584 59 swaying back and forth as it cradles its characters , veiling tension beneath otherwise tender movements 3 +1585 59 swaying back and forth 2 +1586 59 swaying 2 +1587 59 back and forth 2 +1588 59 back and 2 +1589 59 back 2 +1590 59 forth 2 +1591 59 as it cradles its characters , veiling tension beneath otherwise tender movements 2 +1592 59 it cradles its characters , veiling tension beneath otherwise tender movements 2 +1593 59 cradles its characters , veiling tension beneath otherwise tender movements 3 +1594 59 cradles its characters , 2 +1595 59 cradles its characters 2 +1596 59 cradles 2 +1597 59 its characters 2 +1598 59 veiling tension beneath otherwise tender movements 3 +1599 59 veiling tension 1 +1600 59 veiling 2 +1601 59 tension 2 +1602 59 beneath otherwise tender movements 3 +1603 59 beneath 2 +1604 59 otherwise tender movements 2 +1605 59 otherwise 2 +1606 59 tender movements 3 +1607 59 tender 2 +1608 59 movements 2 +1609 60 Transforms one of -LRB- Shakespeare 's -RRB- deepest tragedies into a smart new comedy . 3 +1610 60 Transforms one of -LRB- Shakespeare 's -RRB- deepest tragedies into a smart new comedy 3 +1611 60 Transforms one of -LRB- Shakespeare 's -RRB- deepest tragedies 3 +1612 60 Transforms one 2 +1613 60 Transforms 2 +1614 60 of -LRB- Shakespeare 's -RRB- deepest tragedies 2 +1615 60 -LRB- Shakespeare 's -RRB- deepest tragedies 2 +1616 60 -LRB- Shakespeare 's -RRB- 2 +1617 60 Shakespeare 's -RRB- 2 +1618 60 Shakespeare 's 2 +1619 60 Shakespeare 1 +1620 60 deepest tragedies 1 +1621 60 deepest 2 +1622 60 tragedies 1 +1623 60 into a smart new comedy 3 +1624 60 a smart new comedy 4 +1625 60 smart new comedy 4 +1626 60 smart 4 +1627 60 new comedy 2 +1628 61 The screenplay by James Eric , James Horton and director Peter O'Fallon ... is so pat it makes your teeth hurt . 1 +1629 61 The screenplay by James Eric , James Horton and director Peter O'Fallon 2 +1630 61 The screenplay 2 +1631 61 screenplay 2 +1632 61 by James Eric , James Horton and director Peter O'Fallon 2 +1633 61 James Eric , James Horton and director Peter O'Fallon 2 +1634 61 James Eric , James Horton and 2 +1635 61 James Eric , James Horton 2 +1636 61 James Eric , 2 +1637 61 James Eric 2 +1638 61 James 2 +1639 61 Eric 3 +1640 61 James Horton 2 +1641 61 Horton 2 +1642 61 director Peter O'Fallon 2 +1643 61 director 2 +1644 61 Peter O'Fallon 2 +1645 61 Peter 2 +1646 61 O'Fallon 2 +1647 61 ... is so pat it makes your teeth hurt . 1 +1648 61 is so pat it makes your teeth hurt . 1 +1649 61 is so pat it makes your teeth hurt 1 +1650 61 so pat it makes your teeth hurt 1 +1651 61 pat it makes your teeth hurt 2 +1652 61 pat 2 +1653 61 it makes your teeth hurt 1 +1654 61 makes your teeth hurt 0 +1655 61 your teeth hurt 2 +1656 61 your teeth 2 +1657 61 teeth 2 +1658 61 hurt 1 +1659 62 But arriving at a particularly dark moment in history , it offers flickering reminders of the ties that bind us . 3 +1660 62 arriving at a particularly dark moment in history , it offers flickering reminders of the ties that bind us . 3 +1661 62 arriving at a particularly dark moment in history 2 +1662 62 arriving 2 +1663 62 at a particularly dark moment in history 2 +1664 62 a particularly dark moment in history 2 +1665 62 a particularly dark moment 2 +1666 62 particularly dark moment 2 +1667 62 particularly dark 2 +1668 62 particularly 2 +1669 62 moment 3 +1670 62 in history 2 +1671 62 history 2 +1672 62 , it offers flickering reminders of the ties that bind us . 2 +1673 62 it offers flickering reminders of the ties that bind us . 2 +1674 62 offers flickering reminders of the ties that bind us . 3 +1675 62 offers flickering reminders of the ties that bind us 3 +1676 62 flickering reminders of the ties that bind us 3 +1677 62 flickering reminders of the ties 2 +1678 62 flickering reminders 2 +1679 62 flickering 2 +1680 62 reminders 2 +1681 62 of the ties 2 +1682 62 the ties 2 +1683 62 ties 2 +1684 62 that bind us 2 +1685 62 bind us 1 +1686 62 bind 2 +1687 63 Its generic villains lack any intrigue -LRB- other than their funny accents -RRB- and the action scenes are poorly delivered . 1 +1688 63 Its generic villains lack any intrigue -LRB- other than their funny accents -RRB- and the action scenes are poorly delivered 0 +1689 63 Its generic villains lack any intrigue -LRB- other than their funny accents -RRB- and 0 +1690 63 Its generic villains lack any intrigue -LRB- other than their funny accents -RRB- 1 +1691 63 Its generic villains 2 +1692 63 generic villains 1 +1693 63 generic 1 +1694 63 villains 1 +1695 63 lack any intrigue -LRB- other than their funny accents -RRB- 1 +1696 63 lack 2 +1697 63 any intrigue -LRB- other than their funny accents -RRB- 2 +1698 63 any intrigue 2 +1699 63 -LRB- other than their funny accents -RRB- 2 +1700 63 other than their funny accents -RRB- 2 +1701 63 other than their funny accents 2 +1702 63 than their funny accents 3 +1703 63 their funny accents 2 +1704 63 their 2 +1705 63 funny accents 2 +1706 63 funny 3 +1707 63 accents 2 +1708 63 the action scenes are poorly delivered 1 +1709 63 the action scenes 2 +1710 63 action scenes 3 +1711 63 scenes 2 +1712 63 are poorly delivered 1 +1713 63 are poorly 1 +1714 63 poorly 1 +1715 63 delivered 2 +1716 64 The characters are more deeply thought through than in most ` right-thinking ' films . 3 +1717 64 The characters 2 +1718 64 are more deeply thought through than in most ` right-thinking ' films . 2 +1719 64 are more deeply thought through than in most ` right-thinking ' films 3 +1720 64 are more deeply 2 +1721 64 more deeply 2 +1722 64 deeply 2 +1723 64 thought through than in most ` right-thinking ' films 3 +1724 64 thought 2 +1725 64 through than in most ` right-thinking ' films 3 +1726 64 than in most ` right-thinking ' films 2 +1727 64 than in most 2 +1728 64 in most 2 +1729 64 most 2 +1730 64 ` right-thinking ' films 2 +1731 64 right-thinking ' films 3 +1732 64 right-thinking 2 +1733 64 ' films 2 +1734 64 films 2 +1735 65 The film , despite the gratuitous cinematic distractions impressed upon it , is still good fun . 3 +1736 65 , despite the gratuitous cinematic distractions impressed upon it , is still good fun . 3 +1737 65 despite the gratuitous cinematic distractions impressed upon it , is still good fun . 3 +1738 65 despite the gratuitous cinematic distractions impressed upon it 2 +1739 65 the gratuitous cinematic distractions impressed upon it 2 +1740 65 the gratuitous cinematic distractions 1 +1741 65 gratuitous cinematic distractions 3 +1742 65 gratuitous 2 +1743 65 cinematic distractions 2 +1744 65 distractions 1 +1745 65 impressed upon it 2 +1746 65 impressed 4 +1747 65 upon it 2 +1748 65 upon 2 +1749 65 , is still good fun . 3 +1750 65 is still good fun . 3 +1751 65 is still good fun 3 +1752 65 is still 2 +1753 65 good fun 4 +1754 65 fun 4 +1755 66 Downright transparent is the script 's endless assault of embarrassingly ham-fisted sex jokes that reek of a script rewrite designed to garner the film a `` cooler '' PG-13 rating . 0 +1756 66 Downright transparent 1 +1757 66 Downright 2 +1758 66 transparent 2 +1759 66 is the script 's endless assault of embarrassingly ham-fisted sex jokes that reek of a script rewrite designed to garner the film a `` cooler '' PG-13 rating . 0 +1760 66 is the script 's endless assault of embarrassingly ham-fisted sex jokes that reek of a script rewrite designed to garner the film a `` cooler '' PG-13 rating 0 +1761 66 is the script 's endless assault of embarrassingly ham-fisted sex jokes 0 +1762 66 the script 's endless assault of embarrassingly ham-fisted sex jokes 1 +1763 66 the script 's endless assault 1 +1764 66 the script 's 2 +1765 66 script 's 2 +1766 66 endless assault 0 +1767 66 endless 1 +1768 66 assault 1 +1769 66 of embarrassingly ham-fisted sex jokes 1 +1770 66 embarrassingly ham-fisted sex jokes 0 +1771 66 embarrassingly ham-fisted 1 +1772 66 embarrassingly 1 +1773 66 ham-fisted 1 +1774 66 sex jokes 2 +1775 66 sex 3 +1776 66 jokes 2 +1777 66 that reek of a script rewrite designed to garner the film a `` cooler '' PG-13 rating 1 +1778 66 reek of a script rewrite designed to garner the film a `` cooler '' PG-13 rating 1 +1779 66 reek of a script 1 +1780 66 reek 2 +1781 66 of a script 2 +1782 66 a script 2 +1783 66 rewrite designed to garner the film a `` cooler '' PG-13 rating 2 +1784 66 rewrite 2 +1785 66 designed to garner the film a `` cooler '' PG-13 rating 2 +1786 66 designed 2 +1787 66 to garner the film a `` cooler '' PG-13 rating 2 +1788 66 garner the film a `` cooler '' PG-13 rating 3 +1789 66 garner 2 +1790 66 the film a `` cooler '' PG-13 rating 2 +1791 66 a `` cooler '' PG-13 rating 2 +1792 66 `` cooler '' PG-13 rating 2 +1793 66 cooler '' PG-13 rating 2 +1794 66 cooler 2 +1795 66 '' PG-13 rating 2 +1796 66 PG-13 rating 2 +1797 66 PG-13 3 +1798 66 rating 2 +1799 67 A smart , provocative drama that does the nearly impossible : It gets under the skin of a man we only know as an evil , monstrous lunatic . 4 +1800 67 A smart , provocative drama that does the nearly impossible : It gets under the skin of a man we only know as an evil , monstrous lunatic 4 +1801 67 A smart , provocative drama that does the nearly impossible : 4 +1802 67 A smart , provocative drama that does the nearly impossible 4 +1803 67 A smart , provocative drama 3 +1804 67 smart , provocative drama 4 +1805 67 , provocative drama 3 +1806 67 provocative drama 4 +1807 67 provocative 3 +1808 67 drama 1 +1809 67 that does the nearly impossible 3 +1810 67 does the nearly impossible 4 +1811 67 the nearly impossible 2 +1812 67 the nearly 2 +1813 67 impossible 0 +1814 67 : 2 +1815 67 It gets under the skin of a man we only know as an evil , monstrous lunatic 2 +1816 67 gets under the skin of a man we only know as an evil , monstrous lunatic 1 +1817 67 gets 2 +1818 67 under the skin of a man we only know as an evil , monstrous lunatic 1 +1819 67 under 2 +1820 67 the skin of a man we only know as an evil , monstrous lunatic 2 +1821 67 the skin 2 +1822 67 skin 2 +1823 67 of a man we only know as an evil , monstrous lunatic 1 +1824 67 a man we only know as an evil , monstrous lunatic 2 +1825 67 a man 2 +1826 67 man 2 +1827 67 we only know as an evil , monstrous lunatic 1 +1828 67 we 2 +1829 67 only know as an evil , monstrous lunatic 2 +1830 67 know as an evil , monstrous lunatic 1 +1831 67 know 2 +1832 67 as an evil , monstrous lunatic 1 +1833 67 an evil , monstrous lunatic 1 +1834 67 evil , monstrous lunatic 1 +1835 67 evil 1 +1836 67 , monstrous lunatic 2 +1837 67 monstrous lunatic 2 +1838 67 monstrous 1 +1839 67 lunatic 2 +1840 68 It 's like a drive-by . 1 +1841 68 's like a drive-by . 2 +1842 68 's like a drive-by 1 +1843 68 like a drive-by 2 +1844 68 a drive-by 2 +1845 68 drive-by 2 +1846 69 is many things -- stoner midnight flick , sci-fi deconstruction , gay fantasia -- but above all it 's a love story as sanguine as its title . 3 +1847 69 is many things -- stoner midnight flick , sci-fi deconstruction , gay fantasia -- but above all 2 +1848 69 is many things -- stoner midnight flick , sci-fi deconstruction , gay fantasia -- 1 +1849 69 many things -- stoner midnight flick , sci-fi deconstruction , gay fantasia -- 2 +1850 69 many things 2 +1851 69 many 2 +1852 69 things 2 +1853 69 -- stoner midnight flick , sci-fi deconstruction , gay fantasia -- 1 +1854 69 stoner midnight flick , sci-fi deconstruction , gay fantasia -- 2 +1855 69 stoner midnight flick , sci-fi deconstruction , gay fantasia 2 +1856 69 stoner midnight flick , sci-fi deconstruction , 2 +1857 69 stoner midnight flick , sci-fi deconstruction 1 +1858 69 stoner midnight flick , 2 +1859 69 stoner midnight flick 2 +1860 69 stoner 2 +1861 69 midnight flick 2 +1862 69 midnight 2 +1863 69 sci-fi deconstruction 2 +1864 69 sci-fi 2 +1865 69 deconstruction 2 +1866 69 gay fantasia 2 +1867 69 gay 2 +1868 69 fantasia 2 +1869 69 but above all 2 +1870 69 above all 3 +1871 69 above 2 +1872 69 it 's a love story as sanguine as its title . 2 +1873 69 's a love story as sanguine as its title . 2 +1874 69 's a love story as sanguine as its title 3 +1875 69 a love story as sanguine as its title 3 +1876 69 a love story as sanguine 1 +1877 69 a love story 2 +1878 69 love story 2 +1879 69 as sanguine 2 +1880 69 sanguine 2 +1881 69 as its title 2 +1882 69 its title 2 +1883 70 A very funny romantic comedy about two skittish New York middle-agers who stumble into a relationship and then struggle furiously with their fears and foibles . 3 +1884 70 A very funny romantic comedy about two skittish New York middle-agers who stumble into a relationship and then 3 +1885 70 A very funny romantic comedy 3 +1886 70 very funny romantic comedy 3 +1887 70 very funny 4 +1888 70 romantic comedy 2 +1889 70 about two skittish New York middle-agers who stumble into a relationship and then 2 +1890 70 two skittish New York middle-agers who stumble into a relationship and then 2 +1891 70 two skittish New York middle-agers 2 +1892 70 two 2 +1893 70 skittish New York middle-agers 2 +1894 70 skittish 2 +1895 70 New York middle-agers 2 +1896 70 York middle-agers 2 +1897 70 York 2 +1898 70 middle-agers 2 +1899 70 who stumble into a relationship and then 2 +1900 70 stumble into a relationship and then 2 +1901 70 stumble 2 +1902 70 into a relationship and then 2 +1903 70 a relationship and then 2 +1904 70 a relationship and 2 +1905 70 a relationship 2 +1906 70 relationship 2 +1907 70 struggle furiously with their fears and foibles . 2 +1908 70 struggle furiously with their fears and foibles 2 +1909 70 struggle furiously 1 +1910 70 struggle 1 +1911 70 furiously 1 +1912 70 with their fears and foibles 2 +1913 70 their fears and foibles 2 +1914 70 fears and foibles 2 +1915 70 fears and 2 +1916 70 fears 1 +1917 70 foibles 2 +1918 71 But it has an ambition to say something about its subjects , but not a willingness . 1 +1919 71 it has an ambition to say something about its subjects , but not a willingness . 2 +1920 71 has an ambition to say something about its subjects , but not a willingness . 1 +1921 71 has an ambition to say something about its subjects , but not a willingness 2 +1922 71 an ambition to say something about its subjects , but not a willingness 2 +1923 71 an ambition to say something about its subjects , but not 2 +1924 71 an ambition to say something about its subjects , 2 +1925 71 an ambition to say something about its subjects 2 +1926 71 ambition to say something about its subjects 2 +1927 71 ambition 3 +1928 71 to say something about its subjects 2 +1929 71 say something about its subjects 3 +1930 71 say something 2 +1931 71 about its subjects 2 +1932 71 its subjects 2 +1933 71 subjects 2 +1934 71 but not 2 +1935 71 not 1 +1936 71 a willingness 2 +1937 71 willingness 2 +1938 72 -LRB- Scherfig -RRB- has made a movie that will leave you wondering about the characters ' lives after the clever credits roll . 3 +1939 72 -LRB- Scherfig -RRB- 2 +1940 72 Scherfig -RRB- 2 +1941 72 Scherfig 2 +1942 72 has made a movie that will leave you wondering about the characters ' lives after the clever credits roll . 3 +1943 72 has made a movie that will leave you wondering about the characters ' lives after the clever credits roll 4 +1944 72 made a movie that will leave you wondering about the characters ' lives after the clever credits roll 4 +1945 72 a movie that will leave you wondering about the characters ' lives after the clever credits roll 3 +1946 72 a movie 2 +1947 72 that will leave you wondering about the characters ' lives after the clever credits roll 3 +1948 72 will leave you wondering about the characters ' lives after the clever credits roll 3 +1949 72 will 2 +1950 72 leave you wondering about the characters ' lives after the clever credits roll 2 +1951 72 you wondering about the characters ' lives after the clever credits roll 4 +1952 72 wondering about the characters ' lives after the clever credits roll 3 +1953 72 wondering about the characters ' lives 2 +1954 72 wondering 2 +1955 72 about the characters ' lives 2 +1956 72 the characters ' lives 2 +1957 72 the characters ' 2 +1958 72 characters ' 2 +1959 72 after the clever credits roll 3 +1960 72 the clever credits roll 3 +1961 72 clever credits roll 3 +1962 72 clever 4 +1963 72 credits roll 2 +1964 72 credits 2 +1965 72 roll 2 +1966 73 -LRB- An -RRB- absorbing documentary . 3 +1967 73 -LRB- An -RRB- absorbing documentary 3 +1968 73 -LRB- An -RRB- 2 +1969 73 An -RRB- 3 +1970 73 absorbing documentary 3 +1971 73 absorbing 3 +1972 73 documentary 2 +1973 74 Reeks of rot and hack work from start to finish . 2 +1974 74 Reeks of rot and hack 1 +1975 74 Reeks 1 +1976 74 of rot and hack 1 +1977 74 rot and hack 1 +1978 74 rot and 2 +1979 74 rot 1 +1980 74 hack 1 +1981 74 work from start to finish . 3 +1982 74 work from start to finish 2 +1983 74 work from start 2 +1984 75 Plays like a series of vignettes -- clips of a film that are still looking for a common through-line . 1 +1985 75 Plays like a series of vignettes -- clips of a film that are still looking for a common through-line 2 +1986 75 Plays like a series of vignettes -- 2 +1987 75 Plays like a series of vignettes 2 +1988 75 like a series of vignettes 2 +1989 75 a series of vignettes 2 +1990 75 of vignettes 2 +1991 75 vignettes 2 +1992 75 clips of a film that are still looking for a common through-line 1 +1993 75 clips 2 +1994 75 of a film that are still looking for a common through-line 1 +1995 75 a film that are still looking for a common through-line 1 +1996 75 that are still looking for a common through-line 2 +1997 75 are still looking for a common through-line 1 +1998 75 are still 2 +1999 75 looking for a common through-line 2 +2000 75 looking 2 +2001 75 for a common through-line 2 +2002 75 a common through-line 2 +2003 75 common through-line 3 +2004 75 common 2 +2005 75 through-line 2 +2006 76 1 +2007 76 Contrived pastiche of caper 2 +2008 76 Contrived pastiche 2 +2009 76 Contrived 1 +2010 76 pastiche 2 +2011 76 of caper 2 +2012 76 caper 2 +2013 77 The major problem with Windtalkers is that the bulk of the movie centers on the wrong character . 1 +2014 77 The major problem with Windtalkers 1 +2015 77 The major problem 1 +2016 77 major problem 1 +2017 77 major 2 +2018 77 problem 1 +2019 77 with Windtalkers 2 +2020 77 is that the bulk of the movie centers on the wrong character . 2 +2021 77 is that the bulk of the movie centers on the wrong character 2 +2022 77 that the bulk of the movie centers on the wrong character 1 +2023 77 the bulk of the movie centers on the wrong character 2 +2024 77 the bulk of the movie 2 +2025 77 the bulk 2 +2026 77 bulk 2 +2027 77 of the movie 2 +2028 77 centers on the wrong character 2 +2029 77 centers 3 +2030 77 on the wrong character 2 +2031 77 the wrong character 2 +2032 77 wrong character 2 +2033 77 wrong 1 +2034 78 Swimfan , like Fatal Attraction , eventually goes overboard with a loony melodramatic denouement in which a high school swimming pool substitutes for a bathtub . 2 +2035 78 Swimfan , like Fatal Attraction , 2 +2036 78 Swimfan , like Fatal Attraction 3 +2037 78 Swimfan , 2 +2038 78 Swimfan 2 +2039 78 like Fatal Attraction 2 +2040 78 Fatal Attraction 2 +2041 78 Attraction 2 +2042 78 eventually goes overboard with a loony melodramatic denouement in which a high school swimming pool substitutes for a bathtub . 1 +2043 78 eventually 2 +2044 78 goes overboard with a loony melodramatic denouement in which a high school swimming pool substitutes for a bathtub . 0 +2045 78 goes overboard with a loony melodramatic denouement in which a high school swimming pool substitutes for a bathtub 2 +2046 78 goes overboard 1 +2047 78 goes 2 +2048 78 overboard 1 +2049 78 with a loony melodramatic denouement in which a high school swimming pool substitutes for a bathtub 1 +2050 78 a loony melodramatic denouement in which a high school swimming pool substitutes for a bathtub 1 +2051 78 a loony melodramatic denouement 1 +2052 78 loony melodramatic denouement 2 +2053 78 loony 1 +2054 78 melodramatic denouement 1 +2055 78 melodramatic 2 +2056 78 denouement 1 +2057 78 in which a high school swimming pool substitutes for a bathtub 1 +2058 78 a high school swimming pool substitutes for a bathtub 2 +2059 78 a high school swimming 2 +2060 78 high school swimming 2 +2061 78 school swimming 2 +2062 78 school 2 +2063 78 swimming 2 +2064 78 pool substitutes for a bathtub 2 +2065 78 pool 2 +2066 78 substitutes for a bathtub 2 +2067 78 substitutes 2 +2068 78 for a bathtub 2 +2069 78 a bathtub 2 +2070 78 bathtub 2 +2071 79 This is a heartfelt story ... it just is n't a very involving one . 1 +2072 79 This is a heartfelt story ... it just is n't a very involving one 1 +2073 79 This is a heartfelt story ... 3 +2074 79 This is a heartfelt story 4 +2075 79 is a heartfelt story 3 +2076 79 a heartfelt story 3 +2077 79 heartfelt story 4 +2078 79 heartfelt 3 +2079 79 it just is n't a very involving one 1 +2080 79 just is n't a very involving one 1 +2081 79 is n't a very involving one 1 +2082 79 is n't a very 1 +2083 79 is n't 1 +2084 79 a very 2 +2085 79 involving one 2 +2086 79 involving 2 +2087 80 An unsettling , memorable cinematic experience that does its predecessors proud . 4 +2088 80 An unsettling , memorable cinematic experience that 4 +2089 80 An unsettling , memorable cinematic experience 3 +2090 80 unsettling , memorable cinematic experience 3 +2091 80 unsettling 2 +2092 80 , memorable cinematic experience 4 +2093 80 memorable cinematic experience 3 +2094 80 cinematic experience 3 +2095 80 experience 2 +2096 80 does its predecessors proud . 3 +2097 80 does its predecessors proud 4 +2098 80 its predecessors proud 3 +2099 80 its predecessors 2 +2100 80 predecessors 3 +2101 80 proud 4 +2102 81 All in all , it 's a pretty good execution of a story that 's a lot richer than the ones Hollywood action screenwriters usually come up with on their own . 3 +2103 81 All in all 2 +2104 81 in all 2 +2105 81 , it 's a pretty good execution of a story that 's a lot richer than the ones Hollywood action screenwriters usually come up with on their own . 3 +2106 81 it 's a pretty good execution of a story that 's a lot richer than the ones Hollywood action screenwriters usually come up with on their own . 4 +2107 81 's a pretty good execution of a story that 's a lot richer than the ones Hollywood action screenwriters usually come up with on their own . 3 +2108 81 's a pretty good execution of a story that 's a lot richer than the ones Hollywood action screenwriters usually come up with on their own 3 +2109 81 a pretty good execution of a story that 's a lot richer than the ones Hollywood action screenwriters usually come up with on their own 4 +2110 81 a pretty good execution 3 +2111 81 pretty good execution 3 +2112 81 pretty good 3 +2113 81 pretty 4 +2114 81 execution 2 +2115 81 of a story that 's a lot richer than the ones Hollywood action screenwriters usually come up with on their own 4 +2116 81 a story that 's a lot richer than the ones Hollywood action screenwriters usually come up with on their own 4 +2117 81 that 's a lot richer than the ones Hollywood action screenwriters usually come up with on their own 3 +2118 81 's a lot richer than the ones Hollywood action screenwriters usually come up with on their own 3 +2119 81 's a lot richer than the ones 3 +2120 81 a lot richer than the ones 3 +2121 81 a lot 2 +2122 81 lot 2 +2123 81 richer than the ones 2 +2124 81 richer 2 +2125 81 than the ones 2 +2126 81 the ones 2 +2127 81 ones 2 +2128 81 Hollywood action screenwriters usually come up with on their own 2 +2129 81 Hollywood action screenwriters 2 +2130 81 Hollywood 2 +2131 81 action screenwriters 2 +2132 81 screenwriters 2 +2133 81 usually come up with on their own 2 +2134 81 usually 2 +2135 81 come up with on their own 2 +2136 81 come up 2 +2137 81 come 2 +2138 81 with on their own 2 +2139 81 on their own 2 +2140 81 their own 2 +2141 81 own 2 +2142 82 Phillip Noyce and all of his actors -- as well as his cinematographer , Christopher Doyle -- understand the delicate forcefulness of Greene 's prose , and it 's there on the screen in their version of The Quiet American . 3 +2143 82 Phillip Noyce and all of his actors -- as well as his cinematographer , Christopher Doyle -- understand the delicate forcefulness of Greene 's prose , and it 's there on the screen in their version of The Quiet American 3 +2144 82 Phillip Noyce and all of his actors -- as well as his cinematographer , Christopher Doyle -- understand the delicate forcefulness of Greene 's prose , and 3 +2145 82 Phillip Noyce and all of his actors -- as well as his cinematographer , Christopher Doyle -- understand the delicate forcefulness of Greene 's prose , 3 +2146 82 Phillip Noyce and all of his actors -- as well as his cinematographer , Christopher Doyle -- understand the delicate forcefulness of Greene 's prose 3 +2147 82 Phillip Noyce and all of his actors -- as well as his cinematographer , Christopher Doyle -- 2 +2148 82 Phillip Noyce and all of his actors 2 +2149 82 Phillip Noyce and 2 +2150 82 Phillip Noyce 2 +2151 82 Phillip 2 +2152 82 Noyce 2 +2153 82 all of his actors 2 +2154 82 of his actors 2 +2155 82 his actors 2 +2156 82 -- as well as his cinematographer , Christopher Doyle -- 2 +2157 82 -- as well as his cinematographer , Christopher Doyle 2 +2158 82 -- as well as 2 +2159 82 as well as 2 +2160 82 well as 2 +2161 82 his cinematographer , Christopher Doyle 2 +2162 82 his cinematographer , 2 +2163 82 his cinematographer 2 +2164 82 cinematographer 2 +2165 82 Christopher Doyle 2 +2166 82 Christopher 2 +2167 82 Doyle 2 +2168 82 understand the delicate forcefulness of Greene 's prose 2 +2169 82 understand 2 +2170 82 the delicate forcefulness of Greene 's prose 3 +2171 82 the delicate forcefulness 3 +2172 82 delicate forcefulness 2 +2173 82 delicate 3 +2174 82 forcefulness 2 +2175 82 of Greene 's prose 2 +2176 82 Greene 's prose 2 +2177 82 Greene 's 2 +2178 82 Greene 2 +2179 82 prose 2 +2180 82 it 's there on the screen in their version of The Quiet American 2 +2181 82 's there on the screen in their version of The Quiet American 2 +2182 82 's there 2 +2183 82 on the screen in their version of The Quiet American 2 +2184 82 the screen in their version of The Quiet American 2 +2185 82 the screen 2 +2186 82 screen 2 +2187 82 in their version of The Quiet American 2 +2188 82 their version of The Quiet American 2 +2189 82 their version 2 +2190 82 version 2 +2191 82 of The Quiet American 2 +2192 82 The Quiet American 2 +2193 82 Quiet American 2 +2194 82 American 2 +2195 83 The Pianist lacks the quick emotional connections of Steven Spielberg 's Schindler 's List . 2 +2196 83 The Pianist 2 +2197 83 Pianist 2 +2198 83 lacks the quick emotional connections of Steven Spielberg 's Schindler 's List . 2 +2199 83 lacks the quick emotional connections of Steven Spielberg 's Schindler 's List 1 +2200 83 lacks 1 +2201 83 the quick emotional connections of Steven Spielberg 's Schindler 's List 3 +2202 83 the quick emotional connections 2 +2203 83 quick emotional connections 2 +2204 83 quick 2 +2205 83 emotional connections 3 +2206 83 emotional 2 +2207 83 connections 2 +2208 83 of Steven Spielberg 's Schindler 's List 3 +2209 83 Steven Spielberg 's Schindler 's List 2 +2210 83 Steven Spielberg 's 2 +2211 83 Steven 2 +2212 83 Spielberg 's 2 +2213 83 Spielberg 2 +2214 83 Schindler 's List 2 +2215 83 Schindler 's 3 +2216 83 Schindler 2 +2217 83 List 2 +2218 84 Inventive , fun , intoxicatingly sexy , violent , self-indulgent and maddening . 3 +2219 84 Inventive , fun , intoxicatingly sexy , violent , self-indulgent and maddening 3 +2220 84 Inventive , fun , 3 +2221 84 Inventive , fun 4 +2222 84 Inventive , 3 +2223 84 Inventive 3 +2224 84 intoxicatingly sexy , violent , self-indulgent and maddening 3 +2225 84 intoxicatingly 2 +2226 84 sexy , violent , self-indulgent and maddening 1 +2227 84 sexy 4 +2228 84 , violent , self-indulgent and maddening 1 +2229 84 violent , self-indulgent and maddening 1 +2230 84 violent 1 +2231 84 , self-indulgent and maddening 1 +2232 84 self-indulgent and maddening 1 +2233 84 self-indulgent and 1 +2234 84 maddening 1 +2235 85 Tells a fascinating , compelling story . 4 +2236 85 Tells a fascinating , compelling story 3 +2237 85 Tells 2 +2238 85 a fascinating , compelling story 4 +2239 85 fascinating , compelling story 4 +2240 85 fascinating 3 +2241 85 , compelling story 3 +2242 85 compelling story 3 +2243 85 compelling 3 +2244 86 Written , flatly , by David Kendall and directed , barely , by There 's Something About Mary co-writer Ed Decter . 1 +2245 86 Written , flatly , by David Kendall and directed , barely , by There 1 +2246 86 Written , flatly , by David Kendall and 1 +2247 86 Written , flatly , by David Kendall 1 +2248 86 Written , flatly , 1 +2249 86 Written , flatly 1 +2250 86 Written , 2 +2251 86 Written 2 +2252 86 flatly 1 +2253 86 by David Kendall 2 +2254 86 David Kendall 2 +2255 86 Kendall 2 +2256 86 directed , barely , by There 1 +2257 86 directed , barely , 0 +2258 86 directed , barely 1 +2259 86 directed , 2 +2260 86 directed 2 +2261 86 barely 2 +2262 86 by There 2 +2263 86 's Something About Mary co-writer Ed Decter . 2 +2264 86 's Something About Mary co-writer Ed Decter 2 +2265 86 Something About Mary co-writer Ed Decter 2 +2266 86 About Mary co-writer Ed Decter 2 +2267 86 Mary co-writer Ed Decter 2 +2268 86 Mary 2 +2269 86 co-writer Ed Decter 2 +2270 86 co-writer 2 +2271 86 Ed Decter 2 +2272 86 Ed 2 +2273 86 Decter 2 +2274 87 Highly recommended viewing for its courage , ideas , technical proficiency and great acting . 4 +2275 87 Highly 2 +2276 87 recommended viewing for its courage , ideas , technical proficiency and great acting . 3 +2277 87 recommended viewing for its courage , ideas , technical proficiency and great acting 4 +2278 87 recommended 4 +2279 87 viewing for its courage , ideas , technical proficiency and great acting 3 +2280 87 viewing 2 +2281 87 for its courage , ideas , technical proficiency and great acting 4 +2282 87 its courage , ideas , technical proficiency and great acting 4 +2283 87 its courage , ideas , technical proficiency and 3 +2284 87 its courage , ideas , technical proficiency 3 +2285 87 its courage , ideas , 3 +2286 87 its courage , ideas 3 +2287 87 its courage , 3 +2288 87 its courage 2 +2289 87 courage 2 +2290 87 ideas 2 +2291 87 technical proficiency 3 +2292 87 technical 2 +2293 87 proficiency 3 +2294 87 great acting 4 +2295 87 great 4 +2296 87 acting 2 +2297 88 In IMAX in short , it 's just as wonderful on the big screen . 4 +2298 88 In IMAX in short 2 +2299 88 IMAX in short 3 +2300 88 IMAX 2 +2301 88 in short 1 +2302 88 short 2 +2303 88 , it 's just as wonderful on the big screen . 3 +2304 88 it 's just as wonderful on the big screen . 3 +2305 88 's just as wonderful on the big screen . 4 +2306 88 's just as wonderful on the big screen 3 +2307 88 's just 2 +2308 88 as wonderful on the big screen 4 +2309 88 wonderful on the big screen 4 +2310 88 wonderful 3 +2311 88 on the big screen 2 +2312 88 the big screen 2 +2313 88 big screen 2 +2314 88 big 2 +2315 89 It shows us a slice of life that 's very different from our own and yet instantly recognizable . 3 +2316 89 shows us a slice of life that 's very different from our own and yet instantly recognizable . 3 +2317 89 shows us a slice of life that 's very different from our own and yet instantly recognizable 3 +2318 89 shows 2 +2319 89 us a slice of life that 's very different from our own and yet instantly recognizable 3 +2320 89 a slice of life that 's very different from our own and yet instantly recognizable 2 +2321 89 a slice 2 +2322 89 slice 2 +2323 89 of life that 's very different from our own and yet instantly recognizable 2 +2324 89 life that 's very different from our own and yet instantly recognizable 3 +2325 89 that 's very different from our own and yet instantly recognizable 3 +2326 89 's very different from our own and yet instantly recognizable 3 +2327 89 very different from our own and yet instantly recognizable 3 +2328 89 very different from our own and 2 +2329 89 very different from our own 2 +2330 89 different from our own 2 +2331 89 from our own 2 +2332 89 our own 2 +2333 89 yet instantly recognizable 2 +2334 89 yet 2 +2335 89 instantly recognizable 2 +2336 89 instantly 2 +2337 89 recognizable 3 +2338 90 Amid the shock and curiosity factors , the film is just a corny examination of a young actress trying to find her way . 1 +2339 90 Amid the shock and curiosity factors 2 +2340 90 Amid 2 +2341 90 the shock and curiosity factors 2 +2342 90 shock and curiosity factors 2 +2343 90 shock 2 +2344 90 and curiosity factors 2 +2345 90 curiosity factors 3 +2346 90 curiosity 2 +2347 90 factors 2 +2348 90 , the film is just a corny examination of a young actress trying to find her way . 1 +2349 90 the film is just a corny examination of a young actress trying to find her way . 1 +2350 90 is just a corny examination of a young actress trying to find her way . 1 +2351 90 is just a corny examination of a young actress trying to find her way 1 +2352 90 a corny examination of a young actress trying to find her way 1 +2353 90 a corny examination 1 +2354 90 corny examination 1 +2355 90 corny 1 +2356 90 examination 2 +2357 90 of a young actress trying to find her way 2 +2358 90 a young actress trying to find her way 2 +2359 90 a young actress 2 +2360 90 young actress 2 +2361 90 actress 2 +2362 90 trying to find her way 2 +2363 90 trying 2 +2364 90 to find her way 2 +2365 90 find her way 2 +2366 90 find 2 +2367 90 her way 2 +2368 90 her 2 +2369 91 It 's lazy for a movie to avoid solving one problem by trying to distract us with the solution to another . 2 +2370 91 's lazy for a movie to avoid solving one problem by trying to distract us with the solution to another . 1 +2371 91 's lazy for a movie to avoid solving one problem by trying to distract us with the solution to another 0 +2372 91 's lazy for a movie 1 +2373 91 lazy for a movie 0 +2374 91 lazy 1 +2375 91 for a movie 2 +2376 91 to avoid solving one problem by trying to distract us with the solution to another 1 +2377 91 avoid solving one problem by trying to distract us with the solution to another 1 +2378 91 solving one problem by trying to distract us with the solution to another 2 +2379 91 solving one problem 2 +2380 91 solving 2 +2381 91 one problem 2 +2382 91 by trying to distract us with the solution to another 1 +2383 91 trying to distract us with the solution to another 1 +2384 91 to distract us with the solution to another 2 +2385 91 distract us with the solution to another 2 +2386 91 distract us 2 +2387 91 distract 1 +2388 91 with the solution to another 3 +2389 91 the solution to another 2 +2390 91 the solution 2 +2391 91 solution 3 +2392 91 to another 2 +2393 91 another 2 +2394 92 ... it 's as comprehensible as any Dummies guide , something even non-techies can enjoy . 3 +2395 92 it 's as comprehensible as any Dummies guide , something even non-techies can enjoy . 3 +2396 92 's as comprehensible as any Dummies guide , something even non-techies can enjoy . 3 +2397 92 's as comprehensible as any Dummies guide , something even non-techies can enjoy 3 +2398 92 's as comprehensible as any Dummies guide , something 1 +2399 92 as comprehensible as any Dummies guide , something 2 +2400 92 comprehensible as any Dummies guide , something 2 +2401 92 comprehensible 3 +2402 92 as any Dummies guide , something 2 +2403 92 any Dummies guide , something 1 +2404 92 any Dummies guide , 2 +2405 92 any Dummies guide 2 +2406 92 Dummies guide 2 +2407 92 Dummies 2 +2408 92 guide 2 +2409 92 even non-techies can enjoy 3 +2410 92 non-techies can enjoy 3 +2411 92 non-techies 2 +2412 92 can enjoy 3 +2413 92 enjoy 4 +2414 93 Entertains not so much because of its music or comic antics , but through the perverse pleasure of watching Disney scrape the bottom of its own cracker barrel . 1 +2415 93 Entertains not so much because of its music or comic antics , but through the perverse pleasure of watching Disney scrape the bottom of its own cracker barrel 2 +2416 93 Entertains not so much 1 +2417 93 Entertains not 1 +2418 93 Entertains 3 +2419 93 so much 2 +2420 93 because of its music or comic antics , but through the perverse pleasure of watching Disney scrape the bottom of its own cracker barrel 1 +2421 93 because 2 +2422 93 of its music or comic antics , but through the perverse pleasure of watching Disney scrape the bottom of its own cracker barrel 0 +2423 93 of its music or comic antics 2 +2424 93 its music or comic antics 2 +2425 93 its music or 1 +2426 93 its music 2 +2427 93 music 2 +2428 93 comic antics 2 +2429 93 comic 2 +2430 93 antics 2 +2431 93 , but through the perverse pleasure of watching Disney scrape the bottom of its own cracker barrel 1 +2432 93 , but 2 +2433 93 through the perverse pleasure of watching Disney scrape the bottom of its own cracker barrel 1 +2434 93 the perverse pleasure of watching Disney scrape the bottom of its own cracker barrel 1 +2435 93 the perverse pleasure 3 +2436 93 perverse pleasure 2 +2437 93 pleasure 4 +2438 93 of watching Disney scrape the bottom of its own cracker barrel 2 +2439 93 watching Disney scrape the bottom of its own cracker barrel 1 +2440 93 Disney scrape the bottom of its own cracker barrel 0 +2441 93 Disney scrape 1 +2442 93 Disney 3 +2443 93 scrape 2 +2444 93 the bottom of its own cracker barrel 2 +2445 93 the bottom 2 +2446 93 bottom 1 +2447 93 of its own cracker barrel 2 +2448 93 its own cracker barrel 2 +2449 93 own cracker barrel 2 +2450 93 cracker barrel 2 +2451 93 cracker 2 +2452 93 barrel 2 +2453 94 Writer\/director Burr Steers emphasizes the Q in Quirky , with mixed results . 3 +2454 94 Writer\/director Burr Steers 2 +2455 94 Writer\/director 2 +2456 94 Burr Steers 2 +2457 94 Burr 2 +2458 94 Steers 2 +2459 94 emphasizes the Q in Quirky , with mixed results . 1 +2460 94 emphasizes the Q in Quirky , with mixed results 2 +2461 94 emphasizes the Q in Quirky , 2 +2462 94 emphasizes the Q in Quirky 2 +2463 94 emphasizes 2 +2464 94 the Q in Quirky 3 +2465 94 the Q 2 +2466 94 Q 2 +2467 94 in Quirky 2 +2468 94 Quirky 2 +2469 94 with mixed results 2 +2470 94 mixed results 1 +2471 94 mixed 2 +2472 94 results 2 +2473 95 Scarcely worth a mention apart from reporting on the number of tumbleweeds blowing through the empty theatres graced with its company . 0 +2474 95 Scarcely worth a mention apart from reporting on the number of tumbleweeds blowing through the empty theatres 0 +2475 95 Scarcely worth a mention 0 +2476 95 Scarcely worth 0 +2477 95 Scarcely 2 +2478 95 a mention 2 +2479 95 mention 2 +2480 95 apart from reporting on the number of tumbleweeds blowing through the empty theatres 0 +2481 95 from reporting on the number of tumbleweeds blowing through the empty theatres 1 +2482 95 reporting on the number of tumbleweeds blowing through the empty theatres 1 +2483 95 reporting 2 +2484 95 on the number of tumbleweeds blowing through the empty theatres 0 +2485 95 the number of tumbleweeds blowing through the empty theatres 1 +2486 95 the number 2 +2487 95 number 2 +2488 95 of tumbleweeds blowing through the empty theatres 0 +2489 95 tumbleweeds blowing through the empty theatres 0 +2490 95 tumbleweeds 1 +2491 95 blowing through the empty theatres 2 +2492 95 blowing 2 +2493 95 through the empty theatres 2 +2494 95 the empty theatres 1 +2495 95 empty theatres 1 +2496 95 empty 1 +2497 95 theatres 2 +2498 95 graced with its company . 2 +2499 95 graced with its company 2 +2500 95 graced 3 +2501 95 with its company 2 +2502 95 its company 2 +2503 95 company 2 +2504 96 Invigorating , surreal , and resonant with a rainbow of emotion . 4 +2505 96 Invigorating , surreal , and resonant with a rainbow of emotion 4 +2506 96 Invigorating , surreal , and resonant with a rainbow 4 +2507 96 Invigorating , surreal , and resonant 3 +2508 96 Invigorating 2 +2509 96 , surreal , and resonant 2 +2510 96 surreal , and resonant 2 +2511 96 surreal 2 +2512 96 , and resonant 2 +2513 96 , and 3 +2514 96 resonant 3 +2515 96 with a rainbow 2 +2516 96 a rainbow 2 +2517 96 rainbow 2 +2518 96 of emotion 2 +2519 96 emotion 2 +2520 97 `` Analyze That '' is one of those crass , contrived sequels that not only fails on its own , but makes you second-guess your affection for the original . 0 +2521 97 Analyze That '' is one of those crass , contrived sequels that not only fails on its own , but makes you second-guess your affection for the original . 0 +2522 97 Analyze That 2 +2523 97 Analyze 2 +2524 97 '' is one of those crass , contrived sequels that not only fails on its own , but makes you second-guess your affection for the original . 0 +2525 97 is one of those crass , contrived sequels that not only fails on its own , but makes you second-guess your affection for the original . 0 +2526 97 is one of those crass , contrived sequels that not only fails on its own , but makes you second-guess your affection for the original 1 +2527 97 one of those crass , contrived sequels that not only fails on its own , but makes you second-guess your affection for the original 1 +2528 97 of those crass , contrived sequels that not only fails on its own , but makes you second-guess your affection for the original 0 +2529 97 those crass , contrived sequels that not only fails on its own , but makes you second-guess your affection for the original 0 +2530 97 those crass , contrived sequels 0 +2531 97 crass , contrived sequels 0 +2532 97 crass 2 +2533 97 , contrived sequels 1 +2534 97 contrived sequels 1 +2535 97 sequels 2 +2536 97 that not only fails on its own , but makes you second-guess your affection for the original 0 +2537 97 not only fails on its own , but makes you second-guess your affection for the original 1 +2538 97 not only 2 +2539 97 fails on its own , but makes you second-guess your affection for the original 0 +2540 97 fails on its own , but 1 +2541 97 fails on its own , 1 +2542 97 fails on its own 1 +2543 97 fails 0 +2544 97 on its own 2 +2545 97 its own 3 +2546 97 makes you second-guess your affection for the original 2 +2547 97 you second-guess your affection for the original 1 +2548 97 second-guess your affection for the original 2 +2549 97 second-guess your affection 2 +2550 97 second-guess 2 +2551 97 your affection 2 +2552 97 affection 3 +2553 97 for the original 2 +2554 97 the original 3 +2555 97 original 3 +2556 98 Report card : Does n't live up to the exalted tagline - there 's definite room for improvement . 1 +2557 98 Report card : Does n't live up to the exalted tagline - 1 +2558 98 Report card : Does n't live up to the exalted tagline 1 +2559 98 Report card : 2 +2560 98 Report card 2 +2561 98 Report 2 +2562 98 card 2 +2563 98 Does n't live up to the exalted tagline 1 +2564 98 live up to the exalted tagline 2 +2565 98 live up 2 +2566 98 live 2 +2567 98 to the exalted tagline 2 +2568 98 the exalted tagline 2 +2569 98 exalted tagline 2 +2570 98 exalted 3 +2571 98 tagline 2 +2572 98 there 's definite room for improvement . 1 +2573 98 's definite room for improvement . 1 +2574 98 's definite room for improvement 1 +2575 98 definite room for improvement 1 +2576 98 definite room 2 +2577 98 definite 2 +2578 98 room 2 +2579 98 for improvement 1 +2580 98 improvement 3 +2581 99 It 's not a particularly good film , but neither is it a monsterous one . 2 +2582 99 It 's not a particularly good film , but neither is it a monsterous one 1 +2583 99 It 's not a particularly good film , but 1 +2584 99 It 's not a particularly good film , 1 +2585 99 It 's not a particularly good film 1 +2586 99 's not a particularly good film 0 +2587 99 's not 2 +2588 99 a particularly good film 4 +2589 99 particularly good film 4 +2590 99 particularly good 4 +2591 99 neither is it a monsterous one 2 +2592 99 neither 2 +2593 99 is it a monsterous one 1 +2594 99 it a monsterous one 2 +2595 99 a monsterous one 1 +2596 99 a monsterous 2 +2597 99 monsterous 2 +2598 100 Tsai may be ploughing the same furrow once too often . 2 +2599 100 Tsai 2 +2600 100 may be ploughing the same furrow once too often . 1 +2601 100 may be ploughing the same furrow once too often 1 +2602 100 may 2 +2603 100 be ploughing the same furrow once too often 1 +2604 100 ploughing the same furrow once too often 1 +2605 100 ploughing the same furrow 1 +2606 100 ploughing 2 +2607 100 the same furrow 2 +2608 100 same furrow 2 +2609 100 furrow 2 +2610 100 once too often 1 +2611 100 once 2 +2612 100 too often 2 +2613 100 often 2 +2614 101 -LRB- Green is -RRB- the comedy equivalent of Saddam Hussein , and I 'm just about ready to go to the U.N. and ask permission for a preemptive strike . 1 +2615 101 Green is -RRB- the comedy equivalent of Saddam Hussein , and I 'm just about ready to go to the U.N. and ask permission for a preemptive strike . 1 +2616 101 Green 2 +2617 101 is -RRB- the comedy equivalent of Saddam Hussein , and I 'm just about ready to go to the U.N. and ask permission for a preemptive strike . 0 +2618 101 is -RRB- the comedy equivalent of Saddam Hussein , and I 'm just about ready to go to the U.N. and ask permission for a preemptive strike 0 +2619 101 is -RRB- the comedy equivalent of Saddam Hussein , and 1 +2620 101 is -RRB- the comedy equivalent of Saddam Hussein , 1 +2621 101 is -RRB- the comedy equivalent of Saddam Hussein 1 +2622 101 is -RRB- 2 +2623 101 the comedy equivalent of Saddam Hussein 1 +2624 101 the comedy equivalent of 2 +2625 101 the comedy equivalent 3 +2626 101 comedy equivalent 2 +2627 101 equivalent 2 +2628 101 Saddam Hussein 2 +2629 101 Saddam 2 +2630 101 Hussein 2 +2631 101 I 'm just about ready to go to the U.N. and ask permission for a preemptive strike 1 +2632 101 'm just about ready to go to the U.N. and ask permission for a preemptive strike 1 +2633 101 'm just 2 +2634 101 about ready to go to the U.N. and ask permission for a preemptive strike 2 +2635 101 ready to go to the U.N. and ask permission for a preemptive strike 1 +2636 101 ready 2 +2637 101 to go to the U.N. and ask permission for a preemptive strike 2 +2638 101 go to the U.N. and ask permission for a preemptive strike 1 +2639 101 go to the U.N. and 2 +2640 101 go to the U.N. 2 +2641 101 go 2 +2642 101 to the U.N. 2 +2643 101 the U.N. 2 +2644 101 U.N. 2 +2645 101 ask permission for a preemptive strike 2 +2646 101 ask permission 2 +2647 101 ask 2 +2648 101 permission 2 +2649 101 for a preemptive strike 2 +2650 101 a preemptive strike 2 +2651 101 preemptive strike 2 +2652 101 preemptive 2 +2653 101 strike 2 +2654 102 A surprisingly ` solid ' achievement by director Malcolm D. Lee and writer John Ridley . 3 +2655 102 A surprisingly ` solid ' achievement by director Malcolm D. Lee and writer John Ridley 3 +2656 102 A surprisingly ` solid ' achievement by director 3 +2657 102 A surprisingly ` solid ' achievement 3 +2658 102 surprisingly ` solid ' achievement 4 +2659 102 surprisingly ` solid ' 3 +2660 102 surprisingly 3 +2661 102 ` solid ' 2 +2662 102 solid ' 3 +2663 102 solid 3 +2664 102 achievement 3 +2665 102 by director 2 +2666 102 Malcolm D. Lee and writer John Ridley 2 +2667 102 Malcolm D. Lee and 2 +2668 102 Malcolm D. Lee 3 +2669 102 Malcolm 2 +2670 102 D. Lee 2 +2671 102 D. 2 +2672 102 Lee 2 +2673 102 writer John Ridley 2 +2674 102 writer 2 +2675 102 John Ridley 2 +2676 102 John 2 +2677 102 Ridley 2 +2678 103 Massoud 's story is an epic , but also a tragedy , the record of a tenacious , humane fighter who was also the prisoner -LRB- and ultimately the victim -RRB- of history . 2 +2679 103 Massoud 's story 2 +2680 103 Massoud 's 2 +2681 103 Massoud 2 +2682 103 is an epic , but also a tragedy , the record of a tenacious , humane fighter who was also the prisoner -LRB- and ultimately the victim -RRB- of history . 3 +2683 103 is an epic , but also a tragedy , the record of a tenacious , humane fighter who was also the prisoner -LRB- and ultimately the victim -RRB- of history 3 +2684 103 an epic , but also a tragedy , the record of a tenacious , humane fighter who was also the prisoner -LRB- and ultimately the victim -RRB- of history 3 +2685 103 an epic , but also 3 +2686 103 an epic , 2 +2687 103 an epic 3 +2688 103 but also 2 +2689 103 a tragedy , the record of a tenacious , humane fighter who was also the prisoner -LRB- and ultimately the victim -RRB- of history 2 +2690 103 a tragedy , 2 +2691 103 a tragedy 1 +2692 103 the record of a tenacious , humane fighter who was also the prisoner -LRB- and ultimately the victim -RRB- of history 3 +2693 103 the record 2 +2694 103 record 2 +2695 103 of a tenacious , humane fighter who was also the prisoner -LRB- and ultimately the victim -RRB- of history 2 +2696 103 a tenacious , humane fighter who was also the prisoner -LRB- and ultimately the victim -RRB- of history 3 +2697 103 a tenacious , humane fighter 3 +2698 103 tenacious , humane fighter 2 +2699 103 tenacious 3 +2700 103 , humane fighter 2 +2701 103 humane fighter 3 +2702 103 humane 3 +2703 103 fighter 2 +2704 103 who was also the prisoner -LRB- and ultimately the victim -RRB- of history 2 +2705 103 was also the prisoner -LRB- and ultimately the victim -RRB- of history 2 +2706 103 was also 2 +2707 103 was 2 +2708 103 the prisoner -LRB- and ultimately the victim -RRB- of history 2 +2709 103 the prisoner -LRB- and ultimately the victim -RRB- 2 +2710 103 the prisoner 2 +2711 103 prisoner 1 +2712 103 -LRB- and ultimately the victim -RRB- 2 +2713 103 and ultimately the victim -RRB- 1 +2714 103 ultimately the victim -RRB- 2 +2715 103 the victim -RRB- 1 +2716 103 the victim 2 +2717 103 victim 1 +2718 103 of history 2 +2719 104 Changing Lanes tries for more . 3 +2720 104 Changing Lanes 2 +2721 104 Changing 2 +2722 104 Lanes 2 +2723 104 tries for more . 1 +2724 104 tries for more 2 +2725 104 tries 2 +2726 104 for more 2 +2727 105 Shyamalan should stop trying to please his mom . 1 +2728 105 Shyamalan 2 +2729 105 should stop trying to please his mom . 2 +2730 105 should stop trying to please his mom 1 +2731 105 stop trying to please his mom 2 +2732 105 stop 2 +2733 105 trying to please his mom 3 +2734 105 to please his mom 2 +2735 105 please his mom 2 +2736 105 please 2 +2737 105 his mom 2 +2738 105 mom 2 +2739 106 A macabre and very stylized Swedish fillm about a modern city where all the religious and civic virtues that hold society in place are in tatters . 3 +2740 106 A macabre and very 2 +2741 106 macabre and very 2 +2742 106 macabre and 1 +2743 106 macabre 1 +2744 106 stylized Swedish fillm about a modern city where all the religious and civic virtues that hold society in place are in tatters . 3 +2745 106 stylized Swedish fillm about a modern city where all the religious and civic virtues that hold society in place are in tatters 3 +2746 106 stylized Swedish fillm about a modern city 3 +2747 106 stylized Swedish fillm 3 +2748 106 stylized 2 +2749 106 Swedish fillm 2 +2750 106 Swedish 3 +2751 106 fillm 2 +2752 106 about a modern city 2 +2753 106 a modern city 2 +2754 106 modern city 2 +2755 106 city 2 +2756 106 where all the religious and civic virtues that hold society in place are in tatters 2 +2757 106 where 2 +2758 106 all the religious and civic virtues that hold society in place are in tatters 2 +2759 106 all the religious and civic virtues that hold society in place 2 +2760 106 all the religious and civic virtues 2 +2761 106 the religious and civic virtues 2 +2762 106 religious and civic virtues 2 +2763 106 religious 2 +2764 106 and civic virtues 2 +2765 106 civic virtues 2 +2766 106 civic 2 +2767 106 virtues 2 +2768 106 that hold society in place 2 +2769 106 hold society in place 3 +2770 106 hold 2 +2771 106 society in place 2 +2772 106 society 2 +2773 106 in place 2 +2774 106 are in tatters 1 +2775 106 in tatters 1 +2776 106 tatters 2 +2777 107 One of recent memory 's most thoughtful films about art , ethics , and the cost of moral compromise . 4 +2778 107 One of recent memory 2 +2779 107 of recent memory 2 +2780 107 recent memory 2 +2781 107 recent 2 +2782 107 memory 2 +2783 107 's most thoughtful films about art , ethics , and the cost of moral compromise . 4 +2784 107 's most thoughtful films about art , ethics , and the cost of moral compromise 4 +2785 107 most thoughtful films about art , ethics , and the cost of moral compromise 3 +2786 107 most thoughtful films 3 +2787 107 most thoughtful 3 +2788 107 thoughtful 4 +2789 107 about art , ethics , and the cost of moral compromise 3 +2790 107 art , ethics , and the cost of moral compromise 2 +2791 107 art , ethics , and 2 +2792 107 art , ethics , 2 +2793 107 art , ethics 2 +2794 107 art , 2 +2795 107 art 2 +2796 107 ethics 3 +2797 107 the cost of moral compromise 2 +2798 107 the cost 2 +2799 107 cost 2 +2800 107 of moral compromise 3 +2801 107 moral compromise 2 +2802 107 moral 2 +2803 107 compromise 2 +2804 108 The narrative is so consistently unimaginative that probably the only way to have saved the film is with the aid of those wisecracking Mystery Science Theater 3000 guys . 2 +2805 108 The narrative 2 +2806 108 is so consistently unimaginative that probably the only way to have saved the film is with the aid of those wisecracking Mystery Science Theater 3000 guys . 0 +2807 108 is so consistently unimaginative that probably the only way to have saved the film is with the aid of those wisecracking Mystery Science Theater 3000 guys 0 +2808 108 is so consistently unimaginative 1 +2809 108 so consistently unimaginative 1 +2810 108 consistently unimaginative 1 +2811 108 consistently 2 +2812 108 unimaginative 1 +2813 108 that probably the only way to have saved the film is with the aid of those wisecracking Mystery Science Theater 3000 guys 1 +2814 108 probably the only way to have saved the film is with the aid of those wisecracking Mystery Science Theater 3000 guys 1 +2815 108 probably the only way 2 +2816 108 probably 2 +2817 108 the only way 2 +2818 108 only way 2 +2819 108 to have saved the film is with the aid of those wisecracking Mystery Science Theater 3000 guys 3 +2820 108 have saved the film is with the aid of those wisecracking Mystery Science Theater 3000 guys 1 +2821 108 saved the film is with the aid of those wisecracking Mystery Science Theater 3000 guys 3 +2822 108 saved 2 +2823 108 the film is with the aid of those wisecracking Mystery Science Theater 3000 guys 2 +2824 108 is with the aid of those wisecracking Mystery Science Theater 3000 guys 2 +2825 108 with the aid of those wisecracking Mystery Science Theater 3000 guys 2 +2826 108 the aid of those wisecracking Mystery Science Theater 3000 guys 2 +2827 108 the aid 2 +2828 108 aid 2 +2829 108 of those wisecracking Mystery Science Theater 3000 guys 2 +2830 108 those wisecracking Mystery Science Theater 3000 guys 2 +2831 108 wisecracking Mystery Science Theater 3000 guys 3 +2832 108 wisecracking 2 +2833 108 Mystery Science Theater 3000 guys 2 +2834 108 Mystery 2 +2835 108 Science Theater 3000 guys 2 +2836 108 Science 2 +2837 108 Theater 3000 guys 2 +2838 108 3000 guys 2 +2839 108 3000 3 +2840 108 guys 2 +2841 109 Filmmaker Tian Zhuangzhuang triumphantly returns to narrative filmmaking with a visually masterful work of quiet power . 4 +2842 109 Filmmaker Tian Zhuangzhuang 2 +2843 109 Tian Zhuangzhuang 2 +2844 109 Tian 2 +2845 109 Zhuangzhuang 2 +2846 109 triumphantly returns to narrative filmmaking with a visually masterful work of quiet power . 4 +2847 109 triumphantly 3 +2848 109 returns to narrative filmmaking with a visually masterful work of quiet power . 4 +2849 109 returns to narrative filmmaking with a visually masterful work of quiet power 4 +2850 109 returns 2 +2851 109 to narrative filmmaking with a visually masterful work of quiet power 3 +2852 109 narrative filmmaking with a visually masterful work of quiet power 4 +2853 109 filmmaking with a visually masterful work of quiet power 4 +2854 109 filmmaking 2 +2855 109 with a visually masterful work of quiet power 4 +2856 109 a visually masterful work of quiet power 4 +2857 109 a visually masterful work 4 +2858 109 visually masterful work 4 +2859 109 visually masterful 4 +2860 109 visually 3 +2861 109 masterful 4 +2862 109 of quiet power 3 +2863 109 quiet power 3 +2864 109 power 2 +2865 110 A mawkish self-parody that plays like some weird Masterpiece Theater sketch with neither a point of view nor a compelling reason for being . 1 +2866 110 A mawkish self-parody that plays like some weird Masterpiece Theater sketch with neither a point of view nor a compelling reason for being 0 +2867 110 A mawkish self-parody that plays like some weird Masterpiece Theater sketch with neither 1 +2868 110 A mawkish self-parody 1 +2869 110 mawkish self-parody 1 +2870 110 mawkish 1 +2871 110 self-parody 2 +2872 110 that plays like some weird Masterpiece Theater sketch with neither 1 +2873 110 plays like some weird Masterpiece Theater sketch with neither 1 +2874 110 like some weird Masterpiece Theater sketch with neither 2 +2875 110 some weird Masterpiece Theater sketch with neither 1 +2876 110 some weird Masterpiece Theater sketch 2 +2877 110 weird Masterpiece Theater sketch 2 +2878 110 weird 1 +2879 110 Masterpiece Theater sketch 2 +2880 110 Masterpiece 4 +2881 110 Theater sketch 2 +2882 110 sketch 2 +2883 110 with neither 2 +2884 110 a point of view nor a compelling reason for being 2 +2885 110 a point of view nor 2 +2886 110 a point of view 2 +2887 110 a point 2 +2888 110 of view 2 +2889 110 view 2 +2890 110 nor 2 +2891 110 a compelling reason for being 2 +2892 110 a compelling reason 2 +2893 110 compelling reason 2 +2894 110 for being 2 +2895 111 Takes one character we do n't like and another we do n't believe , and puts them into a battle of wills that is impossible to care about and is n't very funny . 2 +2896 111 Takes one character we do n't like and another we do n't believe , and puts them into a battle of wills that is impossible to care about and is n't very funny 0 +2897 111 Takes one character we do n't like and 2 +2898 111 Takes one character we do n't like 2 +2899 111 Takes one character 2 +2900 111 one character 2 +2901 111 we do n't like 1 +2902 111 do n't like 0 +2903 111 another we do n't believe , and puts them into a battle of wills that is impossible to care about and is n't very funny 0 +2904 111 another we 2 +2905 111 do n't believe , and puts them into a battle of wills that is impossible to care about and is n't very funny 1 +2906 111 do n't believe , and 2 +2907 111 do n't believe , 2 +2908 111 do n't believe 2 +2909 111 believe 2 +2910 111 puts them into a battle of wills that is impossible to care about and is n't very funny 1 +2911 111 puts them 2 +2912 111 puts 2 +2913 111 them 2 +2914 111 into a battle of wills that is impossible to care about and is n't very funny 1 +2915 111 a battle of wills that is impossible to care about and is n't very funny 1 +2916 111 a battle 2 +2917 111 battle 2 +2918 111 of wills that is impossible to care about and is n't very funny 2 +2919 111 wills that is impossible to care about and is n't very funny 1 +2920 111 wills 2 +2921 111 that is impossible to care about and is n't very funny 1 +2922 111 is impossible to care about and is n't very funny 0 +2923 111 is impossible to care about and 1 +2924 111 is impossible to care about 1 +2925 111 impossible to care about 1 +2926 111 to care about 3 +2927 111 care about 2 +2928 111 care 3 +2929 111 is n't very funny 1 +2930 112 And if you appreciate the one-sided theme to Lawrence 's over-indulgent tirade , then knock yourself out and enjoy the big screen postcard that is a self-glorified Martin Lawrence lovefest . 1 +2931 112 if you appreciate the one-sided theme to Lawrence 's over-indulgent tirade , then knock yourself out and enjoy the big screen postcard that is a self-glorified Martin Lawrence lovefest . 1 +2932 112 if you appreciate the one-sided theme to Lawrence 's over-indulgent tirade 1 +2933 112 you appreciate the one-sided theme to Lawrence 's over-indulgent tirade 2 +2934 112 appreciate the one-sided theme to Lawrence 's over-indulgent tirade 2 +2935 112 appreciate the one-sided theme 2 +2936 112 appreciate 3 +2937 112 the one-sided theme 1 +2938 112 one-sided theme 1 +2939 112 one-sided 2 +2940 112 theme 2 +2941 112 to Lawrence 's over-indulgent tirade 1 +2942 112 Lawrence 's over-indulgent tirade 1 +2943 112 Lawrence 's 2 +2944 112 Lawrence 2 +2945 112 over-indulgent tirade 1 +2946 112 over-indulgent 1 +2947 112 tirade 2 +2948 112 , then knock yourself out and enjoy the big screen postcard that is a self-glorified Martin Lawrence lovefest . 1 +2949 112 then knock yourself out and enjoy the big screen postcard that is a self-glorified Martin Lawrence lovefest . 0 +2950 112 knock yourself out and enjoy the big screen postcard that is a self-glorified Martin Lawrence lovefest . 1 +2951 112 knock yourself out and enjoy the big screen postcard that is a self-glorified Martin Lawrence lovefest 2 +2952 112 knock yourself out and 2 +2953 112 knock yourself out 2 +2954 112 knock yourself 2 +2955 112 knock 2 +2956 112 yourself 2 +2957 112 enjoy the big screen postcard that is a self-glorified Martin Lawrence lovefest 1 +2958 112 the big screen postcard that is a self-glorified Martin Lawrence lovefest 1 +2959 112 the big screen postcard 2 +2960 112 big screen postcard 2 +2961 112 screen postcard 2 +2962 112 postcard 2 +2963 112 that is a self-glorified Martin Lawrence lovefest 2 +2964 112 is a self-glorified Martin Lawrence lovefest 2 +2965 112 a self-glorified Martin Lawrence lovefest 2 +2966 112 self-glorified Martin Lawrence lovefest 2 +2967 112 self-glorified 2 +2968 112 Martin Lawrence lovefest 2 +2969 112 Martin 2 +2970 112 Lawrence lovefest 2 +2971 112 lovefest 3 +2972 113 The whole film has this sneaky feel to it -- as if the director is trying to dupe the viewer into taking it all as Very Important simply because the movie is ugly to look at and not a Hollywood product . 0 +2973 113 The whole film 2 +2974 113 whole film 2 +2975 113 whole 2 +2976 113 has this sneaky feel to it -- as if the director is trying to dupe the viewer into taking it all as Very Important simply because the movie is ugly to look at and not a Hollywood product . 1 +2977 113 has this sneaky feel to it -- as if the director is trying to dupe the viewer into taking it all as Very Important simply because the movie is ugly to look at and not a Hollywood product 1 +2978 113 this sneaky feel to it -- as if the director is trying to dupe the viewer into taking it all as Very Important simply because the movie is ugly to look at and not a Hollywood product 0 +2979 113 this sneaky feel 2 +2980 113 sneaky feel 2 +2981 113 sneaky 2 +2982 113 to it -- as if the director is trying to dupe the viewer into taking it all as Very Important simply because the movie is ugly to look at and not a Hollywood product 0 +2983 113 to it 2 +2984 113 -- as if the director is trying to dupe the viewer into taking it all as Very Important simply because the movie is ugly to look at and not a Hollywood product 0 +2985 113 as if the director is trying to dupe the viewer into taking it all as Very Important simply because the movie is ugly to look at and not a Hollywood product 0 +2986 113 if the director is trying to dupe the viewer into taking it all as Very Important simply because the movie is ugly to look at and not a Hollywood product 1 +2987 113 the director is trying to dupe the viewer into taking it all as Very Important simply because the movie is ugly to look at and not a Hollywood product 0 +2988 113 the director 2 +2989 113 is trying to dupe the viewer into taking it all as Very Important simply because the movie is ugly to look at and not a Hollywood product 0 +2990 113 trying to dupe the viewer into taking it all as Very Important simply because the movie is ugly to look at and not a Hollywood product 0 +2991 113 to dupe the viewer into taking it all as Very Important simply because the movie is ugly to look at and not a Hollywood product 0 +2992 113 dupe the viewer into taking it all as Very Important simply because the movie is ugly to look at and not a Hollywood product 0 +2993 113 dupe the viewer into taking it all as Very Important 1 +2994 113 dupe the viewer 1 +2995 113 dupe 1 +2996 113 the viewer 2 +2997 113 viewer 2 +2998 113 into taking it all as Very Important 2 +2999 113 taking it all as Very Important 2 +3000 113 taking it 2 +3001 113 taking 2 +3002 113 all as Very Important 3 +3003 113 as Very Important 2 +3004 113 Very Important 2 +3005 113 Important 3 +3006 113 simply because the movie is ugly to look at and not a Hollywood product 0 +3007 113 simply 2 +3008 113 because the movie is ugly to look at and not a Hollywood product 1 +3009 113 the movie is ugly to look at and not a Hollywood product 0 +3010 113 is ugly to look at and not a Hollywood product 1 +3011 113 ugly to look at and not a Hollywood product 0 +3012 113 ugly 1 +3013 113 to look at and not a Hollywood product 2 +3014 113 look at and not a Hollywood product 2 +3015 113 look 2 +3016 113 at and not a Hollywood product 2 +3017 113 and not a Hollywood product 2 +3018 113 not a Hollywood product 1 +3019 113 a Hollywood product 2 +3020 113 Hollywood product 2 +3021 113 product 2 +3022 114 Whenever it threatens to get bogged down in earnest dramaturgy , a stirring visual sequence like a surge through swirling rapids or a leap from pinnacle to pinnacle rouses us . 3 +3023 114 Whenever it threatens to get bogged down in earnest dramaturgy 1 +3024 114 Whenever 2 +3025 114 it threatens to get bogged down in earnest dramaturgy 1 +3026 114 threatens to get bogged down in earnest dramaturgy 2 +3027 114 threatens 1 +3028 114 to get bogged down in earnest dramaturgy 1 +3029 114 get bogged down in earnest dramaturgy 1 +3030 114 get 2 +3031 114 bogged down in earnest dramaturgy 0 +3032 114 bogged 2 +3033 114 down in earnest dramaturgy 2 +3034 114 in earnest dramaturgy 3 +3035 114 earnest dramaturgy 3 +3036 114 dramaturgy 1 +3037 114 , a stirring visual sequence like a surge through swirling rapids or a leap from pinnacle to pinnacle rouses us . 2 +3038 114 a stirring visual sequence like a surge through swirling rapids or a leap from pinnacle to pinnacle rouses us . 3 +3039 114 a stirring visual sequence like a surge through swirling rapids or a leap from pinnacle to pinnacle 3 +3040 114 a stirring visual sequence 4 +3041 114 stirring visual sequence 3 +3042 114 stirring 3 +3043 114 visual sequence 2 +3044 114 sequence 2 +3045 114 like a surge through swirling rapids or a leap from pinnacle to pinnacle 3 +3046 114 a surge through swirling rapids or a leap from pinnacle to pinnacle 2 +3047 114 a surge through swirling rapids or 2 +3048 114 a surge through swirling rapids 2 +3049 114 a surge 2 +3050 114 surge 2 +3051 114 through swirling rapids 2 +3052 114 swirling rapids 2 +3053 114 swirling 3 +3054 114 rapids 2 +3055 114 a leap from pinnacle to pinnacle 4 +3056 114 a leap 2 +3057 114 leap 2 +3058 114 from pinnacle to pinnacle 3 +3059 114 pinnacle to pinnacle 2 +3060 114 pinnacle 3 +3061 114 to pinnacle 2 +3062 114 rouses us . 3 +3063 114 rouses us 3 +3064 114 rouses 2 +3065 115 Swinging , the film makes it seem , is not a hobby that attracts the young and fit . 1 +3066 115 Swinging 2 +3067 115 , the film makes it seem , is not a hobby that attracts the young and fit . 2 +3068 115 , the film makes it seem , 2 +3069 115 the film makes it seem , 2 +3070 115 the film makes it seem 2 +3071 115 makes it seem 3 +3072 115 it seem 2 +3073 115 seem 2 +3074 115 is not a hobby that attracts the young and fit . 2 +3075 115 is not a hobby that attracts the young and fit 2 +3076 115 is not 1 +3077 115 a hobby that attracts the young and fit 2 +3078 115 a hobby 2 +3079 115 hobby 2 +3080 115 that attracts the young and fit 3 +3081 115 attracts the young and fit 3 +3082 115 attracts 2 +3083 115 the young and fit 2 +3084 115 young and fit 2 +3085 115 young and 2 +3086 115 fit 3 +3087 116 But when it does , you 're entirely unprepared . 2 +3088 116 when it does , you 're entirely unprepared . 2 +3089 116 when it does 2 +3090 116 when 2 +3091 116 it does 2 +3092 116 , you 're entirely unprepared . 1 +3093 116 you 're entirely unprepared . 2 +3094 116 're entirely unprepared . 1 +3095 116 're entirely unprepared 1 +3096 116 entirely unprepared 1 +3097 116 entirely 2 +3098 116 unprepared 2 +3099 117 Devos delivers a perfect performance that captures the innocence and budding demons within a wallflower . 3 +3100 117 Devos 1 +3101 117 delivers a perfect performance that captures the innocence and budding demons within a wallflower . 4 +3102 117 delivers a perfect performance that captures the innocence and budding demons within a wallflower 4 +3103 117 delivers 2 +3104 117 a perfect performance that captures the innocence and budding demons within a wallflower 4 +3105 117 a perfect performance 4 +3106 117 perfect performance 4 +3107 117 perfect 4 +3108 117 that captures the innocence and budding demons within a wallflower 3 +3109 117 captures the innocence and budding demons within a wallflower 3 +3110 117 captures 2 +3111 117 the innocence and budding demons within a wallflower 2 +3112 117 the innocence and 2 +3113 117 the innocence 3 +3114 117 innocence 2 +3115 117 budding demons within a wallflower 2 +3116 117 budding demons 2 +3117 117 budding 2 +3118 117 demons 1 +3119 117 within a wallflower 3 +3120 117 within 2 +3121 117 a wallflower 2 +3122 117 wallflower 2 +3123 118 300 years of Russian history and culture compressed into an evanescent , seamless and sumptuous stream of consciousness . 4 +3124 118 300 years of Russian history and culture 3 +3125 118 300 years 2 +3126 118 300 2 +3127 118 years 2 +3128 118 of Russian history and culture 2 +3129 118 Russian history and culture 2 +3130 118 Russian 2 +3131 118 history and culture 2 +3132 118 history and 2 +3133 118 culture 2 +3134 118 compressed into an evanescent , seamless and sumptuous stream of consciousness . 3 +3135 118 compressed into an evanescent , seamless and sumptuous stream of consciousness 3 +3136 118 compressed 2 +3137 118 into an evanescent , seamless and sumptuous stream of consciousness 3 +3138 118 an evanescent , seamless and sumptuous stream of consciousness 4 +3139 118 an evanescent , seamless and sumptuous stream 3 +3140 118 evanescent , seamless and sumptuous stream 3 +3141 118 evanescent 2 +3142 118 , seamless and sumptuous stream 3 +3143 118 seamless and sumptuous stream 3 +3144 118 seamless 3 +3145 118 and sumptuous stream 3 +3146 118 sumptuous stream 3 +3147 118 sumptuous 3 +3148 118 stream 2 +3149 118 of consciousness 2 +3150 118 consciousness 2 +3151 119 The filmmakers want nothing else than to show us a good time , and in their cheap , B movie way , they succeed . 3 +3152 119 The filmmakers want nothing else than to show us a good time , and in their cheap , B movie way , they succeed 3 +3153 119 The filmmakers want nothing else than to show us a good time , and 4 +3154 119 The filmmakers want nothing else than to show us a good time , 3 +3155 119 The filmmakers want nothing else than to show us a good time 3 +3156 119 The filmmakers 2 +3157 119 filmmakers 2 +3158 119 want nothing else than to show us a good time 3 +3159 119 want nothing else 2 +3160 119 want 2 +3161 119 nothing else 2 +3162 119 else 2 +3163 119 than to show us a good time 3 +3164 119 to show us a good time 3 +3165 119 show us a good time 3 +3166 119 show us 2 +3167 119 a good time 3 +3168 119 good time 3 +3169 119 in their cheap , B movie way , they succeed 3 +3170 119 in their cheap , B movie way 1 +3171 119 their cheap , B movie way 1 +3172 119 cheap , B movie way 1 +3173 119 cheap 0 +3174 119 , B movie way 2 +3175 119 B movie way 2 +3176 119 B 2 +3177 119 movie way 2 +3178 119 , they succeed 3 +3179 119 they succeed 3 +3180 119 succeed 3 +3181 120 Mr. Polanski is in his element here : alone , abandoned , but still consoled by his art , which is more than he has ever revealed before about the source of his spiritual survival . 3 +3182 120 Mr. Polanski is in his element here : alone , abandoned , but still consoled by his art , which is more than he has ever revealed before about the source of his spiritual survival 3 +3183 120 Mr. Polanski is in his element here : 4 +3184 120 Mr. Polanski is in his element here 3 +3185 120 Mr. Polanski 2 +3186 120 Polanski 2 +3187 120 is in his element here 3 +3188 120 is in his element 4 +3189 120 in his element 2 +3190 120 his element 2 +3191 120 element 2 +3192 120 alone , abandoned , but still consoled by his art , which is more than he has ever revealed before about the source of his spiritual survival 2 +3193 120 alone 2 +3194 120 , abandoned , but still consoled by his art , which is more than he has ever revealed before about the source of his spiritual survival 3 +3195 120 abandoned , but still consoled by his art , which is more than he has ever revealed before about the source of his spiritual survival 2 +3196 120 abandoned , but 1 +3197 120 abandoned , 1 +3198 120 abandoned 2 +3199 120 still consoled by his art , which is more than he has ever revealed before about the source of his spiritual survival 3 +3200 120 consoled by his art , which is more than he has ever revealed before about the source of his spiritual survival 2 +3201 120 consoled 2 +3202 120 by his art , which is more than he has ever revealed before about the source of his spiritual survival 3 +3203 120 his art , which is more than he has ever revealed before about the source of his spiritual survival 3 +3204 120 his art , 2 +3205 120 his art 2 +3206 120 which is more than he has ever revealed before about the source of his spiritual survival 3 +3207 120 is more than he has ever revealed before about the source of his spiritual survival 3 +3208 120 is more 2 +3209 120 than he has ever revealed before about the source of his spiritual survival 2 +3210 120 he has ever revealed before about the source of his spiritual survival 2 +3211 120 he 2 +3212 120 has ever revealed before about the source of his spiritual survival 2 +3213 120 has ever 2 +3214 120 revealed before about the source of his spiritual survival 3 +3215 120 revealed 2 +3216 120 before about the source of his spiritual survival 2 +3217 120 before 2 +3218 120 about the source of his spiritual survival 2 +3219 120 about the source 2 +3220 120 the source 2 +3221 120 of his spiritual survival 3 +3222 120 his spiritual survival 2 +3223 120 spiritual survival 3 +3224 120 spiritual 3 +3225 120 survival 2 +3226 121 `` Spider-man is better than any summer blockbuster we had to endure last summer , and hopefully , sets the tone for a summer of good stuff . 4 +3227 121 Spider-man is better than any summer blockbuster we had to endure last summer , and hopefully , sets the tone for a summer of good stuff . 4 +3228 121 Spider-man 2 +3229 121 is better than any summer blockbuster we had to endure last summer , and hopefully , sets the tone for a summer of good stuff . 4 +3230 121 is better than any summer blockbuster we had to endure last summer , and hopefully , sets the tone for a summer of good stuff 4 +3231 121 is better than any summer blockbuster 4 +3232 121 better than any summer blockbuster 4 +3233 121 than any summer blockbuster 2 +3234 121 any summer blockbuster 3 +3235 121 summer blockbuster 3 +3236 121 summer 2 +3237 121 blockbuster 3 +3238 121 we had to endure last summer , and hopefully , sets the tone for a summer of good stuff 2 +3239 121 we had to endure last summer , and 1 +3240 121 we had to endure last summer , 1 +3241 121 we had to endure last summer 1 +3242 121 had to endure last summer 1 +3243 121 had 2 +3244 121 to endure last summer 2 +3245 121 endure last summer 2 +3246 121 endure 2 +3247 121 last summer 2 +3248 121 last 2 +3249 121 hopefully , sets the tone for a summer of good stuff 4 +3250 121 hopefully 2 +3251 121 , sets the tone for a summer of good stuff 3 +3252 121 sets the tone for a summer of good stuff 3 +3253 121 sets 2 +3254 121 the tone for a summer of good stuff 3 +3255 121 the tone 2 +3256 121 tone 2 +3257 121 for a summer of good stuff 3 +3258 121 a summer of good stuff 3 +3259 121 a summer 3 +3260 121 of good stuff 3 +3261 121 good stuff 3 +3262 121 stuff 2 +3263 122 Absorbing character 2 +3264 122 Turpin 2 +3265 123 Violent , vulgar and forgettably entertaining . 1 +3266 123 Violent , vulgar and forgettably entertaining 1 +3267 123 Violent , vulgar and forgettably 0 +3268 123 , vulgar and forgettably 2 +3269 123 vulgar and forgettably 1 +3270 123 vulgar and 2 +3271 123 vulgar 0 +3272 123 forgettably 1 +3273 124 It 's the unsettling images of a war-ravaged land that prove more potent and riveting than the unlikely story of Sarah and Harrison . 2 +3274 124 's the unsettling images of a war-ravaged land that prove more potent and riveting than the unlikely story of Sarah and Harrison . 2 +3275 124 's the unsettling images of a war-ravaged land that prove more potent and riveting than the unlikely story of Sarah and Harrison 3 +3276 124 the unsettling images of a war-ravaged land that prove more potent and riveting than the unlikely story of Sarah and Harrison 3 +3277 124 the unsettling images 2 +3278 124 unsettling images 1 +3279 124 images 2 +3280 124 of a war-ravaged land that prove more potent and riveting than the unlikely story of Sarah and Harrison 3 +3281 124 a war-ravaged land that prove more potent and riveting than the unlikely story of Sarah and Harrison 2 +3282 124 a war-ravaged land 1 +3283 124 war-ravaged land 2 +3284 124 war-ravaged 2 +3285 124 land 2 +3286 124 that prove more potent and riveting than the unlikely story of Sarah and Harrison 2 +3287 124 prove more potent and riveting than the unlikely story of Sarah and Harrison 4 +3288 124 prove more potent and riveting 3 +3289 124 prove 2 +3290 124 more potent and riveting 2 +3291 124 potent and riveting 4 +3292 124 potent and 3 +3293 124 potent 3 +3294 124 riveting 4 +3295 124 than the unlikely story of Sarah and Harrison 2 +3296 124 the unlikely story of Sarah and Harrison 2 +3297 124 the unlikely story 2 +3298 124 unlikely story 2 +3299 124 unlikely 2 +3300 124 of Sarah and Harrison 2 +3301 124 Sarah and Harrison 2 +3302 124 Sarah and 2 +3303 124 Sarah 2 +3304 124 Harrison 2 +3305 125 Winds up being both revelatory and narcissistic , achieving some honest insight into relationships that most high-concept films candy-coat with pat storylines , precious circumstances and beautiful stars . 3 +3306 125 Winds up being both revelatory and narcissistic , achieving some honest insight into relationships that most high-concept films candy-coat with pat storylines , precious circumstances and beautiful stars 4 +3307 125 Winds 2 +3308 125 up being both revelatory and narcissistic , achieving some honest insight into relationships that most high-concept films candy-coat with pat storylines , precious circumstances and beautiful stars 3 +3309 125 being both revelatory and narcissistic , achieving some honest insight into relationships that most high-concept films candy-coat with pat storylines , precious circumstances and beautiful stars 2 +3310 125 being both revelatory and narcissistic , 2 +3311 125 being both revelatory and narcissistic 2 +3312 125 both revelatory and narcissistic 2 +3313 125 revelatory and narcissistic 1 +3314 125 revelatory and 3 +3315 125 revelatory 3 +3316 125 narcissistic 1 +3317 125 achieving some honest insight into relationships that most high-concept films candy-coat with pat storylines , precious circumstances and beautiful stars 3 +3318 125 achieving some honest insight into relationships 3 +3319 125 achieving some honest insight 3 +3320 125 achieving 2 +3321 125 some honest insight 3 +3322 125 honest insight 3 +3323 125 honest 4 +3324 125 insight 2 +3325 125 into relationships 2 +3326 125 relationships 2 +3327 125 that most high-concept films candy-coat with pat storylines , precious circumstances and beautiful stars 2 +3328 125 most high-concept films candy-coat with pat storylines , precious circumstances and beautiful stars 3 +3329 125 most high-concept films 2 +3330 125 high-concept films 3 +3331 125 high-concept 3 +3332 125 candy-coat with pat storylines , precious circumstances and beautiful stars 3 +3333 125 candy-coat 2 +3334 125 with pat storylines , precious circumstances and beautiful stars 3 +3335 125 pat storylines , precious circumstances and beautiful stars 4 +3336 125 pat storylines , precious circumstances and 2 +3337 125 pat storylines , precious circumstances 3 +3338 125 pat storylines , 2 +3339 125 pat storylines 1 +3340 125 storylines 2 +3341 125 precious circumstances 3 +3342 125 precious 3 +3343 125 circumstances 2 +3344 125 beautiful stars 3 +3345 125 beautiful 4 +3346 125 stars 2 +3347 126 If Mostly Martha is mostly unsurprising , it 's still a sweet , even delectable diversion . 3 +3348 126 If Mostly Martha is mostly unsurprising 2 +3349 126 Mostly Martha is mostly unsurprising 1 +3350 126 Mostly Martha 2 +3351 126 Mostly 2 +3352 126 Martha 2 +3353 126 is mostly unsurprising 2 +3354 126 mostly unsurprising 2 +3355 126 unsurprising 1 +3356 126 , it 's still a sweet , even delectable diversion . 3 +3357 126 it 's still a sweet , even delectable diversion . 4 +3358 126 's still a sweet , even delectable diversion . 3 +3359 126 's still a sweet , even delectable diversion 4 +3360 126 's still 2 +3361 126 a sweet , even delectable diversion 3 +3362 126 sweet , even delectable diversion 3 +3363 126 sweet , even delectable 4 +3364 126 , even delectable 3 +3365 126 even delectable 3 +3366 126 delectable 4 +3367 126 diversion 2 +3368 127 A thoughtful and surprisingly affecting portrait of a screwed-up man who dared to mess with some powerful people , seen through the eyes of the idealistic kid who chooses to champion his ultimately losing cause . 4 +3369 127 A thoughtful and surprisingly affecting portrait of a screwed-up man who dared to mess with some powerful people , seen through the eyes of the idealistic kid who chooses to champion his ultimately losing cause 4 +3370 127 A thoughtful and surprisingly affecting portrait of a screwed-up man who dared to mess with some powerful people , 3 +3371 127 A thoughtful and surprisingly affecting portrait of a screwed-up man who dared to mess with some powerful people 3 +3372 127 A thoughtful and surprisingly affecting portrait 3 +3373 127 thoughtful and surprisingly affecting portrait 3 +3374 127 thoughtful and surprisingly affecting 4 +3375 127 thoughtful and 3 +3376 127 surprisingly affecting 3 +3377 127 affecting 2 +3378 127 portrait 2 +3379 127 of a screwed-up man who dared to mess with some powerful people 2 +3380 127 a screwed-up man who dared to mess with some powerful people 1 +3381 127 a screwed-up man 1 +3382 127 screwed-up man 2 +3383 127 screwed-up 1 +3384 127 who dared to mess with some powerful people 2 +3385 127 dared to mess with some powerful people 1 +3386 127 dared to mess 2 +3387 127 dared 3 +3388 127 to mess 2 +3389 127 with some powerful people 3 +3390 127 some powerful people 3 +3391 127 powerful people 3 +3392 127 powerful 4 +3393 127 people 2 +3394 127 seen through the eyes of the idealistic kid who chooses to champion his ultimately losing cause 2 +3395 127 seen 2 +3396 127 through the eyes of the idealistic kid who chooses to champion his ultimately losing cause 3 +3397 127 the eyes of the idealistic kid who chooses to champion his ultimately losing cause 2 +3398 127 the eyes 2 +3399 127 eyes 2 +3400 127 of the idealistic kid who chooses to champion his ultimately losing cause 3 +3401 127 the idealistic kid who chooses to champion his ultimately losing cause 2 +3402 127 the idealistic kid 2 +3403 127 idealistic kid 3 +3404 127 idealistic 2 +3405 127 kid 2 +3406 127 who chooses to champion his ultimately losing cause 2 +3407 127 chooses to champion his ultimately losing cause 2 +3408 127 chooses 2 +3409 127 to champion his ultimately losing cause 2 +3410 127 champion his ultimately losing cause 2 +3411 127 champion 3 +3412 127 his ultimately losing cause 2 +3413 127 ultimately losing cause 1 +3414 127 losing cause 2 +3415 127 losing 1 +3416 127 cause 2 +3417 128 Keenly observed and refreshingly natural , Swimming gets the details right , from its promenade of barely clad bodies in Myrtle Beach , S.C. , to the adrenaline jolt of a sudden lunch rush at the diner . 3 +3418 128 Keenly observed and refreshingly natural 3 +3419 128 Keenly observed and 3 +3420 128 Keenly observed 2 +3421 128 Keenly 3 +3422 128 observed 2 +3423 128 refreshingly natural 3 +3424 128 refreshingly 3 +3425 128 natural 2 +3426 128 , Swimming gets the details right , from its promenade of barely clad bodies in Myrtle Beach , S.C. , to the adrenaline jolt of a sudden lunch rush at the diner . 3 +3427 128 Swimming gets the details right , from its promenade of barely clad bodies in Myrtle Beach , S.C. , to the adrenaline jolt of a sudden lunch rush at the diner . 3 +3428 128 gets the details right , from its promenade of barely clad bodies in Myrtle Beach , S.C. , to the adrenaline jolt of a sudden lunch rush at the diner . 3 +3429 128 gets the details right , from its promenade of barely clad bodies in Myrtle Beach , S.C. , to the adrenaline jolt of a sudden lunch rush at the diner 3 +3430 128 gets the details 2 +3431 128 the details 2 +3432 128 details 2 +3433 128 right , from its promenade of barely clad bodies in Myrtle Beach , S.C. , to the adrenaline jolt of a sudden lunch rush at the diner 3 +3434 128 , from its promenade of barely clad bodies in Myrtle Beach , S.C. , to the adrenaline jolt of a sudden lunch rush at the diner 3 +3435 128 from its promenade of barely clad bodies in Myrtle Beach , S.C. , to the adrenaline jolt of a sudden lunch rush at the diner 3 +3436 128 from its promenade of barely clad bodies in Myrtle Beach , S.C. 2 +3437 128 its promenade of barely clad bodies in Myrtle Beach , S.C. 2 +3438 128 its promenade 2 +3439 128 promenade 2 +3440 128 of barely clad bodies in Myrtle Beach , S.C. 2 +3441 128 barely clad bodies in Myrtle Beach , S.C. 2 +3442 128 barely clad bodies 2 +3443 128 barely clad 2 +3444 128 clad 2 +3445 128 bodies 2 +3446 128 in Myrtle Beach , S.C. 2 +3447 128 Myrtle Beach , S.C. 2 +3448 128 Myrtle Beach , 2 +3449 128 Myrtle Beach 2 +3450 128 Myrtle 2 +3451 128 Beach 2 +3452 128 S.C. 2 +3453 128 , to the adrenaline jolt of a sudden lunch rush at the diner 3 +3454 128 to the adrenaline jolt of a sudden lunch rush at the diner 2 +3455 128 the adrenaline jolt of a sudden lunch rush at the diner 3 +3456 128 the adrenaline jolt 3 +3457 128 adrenaline jolt 3 +3458 128 adrenaline 2 +3459 128 jolt 2 +3460 128 of a sudden lunch rush at the diner 2 +3461 128 a sudden lunch rush at the diner 2 +3462 128 a sudden lunch rush 3 +3463 128 sudden lunch rush 2 +3464 128 sudden 2 +3465 128 lunch rush 2 +3466 128 lunch 2 +3467 128 rush 1 +3468 128 at the diner 2 +3469 128 the diner 2 +3470 128 diner 2 +3471 129 A brilliant gag at the expense of those who paid for it and those who pay to see it . 2 +3472 129 A brilliant gag at the expense of those who paid for it and those who pay to see it 2 +3473 129 A brilliant gag 3 +3474 129 brilliant gag 3 +3475 129 brilliant 4 +3476 129 at the expense of those who paid for it and those who pay to see it 0 +3477 129 the expense of those who paid for it and those who pay to see it 1 +3478 129 the expense 2 +3479 129 expense 2 +3480 129 of those who paid for it and those who pay to see it 2 +3481 129 those who paid for it and those who pay to see it 2 +3482 129 those who paid for it and 2 +3483 129 those who paid for it 2 +3484 129 who paid for it 2 +3485 129 paid for it 2 +3486 129 paid 2 +3487 129 those who pay to see it 2 +3488 129 who pay to see it 2 +3489 129 pay to see it 3 +3490 129 pay 2 +3491 129 to see it 2 +3492 129 see it 3 +3493 130 A triumph , a film that hews out a world and carries us effortlessly from darkness to light . 4 +3494 130 A triumph , a film that hews out a world and carries us effortlessly from darkness to light 4 +3495 130 A triumph , 3 +3496 130 A triumph 4 +3497 130 triumph 3 +3498 130 a film that hews out a world and carries us effortlessly from darkness to light 4 +3499 130 that hews out a world and carries us effortlessly from darkness to light 3 +3500 130 hews out a world and carries us effortlessly from darkness to light 3 +3501 130 hews out a world and 2 +3502 130 hews out a world 2 +3503 130 hews out 2 +3504 130 hews 2 +3505 130 a world 2 +3506 130 carries us effortlessly from darkness to light 3 +3507 130 carries us effortlessly from darkness 3 +3508 130 carries us effortlessly 3 +3509 130 carries us 2 +3510 130 carries 2 +3511 130 effortlessly 3 +3512 130 from darkness 2 +3513 130 darkness 1 +3514 130 to light 3 +3515 130 light 2 +3516 131 Just about everyone involved here seems to be coasting . 1 +3517 131 Just about everyone involved here 2 +3518 131 Just about everyone 2 +3519 131 about everyone 2 +3520 131 everyone 2 +3521 131 involved here 2 +3522 131 involved 2 +3523 131 seems to be coasting . 1 +3524 131 seems to be coasting 2 +3525 131 seems 2 +3526 131 to be coasting 2 +3527 131 be coasting 2 +3528 131 coasting 2 +3529 132 A fascinating , dark thriller that keeps you hooked on the delicious pulpiness of its lurid fiction . 3 +3530 132 A fascinating , dark thriller that keeps you 4 +3531 132 A fascinating , dark thriller 3 +3532 132 fascinating , dark thriller 3 +3533 132 , dark thriller 2 +3534 132 dark thriller 2 +3535 132 that keeps you 3 +3536 132 keeps you 3 +3537 132 hooked on the delicious pulpiness of its lurid fiction . 3 +3538 132 hooked on the delicious pulpiness of its lurid fiction 3 +3539 132 hooked 3 +3540 132 on the delicious pulpiness of its lurid fiction 3 +3541 132 the delicious pulpiness of its lurid fiction 3 +3542 132 the delicious pulpiness 3 +3543 132 delicious pulpiness 3 +3544 132 delicious 3 +3545 132 pulpiness 2 +3546 132 of its lurid fiction 3 +3547 132 its lurid fiction 2 +3548 132 lurid fiction 2 +3549 132 lurid 2 +3550 132 fiction 3 +3551 133 I suspect this is the kind of production that would have been funnier if the director had released the outtakes theatrically and used the film as a bonus feature on the DVD . 1 +3552 133 suspect this is the kind of production that would have been funnier if the director had released the outtakes theatrically and used the film as a bonus feature on the DVD . 2 +3553 133 suspect this is the kind of production that would have been funnier if the director had released the outtakes theatrically and used the film as a bonus feature on the DVD 2 +3554 133 this is the kind of production that would have been funnier if the director had released the outtakes theatrically and used the film as a bonus feature on the DVD 1 +3555 133 is the kind of production that would have been funnier if the director had released the outtakes theatrically and used the film as a bonus feature on the DVD 1 +3556 133 the kind of production that would have been funnier if the director had released the outtakes theatrically and used the film as a bonus feature on the DVD 2 +3557 133 the kind of production 2 +3558 133 the kind 2 +3559 133 kind 3 +3560 133 of production 2 +3561 133 production 2 +3562 133 that would have been funnier if the director had released the outtakes theatrically and used the film as a bonus feature on the DVD 1 +3563 133 would have been funnier if the director had released the outtakes theatrically and used the film as a bonus feature on the DVD 1 +3564 133 have been funnier if the director had released the outtakes theatrically and used the film as a bonus feature on the DVD 1 +3565 133 been funnier if the director had released the outtakes theatrically and used the film as a bonus feature on the DVD 2 +3566 133 been funnier 2 +3567 133 been 2 +3568 133 funnier 3 +3569 133 if the director had released the outtakes theatrically and used the film as a bonus feature on the DVD 1 +3570 133 the director had released the outtakes theatrically and used the film as a bonus feature on the DVD 3 +3571 133 had released the outtakes theatrically and used the film as a bonus feature on the DVD 3 +3572 133 released the outtakes theatrically and used the film as a bonus feature on the DVD 1 +3573 133 released the outtakes theatrically and 2 +3574 133 released the outtakes theatrically 2 +3575 133 released the outtakes 2 +3576 133 released 2 +3577 133 the outtakes 2 +3578 133 outtakes 2 +3579 133 theatrically 2 +3580 133 used the film as a bonus feature on the DVD 1 +3581 133 used the film as a bonus feature 2 +3582 133 used 2 +3583 133 the film as a bonus feature 2 +3584 133 as a bonus feature 2 +3585 133 a bonus feature 3 +3586 133 bonus feature 2 +3587 133 bonus 3 +3588 133 on the DVD 2 +3589 133 the DVD 2 +3590 133 DVD 2 +3591 134 It 's hard to say who might enjoy this , are there Tolstoy groupies out there ? 1 +3592 134 It 's hard to say who might enjoy this 0 +3593 134 's hard to say who might enjoy this 1 +3594 134 hard to say who might enjoy this 0 +3595 134 to say who might enjoy this 2 +3596 134 say who might enjoy this 2 +3597 134 who might enjoy this 3 +3598 134 might enjoy this 3 +3599 134 enjoy this 3 +3600 134 , are there Tolstoy groupies out there ? 2 +3601 134 are there Tolstoy groupies out there ? 2 +3602 134 are there Tolstoy groupies out there 2 +3603 134 are there Tolstoy groupies 2 +3604 134 are there 2 +3605 134 Tolstoy groupies 2 +3606 134 Tolstoy 2 +3607 134 groupies 2 +3608 134 out there 2 +3609 134 ? 2 +3610 135 Daughter From Danang reveals that efforts toward closure only open new wounds . 1 +3611 135 Daughter 3 +3612 135 From Danang reveals that efforts toward closure only open new wounds . 2 +3613 135 From Danang 2 +3614 135 Danang 2 +3615 135 reveals that efforts toward closure only open new wounds . 2 +3616 135 reveals that efforts toward closure only open new wounds 3 +3617 135 reveals 2 +3618 135 that efforts toward closure only open new wounds 1 +3619 135 efforts toward closure only open new wounds 2 +3620 135 efforts toward closure 2 +3621 135 efforts 2 +3622 135 toward closure 2 +3623 135 toward 2 +3624 135 closure 2 +3625 135 only open new wounds 1 +3626 135 open new wounds 2 +3627 135 open 3 +3628 135 new wounds 2 +3629 135 wounds 2 +3630 136 One of the year 's most weirdly engaging and unpredictable character pieces . 4 +3631 136 One of the year 2 +3632 136 's most weirdly engaging and unpredictable character pieces . 2 +3633 136 's most weirdly engaging and unpredictable character pieces 3 +3634 136 's most 2 +3635 136 weirdly engaging and unpredictable character pieces 3 +3636 136 weirdly 1 +3637 136 engaging and unpredictable character pieces 3 +3638 136 and unpredictable character pieces 2 +3639 136 unpredictable character pieces 2 +3640 136 unpredictable 2 +3641 136 character pieces 2 +3642 136 pieces 2 +3643 137 Intriguing and downright intoxicating . 4 +3644 137 Intriguing and downright intoxicating 4 +3645 137 Intriguing 3 +3646 137 and downright intoxicating 2 +3647 137 downright intoxicating 4 +3648 137 intoxicating 3 +3649 138 Although fairly involving as far as it goes , the film does n't end up having much that is fresh to say about growing up Catholic or , really , anything . 1 +3650 138 Although fairly involving as far as it goes 3 +3651 138 Although 2 +3652 138 fairly involving as far as it goes 3 +3653 138 fairly 2 +3654 138 involving as far as it goes 2 +3655 138 involving as far 2 +3656 138 as far 2 +3657 138 as it goes 2 +3658 138 it goes 2 +3659 138 , the film does n't end up having much that is fresh to say about growing up Catholic or , really , anything . 1 +3660 138 the film does n't end up having much that is fresh to say about growing up Catholic or , really , anything . 1 +3661 138 does n't end up having much that is fresh to say about growing up Catholic or , really , anything . 1 +3662 138 does n't end up having much that is fresh to say about growing up Catholic or , really , anything 2 +3663 138 end up having much that is fresh to say about growing up Catholic or , really , anything 2 +3664 138 end up 2 +3665 138 end 2 +3666 138 having much that is fresh to say about growing up Catholic or , really , anything 3 +3667 138 having 2 +3668 138 much that is fresh to say about growing up Catholic or , really , anything 2 +3669 138 that is fresh to say about growing up Catholic or , really , anything 2 +3670 138 is fresh to say about growing up Catholic or , really , anything 3 +3671 138 fresh to say about growing up Catholic or , really , anything 1 +3672 138 fresh 4 +3673 138 to say about growing up Catholic or , really , anything 2 +3674 138 say about growing up Catholic or , really , anything 2 +3675 138 about growing up Catholic or , really , anything 2 +3676 138 growing up Catholic or , really , anything 2 +3677 138 growing up 2 +3678 138 growing 2 +3679 138 Catholic or , really , anything 2 +3680 138 Catholic or , really , 2 +3681 138 Catholic or 2 +3682 138 Catholic 2 +3683 138 , really , 2 +3684 138 really , 2 +3685 138 really 2 +3686 138 anything 2 +3687 139 The movie is silly beyond comprehension , and even if it were n't silly , it would still be beyond comprehension . 0 +3688 139 The movie is silly beyond comprehension , and even if it were n't silly , it would still be beyond comprehension 1 +3689 139 The movie is silly beyond comprehension , and 0 +3690 139 The movie is silly beyond comprehension , 3 +3691 139 The movie is silly beyond comprehension 1 +3692 139 is silly beyond comprehension 1 +3693 139 silly beyond comprehension 1 +3694 139 beyond comprehension 2 +3695 139 comprehension 2 +3696 139 even if it were n't silly , it would still be beyond comprehension 1 +3697 139 even if it were n't silly 2 +3698 139 if it were n't silly 1 +3699 139 it were n't silly 2 +3700 139 were n't silly 2 +3701 139 were n't 2 +3702 139 were 2 +3703 139 , it would still be beyond comprehension 1 +3704 139 it would still be beyond comprehension 1 +3705 139 would still be beyond comprehension 2 +3706 139 would still 2 +3707 139 be beyond comprehension 2 +3708 140 Sleek and arty . 3 +3709 140 Sleek and arty 4 +3710 140 Sleek and 2 +3711 140 Sleek 3 +3712 140 arty 2 +3713 141 Poor editing , bad bluescreen , and ultra-cheesy dialogue highlight the radical action . 0 +3714 141 Poor editing , bad bluescreen , and ultra-cheesy dialogue 0 +3715 141 Poor editing , bad bluescreen , and 0 +3716 141 Poor editing , bad bluescreen , 1 +3717 141 Poor editing , bad bluescreen 0 +3718 141 Poor editing , 1 +3719 141 Poor editing 1 +3720 141 Poor 1 +3721 141 editing 2 +3722 141 bad bluescreen 0 +3723 141 bluescreen 2 +3724 141 ultra-cheesy dialogue 1 +3725 141 ultra-cheesy 1 +3726 141 highlight the radical action . 2 +3727 141 highlight the radical action 2 +3728 141 highlight 3 +3729 141 the radical action 2 +3730 141 radical action 3 +3731 141 radical 2 +3732 142 -LRB- Cho 's face is -RRB- an amazing slapstick instrument , creating a scrapbook of living mug shots . 3 +3733 142 Cho 's face is -RRB- an amazing slapstick instrument , creating a scrapbook of living mug shots . 3 +3734 142 Cho 2 +3735 142 's face is -RRB- an amazing slapstick instrument , creating a scrapbook of living mug shots . 2 +3736 142 's face is -RRB- an amazing slapstick instrument , creating a scrapbook of living mug shots 2 +3737 142 's face is -RRB- an amazing slapstick instrument , 3 +3738 142 's face is -RRB- an amazing slapstick instrument 4 +3739 142 's face is -RRB- 2 +3740 142 face is -RRB- 2 +3741 142 face is 2 +3742 142 face 2 +3743 142 an amazing slapstick instrument 3 +3744 142 an amazing slapstick 4 +3745 142 amazing slapstick 4 +3746 142 amazing 4 +3747 142 slapstick 3 +3748 142 instrument 2 +3749 142 creating a scrapbook of living mug shots 2 +3750 142 creating 2 +3751 142 a scrapbook of living mug shots 2 +3752 142 a scrapbook 2 +3753 142 scrapbook 2 +3754 142 of living mug shots 2 +3755 142 living mug shots 1 +3756 142 living 2 +3757 142 mug shots 1 +3758 142 mug 2 +3759 142 shots 2 +3760 143 It gets the details of its time frame right but it completely misses its emotions . 1 +3761 143 It gets the details of its time frame right but it completely misses its emotions 2 +3762 143 It gets the details of its time frame right but 2 +3763 143 It gets the details of its time frame right 3 +3764 143 gets the details of its time frame right 2 +3765 143 the details of its time frame right 2 +3766 143 of its time frame right 2 +3767 143 its time frame right 2 +3768 143 time frame right 3 +3769 143 frame right 2 +3770 143 frame 2 +3771 143 it completely misses its emotions 2 +3772 143 completely misses its emotions 0 +3773 143 completely 2 +3774 143 misses its emotions 1 +3775 143 misses 1 +3776 143 its emotions 2 +3777 143 emotions 2 +3778 144 Initial strangeness inexorably gives way to rote sentimentality and mystical tenderness becomes narrative expedience . 2 +3779 144 Initial strangeness inexorably gives way to rote sentimentality and mystical tenderness becomes narrative expedience 2 +3780 144 Initial strangeness inexorably gives way to rote sentimentality and 1 +3781 144 Initial strangeness inexorably gives way to rote sentimentality 3 +3782 144 Initial strangeness 1 +3783 144 Initial 2 +3784 144 strangeness 2 +3785 144 inexorably gives way to rote sentimentality 1 +3786 144 inexorably 2 +3787 144 gives way to rote sentimentality 2 +3788 144 gives way 2 +3789 144 to rote sentimentality 2 +3790 144 rote sentimentality 2 +3791 144 rote 2 +3792 144 sentimentality 2 +3793 144 mystical tenderness becomes narrative expedience 2 +3794 144 mystical tenderness 2 +3795 144 mystical 3 +3796 144 tenderness 3 +3797 144 becomes narrative expedience 2 +3798 144 narrative expedience 2 +3799 144 expedience 3 +3800 145 It lets you brush up against the humanity of a psycho , without making him any less psycho . 3 +3801 145 lets you brush up against the humanity of a psycho , without making him any less psycho . 3 +3802 145 lets you brush up against the humanity of a psycho , without making him any less psycho 2 +3803 145 lets you brush up against the humanity of a psycho , 3 +3804 145 lets you brush up against the humanity of a psycho 3 +3805 145 lets 2 +3806 145 you brush up against the humanity of a psycho 2 +3807 145 brush up against the humanity of a psycho 2 +3808 145 brush up 2 +3809 145 brush 2 +3810 145 against the humanity of a psycho 2 +3811 145 the humanity of a psycho 2 +3812 145 the humanity 2 +3813 145 humanity 2 +3814 145 of a psycho 2 +3815 145 a psycho 1 +3816 145 psycho 2 +3817 145 without making him any less psycho 2 +3818 145 without 2 +3819 145 making him any less psycho 2 +3820 145 him any less psycho 2 +3821 145 him 2 +3822 145 any less psycho 1 +3823 145 less psycho 3 +3824 146 Like the world of his film , Hartley created a monster but did n't know how to handle it . 1 +3825 146 Like the world of his film 2 +3826 146 the world of his film 2 +3827 146 the world 2 +3828 146 of his film 2 +3829 146 his film 2 +3830 146 , Hartley created a monster but did n't know how to handle it . 1 +3831 146 Hartley created a monster but did n't know how to handle it . 1 +3832 146 Hartley 2 +3833 146 created a monster but did n't know how to handle it . 1 +3834 146 created a monster but did n't know how to handle it 1 +3835 146 created a monster but 2 +3836 146 created a monster 1 +3837 146 created 2 +3838 146 a monster 1 +3839 146 monster 2 +3840 146 did n't know how to handle it 2 +3841 146 did n't 2 +3842 146 did 2 +3843 146 know how to handle it 2 +3844 146 how to handle it 2 +3845 146 to handle it 2 +3846 146 handle it 2 +3847 146 handle 2 +3848 147 When cowering and begging at the feet a scruffy Giannini , Madonna gives her best performance since Abel Ferrara had her beaten to a pulp in his Dangerous Game . 4 +3849 147 When cowering and begging at the feet a scruffy Giannini 2 +3850 147 cowering and begging at the feet a scruffy Giannini 2 +3851 147 cowering and begging at the feet 2 +3852 147 cowering and begging 2 +3853 147 cowering and 2 +3854 147 cowering 2 +3855 147 begging 2 +3856 147 at the feet 2 +3857 147 the feet 2 +3858 147 feet 2 +3859 147 a scruffy Giannini 2 +3860 147 a scruffy 1 +3861 147 scruffy 2 +3862 147 Giannini 2 +3863 147 , Madonna gives her best performance since Abel Ferrara had her beaten to a pulp in his Dangerous Game . 3 +3864 147 Madonna gives her best performance since Abel Ferrara had her beaten to a pulp in his Dangerous Game . 3 +3865 147 Madonna 2 +3866 147 gives her best performance since Abel Ferrara had her beaten to a pulp in his Dangerous Game . 3 +3867 147 gives her best performance since Abel Ferrara had her beaten to a pulp in his Dangerous Game 4 +3868 147 gives her best performance 2 +3869 147 gives her best 3 +3870 147 her best 3 +3871 147 since Abel Ferrara had her beaten to a pulp in his Dangerous Game 2 +3872 147 since 2 +3873 147 Abel Ferrara had her beaten to a pulp in his Dangerous Game 2 +3874 147 Abel Ferrara 2 +3875 147 Abel 2 +3876 147 Ferrara 2 +3877 147 had her beaten to a pulp in his Dangerous Game 2 +3878 147 her beaten to a pulp in his Dangerous Game 1 +3879 147 beaten to a pulp in his Dangerous Game 1 +3880 147 beaten 1 +3881 147 to a pulp in his Dangerous Game 2 +3882 147 a pulp in his Dangerous Game 2 +3883 147 a pulp 2 +3884 147 pulp 2 +3885 147 in his Dangerous Game 2 +3886 147 his Dangerous Game 2 +3887 147 Dangerous Game 2 +3888 147 Dangerous 1 +3889 147 Game 2 +3890 148 Too clumsy in key moments ... to make a big splash . 1 +3891 148 Too clumsy in key moments 1 +3892 148 Too clumsy 1 +3893 148 clumsy 1 +3894 148 in key moments 2 +3895 148 key moments 2 +3896 148 key 2 +3897 148 moments 2 +3898 148 ... to make a big splash . 2 +3899 148 to make a big splash . 3 +3900 148 to make a big splash 3 +3901 148 make a big splash 3 +3902 148 a big splash 3 +3903 148 big splash 3 +3904 148 splash 3 +3905 149 Because Eight Legged Freaks is partly an homage to Them , Tarantula and other low - budget B-movie thrillers of the 1950s and '60s , the movie is a silly -LRB- but not sophomoric -RRB- romp through horror and hellish conditions . 2 +3906 149 Because Eight Legged Freaks is partly an homage to Them , Tarantula and other low - budget B-movie thrillers of the 1950s and '60s 2 +3907 149 Eight Legged Freaks is partly an homage to Them , Tarantula and other low - budget B-movie thrillers of the 1950s and '60s 2 +3908 149 Eight Legged Freaks 2 +3909 149 Eight 2 +3910 149 Legged Freaks 1 +3911 149 Legged 2 +3912 149 Freaks 2 +3913 149 is partly an homage to Them , Tarantula and other low - budget B-movie thrillers of the 1950s and '60s 2 +3914 149 is partly 2 +3915 149 partly 2 +3916 149 an homage to Them , Tarantula and other low - budget B-movie thrillers of the 1950s and '60s 3 +3917 149 an homage to Them , Tarantula and other low - 2 +3918 149 an homage to Them , Tarantula and other low 3 +3919 149 an homage 2 +3920 149 homage 3 +3921 149 to Them , Tarantula and other low 2 +3922 149 Them , Tarantula and other low 2 +3923 149 Them , Tarantula and 2 +3924 149 Them , Tarantula 2 +3925 149 Them , 2 +3926 149 Tarantula 2 +3927 149 other low 2 +3928 149 low 2 +3929 149 budget B-movie thrillers of the 1950s and '60s 2 +3930 149 budget B-movie thrillers 2 +3931 149 budget 2 +3932 149 B-movie thrillers 3 +3933 149 B-movie 1 +3934 149 thrillers 2 +3935 149 of the 1950s and '60s 2 +3936 149 the 1950s and '60s 2 +3937 149 1950s and '60s 2 +3938 149 1950s and 2 +3939 149 1950s 2 +3940 149 '60s 2 +3941 149 , the movie is a silly -LRB- but not sophomoric -RRB- romp through horror and hellish conditions . 3 +3942 149 the movie is a silly -LRB- but not sophomoric -RRB- romp through horror and hellish conditions . 3 +3943 149 is a silly -LRB- but not sophomoric -RRB- romp through horror and hellish conditions . 2 +3944 149 is a silly -LRB- but not sophomoric -RRB- romp through horror and hellish conditions 2 +3945 149 a silly -LRB- but not sophomoric -RRB- romp through horror and hellish conditions 2 +3946 149 a silly -LRB- but not sophomoric -RRB- romp 3 +3947 149 silly -LRB- but not sophomoric -RRB- romp 3 +3948 149 silly -LRB- but not sophomoric -RRB- 2 +3949 149 -LRB- but not sophomoric -RRB- 2 +3950 149 but not sophomoric -RRB- 3 +3951 149 but not sophomoric 2 +3952 149 not sophomoric 3 +3953 149 sophomoric 1 +3954 149 romp 2 +3955 149 through horror and hellish conditions 1 +3956 149 horror and hellish conditions 1 +3957 149 and hellish conditions 1 +3958 149 hellish conditions 1 +3959 149 hellish 1 +3960 149 conditions 2 +3961 150 It feels like very light Errol Morris , focusing on eccentricity but failing , ultimately , to make something bigger out of its scrapbook of oddballs . 1 +3962 150 feels like very light Errol Morris , focusing on eccentricity but failing , ultimately , to make something bigger out of its scrapbook of oddballs . 1 +3963 150 feels like very light Errol Morris , focusing on eccentricity but failing , ultimately , to make something bigger out of its scrapbook of oddballs 1 +3964 150 feels like very light Errol Morris , 2 +3965 150 feels like very light Errol Morris 3 +3966 150 like very light Errol Morris 2 +3967 150 very light Errol Morris 2 +3968 150 very light 3 +3969 150 Errol Morris 2 +3970 150 Errol 2 +3971 150 Morris 2 +3972 150 focusing on eccentricity but failing , ultimately , to make something bigger out of its scrapbook of oddballs 1 +3973 150 focusing on eccentricity but 2 +3974 150 focusing on eccentricity 2 +3975 150 focusing 2 +3976 150 on eccentricity 2 +3977 150 eccentricity 2 +3978 150 failing , ultimately , to make something bigger out of its scrapbook of oddballs 1 +3979 150 failing , ultimately , 0 +3980 150 failing , ultimately 0 +3981 150 failing , 1 +3982 150 failing 1 +3983 150 to make something bigger out of its scrapbook of oddballs 2 +3984 150 make something bigger out of its scrapbook of oddballs 2 +3985 150 make something bigger out 2 +3986 150 make something bigger 2 +3987 150 something bigger 2 +3988 150 bigger 3 +3989 150 of its scrapbook of oddballs 2 +3990 150 its scrapbook of oddballs 1 +3991 150 its scrapbook 2 +3992 150 of oddballs 2 +3993 150 oddballs 1 +3994 151 Spielberg 's realization of a near-future America is masterful . 4 +3995 151 Spielberg 's realization of a near-future America 2 +3996 151 Spielberg 's realization 2 +3997 151 of a near-future America 2 +3998 151 a near-future America 2 +3999 151 near-future America 2 +4000 151 near-future 2 +4001 151 America 2 +4002 151 is masterful . 4 +4003 151 is masterful 4 +4004 152 There 's a scientific law to be discerned here that producers would be well to heed : Mediocre movies start to drag as soon as the action speeds up ; when the explosions start , they fall to pieces . 0 +4005 152 There 's a scientific law to be discerned here that producers would be well to heed : Mediocre movies start to drag as soon as the action speeds up ; when the explosions start , they fall to pieces 0 +4006 152 There 's a scientific law to be discerned here that producers would be well to heed : Mediocre movies start to drag as soon as the action speeds up ; 1 +4007 152 There 's a scientific law to be discerned here that producers would be well to heed : Mediocre movies start to drag as soon as the action speeds up 0 +4008 152 There 's a scientific law to be discerned here that producers would be well to heed : 2 +4009 152 There 's a scientific law to be discerned here that producers would be well to heed 1 +4010 152 's a scientific law to be discerned here that producers would be well to heed 2 +4011 152 a scientific law to be discerned here that producers would be well to heed 1 +4012 152 scientific law to be discerned here that producers would be well to heed 2 +4013 152 scientific 2 +4014 152 law to be discerned here that producers would be well to heed 1 +4015 152 law 2 +4016 152 to be discerned here that producers would be well to heed 2 +4017 152 be discerned here that producers would be well to heed 2 +4018 152 discerned here that producers would be well to heed 1 +4019 152 discerned here 2 +4020 152 discerned 2 +4021 152 that producers would be well to heed 2 +4022 152 producers would be well to heed 2 +4023 152 producers 2 +4024 152 would be well to heed 2 +4025 152 be well to heed 2 +4026 152 be well 2 +4027 152 to heed 2 +4028 152 heed 2 +4029 152 Mediocre movies start to drag as soon as the action speeds up 1 +4030 152 Mediocre movies 1 +4031 152 Mediocre 1 +4032 152 start to drag as soon as the action speeds up 1 +4033 152 to drag as soon as the action speeds up 1 +4034 152 drag as soon as the action speeds up 1 +4035 152 drag 1 +4036 152 as soon as the action speeds up 2 +4037 152 as soon 2 +4038 152 as the action speeds up 2 +4039 152 the action speeds up 2 +4040 152 the action 2 +4041 152 speeds up 3 +4042 152 speeds 2 +4043 152 ; 2 +4044 152 when the explosions start , they fall to pieces 1 +4045 152 when the explosions start 2 +4046 152 the explosions start 2 +4047 152 the explosions 2 +4048 152 explosions 2 +4049 152 , they fall to pieces 2 +4050 152 they fall to pieces 1 +4051 152 fall to pieces 1 +4052 152 fall 2 +4053 152 to pieces 2 +4054 153 He 's one of the few ` cool ' actors who never seems aware of his own coolness . 3 +4055 153 's one of the few ` cool ' actors who never seems aware of his own coolness . 3 +4056 153 's one of the few ` cool ' actors who never seems aware of his own coolness 3 +4057 153 one of the few ` cool ' actors who never seems aware of his own coolness 3 +4058 153 of the few ` cool ' actors who never seems aware of his own coolness 3 +4059 153 the few ` cool ' actors who never seems aware of his own coolness 3 +4060 153 the few ` cool ' actors 3 +4061 153 few ` cool ' actors 1 +4062 153 few 2 +4063 153 ` cool ' actors 2 +4064 153 cool ' actors 2 +4065 153 cool 3 +4066 153 ' actors 2 +4067 153 who never seems aware of his own coolness 2 +4068 153 never seems aware of his own coolness 3 +4069 153 never 2 +4070 153 seems aware of his own coolness 3 +4071 153 aware of his own coolness 3 +4072 153 aware 2 +4073 153 of his own coolness 2 +4074 153 his own coolness 2 +4075 153 own coolness 2 +4076 153 coolness 3 +4077 154 Feels like the work of an artist who is simply tired -- of fighting the same fights , of putting the weight of the world on his shoulders , of playing with narrative form . 1 +4078 154 like the work of an artist who is simply tired -- of fighting the same fights , of putting the weight of the world on his shoulders , of playing with narrative form . 1 +4079 154 like the work of an artist who is simply tired -- of fighting the same fights , of putting the weight of the world on his shoulders , of playing with narrative form 1 +4080 154 the work of an artist who is simply tired -- of fighting the same fights , of putting the weight of the world on his shoulders , of playing with narrative form 2 +4081 154 the work 2 +4082 154 of an artist who is simply tired -- of fighting the same fights , of putting the weight of the world on his shoulders , of playing with narrative form 1 +4083 154 an artist who is simply tired -- of fighting the same fights , of putting the weight of the world on his shoulders , of playing with narrative form 1 +4084 154 an artist who is simply tired -- of fighting the same fights , of putting the weight of the world on his shoulders , 2 +4085 154 an artist who is simply tired -- of fighting the same fights , of putting the weight of the world on his shoulders 2 +4086 154 an artist who is simply tired -- of fighting the same fights , 2 +4087 154 an artist who is simply tired -- of fighting the same fights 2 +4088 154 an artist who is simply tired -- 1 +4089 154 an artist who is simply tired 1 +4090 154 an artist 2 +4091 154 artist 2 +4092 154 who is simply tired 1 +4093 154 is simply tired 1 +4094 154 is simply 2 +4095 154 tired 1 +4096 154 of fighting the same fights 2 +4097 154 fighting the same fights 1 +4098 154 fighting 2 +4099 154 the same fights 2 +4100 154 same fights 2 +4101 154 fights 1 +4102 154 of putting the weight of the world on his shoulders 2 +4103 154 putting the weight of the world on his shoulders 2 +4104 154 putting 2 +4105 154 the weight of the world on his shoulders 2 +4106 154 the weight 2 +4107 154 weight 2 +4108 154 of the world on his shoulders 2 +4109 154 the world on his shoulders 2 +4110 154 on his shoulders 2 +4111 154 his shoulders 2 +4112 154 shoulders 2 +4113 154 of playing with narrative form 3 +4114 154 playing with narrative form 2 +4115 154 with narrative form 2 +4116 154 narrative form 2 +4117 154 form 2 +4118 155 ... stale and uninspired . 1 +4119 155 stale and uninspired . 0 +4120 155 stale 2 +4121 155 and uninspired . 0 +4122 155 uninspired . 0 +4123 155 uninspired 1 +4124 156 In the director 's cut , the film is not only a love song to the movies but it also is more fully an example of the kind of lush , all-enveloping movie experience it rhapsodizes . 3 +4125 156 In the director 's cut 2 +4126 156 the director 's cut 2 +4127 156 the director 's 3 +4128 156 director 's 2 +4129 156 cut 2 +4130 156 , the film is not only a love song to the movies but it also is more fully an example of the kind of lush , all-enveloping movie experience it rhapsodizes . 4 +4131 156 the film is not only a love song to the movies but it also is more fully an example of the kind of lush , all-enveloping movie experience it rhapsodizes . 4 +4132 156 the film is not only a love song to the movies but it also is more fully an example of the kind of lush , all-enveloping movie experience it rhapsodizes 4 +4133 156 the film is not only a love song to the movies but 3 +4134 156 the film is not only a love song to the movies 3 +4135 156 is not only a love song to the movies 3 +4136 156 is not only 2 +4137 156 a love song to the movies 3 +4138 156 a love song 2 +4139 156 love song 3 +4140 156 song 2 +4141 156 to the movies 2 +4142 156 the movies 2 +4143 156 it also is more fully an example of the kind of lush , all-enveloping movie experience it rhapsodizes 3 +4144 156 also is more fully an example of the kind of lush , all-enveloping movie experience it rhapsodizes 4 +4145 156 is more fully an example of the kind of lush , all-enveloping movie experience it rhapsodizes 3 +4146 156 is more fully 3 +4147 156 more fully 2 +4148 156 fully 2 +4149 156 an example of the kind of lush , all-enveloping movie experience it rhapsodizes 3 +4150 156 an example of the kind of lush , all-enveloping movie experience 4 +4151 156 an example 2 +4152 156 example 2 +4153 156 of the kind of lush , all-enveloping movie experience 3 +4154 156 the kind of lush , all-enveloping movie experience 4 +4155 156 of lush , all-enveloping movie experience 2 +4156 156 lush , all-enveloping movie experience 4 +4157 156 lush 3 +4158 156 , all-enveloping movie experience 3 +4159 156 all-enveloping movie experience 4 +4160 156 all-enveloping 2 +4161 156 movie experience 2 +4162 156 it rhapsodizes 2 +4163 156 rhapsodizes 2 +4164 157 Has the rare capability to soothe and break your heart with a single stroke . 3 +4165 157 Has the rare capability to soothe and break your heart with a single stroke 3 +4166 157 the rare capability to soothe and break your heart with a single stroke 3 +4167 157 rare capability to soothe and break your heart with a single stroke 3 +4168 157 rare 3 +4169 157 capability to soothe and break your heart with a single stroke 3 +4170 157 capability 2 +4171 157 to soothe and break your heart with a single stroke 3 +4172 157 soothe and break your heart with a single stroke 2 +4173 157 soothe and break your heart 2 +4174 157 soothe and break 3 +4175 157 soothe and 2 +4176 157 soothe 2 +4177 157 break 2 +4178 157 your heart 2 +4179 157 heart 2 +4180 157 with a single stroke 2 +4181 157 a single stroke 2 +4182 157 single stroke 2 +4183 157 single 2 +4184 157 stroke 1 +4185 158 Eerily accurate depiction of depression . 1 +4186 158 Eerily accurate depiction of depression 3 +4187 158 Eerily accurate depiction 3 +4188 158 Eerily accurate 3 +4189 158 Eerily 2 +4190 158 accurate 3 +4191 158 depiction 2 +4192 158 of depression 2 +4193 158 depression 2 +4194 159 As a feature-length film , it wears out its welcome as tryingly as the title character . 1 +4195 159 As a feature-length film 2 +4196 159 a feature-length film 3 +4197 159 feature-length film 2 +4198 159 feature-length 3 +4199 159 , it wears out its welcome as tryingly as the title character . 0 +4200 159 it wears out its welcome as tryingly as the title character . 1 +4201 159 wears out its welcome as tryingly as the title character . 1 +4202 159 wears out its welcome as tryingly as the title character 1 +4203 159 wears out 1 +4204 159 wears 1 +4205 159 its welcome as tryingly as the title character 2 +4206 159 welcome as tryingly as the title character 2 +4207 159 welcome as tryingly as the title 2 +4208 159 as tryingly as the title 1 +4209 159 tryingly as the title 2 +4210 159 tryingly 2 +4211 159 as the title 2 +4212 159 the title 2 +4213 160 An uncluttered , resonant gem that relays its universal points without lectures or confrontations . ' 3 +4214 160 An uncluttered , resonant gem that relays its universal points without lectures or confrontations . 3 +4215 160 An uncluttered , resonant gem that relays its universal points without lectures or confrontations 3 +4216 160 An uncluttered , resonant gem 4 +4217 160 uncluttered , resonant gem 3 +4218 160 uncluttered 3 +4219 160 , resonant gem 3 +4220 160 resonant gem 4 +4221 160 gem 3 +4222 160 that relays its universal points without lectures or confrontations 3 +4223 160 relays its universal points without lectures or confrontations 3 +4224 160 relays its universal points 2 +4225 160 relays 2 +4226 160 its universal points 2 +4227 160 universal points 2 +4228 160 universal 2 +4229 160 points 2 +4230 160 without lectures or confrontations 3 +4231 160 lectures or confrontations 2 +4232 160 lectures or 2 +4233 160 lectures 2 +4234 160 confrontations 1 +4235 161 The story alone could force you to scratch a hole in your head . 1 +4236 161 The story 2 +4237 161 alone could force you to scratch a hole in your head . 1 +4238 161 could force you to scratch a hole in your head . 0 +4239 161 could force you to scratch a hole in your head 0 +4240 161 force you to scratch a hole in your head 1 +4241 161 force 2 +4242 161 you to scratch a hole in your head 0 +4243 161 to scratch a hole in your head 2 +4244 161 scratch a hole in your head 1 +4245 161 scratch 2 +4246 161 a hole in your head 1 +4247 161 a hole 2 +4248 161 hole 2 +4249 161 in your head 2 +4250 161 your head 2 +4251 161 head 2 +4252 162 It 's the filmmakers ' post-camp comprehension of what made old-time B movies good-bad that makes Eight Legged Freaks a perfectly entertaining summer diversion . 3 +4253 162 's the filmmakers ' post-camp comprehension of what made old-time B movies good-bad that makes Eight Legged Freaks a perfectly entertaining summer diversion . 2 +4254 162 's the filmmakers ' post-camp comprehension of what made old-time B movies good-bad that makes Eight Legged Freaks a perfectly entertaining summer diversion 3 +4255 162 the filmmakers ' post-camp comprehension of what made old-time B movies good-bad that makes Eight Legged Freaks a perfectly entertaining summer diversion 3 +4256 162 the filmmakers ' post-camp comprehension 2 +4257 162 the filmmakers ' 2 +4258 162 filmmakers ' 2 +4259 162 post-camp comprehension 2 +4260 162 post-camp 2 +4261 162 of what made old-time B movies good-bad that makes Eight Legged Freaks a perfectly entertaining summer diversion 3 +4262 162 what made old-time B movies good-bad that makes Eight Legged Freaks a perfectly entertaining summer diversion 3 +4263 162 made old-time B movies good-bad that makes Eight Legged Freaks a perfectly entertaining summer diversion 2 +4264 162 old-time B movies good-bad that makes Eight Legged Freaks a perfectly entertaining summer diversion 3 +4265 162 old-time B movies 2 +4266 162 old-time 2 +4267 162 B movies 1 +4268 162 good-bad that makes Eight Legged Freaks a perfectly entertaining summer diversion 3 +4269 162 good-bad 2 +4270 162 that makes Eight Legged Freaks a perfectly entertaining summer diversion 3 +4271 162 makes Eight Legged Freaks a perfectly entertaining summer diversion 3 +4272 162 makes Eight Legged Freaks 2 +4273 162 a perfectly entertaining summer diversion 3 +4274 162 perfectly entertaining summer diversion 4 +4275 162 perfectly entertaining 3 +4276 162 perfectly 4 +4277 162 summer diversion 2 +4278 163 As any creature-feature fan knows , when you cross toxic chemicals with a bunch of exotic creatures , you get a lot of running around , screaming and death . 2 +4279 163 As any creature-feature fan knows , when you cross toxic chemicals with a bunch of exotic creatures 2 +4280 163 any creature-feature fan knows , when you cross toxic chemicals with a bunch of exotic creatures 2 +4281 163 any creature-feature fan 3 +4282 163 creature-feature fan 2 +4283 163 creature-feature 2 +4284 163 fan 3 +4285 163 knows , when you cross toxic chemicals with a bunch of exotic creatures 2 +4286 163 knows , 2 +4287 163 knows 2 +4288 163 when you cross toxic chemicals with a bunch of exotic creatures 2 +4289 163 you cross toxic chemicals with a bunch of exotic creatures 3 +4290 163 cross toxic chemicals with a bunch of exotic creatures 2 +4291 163 cross toxic chemicals 2 +4292 163 cross 2 +4293 163 toxic chemicals 2 +4294 163 toxic 1 +4295 163 chemicals 2 +4296 163 with a bunch of exotic creatures 2 +4297 163 a bunch of exotic creatures 2 +4298 163 a bunch 2 +4299 163 bunch 2 +4300 163 of exotic creatures 3 +4301 163 exotic creatures 3 +4302 163 exotic 2 +4303 163 creatures 2 +4304 163 , you get a lot of running around , screaming and death . 2 +4305 163 you get a lot of running around , screaming and death . 1 +4306 163 get a lot of running around , screaming and death . 2 +4307 163 get a lot of running around , screaming and death 2 +4308 163 a lot of running around , screaming and death 1 +4309 163 of running around , screaming and death 2 +4310 163 running around , screaming and death 2 +4311 163 running around , screaming and 2 +4312 163 running around , screaming 1 +4313 163 running around , 2 +4314 163 running around 2 +4315 163 running 2 +4316 163 around 2 +4317 163 screaming 2 +4318 163 death 2 +4319 164 You bet there is and it 's what makes this rather convoluted journey worth taking . 2 +4320 164 You bet there is and it 's what makes this rather convoluted journey worth taking 3 +4321 164 You bet there is and 2 +4322 164 You bet there is 2 +4323 164 bet there is 2 +4324 164 bet 2 +4325 164 there is 2 +4326 164 it 's what makes this rather convoluted journey worth taking 3 +4327 164 's what makes this rather convoluted journey worth taking 2 +4328 164 what makes this rather convoluted journey worth taking 2 +4329 164 makes this rather convoluted journey worth taking 4 +4330 164 this rather convoluted journey worth taking 3 +4331 164 this rather convoluted journey 1 +4332 164 rather convoluted journey 1 +4333 164 rather convoluted 1 +4334 164 convoluted 0 +4335 164 journey 2 +4336 164 worth taking 3 +4337 165 Before it takes a sudden turn and devolves into a bizarre sort of romantic comedy , Steven Shainberg 's adaptation of Mary Gaitskill 's harrowing short story ... is a brilliantly played , deeply unsettling experience . 3 +4338 165 Before it takes a sudden turn and devolves into a bizarre sort of romantic comedy 2 +4339 165 it takes a sudden turn and devolves into a bizarre sort of romantic comedy 1 +4340 165 takes a sudden turn and devolves into a bizarre sort of romantic comedy 2 +4341 165 takes a sudden turn and devolves 1 +4342 165 a sudden turn and devolves 1 +4343 165 sudden turn and devolves 2 +4344 165 turn and devolves 1 +4345 165 turn and 2 +4346 165 turn 2 +4347 165 devolves 1 +4348 165 into a bizarre sort of romantic comedy 2 +4349 165 a bizarre sort of romantic comedy 2 +4350 165 a bizarre sort 2 +4351 165 bizarre sort 2 +4352 165 bizarre 1 +4353 165 sort 2 +4354 165 of romantic comedy 2 +4355 165 , Steven Shainberg 's adaptation of Mary Gaitskill 's harrowing short story ... is a brilliantly played , deeply unsettling experience . 4 +4356 165 Steven Shainberg 's adaptation of Mary Gaitskill 's harrowing short story ... is a brilliantly played , deeply unsettling experience . 3 +4357 165 Steven Shainberg 's adaptation of Mary Gaitskill 's harrowing short story 2 +4358 165 Steven Shainberg 's adaptation 3 +4359 165 Steven Shainberg 's 2 +4360 165 Shainberg 's 2 +4361 165 Shainberg 2 +4362 165 adaptation 2 +4363 165 of Mary Gaitskill 's harrowing short story 2 +4364 165 Mary Gaitskill 's harrowing short story 2 +4365 165 Mary Gaitskill 's 2 +4366 165 Gaitskill 's 2 +4367 165 Gaitskill 2 +4368 165 harrowing short story 2 +4369 165 harrowing 2 +4370 165 short story 2 +4371 165 ... is a brilliantly played , deeply unsettling experience . 3 +4372 165 is a brilliantly played , deeply unsettling experience . 3 +4373 165 is a brilliantly played , deeply unsettling experience 4 +4374 165 a brilliantly played , deeply unsettling experience 4 +4375 165 brilliantly played , deeply unsettling experience 2 +4376 165 brilliantly played 4 +4377 165 brilliantly 4 +4378 165 played 2 +4379 165 , deeply unsettling experience 1 +4380 165 deeply unsettling experience 1 +4381 165 deeply unsettling 1 +4382 166 Kim Ki-Deok seems to have in mind an -LRB- emotionally at least -RRB- adolescent audience demanding regular shocks and bouts of barely defensible sexual violence to keep it interested . 1 +4383 166 Kim Ki-Deok 2 +4384 166 Kim 2 +4385 166 Ki-Deok 3 +4386 166 seems to have in mind an -LRB- emotionally at least -RRB- adolescent audience demanding regular shocks and bouts of barely defensible sexual violence to keep it interested . 1 +4387 166 seems to have in mind an -LRB- emotionally at least -RRB- adolescent audience demanding regular shocks and bouts of barely defensible sexual violence to keep it interested 1 +4388 166 to have in mind an -LRB- emotionally at least -RRB- adolescent audience demanding regular shocks and bouts of barely defensible sexual violence to keep it interested 2 +4389 166 have in mind an -LRB- emotionally at least -RRB- adolescent audience demanding regular shocks and bouts of barely defensible sexual violence to keep it interested 2 +4390 166 in mind an -LRB- emotionally at least -RRB- adolescent audience demanding regular shocks and bouts of barely defensible sexual violence to keep it interested 1 +4391 166 in mind 2 +4392 166 mind 2 +4393 166 an -LRB- emotionally at least -RRB- adolescent audience demanding regular shocks and bouts of barely defensible sexual violence to keep it interested 1 +4394 166 an -LRB- emotionally at least -RRB- adolescent audience 2 +4395 166 -LRB- emotionally at least -RRB- adolescent audience 2 +4396 166 -LRB- emotionally at least -RRB- 2 +4397 166 emotionally at least -RRB- 3 +4398 166 emotionally at least 2 +4399 166 emotionally 2 +4400 166 at least 2 +4401 166 least 1 +4402 166 adolescent audience 2 +4403 166 adolescent 2 +4404 166 audience 2 +4405 166 demanding regular shocks and bouts of barely defensible sexual violence to keep it interested 1 +4406 166 demanding 1 +4407 166 regular shocks and bouts of barely defensible sexual violence to keep it interested 2 +4408 166 regular shocks and bouts 2 +4409 166 regular 2 +4410 166 shocks and bouts 2 +4411 166 shocks and 2 +4412 166 shocks 2 +4413 166 bouts 2 +4414 166 of barely defensible sexual violence to keep it interested 1 +4415 166 barely defensible sexual violence to keep it interested 1 +4416 166 barely defensible sexual violence 1 +4417 166 defensible sexual violence 2 +4418 166 defensible 2 +4419 166 sexual violence 2 +4420 166 sexual 2 +4421 166 violence 0 +4422 166 to keep it interested 3 +4423 166 keep it interested 3 +4424 166 keep 2 +4425 166 it interested 2 +4426 167 Has no reason to exist , other than to employ Hollywood kids and people who owe favors to their famous parents . 0 +4427 167 Has no reason to exist 1 +4428 167 no reason to exist 1 +4429 167 reason to exist 2 +4430 167 to exist 2 +4431 167 exist 2 +4432 167 , other than to employ Hollywood kids and people who owe favors to their famous parents . 2 +4433 167 other than to employ Hollywood kids and people who owe favors to their famous parents . 1 +4434 167 other than to employ Hollywood kids and people who owe 2 +4435 167 than to employ Hollywood kids and people who owe 3 +4436 167 to employ Hollywood kids and people who owe 2 +4437 167 to employ Hollywood kids and 2 +4438 167 to employ Hollywood kids 2 +4439 167 employ Hollywood kids 2 +4440 167 employ 2 +4441 167 Hollywood kids 3 +4442 167 kids 2 +4443 167 people who owe 2 +4444 167 who owe 2 +4445 167 owe 2 +4446 167 favors to their famous parents . 2 +4447 167 favors to their famous parents 2 +4448 167 favors 2 +4449 167 to their famous parents 2 +4450 167 their famous parents 2 +4451 167 famous parents 2 +4452 167 famous 2 +4453 167 parents 2 +4454 168 A well-made but emotionally scattered film whose hero gives his heart only to the dog . 2 +4455 168 A well-made but emotionally scattered film whose hero gives his heart only to the dog 4 +4456 168 A well-made 4 +4457 168 well-made 4 +4458 168 but emotionally scattered film whose hero gives his heart only to the dog 2 +4459 168 emotionally scattered film whose hero gives his heart only to the dog 1 +4460 168 emotionally scattered film 1 +4461 168 emotionally scattered 2 +4462 168 scattered 1 +4463 168 whose hero gives his heart only to the dog 2 +4464 168 whose hero 2 +4465 168 whose 2 +4466 168 hero 3 +4467 168 gives his heart only to the dog 2 +4468 168 gives his heart only 2 +4469 168 gives his heart 3 +4470 168 his heart 3 +4471 168 to the dog 2 +4472 168 the dog 2 +4473 168 dog 3 +4474 169 Those who love Cinema Paradiso will find the new scenes interesting , but few will find the movie improved . 2 +4475 169 Those who love Cinema Paradiso will find the new scenes interesting , but few will find the movie 3 +4476 169 who love Cinema Paradiso will find the new scenes interesting , but few will find the movie 3 +4477 169 love Cinema Paradiso will find the new scenes interesting , but few will find the movie 2 +4478 169 Cinema Paradiso will find the new scenes interesting , but few will find the movie 2 +4479 169 Cinema Paradiso will find the new scenes interesting , but 3 +4480 169 Cinema Paradiso will find the new scenes interesting , 3 +4481 169 Cinema Paradiso will find the new scenes interesting 3 +4482 169 Cinema Paradiso 2 +4483 169 Cinema 2 +4484 169 Paradiso 2 +4485 169 will find the new scenes interesting 3 +4486 169 find the new scenes interesting 3 +4487 169 the new scenes interesting 3 +4488 169 the new scenes 2 +4489 169 new scenes 2 +4490 169 few will find the movie 1 +4491 169 will find the movie 3 +4492 169 find the movie 2 +4493 169 improved . 3 +4494 169 improved 3 +4495 170 Campanella gets the tone just right -- funny in the middle of sad in the middle of hopeful . 3 +4496 170 Campanella 2 +4497 170 gets the tone just right -- funny in the middle of sad in the middle of hopeful . 3 +4498 170 gets the tone just right -- funny in the middle of sad in the middle of hopeful 3 +4499 170 gets the tone just right -- 3 +4500 170 gets the tone just right 4 +4501 170 gets the tone 2 +4502 170 just right 4 +4503 170 funny in the middle of sad in the middle of hopeful 3 +4504 170 in the middle of sad in the middle of hopeful 2 +4505 170 the middle of sad in the middle of hopeful 2 +4506 170 the middle 2 +4507 170 middle 2 +4508 170 of sad in the middle of hopeful 2 +4509 170 sad in the middle of hopeful 2 +4510 170 sad 1 +4511 170 in the middle of hopeful 3 +4512 170 the middle of hopeful 2 +4513 170 of hopeful 3 +4514 170 hopeful 2 +4515 171 Nothing more than an amiable but unfocused bagatelle that plays like a loosely-connected string of acting-workshop exercises . 0 +4516 171 Nothing more than an amiable but unfocused bagatelle that plays like a loosely-connected string of acting-workshop exercises 1 +4517 171 more than an amiable but unfocused bagatelle that plays like a loosely-connected string of acting-workshop exercises 2 +4518 171 than an amiable but unfocused bagatelle that plays like a loosely-connected string of acting-workshop exercises 1 +4519 171 an amiable but unfocused bagatelle that plays like a loosely-connected string of acting-workshop exercises 2 +4520 171 an amiable but unfocused bagatelle 2 +4521 171 amiable but unfocused bagatelle 2 +4522 171 amiable but unfocused 1 +4523 171 amiable but 3 +4524 171 amiable 3 +4525 171 unfocused 0 +4526 171 bagatelle 2 +4527 171 that plays like a loosely-connected string of acting-workshop exercises 1 +4528 171 plays like a loosely-connected string of acting-workshop exercises 1 +4529 171 like a loosely-connected string of acting-workshop exercises 2 +4530 171 a loosely-connected string of acting-workshop exercises 2 +4531 171 a loosely-connected string 2 +4532 171 loosely-connected string 1 +4533 171 loosely-connected 2 +4534 171 string 3 +4535 171 of acting-workshop exercises 2 +4536 171 acting-workshop exercises 2 +4537 171 acting-workshop 2 +4538 171 exercises 2 +4539 172 It 's a sharp movie about otherwise dull subjects . 3 +4540 172 's a sharp movie about otherwise dull subjects . 3 +4541 172 's a sharp movie about otherwise dull subjects 3 +4542 172 a sharp movie about otherwise dull subjects 3 +4543 172 a sharp movie 3 +4544 172 sharp movie 3 +4545 172 sharp 3 +4546 172 about otherwise dull subjects 1 +4547 172 otherwise dull subjects 1 +4548 172 otherwise dull 1 +4549 172 dull 0 +4550 173 Wallace gets a bit heavy handed with his message at times , and has a visual flair that waxes poetic far too much for our taste . 2 +4551 173 Wallace 2 +4552 173 gets a bit heavy handed with his message at times , and has a visual flair that waxes poetic far too much for our taste . 1 +4553 173 gets a bit heavy handed with his message at times , and has a visual flair that waxes poetic far too much for our taste 1 +4554 173 gets a bit heavy handed with his message at times , and 1 +4555 173 gets a bit heavy handed with his message at times , 2 +4556 173 gets a bit heavy handed with his message at times 1 +4557 173 a bit heavy handed with his message at times 1 +4558 173 a bit 2 +4559 173 bit 2 +4560 173 heavy handed with his message at times 2 +4561 173 heavy 2 +4562 173 handed with his message at times 2 +4563 173 handed 2 +4564 173 with his message at times 2 +4565 173 his message at times 2 +4566 173 his message 2 +4567 173 message 2 +4568 173 at times 2 +4569 173 has a visual flair that waxes poetic far too much for our taste 1 +4570 173 a visual flair that waxes poetic far too much for our taste 1 +4571 173 a visual flair 2 +4572 173 visual flair 3 +4573 173 flair 2 +4574 173 that waxes poetic far too much for our taste 1 +4575 173 waxes poetic far too much for our taste 1 +4576 173 waxes poetic 2 +4577 173 waxes 2 +4578 173 poetic 3 +4579 173 far too much for our taste 1 +4580 173 far too much 1 +4581 173 too much 1 +4582 173 for our taste 2 +4583 173 our taste 2 +4584 173 taste 2 +4585 174 Charming and funny -LRB- but ultimately silly -RRB- movie . 2 +4586 174 Charming and funny -LRB- but ultimately silly -RRB- movie 4 +4587 174 Charming and 3 +4588 174 Charming 4 +4589 174 funny -LRB- but ultimately silly -RRB- movie 2 +4590 174 -LRB- but ultimately silly -RRB- movie 2 +4591 174 -LRB- but ultimately silly -RRB- 1 +4592 174 -LRB- but ultimately silly 1 +4593 174 -LRB- but 2 +4594 174 ultimately silly 2 +4595 175 ... the one thing this Wild film has that other Imax films do n't : chimps , lots of chimps , all blown up to the size of a house . 2 +4596 175 the one thing this Wild film has that other Imax films do n't : chimps , lots of chimps , all blown up to the size of a house . 3 +4597 175 the one thing this Wild film 2 +4598 175 the one thing 2 +4599 175 one thing 2 +4600 175 thing 2 +4601 175 this Wild film 3 +4602 175 Wild film 3 +4603 175 has that other Imax films do n't : chimps , lots of chimps , all blown up to the size of a house . 1 +4604 175 has that other Imax films do n't : chimps , lots of chimps , all blown up to the size of a house 2 +4605 175 that other Imax films do n't : chimps , lots of chimps , all blown up to the size of a house 1 +4606 175 that other Imax films do n't 2 +4607 175 other Imax films do n't 2 +4608 175 other Imax films 2 +4609 175 Imax films 2 +4610 175 : chimps , lots of chimps , all blown up to the size of a house 2 +4611 175 chimps , lots of chimps , all blown up to the size of a house 2 +4612 175 chimps , 2 +4613 175 chimps 2 +4614 175 lots of chimps , all blown up to the size of a house 2 +4615 175 lots 2 +4616 175 of chimps , all blown up to the size of a house 2 +4617 175 chimps , all blown up to the size of a house 2 +4618 175 all blown up to the size of a house 1 +4619 175 blown up to the size of a house 3 +4620 175 blown up 2 +4621 175 blown 1 +4622 175 to the size of a house 2 +4623 175 the size of a house 2 +4624 175 the size 2 +4625 175 size 2 +4626 175 of a house 2 +4627 175 a house 2 +4628 176 Starts out mediocre , spirals downward , and thuds to the bottom of the pool with an utterly incompetent conclusion . 0 +4629 176 Starts out mediocre , 2 +4630 176 Starts out mediocre 2 +4631 176 Starts 2 +4632 176 out mediocre 1 +4633 176 spirals downward , and thuds to the bottom of the pool with an utterly incompetent conclusion . 0 +4634 176 spirals downward , and thuds to the bottom of the pool with an utterly incompetent conclusion 1 +4635 176 spirals downward , and 1 +4636 176 spirals downward , 1 +4637 176 spirals downward 1 +4638 176 spirals 2 +4639 176 downward 1 +4640 176 thuds to the bottom of the pool with an utterly incompetent conclusion 2 +4641 176 thuds 1 +4642 176 to the bottom of the pool with an utterly incompetent conclusion 2 +4643 176 the bottom of the pool with an utterly incompetent conclusion 1 +4644 176 of the pool with an utterly incompetent conclusion 0 +4645 176 the pool with an utterly incompetent conclusion 0 +4646 176 the pool 2 +4647 176 with an utterly incompetent conclusion 0 +4648 176 an utterly incompetent conclusion 0 +4649 176 utterly incompetent conclusion 0 +4650 176 utterly incompetent 0 +4651 176 utterly 2 +4652 176 incompetent 1 +4653 176 conclusion 2 +4654 177 This is a children 's film in the truest sense . 3 +4655 177 is a children 's film in the truest sense . 3 +4656 177 is a children 's film in the truest sense 4 +4657 177 a children 's film in the truest sense 3 +4658 177 a children 's film 2 +4659 177 a children 's 2 +4660 177 children 's 2 +4661 177 children 3 +4662 177 in the truest sense 3 +4663 177 the truest sense 2 +4664 177 truest sense 3 +4665 177 truest 2 +4666 178 Horrendously amateurish filmmaking that is plainly dull and visually ugly when it is n't incomprehensible . 0 +4667 178 Horrendously amateurish 2 +4668 178 Horrendously 1 +4669 178 amateurish 1 +4670 178 filmmaking that is plainly dull and visually ugly when it is n't incomprehensible . 0 +4671 178 filmmaking that is plainly dull and visually ugly when it is n't incomprehensible 0 +4672 178 that is plainly dull and visually ugly when it is n't incomprehensible 1 +4673 178 is plainly dull and visually ugly when it is n't incomprehensible 0 +4674 178 is plainly dull and visually ugly 1 +4675 178 plainly dull and visually ugly 0 +4676 178 plainly dull and 2 +4677 178 plainly dull 1 +4678 178 plainly 2 +4679 178 visually ugly 1 +4680 178 when it is n't incomprehensible 1 +4681 178 it is n't incomprehensible 2 +4682 178 is n't incomprehensible 2 +4683 178 incomprehensible 1 +4684 179 Beautifully crafted , engaging filmmaking that should attract upscale audiences hungry for quality and a nostalgic , twisty yarn that will keep them guessing . 4 +4685 179 Beautifully 4 +4686 179 crafted , engaging filmmaking that should attract upscale audiences hungry for quality and a nostalgic , twisty yarn that will keep them guessing . 4 +4687 179 crafted , engaging filmmaking that should attract upscale audiences hungry for quality and a nostalgic , twisty yarn that will keep them guessing 3 +4688 179 crafted , 3 +4689 179 crafted 3 +4690 179 engaging filmmaking that should attract upscale audiences hungry for quality and a nostalgic , twisty yarn that will keep them guessing 4 +4691 179 filmmaking that should attract upscale audiences hungry for quality and a nostalgic , twisty yarn that will keep them guessing 4 +4692 179 that should attract upscale audiences hungry for quality and a nostalgic , twisty yarn that will keep them guessing 3 +4693 179 should attract upscale audiences hungry for quality and a nostalgic , twisty yarn that will keep them guessing 4 +4694 179 attract upscale audiences hungry for quality and a nostalgic , twisty yarn that will keep them guessing 3 +4695 179 attract 2 +4696 179 upscale audiences hungry for quality and a nostalgic , twisty yarn that will keep them guessing 3 +4697 179 upscale audiences 2 +4698 179 upscale 3 +4699 179 audiences 2 +4700 179 hungry for quality and a nostalgic , twisty yarn that will keep them guessing 3 +4701 179 hungry 2 +4702 179 for quality and a nostalgic , twisty yarn that will keep them guessing 3 +4703 179 quality and a nostalgic , twisty yarn that will keep them guessing 4 +4704 179 quality and 2 +4705 179 quality 3 +4706 179 a nostalgic , twisty yarn that will keep them guessing 3 +4707 179 a nostalgic , twisty yarn 2 +4708 179 nostalgic , twisty yarn 3 +4709 179 nostalgic 3 +4710 179 , twisty yarn 3 +4711 179 twisty yarn 2 +4712 179 twisty 2 +4713 179 yarn 2 +4714 179 that will keep them guessing 3 +4715 179 will keep them guessing 2 +4716 179 keep them guessing 3 +4717 179 them guessing 2 +4718 179 guessing 2 +4719 180 An awkwardly contrived exercise in magic realism . 1 +4720 180 An awkwardly contrived exercise in magic realism 0 +4721 180 An awkwardly contrived exercise 1 +4722 180 awkwardly contrived exercise 1 +4723 180 awkwardly 2 +4724 180 contrived exercise 2 +4725 180 in magic realism 2 +4726 180 magic realism 2 +4727 180 magic 2 +4728 180 realism 2 +4729 181 The punch lines that miss , unfortunately , outnumber the hits by three-to-one . 1 +4730 181 The punch lines that miss 1 +4731 181 The punch lines 3 +4732 181 punch lines 2 +4733 181 punch 2 +4734 181 lines 2 +4735 181 that miss 1 +4736 181 miss 1 +4737 181 , unfortunately , outnumber the hits by three-to-one . 2 +4738 181 unfortunately , outnumber the hits by three-to-one . 1 +4739 181 unfortunately 1 +4740 181 , outnumber the hits by three-to-one . 2 +4741 181 outnumber the hits by three-to-one . 1 +4742 181 outnumber the hits by three-to-one 2 +4743 181 outnumber the hits 2 +4744 181 outnumber 2 +4745 181 the hits 2 +4746 181 hits 2 +4747 181 by three-to-one 2 +4748 181 three-to-one 2 +4749 182 Like Smoke Signals , the film is also imbued with strong themes of familial ties and spirituality that are powerful and moving without stooping to base melodrama 3 +4750 182 Like Smoke Signals 2 +4751 182 Smoke Signals 3 +4752 182 Smoke 2 +4753 182 Signals 2 +4754 182 , the film is also imbued with strong themes of familial ties and spirituality that are powerful and moving without stooping to base melodrama 3 +4755 182 the film is also imbued with strong themes of familial ties and spirituality that are powerful and moving without stooping to base melodrama 4 +4756 182 is also imbued with strong themes of familial ties and spirituality that are powerful and moving without stooping to base melodrama 3 +4757 182 imbued with strong themes of familial ties and spirituality that are powerful and moving without stooping to base melodrama 3 +4758 182 imbued 2 +4759 182 with strong themes of familial ties and spirituality that are powerful and moving without stooping to base melodrama 4 +4760 182 strong themes of familial ties and spirituality that are powerful and moving without stooping to base melodrama 3 +4761 182 strong themes of familial ties and 3 +4762 182 strong themes of familial ties 3 +4763 182 strong themes 3 +4764 182 themes 2 +4765 182 of familial ties 2 +4766 182 familial ties 2 +4767 182 familial 3 +4768 182 spirituality that are powerful and moving without stooping to base melodrama 4 +4769 182 spirituality 2 +4770 182 that are powerful and moving without stooping to base melodrama 3 +4771 182 are powerful and moving without stooping to base melodrama 4 +4772 182 powerful and moving without stooping to base melodrama 3 +4773 182 powerful and moving 4 +4774 182 powerful and 3 +4775 182 moving 3 +4776 182 without stooping to base melodrama 2 +4777 182 stooping to base melodrama 1 +4778 182 stooping 1 +4779 182 to base melodrama 2 +4780 182 base melodrama 2 +4781 182 base 2 +4782 182 melodrama 2 +4783 183 Evokes the style and flash of the double-cross that made Mamet 's `` House of Games '' and last fall 's `` Heist '' so much fun . 3 +4784 183 Evokes the style and flash of the double-cross that made Mamet 's `` House of Games '' and last fall 's `` Heist '' so much fun 4 +4785 183 Evokes 3 +4786 183 the style and flash of the double-cross that made Mamet 's `` House of Games '' and last fall 's `` Heist '' so much fun 4 +4787 183 the style and flash 2 +4788 183 style and flash 3 +4789 183 style and 3 +4790 183 style 2 +4791 183 flash 2 +4792 183 of the double-cross that made Mamet 's `` House of Games '' and last fall 's `` Heist '' so much fun 4 +4793 183 the double-cross that made Mamet 's `` House of Games '' and last fall 's `` Heist '' so much fun 3 +4794 183 the double-cross 2 +4795 183 double-cross 2 +4796 183 that made Mamet 's `` House of Games '' and last fall 's `` Heist '' so much fun 4 +4797 183 made Mamet 's `` House of Games '' and last fall 's `` Heist '' so much fun 3 +4798 183 Mamet 's `` House of Games '' and last fall 's `` Heist '' so much fun 4 +4799 183 Mamet 's `` House of Games '' and last fall 's `` Heist '' 2 +4800 183 Mamet 's `` House of Games '' and 2 +4801 183 Mamet 's `` House of Games '' 2 +4802 183 `` House of Games '' 2 +4803 183 House of Games '' 2 +4804 183 House of Games 2 +4805 183 of Games 2 +4806 183 last fall 's `` Heist '' 2 +4807 183 last fall 's 2 +4808 183 fall 's 3 +4809 183 `` Heist '' 2 +4810 183 Heist '' 2 +4811 183 Heist 2 +4812 183 so much fun 4 +4813 184 The film aims to be funny , uplifting and moving , sometimes all at once . 3 +4814 184 aims to be funny , uplifting and moving , sometimes all at once . 4 +4815 184 aims to be funny , uplifting and moving , sometimes all at once 3 +4816 184 aims to be funny , uplifting and moving , sometimes 3 +4817 184 to be funny , uplifting and moving , sometimes 3 +4818 184 be funny , uplifting and moving , sometimes 3 +4819 184 be funny , uplifting and moving , 3 +4820 184 be funny , uplifting and moving 3 +4821 184 funny , uplifting and moving 4 +4822 184 , uplifting and moving 4 +4823 184 uplifting and moving 4 +4824 184 uplifting and 3 +4825 184 uplifting 3 +4826 184 all at once 2 +4827 184 at once 2 +4828 185 At a brief 42 minutes , we need more X and less blab . 2 +4829 185 At a brief 42 minutes 2 +4830 185 a brief 42 minutes 2 +4831 185 brief 42 minutes 2 +4832 185 brief 2 +4833 185 42 minutes 2 +4834 185 42 2 +4835 185 , we need more X and less blab . 1 +4836 185 we need more X and less blab . 2 +4837 185 need more X and less blab . 1 +4838 185 need more X and less blab 1 +4839 185 need 2 +4840 185 more X and less blab 2 +4841 185 more X and 2 +4842 185 more X 3 +4843 185 X 2 +4844 185 less blab 1 +4845 185 blab 1 +4846 186 The Spalding Gray equivalent of a teen gross-out comedy . 2 +4847 186 The Spalding Gray equivalent of a teen gross-out comedy 1 +4848 186 The Spalding Gray equivalent 2 +4849 186 Spalding Gray equivalent 2 +4850 186 Spalding 2 +4851 186 Gray equivalent 2 +4852 186 Gray 2 +4853 186 of a teen gross-out comedy 2 +4854 186 a teen gross-out comedy 2 +4855 186 teen gross-out comedy 2 +4856 186 teen 2 +4857 186 gross-out comedy 2 +4858 186 gross-out 2 +4859 187 There 's a great deal of corny dialogue and preposterous moments . 1 +4860 187 's a great deal of corny dialogue and preposterous moments . 2 +4861 187 's a great deal of corny dialogue and preposterous moments 0 +4862 187 a great deal of corny dialogue and preposterous moments 1 +4863 187 a great deal 3 +4864 187 great deal 3 +4865 187 deal 2 +4866 187 of corny dialogue and preposterous moments 0 +4867 187 corny dialogue and preposterous moments 0 +4868 187 dialogue and preposterous moments 1 +4869 187 and preposterous moments 2 +4870 187 preposterous moments 1 +4871 187 preposterous 0 +4872 188 Uneven but a lot of fun . 3 +4873 188 Uneven but a lot of fun 3 +4874 188 Uneven but a lot 2 +4875 188 Uneven 1 +4876 188 but a lot 2 +4877 188 of fun 3 +4878 189 The result might look like Vulgar . 2 +4879 189 The result 2 +4880 189 result 2 +4881 189 might look like Vulgar . 1 +4882 189 might look like Vulgar 2 +4883 189 look like Vulgar 2 +4884 189 like Vulgar 2 +4885 190 The film rehashes several old themes and is capped with pointless extremes -- it 's insanely violent and very graphic . 0 +4886 190 The film rehashes several old themes and is capped with pointless extremes -- it 's insanely violent and very graphic 1 +4887 190 The film rehashes several old themes and is capped with pointless extremes -- 1 +4888 190 The film rehashes several old themes and is capped with pointless extremes 1 +4889 190 rehashes several old themes and is capped with pointless extremes 1 +4890 190 rehashes several old themes and 2 +4891 190 rehashes several old themes 1 +4892 190 rehashes 1 +4893 190 several old themes 1 +4894 190 several 2 +4895 190 old themes 2 +4896 190 old 2 +4897 190 is capped with pointless extremes 0 +4898 190 capped with pointless extremes 0 +4899 190 capped 2 +4900 190 with pointless extremes 0 +4901 190 pointless extremes 1 +4902 190 pointless 0 +4903 190 extremes 2 +4904 190 it 's insanely violent and very graphic 3 +4905 190 's insanely violent and very graphic 1 +4906 190 insanely violent and very graphic 1 +4907 190 insanely violent and 2 +4908 190 insanely violent 1 +4909 190 insanely 2 +4910 190 very graphic 2 +4911 190 graphic 2 +4912 191 The dragons are the real stars of Reign of Fire and you wo n't be disappointed . 3 +4913 191 The dragons are the real stars of Reign of Fire and you wo n't be disappointed 3 +4914 191 The dragons are the real stars of Reign of Fire and 3 +4915 191 The dragons are the real stars of Reign of Fire 2 +4916 191 The dragons 2 +4917 191 dragons 1 +4918 191 are the real stars of Reign of Fire 2 +4919 191 the real stars of Reign of Fire 2 +4920 191 the real stars 2 +4921 191 real stars 3 +4922 191 real 3 +4923 191 of Reign of Fire 2 +4924 191 Reign of Fire 2 +4925 191 Reign 3 +4926 191 of Fire 2 +4927 191 Fire 1 +4928 191 you wo n't be disappointed 4 +4929 191 wo n't be disappointed 3 +4930 191 wo n't 2 +4931 191 wo 2 +4932 191 be disappointed 0 +4933 191 disappointed 1 +4934 192 It never plays as dramatic even when dramatic things happen to people . 1 +4935 192 never plays as dramatic even when dramatic things happen to people . 0 +4936 192 plays as dramatic even when dramatic things happen to people . 2 +4937 192 plays as dramatic even when dramatic things happen to people 2 +4938 192 plays as dramatic 3 +4939 192 as dramatic 2 +4940 192 dramatic 3 +4941 192 even when dramatic things happen to people 2 +4942 192 when dramatic things happen to people 2 +4943 192 dramatic things happen to people 1 +4944 192 dramatic things 2 +4945 192 happen to people 2 +4946 192 happen 2 +4947 192 to people 2 +4948 193 Manages to please its intended audience -- children -- without placing their parents in a coma-like state . 3 +4949 193 Manages 2 +4950 193 to please its intended audience -- children -- without placing their parents in a coma-like state . 3 +4951 193 to please its intended audience -- children -- without placing their parents in a coma-like state 3 +4952 193 please its intended audience -- children -- without placing their parents in a coma-like state 2 +4953 193 please its intended audience -- children -- 2 +4954 193 its intended audience -- children -- 3 +4955 193 its intended audience 2 +4956 193 intended audience 2 +4957 193 intended 2 +4958 193 -- children -- 2 +4959 193 children -- 2 +4960 193 without placing their parents in a coma-like state 3 +4961 193 placing their parents in a coma-like state 2 +4962 193 placing their parents 3 +4963 193 placing 2 +4964 193 their parents 2 +4965 193 in a coma-like state 2 +4966 193 a coma-like state 1 +4967 193 coma-like state 1 +4968 193 coma-like 2 +4969 193 state 2 +4970 194 The movie generates plot points with a degree of randomness usually achieved only by lottery drawing . 1 +4971 194 generates plot points with a degree of randomness usually achieved only by lottery drawing . 0 +4972 194 generates plot points with a degree of randomness usually achieved only by lottery drawing 2 +4973 194 generates plot points 3 +4974 194 generates 2 +4975 194 plot points 2 +4976 194 with a degree of randomness usually achieved only by lottery drawing 1 +4977 194 a degree of randomness usually achieved only by lottery drawing 1 +4978 194 a degree 2 +4979 194 degree 2 +4980 194 of randomness usually achieved only by lottery drawing 1 +4981 194 randomness usually achieved only by lottery drawing 1 +4982 194 randomness 2 +4983 194 usually achieved only by lottery drawing 2 +4984 194 achieved only by lottery drawing 2 +4985 194 achieved only 2 +4986 194 achieved 3 +4987 194 by lottery drawing 2 +4988 194 lottery drawing 2 +4989 194 lottery 2 +4990 194 drawing 2 +4991 195 Though the film never veers from its comic course , its unintentional parallels might inadvertently evoke memories and emotions which are anything but humorous . 2 +4992 195 Though the film never veers from its comic course 2 +4993 195 the film never veers from its comic course 3 +4994 195 never veers from its comic course 3 +4995 195 veers from its comic course 1 +4996 195 veers 1 +4997 195 from its comic course 3 +4998 195 its comic course 3 +4999 195 comic course 2 +5000 195 course 2 +5001 195 , its unintentional parallels might inadvertently evoke memories and emotions which are anything but humorous . 1 +5002 195 its unintentional parallels might inadvertently evoke memories and emotions which are anything but humorous . 1 +5003 195 its unintentional parallels 2 +5004 195 unintentional parallels 2 +5005 195 unintentional 2 +5006 195 parallels 2 +5007 195 might inadvertently evoke memories and emotions which are anything but humorous . 2 +5008 195 might inadvertently evoke memories and emotions which are anything but humorous 2 +5009 195 might inadvertently evoke memories and emotions which are anything but 1 +5010 195 might inadvertently evoke memories and emotions which are anything 2 +5011 195 might inadvertently 2 +5012 195 inadvertently 2 +5013 195 evoke memories and emotions which are anything 3 +5014 195 evoke 2 +5015 195 memories and emotions which are anything 2 +5016 195 memories and emotions 2 +5017 195 memories and 2 +5018 195 memories 2 +5019 195 which are anything 2 +5020 195 are anything 2 +5021 195 humorous 3 +5022 196 The film can depress you about life itself . 1 +5023 196 can depress you about life itself . 1 +5024 196 can depress you about life itself 0 +5025 196 depress you about life itself 1 +5026 196 depress you 0 +5027 196 depress 1 +5028 196 about life itself 2 +5029 196 life itself 2 +5030 197 If you saw it on TV , you 'd probably turn it off , convinced that you had already seen that movie . 1 +5031 197 If you saw it on TV 2 +5032 197 you saw it on TV 2 +5033 197 saw it on TV 2 +5034 197 saw it 2 +5035 197 saw 2 +5036 197 on TV 2 +5037 197 TV 3 +5038 197 , you 'd probably turn it off , convinced that you had already seen that movie . 1 +5039 197 you 'd probably turn it off , convinced that you had already seen that movie . 1 +5040 197 'd probably turn it off , convinced that you had already seen that movie . 1 +5041 197 'd probably turn it off , convinced that you had already seen that movie 1 +5042 197 'd probably turn it off , convinced 2 +5043 197 'd probably turn it off , 1 +5044 197 'd probably turn it off 1 +5045 197 'd probably 2 +5046 197 turn it off 1 +5047 197 turn it 2 +5048 197 convinced 3 +5049 197 that you had already seen that movie 1 +5050 197 you had already seen that movie 1 +5051 197 had already seen that movie 2 +5052 197 had already 2 +5053 197 already 2 +5054 197 seen that movie 2 +5055 197 that movie 2 +5056 198 You get the impression that writer and director Burr Steers knows the territory ... but his sense of humor has yet to lose the smug self-satisfaction usually associated with the better private schools . 1 +5057 198 You get the impression that writer and director Burr Steers knows the territory ... but his sense of humor has yet to lose the smug self-satisfaction usually associated with the better private schools 2 +5058 198 You get the impression that writer and director Burr Steers knows the territory ... but 2 +5059 198 You get the impression that writer and director Burr Steers knows the territory ... 3 +5060 198 You get the impression that writer and director Burr Steers knows the territory 2 +5061 198 get the impression that writer and director Burr Steers knows the territory 3 +5062 198 get the impression 2 +5063 198 the impression 2 +5064 198 impression 3 +5065 198 that writer and director Burr Steers knows the territory 3 +5066 198 writer and director Burr Steers knows the territory 3 +5067 198 writer and director Burr Steers 2 +5068 198 writer and 2 +5069 198 director Burr Steers 2 +5070 198 knows the territory 2 +5071 198 the territory 2 +5072 198 territory 2 +5073 198 his sense of humor has yet to lose the smug self-satisfaction usually associated with the better private schools 2 +5074 198 his sense of humor 2 +5075 198 his sense 2 +5076 198 of humor 2 +5077 198 humor 4 +5078 198 has yet to lose the smug self-satisfaction usually associated with the better private schools 2 +5079 198 has yet 2 +5080 198 to lose the smug self-satisfaction usually associated with the better private schools 1 +5081 198 lose the smug self-satisfaction usually associated with the better private schools 2 +5082 198 lose 1 +5083 198 the smug self-satisfaction usually associated with the better private schools 1 +5084 198 the smug self-satisfaction 1 +5085 198 smug self-satisfaction 0 +5086 198 smug 1 +5087 198 self-satisfaction 2 +5088 198 usually associated with the better private schools 2 +5089 198 associated with the better private schools 2 +5090 198 associated 2 +5091 198 with the better private schools 2 +5092 198 the better private schools 2 +5093 198 better private schools 2 +5094 198 private schools 2 +5095 198 private 2 +5096 198 schools 2 +5097 199 This is a superior horror flick . 4 +5098 199 is a superior horror flick . 4 +5099 199 is a superior horror flick 4 +5100 199 a superior horror flick 3 +5101 199 superior horror flick 4 +5102 199 superior 3 +5103 199 horror flick 2 +5104 200 The movie 's heavy-handed screenplay navigates a fast fade into pomposity and pretentiousness . 2 +5105 200 The movie 's heavy-handed screenplay 1 +5106 200 heavy-handed screenplay 2 +5107 200 heavy-handed 1 +5108 200 navigates a fast fade into pomposity and pretentiousness . 1 +5109 200 navigates a fast fade into pomposity and pretentiousness 1 +5110 200 navigates a fast fade 2 +5111 200 navigates 2 +5112 200 a fast fade 1 +5113 200 fast fade 1 +5114 200 fast 2 +5115 200 fade 2 +5116 200 into pomposity and pretentiousness 1 +5117 200 pomposity and pretentiousness 0 +5118 200 pomposity and 3 +5119 200 pomposity 1 +5120 200 pretentiousness 1 +5121 201 A little weak -- and it is n't that funny . 1 +5122 201 A little weak 1 +5123 201 A little 2 +5124 201 weak 1 +5125 201 -- and it is n't that funny . 1 +5126 201 and it is n't that funny . 1 +5127 201 and it is n't that funny 1 +5128 201 it is n't that funny 1 +5129 201 is n't that funny 1 +5130 201 that funny 2 +5131 202 But they do n't fit well together and neither is well told . 1 +5132 202 they do n't fit well together and neither is well told . 1 +5133 202 they do n't fit well together and neither is well told 1 +5134 202 they do n't fit well together and 1 +5135 202 they do n't fit well together 1 +5136 202 do n't fit well together 1 +5137 202 fit well together 3 +5138 202 well together 3 +5139 202 together 2 +5140 202 neither is well told 1 +5141 202 is well told 4 +5142 202 is well 3 +5143 202 told 2 +5144 203 Being latently gay and liking to read are hardly enough . 2 +5145 203 Being latently gay and liking to read 2 +5146 203 Being latently gay and 2 +5147 203 Being latently gay 1 +5148 203 latently gay 1 +5149 203 latently 2 +5150 203 liking to read 2 +5151 203 liking 3 +5152 203 to read 2 +5153 203 read 2 +5154 203 are hardly enough . 1 +5155 203 are hardly enough 1 +5156 203 hardly enough 1 +5157 203 hardly 2 +5158 203 enough 2 +5159 204 More sophisticated and literate than such pictures usually are ... an amusing little catch . 3 +5160 204 More sophisticated and literate than such pictures usually are ... an amusing little catch 3 +5161 204 More sophisticated and literate than such pictures usually are ... 4 +5162 204 More sophisticated and literate than such pictures usually are 3 +5163 204 More sophisticated and literate than such pictures 3 +5164 204 More sophisticated and literate than 2 +5165 204 More sophisticated and 3 +5166 204 More sophisticated 2 +5167 204 sophisticated 3 +5168 204 literate than 2 +5169 204 literate 4 +5170 204 such pictures 2 +5171 204 such 2 +5172 204 pictures 2 +5173 204 usually are 2 +5174 204 an amusing little catch 3 +5175 204 amusing little catch 2 +5176 204 little catch 3 +5177 204 catch 2 +5178 205 Storytelling feels slight . 1 +5179 205 feels slight . 2 +5180 205 feels slight 2 +5181 205 slight 2 +5182 206 Monte Cristo smartly emphasizes the well-wrought story and omits needless chase scenes and swordfights as the revenge unfolds . 4 +5183 206 Monte Cristo 2 +5184 206 Monte 2 +5185 206 Cristo 2 +5186 206 smartly emphasizes the well-wrought story and omits needless chase scenes and swordfights as the revenge unfolds . 3 +5187 206 smartly 3 +5188 206 emphasizes the well-wrought story and omits needless chase scenes and swordfights as the revenge unfolds . 4 +5189 206 emphasizes the well-wrought story and omits needless chase scenes and swordfights as the revenge unfolds 4 +5190 206 emphasizes the well-wrought story and 3 +5191 206 emphasizes the well-wrought story 3 +5192 206 the well-wrought story 4 +5193 206 well-wrought story 4 +5194 206 well-wrought 3 +5195 206 omits needless chase scenes and swordfights as the revenge unfolds 2 +5196 206 omits 1 +5197 206 needless chase scenes and swordfights as the revenge unfolds 1 +5198 206 needless 1 +5199 206 chase scenes and swordfights as the revenge unfolds 2 +5200 206 chase scenes and swordfights 2 +5201 206 chase 2 +5202 206 scenes and swordfights 2 +5203 206 scenes and 2 +5204 206 swordfights 2 +5205 206 as the revenge unfolds 2 +5206 206 the revenge unfolds 2 +5207 206 the revenge 2 +5208 206 revenge 2 +5209 206 unfolds 2 +5210 207 It 's a fairy tale that comes from a renowned Indian film culture that allows Americans to finally revel in its splendor . 4 +5211 207 's a fairy tale that comes from a renowned Indian film culture that allows Americans to finally revel in its splendor . 4 +5212 207 's a fairy tale that comes from a renowned Indian film culture that allows Americans to finally revel in its splendor 4 +5213 207 a fairy tale that comes from a renowned Indian film culture that allows Americans to finally revel in its splendor 4 +5214 207 a fairy tale 3 +5215 207 fairy tale 2 +5216 207 fairy 2 +5217 207 tale 2 +5218 207 that comes from a renowned Indian film culture that allows Americans to finally revel in its splendor 2 +5219 207 comes from a renowned Indian film culture that allows Americans to finally revel in its splendor 3 +5220 207 from a renowned Indian film culture that allows Americans to finally revel in its splendor 4 +5221 207 a renowned Indian film culture that allows Americans to finally revel in its splendor 3 +5222 207 a renowned Indian film culture 3 +5223 207 renowned Indian film culture 2 +5224 207 renowned 3 +5225 207 Indian film culture 2 +5226 207 Indian 2 +5227 207 film culture 2 +5228 207 that allows Americans to finally revel in its splendor 3 +5229 207 allows Americans to finally revel in its splendor 3 +5230 207 allows 2 +5231 207 Americans to finally revel in its splendor 3 +5232 207 Americans 3 +5233 207 to finally revel in its splendor 3 +5234 207 finally revel in its splendor 3 +5235 207 revel in its splendor 3 +5236 207 revel 2 +5237 207 in its splendor 3 +5238 207 its splendor 4 +5239 207 splendor 3 +5240 208 Well-done supernatural thriller with keen insights into parapsychological phenomena and the soulful nuances of the grieving process . 3 +5241 208 Well-done supernatural thriller with keen insights into parapsychological phenomena and the soulful nuances of the grieving process 3 +5242 208 Well-done supernatural thriller with keen insights into parapsychological phenomena and the soulful nuances 4 +5243 208 Well-done supernatural thriller with keen insights 3 +5244 208 Well-done supernatural thriller 4 +5245 208 Well-done 3 +5246 208 supernatural thriller 3 +5247 208 supernatural 2 +5248 208 with keen insights 2 +5249 208 keen insights 3 +5250 208 keen 3 +5251 208 insights 2 +5252 208 into parapsychological phenomena and the soulful nuances 3 +5253 208 parapsychological phenomena and the soulful nuances 3 +5254 208 parapsychological phenomena and 2 +5255 208 parapsychological phenomena 2 +5256 208 parapsychological 3 +5257 208 phenomena 2 +5258 208 the soulful nuances 3 +5259 208 soulful nuances 3 +5260 208 soulful 3 +5261 208 nuances 3 +5262 208 of the grieving process 1 +5263 208 the grieving process 1 +5264 208 grieving process 2 +5265 208 grieving 2 +5266 208 process 2 +5267 209 ... only Bond can save us from the latest eccentric , super-wealthy megalomaniac bent on world domination and destruction . 2 +5268 209 only Bond can save us from the latest eccentric , super-wealthy megalomaniac bent on world domination and destruction . 2 +5269 209 only Bond 2 +5270 209 Bond 2 +5271 209 can save us from the latest eccentric , super-wealthy megalomaniac bent on world domination and destruction . 2 +5272 209 can save us from the latest eccentric , super-wealthy megalomaniac bent on world domination and destruction 2 +5273 209 save us from the latest eccentric , super-wealthy megalomaniac bent on world domination and destruction 2 +5274 209 save us 2 +5275 209 save 2 +5276 209 from the latest eccentric , super-wealthy megalomaniac bent on world domination and destruction 1 +5277 209 the latest eccentric , super-wealthy megalomaniac bent on world domination and destruction 2 +5278 209 the latest eccentric , 2 +5279 209 the latest eccentric 3 +5280 209 latest eccentric 3 +5281 209 eccentric 2 +5282 209 super-wealthy megalomaniac bent on world domination and destruction 1 +5283 209 super-wealthy megalomaniac bent 2 +5284 209 super-wealthy 2 +5285 209 megalomaniac bent 2 +5286 209 megalomaniac 2 +5287 209 bent 2 +5288 209 on world domination and destruction 3 +5289 209 world domination and destruction 2 +5290 209 domination and destruction 1 +5291 209 domination and 2 +5292 209 domination 2 +5293 209 destruction 1 +5294 210 It is depressing , ruthlessly pained and depraved , the movie equivalent of staring into an open wound . 0 +5295 210 is depressing , ruthlessly pained and depraved , the movie equivalent of staring into an open wound . 1 +5296 210 is depressing , ruthlessly pained and depraved , the movie equivalent of staring into an open wound 1 +5297 210 is depressing , ruthlessly pained and depraved , 1 +5298 210 is depressing , ruthlessly pained and depraved 3 +5299 210 depressing , ruthlessly pained and depraved 0 +5300 210 depressing , ruthlessly pained and 2 +5301 210 depressing , ruthlessly pained 1 +5302 210 depressing , 1 +5303 210 depressing 0 +5304 210 ruthlessly pained 1 +5305 210 ruthlessly 2 +5306 210 pained 1 +5307 210 depraved 0 +5308 210 the movie equivalent of staring into an open wound 0 +5309 210 the movie equivalent 2 +5310 210 movie equivalent 2 +5311 210 of staring into an open wound 2 +5312 210 staring into an open wound 2 +5313 210 staring 3 +5314 210 into an open wound 2 +5315 210 an open wound 1 +5316 210 open wound 2 +5317 210 wound 2 +5318 211 Damon brings the proper conviction to his role as -LRB- Jason Bourne -RRB- . 3 +5319 211 Damon 2 +5320 211 brings the proper conviction to his role as -LRB- Jason Bourne -RRB- . 3 +5321 211 brings the proper conviction to his role as -LRB- Jason Bourne -RRB- 3 +5322 211 brings the proper conviction 3 +5323 211 brings 2 +5324 211 the proper conviction 3 +5325 211 proper conviction 2 +5326 211 proper 2 +5327 211 conviction 2 +5328 211 to his role as -LRB- Jason Bourne -RRB- 2 +5329 211 his role as -LRB- Jason Bourne -RRB- 2 +5330 211 his role as 2 +5331 211 role as 2 +5332 211 -LRB- Jason Bourne -RRB- 2 +5333 211 Jason Bourne -RRB- 2 +5334 211 Jason Bourne 2 +5335 211 Jason 2 +5336 211 Bourne 2 +5337 212 Parents beware ; this is downright movie penance . 1 +5338 212 Parents beware ; this is downright movie penance 1 +5339 212 Parents beware ; 3 +5340 212 Parents beware 1 +5341 212 beware 2 +5342 212 this is downright movie penance 1 +5343 212 is downright movie penance 3 +5344 212 downright movie penance 1 +5345 212 movie penance 2 +5346 212 penance 2 +5347 213 When it 's this rich and luscious , who cares ? 3 +5348 213 When it 's this rich and luscious 4 +5349 213 it 's this rich and luscious 3 +5350 213 's this rich and luscious 3 +5351 213 this rich and luscious 3 +5352 213 rich and luscious 3 +5353 213 rich and 3 +5354 213 rich 3 +5355 213 luscious 3 +5356 213 , who cares ? 2 +5357 213 who cares ? 1 +5358 213 cares ? 2 +5359 213 cares 3 +5360 214 A singularly off-putting romantic comedy . 1 +5361 214 singularly off-putting romantic comedy . 1 +5362 214 singularly 2 +5363 214 off-putting romantic comedy . 1 +5364 214 off-putting 1 +5365 214 romantic comedy . 2 +5366 214 comedy . 2 +5367 215 Director Boris von Sychowski instead opts for a routine slasher film that was probably more fun to make than it is to sit through . 2 +5368 215 Director Boris von Sychowski 2 +5369 215 Boris von Sychowski 2 +5370 215 Boris 2 +5371 215 von Sychowski 2 +5372 215 von 2 +5373 215 Sychowski 2 +5374 215 instead opts for a routine slasher film that was probably more fun to make than it is to sit through . 0 +5375 215 instead 2 +5376 215 opts for a routine slasher film that was probably more fun to make than it is to sit through . 1 +5377 215 opts for a routine slasher film that was probably more fun to make than it is to sit through 1 +5378 215 opts 2 +5379 215 for a routine slasher film that was probably more fun to make than it is to sit through 1 +5380 215 a routine slasher film that was probably more fun to make than it is to sit through 0 +5381 215 a routine slasher film 2 +5382 215 routine slasher film 2 +5383 215 routine 2 +5384 215 slasher film 1 +5385 215 slasher 2 +5386 215 that was probably more fun to make than it is to sit through 1 +5387 215 was probably more fun to make than it is to sit through 1 +5388 215 was probably 2 +5389 215 more fun to make than it is to sit through 1 +5390 215 fun to make than it is to sit through 1 +5391 215 to make than it is to sit through 2 +5392 215 make than it is to sit through 2 +5393 215 than it is to sit through 1 +5394 215 it is to sit through 2 +5395 215 is to sit through 2 +5396 215 to sit through 2 +5397 215 sit through 2 +5398 215 sit 2 +5399 216 Would 've been nice if the screenwriters had trusted audiences to understand a complex story , and left off the film 's predictable denouement . 0 +5400 216 've been nice if the screenwriters had trusted audiences to understand a complex story , and left off the film 's predictable denouement . 2 +5401 216 've been nice if the screenwriters had trusted audiences to understand a complex story , and left off the film 's predictable denouement 1 +5402 216 've 2 +5403 216 been nice if the screenwriters had trusted audiences to understand a complex story , and left off the film 's predictable denouement 1 +5404 216 been nice 2 +5405 216 nice 3 +5406 216 if the screenwriters had trusted audiences to understand a complex story , and left off the film 's predictable denouement 2 +5407 216 the screenwriters had trusted audiences to understand a complex story , and left off the film 's predictable denouement 2 +5408 216 the screenwriters 2 +5409 216 had trusted audiences to understand a complex story , and left off the film 's predictable denouement 2 +5410 216 trusted audiences to understand a complex story , and left off the film 's predictable denouement 2 +5411 216 trusted audiences to understand a complex story , and 2 +5412 216 trusted audiences to understand a complex story , 2 +5413 216 trusted audiences to understand a complex story 2 +5414 216 trusted audiences 3 +5415 216 trusted 2 +5416 216 to understand a complex story 2 +5417 216 understand a complex story 2 +5418 216 a complex story 3 +5419 216 complex story 3 +5420 216 complex 3 +5421 216 left off the film 's predictable denouement 1 +5422 216 left off 2 +5423 216 left 2 +5424 216 the film 's predictable denouement 1 +5425 216 the film 's 2 +5426 216 film 's 2 +5427 216 predictable denouement 1 +5428 216 predictable 2 +5429 217 A superfluous sequel ... plagued by that old familiar feeling of ` let 's get this thing over with ' : Everyone has shown up at the appointed time and place , but visible enthusiasm is mighty hard to find . 1 +5430 217 A superfluous sequel ... plagued by that old familiar feeling of ` let 's get this thing over with ' : Everyone has shown up at the appointed time and place , but visible enthusiasm is mighty hard to find 1 +5431 217 A superfluous sequel ... plagued by that old familiar feeling of ` let 's get this thing over with ' : Everyone has shown up at the appointed time and place , but 0 +5432 217 A superfluous sequel ... plagued by that old familiar feeling of ` let 's get this thing over with ' : Everyone has shown up at the appointed time and place , 0 +5433 217 A superfluous sequel ... plagued by that old familiar feeling of ` let 's get this thing over with ' : Everyone has shown up at the appointed time and place 0 +5434 217 A superfluous sequel ... plagued by that old familiar feeling of ` let 's get this thing over with ' : 1 +5435 217 A superfluous sequel ... plagued by that old familiar feeling of ` let 's get this thing over with ' 1 +5436 217 A superfluous sequel ... 1 +5437 217 A superfluous sequel 0 +5438 217 superfluous sequel 0 +5439 217 superfluous 2 +5440 217 sequel 2 +5441 217 plagued by that old familiar feeling of ` let 's get this thing over with ' 1 +5442 217 plagued 2 +5443 217 by that old familiar feeling of ` let 's get this thing over with ' 0 +5444 217 that old familiar feeling of ` let 's get this thing over with ' 1 +5445 217 that old familiar feeling 2 +5446 217 old familiar feeling 2 +5447 217 old familiar 2 +5448 217 feeling 2 +5449 217 of ` let 's get this thing over with ' 2 +5450 217 of ` let 's get this thing over with 0 +5451 217 of ` 2 +5452 217 let 's get this thing over with 1 +5453 217 let 2 +5454 217 's get this thing over with 1 +5455 217 get this thing over with 1 +5456 217 get this thing 2 +5457 217 this thing 2 +5458 217 over with 1 +5459 217 over 2 +5460 217 Everyone has shown up at the appointed time and place 2 +5461 217 has shown up at the appointed time and place 2 +5462 217 shown up at the appointed time and place 2 +5463 217 shown up 2 +5464 217 shown 2 +5465 217 at the appointed time and place 2 +5466 217 the appointed time and place 2 +5467 217 the appointed time and 2 +5468 217 the appointed time 2 +5469 217 appointed time 2 +5470 217 appointed 2 +5471 217 visible enthusiasm is mighty hard to find 2 +5472 217 visible enthusiasm 3 +5473 217 visible 2 +5474 217 enthusiasm 3 +5475 217 is mighty hard to find 2 +5476 217 is mighty hard 2 +5477 217 mighty hard 2 +5478 217 mighty 3 +5479 217 to find 2 +5480 218 An earnest , roughshod document , it serves as a workable primer for the region 's recent history , and would make a terrific 10th-grade learning tool . 3 +5481 218 An earnest , roughshod document 3 +5482 218 earnest , roughshod document 2 +5483 218 , roughshod document 2 +5484 218 roughshod document 2 +5485 218 roughshod 2 +5486 218 document 3 +5487 218 , it serves as a workable primer for the region 's recent history , and would make a terrific 10th-grade learning tool . 3 +5488 218 it serves as a workable primer for the region 's recent history , and would make a terrific 10th-grade learning tool . 3 +5489 218 serves as a workable primer for the region 's recent history , and would make a terrific 10th-grade learning tool . 3 +5490 218 serves as a workable primer for the region 's recent history , and would make a terrific 10th-grade learning tool 3 +5491 218 serves as a workable primer for the region 's recent history , and 2 +5492 218 serves as a workable primer for the region 's recent history , 3 +5493 218 serves as a workable primer for the region 's recent history 3 +5494 218 serves 2 +5495 218 as a workable primer for the region 's recent history 3 +5496 218 a workable primer for the region 's recent history 2 +5497 218 a workable primer 3 +5498 218 workable primer 2 +5499 218 workable 2 +5500 218 primer 2 +5501 218 for the region 's recent history 2 +5502 218 the region 's recent history 2 +5503 218 the region 's 2 +5504 218 region 's 2 +5505 218 region 2 +5506 218 recent history 2 +5507 218 would make a terrific 10th-grade learning tool 2 +5508 218 make a terrific 10th-grade learning tool 3 +5509 218 a terrific 10th-grade learning tool 2 +5510 218 terrific 10th-grade learning tool 3 +5511 218 terrific 4 +5512 218 10th-grade learning tool 2 +5513 218 10th-grade 2 +5514 218 learning tool 2 +5515 218 learning 2 +5516 218 tool 2 +5517 219 Cloaks a familiar anti-feminist equation -LRB- career - kids = misery -RRB- in tiresome romantic-comedy duds . 1 +5518 219 Cloaks a familiar anti-feminist equation -LRB- career - kids = misery -RRB- in tiresome romantic-comedy duds 2 +5519 219 Cloaks 2 +5520 219 a familiar anti-feminist equation -LRB- career - kids = misery -RRB- in tiresome romantic-comedy duds 0 +5521 219 a familiar anti-feminist equation -LRB- career - kids = misery -RRB- 3 +5522 219 a familiar anti-feminist equation 2 +5523 219 familiar anti-feminist equation 2 +5524 219 familiar anti-feminist 2 +5525 219 anti-feminist 1 +5526 219 equation 2 +5527 219 -LRB- career - kids = misery -RRB- 2 +5528 219 career - kids = misery -RRB- 1 +5529 219 career - kids = misery 1 +5530 219 career - 2 +5531 219 career 3 +5532 219 kids = misery 1 +5533 219 = misery 2 +5534 219 = 2 +5535 219 misery 1 +5536 219 in tiresome romantic-comedy duds 2 +5537 219 tiresome romantic-comedy duds 2 +5538 219 tiresome 1 +5539 219 romantic-comedy duds 0 +5540 219 romantic-comedy 2 +5541 219 duds 1 +5542 220 A film that plays things so nice 'n safe as to often play like a milquetoast movie of the week blown up for the big screen . 1 +5543 220 A film that plays things so nice 3 +5544 220 that plays things so nice 3 +5545 220 plays things so nice 2 +5546 220 things so nice 3 +5547 220 so nice 2 +5548 220 'n safe as to often play like a milquetoast movie of the week blown up for the big screen . 1 +5549 220 'n safe as to often play like a milquetoast movie of the week blown up for the big screen 1 +5550 220 'n 2 +5551 220 safe as to often play like a milquetoast movie of the week blown up for the big screen 1 +5552 220 safe as 2 +5553 220 safe 3 +5554 220 to often play like a milquetoast movie of the week blown up for the big screen 1 +5555 220 often play like a milquetoast movie of the week blown up for the big screen 1 +5556 220 play like a milquetoast movie of the week blown up for the big screen 1 +5557 220 play 2 +5558 220 like a milquetoast movie of the week blown up for the big screen 1 +5559 220 a milquetoast movie of the week blown up for the big screen 1 +5560 220 a milquetoast movie 1 +5561 220 milquetoast movie 2 +5562 220 milquetoast 1 +5563 220 of the week blown up for the big screen 1 +5564 220 the week blown up for the big screen 1 +5565 220 the week 2 +5566 220 week 2 +5567 220 blown up for the big screen 2 +5568 220 for the big screen 2 +5569 221 His work transcends the boy-meets-girl posturing of typical love stories . 3 +5570 221 His work 2 +5571 221 transcends the boy-meets-girl posturing of typical love stories . 3 +5572 221 transcends the boy-meets-girl posturing of typical love stories 3 +5573 221 transcends 3 +5574 221 the boy-meets-girl posturing of typical love stories 2 +5575 221 the boy-meets-girl posturing 2 +5576 221 boy-meets-girl posturing 2 +5577 221 boy-meets-girl 2 +5578 221 posturing 2 +5579 221 of typical love stories 2 +5580 221 typical love stories 2 +5581 221 typical 1 +5582 221 love stories 2 +5583 221 stories 2 +5584 222 An even more predictable , cliche-ridden endeavor than its predecessor . 1 +5585 222 An even more predictable , cliche-ridden 2 +5586 222 even more predictable , cliche-ridden 1 +5587 222 even more predictable 1 +5588 222 more predictable 2 +5589 222 , cliche-ridden 1 +5590 222 cliche-ridden 1 +5591 222 endeavor than its predecessor . 2 +5592 222 endeavor than its predecessor 2 +5593 222 endeavor 2 +5594 222 than its predecessor 2 +5595 222 its predecessor 2 +5596 222 predecessor 2 +5597 223 Plays like a bad blend of an overripe episode of TV 's Dawson 's Creek and a recycled and dumbed-down version of Love Story . 0 +5598 223 like a bad blend of an overripe episode of TV 's Dawson 's Creek and a recycled and dumbed-down version of Love Story . 0 +5599 223 like a bad blend of an overripe episode of TV 's Dawson 's Creek and a recycled and dumbed-down version of Love Story 2 +5600 223 a bad blend of an overripe episode of TV 's Dawson 's Creek and a recycled and dumbed-down version of Love Story 0 +5601 223 a bad blend 1 +5602 223 bad blend 1 +5603 223 blend 2 +5604 223 of an overripe episode of TV 's Dawson 's Creek and a recycled and dumbed-down version of Love Story 1 +5605 223 an overripe episode of TV 's Dawson 's Creek and a recycled and dumbed-down version of Love Story 0 +5606 223 an overripe episode of TV 's Dawson 's Creek and 1 +5607 223 an overripe episode of TV 's Dawson 's Creek 0 +5608 223 an overripe episode 2 +5609 223 overripe episode 1 +5610 223 overripe 2 +5611 223 episode 2 +5612 223 of TV 's Dawson 's Creek 2 +5613 223 TV 's Dawson 's Creek 2 +5614 223 TV 's 2 +5615 223 Dawson 's Creek 2 +5616 223 Dawson 's 2 +5617 223 Dawson 2 +5618 223 Creek 2 +5619 223 a recycled and dumbed-down version of Love Story 0 +5620 223 a recycled and dumbed-down version 0 +5621 223 recycled and dumbed-down version 1 +5622 223 recycled 1 +5623 223 and dumbed-down version 2 +5624 223 dumbed-down version 1 +5625 223 dumbed-down 1 +5626 223 of Love Story 2 +5627 224 The script covers huge , heavy topics in a bland , surfacey way that does n't offer any insight into why , for instance , good things happen to bad people . 1 +5628 224 The script 2 +5629 224 covers huge , heavy topics in a bland , surfacey way that does n't offer any insight into why , for instance , good things happen to bad people . 0 +5630 224 covers huge , heavy topics in a bland , surfacey way that does n't offer any insight into why , for instance , good things happen to bad people 1 +5631 224 covers 2 +5632 224 huge , heavy topics in a bland , surfacey way that does n't offer any insight into why , for instance , good things happen to bad people 0 +5633 224 huge , heavy topics 2 +5634 224 huge 2 +5635 224 , heavy topics 2 +5636 224 heavy topics 2 +5637 224 topics 2 +5638 224 in a bland , surfacey way that does n't offer any insight into why , for instance , good things happen to bad people 2 +5639 224 a bland , surfacey way that does n't offer any insight into why , for instance , good things happen to bad people 0 +5640 224 a bland , surfacey way 1 +5641 224 bland , surfacey way 1 +5642 224 bland , surfacey 1 +5643 224 bland 1 +5644 224 , surfacey 2 +5645 224 surfacey 2 +5646 224 that does n't offer any insight into why , for instance , good things happen to bad people 1 +5647 224 does n't offer any insight into why , for instance , good things happen to bad people 1 +5648 224 offer any insight into why , for instance , good things happen to bad people 2 +5649 224 offer any insight 2 +5650 224 offer 2 +5651 224 any insight 3 +5652 224 into why , for instance , good things happen to bad people 2 +5653 224 why , for instance , good things happen to bad people 1 +5654 224 why 2 +5655 224 , for instance , good things happen to bad people 2 +5656 224 for instance , good things happen to bad people 1 +5657 224 for instance 2 +5658 224 instance 2 +5659 224 , good things happen to bad people 2 +5660 224 good things happen to bad people 3 +5661 224 good things 3 +5662 224 happen to bad people 2 +5663 224 to bad people 2 +5664 224 bad people 1 +5665 225 The film is so bad it does n't improve upon the experience of staring at a blank screen . 0 +5666 225 is so bad it does n't improve upon the experience of staring at a blank screen . 0 +5667 225 is so bad it does n't improve upon the experience of staring at a blank screen 0 +5668 225 so bad it does n't improve upon the experience of staring at a blank screen 1 +5669 225 bad it does n't improve upon the experience of staring at a blank screen 1 +5670 225 it does n't improve upon the experience of staring at a blank screen 0 +5671 225 does n't improve upon the experience of staring at a blank screen 1 +5672 225 improve upon the experience of staring at a blank screen 2 +5673 225 improve 2 +5674 225 upon the experience of staring at a blank screen 2 +5675 225 the experience of staring at a blank screen 0 +5676 225 the experience 2 +5677 225 of staring at a blank screen 2 +5678 225 staring at a blank screen 1 +5679 225 at a blank screen 2 +5680 225 a blank screen 2 +5681 225 blank screen 2 +5682 225 blank 2 +5683 226 They threw loads of money at an idea that should 've been so much more even if it was only made for teenage boys and wrestling fans . 1 +5684 226 threw loads of money at an idea that should 've been so much more even if it was only made for teenage boys and wrestling fans . 1 +5685 226 threw loads of money at an idea that should 've been so much more even if it was only made for teenage boys and wrestling fans 1 +5686 226 threw loads of money 2 +5687 226 threw 2 +5688 226 loads of money 2 +5689 226 loads 2 +5690 226 of money 2 +5691 226 money 2 +5692 226 at an idea that should 've been so much more even if it was only made for teenage boys and wrestling fans 1 +5693 226 an idea that should 've been so much more even if it was only made for teenage boys and wrestling fans 1 +5694 226 an idea 2 +5695 226 idea 2 +5696 226 that should 've been so much more even if it was only made for teenage boys and wrestling fans 1 +5697 226 should 've been so much more even if it was only made for teenage boys and wrestling fans 1 +5698 226 've been so much more even if it was only made for teenage boys and wrestling fans 2 +5699 226 been so much more even if it was only made for teenage boys and wrestling fans 2 +5700 226 been so much more 2 +5701 226 so much more 3 +5702 226 much more 2 +5703 226 even if it was only made for teenage boys and wrestling fans 2 +5704 226 if it was only made for teenage boys and wrestling fans 2 +5705 226 it was only made for teenage boys and wrestling fans 1 +5706 226 was only made for teenage boys and wrestling fans 2 +5707 226 was only 1 +5708 226 made for teenage boys and wrestling fans 2 +5709 226 for teenage boys and wrestling fans 2 +5710 226 teenage boys and wrestling fans 2 +5711 226 teenage 2 +5712 226 boys and wrestling fans 2 +5713 226 boys 2 +5714 226 and wrestling fans 2 +5715 226 wrestling fans 2 +5716 226 wrestling 2 +5717 227 It 's difficult to imagine that a more confused , less interesting and more sloppily made film could possibly come down the road in 2002 . 0 +5718 227 's difficult to imagine that a more confused , less interesting and more sloppily made film could possibly come down the road in 2002 . 2 +5719 227 's difficult to imagine that a more confused , less interesting and more sloppily made film could possibly come down the road in 2002 0 +5720 227 difficult to imagine that a more confused , less interesting and more sloppily made film could possibly come down the road in 2002 0 +5721 227 difficult 1 +5722 227 to imagine that a more confused , less interesting and more sloppily made film could possibly come down the road in 2002 0 +5723 227 imagine that a more confused , less interesting and more sloppily made film could possibly come down the road in 2002 1 +5724 227 imagine 2 +5725 227 that a more confused , less interesting and more sloppily made film could possibly come down the road in 2002 1 +5726 227 a more confused , less interesting and more sloppily made film could possibly come down the road in 2002 0 +5727 227 a more confused , less interesting and more sloppily 0 +5728 227 more confused , less interesting and more sloppily 1 +5729 227 more confused , less interesting and more 0 +5730 227 more confused , less interesting and 2 +5731 227 more confused , less interesting 1 +5732 227 more confused , 1 +5733 227 more confused 1 +5734 227 confused 1 +5735 227 less interesting 2 +5736 227 sloppily 1 +5737 227 made film could possibly come down the road in 2002 2 +5738 227 film could possibly come down the road in 2002 2 +5739 227 could possibly come down the road in 2002 2 +5740 227 could possibly 2 +5741 227 possibly 2 +5742 227 come down the road in 2002 2 +5743 227 come down 2 +5744 227 the road in 2002 2 +5745 227 the road 2 +5746 227 road 1 +5747 227 in 2002 2 +5748 227 2002 2 +5749 228 Though the film is well-intentioned , one could rent the original and get the same love story and parable . 3 +5750 228 Though the film is well-intentioned 3 +5751 228 the film is well-intentioned 3 +5752 228 is well-intentioned 2 +5753 228 well-intentioned 3 +5754 228 , one could rent the original and get the same love story and parable . 1 +5755 228 one could rent the original and get the same love story and parable . 1 +5756 228 could rent the original and get the same love story and parable . 2 +5757 228 could rent the original and get the same love story and parable 1 +5758 228 rent the original and get the same love story and parable 2 +5759 228 rent the original and 2 +5760 228 rent the original 2 +5761 228 rent 2 +5762 228 get the same love story and parable 3 +5763 228 get the same love story and 3 +5764 228 get the same love story 2 +5765 228 the same love story 1 +5766 228 same love story 1 +5767 228 parable 2 +5768 229 Jolting into Charleston rhythms , the story has the sizzle of old news that has finally found the right vent -LRB- accurate ? 2 +5769 229 Jolting into Charleston rhythms 2 +5770 229 Jolting 3 +5771 229 into Charleston rhythms 2 +5772 229 Charleston rhythms 2 +5773 229 Charleston 2 +5774 229 rhythms 2 +5775 229 , the story has the sizzle of old news that has finally found the right vent -LRB- accurate ? 2 +5776 229 the story has the sizzle of old news that has finally found the right vent -LRB- accurate ? 3 +5777 229 has the sizzle of old news that has finally found the right vent -LRB- accurate ? 2 +5778 229 has the sizzle of old news that has finally found the right vent -LRB- accurate 4 +5779 229 the sizzle of old news that has finally found the right vent -LRB- accurate 3 +5780 229 the sizzle of old news 1 +5781 229 the sizzle 2 +5782 229 sizzle 2 +5783 229 of old news 2 +5784 229 old news 2 +5785 229 news 2 +5786 229 that has finally found the right vent -LRB- accurate 3 +5787 229 has finally found the right vent -LRB- accurate 3 +5788 229 has finally 2 +5789 229 found the right vent -LRB- accurate 2 +5790 229 found 2 +5791 229 the right vent -LRB- accurate 2 +5792 229 the right 2 +5793 229 vent -LRB- accurate 2 +5794 229 vent -LRB- 1 +5795 229 vent 2 +5796 230 Or both . 2 +5797 230 both . 2 +5798 231 Williams plays Sy , another of his open-faced , smiling madmen , like the killer in Insomnia . 2 +5799 231 plays Sy , another of his open-faced , smiling madmen , like the killer in Insomnia . 2 +5800 231 plays Sy , another of his open-faced , smiling madmen , like the killer in Insomnia 2 +5801 231 Sy , another of his open-faced , smiling madmen , like the killer in Insomnia 2 +5802 231 Sy , another of his open-faced , smiling madmen , 3 +5803 231 Sy , another of his open-faced , smiling madmen 2 +5804 231 Sy , 2 +5805 231 Sy 2 +5806 231 another of his open-faced , smiling madmen 3 +5807 231 of his open-faced , smiling madmen 2 +5808 231 his open-faced , smiling madmen 2 +5809 231 open-faced , smiling madmen 2 +5810 231 open-faced 3 +5811 231 , smiling madmen 2 +5812 231 smiling madmen 2 +5813 231 smiling 3 +5814 231 madmen 2 +5815 231 like the killer in Insomnia 2 +5816 231 the killer in Insomnia 1 +5817 231 the killer 2 +5818 231 killer 1 +5819 231 in Insomnia 2 +5820 231 Insomnia 1 +5821 232 Phoned-in business as usual . 1 +5822 232 Phoned-in business 1 +5823 232 Phoned-in 2 +5824 232 business 2 +5825 232 as usual . 2 +5826 232 as usual 2 +5827 233 With its lackadaisical plotting and mindless action , All About the Benjamins evokes the bottom tier of blaxploitation flicks from the 1970s . 1 +5828 233 With its lackadaisical plotting and mindless action 1 +5829 233 its lackadaisical plotting and mindless action 0 +5830 233 lackadaisical plotting and mindless action 0 +5831 233 lackadaisical 1 +5832 233 plotting and mindless action 1 +5833 233 plotting and mindless 0 +5834 233 plotting and 2 +5835 233 plotting 3 +5836 233 mindless 1 +5837 233 , All About the Benjamins evokes the bottom tier of blaxploitation flicks from the 1970s . 1 +5838 233 All About the Benjamins evokes the bottom tier of blaxploitation flicks from the 1970s . 0 +5839 233 About the Benjamins evokes the bottom tier of blaxploitation flicks from the 1970s . 1 +5840 233 About the Benjamins 2 +5841 233 the Benjamins 2 +5842 233 Benjamins 2 +5843 233 evokes the bottom tier of blaxploitation flicks from the 1970s . 1 +5844 233 evokes the bottom tier of blaxploitation flicks from the 1970s 0 +5845 233 evokes the bottom tier of blaxploitation flicks 1 +5846 233 the bottom tier of blaxploitation flicks 1 +5847 233 the bottom tier 1 +5848 233 bottom tier 1 +5849 233 tier 2 +5850 233 of blaxploitation flicks 1 +5851 233 blaxploitation flicks 2 +5852 233 blaxploitation 1 +5853 233 flicks 2 +5854 233 from the 1970s 2 +5855 233 the 1970s 2 +5856 233 1970s 2 +5857 234 Ah , yes , that would be me : fighting off the urge to doze . 0 +5858 234 Ah , yes 2 +5859 234 Ah , 2 +5860 234 Ah 2 +5861 234 yes 2 +5862 234 , that would be me : fighting off the urge to doze . 1 +5863 234 that would be me : fighting off the urge to doze . 0 +5864 234 would be me : fighting off the urge to doze . 0 +5865 234 would be me : fighting off the urge to doze 1 +5866 234 be me : fighting off the urge to doze 0 +5867 234 be me : 2 +5868 234 be me 2 +5869 234 me 3 +5870 234 fighting off the urge to doze 1 +5871 234 fighting off 2 +5872 234 the urge to doze 1 +5873 234 urge to doze 1 +5874 234 urge 2 +5875 234 to doze 2 +5876 234 doze 2 +5877 235 Thoughtless , random , superficial humour and a lot of very bad Scouse accents 0 +5878 235 Thoughtless , random , superficial humour and a lot 1 +5879 235 Thoughtless , random , superficial humour and 0 +5880 235 Thoughtless , random , superficial humour 1 +5881 235 Thoughtless , 1 +5882 235 Thoughtless 1 +5883 235 random , superficial humour 1 +5884 235 random 2 +5885 235 , superficial humour 2 +5886 235 superficial humour 1 +5887 235 superficial 2 +5888 235 humour 3 +5889 235 of very bad Scouse accents 0 +5890 235 very bad Scouse accents 1 +5891 235 very bad 2 +5892 235 Scouse accents 2 +5893 235 Scouse 2 +5894 236 In an era where big stars and high production values are standard procedure , Narc strikes a defiantly retro chord , and outpaces its contemporaries with daring and verve . 3 +5895 236 In an era where big stars and high production values are standard procedure 2 +5896 236 an era where big stars and high production values are standard procedure 2 +5897 236 an era 2 +5898 236 where big stars and high production values are standard procedure 3 +5899 236 big stars and high production values are standard procedure 3 +5900 236 big stars and high production values 3 +5901 236 big stars and 3 +5902 236 big stars 2 +5903 236 high production values 3 +5904 236 production values 2 +5905 236 values 2 +5906 236 are standard procedure 2 +5907 236 standard procedure 2 +5908 236 standard 1 +5909 236 procedure 2 +5910 236 , Narc strikes a defiantly retro chord , and outpaces its contemporaries with daring and verve . 3 +5911 236 Narc strikes a defiantly retro chord , and outpaces its contemporaries with daring and verve . 2 +5912 236 Narc 1 +5913 236 strikes a defiantly retro chord , and outpaces its contemporaries with daring and verve . 4 +5914 236 strikes a defiantly retro chord , and outpaces its contemporaries with daring and verve 4 +5915 236 strikes a defiantly retro chord , and 2 +5916 236 strikes a defiantly retro chord , 2 +5917 236 strikes a defiantly retro chord 2 +5918 236 strikes 2 +5919 236 a defiantly retro chord 3 +5920 236 defiantly retro chord 2 +5921 236 defiantly 2 +5922 236 retro chord 2 +5923 236 retro 2 +5924 236 chord 2 +5925 236 outpaces its contemporaries with daring and verve 3 +5926 236 outpaces its contemporaries 2 +5927 236 outpaces 2 +5928 236 its contemporaries 2 +5929 236 contemporaries 2 +5930 236 with daring and verve 3 +5931 236 daring and verve 3 +5932 236 daring and 2 +5933 236 daring 2 +5934 236 verve 2 +5935 237 A rip-roaring comedy action fest that 'll put hairs on your chest . 3 +5936 237 A rip-roaring comedy action 3 +5937 237 rip-roaring comedy action 4 +5938 237 rip-roaring 3 +5939 237 comedy action 2 +5940 237 fest that 'll put hairs on your chest . 3 +5941 237 fest that 'll put hairs on your chest 3 +5942 237 fest 2 +5943 237 that 'll put hairs on your chest 2 +5944 237 'll put hairs on your chest 2 +5945 237 'll 2 +5946 237 put hairs on your chest 3 +5947 237 put hairs 2 +5948 237 put 2 +5949 237 hairs 2 +5950 237 on your chest 2 +5951 237 your chest 2 +5952 237 chest 2 +5953 238 ... a thoughtful what-if for the heart as well as the mind . 4 +5954 238 a thoughtful what-if for the heart as well as the mind . 3 +5955 238 a thoughtful what-if for the heart as well as the mind 3 +5956 238 a thoughtful what-if 3 +5957 238 thoughtful what-if 3 +5958 238 what-if 2 +5959 238 for the heart as well as the mind 3 +5960 238 the heart as well as the mind 2 +5961 238 the heart as well as 3 +5962 238 the heart 2 +5963 238 the mind 2 +5964 239 Miyazaki is one of world cinema 's most wondrously gifted artists and storytellers . 4 +5965 239 Miyazaki 2 +5966 239 is one of world cinema 's most wondrously gifted artists and storytellers . 4 +5967 239 is one of world cinema 's most wondrously gifted artists and storytellers 4 +5968 239 is one of world cinema 's most wondrously gifted artists and 4 +5969 239 is one of world cinema 's most wondrously gifted artists 4 +5970 239 one of world cinema 's most wondrously gifted artists 4 +5971 239 of world cinema 's most wondrously gifted artists 3 +5972 239 world cinema 's most wondrously gifted artists 4 +5973 239 world cinema 's 2 +5974 239 cinema 's 2 +5975 239 most wondrously gifted artists 4 +5976 239 most wondrously 4 +5977 239 wondrously 3 +5978 239 gifted artists 3 +5979 239 gifted 3 +5980 239 artists 2 +5981 239 storytellers 3 +5982 240 A chronicle not only of one man 's quest to be president , but of how that man single-handedly turned a plane full of hard-bitten , cynical journalists into what was essentially , by campaign 's end , an extended publicity department . 3 +5983 240 chronicle not only of one man 's quest to be president , but of how that man single-handedly turned a plane full of hard-bitten , cynical journalists into what was essentially , by campaign 's end , an extended publicity department . 3 +5984 240 chronicle not only of one man 's quest to be president , but of how that man single-handedly turned a plane full of hard-bitten , cynical journalists into what was essentially , by campaign 's end , an extended publicity department 2 +5985 240 chronicle 2 +5986 240 not only of one man 's quest to be president , but of how that man single-handedly turned a plane full of hard-bitten , cynical journalists into what was essentially , by campaign 's end , an extended publicity department 3 +5987 240 only of one man 's quest to be president , but of how that man single-handedly turned a plane full of hard-bitten , cynical journalists into what was essentially , by campaign 's end , an extended publicity department 3 +5988 240 of one man 's quest to be president , but of how that man single-handedly turned a plane full of hard-bitten , cynical journalists into what was essentially , by campaign 's end , an extended publicity department 2 +5989 240 of one man 's quest to be president 3 +5990 240 one man 's quest to be president 2 +5991 240 one man 's 2 +5992 240 man 's 2 +5993 240 quest to be president 2 +5994 240 quest 2 +5995 240 to be president 2 +5996 240 be president 2 +5997 240 president 2 +5998 240 , but of how that man single-handedly turned a plane full of hard-bitten , cynical journalists into what was essentially , by campaign 's end , an extended publicity department 2 +5999 240 of how that man single-handedly turned a plane full of hard-bitten , cynical journalists into what was essentially , by campaign 's end , an extended publicity department 2 +6000 240 how that man single-handedly turned a plane full of hard-bitten , cynical journalists into what was essentially , by campaign 's end , an extended publicity department 2 +6001 240 that man single-handedly turned a plane full of hard-bitten , cynical journalists into what was essentially , by campaign 's end , an extended publicity department 2 +6002 240 that man 2 +6003 240 single-handedly turned a plane full of hard-bitten , cynical journalists into what was essentially , by campaign 's end , an extended publicity department 3 +6004 240 single-handedly 2 +6005 240 turned a plane full of hard-bitten , cynical journalists into what was essentially , by campaign 's end , an extended publicity department 2 +6006 240 turned a plane full of hard-bitten , cynical journalists 2 +6007 240 turned 2 +6008 240 a plane full of hard-bitten , cynical journalists 2 +6009 240 a plane 2 +6010 240 plane 2 +6011 240 full of hard-bitten , cynical journalists 2 +6012 240 of hard-bitten , cynical journalists 1 +6013 240 hard-bitten , cynical journalists 2 +6014 240 hard-bitten , cynical 2 +6015 240 hard-bitten 2 +6016 240 , cynical 1 +6017 240 cynical 1 +6018 240 journalists 2 +6019 240 into what was essentially , by campaign 's end , an extended publicity department 1 +6020 240 what was essentially , by campaign 's end , an extended publicity department 2 +6021 240 was essentially , by campaign 's end , an extended publicity department 2 +6022 240 was essentially , by campaign 's end , 2 +6023 240 was essentially , by campaign 's end 2 +6024 240 was essentially , 3 +6025 240 was essentially 2 +6026 240 essentially 2 +6027 240 by campaign 's end 2 +6028 240 campaign 's end 2 +6029 240 campaign 's 2 +6030 240 campaign 2 +6031 240 an extended publicity department 2 +6032 240 extended publicity department 2 +6033 240 extended 2 +6034 240 publicity department 2 +6035 240 publicity 2 +6036 240 department 2 +6037 241 Provides the kind of ` laugh therapy ' I need from movie comedies -- offbeat humor , amusing characters , and a happy ending . 4 +6038 241 Provides the kind of ` laugh therapy ' I need from movie comedies -- offbeat humor , amusing characters , and a happy ending 4 +6039 241 Provides the kind of ` laugh therapy ' I need from movie comedies -- 4 +6040 241 Provides the kind of ` laugh therapy ' I need from movie comedies 4 +6041 241 Provides 2 +6042 241 the kind of ` laugh therapy ' I need from movie comedies 4 +6043 241 the kind of ` laugh therapy ' 3 +6044 241 of ` laugh therapy ' 3 +6045 241 ` laugh therapy ' 3 +6046 241 laugh therapy ' 3 +6047 241 laugh 3 +6048 241 therapy ' 2 +6049 241 therapy 2 +6050 241 I need from movie comedies 2 +6051 241 need from movie comedies 2 +6052 241 from movie comedies 2 +6053 241 movie comedies 2 +6054 241 comedies 2 +6055 241 offbeat humor , amusing characters , and a happy ending 4 +6056 241 offbeat humor , amusing characters , and 3 +6057 241 offbeat humor , amusing characters , 3 +6058 241 offbeat humor , amusing characters 4 +6059 241 offbeat humor , 2 +6060 241 offbeat humor 3 +6061 241 offbeat 2 +6062 241 amusing characters 4 +6063 241 a happy ending 3 +6064 241 happy ending 3 +6065 241 happy 4 +6066 241 ending 2 +6067 242 Feels strangely hollow at its emotional core . 0 +6068 242 Feels strangely hollow at its emotional core 1 +6069 242 strangely hollow at its emotional core 1 +6070 242 strangely 1 +6071 242 hollow at its emotional core 0 +6072 242 hollow 1 +6073 242 at its emotional core 2 +6074 242 its emotional core 2 +6075 242 emotional core 2 +6076 242 core 2 +6077 243 At a time when commercialism has squeezed the life out of whatever idealism American moviemaking ever had , Godfrey Reggio 's career shines like a lonely beacon . 3 +6078 243 At a time when commercialism has squeezed the life out of whatever idealism American moviemaking ever had 1 +6079 243 a time when commercialism has squeezed the life out of whatever idealism American moviemaking ever had 0 +6080 243 a time 2 +6081 243 when commercialism has squeezed the life out of whatever idealism American moviemaking ever had 0 +6082 243 commercialism has squeezed the life out of whatever idealism American moviemaking ever had 2 +6083 243 commercialism 2 +6084 243 has squeezed the life out of whatever idealism American moviemaking ever had 0 +6085 243 squeezed the life out of whatever idealism American moviemaking ever had 1 +6086 243 squeezed 2 +6087 243 the life out of whatever idealism American moviemaking ever had 1 +6088 243 the life out 2 +6089 243 of whatever idealism American moviemaking ever had 2 +6090 243 of whatever 2 +6091 243 idealism American moviemaking ever had 2 +6092 243 idealism American moviemaking ever 2 +6093 243 idealism American 3 +6094 243 idealism 3 +6095 243 moviemaking ever 2 +6096 243 moviemaking 2 +6097 243 , Godfrey Reggio 's career shines like a lonely beacon . 4 +6098 243 Godfrey Reggio 's career shines like a lonely beacon . 3 +6099 243 Godfrey Reggio 's career 2 +6100 243 Godfrey Reggio 's 2 +6101 243 Godfrey 2 +6102 243 Reggio 's 3 +6103 243 Reggio 2 +6104 243 shines like a lonely beacon . 3 +6105 243 shines like a lonely beacon 3 +6106 243 shines 4 +6107 243 like a lonely beacon 2 +6108 243 a lonely beacon 2 +6109 243 lonely beacon 2 +6110 243 lonely 2 +6111 243 beacon 2 +6112 244 Director Roger Michell does so many of the little things right that it 's difficult not to cuss him out severely for bungling the big stuff . 2 +6113 244 Director Roger Michell 2 +6114 244 Roger Michell 2 +6115 244 Roger 2 +6116 244 Michell 2 +6117 244 does so many of the little things right that it 's difficult not to cuss him out severely for bungling the big stuff . 2 +6118 244 does so many of the little things right that it 's difficult not to cuss him out severely for bungling the big stuff 1 +6119 244 does so many of the little things right 4 +6120 244 so many of the little things right 2 +6121 244 many of the little things right 2 +6122 244 of the little things right 2 +6123 244 the little things right 2 +6124 244 the little things 2 +6125 244 little things 2 +6126 244 that it 's difficult not to cuss him out severely for bungling the big stuff 1 +6127 244 it 's difficult not to cuss him out severely for bungling the big stuff 1 +6128 244 's difficult not to cuss him out severely for bungling the big stuff 1 +6129 244 's difficult 2 +6130 244 not to cuss him out severely for bungling the big stuff 2 +6131 244 to cuss him out severely for bungling the big stuff 1 +6132 244 cuss him out severely for bungling the big stuff 1 +6133 244 cuss him out severely 2 +6134 244 cuss him out 2 +6135 244 cuss him 2 +6136 244 cuss 2 +6137 244 severely 2 +6138 244 for bungling the big stuff 1 +6139 244 bungling the big stuff 1 +6140 244 bungling 1 +6141 244 the big stuff 2 +6142 244 big stuff 2 +6143 245 Robert Harmon 's less-is-more approach delivers real bump-in - the-night chills -- his greatest triumph is keeping the creepy crawlies hidden in the film 's thick shadows . 3 +6144 245 Robert Harmon 's less-is-more approach delivers real bump-in - the-night chills -- his greatest triumph is keeping the creepy crawlies hidden in the film 's thick shadows 3 +6145 245 Robert Harmon 's less-is-more approach delivers real bump-in - the-night chills -- 3 +6146 245 Robert Harmon 's less-is-more approach delivers real bump-in - the-night chills 3 +6147 245 Robert Harmon 's less-is-more approach 3 +6148 245 Robert Harmon 's 2 +6149 245 Robert 2 +6150 245 Harmon 's 2 +6151 245 Harmon 2 +6152 245 less-is-more approach 3 +6153 245 less-is-more 1 +6154 245 delivers real bump-in - the-night chills 3 +6155 245 real bump-in - the-night chills 3 +6156 245 real bump-in - 2 +6157 245 real bump-in 2 +6158 245 bump-in 2 +6159 245 the-night chills 2 +6160 245 the-night 3 +6161 245 chills 2 +6162 245 his greatest triumph is keeping the creepy crawlies hidden in the film 's thick shadows 3 +6163 245 his greatest triumph 4 +6164 245 greatest triumph 4 +6165 245 greatest 3 +6166 245 is keeping the creepy crawlies hidden in the film 's thick shadows 2 +6167 245 keeping the creepy crawlies hidden in the film 's thick shadows 2 +6168 245 keeping 2 +6169 245 the creepy crawlies hidden in the film 's thick shadows 2 +6170 245 the creepy crawlies 2 +6171 245 creepy crawlies 1 +6172 245 creepy 1 +6173 245 crawlies 1 +6174 245 hidden in the film 's thick shadows 2 +6175 245 hidden 2 +6176 245 in the film 's thick shadows 2 +6177 245 the film 's thick shadows 2 +6178 245 thick shadows 2 +6179 245 shadows 2 +6180 246 This movie may not have the highest production values you 've ever seen , but it 's the work of an artist , one whose view of America , history and the awkwardness of human life is generous and deep . 4 +6181 246 This movie may not have the highest production values you 've ever seen , but it 's the work of an artist , one whose view of America , history and the awkwardness of human life is generous and deep 3 +6182 246 This movie may not have the highest production values you 've ever seen , but 1 +6183 246 This movie may not have the highest production values you 've ever seen , 1 +6184 246 This movie may not have the highest production values you 've ever seen 1 +6185 246 This movie 2 +6186 246 may not have the highest production values you 've ever seen 1 +6187 246 may not 1 +6188 246 have the highest production values you 've ever seen 4 +6189 246 the highest production values you 've ever seen 4 +6190 246 the highest production values 4 +6191 246 highest production values 4 +6192 246 highest 2 +6193 246 you 've ever seen 3 +6194 246 've ever seen 2 +6195 246 've ever 2 +6196 246 it 's the work of an artist , one whose view of America , history and the awkwardness of human life is generous and deep 4 +6197 246 's the work of an artist , one whose view of America , history and the awkwardness of human life is generous and deep 3 +6198 246 the work of an artist , one whose view of America , history and the awkwardness of human life is generous and deep 3 +6199 246 of an artist , one whose view of America , history and the awkwardness of human life is generous and deep 3 +6200 246 an artist , one whose view of America , history and the awkwardness of human life is generous and deep 3 +6201 246 an artist , 2 +6202 246 one whose view of America , history and the awkwardness of human life is generous and deep 3 +6203 246 whose view of America , history and the awkwardness of human life is generous and deep 3 +6204 246 whose view of America , history and the awkwardness of human life 2 +6205 246 view of America , history and the awkwardness of human life 2 +6206 246 of America , history and the awkwardness of human life 3 +6207 246 America , history and the awkwardness of human life 2 +6208 246 America , history and 2 +6209 246 America , history 3 +6210 246 America , 2 +6211 246 the awkwardness of human life 2 +6212 246 the awkwardness 2 +6213 246 awkwardness 2 +6214 246 of human life 2 +6215 246 human life 2 +6216 246 human 2 +6217 246 is generous and deep 4 +6218 246 generous and deep 3 +6219 246 generous and 3 +6220 246 generous 3 +6221 247 Feral and uncomfortable . 1 +6222 247 Feral and uncomfortable 1 +6223 247 Feral and 2 +6224 247 Feral 2 +6225 247 uncomfortable 1 +6226 248 Sillier , cuter , and shorter than the first -LRB- as best I remember -RRB- , but still a very good time at the cinema . 4 +6227 248 Sillier , cuter , and shorter than the first -LRB- as best I remember -RRB- , but still a very good time at the cinema 3 +6228 248 Sillier , cuter , and 3 +6229 248 Sillier , cuter , 3 +6230 248 Sillier , cuter 3 +6231 248 Sillier , 2 +6232 248 Sillier 1 +6233 248 cuter 3 +6234 248 shorter than the first -LRB- as best I remember -RRB- , but still a very good time at the cinema 3 +6235 248 shorter than the first -LRB- as best I remember -RRB- , but still 2 +6236 248 shorter than the first -LRB- as best I remember -RRB- 2 +6237 248 shorter than the first 2 +6238 248 shorter 2 +6239 248 than the first 2 +6240 248 the first 2 +6241 248 -LRB- as best I remember -RRB- 2 +6242 248 as best I remember -RRB- 2 +6243 248 as best 2 +6244 248 I remember -RRB- 2 +6245 248 I remember 2 +6246 248 remember 2 +6247 248 , but still 2 +6248 248 a very good time at the cinema 3 +6249 248 a very good time 4 +6250 248 very good time 4 +6251 248 very good 3 +6252 248 at the cinema 2 +6253 248 the cinema 2 +6254 249 It 's more enjoyable than I expected , though , and that 's because the laughs come from fairly basic comedic constructs . 3 +6255 249 It 's more enjoyable than I expected , though , and that 's because the laughs come from fairly basic comedic constructs 3 +6256 249 It 's more enjoyable than I expected , though , and 3 +6257 249 It 's more enjoyable than I expected , though , 3 +6258 249 It 's more enjoyable than I expected , though 3 +6259 249 's more enjoyable than I expected , though 3 +6260 249 's more enjoyable than I expected , 3 +6261 249 's more enjoyable than I expected 3 +6262 249 more enjoyable than I expected 3 +6263 249 more enjoyable 3 +6264 249 enjoyable 3 +6265 249 than I expected 2 +6266 249 I expected 2 +6267 249 expected 1 +6268 249 that 's because the laughs come from fairly basic comedic constructs 2 +6269 249 's because the laughs come from fairly basic comedic constructs 3 +6270 249 because the laughs come from fairly basic comedic constructs 2 +6271 249 the laughs come from fairly basic comedic constructs 2 +6272 249 the laughs 3 +6273 249 laughs 3 +6274 249 come from fairly basic comedic constructs 2 +6275 249 from fairly basic comedic constructs 2 +6276 249 fairly basic comedic constructs 3 +6277 249 fairly basic 2 +6278 249 basic 2 +6279 249 comedic constructs 2 +6280 249 comedic 3 +6281 249 constructs 3 +6282 250 Black-and-white and unrealistic . 0 +6283 250 Black-and-white and unrealistic 1 +6284 250 Black-and-white and 2 +6285 250 Black-and-white 1 +6286 250 unrealistic 1 +6287 251 The film is predictable in the reassuring manner of a beautifully sung holiday carol . 3 +6288 251 is predictable in the reassuring manner of a beautifully sung holiday carol . 2 +6289 251 is predictable in the reassuring manner of a beautifully sung holiday carol 3 +6290 251 predictable in the reassuring manner of a beautifully sung holiday carol 4 +6291 251 in the reassuring manner of a beautifully sung holiday carol 3 +6292 251 the reassuring manner of a beautifully sung holiday carol 3 +6293 251 the reassuring manner 2 +6294 251 reassuring manner 3 +6295 251 reassuring 2 +6296 251 manner 2 +6297 251 of a beautifully sung holiday carol 3 +6298 251 a beautifully sung holiday carol 3 +6299 251 beautifully sung holiday carol 3 +6300 251 beautifully sung 3 +6301 251 sung 2 +6302 251 holiday carol 3 +6303 251 holiday 2 +6304 251 carol 2 +6305 252 The only camouflage Carvey should now be considering is a paper bag to wear over his head when he goes out into public , to avoid being recognized as the man who bilked unsuspecting moviegoers . 0 +6306 252 The only camouflage Carvey should now be considering 2 +6307 252 The only camouflage 2 +6308 252 only camouflage 2 +6309 252 camouflage 2 +6310 252 Carvey should now be considering 2 +6311 252 Carvey 2 +6312 252 should now be considering 2 +6313 252 should now 2 +6314 252 now 2 +6315 252 be considering 2 +6316 252 considering 2 +6317 252 is a paper bag to wear over his head when he goes out into public , to avoid being recognized as the man who bilked unsuspecting moviegoers . 0 +6318 252 is a paper bag to wear over his head when he goes out into public , to avoid being recognized as the man who bilked unsuspecting moviegoers 0 +6319 252 a paper bag to wear over his head when he goes out into public , to avoid being recognized as the man who bilked unsuspecting moviegoers 0 +6320 252 paper bag to wear over his head when he goes out into public , to avoid being recognized as the man who bilked unsuspecting moviegoers 0 +6321 252 paper 2 +6322 252 bag to wear over his head when he goes out into public , to avoid being recognized as the man who bilked unsuspecting moviegoers 2 +6323 252 bag 2 +6324 252 to wear over his head when he goes out into public , to avoid being recognized as the man who bilked unsuspecting moviegoers 1 +6325 252 wear over his head when he goes out into public , to avoid being recognized as the man who bilked unsuspecting moviegoers 1 +6326 252 wear over his head 2 +6327 252 wear 2 +6328 252 over his head 1 +6329 252 his head 2 +6330 252 when he goes out into public , to avoid being recognized as the man who bilked unsuspecting moviegoers 0 +6331 252 he goes out into public , to avoid being recognized as the man who bilked unsuspecting moviegoers 1 +6332 252 goes out into public , to avoid being recognized as the man who bilked unsuspecting moviegoers 1 +6333 252 goes out into public , 2 +6334 252 goes out into public 2 +6335 252 goes out 2 +6336 252 into public 2 +6337 252 public 2 +6338 252 to avoid being recognized as the man who bilked unsuspecting moviegoers 1 +6339 252 avoid being recognized as the man who bilked unsuspecting moviegoers 0 +6340 252 being recognized as the man who bilked unsuspecting moviegoers 1 +6341 252 recognized as the man who bilked unsuspecting moviegoers 1 +6342 252 recognized 3 +6343 252 as the man who bilked unsuspecting moviegoers 1 +6344 252 the man who bilked unsuspecting moviegoers 1 +6345 252 the man 3 +6346 252 who bilked unsuspecting moviegoers 1 +6347 252 bilked unsuspecting moviegoers 1 +6348 252 bilked 1 +6349 252 unsuspecting moviegoers 2 +6350 252 unsuspecting 2 +6351 252 moviegoers 2 +6352 253 Not about scares but a mood in which an ominous , pervasive , and unknown threat lurks just below the proceedings and adds an almost constant mindset of suspense . 3 +6353 253 Not about scares but a mood in which an ominous , pervasive , and unknown threat lurks just below the proceedings and adds an almost constant mindset of suspense 3 +6354 253 Not about scares 2 +6355 253 about scares 2 +6356 253 scares 2 +6357 253 but a mood in which an ominous , pervasive , and unknown threat lurks just below the proceedings and adds an almost constant mindset of suspense 3 +6358 253 a mood in which an ominous , pervasive , and unknown threat lurks just below the proceedings and adds an almost constant mindset of suspense 3 +6359 253 a mood 2 +6360 253 in which an ominous , pervasive , and unknown threat lurks just below the proceedings and adds an almost constant mindset of suspense 3 +6361 253 an ominous , pervasive , and unknown threat lurks just below the proceedings and adds an almost constant mindset of suspense 2 +6362 253 an ominous , pervasive , and unknown threat 2 +6363 253 ominous , pervasive , and unknown threat 2 +6364 253 ominous 2 +6365 253 , pervasive , and unknown threat 2 +6366 253 pervasive , and unknown threat 2 +6367 253 pervasive , and unknown 2 +6368 253 pervasive 3 +6369 253 , and unknown 2 +6370 253 unknown 2 +6371 253 threat 2 +6372 253 lurks just below the proceedings and adds an almost constant mindset of suspense 3 +6373 253 lurks just below the proceedings and 1 +6374 253 lurks just below the proceedings 2 +6375 253 lurks just 2 +6376 253 lurks 2 +6377 253 below the proceedings 2 +6378 253 below 1 +6379 253 the proceedings 2 +6380 253 proceedings 2 +6381 253 adds an almost constant mindset of suspense 3 +6382 253 adds 2 +6383 253 an almost constant mindset of suspense 3 +6384 253 an almost constant mindset 2 +6385 253 almost constant mindset 2 +6386 253 almost constant 2 +6387 253 constant 2 +6388 253 mindset 2 +6389 253 of suspense 2 +6390 253 suspense 2 +6391 254 Some of the computer animation is handsome , and various amusing sidekicks add much-needed levity to the otherwise bleak tale , but overall the film never rises above mediocrity . 1 +6392 254 Some of the computer animation is handsome , and various amusing sidekicks add much-needed levity to the otherwise bleak tale , but overall the film never rises above mediocrity 2 +6393 254 Some of the computer animation is handsome , and various amusing sidekicks add much-needed levity to the otherwise bleak tale , but 3 +6394 254 Some of the computer animation is handsome , and various amusing sidekicks add much-needed levity to the otherwise bleak tale , 3 +6395 254 Some of the computer animation is handsome , and various amusing sidekicks add much-needed levity to the otherwise bleak tale 2 +6396 254 Some of the computer animation is handsome , and 3 +6397 254 Some of the computer animation is handsome , 3 +6398 254 Some of the computer animation is handsome 3 +6399 254 Some of the computer animation 2 +6400 254 of the computer animation 2 +6401 254 the computer animation 2 +6402 254 computer animation 2 +6403 254 computer 2 +6404 254 animation 2 +6405 254 is handsome 3 +6406 254 handsome 2 +6407 254 various amusing sidekicks add much-needed levity to the otherwise bleak tale 3 +6408 254 various amusing sidekicks 3 +6409 254 various 2 +6410 254 amusing sidekicks 3 +6411 254 sidekicks 2 +6412 254 add much-needed levity to the otherwise bleak tale 3 +6413 254 add much-needed levity 3 +6414 254 add 3 +6415 254 much-needed levity 3 +6416 254 much-needed 2 +6417 254 levity 3 +6418 254 to the otherwise bleak tale 1 +6419 254 the otherwise bleak tale 2 +6420 254 otherwise bleak tale 1 +6421 254 otherwise bleak 1 +6422 254 bleak 1 +6423 254 overall the film never rises above mediocrity 2 +6424 254 overall the film 2 +6425 254 overall 2 +6426 254 never rises above mediocrity 1 +6427 254 rises above mediocrity 2 +6428 254 rises 2 +6429 254 above mediocrity 2 +6430 254 mediocrity 1 +6431 255 Offers the flash of rock videos fused with solid performances and eerie atmosphere . 4 +6432 255 the flash of rock videos fused with solid performances and eerie atmosphere . 3 +6433 255 the flash of rock videos 2 +6434 255 the flash 2 +6435 255 of rock videos 2 +6436 255 rock videos 2 +6437 255 rock 2 +6438 255 videos 2 +6439 255 fused with solid performances and eerie atmosphere . 4 +6440 255 fused with solid performances and eerie atmosphere 4 +6441 255 fused 2 +6442 255 with solid performances and eerie atmosphere 4 +6443 255 solid performances and eerie atmosphere 3 +6444 255 solid performances and 3 +6445 255 solid performances 3 +6446 255 eerie atmosphere 2 +6447 255 eerie 2 +6448 255 atmosphere 2 +6449 256 A breezy blend of art , history , esoteric musings and philosophy . 3 +6450 256 A breezy blend of art , history , esoteric musings and philosophy 3 +6451 256 A breezy blend 3 +6452 256 breezy blend 3 +6453 256 breezy 2 +6454 256 of art , history , esoteric musings and philosophy 2 +6455 256 art , history , esoteric musings and philosophy 2 +6456 256 , history , esoteric musings and philosophy 2 +6457 256 history , esoteric musings and philosophy 2 +6458 256 , esoteric musings and philosophy 2 +6459 256 esoteric musings and philosophy 2 +6460 256 esoteric 3 +6461 256 musings and philosophy 2 +6462 256 musings and 2 +6463 256 musings 2 +6464 256 philosophy 2 +6465 257 Now as a former Gong Show addict , I 'll admit it , my only complaint is that we did n't get more re-creations of all those famous moments from the show . 3 +6466 257 Now as a former Gong Show addict 3 +6467 257 as a former Gong Show addict 2 +6468 257 a former Gong Show addict 2 +6469 257 former Gong Show addict 1 +6470 257 former 2 +6471 257 Gong Show addict 2 +6472 257 Gong 2 +6473 257 Show addict 2 +6474 257 addict 1 +6475 257 , I 'll admit it , my only complaint is that we did n't get more re-creations of all those famous moments from the show . 3 +6476 257 , I 'll admit it , 2 +6477 257 I 'll admit it , 2 +6478 257 I 'll admit it 2 +6479 257 'll admit it 2 +6480 257 admit it 2 +6481 257 admit 2 +6482 257 my only complaint is that we did n't get more re-creations of all those famous moments from the show . 2 +6483 257 my only complaint 1 +6484 257 my 2 +6485 257 only complaint 2 +6486 257 complaint 1 +6487 257 is that we did n't get more re-creations of all those famous moments from the show . 2 +6488 257 is that we did n't get more re-creations of all those famous moments from the show 1 +6489 257 that we did n't get more re-creations of all those famous moments from the show 2 +6490 257 we did n't get more re-creations of all those famous moments from the show 1 +6491 257 did n't get more re-creations of all those famous moments from the show 2 +6492 257 get more re-creations of all those famous moments from the show 3 +6493 257 get more re-creations of all those famous moments 3 +6494 257 more re-creations of all those famous moments 3 +6495 257 more re-creations 2 +6496 257 re-creations 2 +6497 257 of all those famous moments 3 +6498 257 all those famous moments 3 +6499 257 those famous moments 3 +6500 257 famous moments 3 +6501 257 from the show 2 +6502 257 the show 2 +6503 258 Genuinely unnerving . 3 +6504 258 Genuinely unnerving 1 +6505 258 Genuinely 2 +6506 258 unnerving 2 +6507 259 The increasingly diverse French director has created a film that one can honestly describe as looking , sounding and simply feeling like no other film in recent history . 4 +6508 259 The increasingly diverse French director 3 +6509 259 increasingly diverse French director 4 +6510 259 increasingly diverse 1 +6511 259 increasingly 2 +6512 259 diverse 3 +6513 259 French director 2 +6514 259 has created a film that one can honestly describe as looking , sounding and simply feeling like no other film in recent history . 3 +6515 259 has created a film that one can honestly describe as looking , sounding and simply feeling like no other film in recent history 3 +6516 259 created a film that one can honestly describe as looking , sounding and simply feeling like no other film in recent history 3 +6517 259 created a film 2 +6518 259 that one can honestly describe as looking , sounding and simply feeling like no other film in recent history 3 +6519 259 one can honestly describe as looking , sounding and simply feeling like no other film in recent history 3 +6520 259 can honestly describe as looking , sounding and simply feeling like no other film in recent history 4 +6521 259 can honestly 2 +6522 259 describe as looking , sounding and simply feeling like no other film in recent history 3 +6523 259 describe 2 +6524 259 as looking , sounding and simply feeling like no other film in recent history 3 +6525 259 looking , sounding and simply feeling like no other film in recent history 3 +6526 259 looking , sounding and 2 +6527 259 looking , sounding 2 +6528 259 looking , 2 +6529 259 simply feeling like no other film in recent history 3 +6530 259 feeling like no other film in recent history 4 +6531 259 like no other film in recent history 3 +6532 259 no other film in recent history 2 +6533 259 no other film 2 +6534 259 other film 2 +6535 259 in recent history 2 +6536 260 One of those joyous films that leaps over national boundaries and celebrates universal human nature . 3 +6537 260 One of those 2 +6538 260 of those 2 +6539 260 joyous films that leaps over national boundaries and celebrates universal human nature . 4 +6540 260 joyous films that leaps over national boundaries and celebrates universal human nature 4 +6541 260 joyous 3 +6542 260 films that leaps over national boundaries and celebrates universal human nature 4 +6543 260 that leaps over national boundaries and celebrates universal human nature 4 +6544 260 leaps over national boundaries and celebrates universal human nature 3 +6545 260 leaps over national boundaries and 2 +6546 260 leaps over national boundaries 3 +6547 260 leaps 2 +6548 260 over national boundaries 2 +6549 260 national boundaries 2 +6550 260 national 2 +6551 260 boundaries 2 +6552 260 celebrates universal human nature 3 +6553 260 celebrates 3 +6554 260 universal human nature 2 +6555 260 human nature 3 +6556 260 nature 2 +6557 261 A difficult but worthy film that bites off more than it can chew by linking the massacre of Armenians in 1915 with some difficult relationships in the present . 2 +6558 261 A difficult but worthy film that bites off more than it can chew by linking the massacre of Armenians in 1915 with some difficult relationships in the present 3 +6559 261 A difficult but worthy film that bites off more than it can chew by linking the massacre of Armenians 3 +6560 261 A difficult but worthy film that bites off more than it can chew by linking the massacre 3 +6561 261 A difficult but worthy film 3 +6562 261 difficult but worthy film 3 +6563 261 difficult but worthy 3 +6564 261 difficult but 2 +6565 261 worthy 4 +6566 261 that bites off more than it can chew by linking the massacre 1 +6567 261 bites off more than it can chew by linking the massacre 0 +6568 261 bites 2 +6569 261 off more than it can chew by linking the massacre 1 +6570 261 off more 2 +6571 261 than it can chew by linking the massacre 1 +6572 261 it can chew by linking the massacre 1 +6573 261 can chew by linking the massacre 2 +6574 261 chew by linking the massacre 2 +6575 261 chew 2 +6576 261 by linking the massacre 2 +6577 261 linking the massacre 1 +6578 261 linking 2 +6579 261 the massacre 1 +6580 261 massacre 2 +6581 261 of Armenians 2 +6582 261 Armenians 2 +6583 261 in 1915 with some difficult relationships in the present 2 +6584 261 1915 with some difficult relationships in the present 2 +6585 261 1915 2 +6586 261 with some difficult relationships in the present 2 +6587 261 some difficult relationships in the present 2 +6588 261 some difficult relationships 1 +6589 261 difficult relationships 2 +6590 261 in the present 3 +6591 261 the present 2 +6592 261 present 2 +6593 262 Halfway through the movie , the humor dwindles . 1 +6594 262 Halfway through the movie 2 +6595 262 Halfway 2 +6596 262 through the movie 2 +6597 262 , the humor dwindles . 1 +6598 262 the humor dwindles . 1 +6599 262 the humor 2 +6600 262 dwindles . 1 +6601 262 dwindles 1 +6602 263 Witty and often surprising , a dark little morality tale disguised as a romantic comedy . 4 +6603 263 Witty and often surprising 3 +6604 263 Witty and 3 +6605 263 Witty 3 +6606 263 often surprising 3 +6607 263 surprising 2 +6608 263 , a dark little morality tale disguised as a romantic comedy . 3 +6609 263 a dark little morality tale disguised as a romantic comedy . 2 +6610 263 a dark little morality tale 2 +6611 263 dark little morality tale 3 +6612 263 little morality tale 3 +6613 263 morality tale 3 +6614 263 morality 2 +6615 263 disguised as a romantic comedy . 2 +6616 263 disguised as a romantic comedy 2 +6617 263 disguised 1 +6618 263 as a romantic comedy 2 +6619 263 a romantic comedy 3 +6620 264 One senses in World Traveler and in his earlier film that Freundlich bears a grievous but obscure complaint against fathers , and circles it obsessively , without making contact . 1 +6621 264 One senses in World Traveler and in his earlier film that Freundlich 2 +6622 264 One senses 3 +6623 264 senses 2 +6624 264 in World Traveler and in his earlier film that Freundlich 2 +6625 264 in World Traveler and in his earlier film 2 +6626 264 in World Traveler and 2 +6627 264 in World Traveler 2 +6628 264 World Traveler 2 +6629 264 Traveler 2 +6630 264 in his earlier film 2 +6631 264 his earlier film 2 +6632 264 earlier film 2 +6633 264 earlier 2 +6634 264 that Freundlich 2 +6635 264 Freundlich 2 +6636 264 bears a grievous but obscure complaint against fathers , and circles it obsessively , without making contact . 1 +6637 264 bears a grievous but obscure complaint against fathers , and circles it obsessively , without making contact 1 +6638 264 bears a grievous but obscure complaint against fathers , and 2 +6639 264 bears a grievous but obscure complaint against fathers , 1 +6640 264 bears a grievous but obscure complaint against fathers 1 +6641 264 bears 2 +6642 264 a grievous but obscure complaint against fathers 2 +6643 264 a grievous but obscure complaint 2 +6644 264 grievous but obscure complaint 1 +6645 264 grievous but obscure 1 +6646 264 grievous but 1 +6647 264 grievous 1 +6648 264 obscure 2 +6649 264 against fathers 2 +6650 264 fathers 2 +6651 264 circles it obsessively , without making contact 2 +6652 264 circles it obsessively , 2 +6653 264 circles it obsessively 2 +6654 264 circles it 2 +6655 264 circles 2 +6656 264 obsessively 1 +6657 264 without making contact 2 +6658 264 making contact 2 +6659 264 contact 2 +6660 265 In fact , even better . 3 +6661 265 In fact , even better 3 +6662 265 fact , even better 3 +6663 265 fact , 3 +6664 265 fact 2 +6665 265 even better 3 +6666 266 ... a preachy parable stylized with a touch of John Woo bullet ballet . 2 +6667 266 a preachy parable stylized with a touch of John Woo bullet ballet . 1 +6668 266 a preachy parable 2 +6669 266 preachy parable 1 +6670 266 preachy 1 +6671 266 stylized with a touch of John Woo bullet ballet . 3 +6672 266 stylized with a touch of John Woo bullet ballet 3 +6673 266 with a touch of John Woo bullet ballet 2 +6674 266 a touch of John Woo bullet ballet 2 +6675 266 a touch 2 +6676 266 touch 3 +6677 266 of John Woo bullet ballet 2 +6678 266 John Woo bullet ballet 2 +6679 266 Woo bullet ballet 2 +6680 266 Woo 3 +6681 266 bullet ballet 2 +6682 266 bullet 2 +6683 266 ballet 2 +6684 267 Proves that some movie formulas do n't need messing with -- like the big-bug movie . 2 +6685 267 Proves that some movie formulas do n't need messing with -- like the big-bug movie 2 +6686 267 Proves that some movie formulas do n't need messing with -- 3 +6687 267 Proves that some movie formulas do n't need messing with 3 +6688 267 that some movie formulas do n't need messing with 3 +6689 267 some movie formulas do n't need messing with 2 +6690 267 some movie formulas 2 +6691 267 movie formulas 2 +6692 267 formulas 2 +6693 267 do n't need messing with 2 +6694 267 need messing with 1 +6695 267 messing with 2 +6696 267 messing 1 +6697 267 like the big-bug movie 2 +6698 267 the big-bug movie 2 +6699 267 big-bug movie 2 +6700 267 big-bug 2 +6701 268 An uplifting , largely bogus story . 2 +6702 268 An uplifting , largely bogus story 3 +6703 268 An uplifting , 3 +6704 268 An uplifting 3 +6705 268 largely bogus story 0 +6706 268 bogus story 0 +6707 268 bogus 1 +6708 269 Thanks to confident filmmaking and a pair of fascinating performances , the way to that destination is a really special walk in the woods . 4 +6709 269 Thanks to confident filmmaking and a pair of fascinating performances 4 +6710 269 to confident filmmaking and a pair of fascinating performances 3 +6711 269 confident filmmaking and a pair of fascinating performances 4 +6712 269 confident filmmaking and 3 +6713 269 confident filmmaking 3 +6714 269 confident 4 +6715 269 a pair of fascinating performances 3 +6716 269 a pair 2 +6717 269 pair 2 +6718 269 of fascinating performances 4 +6719 269 fascinating performances 2 +6720 269 , the way to that destination is a really special walk in the woods . 3 +6721 269 the way to that destination is a really special walk in the woods . 2 +6722 269 the way to that destination 2 +6723 269 the way 2 +6724 269 to that destination 2 +6725 269 that destination 2 +6726 269 destination 2 +6727 269 is a really special walk in the woods . 3 +6728 269 is a really special walk in the woods 3 +6729 269 a really special walk in the woods 3 +6730 269 a really special walk 3 +6731 269 really special walk 4 +6732 269 special walk 3 +6733 269 special 3 +6734 269 walk 2 +6735 269 in the woods 2 +6736 269 the woods 2 +6737 269 woods 2 +6738 270 Superbly photographed and staged by Mendes with a series of riveting set pieces the likes of which mainstream audiences have rarely seen . 4 +6739 270 Superbly 3 +6740 270 photographed and staged by Mendes with a series of riveting set pieces the likes of which mainstream audiences have rarely seen . 3 +6741 270 photographed and staged by Mendes with a series of riveting set pieces the likes of which mainstream audiences have rarely seen 3 +6742 270 photographed and staged by Mendes with a series of riveting set pieces 3 +6743 270 photographed and staged by Mendes 2 +6744 270 photographed and staged 2 +6745 270 photographed and 2 +6746 270 photographed 2 +6747 270 staged 2 +6748 270 by Mendes 2 +6749 270 Mendes 2 +6750 270 with a series of riveting set pieces 4 +6751 270 a series of riveting set pieces 3 +6752 270 of riveting set pieces 3 +6753 270 riveting set pieces 3 +6754 270 set pieces 2 +6755 270 set 2 +6756 270 the likes of which mainstream audiences have rarely seen 3 +6757 270 likes of which mainstream audiences have rarely seen 3 +6758 270 likes 3 +6759 270 of which mainstream audiences have rarely seen 3 +6760 270 mainstream audiences have rarely seen 3 +6761 270 mainstream audiences 2 +6762 270 mainstream 2 +6763 270 have rarely seen 3 +6764 270 have rarely 2 +6765 270 rarely 2 +6766 271 A mesmerizing cinematic poem from the first frame to the last . 4 +6767 271 A mesmerizing cinematic poem from the first frame to the last 4 +6768 271 A mesmerizing cinematic poem 4 +6769 271 mesmerizing cinematic poem 3 +6770 271 mesmerizing 4 +6771 271 cinematic poem 3 +6772 271 poem 2 +6773 271 from the first frame to the last 2 +6774 271 the first frame to the last 2 +6775 271 the first frame 2 +6776 271 first frame 2 +6777 271 to the last 2 +6778 271 the last 2 +6779 272 After the first 10 minutes , which is worth seeing 3 +6780 272 the first 10 minutes , which is worth seeing 2 +6781 272 the first 10 minutes , 2 +6782 272 the first 10 minutes 2 +6783 272 first 10 minutes 2 +6784 272 10 minutes 2 +6785 272 10 3 +6786 272 which is worth seeing 4 +6787 272 is worth seeing 3 +6788 272 seeing 2 +6789 272 sinks 2 +6790 272 an abyss 1 +6791 272 abyss 1 +6792 272 bad alternative music 1 +6793 272 alternative music 2 +6794 272 alternative 2 +6795 273 It has become apparent that the franchise 's best years are long past . 1 +6796 273 has become apparent that the franchise 's best years are long past . 1 +6797 273 has become apparent that the franchise 's best years are long past 0 +6798 273 become apparent that the franchise 's best years are long past 0 +6799 273 become apparent 2 +6800 273 become 2 +6801 273 apparent 2 +6802 273 that the franchise 's best years are long past 1 +6803 273 the franchise 's best years are long past 0 +6804 273 the franchise 's best years 3 +6805 273 the franchise 's 2 +6806 273 franchise 's 2 +6807 273 franchise 2 +6808 273 best years 2 +6809 273 are long past 2 +6810 273 long past 2 +6811 273 long 2 +6812 273 past 2 +6813 274 Screenwriter Chris ver Weil 's directing debut is good-natured and never dull , but its virtues are small and easily overshadowed by its predictability . 2 +6814 274 Screenwriter Chris ver Weil 's directing debut is good-natured and never dull , but its virtues are small and easily overshadowed by its predictability 3 +6815 274 Screenwriter Chris ver Weil 's directing debut is good-natured and never dull , but 3 +6816 274 Screenwriter Chris ver Weil 's directing debut is good-natured and never dull , 3 +6817 274 Screenwriter Chris ver Weil 's directing debut is good-natured and never dull 4 +6818 274 Screenwriter Chris ver Weil 's directing debut 2 +6819 274 Screenwriter Chris ver Weil 's 2 +6820 274 Screenwriter 2 +6821 274 Chris ver Weil 's 2 +6822 274 Chris 3 +6823 274 ver Weil 's 2 +6824 274 ver 2 +6825 274 Weil 's 2 +6826 274 Weil 2 +6827 274 directing debut 2 +6828 274 directing 2 +6829 274 debut 2 +6830 274 is good-natured and never dull 3 +6831 274 good-natured and never dull 3 +6832 274 good-natured and 4 +6833 274 good-natured 3 +6834 274 never dull 3 +6835 274 its virtues are small and easily overshadowed by its predictability 1 +6836 274 its virtues 2 +6837 274 are small and easily overshadowed by its predictability 1 +6838 274 small and easily overshadowed by its predictability 0 +6839 274 small and 2 +6840 274 small 2 +6841 274 easily overshadowed by its predictability 2 +6842 274 overshadowed by its predictability 1 +6843 274 overshadowed 1 +6844 274 by its predictability 1 +6845 274 its predictability 1 +6846 274 predictability 2 +6847 275 Too much of Storytelling moves away from Solondz 's social critique , casting its audience as that of intellectual lector in contemplation of the auteur 's professional injuries . 1 +6848 275 Too much of Storytelling 1 +6849 275 of Storytelling 2 +6850 275 moves away from Solondz 's social critique , casting its audience as that of intellectual lector in contemplation of the auteur 's professional injuries . 2 +6851 275 moves away from Solondz 's social critique , casting its audience as that of intellectual lector in contemplation of the auteur 's professional injuries 2 +6852 275 moves away from Solondz 's social critique , 2 +6853 275 moves away from Solondz 's social critique 2 +6854 275 moves away 2 +6855 275 moves 2 +6856 275 away 2 +6857 275 from Solondz 's social critique 2 +6858 275 Solondz 's social critique 2 +6859 275 Solondz 's 2 +6860 275 Solondz 2 +6861 275 social critique 2 +6862 275 social 2 +6863 275 critique 2 +6864 275 casting its audience as that of intellectual lector in contemplation of the auteur 's professional injuries 2 +6865 275 casting its audience 2 +6866 275 casting 2 +6867 275 its audience 2 +6868 275 as that of intellectual lector in contemplation of the auteur 's professional injuries 2 +6869 275 that of intellectual lector in contemplation of the auteur 's professional injuries 2 +6870 275 of intellectual lector in contemplation of the auteur 's professional injuries 3 +6871 275 intellectual lector in contemplation of the auteur 's professional injuries 3 +6872 275 intellectual lector 2 +6873 275 intellectual 2 +6874 275 lector 2 +6875 275 in contemplation of the auteur 's professional injuries 2 +6876 275 contemplation of the auteur 's professional injuries 2 +6877 275 contemplation 3 +6878 275 of the auteur 's professional injuries 2 +6879 275 the auteur 's professional injuries 2 +6880 275 the auteur 's 2 +6881 275 auteur 's 2 +6882 275 auteur 2 +6883 275 professional injuries 2 +6884 275 professional 3 +6885 275 injuries 2 +6886 276 Ultimately , Sarah 's dedication to finding her husband seems more psychotic than romantic , and nothing in the movie makes a convincing case that one woman 's broken heart outweighs all the loss we witness . 1 +6887 276 , Sarah 's dedication to finding her husband seems more psychotic than romantic , and nothing in the movie makes a convincing case that one woman 's broken heart outweighs all the loss we witness . 1 +6888 276 Sarah 's dedication to finding her husband seems more psychotic than romantic , and nothing in the movie makes a convincing case that one woman 's broken heart outweighs all the loss we witness . 1 +6889 276 Sarah 's dedication to finding her husband seems more psychotic than romantic , and nothing in the movie makes a convincing case that one woman 's broken heart outweighs all the loss we witness 1 +6890 276 Sarah 's dedication to finding her husband seems more psychotic than romantic , and 1 +6891 276 Sarah 's dedication to finding her husband seems more psychotic than romantic , 1 +6892 276 Sarah 's dedication to finding her husband seems more psychotic than romantic 1 +6893 276 Sarah 's dedication to finding her husband 2 +6894 276 Sarah 's dedication 2 +6895 276 Sarah 's 2 +6896 276 dedication 3 +6897 276 to finding her husband 2 +6898 276 finding her husband 2 +6899 276 finding 2 +6900 276 her husband 2 +6901 276 husband 2 +6902 276 seems more psychotic than romantic 2 +6903 276 more psychotic than romantic 1 +6904 276 psychotic than romantic 1 +6905 276 psychotic 1 +6906 276 than romantic 3 +6907 276 nothing in the movie makes a convincing case that one woman 's broken heart outweighs all the loss we witness 1 +6908 276 nothing in the movie 2 +6909 276 in the movie 2 +6910 276 makes a convincing case that one woman 's broken heart outweighs all the loss we witness 2 +6911 276 a convincing case that one woman 's broken heart outweighs all the loss we witness 3 +6912 276 convincing case that one woman 's broken heart outweighs all the loss we witness 2 +6913 276 convincing case that one woman 's broken heart outweighs all the loss we 2 +6914 276 convincing case 3 +6915 276 convincing 3 +6916 276 that one woman 's broken heart outweighs all the loss we 2 +6917 276 one woman 's broken heart outweighs all the loss we 2 +6918 276 one woman 's broken heart 2 +6919 276 one woman 's 2 +6920 276 woman 's 2 +6921 276 broken heart 2 +6922 276 broken 2 +6923 276 outweighs all the loss we 2 +6924 276 outweighs 2 +6925 276 all the loss we 2 +6926 276 all the loss 1 +6927 276 the loss 2 +6928 276 loss 1 +6929 276 witness 2 +6930 277 The jokes are flat , and the action looks fake . 0 +6931 277 The jokes are flat , and the action looks fake 1 +6932 277 The jokes are flat , and 2 +6933 277 The jokes are flat , 0 +6934 277 The jokes are flat 1 +6935 277 The jokes 2 +6936 277 are flat 1 +6937 277 flat 1 +6938 277 the action looks fake 1 +6939 277 looks fake 1 +6940 277 looks 2 +6941 277 fake 1 +6942 278 A mildly enjoyable if toothless adaptation of a much better book . 2 +6943 278 A mildly enjoyable if toothless adaptation of a much better book 3 +6944 278 A mildly enjoyable if toothless adaptation 2 +6945 278 mildly enjoyable if toothless adaptation 2 +6946 278 mildly enjoyable if toothless 2 +6947 278 mildly enjoyable if 3 +6948 278 mildly enjoyable 3 +6949 278 mildly 2 +6950 278 toothless 1 +6951 278 of a much better book 2 +6952 278 a much better book 2 +6953 278 much better book 2 +6954 278 much better 3 +6955 278 book 2 +6956 279 Festers in just such a dungpile that you 'd swear you were watching monkeys flinging their feces at you . 0 +6957 279 Festers in just such a dungpile that you 'd swear you 0 +6958 279 Festers 2 +6959 279 in just such a dungpile that you 'd swear you 1 +6960 279 just such a dungpile that you 'd swear you 1 +6961 279 just such a dungpile 0 +6962 279 such a dungpile 0 +6963 279 a dungpile 1 +6964 279 dungpile 2 +6965 279 that you 'd swear you 2 +6966 279 you 'd swear you 3 +6967 279 'd swear you 2 +6968 279 swear you 2 +6969 279 swear 2 +6970 279 were watching monkeys flinging their feces at you . 0 +6971 279 were watching monkeys flinging their feces at you 2 +6972 279 watching monkeys flinging their feces at you 1 +6973 279 watching monkeys 2 +6974 279 monkeys 2 +6975 279 flinging their feces at you 1 +6976 279 flinging their feces 0 +6977 279 flinging 2 +6978 279 their feces 0 +6979 279 feces 1 +6980 279 at you 2 +6981 280 In addition to the overcooked , ham-fisted direction , which has all the actors reaching for the back row , the dialogue sounds like horrible poetry . 0 +6982 280 In addition to the overcooked , ham-fisted direction , which has all the actors reaching for the back row 1 +6983 280 addition to the overcooked , ham-fisted direction , which has all the actors reaching for the back row 1 +6984 280 addition 2 +6985 280 to the overcooked , ham-fisted direction , which has all the actors reaching for the back row 0 +6986 280 the overcooked , ham-fisted direction , which has all the actors reaching for the back row 0 +6987 280 the overcooked , ham-fisted direction , 1 +6988 280 the overcooked , ham-fisted direction 1 +6989 280 overcooked , ham-fisted direction 1 +6990 280 overcooked 1 +6991 280 , ham-fisted direction 2 +6992 280 ham-fisted direction 2 +6993 280 direction 2 +6994 280 which has all the actors reaching for the back row 2 +6995 280 has all the actors reaching for the back row 1 +6996 280 all the actors reaching for the back row 2 +6997 280 all the actors 2 +6998 280 the actors 2 +6999 280 reaching for the back row 2 +7000 280 reaching 2 +7001 280 for the back row 2 +7002 280 the back row 2 +7003 280 back row 2 +7004 280 row 2 +7005 280 , the dialogue sounds like horrible poetry . 0 +7006 280 the dialogue sounds like horrible poetry . 0 +7007 280 the dialogue 2 +7008 280 sounds like horrible poetry . 0 +7009 280 sounds like horrible poetry 1 +7010 280 sounds 2 +7011 280 like horrible poetry 1 +7012 280 horrible poetry 1 +7013 280 horrible 0 +7014 281 A vile , incoherent mess ... a scummy ripoff of David Cronenberg 's brilliant ` Videodrome . ' 0 +7015 281 A vile , incoherent mess 0 +7016 281 vile , incoherent mess 0 +7017 281 vile , incoherent 0 +7018 281 vile 1 +7019 281 , incoherent 1 +7020 281 incoherent 1 +7021 281 ... a scummy ripoff of David Cronenberg 's brilliant ` Videodrome . ' 0 +7022 281 a scummy ripoff of David Cronenberg 's brilliant ` Videodrome . ' 1 +7023 281 a scummy ripoff of David Cronenberg 's brilliant ` Videodrome . 0 +7024 281 a scummy ripoff of David Cronenberg 's brilliant ` Videodrome 0 +7025 281 a scummy ripoff of David Cronenberg 0 +7026 281 a scummy ripoff 1 +7027 281 scummy ripoff 0 +7028 281 scummy 1 +7029 281 ripoff 0 +7030 281 of David Cronenberg 2 +7031 281 David Cronenberg 2 +7032 281 Cronenberg 2 +7033 281 's brilliant ` Videodrome 3 +7034 281 's brilliant ` 4 +7035 281 's brilliant 3 +7036 281 Videodrome 2 +7037 282 First , for a movie that tries to be smart , it 's kinda dumb . 1 +7038 282 , for a movie that tries to be smart , it 's kinda dumb . 1 +7039 282 for a movie that tries to be smart , it 's kinda dumb . 0 +7040 282 for a movie that tries to be smart 1 +7041 282 a movie that tries to be smart 2 +7042 282 that tries to be smart 1 +7043 282 tries to be smart 1 +7044 282 to be smart 2 +7045 282 be smart 2 +7046 282 , it 's kinda dumb . 1 +7047 282 it 's kinda dumb . 1 +7048 282 's kinda dumb . 1 +7049 282 's kinda dumb 1 +7050 282 kinda dumb 1 +7051 282 kinda 2 +7052 282 dumb 1 +7053 283 I was sent a copyof this film to review on DVD . 2 +7054 283 was sent a copyof this film to review on DVD . 2 +7055 283 was sent a copyof this film to review on DVD 2 +7056 283 sent a copyof this film to review on DVD 2 +7057 283 sent a copyof 2 +7058 283 sent 2 +7059 283 a copyof 2 +7060 283 copyof 1 +7061 283 this film to review on DVD 2 +7062 283 film to review on DVD 2 +7063 283 to review on DVD 1 +7064 283 review on DVD 2 +7065 283 review 2 +7066 283 on DVD 2 +7067 284 ... silly humbuggery ... 1 +7068 284 silly humbuggery ... 1 +7069 284 humbuggery ... 1 +7070 284 humbuggery 1 +7071 285 Is n't as sharp as the original ... Despite some visual virtues , ` Blade II ' just does n't cut it . 1 +7072 285 Is n't as sharp as the original ... Despite some visual virtues , ` Blade II ' just does n't cut it 2 +7073 285 Is n't as sharp as the original ... 2 +7074 285 Is n't as sharp as the original 1 +7075 285 as sharp as the original 3 +7076 285 sharp as the original 4 +7077 285 as the original 3 +7078 285 Despite some visual virtues , ` Blade II ' just does n't cut it 2 +7079 285 Despite some visual virtues 2 +7080 285 some visual virtues 3 +7081 285 visual virtues 3 +7082 285 , ` Blade II ' just does n't cut it 0 +7083 285 ` Blade II ' just does n't cut it 1 +7084 285 ` Blade II ' 2 +7085 285 Blade II ' 2 +7086 285 Blade 2 +7087 285 II ' 2 +7088 285 II 2 +7089 285 just does n't cut it 0 +7090 285 does n't cut it 1 +7091 285 cut it 2 +7092 286 A smart , arch and rather cold-blooded comedy . 3 +7093 286 A smart , arch and rather cold-blooded comedy 4 +7094 286 A smart , 3 +7095 286 A smart 4 +7096 286 arch and rather cold-blooded comedy 0 +7097 286 arch and 2 +7098 286 arch 2 +7099 286 rather cold-blooded comedy 1 +7100 286 cold-blooded comedy 2 +7101 286 cold-blooded 2 +7102 287 -LRB- A -RRB- rather thinly-conceived movie . 0 +7103 287 -LRB- A -RRB- 2 +7104 287 A -RRB- 2 +7105 287 rather thinly-conceived movie . 2 +7106 287 thinly-conceived movie . 1 +7107 287 thinly-conceived movie 2 +7108 287 thinly-conceived 1 +7109 288 Its flame-like , roiling black-and-white inspires trembling and gratitude . 3 +7110 288 Its flame-like 2 +7111 288 flame-like 2 +7112 288 , roiling black-and-white inspires trembling and gratitude . 3 +7113 288 roiling black-and-white inspires trembling and gratitude . 3 +7114 288 roiling black-and-white inspires 3 +7115 288 roiling 1 +7116 288 black-and-white inspires 3 +7117 288 inspires 4 +7118 288 trembling and gratitude . 2 +7119 288 trembling and gratitude 3 +7120 288 trembling and 2 +7121 288 trembling 2 +7122 288 gratitude 3 +7123 289 Robinson 's web of suspense matches the page-turning frenzy that Clancy creates . 4 +7124 289 Robinson 's web of suspense 3 +7125 289 Robinson 's web 2 +7126 289 Robinson 's 2 +7127 289 Robinson 2 +7128 289 web 2 +7129 289 matches the page-turning frenzy that Clancy creates . 3 +7130 289 matches the page-turning frenzy that Clancy creates 2 +7131 289 matches the page-turning frenzy 3 +7132 289 matches 2 +7133 289 the page-turning frenzy 2 +7134 289 page-turning frenzy 2 +7135 289 page-turning 3 +7136 289 frenzy 2 +7137 289 that Clancy creates 2 +7138 289 Clancy creates 2 +7139 289 Clancy 2 +7140 289 creates 2 +7141 290 A slight but sweet film . 3 +7142 290 A slight but sweet film 3 +7143 290 slight but sweet film 2 +7144 290 slight but sweet 3 +7145 290 slight but 1 +7146 291 Got a David Lynch jones ? 2 +7147 291 Got a David Lynch jones 2 +7148 291 Got a David Lynch 2 +7149 291 Got 3 +7150 291 a David Lynch 2 +7151 291 David Lynch 2 +7152 291 Lynch 2 +7153 292 Earnest and tentative even when it aims to shock . 2 +7154 292 Earnest and tentative 3 +7155 292 Earnest and 2 +7156 292 tentative 2 +7157 292 even when it aims to shock . 2 +7158 292 even when it aims to shock 2 +7159 292 when it aims to shock 2 +7160 292 it aims to shock 2 +7161 292 aims to shock 3 +7162 292 to shock 2 +7163 293 Time of Favor could have given audiences the time of day by concentrating on the elements of a revealing alienation among a culture of people who sadly are at hostile odds with one another through recklessness and retaliation . 1 +7164 293 Time of Favor 2 +7165 293 of Favor 2 +7166 293 Favor 3 +7167 293 could have given audiences the time of day by concentrating on the elements of a revealing alienation among a culture of people who sadly are at hostile odds with one another through recklessness and retaliation . 1 +7168 293 could have given audiences the time of day by concentrating on the elements of a revealing alienation among a culture of people who sadly are at hostile odds with one another through recklessness and retaliation 3 +7169 293 have given audiences the time of day by concentrating on the elements of a revealing alienation among a culture of people who sadly are at hostile odds with one another through recklessness and retaliation 3 +7170 293 given audiences the time of day by concentrating on the elements of a revealing alienation among a culture of people who sadly are at hostile odds with one another through recklessness and retaliation 2 +7171 293 given audiences 3 +7172 293 given 2 +7173 293 the time of day by concentrating on the elements of a revealing alienation among a culture of people who sadly are at hostile odds with one another through recklessness and retaliation 2 +7174 293 the time 2 +7175 293 of day by concentrating on the elements of a revealing alienation among a culture of people who sadly are at hostile odds with one another through recklessness and retaliation 1 +7176 293 day by concentrating on the elements of a revealing alienation among a culture of people who sadly are at hostile odds with one another through recklessness and retaliation 2 +7177 293 by concentrating on the elements of a revealing alienation among a culture of people who sadly are at hostile odds with one another through recklessness and retaliation 2 +7178 293 concentrating on the elements of a revealing alienation among a culture of people who sadly are at hostile odds with one another through recklessness and retaliation 3 +7179 293 concentrating on the elements of a revealing alienation 2 +7180 293 concentrating 2 +7181 293 on the elements of a revealing alienation 2 +7182 293 the elements of a revealing alienation 2 +7183 293 the elements 2 +7184 293 elements 2 +7185 293 of a revealing alienation 2 +7186 293 a revealing alienation 2 +7187 293 revealing alienation 2 +7188 293 revealing 2 +7189 293 alienation 1 +7190 293 among a culture of people who sadly are at hostile odds with one another through recklessness and retaliation 1 +7191 293 among 2 +7192 293 a culture of people who sadly are at hostile odds with one another through recklessness and retaliation 1 +7193 293 a culture 2 +7194 293 of people who sadly are at hostile odds with one another through recklessness and retaliation 1 +7195 293 people who sadly are at hostile odds with one another through recklessness and retaliation 2 +7196 293 who sadly are at hostile odds with one another through recklessness and retaliation 1 +7197 293 sadly are at hostile odds with one another through recklessness and retaliation 1 +7198 293 sadly 1 +7199 293 are at hostile odds with one another through recklessness and retaliation 2 +7200 293 are at hostile odds with one another 2 +7201 293 at hostile odds with one another 1 +7202 293 hostile odds with one another 2 +7203 293 hostile odds 2 +7204 293 hostile 1 +7205 293 odds 2 +7206 293 with one another 2 +7207 293 one another 2 +7208 293 through recklessness and retaliation 1 +7209 293 recklessness and retaliation 2 +7210 293 recklessness and 2 +7211 293 recklessness 2 +7212 293 retaliation 2 +7213 294 `` Austin Powers in Goldmember '' has the right stuff for silly summer entertainment and has enough laughs to sustain interest to the end . 4 +7214 294 Austin Powers in Goldmember '' has the right stuff for silly summer entertainment and has enough laughs to sustain interest to the end . 3 +7215 294 Austin Powers in Goldmember 2 +7216 294 Austin Powers 2 +7217 294 Austin 2 +7218 294 in Goldmember 2 +7219 294 Goldmember 2 +7220 294 '' has the right stuff for silly summer entertainment and has enough laughs to sustain interest to the end . 3 +7221 294 has the right stuff for silly summer entertainment and has enough laughs to sustain interest to the end . 3 +7222 294 has the right stuff for silly summer entertainment and has enough laughs to sustain interest to the end 3 +7223 294 has the right stuff for silly summer entertainment and 3 +7224 294 has the right stuff for silly summer entertainment 3 +7225 294 the right stuff for silly summer entertainment 3 +7226 294 the right stuff 2 +7227 294 right stuff 3 +7228 294 for silly summer entertainment 3 +7229 294 silly summer entertainment 3 +7230 294 summer entertainment 3 +7231 294 entertainment 3 +7232 294 has enough laughs to sustain interest to the end 4 +7233 294 enough laughs to sustain interest to the end 3 +7234 294 laughs to sustain interest to the end 2 +7235 294 to sustain interest to the end 2 +7236 294 sustain interest to the end 3 +7237 294 sustain interest 3 +7238 294 sustain 2 +7239 294 interest 2 +7240 294 to the end 2 +7241 294 the end 2 +7242 295 What puzzles me is the lack of emphasis on music in Britney Spears ' first movie . 2 +7243 295 puzzles me is the lack of emphasis on music in Britney Spears ' first movie . 1 +7244 295 puzzles me is the lack of emphasis on music in Britney Spears ' first movie 2 +7245 295 puzzles 2 +7246 295 me is the lack of emphasis on music in Britney Spears ' first movie 2 +7247 295 is the lack of emphasis on music in Britney Spears ' first movie 0 +7248 295 the lack of emphasis on music in Britney Spears ' first movie 2 +7249 295 the lack 2 +7250 295 of emphasis on music in Britney Spears ' first movie 2 +7251 295 emphasis on music in Britney Spears ' first movie 2 +7252 295 emphasis 3 +7253 295 on music in Britney Spears ' first movie 2 +7254 295 music in Britney Spears ' first movie 2 +7255 295 in Britney Spears ' first movie 2 +7256 295 Britney Spears ' first movie 2 +7257 295 Britney Spears ' 2 +7258 295 Britney 2 +7259 295 Spears ' 2 +7260 295 Spears 2 +7261 295 first movie 2 +7262 296 The filmmakers might want to look it up . 2 +7263 296 might want to look it up . 2 +7264 296 might want to look it up 2 +7265 296 want to look it up 3 +7266 296 to look it up 2 +7267 296 look it up 2 +7268 296 look it 2 +7269 297 While maintaining the appearance of clinical objectivity , this sad , occasionally horrifying but often inspiring film is among Wiseman 's warmest . 4 +7270 297 While maintaining the appearance of clinical objectivity 2 +7271 297 maintaining the appearance of clinical objectivity 3 +7272 297 maintaining 2 +7273 297 the appearance of clinical objectivity 2 +7274 297 the appearance 2 +7275 297 appearance 2 +7276 297 of clinical objectivity 2 +7277 297 clinical objectivity 2 +7278 297 clinical 2 +7279 297 objectivity 2 +7280 297 , this sad , occasionally horrifying but often inspiring film is among Wiseman 's warmest . 4 +7281 297 this sad , occasionally horrifying but often inspiring film is among Wiseman 's warmest . 3 +7282 297 this sad , occasionally horrifying but often inspiring film 4 +7283 297 sad , occasionally horrifying but often inspiring film 3 +7284 297 , occasionally horrifying but often inspiring film 3 +7285 297 occasionally horrifying but often inspiring film 2 +7286 297 occasionally horrifying but often inspiring 3 +7287 297 occasionally horrifying but 2 +7288 297 occasionally horrifying 2 +7289 297 often inspiring 3 +7290 297 inspiring 3 +7291 297 is among Wiseman 's warmest . 3 +7292 297 is among Wiseman 's warmest 3 +7293 297 among Wiseman 's warmest 2 +7294 297 Wiseman 's warmest 3 +7295 297 Wiseman 's 2 +7296 297 Wiseman 2 +7297 297 warmest 3 +7298 298 There is simply no doubt that this film asks the right questions at the right time in the history of our country . 4 +7299 298 is simply no doubt that this film asks the right questions at the right time in the history of our country . 3 +7300 298 is simply no doubt that this film asks the right questions at the right time in the history of our country 4 +7301 298 no doubt that this film asks the right questions at the right time in the history of our country 3 +7302 298 no doubt 2 +7303 298 doubt 2 +7304 298 that this film asks the right questions at the right time in the history of our country 3 +7305 298 this film asks the right questions at the right time in the history of our country 4 +7306 298 this film 2 +7307 298 asks the right questions at the right time in the history of our country 3 +7308 298 asks the right questions 3 +7309 298 asks 2 +7310 298 the right questions 2 +7311 298 right questions 3 +7312 298 questions 2 +7313 298 at the right time in the history of our country 2 +7314 298 the right time in the history of our country 3 +7315 298 the right time 2 +7316 298 right time 2 +7317 298 in the history of our country 2 +7318 298 the history of our country 2 +7319 298 the history 2 +7320 298 of our country 2 +7321 298 our country 2 +7322 298 country 2 +7323 299 A dreary movie . 0 +7324 299 dreary movie . 0 +7325 299 dreary 1 +7326 299 movie . 2 +7327 300 Sadly , though many of the actors throw off a spark or two when they first appear , they ca n't generate enough heat in this cold vacuum of a comedy to start a reaction . 1 +7328 300 , though many of the actors throw off a spark or two when they first appear , they ca n't generate enough heat in this cold vacuum of a comedy to start a reaction . 1 +7329 300 though many of the actors throw off a spark or two when they first appear , they ca n't generate enough heat in this cold vacuum of a comedy to start a reaction . 2 +7330 300 though many of the actors throw off a spark or two when they first appear 2 +7331 300 many of the actors throw off a spark or two when they first appear 2 +7332 300 many of the actors 2 +7333 300 of the actors 2 +7334 300 throw off a spark or two when they first appear 2 +7335 300 throw off a spark or two 2 +7336 300 off a spark or two 2 +7337 300 a spark or two 2 +7338 300 spark or two 2 +7339 300 spark or 2 +7340 300 spark 2 +7341 300 when they first appear 2 +7342 300 they first appear 2 +7343 300 first appear 2 +7344 300 appear 2 +7345 300 , they ca n't generate enough heat in this cold vacuum of a comedy to start a reaction . 0 +7346 300 they ca n't generate enough heat in this cold vacuum of a comedy to start a reaction . 0 +7347 300 ca n't generate enough heat in this cold vacuum of a comedy to start a reaction . 0 +7348 300 ca n't generate enough heat in this cold vacuum of a comedy to start a reaction 1 +7349 300 ca n't 2 +7350 300 ca 2 +7351 300 generate enough heat in this cold vacuum of a comedy to start a reaction 2 +7352 300 generate enough heat 3 +7353 300 generate 2 +7354 300 enough heat 2 +7355 300 heat 2 +7356 300 in this cold vacuum of a comedy to start a reaction 2 +7357 300 this cold vacuum of a comedy to start a reaction 1 +7358 300 this cold vacuum 2 +7359 300 cold vacuum 2 +7360 300 cold 1 +7361 300 vacuum 2 +7362 300 of a comedy to start a reaction 2 +7363 300 a comedy to start a reaction 3 +7364 300 comedy to start a reaction 3 +7365 300 to start a reaction 2 +7366 300 start a reaction 2 +7367 300 a reaction 2 +7368 300 reaction 3 +7369 301 To the filmmakers , Ivan is a prince of a fellow , but he comes across as shallow and glib though not mean-spirited , and there 's no indication that he 's been responsible for putting together any movies of particular value or merit . 1 +7370 301 To the filmmakers , Ivan is a prince of a fellow , but he comes across as shallow and glib though not mean-spirited , and there 's no indication that he 's been responsible for putting together any movies of particular value or merit 0 +7371 301 To the filmmakers , Ivan is a prince of a fellow , but 2 +7372 301 To the filmmakers , Ivan is a prince of a fellow , 2 +7373 301 To the filmmakers , Ivan is a prince of a fellow 2 +7374 301 To the filmmakers 2 +7375 301 , Ivan is a prince of a fellow 3 +7376 301 Ivan is a prince of a fellow 3 +7377 301 Ivan 2 +7378 301 is a prince of a fellow 2 +7379 301 a prince of a fellow 3 +7380 301 a prince 2 +7381 301 prince 2 +7382 301 of a fellow 2 +7383 301 a fellow 2 +7384 301 fellow 2 +7385 301 he comes across as shallow and glib though not mean-spirited , and there 's no indication that he 's been responsible for putting together any movies of particular value or merit 1 +7386 301 he comes across as shallow and glib though not mean-spirited , and 2 +7387 301 he comes across as shallow and glib though not mean-spirited , 2 +7388 301 he comes across as shallow and glib though not mean-spirited 1 +7389 301 comes across as shallow and glib though not mean-spirited 1 +7390 301 across as shallow and glib though not mean-spirited 1 +7391 301 across as shallow and glib though 1 +7392 301 across as shallow and glib 2 +7393 301 across as 2 +7394 301 shallow and glib 0 +7395 301 shallow and 1 +7396 301 shallow 2 +7397 301 glib 1 +7398 301 not mean-spirited 3 +7399 301 mean-spirited 1 +7400 301 there 's no indication that he 's been responsible for putting together any movies of particular value or merit 1 +7401 301 's no indication that he 's been responsible for putting together any movies of particular value or merit 2 +7402 301 's no indication 2 +7403 301 no indication 2 +7404 301 that he 's been responsible for putting together any movies of particular value or merit 2 +7405 301 he 's been responsible for putting together any movies of particular value or merit 1 +7406 301 's been responsible for putting together any movies of particular value or merit 1 +7407 301 been responsible for putting together any movies of particular value or merit 1 +7408 301 responsible for putting together any movies of particular value or merit 2 +7409 301 responsible 3 +7410 301 for putting together any movies of particular value or merit 3 +7411 301 putting together any movies of particular value or merit 3 +7412 301 putting together 2 +7413 301 any movies of particular value or merit 2 +7414 301 any movies 2 +7415 301 of particular value or merit 3 +7416 301 particular value or merit 2 +7417 301 particular 2 +7418 301 value or merit 3 +7419 301 value or 2 +7420 301 value 2 +7421 301 merit 2 +7422 302 Using a stock plot , About a Boy injects just enough freshness into the proceedings to provide an enjoyable 100 minutes in a movie theater . 3 +7423 302 Using a stock plot 2 +7424 302 Using 2 +7425 302 a stock plot 1 +7426 302 stock plot 1 +7427 302 stock 2 +7428 302 , About a Boy injects just enough freshness into the proceedings to provide an enjoyable 100 minutes in a movie theater . 3 +7429 302 About a Boy injects just enough freshness into the proceedings to provide an enjoyable 100 minutes in a movie theater . 3 +7430 302 About a Boy 2 +7431 302 a Boy 2 +7432 302 injects just enough freshness into the proceedings to provide an enjoyable 100 minutes in a movie theater . 3 +7433 302 injects just enough freshness into the proceedings to provide an enjoyable 100 minutes in a movie theater 4 +7434 302 injects just enough freshness into the proceedings 3 +7435 302 injects just enough freshness 3 +7436 302 injects 2 +7437 302 just enough freshness 2 +7438 302 enough freshness 4 +7439 302 freshness 3 +7440 302 into the proceedings 2 +7441 302 to provide an enjoyable 100 minutes in a movie theater 3 +7442 302 provide an enjoyable 100 minutes in a movie theater 4 +7443 302 provide 2 +7444 302 an enjoyable 100 minutes in a movie theater 4 +7445 302 an enjoyable 100 minutes 3 +7446 302 enjoyable 100 minutes 3 +7447 302 enjoyable 100 3 +7448 302 100 2 +7449 302 in a movie theater 2 +7450 302 a movie theater 2 +7451 302 movie theater 2 +7452 303 Beating the Austin Powers films at their own game , this blaxploitation spoof downplays the raunch in favor of gags that rely on the strength of their own cleverness as opposed to the extent of their outrageousness . 3 +7453 303 Beating the Austin Powers films at their own game 3 +7454 303 Beating the Austin Powers films 3 +7455 303 Beating 2 +7456 303 the Austin Powers films 2 +7457 303 Austin Powers films 3 +7458 303 Powers films 2 +7459 303 at their own game 2 +7460 303 their own game 2 +7461 303 own game 2 +7462 303 , this blaxploitation spoof downplays the raunch in favor of gags that rely on the strength of their own cleverness as opposed to the extent of their outrageousness . 2 +7463 303 this blaxploitation spoof downplays the raunch in favor of gags that rely on the strength of their own cleverness as opposed to the extent of their outrageousness . 2 +7464 303 this blaxploitation spoof 2 +7465 303 blaxploitation spoof 1 +7466 303 spoof 2 +7467 303 downplays the raunch in favor of gags that rely on the strength of their own cleverness as opposed to the extent of their outrageousness . 2 +7468 303 downplays the raunch in favor of gags that rely on the strength of their own cleverness as opposed to the extent of their outrageousness 3 +7469 303 downplays 2 +7470 303 the raunch in favor of gags that rely on the strength of their own cleverness as opposed to the extent of their outrageousness 2 +7471 303 the raunch in favor of gags that rely on the strength of their own cleverness 3 +7472 303 the raunch 2 +7473 303 raunch 1 +7474 303 in favor of gags that rely on the strength of their own cleverness 2 +7475 303 favor of gags that rely on the strength of their own cleverness 3 +7476 303 of gags that rely on the strength of their own cleverness 3 +7477 303 gags that rely on the strength of their own cleverness 2 +7478 303 gags 2 +7479 303 that rely on the strength of their own cleverness 2 +7480 303 rely on the strength of their own cleverness 2 +7481 303 rely 2 +7482 303 on the strength of their own cleverness 3 +7483 303 the strength of their own cleverness 3 +7484 303 the strength 2 +7485 303 strength 3 +7486 303 of their own cleverness 2 +7487 303 their own cleverness 3 +7488 303 own cleverness 2 +7489 303 cleverness 3 +7490 303 as opposed to the extent of their outrageousness 2 +7491 303 opposed to the extent of their outrageousness 3 +7492 303 opposed 2 +7493 303 to the extent of their outrageousness 2 +7494 303 the extent of their outrageousness 2 +7495 303 the extent 2 +7496 303 extent 2 +7497 303 of their outrageousness 2 +7498 303 their outrageousness 3 +7499 303 outrageousness 2 +7500 304 What begins as a conventional thriller evolves into a gorgeously atmospheric meditation on life-changing chance encounters . 3 +7501 304 begins as a conventional thriller evolves into a gorgeously atmospheric meditation on life-changing chance encounters . 4 +7502 304 begins as a conventional thriller evolves into a gorgeously atmospheric meditation on life-changing chance encounters 3 +7503 304 begins 2 +7504 304 as a conventional thriller evolves into a gorgeously atmospheric meditation on life-changing chance encounters 3 +7505 304 a conventional thriller evolves into a gorgeously atmospheric meditation on life-changing chance encounters 3 +7506 304 a conventional thriller 2 +7507 304 conventional thriller 3 +7508 304 conventional 2 +7509 304 evolves into a gorgeously atmospheric meditation on life-changing chance encounters 3 +7510 304 evolves 3 +7511 304 into a gorgeously atmospheric meditation on life-changing chance encounters 3 +7512 304 a gorgeously atmospheric meditation on life-changing chance encounters 3 +7513 304 a gorgeously atmospheric meditation 2 +7514 304 gorgeously atmospheric meditation 3 +7515 304 gorgeously 3 +7516 304 atmospheric meditation 2 +7517 304 atmospheric 2 +7518 304 meditation 2 +7519 304 on life-changing chance encounters 2 +7520 304 life-changing chance encounters 3 +7521 304 life-changing 3 +7522 304 chance encounters 2 +7523 304 encounters 2 +7524 305 Buy popcorn . 2 +7525 305 Buy popcorn 2 +7526 305 Buy 2 +7527 305 popcorn 3 +7528 306 A late-night cable sexploitation romp masquerading as a thriller about the ruthless social order that governs college cliques . 2 +7529 306 A late-night cable sexploitation 2 +7530 306 late-night cable sexploitation 1 +7531 306 late-night 2 +7532 306 cable sexploitation 1 +7533 306 cable 2 +7534 306 sexploitation 1 +7535 306 romp masquerading as a thriller about the ruthless social order that governs college cliques . 2 +7536 306 romp masquerading as a thriller about the ruthless social order that governs college cliques 1 +7537 306 masquerading as a thriller about the ruthless social order that governs college cliques 2 +7538 306 masquerading 2 +7539 306 as a thriller about the ruthless social order that governs college cliques 3 +7540 306 a thriller about the ruthless social order that governs college cliques 2 +7541 306 a thriller 3 +7542 306 about the ruthless social order that governs college cliques 2 +7543 306 the ruthless social order that governs college cliques 1 +7544 306 the ruthless social order 2 +7545 306 ruthless social order 2 +7546 306 ruthless social 2 +7547 306 ruthless 2 +7548 306 order 2 +7549 306 that governs college cliques 2 +7550 306 governs college cliques 1 +7551 306 governs 2 +7552 306 college cliques 2 +7553 306 college 3 +7554 306 cliques 2 +7555 307 A well-intentioned effort that 's still too burdened by the actor 's offbeat sensibilities for the earnest emotional core to emerge with any degree of accessibility . 1 +7556 307 A well-intentioned effort that 's still too burdened by the actor 3 +7557 307 A well-intentioned effort 2 +7558 307 well-intentioned effort 3 +7559 307 effort 2 +7560 307 that 's still too burdened by the actor 1 +7561 307 's still too burdened by the actor 1 +7562 307 too burdened by the actor 1 +7563 307 burdened by the actor 1 +7564 307 burdened 2 +7565 307 by the actor 2 +7566 307 the actor 2 +7567 307 's offbeat sensibilities for the earnest emotional core to emerge with any degree of accessibility . 2 +7568 307 's offbeat sensibilities for the earnest emotional core to emerge with any degree of accessibility 2 +7569 307 offbeat sensibilities for the earnest emotional core to emerge with any degree of accessibility 1 +7570 307 offbeat sensibilities for the earnest emotional core 2 +7571 307 offbeat sensibilities 3 +7572 307 sensibilities 2 +7573 307 for the earnest emotional core 3 +7574 307 the earnest emotional core 3 +7575 307 earnest emotional core 3 +7576 307 to emerge with any degree of accessibility 2 +7577 307 emerge with any degree of accessibility 2 +7578 307 emerge 2 +7579 307 with any degree of accessibility 2 +7580 307 any degree of accessibility 2 +7581 307 any degree 2 +7582 307 of accessibility 2 +7583 307 accessibility 2 +7584 308 -LRB- Allen 's -RRB- been making piffle for a long while , and Hollywood Ending may be his way of saying that piffle is all that the airhead movie business deserves from him right now . 2 +7585 308 -LRB- Allen 's -RRB- been making piffle for a long while , and Hollywood Ending may be his way of saying that piffle is all that the airhead movie business deserves from him right now 1 +7586 308 -LRB- Allen 's -RRB- been making piffle for a long while , and 1 +7587 308 -LRB- Allen 's -RRB- been making piffle for a long while , 0 +7588 308 -LRB- Allen 's -RRB- been making piffle for a long while 1 +7589 308 -LRB- Allen 's -RRB- 2 +7590 308 Allen 's -RRB- 2 +7591 308 Allen 2 +7592 308 's -RRB- 2 +7593 308 been making piffle for a long while 1 +7594 308 making piffle for a long while 1 +7595 308 piffle for a long while 2 +7596 308 piffle 1 +7597 308 for a long while 2 +7598 308 a long while 2 +7599 308 long while 2 +7600 308 Hollywood Ending may be his way of saying that piffle is all that the airhead movie business deserves from him right now 1 +7601 308 Hollywood Ending 2 +7602 308 may be his way of saying that piffle is all that the airhead movie business deserves from him right now 1 +7603 308 be his way of saying that piffle is all that the airhead movie business deserves from him right now 1 +7604 308 his way of saying that piffle is all that the airhead movie business deserves from him right now 0 +7605 308 his way 2 +7606 308 of saying that piffle is all that the airhead movie business deserves from him right now 1 +7607 308 saying that piffle is all that the airhead movie business deserves from him right now 2 +7608 308 saying 2 +7609 308 that piffle is all that the airhead movie business deserves from him right now 0 +7610 308 piffle is all that the airhead movie business deserves from him right now 1 +7611 308 is all that the airhead movie business deserves from him right now 1 +7612 308 is all 2 +7613 308 that the airhead movie business deserves from him right now 1 +7614 308 the airhead movie business deserves from him right now 1 +7615 308 the airhead movie business 1 +7616 308 airhead movie business 1 +7617 308 airhead 1 +7618 308 movie business 2 +7619 308 deserves from him right now 2 +7620 308 deserves from him 2 +7621 308 deserves 2 +7622 308 from him 2 +7623 308 right now 2 +7624 309 Seeing as the film lacks momentum and its position remains mostly undeterminable , the director 's experiment is a successful one . 3 +7625 309 Seeing as the film lacks momentum and its position remains mostly undeterminable 1 +7626 309 as the film lacks momentum and its position remains mostly undeterminable 1 +7627 309 the film lacks momentum and its position remains mostly undeterminable 1 +7628 309 lacks momentum and its position remains mostly undeterminable 1 +7629 309 momentum and its position remains mostly undeterminable 1 +7630 309 momentum and its position 2 +7631 309 momentum and 2 +7632 309 momentum 2 +7633 309 its position 3 +7634 309 position 2 +7635 309 remains mostly undeterminable 1 +7636 309 remains 1 +7637 309 mostly undeterminable 1 +7638 309 undeterminable 1 +7639 309 , the director 's experiment is a successful one . 4 +7640 309 the director 's experiment is a successful one . 4 +7641 309 the director 's experiment 3 +7642 309 experiment 2 +7643 309 is a successful one . 3 +7644 309 is a successful one 4 +7645 309 a successful one 3 +7646 309 successful one 3 +7647 309 successful 4 +7648 310 Judith and Zaza 's extended bedroom sequence ... is so intimate and sensual and funny and psychologically self-revealing that it makes most of what passes for sex in the movies look like cheap hysterics . 4 +7649 310 Judith and Zaza 's extended bedroom sequence 2 +7650 310 Judith and 2 +7651 310 Judith 2 +7652 310 Zaza 's extended bedroom sequence 2 +7653 310 Zaza 's 2 +7654 310 Zaza 2 +7655 310 extended bedroom sequence 2 +7656 310 bedroom sequence 2 +7657 310 bedroom 2 +7658 310 ... is so intimate and sensual and funny and psychologically self-revealing that it makes most of what passes for sex in the movies look like cheap hysterics . 4 +7659 310 is so intimate and sensual and funny and psychologically self-revealing that it makes most of what passes for sex in the movies look like cheap hysterics . 3 +7660 310 is so intimate and sensual and funny and psychologically self-revealing that it makes most of what passes for sex in the movies look like cheap hysterics 4 +7661 310 is so intimate and sensual and funny and psychologically self-revealing 3 +7662 310 so intimate and sensual and funny and psychologically self-revealing 4 +7663 310 so intimate and sensual and funny and 3 +7664 310 so intimate and sensual and funny 4 +7665 310 so intimate and 3 +7666 310 so intimate 3 +7667 310 intimate 2 +7668 310 sensual and funny 3 +7669 310 sensual and 3 +7670 310 sensual 3 +7671 310 psychologically self-revealing 2 +7672 310 psychologically 3 +7673 310 self-revealing 2 +7674 310 that it makes most of what passes for sex in the movies look like cheap hysterics 2 +7675 310 it makes most of what passes for sex in the movies look like cheap hysterics 3 +7676 310 makes most of what passes for sex in the movies look like cheap hysterics 2 +7677 310 most of what passes for sex in the movies look like cheap hysterics 0 +7678 310 of what passes for sex in the movies look like cheap hysterics 0 +7679 310 what passes for sex in the movies look like cheap hysterics 1 +7680 310 passes for sex in the movies look like cheap hysterics 0 +7681 310 passes 2 +7682 310 for sex in the movies look like cheap hysterics 0 +7683 310 sex in the movies look like cheap hysterics 1 +7684 310 sex in the movies 2 +7685 310 in the movies 2 +7686 310 look like cheap hysterics 0 +7687 310 like cheap hysterics 2 +7688 310 cheap hysterics 1 +7689 310 hysterics 2 +7690 311 Uneven performances and a spotty script add up to a biting satire that has no teeth . 1 +7691 311 Uneven performances and a spotty script 0 +7692 311 Uneven performances and 1 +7693 311 Uneven performances 1 +7694 311 a spotty script 1 +7695 311 spotty script 1 +7696 311 spotty 1 +7697 311 add up to a biting satire that has no teeth . 1 +7698 311 add up to a biting satire that has no teeth 1 +7699 311 add up 2 +7700 311 to a biting satire that has no teeth 1 +7701 311 a biting satire that has no teeth 1 +7702 311 a biting satire 3 +7703 311 biting satire 2 +7704 311 biting 2 +7705 311 that has no teeth 1 +7706 311 has no teeth 1 +7707 311 no teeth 1 +7708 312 ... irritating soul-searching garbage . 0 +7709 312 irritating soul-searching garbage . 0 +7710 312 irritating 0 +7711 312 soul-searching garbage . 0 +7712 312 soul-searching 3 +7713 312 garbage . 0 +7714 312 garbage 1 +7715 313 A solid , spooky entertainment worthy of the price of a ticket . 3 +7716 313 A solid , spooky entertainment worthy of the price of a ticket 4 +7717 313 A solid , spooky entertainment 4 +7718 313 solid , spooky entertainment 3 +7719 313 solid , spooky 3 +7720 313 , spooky 2 +7721 313 worthy of the price of a ticket 4 +7722 313 of the price of a ticket 2 +7723 313 the price of a ticket 2 +7724 313 the price 3 +7725 313 price 2 +7726 313 of a ticket 2 +7727 313 a ticket 2 +7728 313 ticket 2 +7729 314 Ultimately , clarity matters , both in breaking codes and making movies . 2 +7730 314 , clarity matters , both in breaking codes and making movies . 2 +7731 314 clarity matters , both in breaking codes and making movies . 2 +7732 314 clarity 3 +7733 314 matters , both in breaking codes and making movies . 2 +7734 314 matters , both in breaking codes and making movies 2 +7735 314 matters , 2 +7736 314 matters 2 +7737 314 both in breaking codes and making movies 1 +7738 314 in breaking codes and making movies 2 +7739 314 breaking codes and making movies 2 +7740 314 breaking codes and 2 +7741 314 breaking codes 3 +7742 314 breaking 2 +7743 314 codes 2 +7744 314 making movies 2 +7745 315 In comparison to his earlier films it seems a disappointingly thin slice of lower-class London life ; despite the title ... amounts to surprisingly little . 0 +7746 315 In comparison to his earlier films 2 +7747 315 comparison to his earlier films 2 +7748 315 comparison 2 +7749 315 to his earlier films 2 +7750 315 his earlier films 2 +7751 315 earlier films 2 +7752 315 it seems a disappointingly thin slice of lower-class London life ; despite the title ... amounts to surprisingly little . 1 +7753 315 seems a disappointingly thin slice of lower-class London life ; despite the title ... amounts to surprisingly little . 1 +7754 315 seems a disappointingly thin slice of lower-class London life ; despite the title ... amounts to surprisingly little 0 +7755 315 a disappointingly thin slice of lower-class London life ; despite the title ... amounts to surprisingly little 1 +7756 315 a disappointingly thin slice of lower-class London life ; despite the title ... 1 +7757 315 a disappointingly thin slice of lower-class London life ; despite the title 1 +7758 315 a disappointingly thin slice of lower-class London life ; 2 +7759 315 a disappointingly thin slice of lower-class London life 2 +7760 315 a disappointingly thin slice 1 +7761 315 disappointingly thin slice 1 +7762 315 disappointingly thin 0 +7763 315 disappointingly 0 +7764 315 thin 2 +7765 315 of lower-class London life 2 +7766 315 lower-class London life 2 +7767 315 lower-class 2 +7768 315 London life 2 +7769 315 London 2 +7770 315 despite the title 2 +7771 315 amounts to surprisingly little 1 +7772 315 to surprisingly little 2 +7773 315 surprisingly little 2 +7774 316 Proves mainly that South Korean filmmakers can make undemanding action movies with all the alacrity of their Hollywood counterparts . 2 +7775 316 mainly that South Korean filmmakers can make undemanding action movies with all the alacrity of their Hollywood counterparts . 3 +7776 316 mainly 2 +7777 316 that South Korean filmmakers can make undemanding action movies with all the alacrity of their Hollywood counterparts . 2 +7778 316 that South Korean filmmakers 2 +7779 316 South Korean filmmakers 2 +7780 316 South Korean 2 +7781 316 South 2 +7782 316 Korean 2 +7783 316 can make undemanding action movies with all the alacrity of their Hollywood counterparts . 3 +7784 316 can make undemanding action movies with all the alacrity of their Hollywood counterparts 3 +7785 316 make undemanding action movies with all the alacrity of their Hollywood counterparts 3 +7786 316 undemanding action movies with all the alacrity of their Hollywood counterparts 1 +7787 316 undemanding action movies 1 +7788 316 undemanding 2 +7789 316 action movies 3 +7790 316 with all the alacrity of their Hollywood counterparts 2 +7791 316 all the alacrity of their Hollywood counterparts 2 +7792 316 all the alacrity 2 +7793 316 the alacrity 2 +7794 316 alacrity 3 +7795 316 of their Hollywood counterparts 2 +7796 316 their Hollywood counterparts 2 +7797 316 Hollywood counterparts 2 +7798 316 counterparts 2 +7799 317 Except it 's much , much better . 4 +7800 317 Except it 's much 3 +7801 317 Except 2 +7802 317 it 's much 2 +7803 317 's much 2 +7804 317 , much better . 3 +7805 317 much better . 2 +7806 318 It is a happy , heady jumble of thought and storytelling , an insane comic undertaking that ultimately coheres into a sane and breathtakingly creative film . 4 +7807 318 is a happy , heady jumble of thought and storytelling , an insane comic undertaking that ultimately coheres into a sane and breathtakingly creative film . 4 +7808 318 is a happy , heady jumble of thought and storytelling , an insane comic undertaking that ultimately coheres into a sane and breathtakingly creative film 4 +7809 318 a happy , heady jumble of thought and storytelling , an insane comic undertaking that ultimately coheres into a sane and breathtakingly creative film 4 +7810 318 a happy , heady jumble of thought and storytelling , 4 +7811 318 a happy , heady jumble of thought and storytelling 4 +7812 318 a happy , heady jumble 3 +7813 318 happy , heady jumble 3 +7814 318 , heady jumble 2 +7815 318 heady jumble 1 +7816 318 heady 2 +7817 318 jumble 2 +7818 318 of thought and storytelling 2 +7819 318 thought and storytelling 2 +7820 318 thought and 2 +7821 318 an insane comic undertaking that ultimately coheres into a sane and breathtakingly creative film 4 +7822 318 an insane comic undertaking 3 +7823 318 insane comic undertaking 3 +7824 318 insane comic 3 +7825 318 insane 1 +7826 318 undertaking 2 +7827 318 that ultimately coheres into a sane and breathtakingly creative film 4 +7828 318 ultimately coheres into a sane and breathtakingly creative film 3 +7829 318 coheres into a sane and breathtakingly creative film 4 +7830 318 coheres 2 +7831 318 into a sane and breathtakingly creative film 4 +7832 318 a sane and breathtakingly creative film 3 +7833 318 sane and breathtakingly creative film 4 +7834 318 sane and breathtakingly 3 +7835 318 sane and 2 +7836 318 sane 2 +7837 318 breathtakingly 4 +7838 318 creative film 3 +7839 318 creative 4 +7840 319 There is more than one joke about putting the toilet seat down . 2 +7841 319 is more than one joke about putting the toilet seat down . 1 +7842 319 is more than one joke about putting the toilet seat down 2 +7843 319 is more than one joke about 2 +7844 319 more than one joke about 2 +7845 319 more than one joke 2 +7846 319 more than one 2 +7847 319 than one 2 +7848 319 joke 1 +7849 319 putting the toilet seat down 2 +7850 319 putting the toilet seat 1 +7851 319 the toilet seat 2 +7852 319 toilet seat 2 +7853 319 toilet 1 +7854 319 seat 3 +7855 320 has -RRB- 2 +7856 320 created a substantive movie out of several cliched movie structures : the road movie , the coming-of-age movie , and the teenage sex comedy . 3 +7857 320 created a substantive movie out of several cliched movie structures : the road movie , the coming-of-age movie , and the teenage sex comedy 3 +7858 320 created a substantive movie out 3 +7859 320 created a substantive movie 3 +7860 320 a substantive movie 3 +7861 320 substantive movie 3 +7862 320 substantive 3 +7863 320 of several cliched movie structures : the road movie , the coming-of-age movie , and the teenage sex comedy 2 +7864 320 several cliched movie structures : the road movie , the coming-of-age movie , and the teenage sex comedy 2 +7865 320 several cliched movie structures : the road movie , the coming-of-age movie , and 2 +7866 320 several cliched movie structures : the road movie , the coming-of-age movie , 1 +7867 320 several cliched movie structures : the road movie , the coming-of-age movie 1 +7868 320 several cliched movie structures : the road movie , 1 +7869 320 several cliched movie structures : the road movie 1 +7870 320 several cliched movie structures : 1 +7871 320 several cliched movie structures 1 +7872 320 cliched movie structures 2 +7873 320 movie structures 2 +7874 320 structures 2 +7875 320 the road movie 2 +7876 320 road movie 2 +7877 320 the coming-of-age movie 2 +7878 320 coming-of-age movie 2 +7879 320 coming-of-age 2 +7880 320 the teenage sex comedy 2 +7881 320 teenage sex comedy 3 +7882 320 sex comedy 2 +7883 321 So original in its base concept that you can not help but get caught up . 4 +7884 321 original in its base concept that you can not help but get caught up . 4 +7885 321 original in its base concept that you can not help but get 2 +7886 321 in its base concept that you can not help but get 2 +7887 321 its base concept that you can not help but get 2 +7888 321 its base concept 2 +7889 321 base concept 2 +7890 321 concept 2 +7891 321 that you can not help but get 2 +7892 321 you can not help but get 2 +7893 321 can not help but get 2 +7894 321 can not help but 2 +7895 321 can not help 2 +7896 321 can not 2 +7897 321 help 2 +7898 321 caught up . 2 +7899 321 caught up 2 +7900 321 caught 2 +7901 322 It appears to have been made by people to whom the idea of narrative logic or cohesion is an entirely foreign concept . 0 +7902 322 appears to have been made by people to whom the idea of narrative logic or cohesion is an entirely foreign concept . 0 +7903 322 appears to have been made by people to whom the idea of narrative logic or cohesion is an entirely foreign concept 0 +7904 322 appears 2 +7905 322 to have been made by people to whom the idea of narrative logic or cohesion is an entirely foreign concept 0 +7906 322 have been made by people to whom the idea of narrative logic or cohesion is an entirely foreign concept 0 +7907 322 been made by people to whom the idea of narrative logic or cohesion is an entirely foreign concept 1 +7908 322 made by people to whom the idea of narrative logic or cohesion is an entirely foreign concept 0 +7909 322 by people to whom the idea of narrative logic or cohesion is an entirely foreign concept 1 +7910 322 people to whom the idea of narrative logic or cohesion is an entirely foreign concept 1 +7911 322 to whom the idea of narrative logic or cohesion is an entirely foreign concept 1 +7912 322 to whom 2 +7913 322 whom 2 +7914 322 the idea of narrative logic or cohesion is an entirely foreign concept 1 +7915 322 the idea of narrative logic or cohesion 2 +7916 322 the idea 2 +7917 322 of narrative logic or cohesion 2 +7918 322 narrative logic or cohesion 2 +7919 322 logic or cohesion 2 +7920 322 logic or 2 +7921 322 logic 2 +7922 322 cohesion 2 +7923 322 is an entirely foreign concept 1 +7924 322 an entirely foreign concept 2 +7925 322 entirely foreign concept 2 +7926 322 entirely foreign 2 +7927 322 foreign 2 +7928 323 If you ignore the cliches and concentrate on City by the Sea 's interpersonal drama , it ai n't half-bad . 2 +7929 323 If you ignore the cliches and concentrate on City by the Sea 's interpersonal drama 2 +7930 323 you ignore the cliches and concentrate on City by the Sea 's interpersonal drama 3 +7931 323 ignore the cliches and concentrate on City by the Sea 's interpersonal drama 2 +7932 323 ignore the cliches and 2 +7933 323 ignore the cliches 2 +7934 323 ignore 1 +7935 323 concentrate on City by the Sea 's interpersonal drama 2 +7936 323 concentrate on City 2 +7937 323 concentrate 2 +7938 323 on City 2 +7939 323 by the Sea 's interpersonal drama 2 +7940 323 the Sea 's interpersonal drama 2 +7941 323 the Sea 's 2 +7942 323 Sea 's 3 +7943 323 Sea 2 +7944 323 interpersonal drama 2 +7945 323 interpersonal 2 +7946 323 , it ai n't half-bad . 3 +7947 323 it ai n't half-bad . 3 +7948 323 ai n't half-bad . 3 +7949 323 ai n't half-bad 3 +7950 323 ai n't 2 +7951 323 ai 2 +7952 323 half-bad 2 +7953 324 A dreadful day in Irish history is given passionate , if somewhat flawed , treatment . 3 +7954 324 A dreadful day in Irish history 1 +7955 324 A dreadful day 1 +7956 324 dreadful day 1 +7957 324 dreadful 0 +7958 324 in Irish history 2 +7959 324 Irish history 2 +7960 324 is given passionate , if somewhat flawed , treatment . 3 +7961 324 is given passionate , if somewhat flawed , treatment 2 +7962 324 given passionate , if somewhat flawed , treatment 3 +7963 324 passionate , if somewhat flawed , treatment 3 +7964 324 passionate , if somewhat flawed , 2 +7965 324 passionate 3 +7966 324 , if somewhat flawed , 2 +7967 324 if somewhat flawed , 2 +7968 324 somewhat flawed , 1 +7969 324 somewhat 2 +7970 324 flawed , 1 +7971 324 flawed 1 +7972 324 treatment 2 +7973 325 See it . 4 +7974 326 Nothing but an episode of Smackdown ! 1 +7975 326 Nothing but an episode of Smackdown 1 +7976 326 Nothing but an episode 1 +7977 326 but an episode 2 +7978 326 an episode 2 +7979 326 of Smackdown 2 +7980 326 Smackdown 2 +7981 327 A guilty pleasure at best , and not worth seeing unless you want to laugh at it . 2 +7982 327 A guilty pleasure at best , and not worth seeing unless you want to laugh at it 2 +7983 327 A guilty pleasure 3 +7984 327 guilty pleasure 2 +7985 327 guilty 1 +7986 327 at best , and not worth seeing unless you want to laugh at it 1 +7987 327 at best , and not worth 2 +7988 327 at best 2 +7989 327 , and not worth 1 +7990 327 and not worth 2 +7991 327 not worth 2 +7992 327 seeing unless you want to laugh at it 2 +7993 327 unless you want to laugh at it 1 +7994 327 you want to laugh at it 2 +7995 327 want to laugh at it 3 +7996 327 to laugh at it 2 +7997 327 laugh at it 2 +7998 327 at it 2 +7999 328 Perhaps a better celebration of these unfairly dismissed heroes would be a film that is n't this painfully forced , false and fabricated . 1 +8000 328 a better celebration of these unfairly dismissed heroes would be a film that is n't this painfully forced , false and fabricated . 0 +8001 328 a better celebration of these unfairly 2 +8002 328 a better celebration 3 +8003 328 better celebration 3 +8004 328 celebration 3 +8005 328 of these unfairly 2 +8006 328 these unfairly 2 +8007 328 these 2 +8008 328 unfairly 1 +8009 328 dismissed heroes would be a film that is n't this painfully forced , false and fabricated . 0 +8010 328 dismissed heroes would be a film that is n't this painfully forced , false and fabricated 1 +8011 328 dismissed 2 +8012 328 heroes would be a film that is n't this painfully forced , false and fabricated 1 +8013 328 would be a film that is n't this painfully forced , false and fabricated 0 +8014 328 be a film that is n't this painfully forced , false and fabricated 1 +8015 328 a film that is n't this painfully forced , false and fabricated 2 +8016 328 that is n't this painfully forced , false and fabricated 0 +8017 328 is n't this painfully forced , false and fabricated 0 +8018 328 this painfully forced , false and fabricated 0 +8019 328 painfully forced , false and fabricated 0 +8020 328 painfully forced , 1 +8021 328 painfully forced 1 +8022 328 painfully 0 +8023 328 forced 1 +8024 328 false and fabricated 1 +8025 328 false and 1 +8026 328 false 1 +8027 328 fabricated 1 +8028 329 A relative letdown . 0 +8029 329 relative letdown . 0 +8030 329 relative 3 +8031 329 letdown . 1 +8032 329 letdown 0 +8033 330 ` Hey Arnold ! ' 2 +8034 330 Hey Arnold ! ' 2 +8035 330 Hey Arnold ! 2 +8036 330 Hey Arnold 2 +8037 330 Hey 2 +8038 330 Arnold 2 +8039 331 But though he only scratches the surface , at least he provides a strong itch to explore more . 3 +8040 331 though he only scratches the surface , at least he provides a strong itch to explore more . 3 +8041 331 though he only scratches the surface 1 +8042 331 he only scratches the surface 2 +8043 331 only scratches the surface 1 +8044 331 scratches the surface 2 +8045 331 scratches 2 +8046 331 the surface 2 +8047 331 surface 2 +8048 331 , at least he provides a strong itch to explore more . 3 +8049 331 at least he provides a strong itch to explore more . 3 +8050 331 he provides a strong itch to explore more . 3 +8051 331 provides a strong itch to explore more . 3 +8052 331 provides a strong itch to explore more 3 +8053 331 a strong itch to explore more 2 +8054 331 strong itch to explore more 3 +8055 331 itch to explore more 3 +8056 331 itch 2 +8057 331 to explore more 2 +8058 331 explore more 2 +8059 331 explore 2 +8060 332 The band performances featured in Drumline are red hot ... -LRB- but -RRB- from a mere story point of view , the film 's ice cold . 2 +8061 332 The band performances featured in Drumline are red hot ... -LRB- but -RRB- from a mere story point of view , the film 's ice cold 1 +8062 332 The band performances featured in Drumline are red hot ... 4 +8063 332 The band performances featured in Drumline are red hot 3 +8064 332 The band performances featured in Drumline 2 +8065 332 The band performances 2 +8066 332 band performances 2 +8067 332 band 2 +8068 332 featured in Drumline 3 +8069 332 featured 2 +8070 332 in Drumline 2 +8071 332 Drumline 2 +8072 332 are red hot 3 +8073 332 red hot 3 +8074 332 red 2 +8075 332 hot 4 +8076 332 -LRB- but -RRB- from a mere story point of view , the film 's ice cold 1 +8077 332 -LRB- but -RRB- from a mere story point of view 2 +8078 332 -LRB- but -RRB- 2 +8079 332 but -RRB- 2 +8080 332 from a mere story point of view 2 +8081 332 a mere story point of view 2 +8082 332 a mere story point 2 +8083 332 mere story point 2 +8084 332 mere 2 +8085 332 story point 2 +8086 332 , the film 's ice cold 1 +8087 332 the film 's ice cold 2 +8088 332 's ice cold 2 +8089 332 ice cold 2 +8090 333 A non-mystery mystery . 1 +8091 333 non-mystery mystery . 2 +8092 333 non-mystery 2 +8093 333 mystery . 2 +8094 334 Leigh is one of the rare directors who feels acting is the heart and soul of cinema . 4 +8095 334 Leigh 2 +8096 334 is one of the rare directors who feels acting is the heart and soul of cinema . 4 +8097 334 is one of the rare directors who feels acting is the heart and soul of cinema 3 +8098 334 one of the rare directors who feels acting is the heart and soul of cinema 3 +8099 334 of the rare directors who feels acting is the heart and soul of cinema 4 +8100 334 the rare directors who feels acting is the heart and soul of cinema 3 +8101 334 the rare directors 2 +8102 334 rare directors 3 +8103 334 directors 2 +8104 334 who feels acting is the heart and soul of cinema 3 +8105 334 feels acting is the heart and soul of cinema 3 +8106 334 acting is the heart and soul of cinema 2 +8107 334 is the heart and soul of cinema 4 +8108 334 the heart and soul of cinema 3 +8109 334 the heart and soul 2 +8110 334 heart and soul 2 +8111 334 heart and 2 +8112 334 soul 2 +8113 334 of cinema 2 +8114 335 The cast delivers without sham the raw-nerved story . 3 +8115 335 The cast 2 +8116 335 cast 2 +8117 335 delivers without sham the raw-nerved story . 3 +8118 335 delivers without sham the raw-nerved story 2 +8119 335 without sham the raw-nerved story 3 +8120 335 sham the raw-nerved story 2 +8121 335 sham 2 +8122 335 the raw-nerved story 2 +8123 335 raw-nerved story 3 +8124 335 raw-nerved 2 +8125 336 This is a monumental achievement in practically every facet of inept filmmaking : joyless , idiotic , annoying , heavy-handed , visually atrocious , and often downright creepy . 1 +8126 336 is a monumental achievement in practically every facet of inept filmmaking : joyless , idiotic , annoying , heavy-handed , visually atrocious , and often downright creepy . 1 +8127 336 is a monumental achievement in practically every facet of inept filmmaking : joyless , idiotic , annoying , heavy-handed , visually atrocious , and often downright creepy 0 +8128 336 is a monumental achievement in practically every facet of inept filmmaking : 1 +8129 336 is a monumental achievement in practically every facet of inept filmmaking 2 +8130 336 is a monumental achievement 4 +8131 336 a monumental achievement 4 +8132 336 monumental achievement 4 +8133 336 monumental 4 +8134 336 in practically every facet of inept filmmaking 1 +8135 336 practically every facet of inept filmmaking 1 +8136 336 practically every facet 2 +8137 336 practically 2 +8138 336 every facet 2 +8139 336 facet 2 +8140 336 of inept filmmaking 1 +8141 336 inept filmmaking 1 +8142 336 joyless , idiotic , annoying , heavy-handed , visually atrocious , and often downright creepy 0 +8143 336 joyless , idiotic , annoying , heavy-handed , 0 +8144 336 joyless , idiotic , annoying , heavy-handed 0 +8145 336 joyless , 1 +8146 336 joyless 0 +8147 336 idiotic , annoying , heavy-handed 2 +8148 336 idiotic 0 +8149 336 , annoying , heavy-handed 0 +8150 336 annoying , heavy-handed 1 +8151 336 annoying 0 +8152 336 , heavy-handed 2 +8153 336 visually atrocious , and often downright creepy 0 +8154 336 visually atrocious , and 2 +8155 336 visually atrocious , 1 +8156 336 visually atrocious 0 +8157 336 atrocious 0 +8158 336 often downright creepy 1 +8159 336 downright creepy 1 +8160 337 The filmmaker 's heart is in the right place ... 2 +8161 337 The filmmaker 's heart 2 +8162 337 The filmmaker 's 2 +8163 337 filmmaker 's 2 +8164 337 is in the right place ... 2 +8165 337 is in the right place 3 +8166 337 in the right place 3 +8167 337 the right place 3 +8168 337 right place 3 +8169 338 One of the most highly-praised disappointments I 've had the misfortune to watch in quite some time . 0 +8170 338 One of the most highly-praised disappointments I 2 +8171 338 of the most highly-praised disappointments I 0 +8172 338 the most highly-praised disappointments I 1 +8173 338 most highly-praised disappointments I 2 +8174 338 highly-praised disappointments I 1 +8175 338 highly-praised 3 +8176 338 disappointments I 1 +8177 338 disappointments 0 +8178 338 've had the misfortune to watch in quite some time . 1 +8179 338 've had the misfortune to watch in quite some time 1 +8180 338 had the misfortune to watch in quite some time 1 +8181 338 had the misfortune 2 +8182 338 the misfortune 2 +8183 338 misfortune 2 +8184 338 to watch in quite some time 2 +8185 338 watch in quite some time 2 +8186 338 watch 2 +8187 338 in quite some time 2 +8188 338 quite some time 2 +8189 338 quite 2 +8190 338 some time 2 +8191 339 Rock 's stand-up magic wanes . 1 +8192 339 Rock 's stand-up magic 4 +8193 339 Rock 's 2 +8194 339 stand-up magic 3 +8195 339 stand-up 2 +8196 339 wanes . 1 +8197 339 wanes 1 +8198 340 Roman Polanski directs The Pianist like a surgeon mends a broken heart ; very meticulously but without any passion . 1 +8199 340 Roman Polanski 2 +8200 340 Roman 2 +8201 340 directs The Pianist like a surgeon mends a broken heart ; very meticulously but without any passion . 1 +8202 340 directs The Pianist like a surgeon mends a broken heart ; very meticulously but without any passion 1 +8203 340 directs 2 +8204 340 The Pianist like a surgeon mends a broken heart ; very meticulously but without any passion 1 +8205 340 like a surgeon mends a broken heart ; very meticulously but without any passion 1 +8206 340 a surgeon mends a broken heart ; very meticulously but without any passion 1 +8207 340 a surgeon mends a broken heart ; 2 +8208 340 a surgeon mends a broken heart 3 +8209 340 a surgeon mends 3 +8210 340 surgeon mends 3 +8211 340 surgeon 2 +8212 340 mends 2 +8213 340 a broken heart 2 +8214 340 very meticulously but without any passion 1 +8215 340 very meticulously but 2 +8216 340 very meticulously 2 +8217 340 meticulously 2 +8218 340 without any passion 1 +8219 340 any passion 2 +8220 340 passion 2 +8221 341 Sadly , ` Garth ' has n't progressed as nicely as ` Wayne . ' 1 +8222 341 , ` Garth ' has n't progressed as nicely as ` Wayne . ' 2 +8223 341 ` Garth ' has n't progressed as nicely as ` Wayne . ' 2 +8224 341 Garth ' has n't progressed as nicely as ` Wayne . ' 1 +8225 341 Garth 2 +8226 341 ' has n't progressed as nicely as ` Wayne . ' 2 +8227 341 has n't progressed as nicely as ` Wayne . ' 1 +8228 341 has n't progressed as nicely as ` Wayne . 2 +8229 341 has n't progressed as nicely as ` Wayne 1 +8230 341 has n't 2 +8231 341 progressed as nicely as ` Wayne 3 +8232 341 progressed as nicely 2 +8233 341 progressed 2 +8234 341 as nicely 2 +8235 341 nicely 3 +8236 341 as ` Wayne 3 +8237 341 as ` 2 +8238 341 Wayne 2 +8239 342 With wit and empathy to spare , waydowntown acknowledges the silent screams of workaday inertia but stops short of indulging its characters ' striving solipsism . 2 +8240 342 With wit and empathy to spare 4 +8241 342 wit and empathy to spare 3 +8242 342 wit and empathy 3 +8243 342 wit and 2 +8244 342 empathy 3 +8245 342 to spare 2 +8246 342 spare 2 +8247 342 , waydowntown acknowledges the silent screams of workaday inertia but stops short of indulging its characters ' striving solipsism . 2 +8248 342 waydowntown acknowledges the silent screams of workaday inertia but stops short of indulging its characters ' striving solipsism . 1 +8249 342 waydowntown 2 +8250 342 acknowledges the silent screams of workaday inertia but stops short of indulging its characters ' striving solipsism . 2 +8251 342 acknowledges the silent screams of workaday inertia but stops short of indulging its characters ' striving solipsism 3 +8252 342 acknowledges the silent screams of workaday inertia but 3 +8253 342 acknowledges the silent screams of workaday inertia 2 +8254 342 acknowledges 2 +8255 342 the silent screams of workaday inertia 2 +8256 342 the silent screams 2 +8257 342 silent screams 2 +8258 342 silent 2 +8259 342 screams 1 +8260 342 of workaday inertia 2 +8261 342 workaday inertia 2 +8262 342 workaday 2 +8263 342 inertia 2 +8264 342 stops short of indulging its characters ' striving solipsism 1 +8265 342 stops 2 +8266 342 short of indulging its characters ' striving solipsism 2 +8267 342 of indulging its characters ' striving solipsism 2 +8268 342 indulging its characters ' striving solipsism 3 +8269 342 indulging 2 +8270 342 its characters ' striving solipsism 2 +8271 342 its characters ' 2 +8272 342 striving solipsism 2 +8273 342 striving 3 +8274 342 solipsism 2 +8275 343 It labours as storytelling . 1 +8276 343 labours as storytelling . 1 +8277 343 labours as storytelling 1 +8278 343 labours 2 +8279 343 as storytelling 2 +8280 344 Remember back when thrillers actually thrilled ? 1 +8281 344 Remember back when thrillers actually thrilled 0 +8282 344 Remember back 2 +8283 344 when thrillers actually thrilled 2 +8284 344 thrillers actually thrilled 3 +8285 344 actually thrilled 3 +8286 344 thrilled 3 +8287 345 The otherwise good-naturedness of Mr. Deeds , with its embrace of sheer goofiness and cameos of less - than-likely New York celebrities ... certainly raises the film above anything Sandler 's been attached to before . 3 +8288 345 The otherwise good-naturedness of Mr. Deeds , with its embrace of sheer goofiness and cameos of less - than-likely New York celebrities ... 2 +8289 345 The otherwise good-naturedness of Mr. Deeds , with its embrace of sheer goofiness and cameos of less - than-likely New York celebrities 3 +8290 345 The otherwise good-naturedness of Mr. Deeds , with its embrace of sheer goofiness and cameos of less - 2 +8291 345 The otherwise good-naturedness of Mr. Deeds , with its embrace of sheer goofiness and cameos of less 3 +8292 345 The otherwise good-naturedness of Mr. Deeds , with its embrace of sheer goofiness and cameos 3 +8293 345 The otherwise good-naturedness of Mr. Deeds , with its embrace 2 +8294 345 The otherwise good-naturedness of Mr. Deeds , 2 +8295 345 The otherwise good-naturedness of Mr. Deeds 2 +8296 345 The otherwise good-naturedness 2 +8297 345 otherwise good-naturedness 3 +8298 345 good-naturedness 3 +8299 345 of Mr. Deeds 2 +8300 345 Mr. Deeds 2 +8301 345 Deeds 2 +8302 345 with its embrace 2 +8303 345 its embrace 2 +8304 345 embrace 2 +8305 345 of sheer goofiness and cameos 2 +8306 345 sheer goofiness and cameos 3 +8307 345 sheer 2 +8308 345 goofiness and cameos 2 +8309 345 goofiness and 2 +8310 345 goofiness 3 +8311 345 cameos 2 +8312 345 of less 2 +8313 345 than-likely New York celebrities 2 +8314 345 than-likely 2 +8315 345 New York celebrities 2 +8316 345 York celebrities 2 +8317 345 celebrities 2 +8318 345 certainly raises the film above anything Sandler 's been attached to before . 4 +8319 345 certainly 3 +8320 345 raises the film above anything Sandler 's been attached to before . 4 +8321 345 raises the film above anything Sandler 's been attached to before 3 +8322 345 raises 2 +8323 345 the film above anything Sandler 's been attached to before 4 +8324 345 the film above anything Sandler 3 +8325 345 above anything Sandler 3 +8326 345 anything Sandler 3 +8327 345 Sandler 3 +8328 345 's been attached to before 2 +8329 345 been attached to before 2 +8330 345 attached to before 2 +8331 345 attached 2 +8332 345 to before 2 +8333 346 Fails so fundamentally on every conventional level that it achieves some kind of goofy grandeur . 1 +8334 346 Fails so fundamentally on every conventional level that it achieves some kind of goofy grandeur 1 +8335 346 Fails so fundamentally on every conventional level 0 +8336 346 so fundamentally on every conventional level 2 +8337 346 fundamentally on every conventional level 2 +8338 346 fundamentally 2 +8339 346 on every conventional level 2 +8340 346 every conventional level 2 +8341 346 conventional level 2 +8342 346 level 2 +8343 346 that it achieves some kind of goofy grandeur 2 +8344 346 it achieves some kind of goofy grandeur 3 +8345 346 achieves some kind of goofy grandeur 3 +8346 346 achieves 2 +8347 346 some kind of goofy grandeur 3 +8348 346 some kind 2 +8349 346 of goofy grandeur 2 +8350 346 goofy grandeur 2 +8351 346 goofy 2 +8352 346 grandeur 2 +8353 347 ... a ho-hum affair , always watchable yet hardly memorable . 2 +8354 347 a ho-hum affair , always watchable yet hardly memorable . 2 +8355 347 a ho-hum affair , always 1 +8356 347 a ho-hum affair , 1 +8357 347 a ho-hum affair 1 +8358 347 ho-hum affair 1 +8359 347 ho-hum 2 +8360 347 affair 1 +8361 347 always 2 +8362 347 watchable yet hardly memorable . 1 +8363 347 watchable yet hardly memorable 2 +8364 347 watchable 3 +8365 347 yet hardly memorable 1 +8366 347 hardly memorable 1 +8367 348 I just saw this movie ... well , it 's probably not accurate to call it a movie . 1 +8368 348 I just saw this movie ... well , it 's probably not accurate to call it a movie 1 +8369 348 I just saw this movie ... 2 +8370 348 I just saw this movie 2 +8371 348 just saw this movie 2 +8372 348 saw this movie 2 +8373 348 well , it 's probably not accurate to call it a movie 1 +8374 348 , it 's probably not accurate to call it a movie 0 +8375 348 it 's probably not accurate to call it a movie 1 +8376 348 's probably not accurate to call it a movie 1 +8377 348 's probably not 2 +8378 348 's probably 2 +8379 348 accurate to call it a movie 2 +8380 348 to call it a movie 2 +8381 348 call it a movie 2 +8382 348 call it 2 +8383 349 Though uniformly well acted , especially by young Ballesta and Galan -LRB- a first-time actor -RRB- , writer\/director Achero Manas 's film is schematic and obvious . 2 +8384 349 Though uniformly well acted 3 +8385 349 uniformly well acted 3 +8386 349 uniformly well 3 +8387 349 uniformly 2 +8388 349 acted 2 +8389 349 , especially by young Ballesta and Galan -LRB- a first-time actor -RRB- , writer\/director Achero Manas 's film is schematic and obvious . 2 +8390 349 especially by young Ballesta and Galan -LRB- a first-time actor -RRB- , writer\/director Achero Manas 's film is schematic and obvious . 2 +8391 349 especially by young Ballesta and Galan -LRB- a first-time actor -RRB- 2 +8392 349 especially 2 +8393 349 by young Ballesta and Galan -LRB- a first-time actor -RRB- 2 +8394 349 young Ballesta and Galan -LRB- a first-time actor -RRB- 2 +8395 349 young Ballesta and 2 +8396 349 young Ballesta 2 +8397 349 Ballesta 2 +8398 349 Galan -LRB- a first-time actor -RRB- 2 +8399 349 Galan 2 +8400 349 -LRB- a first-time actor -RRB- 2 +8401 349 a first-time actor -RRB- 2 +8402 349 a first-time actor 2 +8403 349 first-time actor 2 +8404 349 first-time 2 +8405 349 , writer\/director Achero Manas 's film is schematic and obvious . 1 +8406 349 writer\/director Achero Manas 's film is schematic and obvious . 1 +8407 349 writer\/director Achero Manas 's film 3 +8408 349 writer\/director Achero Manas 's 2 +8409 349 Achero Manas 's 2 +8410 349 Achero 2 +8411 349 Manas 's 2 +8412 349 Manas 2 +8413 349 is schematic and obvious . 1 +8414 349 is schematic and obvious 2 +8415 349 schematic and obvious 2 +8416 349 schematic and 2 +8417 349 schematic 2 +8418 349 obvious 1 +8419 350 When you resurrect a dead man , Hard Copy should come a-knocking , no ? 2 +8420 350 When you resurrect a dead man , Hard Copy should come a-knocking , no 2 +8421 350 When you resurrect a dead man , Hard Copy should come a-knocking , 2 +8422 350 When you resurrect a dead man , Hard Copy should come a-knocking 1 +8423 350 When you resurrect a dead man 2 +8424 350 you resurrect a dead man 2 +8425 350 resurrect a dead man 2 +8426 350 resurrect 2 +8427 350 a dead man 1 +8428 350 dead man 2 +8429 350 dead 1 +8430 350 , Hard Copy should come a-knocking 1 +8431 350 Hard Copy should come a-knocking 2 +8432 350 Hard Copy 3 +8433 350 Copy 2 +8434 350 should come a-knocking 3 +8435 350 come a-knocking 2 +8436 350 a-knocking 3 +8437 351 If the idea of the white man arriving on foreign shores to show wary natives the true light is abhorrent to you , the simplistic Heaven will quite likely be more like hell . 2 +8438 351 If the idea of the white man arriving on foreign shores to show wary natives the true light is abhorrent to you 2 +8439 351 the idea of the white man arriving on foreign shores to show wary natives the true light is abhorrent to you 1 +8440 351 the idea of the white man arriving on foreign shores to show wary natives the true light 2 +8441 351 of the white man arriving on foreign shores to show wary natives the true light 2 +8442 351 the white man arriving on foreign shores to show wary natives the true light 2 +8443 351 the white man 2 +8444 351 white man 2 +8445 351 white 2 +8446 351 arriving on foreign shores to show wary natives the true light 2 +8447 351 arriving on foreign shores 2 +8448 351 on foreign shores 3 +8449 351 foreign shores 2 +8450 351 shores 2 +8451 351 to show wary natives the true light 2 +8452 351 show wary natives the true light 2 +8453 351 show wary natives 2 +8454 351 wary natives 1 +8455 351 wary 2 +8456 351 natives 2 +8457 351 the true light 2 +8458 351 true light 3 +8459 351 true 3 +8460 351 is abhorrent to you 0 +8461 351 abhorrent to you 1 +8462 351 abhorrent 0 +8463 351 to you 2 +8464 351 , the simplistic Heaven will quite likely be more like hell . 2 +8465 351 the simplistic Heaven will quite likely be more like hell . 1 +8466 351 the simplistic Heaven 2 +8467 351 simplistic Heaven 2 +8468 351 simplistic 2 +8469 351 Heaven 3 +8470 351 will quite likely be more like hell . 1 +8471 351 will quite likely be more like hell 1 +8472 351 will quite likely 2 +8473 351 quite likely 2 +8474 351 likely 2 +8475 351 be more like hell 0 +8476 351 be more 2 +8477 351 like hell 2 +8478 351 hell 0 +8479 352 It 's hard to believe that a relationship like Holly and Marina 's could survive the hothouse emotions of teendom , and its longevity gets more inexplicable as the characterizations turn more crassly reductive . 2 +8480 352 It 's hard to believe that a relationship like Holly and Marina 's could survive the hothouse emotions of teendom , and its longevity gets more inexplicable as the characterizations turn more crassly reductive 2 +8481 352 It 's hard to believe that a relationship like Holly and Marina 's could survive the hothouse emotions of teendom , and 2 +8482 352 It 's hard to believe that a relationship like Holly and Marina 's could survive the hothouse emotions of teendom , 2 +8483 352 It 's hard to believe that a relationship like Holly and Marina 's could survive the hothouse emotions of teendom 3 +8484 352 's hard to believe that a relationship like Holly and Marina 's could survive the hothouse emotions of teendom 2 +8485 352 hard to believe that a relationship like Holly and Marina 's could survive the hothouse emotions of teendom 2 +8486 352 to believe that a relationship like Holly and Marina 's could survive the hothouse emotions of teendom 2 +8487 352 believe that a relationship like Holly and Marina 's could survive the hothouse emotions of teendom 2 +8488 352 that a relationship like Holly and Marina 's could survive the hothouse emotions of teendom 2 +8489 352 a relationship like Holly and Marina 's could survive the hothouse emotions of teendom 3 +8490 352 a relationship like Holly and 2 +8491 352 a relationship like Holly 2 +8492 352 like Holly 3 +8493 352 Holly 2 +8494 352 Marina 's could survive the hothouse emotions of teendom 2 +8495 352 Marina 's 2 +8496 352 Marina 2 +8497 352 could survive the hothouse emotions of teendom 2 +8498 352 survive the hothouse emotions of teendom 2 +8499 352 survive 2 +8500 352 the hothouse emotions of teendom 2 +8501 352 the hothouse emotions 2 +8502 352 hothouse emotions 2 +8503 352 hothouse 2 +8504 352 of teendom 2 +8505 352 teendom 2 +8506 352 its longevity gets more inexplicable as the characterizations turn more crassly reductive 1 +8507 352 its longevity 2 +8508 352 longevity 2 +8509 352 gets more inexplicable as the characterizations turn more crassly reductive 2 +8510 352 more inexplicable as the characterizations turn more crassly reductive 1 +8511 352 more inexplicable 1 +8512 352 inexplicable 2 +8513 352 as the characterizations turn more crassly reductive 1 +8514 352 the characterizations turn more crassly reductive 1 +8515 352 the characterizations 2 +8516 352 characterizations 2 +8517 352 turn more crassly reductive 1 +8518 352 more crassly reductive 2 +8519 352 crassly reductive 1 +8520 352 crassly 1 +8521 352 reductive 2 +8522 353 For a movie audience , The Hours does n't connect in a neat way , but introduces characters who illuminate mysteries of sex , duty and love . 2 +8523 353 For a movie audience 2 +8524 353 a movie audience 2 +8525 353 movie audience 2 +8526 353 , The Hours does n't connect in a neat way , but introduces characters who illuminate mysteries of sex , duty and love . 3 +8527 353 The Hours does n't connect in a neat way , but introduces characters who illuminate mysteries of sex , duty and love . 2 +8528 353 The Hours 2 +8529 353 Hours 2 +8530 353 does n't connect in a neat way , but introduces characters who illuminate mysteries of sex , duty and love . 2 +8531 353 does n't connect in a neat way , but introduces characters who illuminate mysteries of sex , duty and love 3 +8532 353 does n't connect in a neat way , but 1 +8533 353 does n't connect in a neat way , 1 +8534 353 does n't connect in a neat way 1 +8535 353 connect in a neat way 3 +8536 353 connect 2 +8537 353 in a neat way 3 +8538 353 a neat way 3 +8539 353 neat way 2 +8540 353 neat 3 +8541 353 introduces characters who illuminate mysteries of sex , duty and love 3 +8542 353 introduces 3 +8543 353 characters who illuminate mysteries of sex , duty and love 3 +8544 353 who illuminate mysteries of sex , duty and love 2 +8545 353 illuminate mysteries of sex , duty and love 3 +8546 353 illuminate 3 +8547 353 mysteries of sex , duty and love 3 +8548 353 mysteries 2 +8549 353 of sex , duty and love 2 +8550 353 sex , duty and love 3 +8551 353 , duty and love 2 +8552 353 duty and love 3 +8553 353 duty and 2 +8554 353 duty 2 +8555 354 Purports to be a Hollywood satire but winds up as the kind of film that should be the target of something deeper and more engaging . 1 +8556 354 Purports to be a Hollywood satire but winds up as the kind of film that should be the target of something 0 +8557 354 Purports 3 +8558 354 to be a Hollywood satire but winds up as the kind of film that should be the target of something 1 +8559 354 be a Hollywood satire but winds up as the kind of film that should be the target of something 2 +8560 354 a Hollywood satire but winds up as the kind of film that should be the target of something 0 +8561 354 a Hollywood satire but 2 +8562 354 a Hollywood satire 2 +8563 354 Hollywood satire 3 +8564 354 winds up as the kind of film that should be the target of something 2 +8565 354 winds up 2 +8566 354 as the kind of film that should be the target of something 2 +8567 354 the kind of film that should be the target of something 2 +8568 354 the kind of film 2 +8569 354 that should be the target of something 2 +8570 354 should be the target of something 2 +8571 354 be the target of something 2 +8572 354 the target of something 2 +8573 354 the target 2 +8574 354 target 2 +8575 354 of something 2 +8576 354 deeper and more engaging . 3 +8577 354 deeper and more engaging 4 +8578 354 deeper and more 2 +8579 354 deeper and 2 +8580 354 deeper 2 +8581 355 Too clever by about nine-tenths . 3 +8582 355 Too clever by about nine-tenths 2 +8583 355 clever by about nine-tenths 3 +8584 355 by about nine-tenths 2 +8585 355 about nine-tenths 2 +8586 355 nine-tenths 2 +8587 356 This is no `` Waterboy ! '' 1 +8588 356 is no `` Waterboy ! '' 2 +8589 356 is no `` Waterboy ! 2 +8590 356 is no `` Waterboy 2 +8591 356 no `` Waterboy 1 +8592 356 `` Waterboy 2 +8593 356 Waterboy 2 +8594 357 They 're going through the motions , but the zip is gone . 2 +8595 357 They 're going through the motions , but the zip is gone 2 +8596 357 They 're going through the motions , but 1 +8597 357 They 're going through the motions , 1 +8598 357 They 're going through the motions 2 +8599 357 're going through the motions 1 +8600 357 going through the motions 1 +8601 357 through the motions 2 +8602 357 the motions 2 +8603 357 motions 2 +8604 357 the zip is gone 1 +8605 357 the zip 2 +8606 357 zip 2 +8607 357 is gone 2 +8608 357 gone 2 +8609 358 The script 's snazzy dialogue establishes a realistic atmosphere that involves us in the unfolding crisis , but the lazy plotting ensures that little of our emotional investment pays off . 2 +8610 358 The script 's snazzy dialogue establishes a realistic atmosphere that involves us in the unfolding crisis , but the lazy plotting ensures that little of our emotional investment pays off 2 +8611 358 The script 's snazzy dialogue establishes a realistic atmosphere that involves us in the unfolding crisis , but 3 +8612 358 The script 's snazzy dialogue establishes a realistic atmosphere that involves us in the unfolding crisis , 3 +8613 358 The script 's snazzy dialogue establishes a realistic atmosphere that involves us in the unfolding crisis 3 +8614 358 The script 's snazzy dialogue 3 +8615 358 snazzy dialogue 3 +8616 358 snazzy 3 +8617 358 establishes a realistic atmosphere that involves us in the unfolding crisis 3 +8618 358 establishes 2 +8619 358 a realistic atmosphere that involves us in the unfolding crisis 3 +8620 358 a realistic atmosphere 3 +8621 358 realistic atmosphere 3 +8622 358 realistic 2 +8623 358 that involves us in the unfolding crisis 2 +8624 358 involves us in the unfolding crisis 2 +8625 358 involves us 2 +8626 358 involves 2 +8627 358 in the unfolding crisis 1 +8628 358 the unfolding crisis 2 +8629 358 unfolding crisis 2 +8630 358 unfolding 2 +8631 358 the lazy plotting ensures that little of our emotional investment pays off 2 +8632 358 the lazy plotting 1 +8633 358 lazy plotting 1 +8634 358 ensures that little of our emotional investment pays off 3 +8635 358 ensures 3 +8636 358 that little of our emotional investment pays off 2 +8637 358 little of our emotional investment pays off 2 +8638 358 little of our emotional investment 1 +8639 358 of our emotional investment 2 +8640 358 our emotional investment 3 +8641 358 emotional investment 3 +8642 358 investment 2 +8643 358 pays off 3 +8644 358 pays 2 +8645 359 Not as good as the original , but what is ... 2 +8646 359 Not as good as the original 1 +8647 359 as good as the original 3 +8648 359 good as the original 3 +8649 359 , but what is ... 2 +8650 359 what is ... 2 +8651 359 what is 2 +8652 360 Those moviegoers who would automatically bypass a hip-hop documentary should give `` Scratch '' a second look . 4 +8653 360 Those moviegoers who would automatically bypass a hip-hop documentary 3 +8654 360 Those moviegoers 2 +8655 360 who would automatically bypass a hip-hop documentary 2 +8656 360 would automatically bypass a hip-hop documentary 2 +8657 360 would automatically 2 +8658 360 automatically 2 +8659 360 bypass a hip-hop documentary 2 +8660 360 bypass 2 +8661 360 a hip-hop documentary 2 +8662 360 hip-hop documentary 2 +8663 360 hip-hop 2 +8664 360 should give `` Scratch '' a second look . 3 +8665 360 should give `` Scratch '' a second look 3 +8666 360 give `` Scratch '' a second look 3 +8667 360 give `` Scratch '' 2 +8668 360 `` Scratch '' 2 +8669 360 Scratch '' 2 +8670 360 a second look 2 +8671 360 second look 2 +8672 360 second 2 +8673 361 Bigelow offers some flashy twists and turns that occasionally fortify this turgid fable . 3 +8674 361 Bigelow 2 +8675 361 offers some flashy twists and turns that occasionally fortify this turgid fable . 3 +8676 361 offers some flashy twists and turns that occasionally fortify this turgid fable 3 +8677 361 offers some flashy twists and 3 +8678 361 offers some flashy twists 3 +8679 361 some flashy twists 3 +8680 361 flashy twists 3 +8681 361 flashy 3 +8682 361 twists 2 +8683 361 turns that occasionally fortify this turgid fable 2 +8684 361 turns that occasionally 2 +8685 361 turns that 3 +8686 361 turns 2 +8687 361 fortify this turgid fable 1 +8688 361 fortify 2 +8689 361 this turgid fable 1 +8690 361 turgid fable 1 +8691 361 turgid 1 +8692 361 fable 2 +8693 362 An unsophisticated sci-fi drama that takes itself all too seriously . 1 +8694 362 An unsophisticated 0 +8695 362 unsophisticated 1 +8696 362 sci-fi drama that takes itself all too seriously . 1 +8697 362 sci-fi drama that takes itself all too seriously 1 +8698 362 drama that takes itself all too seriously 1 +8699 362 that takes itself all too seriously 1 +8700 362 takes itself all too seriously 1 +8701 362 itself all too seriously 1 +8702 362 all too seriously 2 +8703 362 too seriously 2 +8704 362 seriously 2 +8705 363 Stupid , infantile , redundant , sloppy , over-the-top , and amateurish . 0 +8706 363 Stupid , infantile , redundant , sloppy , 0 +8707 363 Stupid , infantile , redundant , sloppy 0 +8708 363 Stupid , 0 +8709 363 Stupid 0 +8710 363 infantile , redundant , sloppy 0 +8711 363 infantile 1 +8712 363 , redundant , sloppy 1 +8713 363 redundant , sloppy 0 +8714 363 redundant 1 +8715 363 , sloppy 0 +8716 363 sloppy 0 +8717 363 over-the-top , and amateurish . 0 +8718 363 over-the-top , and amateurish 0 +8719 363 over-the-top , and 1 +8720 363 over-the-top , 2 +8721 363 over-the-top 2 +8722 364 Resident Evil is what comes from taking John Carpenter 's Ghosts of Mars and eliminating the beheadings . 2 +8723 364 Resident Evil 3 +8724 364 Resident 3 +8725 364 is what comes from taking John Carpenter 's Ghosts of Mars and eliminating the beheadings . 1 +8726 364 is what comes from taking John Carpenter 's Ghosts of Mars and eliminating the beheadings 2 +8727 364 what comes from taking John Carpenter 's Ghosts of Mars and eliminating the beheadings 1 +8728 364 comes from taking John Carpenter 's Ghosts of Mars and eliminating the beheadings 2 +8729 364 from taking John Carpenter 's Ghosts of Mars and eliminating the beheadings 1 +8730 364 taking John Carpenter 's Ghosts of Mars and eliminating the beheadings 2 +8731 364 taking John Carpenter 's Ghosts of Mars and 2 +8732 364 taking John Carpenter 's Ghosts of Mars 2 +8733 364 John Carpenter 's Ghosts of Mars 2 +8734 364 John Carpenter 's Ghosts 2 +8735 364 John Carpenter 's 2 +8736 364 Carpenter 's 2 +8737 364 Carpenter 2 +8738 364 Ghosts 2 +8739 364 of Mars 2 +8740 364 Mars 2 +8741 364 eliminating the beheadings 2 +8742 364 eliminating 2 +8743 364 the beheadings 2 +8744 364 beheadings 2 +8745 365 The movie resolutely avoids all the comic possibilities of its situation , and becomes one more dumb high school comedy about sex gags and prom dates . 0 +8746 365 resolutely avoids all the comic possibilities of its situation , and becomes one more dumb high school comedy about sex gags and prom dates . 1 +8747 365 resolutely 2 +8748 365 avoids all the comic possibilities of its situation , and becomes one more dumb high school comedy about sex gags and prom dates . 0 +8749 365 avoids all the comic possibilities of its situation , and becomes one more dumb high school comedy about sex gags and prom dates 0 +8750 365 avoids all the comic possibilities of its situation , and 1 +8751 365 avoids all the comic possibilities of its situation , 1 +8752 365 avoids all the comic possibilities of its situation 2 +8753 365 avoids 2 +8754 365 all the comic possibilities of its situation 3 +8755 365 all the comic possibilities 2 +8756 365 the comic possibilities 3 +8757 365 comic possibilities 3 +8758 365 possibilities 3 +8759 365 of its situation 2 +8760 365 its situation 2 +8761 365 situation 2 +8762 365 becomes one more dumb high school comedy about sex gags and prom dates 1 +8763 365 one more dumb high school comedy about sex gags and prom dates 0 +8764 365 one more dumb high school comedy 1 +8765 365 one more 2 +8766 365 dumb high school comedy 1 +8767 365 high school comedy 2 +8768 365 school comedy 2 +8769 365 about sex gags and prom dates 1 +8770 365 sex gags and prom dates 1 +8771 365 gags and prom dates 2 +8772 365 and prom dates 2 +8773 365 prom dates 2 +8774 365 prom 2 +8775 365 dates 3 +8776 366 With or without the sex , a wonderful tale of love and destiny , told well by a master storyteller 4 +8777 366 With or without the sex , a wonderful tale of love and destiny 4 +8778 366 With or without 2 +8779 366 With or 2 +8780 366 the sex , a wonderful tale of love and destiny 4 +8781 366 the sex , 2 +8782 366 the sex 2 +8783 366 a wonderful tale of love and destiny 4 +8784 366 a wonderful tale 3 +8785 366 wonderful tale 4 +8786 366 of love and destiny 3 +8787 366 love and destiny 2 +8788 366 love and 3 +8789 366 destiny 2 +8790 366 , told well by a master storyteller 3 +8791 366 told well by a master storyteller 3 +8792 366 told well by a master 3 +8793 366 told well 3 +8794 366 by a master 3 +8795 366 a master 4 +8796 366 master 2 +8797 366 storyteller 2 +8798 367 Though it goes further than both , anyone who has seen The Hunger or Cat People will find little new here , but a tasty performance from Vincent Gallo lifts this tale of cannibal lust above the ordinary . 3 +8799 367 Though it goes further than both , anyone who has seen The Hunger or Cat People will find little new here , but a tasty performance from Vincent Gallo lifts this tale of cannibal lust above the ordinary 2 +8800 367 Though it goes further than both , anyone who has seen The Hunger or Cat People will find little new here , but 2 +8801 367 Though it goes further than both , anyone who has seen The Hunger or Cat People will find little new here , 1 +8802 367 Though it goes further than both , anyone who has seen The Hunger or Cat People will find little new here 1 +8803 367 Though it goes further than both 2 +8804 367 it goes further than both 3 +8805 367 goes further than both 2 +8806 367 goes further 3 +8807 367 further 2 +8808 367 than both 2 +8809 367 , anyone who has seen The Hunger or Cat People will find little new here 2 +8810 367 anyone who has seen The Hunger or Cat People will find little new here 1 +8811 367 anyone who has seen The Hunger or Cat People 2 +8812 367 anyone 2 +8813 367 who has seen The Hunger or Cat People 2 +8814 367 has seen The Hunger or Cat People 2 +8815 367 seen The Hunger or Cat People 2 +8816 367 The Hunger or Cat People 2 +8817 367 Hunger or Cat People 2 +8818 367 Hunger 2 +8819 367 or Cat People 2 +8820 367 Cat People 2 +8821 367 Cat 2 +8822 367 will find little new here 1 +8823 367 find little new here 2 +8824 367 find little new 1 +8825 367 little new 2 +8826 367 a tasty performance from Vincent Gallo lifts this tale of cannibal lust above the ordinary 3 +8827 367 a tasty performance from Vincent Gallo 3 +8828 367 a tasty performance 3 +8829 367 tasty performance 3 +8830 367 tasty 3 +8831 367 from Vincent Gallo 2 +8832 367 lifts this tale of cannibal lust above the ordinary 3 +8833 367 lifts 2 +8834 367 this tale of cannibal lust above the ordinary 2 +8835 367 this tale 2 +8836 367 of cannibal lust above the ordinary 2 +8837 367 cannibal lust above the ordinary 3 +8838 367 cannibal lust 2 +8839 367 cannibal 1 +8840 367 lust 3 +8841 367 above the ordinary 3 +8842 367 the ordinary 2 +8843 367 ordinary 1 +8844 368 A terrific date movie , whatever your orientation . 3 +8845 368 A terrific date movie 4 +8846 368 terrific date movie 3 +8847 368 date movie 2 +8848 368 , whatever your orientation . 3 +8849 368 whatever your orientation . 2 +8850 368 whatever your orientation 2 +8851 368 your orientation 2 +8852 368 orientation 2 +8853 369 Once the expectation of laughter has been quashed by whatever obscenity is at hand , even the funniest idea is n't funny . 0 +8854 369 Once the expectation of laughter has been quashed by whatever obscenity is at hand 1 +8855 369 the expectation of laughter has been quashed by whatever obscenity is at hand 1 +8856 369 the expectation of laughter 2 +8857 369 the expectation 2 +8858 369 expectation 2 +8859 369 of laughter 2 +8860 369 laughter 4 +8861 369 has been quashed by whatever obscenity is at hand 2 +8862 369 been quashed by whatever obscenity is at hand 1 +8863 369 quashed by whatever obscenity is at hand 2 +8864 369 quashed 2 +8865 369 by whatever obscenity is at hand 2 +8866 369 whatever obscenity is at hand 2 +8867 369 obscenity is at hand 1 +8868 369 obscenity 1 +8869 369 is at hand 2 +8870 369 at hand 2 +8871 369 hand 2 +8872 369 , even the funniest idea is n't funny . 1 +8873 369 even the funniest idea is n't funny . 2 +8874 369 even the funniest idea 2 +8875 369 the funniest idea 3 +8876 369 funniest idea 4 +8877 369 funniest 4 +8878 369 is n't funny . 1 +8879 369 is n't funny 1 +8880 370 How do you make a movie with depth about a man who lacked any ? 1 +8881 370 do you make a movie with depth about a man who lacked any ? 1 +8882 370 do you make a movie with depth about a man who lacked any 1 +8883 370 do you 3 +8884 370 make a movie with depth about a man who lacked any 2 +8885 370 make a movie with depth 2 +8886 370 a movie with depth 3 +8887 370 with depth 3 +8888 370 depth 2 +8889 370 about a man who lacked any 2 +8890 370 a man who lacked any 2 +8891 370 who lacked any 2 +8892 370 lacked any 1 +8893 370 lacked 1 +8894 371 Translation : ` We do n't need to try very hard . ' 1 +8895 371 Translation : ` We do n't need to try very hard . 1 +8896 371 Translation : ` We do n't need to try very hard 1 +8897 371 Translation : ` 2 +8898 371 Translation : 2 +8899 371 Translation 2 +8900 371 We do n't need to try very hard 2 +8901 371 do n't need to try very hard 1 +8902 371 need to try very hard 1 +8903 371 to try very hard 2 +8904 371 try very hard 2 +8905 371 very hard 2 +8906 372 `` Frailty '' offers chills much like those that you get when sitting around a campfire around midnight , telling creepy stories to give each other the willies . 4 +8907 372 Frailty '' offers chills much like those that you get when sitting around a campfire around midnight , telling creepy stories to give each other the willies . 4 +8908 372 Frailty 2 +8909 372 '' offers chills much like those that you get when sitting around a campfire around midnight , telling creepy stories to give each other the willies . 3 +8910 372 offers chills much like those that you get when sitting around a campfire around midnight , telling creepy stories to give each other the willies . 4 +8911 372 offers chills much like those that you get when sitting around a campfire around midnight , telling creepy stories to give each other the willies 3 +8912 372 offers chills much like those 3 +8913 372 offers chills 3 +8914 372 much like those 2 +8915 372 like those 2 +8916 372 that you get when sitting around a campfire around midnight , telling creepy stories to give each other the willies 3 +8917 372 you get when sitting around a campfire around midnight , telling creepy stories to give each other the willies 2 +8918 372 get when sitting around a campfire around midnight , telling creepy stories to give each other the willies 2 +8919 372 when sitting around a campfire around midnight , telling creepy stories to give each other the willies 2 +8920 372 sitting around a campfire around midnight , telling creepy stories to give each other the willies 2 +8921 372 sitting around a campfire around midnight , 2 +8922 372 sitting around a campfire around midnight 2 +8923 372 sitting around 1 +8924 372 a campfire around midnight 2 +8925 372 a campfire 2 +8926 372 campfire 2 +8927 372 around midnight 2 +8928 372 telling creepy stories to give each other the willies 2 +8929 372 telling creepy stories 2 +8930 372 telling 3 +8931 372 creepy stories 3 +8932 372 to give each other the willies 2 +8933 372 give each other the willies 1 +8934 372 give each other 2 +8935 372 each other 2 +8936 372 each 2 +8937 372 the willies 2 +8938 372 willies 2 +8939 373 Less front-loaded and more shapely than the two-hour version released here in 1990 . 2 +8940 373 Less front-loaded and more shapely than the two-hour version released here in 1990 2 +8941 373 Less front-loaded and 2 +8942 373 Less front-loaded 3 +8943 373 front-loaded 2 +8944 373 more shapely than the two-hour version released here in 1990 3 +8945 373 shapely than the two-hour version released here in 1990 2 +8946 373 shapely 2 +8947 373 than the two-hour version released here in 1990 2 +8948 373 the two-hour version released here in 1990 2 +8949 373 the two-hour version 2 +8950 373 two-hour version 2 +8951 373 two-hour 2 +8952 373 released here in 1990 2 +8953 373 released here 2 +8954 373 in 1990 2 +8955 373 1990 2 +8956 374 An ambitious movie that , like Shiner 's organizing of the big fight , pulls off enough of its effects to make up for the ones that do n't come off . 4 +8957 374 An ambitious movie that , like Shiner 's organizing of the big fight , pulls off enough of its effects to make up for the ones that do n't come off 4 +8958 374 An ambitious movie that , like Shiner 's organizing of the big fight , pulls off enough 3 +8959 374 An ambitious movie 3 +8960 374 ambitious movie 3 +8961 374 ambitious 3 +8962 374 that , like Shiner 's organizing of the big fight , pulls off enough 3 +8963 374 , like Shiner 's organizing of the big fight , pulls off enough 3 +8964 374 like Shiner 's organizing of the big fight , pulls off enough 3 +8965 374 like Shiner 's organizing of the big fight 2 +8966 374 Shiner 's organizing of the big fight 2 +8967 374 Shiner 's organizing 2 +8968 374 Shiner 's 2 +8969 374 Shiner 3 +8970 374 organizing 2 +8971 374 of the big fight 2 +8972 374 the big fight 2 +8973 374 big fight 2 +8974 374 fight 2 +8975 374 , pulls off enough 2 +8976 374 pulls off enough 3 +8977 374 pulls 2 +8978 374 off enough 2 +8979 374 of its effects to make up for the ones that do n't come off 2 +8980 374 its effects to make up for the ones that do n't come off 2 +8981 374 effects to make up for the ones that do n't come off 2 +8982 374 effects 2 +8983 374 to make up for the ones that do n't come off 3 +8984 374 make up for the ones that do n't come off 2 +8985 374 make up 2 +8986 374 for the ones that do n't come off 3 +8987 374 the ones that do n't come off 2 +8988 374 that do n't come off 2 +8989 374 do n't come off 1 +8990 374 come off 2 +8991 375 Some movies suck you in despite their flaws , and Heaven is one such beast . 4 +8992 375 Some movies suck you in despite their flaws , and Heaven is one such beast 2 +8993 375 Some movies suck you in despite their flaws , and 3 +8994 375 Some movies suck you in despite their flaws , 3 +8995 375 Some movies suck you in despite their flaws 2 +8996 375 Some movies 2 +8997 375 suck you in despite their flaws 2 +8998 375 suck you 2 +8999 375 suck 1 +9000 375 in despite their flaws 2 +9001 375 despite their flaws 2 +9002 375 their flaws 2 +9003 375 flaws 1 +9004 375 Heaven is one such beast 3 +9005 375 is one such beast 2 +9006 375 one such beast 2 +9007 375 such beast 2 +9008 375 beast 2 +9009 376 Very well written and directed with brutal honesty and respect for its audience . 4 +9010 376 well written and directed with brutal honesty and respect for its audience . 4 +9011 376 written and directed with brutal honesty and respect for its audience . 4 +9012 376 written and directed with brutal honesty and respect for its audience 4 +9013 376 written and directed 2 +9014 376 written and 2 +9015 376 with brutal honesty and respect for its audience 3 +9016 376 brutal honesty and respect for its audience 2 +9017 376 brutal honesty and respect 4 +9018 376 brutal 2 +9019 376 honesty and respect 3 +9020 376 honesty and 3 +9021 376 honesty 3 +9022 376 respect 3 +9023 376 for its audience 2 +9024 377 Twenty years after its first release , E.T. remains the most wondrous of all Hollywood fantasies -- and the apex of Steven Spielberg 's misunderstood career . 4 +9025 377 Twenty years after its first release 2 +9026 377 Twenty years 2 +9027 377 Twenty 2 +9028 377 after its first release 2 +9029 377 its first release 2 +9030 377 first release 2 +9031 377 release 2 +9032 377 , E.T. remains the most wondrous of all Hollywood fantasies -- and the apex of Steven Spielberg 's misunderstood career . 4 +9033 377 E.T. remains the most wondrous of all Hollywood fantasies -- and the apex of Steven Spielberg 's misunderstood career . 4 +9034 377 E.T. 2 +9035 377 remains the most wondrous of all Hollywood fantasies -- and the apex of Steven Spielberg 's misunderstood career . 3 +9036 377 remains the most wondrous of all Hollywood fantasies -- and the apex of Steven Spielberg 's misunderstood career 4 +9037 377 the most wondrous of all Hollywood fantasies -- and the apex of Steven Spielberg 's misunderstood career 4 +9038 377 the most wondrous of all Hollywood fantasies -- and 3 +9039 377 the most wondrous of all Hollywood fantasies -- 4 +9040 377 the most wondrous of all Hollywood fantasies 3 +9041 377 the most wondrous 2 +9042 377 most wondrous 3 +9043 377 wondrous 3 +9044 377 of all Hollywood fantasies 3 +9045 377 all Hollywood fantasies 1 +9046 377 Hollywood fantasies 2 +9047 377 fantasies 3 +9048 377 the apex of Steven Spielberg 's misunderstood career 2 +9049 377 the apex 2 +9050 377 apex 2 +9051 377 of Steven Spielberg 's misunderstood career 2 +9052 377 Steven Spielberg 's misunderstood career 2 +9053 377 misunderstood career 2 +9054 377 misunderstood 2 +9055 378 Gooding offers a desperately ingratiating performance . 1 +9056 378 Gooding 2 +9057 378 offers a desperately ingratiating performance . 3 +9058 378 offers a desperately ingratiating performance 1 +9059 378 a desperately ingratiating performance 2 +9060 378 desperately ingratiating performance 2 +9061 378 desperately ingratiating 2 +9062 378 desperately 1 +9063 378 ingratiating 1 +9064 379 ... stumbles over every cheap trick in the book trying to make the outrage come even easier . 1 +9065 379 stumbles over every cheap trick in the book trying to make the outrage come even easier . 1 +9066 379 stumbles over every cheap trick in the book trying to make the outrage 1 +9067 379 stumbles 1 +9068 379 over every cheap trick in the book trying to make the outrage 1 +9069 379 every cheap trick in the book trying to make the outrage 0 +9070 379 every cheap trick 1 +9071 379 cheap trick 1 +9072 379 trick 2 +9073 379 in the book trying to make the outrage 2 +9074 379 the book trying to make the outrage 2 +9075 379 the book 2 +9076 379 trying to make the outrage 2 +9077 379 to make the outrage 2 +9078 379 make the outrage 2 +9079 379 the outrage 2 +9080 379 outrage 2 +9081 379 come even easier . 3 +9082 379 come even easier 2 +9083 379 even easier 2 +9084 379 easier 2 +9085 380 Nicely combines the enigmatic features of ` Memento ' with the hallucinatory drug culture of ` Requiem for a Dream . ' 3 +9086 380 combines the enigmatic features of ` Memento ' with the hallucinatory drug culture of ` Requiem for a Dream . ' 2 +9087 380 combines the enigmatic features of ` Memento ' with the hallucinatory drug culture of ` Requiem for a Dream . 4 +9088 380 combines the enigmatic features of ` Memento ' with the hallucinatory drug culture of ` Requiem for a Dream 3 +9089 380 combines the enigmatic features of ` Memento ' 3 +9090 380 combines 2 +9091 380 the enigmatic features of ` Memento ' 2 +9092 380 the enigmatic features 2 +9093 380 enigmatic features 3 +9094 380 enigmatic 2 +9095 380 features 2 +9096 380 of ` Memento ' 2 +9097 380 ` Memento ' 2 +9098 380 Memento ' 2 +9099 380 Memento 2 +9100 380 with the hallucinatory drug culture of ` Requiem for a Dream 2 +9101 380 the hallucinatory drug culture of ` Requiem for a Dream 2 +9102 380 the hallucinatory drug culture 1 +9103 380 hallucinatory drug culture 2 +9104 380 hallucinatory 2 +9105 380 drug culture 3 +9106 380 drug 2 +9107 380 of ` Requiem for a Dream 2 +9108 380 Requiem for a Dream 2 +9109 380 Requiem 2 +9110 380 for a Dream 2 +9111 380 a Dream 2 +9112 381 Every individual will see the movie through the prism of his or her own beliefs and prejudices , but the one thing most will take away is the sense that peace is possible . 4 +9113 381 Every individual will see the movie through the prism of his or her own beliefs and prejudices , but the one thing most will take away is the sense that peace is possible 4 +9114 381 Every individual will see the movie through the prism of his or her own beliefs and prejudices , but 2 +9115 381 Every individual will see the movie through the prism of his or her own beliefs and prejudices , 3 +9116 381 Every individual will see the movie through the prism of his or her own beliefs and prejudices 3 +9117 381 Every individual 2 +9118 381 individual 2 +9119 381 will see the movie through the prism of his or her own beliefs and prejudices 2 +9120 381 see the movie through the prism of his or her own beliefs and prejudices 3 +9121 381 see the movie 3 +9122 381 through the prism of his or her own beliefs and prejudices 2 +9123 381 the prism of his or her own beliefs and prejudices 2 +9124 381 the prism 2 +9125 381 prism 2 +9126 381 of his or her own beliefs and prejudices 2 +9127 381 his or her own beliefs and prejudices 2 +9128 381 his or her own beliefs and 2 +9129 381 his or her own beliefs 2 +9130 381 his or her 2 +9131 381 his or 2 +9132 381 own beliefs 2 +9133 381 beliefs 2 +9134 381 prejudices 1 +9135 381 the one thing most will take away is the sense that peace is possible 3 +9136 381 the one thing most will take away 2 +9137 381 most will take away 2 +9138 381 will take away 2 +9139 381 take away 2 +9140 381 take 2 +9141 381 is the sense that peace is possible 3 +9142 381 is the sense 2 +9143 381 the sense 2 +9144 381 that peace is possible 3 +9145 381 peace is possible 3 +9146 381 peace 2 +9147 381 is possible 2 +9148 381 possible 2 +9149 382 Just a bunch of good actors flailing around in a caper that 's neither original nor terribly funny . 0 +9150 382 Just a bunch of good actors flailing around in a caper that 's neither original nor terribly funny 3 +9151 382 Just a bunch of good actors 3 +9152 382 Just a bunch 2 +9153 382 of good actors 3 +9154 382 good actors 3 +9155 382 flailing around in a caper that 's neither original nor terribly funny 1 +9156 382 flailing around 1 +9157 382 flailing 1 +9158 382 in a caper that 's neither original nor terribly funny 1 +9159 382 a caper that 's neither original nor terribly funny 1 +9160 382 a caper 2 +9161 382 that 's neither original nor terribly funny 1 +9162 382 's neither original nor terribly funny 1 +9163 382 's neither 2 +9164 382 original nor terribly funny 1 +9165 382 nor terribly funny 1 +9166 382 terribly funny 3 +9167 382 terribly 0 +9168 383 This ill-conceived and expensive project winds up looking like a bunch of talented thesps slumming it . 0 +9169 383 This ill-conceived and expensive project 1 +9170 383 ill-conceived and expensive project 0 +9171 383 ill-conceived and expensive 1 +9172 383 ill-conceived and 1 +9173 383 ill-conceived 2 +9174 383 expensive 2 +9175 383 project 2 +9176 383 winds up looking like a bunch of talented thesps slumming it . 1 +9177 383 winds up looking like a bunch of talented thesps slumming it 1 +9178 383 looking like a bunch of talented thesps slumming it 1 +9179 383 like a bunch of talented thesps slumming it 1 +9180 383 a bunch of talented thesps slumming it 1 +9181 383 a bunch of talented thesps 3 +9182 383 of talented thesps 2 +9183 383 talented thesps 3 +9184 383 talented 3 +9185 383 thesps 2 +9186 383 slumming it 2 +9187 383 slumming 1 +9188 384 Broder 's screenplay is shallow , offensive and redundant , with pitifully few real laughs . 1 +9189 384 Broder 's screenplay 2 +9190 384 Broder 's 2 +9191 384 Broder 2 +9192 384 is shallow , offensive and redundant , with pitifully few real laughs . 0 +9193 384 is shallow , offensive and redundant , with pitifully few real laughs 0 +9194 384 is shallow , offensive and redundant , 0 +9195 384 is shallow , offensive and redundant 0 +9196 384 shallow , offensive and redundant 1 +9197 384 , offensive and redundant 1 +9198 384 offensive and redundant 0 +9199 384 offensive and 1 +9200 384 offensive 1 +9201 384 with pitifully few real laughs 1 +9202 384 pitifully few real laughs 1 +9203 384 pitifully 1 +9204 384 few real laughs 2 +9205 384 real laughs 3 +9206 385 Leguizamo and Jones are both excellent and the rest of the cast is uniformly superb . 4 +9207 385 Leguizamo and Jones are both excellent and the rest of the cast is uniformly superb 4 +9208 385 Leguizamo and Jones are both excellent and 4 +9209 385 Leguizamo and Jones are both excellent 4 +9210 385 Leguizamo and Jones 2 +9211 385 Leguizamo and 2 +9212 385 Leguizamo 2 +9213 385 are both excellent 4 +9214 385 are both 2 +9215 385 excellent 4 +9216 385 the rest of the cast is uniformly superb 3 +9217 385 the rest of the cast 2 +9218 385 of the cast 2 +9219 385 is uniformly superb 4 +9220 385 uniformly superb 4 +9221 385 superb 4 +9222 386 Trying to figure out the rules of the Country Bear universe -- when are bears bears and when are they like humans , only hairier -- would tax Einstein 's brain . 1 +9223 386 Trying to figure out the rules of the Country Bear universe 2 +9224 386 to figure out the rules of the Country Bear universe 2 +9225 386 figure out the rules of the Country Bear universe 2 +9226 386 figure out 2 +9227 386 figure 2 +9228 386 the rules of the Country Bear universe 2 +9229 386 the rules 2 +9230 386 rules 2 +9231 386 of the Country Bear universe 2 +9232 386 the Country Bear universe 2 +9233 386 Country Bear universe 2 +9234 386 Bear universe 2 +9235 386 Bear 2 +9236 386 universe 2 +9237 386 -- when are bears bears and when are they like humans , only hairier -- would tax Einstein 's brain . 1 +9238 386 -- when are bears bears and when are they like humans , only hairier -- 2 +9239 386 when are bears bears and when are they like humans , only hairier -- 2 +9240 386 when are bears bears and when are they like humans , only hairier 2 +9241 386 when are bears bears and 3 +9242 386 when are bears bears 2 +9243 386 are bears bears 2 +9244 386 bears bears 2 +9245 386 when are they like humans , only hairier 2 +9246 386 are they like humans , only hairier 1 +9247 386 are they 2 +9248 386 like humans , only hairier 2 +9249 386 humans , only hairier 2 +9250 386 humans , only 2 +9251 386 humans , 2 +9252 386 humans 2 +9253 386 hairier 2 +9254 386 would tax Einstein 's brain . 1 +9255 386 would tax Einstein 's brain 1 +9256 386 tax Einstein 's brain 2 +9257 386 tax 2 +9258 386 Einstein 's brain 2 +9259 386 Einstein 's 2 +9260 386 Einstein 2 +9261 386 brain 2 +9262 387 `` Feardotcom '' has the makings of an interesting meditation on the ethereal nature of the internet and the otherworldly energies it could channel , but it simply becomes a routine shocker . 2 +9263 387 `` Feardotcom '' has the makings of an interesting meditation on the ethereal nature of the internet and the otherworldly energies it could channel , but it simply becomes a routine shocker 1 +9264 387 `` Feardotcom '' has the makings of an interesting meditation on the ethereal nature of the internet and the otherworldly energies it could channel , but 1 +9265 387 `` Feardotcom '' has the makings of an interesting meditation on the ethereal nature of the internet and the otherworldly energies it could channel , 3 +9266 387 `` Feardotcom '' has the makings of an interesting meditation on the ethereal nature of the internet and the otherworldly energies it could channel 3 +9267 387 Feardotcom '' has the makings of an interesting meditation on the ethereal nature of the internet and the otherworldly energies it could channel 3 +9268 387 Feardotcom 2 +9269 387 '' has the makings of an interesting meditation on the ethereal nature of the internet and the otherworldly energies it could channel 3 +9270 387 has the makings of an interesting meditation on the ethereal nature of the internet and the otherworldly energies it could channel 2 +9271 387 the makings of an interesting meditation on the ethereal nature of the internet and the otherworldly energies it could channel 3 +9272 387 the makings of an interesting meditation on the ethereal nature of the internet and the otherworldly energies 3 +9273 387 the makings 2 +9274 387 makings 2 +9275 387 of an interesting meditation on the ethereal nature of the internet and the otherworldly energies 3 +9276 387 an interesting meditation on the ethereal nature of the internet and the otherworldly energies 3 +9277 387 an interesting meditation 4 +9278 387 interesting meditation 3 +9279 387 on the ethereal nature of the internet and the otherworldly energies 3 +9280 387 the ethereal nature of the internet and the otherworldly energies 2 +9281 387 the ethereal nature 2 +9282 387 ethereal nature 2 +9283 387 ethereal 3 +9284 387 of the internet and the otherworldly energies 2 +9285 387 the internet and the otherworldly energies 2 +9286 387 the internet and 2 +9287 387 the internet 2 +9288 387 internet 2 +9289 387 the otherworldly energies 2 +9290 387 otherworldly energies 2 +9291 387 otherworldly 3 +9292 387 energies 2 +9293 387 it could channel 3 +9294 387 could channel 3 +9295 387 channel 2 +9296 387 it simply becomes a routine shocker 2 +9297 387 simply becomes a routine shocker 1 +9298 387 becomes a routine shocker 2 +9299 387 a routine shocker 1 +9300 387 routine shocker 2 +9301 388 Delia , Greta , and Paula rank as three of the most multilayered and sympathetic female characters of the year . 4 +9302 388 Delia , Greta , and Paula 2 +9303 388 Delia 2 +9304 388 , Greta , and Paula 2 +9305 388 Greta , and Paula 2 +9306 388 Greta 2 +9307 388 , and Paula 2 +9308 388 Paula 2 +9309 388 rank as three of the most multilayered and sympathetic female characters of the year . 4 +9310 388 rank as three of the most multilayered and sympathetic female characters of the year 4 +9311 388 rank 1 +9312 388 as three of the most multilayered and sympathetic female characters of the year 3 +9313 388 as three 2 +9314 388 three 2 +9315 388 of the most multilayered and sympathetic female characters of the year 4 +9316 388 the most multilayered and sympathetic female characters of the year 3 +9317 388 the most multilayered and sympathetic female characters 2 +9318 388 most multilayered and sympathetic female characters 4 +9319 388 most multilayered and sympathetic 3 +9320 388 multilayered and sympathetic 3 +9321 388 multilayered and 2 +9322 388 multilayered 3 +9323 388 sympathetic 2 +9324 388 female characters 2 +9325 388 female 2 +9326 389 The beauty of Alexander Payne 's ode to the Everyman is in the details . 3 +9327 389 The beauty of Alexander Payne 's ode to the Everyman 2 +9328 389 The beauty 3 +9329 389 beauty 3 +9330 389 of Alexander Payne 's ode to the Everyman 2 +9331 389 Alexander Payne 's ode to the Everyman 3 +9332 389 Alexander Payne 's ode 2 +9333 389 Alexander Payne 's 2 +9334 389 Alexander 2 +9335 389 Payne 's 2 +9336 389 Payne 2 +9337 389 ode 2 +9338 389 to the Everyman 2 +9339 389 the Everyman 2 +9340 389 Everyman 2 +9341 389 is in the details . 2 +9342 389 is in the details 2 +9343 389 in the details 2 +9344 390 The town has kind of an authentic feel , but each one of these people stand out and everybody else is in the background and it just seems manufactured to me and artificial . 1 +9345 390 The town has kind of an authentic feel , but each one of these people stand out and everybody else is in the background and it just seems manufactured to me and artificial 1 +9346 390 The town has kind of an authentic feel , but 3 +9347 390 The town has kind of an authentic feel , 3 +9348 390 The town has kind of an authentic feel 3 +9349 390 The town 2 +9350 390 town 3 +9351 390 has kind of an authentic feel 3 +9352 390 kind of an authentic feel 3 +9353 390 of an authentic feel 3 +9354 390 an authentic feel 3 +9355 390 authentic feel 3 +9356 390 authentic 3 +9357 390 each one of these people stand out and everybody else is in the background and it just seems manufactured to me and artificial 1 +9358 390 each one of these people stand out and 3 +9359 390 each one of these people stand out 3 +9360 390 each one of these people 2 +9361 390 each one 2 +9362 390 of these people 2 +9363 390 these people 2 +9364 390 stand out 3 +9365 390 stand 2 +9366 390 everybody else is in the background and it just seems manufactured to me and artificial 0 +9367 390 everybody else is in the background and 2 +9368 390 everybody else is in the background 3 +9369 390 everybody else 2 +9370 390 everybody 2 +9371 390 is in the background 2 +9372 390 in the background 2 +9373 390 the background 2 +9374 390 background 2 +9375 390 it just seems manufactured to me and artificial 1 +9376 390 just seems manufactured to me and artificial 2 +9377 390 seems manufactured to me and artificial 1 +9378 390 manufactured to me and artificial 1 +9379 390 manufactured 2 +9380 390 to me and artificial 2 +9381 390 me and artificial 2 +9382 390 me and 2 +9383 390 artificial 1 +9384 391 Julie Davis is the Kathie Lee Gifford of film directors , sadly proving once again ego does n't always go hand in hand with talent . 1 +9385 391 Julie Davis 2 +9386 391 Julie 2 +9387 391 Davis 3 +9388 391 is the Kathie Lee Gifford of film directors , sadly proving once again ego does n't always go hand in hand with talent . 1 +9389 391 is the Kathie Lee Gifford of film directors , sadly proving once again ego does n't always go hand in hand with talent 0 +9390 391 is the Kathie Lee Gifford of film directors , 0 +9391 391 is the Kathie Lee Gifford of film directors 1 +9392 391 the Kathie Lee Gifford of film directors 2 +9393 391 the Kathie Lee Gifford 2 +9394 391 Kathie Lee Gifford 2 +9395 391 Kathie 2 +9396 391 Lee Gifford 2 +9397 391 Gifford 2 +9398 391 of film directors 2 +9399 391 film directors 2 +9400 391 sadly proving once again ego does n't always go hand in hand with talent 1 +9401 391 proving once again ego does n't always go hand in hand with talent 1 +9402 391 proving 2 +9403 391 once again ego does n't always go hand in hand with talent 1 +9404 391 again ego does n't always go hand in hand with talent 1 +9405 391 again ego 2 +9406 391 again 2 +9407 391 ego 2 +9408 391 does n't always go hand in hand with talent 2 +9409 391 does n't always 2 +9410 391 go hand in hand with talent 3 +9411 391 go hand in hand 3 +9412 391 hand in hand 3 +9413 391 in hand 2 +9414 391 with talent 3 +9415 391 talent 3 +9416 392 Much credit must be given to the water-camera operating team of Don King , Sonny Miller , and Michael Stewart . 3 +9417 392 Much credit 3 +9418 392 credit 2 +9419 392 must be given to the water-camera operating team of Don King , Sonny Miller , and Michael Stewart . 1 +9420 392 must be given to the water-camera operating team of Don King , Sonny Miller , and Michael Stewart 2 +9421 392 must 2 +9422 392 be given to the water-camera operating team of Don King , Sonny Miller , and Michael Stewart 2 +9423 392 given to the water-camera operating team of Don King , Sonny Miller , and Michael Stewart 2 +9424 392 to the water-camera operating team of Don King , Sonny Miller , and Michael Stewart 2 +9425 392 the water-camera operating team of Don King , Sonny Miller , and Michael Stewart 2 +9426 392 the water-camera operating team 2 +9427 392 water-camera operating team 2 +9428 392 water-camera 2 +9429 392 operating team 2 +9430 392 operating 2 +9431 392 of Don King , Sonny Miller , and Michael Stewart 2 +9432 392 Don King , Sonny Miller , and Michael Stewart 2 +9433 392 Don King , Sonny Miller , and 2 +9434 392 Don King , Sonny Miller , 2 +9435 392 Don King , Sonny Miller 2 +9436 392 Don King , 2 +9437 392 Don King 2 +9438 392 Don 3 +9439 392 King 2 +9440 392 Sonny Miller 2 +9441 392 Sonny 2 +9442 392 Miller 2 +9443 392 Michael Stewart 2 +9444 392 Michael 2 +9445 392 Stewart 2 +9446 393 In this film , Aussie David Caesar channels the not-quite-dead career of Guy Ritchie . 2 +9447 393 In this film 2 +9448 393 , Aussie David Caesar channels the not-quite-dead career of Guy Ritchie . 2 +9449 393 Aussie David Caesar channels the not-quite-dead career of Guy Ritchie . 1 +9450 393 Aussie David Caesar 2 +9451 393 Aussie 2 +9452 393 David Caesar 2 +9453 393 Caesar 2 +9454 393 channels the not-quite-dead career of Guy Ritchie . 2 +9455 393 channels the not-quite-dead career of Guy Ritchie 2 +9456 393 channels 2 +9457 393 the not-quite-dead career of Guy Ritchie 2 +9458 393 the not-quite-dead career 2 +9459 393 not-quite-dead career 2 +9460 393 not-quite-dead 2 +9461 393 of Guy Ritchie 3 +9462 393 Guy Ritchie 2 +9463 393 Guy 2 +9464 393 Ritchie 2 +9465 394 As averse as I usually am to feel-good , follow-your-dream Hollywood fantasies , this one got to me . 4 +9466 394 As averse as I usually am to feel-good , follow-your-dream Hollywood fantasies 2 +9467 394 averse as I usually am to feel-good , follow-your-dream Hollywood fantasies 2 +9468 394 averse 2 +9469 394 as I usually am to feel-good , follow-your-dream Hollywood fantasies 3 +9470 394 I usually am to feel-good , follow-your-dream Hollywood fantasies 2 +9471 394 usually am to feel-good , follow-your-dream Hollywood fantasies 2 +9472 394 am to feel-good , follow-your-dream Hollywood fantasies 3 +9473 394 am 2 +9474 394 to feel-good , follow-your-dream Hollywood fantasies 3 +9475 394 feel-good , follow-your-dream Hollywood fantasies 2 +9476 394 feel-good 3 +9477 394 , follow-your-dream Hollywood fantasies 2 +9478 394 follow-your-dream Hollywood fantasies 2 +9479 394 follow-your-dream 3 +9480 394 , this one got to me . 2 +9481 394 this one got to me . 2 +9482 394 got to me . 2 +9483 394 got to me 3 +9484 394 to me 2 +9485 395 Maybe it is formula filmmaking , but there 's nothing wrong with that if the film is well-crafted and this one is . 3 +9486 395 Maybe it is formula filmmaking , but there 's nothing wrong with that if the film is well-crafted and this one is 3 +9487 395 Maybe it is formula filmmaking , but 2 +9488 395 Maybe it is formula filmmaking , 2 +9489 395 Maybe it is formula filmmaking 2 +9490 395 Maybe 2 +9491 395 it is formula filmmaking 1 +9492 395 is formula filmmaking 2 +9493 395 formula filmmaking 2 +9494 395 formula 2 +9495 395 there 's nothing wrong with that if the film is well-crafted and this one is 3 +9496 395 's nothing wrong with that if the film is well-crafted and this one is 3 +9497 395 's nothing wrong with that 3 +9498 395 nothing wrong with that 2 +9499 395 wrong with that 1 +9500 395 with that 2 +9501 395 if the film is well-crafted and this one is 4 +9502 395 the film is well-crafted and this one is 4 +9503 395 the film is well-crafted and 4 +9504 395 the film is well-crafted 4 +9505 395 is well-crafted 3 +9506 395 well-crafted 3 +9507 395 this one is 2 +9508 396 Would you laugh if a tuba-playing dwarf rolled down a hill in a trash can ? 2 +9509 396 Would you laugh if a tuba-playing dwarf rolled down a hill in a trash can 2 +9510 396 Would you 2 +9511 396 laugh if a tuba-playing dwarf rolled down a hill in a trash can 1 +9512 396 if a tuba-playing dwarf rolled down a hill in a trash can 2 +9513 396 a tuba-playing dwarf rolled down a hill in a trash can 1 +9514 396 a tuba-playing dwarf 2 +9515 396 tuba-playing dwarf 2 +9516 396 tuba-playing 2 +9517 396 dwarf 2 +9518 396 rolled down a hill in a trash can 1 +9519 396 rolled down 2 +9520 396 rolled 2 +9521 396 a hill in a trash can 2 +9522 396 a hill 2 +9523 396 hill 2 +9524 396 in a trash can 1 +9525 396 a trash can 2 +9526 396 trash can 1 +9527 396 trash 0 +9528 397 Loses its sense of humor in a vat of failed jokes , twitchy acting , and general boorishness . 0 +9529 397 Loses its sense of humor in a vat of failed jokes , twitchy acting , and general boorishness 1 +9530 397 Loses its sense of humor 1 +9531 397 Loses 2 +9532 397 its sense of humor 2 +9533 397 its sense 2 +9534 397 in a vat of failed jokes , twitchy acting , and general boorishness 0 +9535 397 a vat of failed jokes , twitchy acting , and general boorishness 1 +9536 397 a vat 2 +9537 397 vat 2 +9538 397 of failed jokes , twitchy acting , and general boorishness 1 +9539 397 failed jokes , twitchy acting , and general boorishness 0 +9540 397 failed jokes , twitchy acting , and 0 +9541 397 failed jokes , twitchy acting , 1 +9542 397 failed jokes , twitchy acting 1 +9543 397 failed jokes , 1 +9544 397 failed jokes 1 +9545 397 failed 0 +9546 397 twitchy acting 1 +9547 397 twitchy 2 +9548 397 general boorishness 1 +9549 397 general 2 +9550 397 boorishness 1 +9551 398 This misty-eyed Southern nostalgia piece , in treading the line between sappy and sanguine , winds up mired in tear-drenched quicksand . 1 +9552 398 This misty-eyed Southern nostalgia piece , in treading the line between sappy and sanguine , 3 +9553 398 This misty-eyed Southern nostalgia piece , in treading the line between sappy and sanguine 3 +9554 398 This misty-eyed Southern nostalgia piece , 3 +9555 398 This misty-eyed Southern nostalgia piece 3 +9556 398 misty-eyed Southern nostalgia piece 3 +9557 398 misty-eyed 2 +9558 398 Southern nostalgia piece 2 +9559 398 Southern 2 +9560 398 nostalgia piece 2 +9561 398 nostalgia 2 +9562 398 piece 2 +9563 398 in treading the line between sappy and sanguine 1 +9564 398 treading the line between sappy and sanguine 2 +9565 398 treading 2 +9566 398 the line between sappy and sanguine 3 +9567 398 the line 2 +9568 398 line 2 +9569 398 between sappy and sanguine 2 +9570 398 between 2 +9571 398 sappy and sanguine 2 +9572 398 sappy and 2 +9573 398 sappy 1 +9574 398 winds up mired in tear-drenched quicksand . 0 +9575 398 winds up mired in tear-drenched quicksand 2 +9576 398 mired in tear-drenched quicksand 1 +9577 398 mired 2 +9578 398 in tear-drenched quicksand 2 +9579 398 tear-drenched quicksand 1 +9580 398 tear-drenched 3 +9581 398 quicksand 2 +9582 399 To be oblivious to the existence of this film would be very sweet indeed . 1 +9583 399 To be oblivious to the existence of this film 1 +9584 399 be oblivious to the existence of this film 1 +9585 399 oblivious to the existence of this film 1 +9586 399 oblivious 1 +9587 399 to the existence of this film 2 +9588 399 the existence of this film 2 +9589 399 the existence 2 +9590 399 existence 2 +9591 399 of this film 2 +9592 399 would be very sweet indeed . 2 +9593 399 would be very sweet indeed 3 +9594 399 be very sweet indeed 3 +9595 399 be very sweet 3 +9596 399 very sweet 3 +9597 399 indeed 2 +9598 400 Despite its flaws ... Belinsky is still able to create an engaging story that keeps you guessing at almost every turn . 3 +9599 400 Despite its flaws 2 +9600 400 its flaws 1 +9601 400 ... Belinsky is still able to create an engaging story that keeps you guessing at almost every turn . 3 +9602 400 Belinsky is still able to create an engaging story that keeps you guessing at almost every turn . 3 +9603 400 Belinsky 2 +9604 400 is still able to create an engaging story that keeps you guessing at almost every turn . 3 +9605 400 is still able to create an engaging story that keeps you guessing at almost every turn 4 +9606 400 able to create an engaging story that keeps you guessing at almost every turn 4 +9607 400 able 3 +9608 400 to create an engaging story that keeps you guessing at almost every turn 4 +9609 400 create an engaging story that keeps you guessing at almost every turn 4 +9610 400 create 3 +9611 400 an engaging story that keeps you guessing at almost every turn 4 +9612 400 an engaging story 3 +9613 400 engaging story 3 +9614 400 that keeps you guessing at almost every turn 3 +9615 400 keeps you guessing at almost every turn 3 +9616 400 you guessing at almost every turn 2 +9617 400 guessing at almost every turn 3 +9618 400 at almost every turn 2 +9619 400 almost every turn 2 +9620 400 every turn 2 +9621 401 A porn film without the sex scenes . 2 +9622 401 A porn film without the sex scenes 2 +9623 401 A porn film 2 +9624 401 porn film 2 +9625 401 porn 2 +9626 401 without the sex scenes 2 +9627 401 the sex scenes 2 +9628 401 sex scenes 2 +9629 402 The movie plays up the cartoon 's more obvious strength of snazziness while neglecting its less conspicuous writing strength . 2 +9630 402 plays up the cartoon 's more obvious strength of snazziness while neglecting its less conspicuous writing strength . 3 +9631 402 plays up the cartoon 's more obvious strength of snazziness while neglecting its less conspicuous writing strength 1 +9632 402 plays up the cartoon 's more obvious strength of snazziness 3 +9633 402 plays up 2 +9634 402 the cartoon 's more obvious strength of snazziness 3 +9635 402 the cartoon 's more obvious strength 3 +9636 402 the cartoon 's 2 +9637 402 cartoon 's 3 +9638 402 more obvious strength 2 +9639 402 more obvious 2 +9640 402 of snazziness 2 +9641 402 snazziness 2 +9642 402 while neglecting its less conspicuous writing strength 2 +9643 402 neglecting its less conspicuous writing strength 1 +9644 402 neglecting 2 +9645 402 its less conspicuous writing strength 2 +9646 402 less conspicuous writing strength 1 +9647 402 less conspicuous 2 +9648 402 conspicuous 1 +9649 402 writing strength 3 +9650 402 writing 2 +9651 403 Notwithstanding my problem with the movie 's final half hour , I 'm going to recommend SECRETARY , based on the wonderful acting clinic put on by Spader and Gyllenhaal , and also the unique way Shainberg goes about telling what at heart is a sweet little girl - 3 +9652 403 Notwithstanding my problem with the movie 's final half hour , I 'm going to recommend SECRETARY , based on the wonderful acting clinic put on by Spader and Gyllenhaal , and also the unique way Shainberg goes about telling what at heart is a sweet little girl 3 +9653 403 Notwithstanding my problem with the movie 's final half hour , I 'm going to recommend SECRETARY , based on the wonderful acting clinic put on by Spader and Gyllenhaal , and 3 +9654 403 Notwithstanding my problem with the movie 's final half hour , I 'm going to recommend SECRETARY , based on the wonderful acting clinic put on by Spader and Gyllenhaal , 3 +9655 403 Notwithstanding my problem with the movie 's final half hour , I 'm going to recommend SECRETARY , based on the wonderful acting clinic put on by Spader and Gyllenhaal 3 +9656 403 Notwithstanding my problem with the movie 's final half hour 1 +9657 403 Notwithstanding 2 +9658 403 my problem with the movie 's final half hour 1 +9659 403 my problem 2 +9660 403 with the movie 's final half hour 2 +9661 403 the movie 's final half hour 2 +9662 403 final half hour 2 +9663 403 final 2 +9664 403 half hour 2 +9665 403 half 2 +9666 403 hour 2 +9667 403 , I 'm going to recommend SECRETARY , based on the wonderful acting clinic put on by Spader and Gyllenhaal 3 +9668 403 I 'm going to recommend SECRETARY , based on the wonderful acting clinic put on by Spader and Gyllenhaal 3 +9669 403 'm going to recommend SECRETARY , based on the wonderful acting clinic put on by Spader and Gyllenhaal 3 +9670 403 going to recommend SECRETARY , based on the wonderful acting clinic put on by Spader and Gyllenhaal 4 +9671 403 to recommend SECRETARY , based on the wonderful acting clinic put on by Spader and Gyllenhaal 4 +9672 403 recommend SECRETARY , based on the wonderful acting clinic put on by Spader and Gyllenhaal 3 +9673 403 recommend SECRETARY , 3 +9674 403 recommend SECRETARY 3 +9675 403 SECRETARY 2 +9676 403 based on the wonderful acting clinic put on by Spader and Gyllenhaal 4 +9677 403 based 2 +9678 403 on the wonderful acting clinic put on by Spader and Gyllenhaal 4 +9679 403 the wonderful acting clinic put on by Spader and Gyllenhaal 4 +9680 403 the wonderful acting clinic 2 +9681 403 wonderful acting clinic 3 +9682 403 acting clinic 2 +9683 403 clinic 2 +9684 403 put on by Spader and Gyllenhaal 2 +9685 403 put on 2 +9686 403 by Spader and Gyllenhaal 2 +9687 403 Spader and Gyllenhaal 2 +9688 403 Spader and 2 +9689 403 Spader 2 +9690 403 Gyllenhaal 2 +9691 403 also the unique way Shainberg goes about telling what at heart is a sweet little girl 4 +9692 403 the unique way Shainberg goes about telling what at heart is a sweet little girl 3 +9693 403 the unique way Shainberg 3 +9694 403 unique way Shainberg 3 +9695 403 unique 3 +9696 403 way Shainberg 2 +9697 403 goes about telling what at heart is a sweet little girl 3 +9698 403 about telling what at heart is a sweet little girl 4 +9699 403 telling what at heart is a sweet little girl 3 +9700 403 what at heart is a sweet little girl 2 +9701 403 at heart is a sweet little girl 4 +9702 403 at heart 2 +9703 403 is a sweet little girl 2 +9704 403 a sweet little girl 3 +9705 403 sweet little girl 2 +9706 403 little girl 2 +9707 403 girl 2 +9708 404 Despite slick production values and director Roger Michell 's tick-tock pacing , the final effect is like having two guys yelling in your face for two hours . 1 +9709 404 Despite slick production values and director Roger Michell 's tick-tock pacing 2 +9710 404 slick production values and director Roger Michell 's tick-tock pacing 3 +9711 404 slick production values and 3 +9712 404 slick production values 3 +9713 404 slick 3 +9714 404 director Roger Michell 's tick-tock pacing 2 +9715 404 director Roger Michell 's 2 +9716 404 Roger Michell 's 2 +9717 404 Michell 's 2 +9718 404 tick-tock pacing 1 +9719 404 tick-tock 1 +9720 404 , the final effect is like having two guys yelling in your face for two hours . 1 +9721 404 the final effect is like having two guys yelling in your face for two hours . 0 +9722 404 the final effect 2 +9723 404 final effect 2 +9724 404 effect 2 +9725 404 is like having two guys yelling in your face for two hours . 1 +9726 404 is like having two guys yelling in your face for two hours 1 +9727 404 like having two guys yelling in your face for two hours 1 +9728 404 having two guys yelling in your face for two hours 0 +9729 404 two guys yelling in your face for two hours 0 +9730 404 two guys 2 +9731 404 yelling in your face for two hours 1 +9732 404 yelling 2 +9733 404 in your face for two hours 1 +9734 404 your face for two hours 1 +9735 404 your face 2 +9736 404 for two hours 2 +9737 404 two hours 2 +9738 405 `` Barbershop '' is a good-hearted ensemble comedy with a variety of quirky characters and an engaging story . 3 +9739 405 Barbershop '' is a good-hearted ensemble comedy with a variety of quirky characters and an engaging story . 4 +9740 405 Barbershop 2 +9741 405 '' is a good-hearted ensemble comedy with a variety of quirky characters and an engaging story . 4 +9742 405 is a good-hearted ensemble comedy with a variety of quirky characters and an engaging story . 4 +9743 405 is a good-hearted ensemble comedy with a variety of quirky characters and an engaging story 4 +9744 405 a good-hearted ensemble comedy with a variety of quirky characters and an engaging story 3 +9745 405 a good-hearted ensemble comedy 4 +9746 405 good-hearted ensemble comedy 4 +9747 405 good-hearted 3 +9748 405 ensemble comedy 2 +9749 405 ensemble 2 +9750 405 with a variety of quirky characters and an engaging story 4 +9751 405 a variety of quirky characters and an engaging story 3 +9752 405 a variety 2 +9753 405 variety 2 +9754 405 of quirky characters and an engaging story 4 +9755 405 quirky characters and an engaging story 4 +9756 405 quirky characters and 2 +9757 405 quirky characters 2 +9758 406 A soulless jumble of ineptly assembled cliches and pabulum that plays like a 95-minute commercial for NBA properties . 1 +9759 406 A soulless jumble of ineptly 1 +9760 406 A soulless jumble 2 +9761 406 soulless jumble 1 +9762 406 soulless 1 +9763 406 of ineptly 1 +9764 406 ineptly 2 +9765 406 assembled cliches and pabulum that plays like a 95-minute commercial for NBA properties . 0 +9766 406 assembled cliches and pabulum that plays like a 95-minute commercial for NBA properties 1 +9767 406 assembled 2 +9768 406 cliches and pabulum that plays like a 95-minute commercial for NBA properties 2 +9769 406 cliches and pabulum 1 +9770 406 cliches and 1 +9771 406 pabulum 2 +9772 406 that plays like a 95-minute commercial for NBA properties 1 +9773 406 plays like a 95-minute commercial for NBA properties 0 +9774 406 like a 95-minute commercial for NBA properties 1 +9775 406 a 95-minute commercial for NBA properties 1 +9776 406 a 95-minute commercial 0 +9777 406 95-minute commercial 0 +9778 406 95-minute 2 +9779 406 commercial 2 +9780 406 for NBA properties 2 +9781 406 NBA properties 2 +9782 406 NBA 2 +9783 406 properties 2 +9784 407 An ambitious , serious film that manages to do virtually everything wrong ; sitting through it is something akin to an act of cinematic penance . 2 +9785 407 An ambitious , serious film that manages to do virtually everything wrong ; sitting through it is something akin to an act of cinematic penance 0 +9786 407 An ambitious , serious film that manages to do virtually everything wrong ; 1 +9787 407 An ambitious , serious film that manages to do virtually everything wrong 1 +9788 407 An ambitious , serious film 3 +9789 407 ambitious , serious film 3 +9790 407 , serious film 2 +9791 407 serious film 2 +9792 407 that manages to do virtually everything wrong 0 +9793 407 manages to do virtually everything wrong 0 +9794 407 to do virtually everything wrong 1 +9795 407 do virtually everything wrong 0 +9796 407 virtually everything wrong 1 +9797 407 virtually everything 2 +9798 407 virtually 2 +9799 407 sitting through it is something akin to an act of cinematic penance 0 +9800 407 sitting through it 2 +9801 407 through it 2 +9802 407 is something akin to an act of cinematic penance 2 +9803 407 something akin to an act of cinematic penance 2 +9804 407 akin to an act of cinematic penance 1 +9805 407 akin 2 +9806 407 to an act of cinematic penance 2 +9807 407 an act of cinematic penance 2 +9808 407 an act 2 +9809 407 act 2 +9810 407 of cinematic penance 2 +9811 407 cinematic penance 2 +9812 408 Consistently clever and suspenseful . 4 +9813 408 Consistently clever and suspenseful 3 +9814 408 clever and suspenseful 4 +9815 408 clever and 3 +9816 408 suspenseful 3 +9817 409 Soderbergh skims the fat from the 1972 film . 3 +9818 409 Soderbergh 2 +9819 409 skims the fat from the 1972 film . 2 +9820 409 skims the fat from the 1972 film 2 +9821 409 skims the fat 2 +9822 409 skims 2 +9823 409 the fat 3 +9824 409 fat 1 +9825 409 from the 1972 film 2 +9826 409 the 1972 film 2 +9827 409 1972 film 2 +9828 409 1972 2 +9829 410 Hilarious musical comedy though stymied by accents thick as mud . 2 +9830 410 Hilarious musical comedy 4 +9831 410 Hilarious 3 +9832 410 musical comedy 2 +9833 410 musical 2 +9834 410 though stymied by accents thick as mud . 2 +9835 410 stymied by accents thick as mud . 1 +9836 410 stymied by accents thick as mud 1 +9837 410 stymied 2 +9838 410 by accents thick as mud 1 +9839 410 accents thick as mud 1 +9840 410 thick as mud 1 +9841 410 as mud 2 +9842 410 mud 2 +9843 411 A movie like The Guys is why film criticism can be considered work . 1 +9844 411 A movie like The Guys 2 +9845 411 like The Guys 3 +9846 411 The Guys 2 +9847 411 is why film criticism can be considered work . 1 +9848 411 is why film criticism can be considered work 1 +9849 411 why film criticism can be considered work 2 +9850 411 film criticism can be considered work 2 +9851 411 film criticism 2 +9852 411 criticism 1 +9853 411 can be considered work 3 +9854 411 be considered work 2 +9855 411 considered work 2 +9856 411 considered 2 +9857 412 Anyone who suffers through this film deserves , at the very least , a big box of consolation candy . 0 +9858 412 Anyone who suffers through this film 0 +9859 412 who suffers through this film 2 +9860 412 suffers through this film 1 +9861 412 suffers 2 +9862 412 through this film 3 +9863 412 deserves , at the very least , a big box of consolation candy . 1 +9864 412 deserves , at the very least , a big box of consolation candy 1 +9865 412 deserves , at the very least , 3 +9866 412 deserves , at the very least 2 +9867 412 deserves , 2 +9868 412 at the very least 1 +9869 412 the very least 2 +9870 412 very least 1 +9871 412 a big box of consolation candy 1 +9872 412 a big box 2 +9873 412 big box 2 +9874 412 box 2 +9875 412 of consolation candy 2 +9876 412 consolation candy 2 +9877 412 consolation 2 +9878 412 candy 2 +9879 413 Bearable . 2 +9880 413 Bearable 2 +9881 414 Cremaster 3 is at once a tough pill to swallow and a minor miracle of self-expression . 3 +9882 414 Cremaster 3 2 +9883 414 Cremaster 2 +9884 414 3 2 +9885 414 is at once a tough pill to swallow and a minor miracle of self-expression . 3 +9886 414 is at once a tough pill to swallow and a minor miracle of self-expression 3 +9887 414 is at once 2 +9888 414 a tough pill to swallow and a minor miracle of self-expression 2 +9889 414 a tough pill to swallow and 1 +9890 414 a tough pill to swallow 1 +9891 414 tough pill to swallow 1 +9892 414 tough 2 +9893 414 pill to swallow 1 +9894 414 pill 2 +9895 414 to swallow 2 +9896 414 swallow 2 +9897 414 a minor miracle of self-expression 3 +9898 414 a minor miracle 3 +9899 414 minor miracle 3 +9900 414 minor 2 +9901 414 miracle 3 +9902 414 of self-expression 2 +9903 414 self-expression 2 +9904 415 But Kouyate elicits strong performances from his cast , and he delivers a powerful commentary on how governments lie , no matter who runs them . 3 +9905 415 Kouyate elicits strong performances from his cast , and he delivers a powerful commentary on how governments lie , no matter who runs them . 3 +9906 415 Kouyate elicits strong performances from his cast , and he delivers a powerful commentary on how governments lie , no matter who runs them 4 +9907 415 Kouyate elicits strong performances from his cast , and 3 +9908 415 Kouyate elicits strong performances from his cast , 3 +9909 415 Kouyate elicits strong performances from his cast 3 +9910 415 Kouyate 2 +9911 415 elicits strong performances from his cast 4 +9912 415 elicits strong performances 3 +9913 415 elicits 2 +9914 415 strong performances 3 +9915 415 from his cast 2 +9916 415 his cast 2 +9917 415 he delivers a powerful commentary on how governments lie , no matter who runs them 2 +9918 415 delivers a powerful commentary on how governments lie , no matter who runs them 3 +9919 415 delivers a powerful commentary on how governments lie , 3 +9920 415 delivers a powerful commentary on how governments lie 3 +9921 415 delivers a powerful commentary 3 +9922 415 a powerful commentary 3 +9923 415 powerful commentary 3 +9924 415 commentary 2 +9925 415 on how governments lie 2 +9926 415 how governments lie 2 +9927 415 governments lie 2 +9928 415 governments 2 +9929 415 no matter who runs them 2 +9930 415 matter who runs them 2 +9931 415 matter 2 +9932 415 who runs them 2 +9933 415 runs them 2 +9934 415 runs 2 +9935 416 See it for his performance if nothing else . 3 +9936 416 See it for his performance if nothing else 3 +9937 416 for his performance if nothing else 2 +9938 416 his performance if nothing else 2 +9939 416 his performance 2 +9940 416 if nothing else 2 +9941 417 The asylum material is gripping , as are the scenes of Jia with his family . 4 +9942 417 The asylum material 2 +9943 417 asylum material 1 +9944 417 asylum 2 +9945 417 is gripping , as are the scenes of Jia with his family . 3 +9946 417 is gripping , as are the scenes of Jia with his family 4 +9947 417 is gripping , 2 +9948 417 is gripping 2 +9949 417 gripping 3 +9950 417 as are the scenes of Jia with his family 2 +9951 417 are the scenes of Jia with his family 2 +9952 417 the scenes of Jia with his family 2 +9953 417 the scenes 2 +9954 417 of Jia with his family 2 +9955 417 Jia with his family 2 +9956 417 Jia 2 +9957 417 with his family 2 +9958 417 his family 2 +9959 417 family 3 +9960 418 I walked away from this new version of E.T. just as I hoped I would -- with moist eyes . 4 +9961 418 walked away from this new version of E.T. just as I hoped I would -- with moist eyes . 3 +9962 418 walked away from this new version of E.T. just as I hoped I would -- with moist eyes 4 +9963 418 walked away from this new version of E.T. 0 +9964 418 walked away 1 +9965 418 walked 2 +9966 418 from this new version of E.T. 2 +9967 418 this new version of E.T. 2 +9968 418 this new version 2 +9969 418 new version 2 +9970 418 of E.T. 2 +9971 418 just as I hoped I would -- with moist eyes 3 +9972 418 as I hoped I would -- with moist eyes 2 +9973 418 I hoped I would -- with moist eyes 2 +9974 418 hoped I would -- with moist eyes 3 +9975 418 hoped 2 +9976 418 I would -- with moist eyes 2 +9977 418 would -- with moist eyes 3 +9978 418 would -- 2 +9979 418 with moist eyes 2 +9980 418 moist eyes 2 +9981 418 moist 2 +9982 419 Attal pushes too hard to make this a comedy or serious drama . 0 +9983 419 Attal 2 +9984 419 pushes too hard to make this a comedy or serious drama . 1 +9985 419 pushes too hard to make this a comedy or serious drama 1 +9986 419 pushes too hard 1 +9987 419 pushes 2 +9988 419 too hard 2 +9989 419 to make this a comedy or serious drama 2 +9990 419 make this a comedy or serious drama 1 +9991 419 this a comedy or serious drama 2 +9992 419 a comedy or serious drama 2 +9993 419 a comedy or 2 +9994 419 a comedy 2 +9995 419 serious drama 2 +9996 420 plays like some corny television production from a bygone era 1 +9997 420 plays like some corny television 1 +9998 420 like some corny television 2 +9999 420 some corny television 1 +10000 420 corny television 1 +10001 420 television 2 +10002 420 production from a bygone era 2 +10003 420 from a bygone era 1 +10004 421 It 's a powerful though flawed movie , guaranteed to put a lump in your throat while reaffirming Washington as possibly the best actor working in movies today . 4 +10005 421 's a powerful though flawed movie , guaranteed to put a lump in your throat while reaffirming Washington as possibly the best actor working in movies today . 3 +10006 421 's a powerful though flawed movie , guaranteed to put a lump in your throat while reaffirming Washington as possibly the best actor working in movies today 4 +10007 421 a powerful though flawed movie , guaranteed to put a lump in your throat while reaffirming Washington as possibly the best actor working in movies today 3 +10008 421 a powerful though flawed movie , 2 +10009 421 a powerful though flawed movie 2 +10010 421 powerful though flawed movie 2 +10011 421 though flawed movie 2 +10012 421 though flawed 1 +10013 421 guaranteed to put a lump in your throat while reaffirming Washington as possibly the best actor working in movies today 4 +10014 421 guaranteed 2 +10015 421 to put a lump in your throat while reaffirming Washington as possibly the best actor working in movies today 4 +10016 421 put a lump in your throat while reaffirming Washington as possibly the best actor working in movies today 4 +10017 421 put a lump in your throat 2 +10018 421 a lump in your throat 2 +10019 421 a lump 2 +10020 421 lump 2 +10021 421 in your throat 2 +10022 421 your throat 2 +10023 421 throat 2 +10024 421 while reaffirming Washington as possibly the best actor working in movies today 4 +10025 421 reaffirming Washington as possibly the best actor working in movies today 4 +10026 421 reaffirming 2 +10027 421 Washington as possibly the best actor working in movies today 4 +10028 421 Washington 2 +10029 421 as possibly the best actor working in movies today 4 +10030 421 possibly the best actor working in movies today 4 +10031 421 possibly the best actor 4 +10032 421 the best actor 4 +10033 421 best actor 3 +10034 421 working in movies today 2 +10035 421 working in movies 2 +10036 421 working 2 +10037 421 in movies 2 +10038 421 today 2 +10039 422 Solondz may well be the only one laughing at his own joke 1 +10040 422 may well be the only one laughing at his own joke 1 +10041 422 may well 3 +10042 422 be the only one laughing at his own joke 1 +10043 422 the only one laughing at his own joke 1 +10044 422 the only one 2 +10045 422 only one 2 +10046 422 laughing at his own joke 1 +10047 422 laughing 4 +10048 422 at his own joke 2 +10049 422 his own joke 2 +10050 422 own joke 2 +10051 423 Here 's a case of two actors who do everything humanly possible to create characters who are sweet and believable , and are defeated by a screenplay that forces them into bizarre , implausible behavior . 1 +10052 423 's a case of two actors who do everything humanly possible to create characters who are sweet and believable , and are defeated by a screenplay that forces them into bizarre , implausible behavior . 2 +10053 423 's a case of two actors who do everything humanly possible to create characters who are sweet and believable , and are defeated by a screenplay that forces them into bizarre , implausible behavior 1 +10054 423 a case of two actors who do everything humanly possible to create characters who are sweet and believable , and are defeated by a screenplay that forces them into bizarre , implausible behavior 0 +10055 423 a case 2 +10056 423 of two actors who do everything humanly possible to create characters who are sweet and believable , and are defeated by a screenplay that forces them into bizarre , implausible behavior 1 +10057 423 two actors who do everything humanly possible to create characters who are sweet and believable , and are defeated by a screenplay that forces them into bizarre , implausible behavior 2 +10058 423 two actors 2 +10059 423 who do everything humanly possible to create characters who are sweet and believable , and are defeated by a screenplay that forces them into bizarre , implausible behavior 1 +10060 423 do everything humanly possible to create characters who are sweet and believable , and are defeated by a screenplay that forces them into bizarre , implausible behavior 1 +10061 423 everything humanly possible to create characters who are sweet and believable , and are defeated by a screenplay that forces them into bizarre , implausible behavior 1 +10062 423 humanly possible to create characters who are sweet and believable , and are defeated by a screenplay that forces them into bizarre , implausible behavior 2 +10063 423 humanly possible 3 +10064 423 humanly 3 +10065 423 to create characters who are sweet and believable , and are defeated by a screenplay that forces them into bizarre , implausible behavior 1 +10066 423 create characters who are sweet and believable , and are defeated by a screenplay that forces them into bizarre , implausible behavior 1 +10067 423 characters who are sweet and believable , and are defeated by a screenplay that forces them into bizarre , implausible behavior 1 +10068 423 who are sweet and believable , and are defeated by a screenplay that forces them into bizarre , implausible behavior 2 +10069 423 are sweet and believable , and are defeated by a screenplay that forces them into bizarre , implausible behavior 1 +10070 423 are sweet and believable , and 3 +10071 423 are sweet and believable , 3 +10072 423 are sweet and believable 3 +10073 423 sweet and believable 3 +10074 423 believable 3 +10075 423 are defeated by a screenplay that forces them into bizarre , implausible behavior 0 +10076 423 defeated by a screenplay that forces them into bizarre , implausible behavior 1 +10077 423 defeated 2 +10078 423 by a screenplay that forces them into bizarre , implausible behavior 1 +10079 423 a screenplay that forces them into bizarre , implausible behavior 1 +10080 423 a screenplay 2 +10081 423 that forces them into bizarre , implausible behavior 2 +10082 423 forces them into bizarre , implausible behavior 0 +10083 423 forces them 2 +10084 423 into bizarre , implausible behavior 1 +10085 423 bizarre , implausible behavior 2 +10086 423 bizarre , implausible 1 +10087 423 , implausible 1 +10088 423 implausible 1 +10089 423 behavior 2 +10090 424 Any enjoyment will be hinge from a personal threshold of watching sad but endearing characters do extremely unconventional things . 3 +10091 424 Any enjoyment 3 +10092 424 enjoyment 3 +10093 424 will be hinge from a personal threshold of watching sad but endearing characters do extremely unconventional things . 2 +10094 424 will be hinge from a personal threshold of watching sad but endearing characters do extremely unconventional things 2 +10095 424 be hinge from a personal threshold of watching sad but endearing characters do extremely unconventional things 2 +10096 424 hinge from a personal threshold of watching sad but endearing characters do extremely unconventional things 2 +10097 424 hinge 2 +10098 424 from a personal threshold of watching sad but endearing characters do extremely unconventional things 2 +10099 424 a personal threshold of watching sad but endearing characters do extremely unconventional things 2 +10100 424 a personal threshold 2 +10101 424 personal threshold 2 +10102 424 personal 3 +10103 424 threshold 2 +10104 424 of watching sad but endearing characters do extremely unconventional things 3 +10105 424 watching sad but endearing characters do extremely unconventional things 2 +10106 424 sad but endearing characters do extremely unconventional things 3 +10107 424 sad but endearing characters 3 +10108 424 sad but endearing 3 +10109 424 sad but 1 +10110 424 endearing 3 +10111 424 do extremely unconventional things 2 +10112 424 extremely unconventional things 2 +10113 424 extremely unconventional 2 +10114 424 extremely 2 +10115 424 unconventional 2 +10116 425 Some Body smacks of exhibitionism more than it does cathartic truth telling . 1 +10117 425 Some Body 2 +10118 425 Body 2 +10119 425 smacks of exhibitionism more than it does cathartic truth telling . 1 +10120 425 smacks of exhibitionism more than it does cathartic truth telling 1 +10121 425 smacks of exhibitionism 1 +10122 425 smacks 2 +10123 425 of exhibitionism 2 +10124 425 exhibitionism 2 +10125 425 more than it does cathartic truth telling 1 +10126 425 than it does cathartic truth telling 2 +10127 425 it does cathartic truth telling 3 +10128 425 does cathartic truth telling 3 +10129 425 cathartic truth telling 2 +10130 425 cathartic truth 2 +10131 425 cathartic 1 +10132 425 truth 3 +10133 426 Though writer\/director Bart Freundlich 's film ultimately becomes a simplistic story about a dysfunctional parent-child relationship , it has some special qualities and the soulful gravity of Crudup 's anchoring performance . 3 +10134 426 Though writer\/director Bart Freundlich 's film ultimately becomes a simplistic story about a dysfunctional parent-child relationship 2 +10135 426 writer\/director Bart Freundlich 's film ultimately becomes a simplistic story about a dysfunctional parent-child relationship 2 +10136 426 writer\/director Bart Freundlich 's film 2 +10137 426 writer\/director Bart Freundlich 's 2 +10138 426 Bart Freundlich 's 2 +10139 426 Bart 2 +10140 426 Freundlich 's 2 +10141 426 ultimately becomes a simplistic story about a dysfunctional parent-child relationship 2 +10142 426 becomes a simplistic story about a dysfunctional parent-child relationship 1 +10143 426 a simplistic story about a dysfunctional parent-child relationship 2 +10144 426 a simplistic story 2 +10145 426 simplistic story 1 +10146 426 about a dysfunctional parent-child relationship 2 +10147 426 a dysfunctional parent-child relationship 1 +10148 426 dysfunctional parent-child relationship 1 +10149 426 dysfunctional 1 +10150 426 parent-child relationship 2 +10151 426 parent-child 2 +10152 426 , it has some special qualities and the soulful gravity of Crudup 's anchoring performance . 3 +10153 426 it has some special qualities and the soulful gravity of Crudup 's anchoring performance . 3 +10154 426 has some special qualities and the soulful gravity of Crudup 's anchoring performance . 3 +10155 426 has some special qualities and the soulful gravity of Crudup 's anchoring performance 3 +10156 426 some special qualities and the soulful gravity of Crudup 's anchoring performance 3 +10157 426 some special qualities and 3 +10158 426 some special qualities 3 +10159 426 special qualities 3 +10160 426 qualities 3 +10161 426 the soulful gravity of Crudup 's anchoring performance 3 +10162 426 the soulful gravity 3 +10163 426 soulful gravity 4 +10164 426 gravity 2 +10165 426 of Crudup 's anchoring performance 4 +10166 426 Crudup 's anchoring performance 3 +10167 426 Crudup 's 2 +10168 426 Crudup 2 +10169 426 anchoring performance 3 +10170 426 anchoring 3 +10171 427 -LRB- Carvey 's -RRB- characters are both overplayed and exaggerated , but then again , subtlety has never been his trademark . 0 +10172 427 -LRB- Carvey 's -RRB- characters are both overplayed and exaggerated , but then again , subtlety has never been his trademark 1 +10173 427 -LRB- Carvey 's -RRB- characters are both overplayed and exaggerated , but 2 +10174 427 -LRB- Carvey 's -RRB- characters are both overplayed and exaggerated , 2 +10175 427 -LRB- Carvey 's -RRB- characters are both overplayed and exaggerated 1 +10176 427 Carvey 's -RRB- characters are both overplayed and exaggerated 1 +10177 427 Carvey 's 2 +10178 427 -RRB- characters are both overplayed and exaggerated 0 +10179 427 characters are both overplayed and exaggerated 1 +10180 427 are both overplayed and exaggerated 1 +10181 427 both overplayed and exaggerated 0 +10182 427 overplayed and exaggerated 0 +10183 427 overplayed and 2 +10184 427 overplayed 1 +10185 427 exaggerated 2 +10186 427 then again , subtlety has never been his trademark 1 +10187 427 then again 2 +10188 427 , subtlety has never been his trademark 1 +10189 427 subtlety has never been his trademark 1 +10190 427 subtlety 2 +10191 427 has never been his trademark 2 +10192 427 has never 1 +10193 427 been his trademark 2 +10194 427 his trademark 2 +10195 427 trademark 2 +10196 428 This beautifully animated epic is never dull . 4 +10197 428 This beautifully animated epic 4 +10198 428 beautifully animated epic 4 +10199 428 animated epic 3 +10200 428 animated 2 +10201 428 is never dull . 2 +10202 428 is never dull 3 +10203 428 is never 2 +10204 429 Charming and witty , it 's also somewhat clumsy . 3 +10205 429 Charming and witty 4 +10206 429 , it 's also somewhat clumsy . 1 +10207 429 it 's also somewhat clumsy . 2 +10208 429 's also somewhat clumsy . 1 +10209 429 's also somewhat clumsy 1 +10210 429 's also 2 +10211 429 somewhat clumsy 1 +10212 430 In one scene , we get a stab at soccer hooliganism , a double-barreled rip-off of Quentin Tarantino 's climactic shootout -- and Meat Loaf explodes . 1 +10213 430 In one scene 2 +10214 430 one scene 2 +10215 430 scene 2 +10216 430 , we get a stab at soccer hooliganism , a double-barreled rip-off of Quentin Tarantino 's climactic shootout -- and Meat Loaf explodes . 1 +10217 430 we get a stab at soccer hooliganism , a double-barreled rip-off of Quentin Tarantino 's climactic shootout -- and Meat Loaf explodes . 1 +10218 430 get a stab at soccer hooliganism , a double-barreled rip-off of Quentin Tarantino 's climactic shootout -- and Meat Loaf explodes . 2 +10219 430 get a stab at soccer hooliganism , a double-barreled rip-off of Quentin Tarantino 's climactic shootout -- and Meat Loaf explodes 2 +10220 430 a stab at soccer hooliganism , a double-barreled rip-off of Quentin Tarantino 's climactic shootout -- and Meat Loaf explodes 2 +10221 430 a stab at soccer hooliganism , a double-barreled rip-off of Quentin Tarantino 's climactic shootout -- and 1 +10222 430 a stab at soccer hooliganism , a double-barreled rip-off of Quentin Tarantino 's climactic shootout -- 1 +10223 430 a stab at soccer hooliganism , a double-barreled rip-off of Quentin Tarantino 's climactic shootout 1 +10224 430 a stab at soccer hooliganism , 3 +10225 430 a stab at soccer hooliganism 1 +10226 430 a stab 1 +10227 430 stab 2 +10228 430 at soccer hooliganism 1 +10229 430 soccer hooliganism 2 +10230 430 soccer 2 +10231 430 hooliganism 2 +10232 430 a double-barreled rip-off of Quentin Tarantino 's climactic shootout 2 +10233 430 a double-barreled rip-off 2 +10234 430 double-barreled rip-off 0 +10235 430 double-barreled 2 +10236 430 rip-off 0 +10237 430 of Quentin Tarantino 's climactic shootout 2 +10238 430 Quentin Tarantino 's climactic shootout 3 +10239 430 Quentin Tarantino 's 2 +10240 430 Quentin 2 +10241 430 Tarantino 's 2 +10242 430 Tarantino 2 +10243 430 climactic shootout 2 +10244 430 climactic 3 +10245 430 shootout 2 +10246 430 Meat Loaf explodes 2 +10247 430 Meat 2 +10248 430 Loaf explodes 2 +10249 430 Loaf 2 +10250 430 explodes 2 +10251 431 frustratingly refuses to give Pinochet 's crimes a political context 0 +10252 431 frustratingly 2 +10253 431 refuses to give Pinochet 's crimes a political context 2 +10254 431 refuses 1 +10255 431 to give Pinochet 's crimes a political context 2 +10256 431 give Pinochet 's crimes a political context 2 +10257 431 give Pinochet 's crimes 2 +10258 431 Pinochet 's crimes 2 +10259 431 Pinochet 's 2 +10260 431 Pinochet 1 +10261 431 crimes 0 +10262 431 a political context 2 +10263 431 political context 2 +10264 431 context 2 +10265 431 , his distance from the material is mostly admirable . 3 +10266 431 his distance from the material is mostly admirable . 3 +10267 431 his distance from the material 2 +10268 431 his distance 2 +10269 431 distance 2 +10270 431 from the material 2 +10271 431 the material 2 +10272 431 is mostly admirable . 3 +10273 431 is mostly admirable 4 +10274 431 mostly admirable 3 +10275 431 admirable 4 +10276 432 Paul Bettany playing Malcolm McDowell ? 2 +10277 432 Paul Bettany playing Malcolm McDowell 2 +10278 432 Paul Bettany 2 +10279 432 Paul 2 +10280 432 Bettany 2 +10281 432 playing Malcolm McDowell 2 +10282 432 Malcolm McDowell 2 +10283 432 McDowell 2 +10284 433 A serviceable Euro-trash action extravaganza , with a decent sense of humor and plenty of things that go boom -- handguns , BMWs and seaside chateaus . 2 +10285 433 A serviceable Euro-trash action extravaganza , with a decent sense of humor and plenty of things that go boom -- handguns , BMWs and seaside chateaus 3 +10286 433 A serviceable Euro-trash action extravaganza , with a decent sense of humor and plenty of things that go boom -- 3 +10287 433 A serviceable Euro-trash action extravaganza , with a decent sense of humor and plenty of things that go boom 3 +10288 433 A serviceable Euro-trash action extravaganza , 3 +10289 433 A serviceable Euro-trash action extravaganza 2 +10290 433 serviceable Euro-trash action extravaganza 2 +10291 433 serviceable 2 +10292 433 Euro-trash action extravaganza 2 +10293 433 Euro-trash 1 +10294 433 action extravaganza 3 +10295 433 extravaganza 3 +10296 433 with a decent sense of humor and plenty of things that go boom 3 +10297 433 a decent sense of humor and plenty of things that go boom 3 +10298 433 a decent sense of humor and plenty 4 +10299 433 a decent sense 2 +10300 433 decent sense 3 +10301 433 of humor and plenty 3 +10302 433 humor and plenty 3 +10303 433 humor and 3 +10304 433 plenty 2 +10305 433 of things that go boom 2 +10306 433 things that go boom 2 +10307 433 that go boom 2 +10308 433 go boom 1 +10309 433 boom 2 +10310 433 handguns , BMWs and seaside chateaus 2 +10311 433 handguns , BMWs and 2 +10312 433 handguns , BMWs 2 +10313 433 handguns , 2 +10314 433 handguns 2 +10315 433 BMWs 2 +10316 433 seaside chateaus 2 +10317 433 seaside 2 +10318 433 chateaus 2 +10319 434 Veterans of the dating wars will smirk uneasily at the film 's nightmare versions of everyday sex-in-the-city misadventures . 2 +10320 434 Veterans of the dating wars 2 +10321 434 Veterans 2 +10322 434 of the dating wars 2 +10323 434 the dating wars 2 +10324 434 dating wars 2 +10325 434 dating 2 +10326 434 wars 1 +10327 434 will smirk uneasily at the film 's nightmare versions of everyday sex-in-the-city misadventures . 2 +10328 434 will smirk uneasily at the film 's nightmare versions of everyday sex-in-the-city misadventures 2 +10329 434 smirk uneasily at the film 's nightmare versions of everyday sex-in-the-city misadventures 1 +10330 434 smirk uneasily 1 +10331 434 smirk 1 +10332 434 uneasily 1 +10333 434 at the film 's nightmare versions of everyday sex-in-the-city misadventures 1 +10334 434 the film 's nightmare versions of everyday sex-in-the-city misadventures 1 +10335 434 the film 's nightmare versions 2 +10336 434 nightmare versions 2 +10337 434 nightmare 0 +10338 434 versions 2 +10339 434 of everyday sex-in-the-city misadventures 3 +10340 434 everyday sex-in-the-city misadventures 1 +10341 434 everyday 2 +10342 434 sex-in-the-city misadventures 2 +10343 434 sex-in-the-city 2 +10344 434 misadventures 2 +10345 435 It sends you away a believer again and quite cheered at just that . 4 +10346 435 sends you away a believer again and quite cheered at just that . 3 +10347 435 sends you away a believer again and quite cheered at just that 4 +10348 435 sends you 2 +10349 435 sends 2 +10350 435 away a believer again and quite cheered at just that 3 +10351 435 away a believer 2 +10352 435 a believer 2 +10353 435 believer 2 +10354 435 again and quite cheered at just that 3 +10355 435 again and quite 2 +10356 435 again and 2 +10357 435 cheered at just that 3 +10358 435 cheered 3 +10359 435 at just that 2 +10360 436 The rollerball sequences feel sanitised and stagey . 1 +10361 436 The rollerball sequences 2 +10362 436 rollerball sequences 2 +10363 436 rollerball 2 +10364 436 sequences 2 +10365 436 feel sanitised and stagey . 1 +10366 436 feel sanitised and stagey 1 +10367 436 sanitised and stagey 2 +10368 436 sanitised and 1 +10369 436 sanitised 2 +10370 436 stagey 2 +10371 437 Interview With the Assassin is structured less as a documentary and more as a found relic , and as such the film has a difficult time shaking its Blair Witch Project real-time roots . 1 +10372 437 Interview With the Assassin is structured less as a documentary and more as a found relic , and as such the film has a difficult time shaking its Blair Witch Project real-time roots 1 +10373 437 Interview With the Assassin is structured less as a documentary and more as a found relic , and 3 +10374 437 Interview With the Assassin is structured less as a documentary and more as a found relic , 1 +10375 437 Interview With the Assassin is structured less as a documentary and more as a found relic 2 +10376 437 Interview 2 +10377 437 With the Assassin is structured less as a documentary and more as a found relic 1 +10378 437 With the Assassin 2 +10379 437 the Assassin 2 +10380 437 Assassin 2 +10381 437 is structured less as a documentary and more as a found relic 3 +10382 437 structured less as a documentary and more as a found relic 3 +10383 437 structured 2 +10384 437 less as a documentary and more as a found relic 3 +10385 437 as a documentary and more as a found relic 2 +10386 437 a documentary and more as a found relic 2 +10387 437 a documentary and 2 +10388 437 a documentary 2 +10389 437 more as a found relic 2 +10390 437 more as a 2 +10391 437 as a 2 +10392 437 found relic 2 +10393 437 as such the film has a difficult time shaking its Blair Witch Project real-time roots 1 +10394 437 as such the film 2 +10395 437 such the film 2 +10396 437 has a difficult time shaking its Blair Witch Project real-time roots 1 +10397 437 a difficult time shaking its Blair Witch Project real-time roots 1 +10398 437 a difficult time 1 +10399 437 difficult time 2 +10400 437 shaking its Blair Witch Project real-time roots 2 +10401 437 shaking 2 +10402 437 its Blair Witch Project real-time roots 2 +10403 437 Blair Witch Project real-time roots 2 +10404 437 Blair 2 +10405 437 Witch Project real-time roots 3 +10406 437 Witch 2 +10407 437 Project real-time roots 2 +10408 437 real-time roots 2 +10409 437 real-time 2 +10410 437 roots 2 +10411 438 It is most remarkable not because of its epic scope , but because of the startling intimacy it achieves despite that breadth . 4 +10412 438 is most remarkable not because of its epic scope , but because of the startling intimacy it achieves despite that breadth . 4 +10413 438 is most remarkable not because of its epic scope , but because of the startling intimacy it achieves despite that breadth 4 +10414 438 is most remarkable not because of its epic scope , but because of the startling intimacy 3 +10415 438 most remarkable not because of its epic scope , but because of the startling intimacy 3 +10416 438 most remarkable 4 +10417 438 remarkable 4 +10418 438 not because of its epic scope , but because of the startling intimacy 4 +10419 438 not because of its epic scope 2 +10420 438 because of its epic scope 3 +10421 438 of its epic scope 3 +10422 438 its epic scope 3 +10423 438 epic scope 3 +10424 438 scope 2 +10425 438 , but because of the startling intimacy 3 +10426 438 but because of the startling intimacy 3 +10427 438 because of the startling intimacy 2 +10428 438 of the startling intimacy 3 +10429 438 the startling intimacy 3 +10430 438 startling intimacy 2 +10431 438 startling 2 +10432 438 intimacy 2 +10433 438 it achieves despite that breadth 2 +10434 438 achieves despite that breadth 2 +10435 438 despite that breadth 2 +10436 438 that breadth 2 +10437 438 breadth 2 +10438 439 A nearly 21\/2 hours , the film is way too indulgent . 1 +10439 439 A nearly 21\/2 hours , the film 2 +10440 439 A nearly 21\/2 hours , 2 +10441 439 A nearly 21\/2 hours 2 +10442 439 nearly 21\/2 hours 2 +10443 439 nearly 21\/2 2 +10444 439 21\/2 2 +10445 439 is way too indulgent . 1 +10446 439 is way too indulgent 1 +10447 439 is way 2 +10448 439 too indulgent 1 +10449 439 indulgent 3 +10450 440 Seems like something American and European gay movies were doing 20 years ago . 1 +10451 440 Seems like something American and European gay movies 2 +10452 440 like something American and European gay movies 2 +10453 440 something American and European gay movies 2 +10454 440 something American and 2 +10455 440 something American 2 +10456 440 European gay movies 2 +10457 440 European 2 +10458 440 gay movies 2 +10459 440 were doing 20 years ago . 2 +10460 440 were doing 20 years ago 2 +10461 440 doing 20 years ago 2 +10462 440 doing 2 +10463 440 20 years ago 2 +10464 440 20 years 2 +10465 440 20 2 +10466 440 ago 2 +10467 441 Claims to sort the bad guys from the good , which is its essential problem . 1 +10468 441 Claims 2 +10469 441 to sort the bad guys from the good , which is its essential problem . 2 +10470 441 to sort the bad guys from the good , which is its essential problem 1 +10471 441 sort the bad guys from the good , which is its essential problem 1 +10472 441 sort the bad guys 2 +10473 441 the bad guys 1 +10474 441 bad guys 2 +10475 441 from the good , which is its essential problem 2 +10476 441 the good , which is its essential problem 1 +10477 441 the good , 3 +10478 441 the good 2 +10479 441 which is its essential problem 2 +10480 441 is its essential problem 1 +10481 441 its essential problem 1 +10482 441 essential problem 2 +10483 441 essential 3 +10484 442 Mana gives us compelling , damaged characters who we want to help -- or hurt . 2 +10485 442 Mana 2 +10486 442 gives us compelling , damaged characters who we want to help -- or hurt . 3 +10487 442 gives us compelling , damaged characters who we want to help -- or hurt 3 +10488 442 gives us 2 +10489 442 compelling , damaged characters who we want to help -- or hurt 3 +10490 442 compelling , damaged characters 3 +10491 442 , damaged characters 1 +10492 442 damaged characters 2 +10493 442 damaged 1 +10494 442 who we want to help -- or hurt 2 +10495 442 we want to help -- or hurt 3 +10496 442 want to help -- or hurt 2 +10497 442 to help -- or hurt 2 +10498 442 help -- or hurt 2 +10499 442 help -- or 2 +10500 442 help -- 2 +10501 443 Good-looking but relentlessly lowbrow outing plays like Clueless Does South Fork . 1 +10502 443 Good-looking but relentlessly lowbrow outing 2 +10503 443 Good-looking but relentlessly 2 +10504 443 Good-looking but 3 +10505 443 Good-looking 3 +10506 443 relentlessly 2 +10507 443 lowbrow outing 2 +10508 443 lowbrow 1 +10509 443 outing 2 +10510 443 plays like Clueless Does South Fork . 1 +10511 443 plays like Clueless Does South Fork 2 +10512 443 like Clueless Does South Fork 2 +10513 443 Clueless Does South Fork 1 +10514 443 Clueless 1 +10515 443 Does South Fork 2 +10516 443 South Fork 2 +10517 443 Fork 2 +10518 444 Evokes a palpable sense of disconnection , made all the more poignant by the incessant use of cell phones . 3 +10519 444 Evokes a palpable sense of disconnection 1 +10520 444 Evokes a palpable sense 3 +10521 444 a palpable sense 2 +10522 444 palpable sense 2 +10523 444 palpable 3 +10524 444 of disconnection 1 +10525 444 disconnection 2 +10526 444 , made all the more poignant by the incessant use of cell phones . 2 +10527 444 made all the more poignant by the incessant use of cell phones . 2 +10528 444 made all the more poignant by the incessant use of cell phones 1 +10529 444 all the more poignant by the incessant use of cell phones 1 +10530 444 all the 2 +10531 444 more poignant by the incessant use of cell phones 2 +10532 444 poignant by the incessant use of cell phones 2 +10533 444 poignant 4 +10534 444 by the incessant use of cell phones 1 +10535 444 the incessant use of cell phones 1 +10536 444 the incessant use 0 +10537 444 incessant use 1 +10538 444 incessant 1 +10539 444 use 2 +10540 444 of cell phones 2 +10541 444 cell phones 2 +10542 444 cell 2 +10543 444 phones 2 +10544 445 The concept is a hoot . 3 +10545 445 The concept 2 +10546 445 is a hoot . 2 +10547 445 is a hoot 3 +10548 445 a hoot 3 +10549 445 hoot 2 +10550 446 A straight-shooting family film which awards animals the respect they 've rarely been given . 4 +10551 446 A straight-shooting family film which awards animals the respect they 3 +10552 446 A straight-shooting family film 3 +10553 446 straight-shooting family film 3 +10554 446 straight-shooting 2 +10555 446 family film 2 +10556 446 which awards animals the respect they 3 +10557 446 awards animals the respect they 3 +10558 446 awards 2 +10559 446 animals the respect they 2 +10560 446 animals 2 +10561 446 the respect they 3 +10562 446 the respect 2 +10563 446 've rarely been given . 2 +10564 446 've rarely been given 2 +10565 446 've rarely 2 +10566 446 been given 2 +10567 447 The directive to protect the code at all costs also begins to blur as the importance of the man and the code merge 2 +10568 447 The directive to protect the code at all costs also 3 +10569 447 directive to protect the code at all costs also 2 +10570 447 directive 2 +10571 447 to protect the code at all costs also 2 +10572 447 protect the code at all costs also 2 +10573 447 protect the code at all costs 2 +10574 447 protect the code 2 +10575 447 protect 2 +10576 447 the code 2 +10577 447 code 2 +10578 447 at all costs 2 +10579 447 all costs 2 +10580 447 costs 2 +10581 447 begins to blur as the importance of the man and the code merge 2 +10582 447 to blur as the importance of the man and the code merge 2 +10583 447 blur as the importance of the man and the code merge 2 +10584 447 blur 2 +10585 447 as the importance of the man and the code merge 2 +10586 447 the importance of the man and the code merge 3 +10587 447 the importance of the man and the code 2 +10588 447 of the man and the code 2 +10589 447 the man and the code 2 +10590 447 the man and 3 +10591 447 merge 2 +10592 448 What Eric Schaeffer has accomplished with Never Again may not , strictly speaking , qualify as revolutionary . 2 +10593 448 What Eric Schaeffer has accomplished with Never Again 3 +10594 448 Eric Schaeffer has accomplished with Never Again 3 +10595 448 Eric Schaeffer 2 +10596 448 Schaeffer 2 +10597 448 has accomplished with Never Again 2 +10598 448 accomplished with Never Again 2 +10599 448 accomplished 3 +10600 448 with Never Again 2 +10601 448 Never Again 2 +10602 448 may not , strictly speaking , qualify as revolutionary . 3 +10603 448 may not , strictly speaking , qualify as revolutionary 1 +10604 448 may not , strictly speaking , 2 +10605 448 may not , strictly speaking 2 +10606 448 may not , 2 +10607 448 strictly speaking 2 +10608 448 strictly 2 +10609 448 speaking 2 +10610 448 qualify as revolutionary 3 +10611 448 qualify 2 +10612 448 as revolutionary 2 +10613 448 revolutionary 3 +10614 449 Obvious , obnoxious and didactic burlesque . 0 +10615 449 Obvious , obnoxious and didactic burlesque 0 +10616 449 Obvious , 2 +10617 449 obnoxious and didactic burlesque 1 +10618 449 obnoxious 1 +10619 449 and didactic burlesque 2 +10620 449 didactic burlesque 2 +10621 449 didactic 2 +10622 449 burlesque 2 +10623 450 What can one say about a balding 50-year-old actor playing an innocent boy carved from a log ? 2 +10624 450 can one say about a balding 50-year-old actor playing an innocent boy carved from a log ? 2 +10625 450 can one say about a balding 50-year-old actor playing an innocent boy carved from a log 2 +10626 450 can one 2 +10627 450 say about a balding 50-year-old actor playing an innocent boy carved from a log 1 +10628 450 about a balding 50-year-old actor playing an innocent boy carved from a log 2 +10629 450 a balding 50-year-old actor playing an innocent boy carved from a log 1 +10630 450 a balding 50-year-old actor 2 +10631 450 balding 50-year-old actor 1 +10632 450 balding 1 +10633 450 50-year-old actor 2 +10634 450 50-year-old 2 +10635 450 playing an innocent boy carved from a log 2 +10636 450 an innocent boy carved from a log 2 +10637 450 an innocent boy 2 +10638 450 innocent boy 2 +10639 450 innocent 3 +10640 450 carved from a log 2 +10641 450 carved 2 +10642 450 from a log 2 +10643 450 a log 2 +10644 450 log 2 +10645 451 Ca n't seem to get anywhere near the story 's center . 2 +10646 451 Ca n't seem to get anywhere near the story 's center 1 +10647 451 seem to get anywhere near the story 's center 1 +10648 451 to get anywhere near the story 's center 3 +10649 451 get anywhere near the story 's center 2 +10650 451 get anywhere 2 +10651 451 anywhere 2 +10652 451 near the story 's center 2 +10653 451 near 2 +10654 451 the story 's center 2 +10655 451 the story 's 2 +10656 451 story 's 2 +10657 451 center 2 +10658 452 Even with its $ 50-million US budget , Pinocchio never quite achieves the feel of a fanciful motion picture . 1 +10659 452 Even with its $ 50-million US budget 2 +10660 452 with its $ 50-million US budget 2 +10661 452 its $ 50-million US budget 2 +10662 452 $ 50-million US budget 2 +10663 452 $ 50-million 2 +10664 452 $ 2 +10665 452 50-million 2 +10666 452 US budget 2 +10667 452 , Pinocchio never quite achieves the feel of a fanciful motion picture . 1 +10668 452 Pinocchio never quite achieves the feel of a fanciful motion picture . 1 +10669 452 Pinocchio 2 +10670 452 never quite achieves the feel of a fanciful motion picture . 1 +10671 452 never quite 1 +10672 452 achieves the feel of a fanciful motion picture . 3 +10673 452 achieves the feel of a fanciful motion picture 3 +10674 452 the feel of a fanciful motion picture 3 +10675 452 the feel 2 +10676 452 of a fanciful motion picture 3 +10677 452 a fanciful motion picture 3 +10678 452 fanciful motion picture 3 +10679 452 fanciful 3 +10680 452 motion picture 2 +10681 452 motion 2 +10682 452 picture 2 +10683 453 A little more intensity and a little less charm would have saved this film a world of hurt . 1 +10684 453 A little more intensity and a little less charm 2 +10685 453 A little more intensity and 2 +10686 453 A little more intensity 1 +10687 453 little more intensity 2 +10688 453 little more 2 +10689 453 intensity 2 +10690 453 a little less charm 1 +10691 453 little less charm 2 +10692 453 little less 2 +10693 453 would have saved this film a world of hurt . 1 +10694 453 would have saved this film a world of hurt 1 +10695 453 have saved this film a world of hurt 3 +10696 453 saved this film a world of hurt 2 +10697 453 saved this film 3 +10698 453 a world of hurt 1 +10699 453 of hurt 2 +10700 454 Like most of Jaglom 's films , some of it is honestly affecting , but more of it seems contrived and secondhand . 1 +10701 454 Like most of Jaglom 's films , some of it is honestly affecting , but more of it seems contrived and secondhand 1 +10702 454 Like most of Jaglom 's films , some of it is honestly affecting , but 3 +10703 454 Like most of Jaglom 's films , some of it is honestly affecting , 3 +10704 454 Like most of Jaglom 's films , some of it is honestly affecting 3 +10705 454 Like most of Jaglom 's films 2 +10706 454 most of Jaglom 's films 2 +10707 454 of Jaglom 's films 2 +10708 454 Jaglom 's films 2 +10709 454 Jaglom 's 2 +10710 454 Jaglom 2 +10711 454 , some of it is honestly affecting 3 +10712 454 some of it is honestly affecting 3 +10713 454 some of it 2 +10714 454 of it 2 +10715 454 is honestly affecting 4 +10716 454 is honestly 3 +10717 454 more of it seems contrived and secondhand 2 +10718 454 more of it 2 +10719 454 seems contrived and secondhand 1 +10720 454 contrived and secondhand 1 +10721 454 contrived and 2 +10722 454 secondhand 2 +10723 455 Maelstrom is a deliberately unsteady mixture of stylistic elements . 2 +10724 455 Maelstrom 2 +10725 455 is a deliberately unsteady mixture of stylistic elements . 2 +10726 455 is a deliberately unsteady mixture of stylistic elements 3 +10727 455 a deliberately unsteady mixture of stylistic elements 3 +10728 455 a deliberately unsteady mixture 2 +10729 455 deliberately unsteady mixture 2 +10730 455 deliberately unsteady 1 +10731 455 deliberately 2 +10732 455 unsteady 1 +10733 455 mixture 2 +10734 455 of stylistic elements 2 +10735 455 stylistic elements 2 +10736 455 stylistic 3 +10737 456 Just bring on the Battle Bots , please ! 3 +10738 456 bring on the Battle Bots , please ! 2 +10739 456 bring on the Battle Bots , please 3 +10740 456 bring on the Battle Bots , 2 +10741 456 bring on the Battle Bots 2 +10742 456 bring 3 +10743 456 on the Battle Bots 2 +10744 456 the Battle Bots 3 +10745 456 Battle Bots 2 +10746 456 Bots 2 +10747 457 Sweet Home Alabama is n't going to win any Academy Awards , but this date-night diversion will definitely win some hearts . 3 +10748 457 Sweet Home Alabama is n't going to win any Academy Awards , but this date-night diversion will definitely win some hearts 3 +10749 457 Sweet Home Alabama is n't going to win any Academy Awards , but 3 +10750 457 Sweet Home Alabama is n't going to win any Academy Awards , 2 +10751 457 Sweet Home Alabama is n't going to win any Academy Awards 1 +10752 457 Sweet Home Alabama 2 +10753 457 Home Alabama 4 +10754 457 Alabama 2 +10755 457 is n't going to win any Academy Awards 2 +10756 457 going to win any Academy Awards 2 +10757 457 to win any Academy Awards 3 +10758 457 win any Academy Awards 3 +10759 457 win 3 +10760 457 any Academy Awards 2 +10761 457 Academy Awards 2 +10762 457 Academy 2 +10763 457 this date-night diversion will definitely win some hearts 4 +10764 457 this date-night diversion 1 +10765 457 date-night diversion 3 +10766 457 date-night 2 +10767 457 will definitely win some hearts 3 +10768 457 will definitely 2 +10769 457 definitely 3 +10770 457 win some hearts 2 +10771 457 some hearts 2 +10772 457 hearts 3 +10773 458 Love may have been in the air onscreen , but I certainly was n't feeling any of it . 1 +10774 458 Love may have been in the air onscreen , but I certainly was n't feeling any of it 1 +10775 458 Love may have been in the air onscreen , but 2 +10776 458 Love may have been in the air onscreen , 2 +10777 458 Love may have been in the air onscreen 2 +10778 458 may have been in the air onscreen 2 +10779 458 have been in the air onscreen 2 +10780 458 been in the air onscreen 2 +10781 458 in the air onscreen 2 +10782 458 the air onscreen 2 +10783 458 air onscreen 2 +10784 458 air 2 +10785 458 onscreen 2 +10786 458 I certainly was n't feeling any of it 1 +10787 458 certainly was n't feeling any of it 1 +10788 458 was n't feeling any of it 1 +10789 458 was n't 2 +10790 458 feeling any of it 2 +10791 458 any of it 2 +10792 459 Too long , and larded with exposition , this somber cop drama ultimately feels as flat as the scruffy sands of its titular community . 1 +10793 459 Too long , and larded with exposition 1 +10794 459 Too long 2 +10795 459 , and larded with exposition 1 +10796 459 larded with exposition 1 +10797 459 larded 1 +10798 459 with exposition 2 +10799 459 exposition 2 +10800 459 , this somber cop drama ultimately feels as flat as the scruffy sands of its titular community . 1 +10801 459 this somber cop drama ultimately feels as flat as the scruffy sands of its titular community . 2 +10802 459 this somber cop drama 2 +10803 459 somber cop drama 2 +10804 459 somber 2 +10805 459 cop drama 2 +10806 459 cop 2 +10807 459 ultimately feels as flat as the scruffy sands of its titular community . 1 +10808 459 feels as flat as the scruffy sands of its titular community . 1 +10809 459 feels as flat as the scruffy sands of its titular community 1 +10810 459 as flat as the scruffy sands of its titular community 2 +10811 459 flat as the scruffy sands of its titular community 0 +10812 459 as the scruffy sands of its titular community 1 +10813 459 the scruffy sands of its titular community 1 +10814 459 the scruffy sands 2 +10815 459 scruffy sands 2 +10816 459 sands 2 +10817 459 of its titular community 2 +10818 459 its titular community 2 +10819 459 titular community 2 +10820 459 titular 3 +10821 459 community 2 +10822 460 The young stars are too cute ; the story and ensuing complications are too manipulative ; the message is too blatant ; the resolutions are too convenient . 1 +10823 460 The young stars are too cute ; the story and ensuing complications are too manipulative ; the message is too blatant ; the resolutions are too convenient 0 +10824 460 The young stars are too cute ; the story and ensuing complications are too manipulative ; the message is too blatant ; 1 +10825 460 The young stars are too cute ; the story and ensuing complications are too manipulative ; the message is too blatant 1 +10826 460 The young stars are too cute ; the story and ensuing complications are too manipulative ; 1 +10827 460 The young stars are too cute ; the story and ensuing complications are too manipulative 1 +10828 460 The young stars are too cute ; 3 +10829 460 The young stars are too cute 2 +10830 460 The young stars 2 +10831 460 young stars 2 +10832 460 are too cute 3 +10833 460 too cute 2 +10834 460 cute 3 +10835 460 the story and ensuing complications are too manipulative 1 +10836 460 the story and ensuing complications 2 +10837 460 the story and 2 +10838 460 ensuing complications 2 +10839 460 ensuing 2 +10840 460 are too manipulative 2 +10841 460 too manipulative 1 +10842 460 the message is too blatant 1 +10843 460 the message 2 +10844 460 is too blatant 1 +10845 460 too blatant 1 +10846 460 blatant 2 +10847 460 the resolutions are too convenient 2 +10848 460 the resolutions 1 +10849 460 resolutions 2 +10850 460 are too convenient 2 +10851 460 too convenient 1 +10852 460 convenient 3 +10853 461 In some ways , Lagaan is quintessential Bollywood . 2 +10854 461 In some ways 2 +10855 461 some ways 2 +10856 461 , Lagaan is quintessential Bollywood . 2 +10857 461 Lagaan is quintessential Bollywood . 3 +10858 461 Lagaan 3 +10859 461 is quintessential Bollywood . 3 +10860 461 is quintessential Bollywood 3 +10861 461 quintessential Bollywood 3 +10862 461 quintessential 2 +10863 461 Bollywood 2 +10864 462 A characteristically engorged and sloppy coming-of-age movie . 1 +10865 462 A characteristically engorged and sloppy coming-of-age movie 2 +10866 462 A characteristically engorged and sloppy 1 +10867 462 characteristically engorged and sloppy 0 +10868 462 characteristically engorged and 1 +10869 462 characteristically engorged 3 +10870 462 characteristically 2 +10871 462 engorged 2 +10872 463 A wry , affectionate delight . 4 +10873 463 A wry , affectionate delight 3 +10874 463 A wry , 2 +10875 463 A wry 2 +10876 463 wry 2 +10877 463 affectionate delight 3 +10878 463 affectionate 2 +10879 463 delight 4 +10880 464 Credit director Ramsay for taking the sometimes improbable story and making it feel realistic . 3 +10881 464 Credit director Ramsay for taking the sometimes improbable story and making it 3 +10882 464 Credit director Ramsay 3 +10883 464 director Ramsay 2 +10884 464 Ramsay 2 +10885 464 for taking the sometimes improbable story and making it 3 +10886 464 taking the sometimes improbable story and making it 2 +10887 464 taking the sometimes improbable story and 2 +10888 464 taking the sometimes improbable story 2 +10889 464 the sometimes improbable story 2 +10890 464 sometimes improbable story 1 +10891 464 sometimes improbable 1 +10892 464 improbable 1 +10893 464 making it 2 +10894 464 feel realistic . 3 +10895 464 feel realistic 3 +10896 465 The auteur 's ear for the way fears and slights are telegraphed in the most blithe exchanges gives the film its lingering tug . 3 +10897 465 The auteur 's ear for the way fears and slights 3 +10898 465 The auteur 's ear 2 +10899 465 ear 2 +10900 465 for the way fears and slights 2 +10901 465 the way fears and slights 2 +10902 465 way fears and slights 1 +10903 465 fears and slights 2 +10904 465 slights 2 +10905 465 are telegraphed in the most blithe exchanges gives the film its lingering tug . 1 +10906 465 are telegraphed in the most blithe exchanges gives the film its lingering tug 3 +10907 465 telegraphed in the most blithe exchanges gives the film its lingering tug 1 +10908 465 telegraphed 2 +10909 465 in the most blithe exchanges gives the film its lingering tug 3 +10910 465 the most blithe exchanges gives the film its lingering tug 3 +10911 465 the most blithe exchanges 2 +10912 465 most blithe exchanges 2 +10913 465 blithe exchanges 3 +10914 465 blithe 2 +10915 465 exchanges 2 +10916 465 gives the film its lingering tug 3 +10917 465 gives the film 2 +10918 465 its lingering tug 2 +10919 465 lingering tug 2 +10920 465 lingering 2 +10921 465 tug 2 +10922 466 Gets better after Foster leaves that little room . 3 +10923 466 better after Foster leaves that little room . 2 +10924 466 better after Foster leaves that little room 2 +10925 466 better after Foster 3 +10926 466 after Foster 2 +10927 466 Foster 2 +10928 466 leaves that little room 2 +10929 466 leaves 2 +10930 466 that little room 2 +10931 466 little room 1 +10932 467 Despite its lavish formalism and intellectual austerity , the film manages to keep you at the edge of your seat with its shape-shifting perils , political intrigue and brushes with calamity . 3 +10933 467 Despite its lavish formalism and intellectual austerity 2 +10934 467 its lavish formalism and intellectual austerity 3 +10935 467 its lavish formalism and 2 +10936 467 its lavish formalism 3 +10937 467 lavish formalism 3 +10938 467 lavish 3 +10939 467 formalism 2 +10940 467 intellectual austerity 2 +10941 467 austerity 2 +10942 467 , the film manages to keep you at the edge of your seat with its shape-shifting perils , political intrigue and brushes with calamity . 3 +10943 467 the film manages to keep you at the edge of your seat with its shape-shifting perils , political intrigue and brushes with calamity . 4 +10944 467 manages to keep you at the edge of your seat with its shape-shifting perils , political intrigue and brushes with calamity . 4 +10945 467 manages to keep you at the edge of your seat with its shape-shifting perils , political intrigue and brushes with calamity 4 +10946 467 to keep you at the edge of your seat with its shape-shifting perils , political intrigue and brushes with calamity 4 +10947 467 keep you at the edge of your seat with its shape-shifting perils , political intrigue and brushes with calamity 3 +10948 467 keep you at the edge of your seat with its shape-shifting perils , political intrigue and brushes 4 +10949 467 keep you 2 +10950 467 at the edge of your seat with its shape-shifting perils , political intrigue and brushes 4 +10951 467 the edge of your seat with its shape-shifting perils , political intrigue and brushes 4 +10952 467 the edge 3 +10953 467 edge 3 +10954 467 of your seat with its shape-shifting perils , political intrigue and brushes 3 +10955 467 your seat with its shape-shifting perils , political intrigue and brushes 3 +10956 467 your seat 2 +10957 467 with its shape-shifting perils , political intrigue and brushes 3 +10958 467 its shape-shifting perils , political intrigue and brushes 3 +10959 467 its shape-shifting perils , political intrigue and 2 +10960 467 its shape-shifting perils , political intrigue 3 +10961 467 its shape-shifting perils , 2 +10962 467 its shape-shifting perils 2 +10963 467 shape-shifting perils 2 +10964 467 shape-shifting 2 +10965 467 perils 2 +10966 467 political intrigue 2 +10967 467 brushes 3 +10968 467 with calamity 1 +10969 467 calamity 2 +10970 468 Friday After Next is the kind of film that could only be made by African-Americans because of its broad racial insensitivity towards African-Americans . 1 +10971 468 Friday 2 +10972 468 After Next is the kind of film that could only be made by African-Americans because of its broad racial insensitivity towards African-Americans . 1 +10973 468 After Next 3 +10974 468 Next 2 +10975 468 is the kind of film that could only be made by African-Americans because of its broad racial insensitivity towards African-Americans . 1 +10976 468 is the kind of film that could only be made by African-Americans because of its broad racial insensitivity towards African-Americans 0 +10977 468 the kind of film that could only be made by African-Americans because of its broad racial insensitivity towards African-Americans 1 +10978 468 that could only be made by African-Americans because of its broad racial insensitivity towards African-Americans 0 +10979 468 could only be made by African-Americans because of its broad racial insensitivity towards African-Americans 1 +10980 468 could only 2 +10981 468 be made by African-Americans because of its broad racial insensitivity towards African-Americans 1 +10982 468 made by African-Americans because of its broad racial insensitivity towards African-Americans 2 +10983 468 by African-Americans because of its broad racial insensitivity towards African-Americans 1 +10984 468 African-Americans because of its broad racial insensitivity towards African-Americans 1 +10985 468 African-Americans 2 +10986 468 because of its broad racial insensitivity towards African-Americans 1 +10987 468 of its broad racial insensitivity towards African-Americans 1 +10988 468 its broad racial insensitivity towards African-Americans 2 +10989 468 its broad racial insensitivity 1 +10990 468 broad racial insensitivity 1 +10991 468 broad 2 +10992 468 racial insensitivity 1 +10993 468 racial 2 +10994 468 insensitivity 1 +10995 468 towards African-Americans 2 +10996 468 towards 2 +10997 469 As lively an account as Seinfeld is deadpan . 1 +10998 469 As lively 2 +10999 469 lively 3 +11000 469 an account as Seinfeld is deadpan . 2 +11001 469 an account as Seinfeld 2 +11002 469 an account 2 +11003 469 account 2 +11004 469 as Seinfeld 2 +11005 469 Seinfeld 2 +11006 469 is deadpan . 2 +11007 469 is deadpan 1 +11008 469 deadpan 2 +11009 470 Brings awareness to an issue often overlooked -- women 's depression . 2 +11010 470 Brings awareness to an issue often overlooked -- women 's depression 3 +11011 470 Brings awareness to an issue often overlooked -- 3 +11012 470 Brings awareness to an issue often overlooked 4 +11013 470 Brings awareness to an issue 3 +11014 470 Brings awareness 3 +11015 470 awareness 2 +11016 470 to an issue 2 +11017 470 an issue 2 +11018 470 issue 2 +11019 470 often overlooked 2 +11020 470 overlooked 2 +11021 470 women 's depression 2 +11022 470 women 2 +11023 470 's depression 1 +11024 471 Imagine a film that begins as a Seven rip-off , only to switch to a mix of The Shining , The Thing , and any naked teenagers horror flick from the 1980s . 1 +11025 471 Imagine a film that begins as a Seven rip-off , only to switch to a mix of The Shining , The Thing , and any naked teenagers horror flick from the 1980s 1 +11026 471 a film that begins as a Seven rip-off , only to switch to a mix of The Shining , The Thing , and any naked teenagers horror flick from the 1980s 1 +11027 471 that begins as a Seven rip-off , only to switch to a mix of The Shining , The Thing , and any naked teenagers horror flick from the 1980s 3 +11028 471 begins as a Seven rip-off , only to switch to a mix of The Shining , The Thing , and any naked teenagers horror flick from the 1980s 1 +11029 471 begins as a Seven rip-off , only 2 +11030 471 begins as a Seven rip-off , 1 +11031 471 begins as a Seven rip-off 0 +11032 471 as a Seven rip-off 1 +11033 471 a Seven rip-off 1 +11034 471 Seven rip-off 1 +11035 471 Seven 2 +11036 471 to switch to a mix of The Shining , The Thing , and any naked teenagers horror flick from the 1980s 2 +11037 471 switch to a mix of The Shining , The Thing , and any naked teenagers horror flick from the 1980s 1 +11038 471 switch to a mix of The Shining , The Thing , and any naked teenagers horror flick 2 +11039 471 switch 2 +11040 471 to a mix of The Shining , The Thing , and any naked teenagers horror flick 1 +11041 471 a mix of The Shining , The Thing , and any naked teenagers horror flick 1 +11042 471 a mix 2 +11043 471 mix 2 +11044 471 of The Shining , The Thing , and any naked teenagers horror flick 2 +11045 471 The Shining , The Thing , and any naked teenagers horror flick 2 +11046 471 The Shining , The Thing , and 2 +11047 471 The Shining , The Thing , 3 +11048 471 The Shining , The Thing 2 +11049 471 The Shining , 2 +11050 471 The Shining 2 +11051 471 Shining 3 +11052 471 The Thing 2 +11053 471 any naked teenagers horror flick 1 +11054 471 naked teenagers horror flick 1 +11055 471 naked 2 +11056 471 teenagers horror flick 2 +11057 471 teenagers 2 +11058 471 from the 1980s 2 +11059 471 the 1980s 1 +11060 471 1980s 2 +11061 472 Definitely funny stuff , but it 's more of the ` laughing at ' variety than the ` laughing with . ' 3 +11062 472 Definitely funny stuff , but it 's more of the ` laughing at ' variety than the ` laughing with . 2 +11063 472 Definitely funny stuff , but it 's more of the ` laughing at ' variety than the ` laughing with 3 +11064 472 Definitely funny stuff , but 2 +11065 472 Definitely funny stuff , 3 +11066 472 Definitely funny stuff 4 +11067 472 funny stuff 3 +11068 472 it 's more of the ` laughing at ' variety than the ` laughing with 1 +11069 472 's more of the ` laughing at ' variety than the ` laughing with 1 +11070 472 more of the ` laughing at ' variety than the ` laughing with 3 +11071 472 of the ` laughing at ' variety than the ` laughing with 1 +11072 472 the ` laughing at ' variety than the ` laughing with 2 +11073 472 the ` laughing at ' variety 2 +11074 472 ` laughing at ' variety 2 +11075 472 laughing at ' variety 3 +11076 472 laughing at 2 +11077 472 ' variety 2 +11078 472 than the ` laughing with 2 +11079 472 the ` laughing with 2 +11080 472 the ` laughing 3 +11081 472 ` laughing 4 +11082 473 A heartening tale of small victories and enduring hope . 3 +11083 473 A heartening tale of small victories and enduring 3 +11084 473 A heartening tale of small victories and 3 +11085 473 A heartening tale of small victories 3 +11086 473 A heartening tale 3 +11087 473 heartening tale 3 +11088 473 heartening 3 +11089 473 of small victories 2 +11090 473 small victories 2 +11091 473 victories 2 +11092 473 enduring 3 +11093 473 hope . 2 +11094 473 hope 4 +11095 474 An emotionally strong and politically potent piece of cinema . 4 +11096 474 An emotionally strong and politically potent piece of cinema 4 +11097 474 An emotionally strong and politically potent piece 3 +11098 474 emotionally strong and politically potent piece 4 +11099 474 emotionally strong and politically potent 3 +11100 474 emotionally strong and 3 +11101 474 emotionally strong 3 +11102 474 politically potent 3 +11103 474 politically 2 +11104 475 An extremely unpleasant film . 0 +11105 475 An extremely unpleasant film 0 +11106 475 extremely unpleasant film 0 +11107 475 extremely unpleasant 0 +11108 475 unpleasant 1 +11109 476 More intellectually scary than dramatically involving . 1 +11110 476 More intellectually scary than dramatically involving 2 +11111 476 More intellectually scary 2 +11112 476 intellectually scary 2 +11113 476 intellectually 2 +11114 476 scary 2 +11115 476 than dramatically involving 2 +11116 476 dramatically involving 2 +11117 476 dramatically 2 +11118 477 A puzzling experience . 2 +11119 477 A puzzling 2 +11120 477 puzzling 1 +11121 477 experience . 2 +11122 478 Jonah is only so-so ... the addition of a biblical message will either improve the film for you , or it will lessen it . 2 +11123 478 Jonah is only so-so ... the addition of a biblical message will either improve the film for you , or it will lessen it 2 +11124 478 Jonah is only so-so ... 2 +11125 478 Jonah is only so-so 1 +11126 478 Jonah 2 +11127 478 is only so-so 1 +11128 478 only so-so 2 +11129 478 so-so 2 +11130 478 the addition of a biblical message will either improve the film for you , or it will lessen it 1 +11131 478 the addition of a biblical message will either improve the film for you , or 2 +11132 478 the addition of a biblical message will either improve the film for you , 2 +11133 478 the addition of a biblical message will either improve the film for you 2 +11134 478 the addition of a biblical message 2 +11135 478 the addition 2 +11136 478 of a biblical message 2 +11137 478 a biblical message 2 +11138 478 biblical message 2 +11139 478 biblical 2 +11140 478 will either improve the film for you 2 +11141 478 will either 2 +11142 478 either 2 +11143 478 improve the film for you 2 +11144 478 the film for you 2 +11145 478 for you 2 +11146 478 it will lessen it 2 +11147 478 will lessen it 2 +11148 478 lessen it 2 +11149 478 lessen 2 +11150 479 I hope the movie is widely seen and debated with appropriate ferocity and thoughtfulness . 4 +11151 479 hope the movie is widely seen and debated with appropriate ferocity and thoughtfulness . 2 +11152 479 hope the movie is widely seen and debated with appropriate ferocity and thoughtfulness 3 +11153 479 the movie is widely seen and debated with appropriate ferocity and thoughtfulness 3 +11154 479 is widely seen and debated with appropriate ferocity and thoughtfulness 3 +11155 479 is widely 2 +11156 479 widely 2 +11157 479 seen and debated with appropriate ferocity and thoughtfulness 3 +11158 479 seen and debated 2 +11159 479 seen and 2 +11160 479 debated 2 +11161 479 with appropriate ferocity and thoughtfulness 3 +11162 479 appropriate ferocity and thoughtfulness 3 +11163 479 ferocity and thoughtfulness 3 +11164 479 ferocity and 3 +11165 479 ferocity 2 +11166 479 thoughtfulness 3 +11167 480 Intelligent and moving . 4 +11168 480 Intelligent and moving 4 +11169 480 Intelligent and 3 +11170 480 Intelligent 4 +11171 481 This film is too busy hitting all of its assigned marks to take on any life of its own . 1 +11172 481 is too busy hitting all of its assigned marks to take on any life of its own . 1 +11173 481 is too busy hitting all of its assigned marks to take on any life of its own 1 +11174 481 is too busy 1 +11175 481 too busy 1 +11176 481 busy 1 +11177 481 hitting all of its assigned marks to take on any life of its own 1 +11178 481 hitting 2 +11179 481 all of its assigned marks to take on any life of its own 1 +11180 481 of its assigned marks to take on any life of its own 1 +11181 481 its assigned marks to take on any life of its own 2 +11182 481 assigned marks to take on any life of its own 2 +11183 481 assigned 2 +11184 481 marks to take on any life of its own 1 +11185 481 marks 2 +11186 481 to take on any life of its own 2 +11187 481 take on any life of its own 2 +11188 481 on any life of its own 2 +11189 481 any life of its own 2 +11190 481 any life 2 +11191 481 of its own 2 +11192 482 Mark Wahlberg ... may look classy in a '60s - homage pokepie hat , but as a character he 's dry , dry , dry . 2 +11193 482 Mark Wahlberg 2 +11194 482 Wahlberg 2 +11195 482 ... may look classy in a '60s - homage pokepie hat , but as a character he 's dry , dry , dry . 1 +11196 482 may look classy in a '60s - homage pokepie hat , but as a character he 's dry , dry , dry . 1 +11197 482 may look classy in a '60s - homage pokepie hat , but as a character he 's dry , dry , dry 1 +11198 482 look classy in a '60s - homage pokepie hat , but as a character he 's dry , dry , dry 1 +11199 482 look classy in a '60s - 3 +11200 482 look classy in a '60s 2 +11201 482 classy in a '60s 2 +11202 482 classy 3 +11203 482 in a '60s 3 +11204 482 a '60s 2 +11205 482 homage pokepie hat , but as a character he 's dry , dry , dry 1 +11206 482 homage pokepie hat , but as a character he 's dry , 1 +11207 482 homage pokepie hat , but as a character he 's dry 1 +11208 482 homage pokepie hat , but as a character 2 +11209 482 homage pokepie hat , but as 2 +11210 482 homage pokepie hat , 2 +11211 482 homage pokepie hat 2 +11212 482 pokepie hat 2 +11213 482 pokepie 2 +11214 482 hat 3 +11215 482 but as 3 +11216 482 a character 2 +11217 482 he 's dry 1 +11218 482 's dry 1 +11219 482 dry 1 +11220 482 dry , dry 2 +11221 482 , dry 1 +11222 483 The moral shrapnel and mental shellshock will linger long after this film has ended . 3 +11223 483 The moral shrapnel and mental shellshock 2 +11224 483 The moral shrapnel and 2 +11225 483 The moral shrapnel 2 +11226 483 moral shrapnel 2 +11227 483 shrapnel 2 +11228 483 mental shellshock 2 +11229 483 mental 2 +11230 483 shellshock 2 +11231 483 will linger long after this film has ended . 3 +11232 483 will linger long after this film has ended 3 +11233 483 linger long after this film has ended 3 +11234 483 linger 2 +11235 483 long after this film has ended 3 +11236 483 after this film has ended 2 +11237 483 this film has ended 2 +11238 483 has ended 2 +11239 483 ended 2 +11240 484 As Warren he stumbles in search of all the emotions and life experiences he 's neglected over the years . 2 +11241 484 As Warren he stumbles in search of all the emotions and life experiences 1 +11242 484 As Warren 2 +11243 484 Warren 2 +11244 484 he stumbles in search of all the emotions and life experiences 2 +11245 484 stumbles in search of all the emotions and life experiences 1 +11246 484 in search of all the emotions and life experiences 2 +11247 484 search of all the emotions and life experiences 2 +11248 484 search 2 +11249 484 of all the emotions and life experiences 2 +11250 484 all the emotions and life experiences 2 +11251 484 all the emotions and 2 +11252 484 all the emotions 2 +11253 484 the emotions 2 +11254 484 life experiences 2 +11255 484 experiences 2 +11256 484 he 's neglected over the years . 2 +11257 484 's neglected over the years . 2 +11258 484 's neglected over the years 1 +11259 484 neglected over the years 1 +11260 484 neglected 1 +11261 484 over the years 2 +11262 484 the years 2 +11263 485 It should have stayed there . 1 +11264 485 should have stayed there . 1 +11265 485 should have stayed there 1 +11266 485 have stayed there 3 +11267 485 stayed there 2 +11268 485 stayed 2 +11269 486 ... in the pile of useless actioners from MTV schmucks who do n't know how to tell a story for more than four minutes . 0 +11270 486 in the pile of useless actioners from MTV schmucks who do n't know how to tell a story for more than four minutes . 2 +11271 486 in the pile of useless actioners from MTV schmucks who do n't know how to tell a story for more than four minutes 0 +11272 486 in the pile of useless actioners 1 +11273 486 the pile of useless actioners 0 +11274 486 the pile 2 +11275 486 pile 2 +11276 486 of useless actioners 1 +11277 486 useless actioners 1 +11278 486 useless 1 +11279 486 actioners 2 +11280 486 from MTV schmucks who do n't know how to tell a story for more than four minutes 1 +11281 486 MTV schmucks who do n't know how to tell a story for more than four minutes 0 +11282 486 MTV schmucks 0 +11283 486 MTV 2 +11284 486 schmucks 1 +11285 486 who do n't know how to tell a story for more than four minutes 1 +11286 486 do n't know how to tell a story for more than four minutes 2 +11287 486 know how to tell a story for more than four minutes 2 +11288 486 how to tell a story for more than four minutes 2 +11289 486 to tell a story for more than four minutes 2 +11290 486 tell a story for more than four minutes 2 +11291 486 tell 2 +11292 486 a story for more than four minutes 1 +11293 486 for more than four minutes 2 +11294 486 more than four minutes 2 +11295 486 more than four 3 +11296 486 than four 2 +11297 486 four 2 +11298 487 It is not the first time that director Sara Sugarman stoops to having characters drop their pants for laughs and not the last time she fails to provoke them . 0 +11299 487 It is not the first time that director Sara Sugarman stoops to having characters drop their pants for laughs and not the last time 2 +11300 487 is not the first time that director Sara Sugarman stoops to having characters drop their pants for laughs and not the last time 1 +11301 487 is not the first time 2 +11302 487 the first time 2 +11303 487 first time 2 +11304 487 that director Sara Sugarman stoops to having characters drop their pants for laughs and not the last time 1 +11305 487 director Sara Sugarman stoops to having characters drop their pants for laughs and not the last time 1 +11306 487 director Sara Sugarman 2 +11307 487 Sara Sugarman 2 +11308 487 Sara 2 +11309 487 Sugarman 2 +11310 487 stoops to having characters drop their pants for laughs and not the last time 1 +11311 487 stoops 2 +11312 487 to having characters drop their pants for laughs and not the last time 2 +11313 487 having characters drop their pants for laughs and not the last time 2 +11314 487 characters drop their pants for laughs and not the last time 3 +11315 487 drop their pants for laughs and not the last time 2 +11316 487 drop their pants 2 +11317 487 drop 2 +11318 487 their pants 2 +11319 487 pants 2 +11320 487 for laughs and not the last time 3 +11321 487 laughs and not the last time 3 +11322 487 laughs and 2 +11323 487 not the last time 2 +11324 487 the last time 2 +11325 487 last time 2 +11326 487 she fails to provoke them . 1 +11327 487 she 2 +11328 487 fails to provoke them . 1 +11329 487 fails to provoke them 1 +11330 487 to provoke them 3 +11331 487 provoke them 2 +11332 487 provoke 2 +11333 488 There 's no point of view , no contemporary interpretation of Joan 's prefeminist plight , so we 're left thinking the only reason to make the movie is because present standards allow for plenty of nudity . 1 +11334 488 There 's no point of view , no contemporary interpretation of Joan 's prefeminist plight , so we 're left thinking the only reason to make the movie is because present standards allow for plenty of nudity 2 +11335 488 There 's no point of view , no contemporary interpretation of Joan 's prefeminist plight , so 1 +11336 488 There 's no point of view , no contemporary interpretation of Joan 's prefeminist plight , 1 +11337 488 There 's no point of view , no contemporary interpretation of Joan 's prefeminist plight 2 +11338 488 's no point of view , no contemporary interpretation of Joan 's prefeminist plight 1 +11339 488 no point of view , no contemporary interpretation of Joan 's prefeminist plight 1 +11340 488 no point 1 +11341 488 of view , no contemporary interpretation of Joan 's prefeminist plight 2 +11342 488 view , no contemporary interpretation of Joan 's prefeminist plight 2 +11343 488 view , 2 +11344 488 no contemporary interpretation of Joan 's prefeminist plight 2 +11345 488 no contemporary interpretation 2 +11346 488 contemporary interpretation 2 +11347 488 contemporary 3 +11348 488 interpretation 2 +11349 488 of Joan 's prefeminist plight 2 +11350 488 Joan 's prefeminist plight 2 +11351 488 Joan 's 2 +11352 488 Joan 2 +11353 488 prefeminist plight 2 +11354 488 prefeminist 2 +11355 488 plight 2 +11356 488 we 're left thinking the only reason to make the movie is because present standards allow for plenty of nudity 0 +11357 488 're left thinking the only reason to make the movie is because present standards allow for plenty of nudity 1 +11358 488 left thinking the only reason to make the movie is because present standards allow for plenty of nudity 1 +11359 488 thinking the only reason to make the movie is because present standards allow for plenty of nudity 1 +11360 488 thinking the only reason 2 +11361 488 thinking 2 +11362 488 the only reason 3 +11363 488 only reason 2 +11364 488 to make the movie is because present standards allow for plenty of nudity 2 +11365 488 make the movie is because present standards allow for plenty of nudity 2 +11366 488 the movie is because present standards allow for plenty of nudity 2 +11367 488 is because present standards allow for plenty of nudity 2 +11368 488 because present standards allow for plenty of nudity 2 +11369 488 present standards allow for plenty of nudity 2 +11370 488 present standards 2 +11371 488 standards 2 +11372 488 allow for plenty of nudity 2 +11373 488 allow 2 +11374 488 for plenty of nudity 2 +11375 488 plenty of nudity 3 +11376 488 of nudity 2 +11377 488 nudity 1 +11378 489 There is a strong directorial stamp on every frame of this stylish film that is able to visualize schizophrenia but is still confident enough to step back and look at the sick character with a sane eye . 3 +11379 489 is a strong directorial stamp on every frame of this stylish film that is able to visualize schizophrenia but is still confident enough to step back and look at the sick character with a sane eye . 3 +11380 489 is a strong directorial stamp on every frame of this stylish film that is able to visualize schizophrenia but is still confident enough to step back and look at the sick character with a sane eye 3 +11381 489 a strong directorial stamp on every frame of this stylish film that is able to visualize schizophrenia but is still confident enough to step back and look at the sick character with a sane eye 4 +11382 489 a strong directorial stamp 3 +11383 489 strong directorial stamp 3 +11384 489 directorial stamp 2 +11385 489 directorial 2 +11386 489 stamp 2 +11387 489 on every frame of this stylish film that is able to visualize schizophrenia but is still confident enough to step back and look at the sick character with a sane eye 4 +11388 489 every frame of this stylish film that is able to visualize schizophrenia but is still confident enough to step back and look at the sick character with a sane eye 3 +11389 489 every frame 2 +11390 489 of this stylish film that is able to visualize schizophrenia but is still confident enough to step back and look at the sick character with a sane eye 3 +11391 489 this stylish film that is able to visualize schizophrenia but is still confident enough to step back and look at the sick character with a sane eye 4 +11392 489 this stylish film 3 +11393 489 stylish film 3 +11394 489 stylish 3 +11395 489 that is able to visualize schizophrenia but is still confident enough to step back and look at the sick character with a sane eye 3 +11396 489 is able to visualize schizophrenia but is still confident enough to step back and look at the sick character with a sane eye 2 +11397 489 is able to visualize schizophrenia but 2 +11398 489 is able to visualize schizophrenia 3 +11399 489 able to visualize schizophrenia 2 +11400 489 to visualize schizophrenia 2 +11401 489 visualize schizophrenia 1 +11402 489 visualize 2 +11403 489 schizophrenia 2 +11404 489 is still confident enough to step back and look at the sick character with a sane eye 2 +11405 489 confident enough to step back and look at the sick character with a sane eye 3 +11406 489 confident enough 3 +11407 489 to step back and look at the sick character with a sane eye 2 +11408 489 step back and look at the sick character with a sane eye 2 +11409 489 step back and 2 +11410 489 step back 2 +11411 489 step 2 +11412 489 look at the sick character with a sane eye 2 +11413 489 at the sick character with a sane eye 2 +11414 489 the sick character with a sane eye 2 +11415 489 the sick character 1 +11416 489 sick character 1 +11417 489 sick 1 +11418 489 with a sane eye 2 +11419 489 a sane eye 2 +11420 489 sane eye 2 +11421 489 eye 2 +11422 490 Romantic , riveting and handsomely animated . 4 +11423 490 Romantic , riveting and handsomely 4 +11424 490 , riveting and handsomely 3 +11425 490 riveting and handsomely 3 +11426 490 riveting and 3 +11427 490 handsomely 3 +11428 490 animated . 2 +11429 491 This overproduced piece of dreck is shockingly bad and absolutely unnecessary . 0 +11430 491 This overproduced piece of dreck 0 +11431 491 This overproduced piece 1 +11432 491 overproduced piece 1 +11433 491 overproduced 1 +11434 491 of dreck 1 +11435 491 dreck 2 +11436 491 is shockingly bad and absolutely unnecessary . 0 +11437 491 is shockingly bad and absolutely unnecessary 0 +11438 491 shockingly bad and absolutely unnecessary 0 +11439 491 shockingly bad and 1 +11440 491 shockingly bad 0 +11441 491 shockingly 2 +11442 491 absolutely unnecessary 1 +11443 491 absolutely 3 +11444 491 unnecessary 2 +11445 492 As saccharine as it is disposable . 1 +11446 492 As saccharine as 2 +11447 492 saccharine as 1 +11448 492 saccharine 2 +11449 492 it is disposable . 1 +11450 492 is disposable . 2 +11451 492 is disposable 1 +11452 492 disposable 1 +11453 493 Captures the raw comic energy of one of our most flamboyant female comics . 4 +11454 493 Captures the raw comic energy of one of our most flamboyant female comics 3 +11455 493 Captures the raw comic energy of one 3 +11456 493 the raw comic energy of one 2 +11457 493 the raw comic energy 3 +11458 493 raw comic energy 3 +11459 493 raw 2 +11460 493 comic energy 3 +11461 493 energy 3 +11462 493 of one 2 +11463 493 of our most flamboyant female comics 3 +11464 493 our most flamboyant female comics 3 +11465 493 most flamboyant female comics 3 +11466 493 flamboyant female comics 3 +11467 493 flamboyant 2 +11468 493 female comics 2 +11469 493 comics 2 +11470 494 A subtle , poignant picture of goodness that is flawed , compromised and sad . 2 +11471 494 A subtle , poignant picture of goodness that is flawed , compromised and sad 3 +11472 494 A subtle , poignant picture 3 +11473 494 subtle , poignant picture 3 +11474 494 subtle 3 +11475 494 , poignant picture 3 +11476 494 poignant picture 3 +11477 494 of goodness that is flawed , compromised and sad 3 +11478 494 goodness that is flawed , compromised and sad 1 +11479 494 goodness 3 +11480 494 that is flawed , compromised and sad 1 +11481 494 is flawed , compromised and sad 1 +11482 494 flawed , compromised and sad 0 +11483 494 , compromised and sad 1 +11484 494 compromised and sad 1 +11485 494 compromised and 3 +11486 494 compromised 2 +11487 495 An exceptionally acted , quietly affecting cop drama . 4 +11488 495 An exceptionally 3 +11489 495 exceptionally 3 +11490 495 acted , quietly affecting cop drama . 3 +11491 495 acted , quietly affecting cop drama 3 +11492 495 acted , 2 +11493 495 quietly affecting cop drama 3 +11494 495 quietly 2 +11495 495 affecting cop drama 2 +11496 496 Even in the summertime , the most restless young audience deserves the dignity of an action hero motivated by something more than franchise possibilities . 1 +11497 496 Even in the summertime 2 +11498 496 in the summertime 2 +11499 496 the summertime 2 +11500 496 summertime 2 +11501 496 , the most restless young audience deserves the dignity of an action hero motivated by something more than franchise possibilities . 1 +11502 496 the most restless young audience deserves the dignity of an action hero motivated by something more than franchise possibilities . 1 +11503 496 the most restless young audience 2 +11504 496 most restless young audience 2 +11505 496 most restless 2 +11506 496 restless 2 +11507 496 young audience 2 +11508 496 deserves the dignity of an action hero motivated by something more than franchise possibilities . 2 +11509 496 deserves the dignity of an action hero motivated by something more than franchise possibilities 3 +11510 496 the dignity of an action hero motivated by something more than franchise possibilities 3 +11511 496 the dignity 2 +11512 496 dignity 2 +11513 496 of an action hero motivated by something more than franchise possibilities 2 +11514 496 an action hero motivated by something more than franchise possibilities 3 +11515 496 an action hero 2 +11516 496 action hero 2 +11517 496 motivated by something more than franchise possibilities 3 +11518 496 motivated by something 2 +11519 496 motivated 3 +11520 496 by something 2 +11521 496 more than franchise possibilities 2 +11522 496 than franchise possibilities 3 +11523 496 franchise possibilities 3 +11524 497 Perfectly pitched between comedy and tragedy , hope and despair , About Schmidt instead comes far closer than many movies to expressing the way many of us live -- someplace between consuming self-absorption and insistently demanding otherness . 4 +11525 497 Perfectly pitched between comedy and tragedy , hope and despair 3 +11526 497 pitched between comedy and tragedy , hope and despair 2 +11527 497 pitched 2 +11528 497 between comedy and tragedy , hope and despair 2 +11529 497 comedy and tragedy , hope and despair 2 +11530 497 comedy and 3 +11531 497 tragedy , hope and despair 2 +11532 497 , hope and despair 2 +11533 497 hope and despair 2 +11534 497 hope and 2 +11535 497 despair 1 +11536 497 , About Schmidt instead comes far closer than many movies to expressing the way many of us live -- someplace between consuming self-absorption and insistently demanding otherness . 2 +11537 497 About Schmidt instead comes far closer than many movies to expressing the way many of us live -- someplace between consuming self-absorption and insistently demanding otherness . 2 +11538 497 About Schmidt 2 +11539 497 Schmidt 2 +11540 497 instead comes far closer than many movies to expressing the way many of us live -- someplace between consuming self-absorption and insistently demanding otherness . 3 +11541 497 comes far closer than many movies to expressing the way many of us live -- someplace between consuming self-absorption and insistently demanding otherness . 3 +11542 497 comes far closer than many movies to expressing the way many of us live -- someplace between consuming self-absorption and insistently demanding otherness 4 +11543 497 comes far closer than many movies 3 +11544 497 far closer than many movies 3 +11545 497 closer than many movies 3 +11546 497 closer than many 2 +11547 497 closer 2 +11548 497 than many 2 +11549 497 to expressing the way many of us live -- someplace between consuming self-absorption and insistently demanding otherness 2 +11550 497 expressing the way many of us live -- someplace between consuming self-absorption and insistently demanding otherness 1 +11551 497 expressing the way many of us live -- someplace between consuming self-absorption and 2 +11552 497 expressing the way many of us live -- someplace between consuming self-absorption 2 +11553 497 expressing 2 +11554 497 the way many of us live -- someplace between consuming self-absorption 2 +11555 497 the way many of us live -- 2 +11556 497 the way many of us live 2 +11557 497 many of us live 2 +11558 497 many of us 2 +11559 497 of us 2 +11560 497 someplace between consuming self-absorption 2 +11561 497 someplace 2 +11562 497 between consuming self-absorption 2 +11563 497 consuming self-absorption 1 +11564 497 consuming 2 +11565 497 self-absorption 2 +11566 497 insistently demanding otherness 2 +11567 497 insistently 2 +11568 497 demanding otherness 2 +11569 497 otherness 2 +11570 498 She nearly glows with enthusiasm , sensuality and a conniving wit . 3 +11571 498 nearly glows with enthusiasm , sensuality and a conniving wit . 4 +11572 498 glows with enthusiasm , sensuality and a conniving wit . 3 +11573 498 glows with enthusiasm , sensuality and a conniving wit 4 +11574 498 glows 3 +11575 498 with enthusiasm , sensuality and a conniving wit 4 +11576 498 enthusiasm , sensuality and a conniving wit 3 +11577 498 enthusiasm , 3 +11578 498 sensuality and a conniving wit 3 +11579 498 sensuality and 2 +11580 498 sensuality 3 +11581 498 a conniving wit 2 +11582 498 conniving wit 3 +11583 498 conniving 2 +11584 499 Despite modest aspirations its occasional charms are not to be dismissed . 3 +11585 499 Despite modest aspirations 3 +11586 499 modest aspirations 2 +11587 499 aspirations 2 +11588 499 its occasional charms are not to be dismissed . 3 +11589 499 its occasional charms 3 +11590 499 occasional charms 3 +11591 499 charms 3 +11592 499 are not to be dismissed . 3 +11593 499 are not to be dismissed 3 +11594 499 not to be dismissed 3 +11595 499 to be dismissed 1 +11596 499 be dismissed 2 +11597 500 So exaggerated and broad that it comes off as annoying rather than charming . 1 +11598 500 So exaggerated and broad 1 +11599 500 exaggerated and broad 1 +11600 500 exaggerated and 1 +11601 500 that it comes off as annoying rather than charming . 2 +11602 500 that it comes off as annoying rather than charming 1 +11603 500 it comes off as annoying rather than charming 0 +11604 500 comes off as annoying rather than charming 0 +11605 500 off as annoying rather than charming 1 +11606 500 off as 2 +11607 500 annoying rather than charming 1 +11608 500 rather than charming 2 +11609 500 than charming 2 +11610 501 Strange , funny , twisted , brilliant and macabre . 4 +11611 501 Strange , funny , twisted , brilliant and macabre 3 +11612 501 Strange , 2 +11613 501 Strange 2 +11614 501 funny , twisted , brilliant and macabre 4 +11615 501 , twisted , brilliant and macabre 4 +11616 501 twisted , brilliant and macabre 4 +11617 501 twisted 1 +11618 501 , brilliant and macabre 3 +11619 501 brilliant and macabre 4 +11620 501 brilliant and 4 +11621 502 The film has the thrown-together feel of a summer-camp talent show : hastily written , underrehearsed , arbitrarily plotted and filled with crude humor and vulgar innuendo . 1 +11622 502 has the thrown-together feel of a summer-camp talent show : hastily written , underrehearsed , arbitrarily plotted and filled with crude humor and vulgar innuendo . 0 +11623 502 has the thrown-together feel of a summer-camp talent show : hastily written , underrehearsed , arbitrarily plotted and filled with crude humor and vulgar innuendo 0 +11624 502 has the thrown-together feel of a summer-camp talent show : hastily written , underrehearsed , arbitrarily plotted and 0 +11625 502 has the thrown-together feel of a summer-camp talent show : hastily written , underrehearsed , arbitrarily plotted 0 +11626 502 has the thrown-together feel of a summer-camp talent show : hastily written , underrehearsed , 2 +11627 502 has the thrown-together feel of a summer-camp talent show : hastily written , underrehearsed 1 +11628 502 has the thrown-together feel of a summer-camp talent show : hastily written , 1 +11629 502 has the thrown-together feel of a summer-camp talent show : hastily written 1 +11630 502 the thrown-together feel of a summer-camp talent show : hastily written 1 +11631 502 the thrown-together feel 1 +11632 502 thrown-together feel 1 +11633 502 thrown-together 1 +11634 502 of a summer-camp talent show : hastily written 1 +11635 502 a summer-camp talent show : hastily written 1 +11636 502 a summer-camp talent show : 2 +11637 502 a summer-camp talent show 2 +11638 502 summer-camp talent show 1 +11639 502 summer-camp 2 +11640 502 talent show 2 +11641 502 hastily written 1 +11642 502 hastily 2 +11643 502 underrehearsed 1 +11644 502 arbitrarily plotted 1 +11645 502 arbitrarily 2 +11646 502 plotted 2 +11647 502 filled with crude humor and vulgar innuendo 1 +11648 502 filled 2 +11649 502 with crude humor and vulgar innuendo 1 +11650 502 crude humor and vulgar innuendo 0 +11651 502 crude 1 +11652 502 humor and vulgar innuendo 2 +11653 502 and vulgar innuendo 1 +11654 502 vulgar innuendo 1 +11655 502 innuendo 1 +11656 503 The cast comes through even when the movie does n't . 2 +11657 503 comes through even when the movie does n't . 2 +11658 503 comes through even when the movie does n't 2 +11659 503 through even when the movie does n't 1 +11660 503 even when the movie does n't 2 +11661 503 even when 2 +11662 503 the movie does n't 2 +11663 504 A rock-solid gangster movie with a fair amount of suspense , intriguing characters and bizarre bank robberies , plus a heavy dose of father-and-son dynamics . 3 +11664 504 A rock-solid gangster movie with a fair amount of suspense , intriguing characters and bizarre bank robberies , plus a heavy dose of father-and-son dynamics 3 +11665 504 A rock-solid gangster movie with a fair amount 3 +11666 504 A rock-solid gangster movie 4 +11667 504 rock-solid gangster movie 4 +11668 504 rock-solid 3 +11669 504 gangster movie 2 +11670 504 gangster 1 +11671 504 with a fair amount 2 +11672 504 a fair amount 2 +11673 504 fair amount 3 +11674 504 fair 2 +11675 504 amount 2 +11676 504 of suspense , intriguing characters and bizarre bank robberies , plus a heavy dose of father-and-son dynamics 3 +11677 504 suspense , intriguing characters and bizarre bank robberies , plus a heavy dose of father-and-son dynamics 3 +11678 504 suspense , intriguing characters and bizarre bank robberies , plus 2 +11679 504 suspense , intriguing characters and bizarre bank robberies , 4 +11680 504 suspense , intriguing characters and bizarre bank robberies 3 +11681 504 suspense , intriguing characters and 4 +11682 504 suspense , intriguing characters 4 +11683 504 suspense , 3 +11684 504 intriguing characters 3 +11685 504 bizarre bank robberies 2 +11686 504 bank robberies 2 +11687 504 bank 2 +11688 504 robberies 2 +11689 504 plus 3 +11690 504 a heavy dose of father-and-son dynamics 2 +11691 504 a heavy dose 2 +11692 504 heavy dose 2 +11693 504 dose 2 +11694 504 of father-and-son dynamics 2 +11695 504 father-and-son dynamics 2 +11696 504 father-and-son 2 +11697 504 dynamics 2 +11698 505 It 's both degrading and strangely liberating to see people working so hard at leading lives of sexy intrigue , only to be revealed by the dispassionate Gantz brothers as ordinary , pasty lumpen . 3 +11699 505 's both degrading and strangely liberating to see people working so hard at leading lives of sexy intrigue , only to be revealed by the dispassionate Gantz brothers as ordinary , pasty lumpen . 2 +11700 505 's both degrading and strangely liberating to see people working so hard at leading lives of sexy intrigue , only to be revealed by the dispassionate Gantz brothers as ordinary , pasty lumpen 3 +11701 505 's both degrading and strangely liberating 2 +11702 505 both degrading and strangely liberating 2 +11703 505 degrading and strangely liberating 3 +11704 505 degrading and 1 +11705 505 degrading 2 +11706 505 strangely liberating 3 +11707 505 liberating 3 +11708 505 to see people working so hard at leading lives of sexy intrigue , only to be revealed by the dispassionate Gantz brothers as ordinary , pasty lumpen 3 +11709 505 see people working so hard at leading lives of sexy intrigue , only to be revealed by the dispassionate Gantz brothers as ordinary , pasty lumpen 2 +11710 505 see people working so hard at leading lives of sexy intrigue , 2 +11711 505 see people working so hard at leading lives of sexy intrigue 3 +11712 505 see people 2 +11713 505 working so hard at leading lives of sexy intrigue 2 +11714 505 so hard at leading lives of sexy intrigue 2 +11715 505 hard at leading lives of sexy intrigue 2 +11716 505 at leading lives of sexy intrigue 3 +11717 505 leading lives of sexy intrigue 2 +11718 505 leading lives 2 +11719 505 leading 2 +11720 505 of sexy intrigue 3 +11721 505 sexy intrigue 3 +11722 505 only to be revealed by the dispassionate Gantz brothers as ordinary , pasty lumpen 2 +11723 505 to be revealed by the dispassionate Gantz brothers as ordinary , pasty lumpen 1 +11724 505 be revealed by the dispassionate Gantz brothers as ordinary , pasty lumpen 1 +11725 505 revealed by the dispassionate Gantz brothers as ordinary , pasty lumpen 2 +11726 505 by the dispassionate Gantz brothers as ordinary , pasty lumpen 1 +11727 505 the dispassionate Gantz brothers as ordinary , pasty lumpen 1 +11728 505 the dispassionate Gantz brothers 1 +11729 505 dispassionate Gantz brothers 2 +11730 505 dispassionate 1 +11731 505 Gantz brothers 2 +11732 505 Gantz 2 +11733 505 brothers 2 +11734 505 as ordinary , pasty lumpen 2 +11735 505 ordinary , pasty lumpen 1 +11736 505 , pasty lumpen 1 +11737 505 pasty lumpen 2 +11738 505 pasty 2 +11739 505 lumpen 1 +11740 506 Innocuous enough to make even Jean-Claude Van Damme look good . 2 +11741 506 Innocuous enough to make even Jean-Claude Van Damme look good 2 +11742 506 Innocuous 2 +11743 506 enough to make even Jean-Claude Van Damme look good 3 +11744 506 to make even Jean-Claude Van Damme look good 3 +11745 506 make even Jean-Claude Van Damme look good 2 +11746 506 even Jean-Claude Van Damme look good 3 +11747 506 Jean-Claude Van Damme look good 4 +11748 506 Jean-Claude Van Damme 2 +11749 506 Jean-Claude 2 +11750 506 Van Damme 2 +11751 506 Van 2 +11752 506 Damme 2 +11753 506 look good 3 +11754 507 But if the essence of magic is its make-believe promise of life that soars above the material realm , this is the opposite of a truly magical movie . 0 +11755 507 if the essence of magic is its make-believe promise of life that soars above the material realm , this is the opposite of a truly magical movie . 4 +11756 507 if the essence of magic is its make-believe promise of life that soars above the material realm 3 +11757 507 the essence of magic is its make-believe promise of life that soars above the material realm 2 +11758 507 the essence of magic 3 +11759 507 the essence 2 +11760 507 essence 2 +11761 507 of magic 3 +11762 507 is its make-believe promise of life that soars above the material realm 4 +11763 507 its make-believe promise of life that soars above the material realm 3 +11764 507 its make-believe promise of life 1 +11765 507 its make-believe promise 2 +11766 507 make-believe promise 2 +11767 507 make-believe 2 +11768 507 promise 3 +11769 507 of life 2 +11770 507 that soars above the material realm 3 +11771 507 soars above the material realm 3 +11772 507 soars 4 +11773 507 above the material realm 2 +11774 507 the material realm 2 +11775 507 material realm 3 +11776 507 realm 2 +11777 507 , this is the opposite of a truly magical movie . 0 +11778 507 this is the opposite of a truly magical movie . 0 +11779 507 is the opposite of a truly magical movie . 0 +11780 507 is the opposite of a truly magical movie 1 +11781 507 the opposite of a truly magical movie 1 +11782 507 the opposite 2 +11783 507 opposite 2 +11784 507 of a truly magical movie 4 +11785 507 a truly magical movie 4 +11786 507 truly magical movie 4 +11787 507 truly magical 4 +11788 507 truly 3 +11789 507 magical 3 +11790 508 But its storytelling prowess and special effects are both listless . 1 +11791 508 its storytelling prowess and special effects are both listless . 1 +11792 508 its storytelling prowess and special effects 4 +11793 508 its storytelling prowess and 3 +11794 508 its storytelling prowess 3 +11795 508 storytelling prowess 3 +11796 508 prowess 2 +11797 508 special effects 2 +11798 508 are both listless . 2 +11799 508 are both listless 1 +11800 508 listless 1 +11801 509 I stopped thinking about how good it all was , and started doing nothing but reacting to it - feeling a part of its grand locations , thinking urgently as the protagonists struggled , feeling at the mercy of its inventiveness , gasping at its visual delights . 4 +11802 509 stopped thinking about how good it all was , and started doing nothing but reacting to it - feeling a part of its grand locations , thinking urgently as the protagonists struggled , feeling at the mercy of its inventiveness , gasping at its visual delights . 3 +11803 509 stopped thinking about how good it all was , and started doing nothing but reacting to it - feeling a part of its grand locations , thinking urgently as the protagonists struggled , feeling at the mercy of its inventiveness , gasping at its visual delights 4 +11804 509 stopped 2 +11805 509 thinking about how good it all was , and started doing nothing but reacting to it - feeling a part of its grand locations , thinking urgently as the protagonists struggled , feeling at the mercy of its inventiveness , gasping at its visual delights 4 +11806 509 about how good it all was , and started doing nothing but reacting to it - feeling a part of its grand locations , thinking urgently as the protagonists struggled , feeling at the mercy of its inventiveness , gasping at its visual delights 4 +11807 509 how good it all was , and started doing nothing but reacting to it - feeling a part of its grand locations , thinking urgently as the protagonists struggled , feeling at the mercy of its inventiveness , gasping at its visual delights 4 +11808 509 how good 3 +11809 509 it all was , and started doing nothing but reacting to it - feeling a part of its grand locations , thinking urgently as the protagonists struggled , feeling at the mercy of its inventiveness , gasping at its visual delights 3 +11810 509 all was , and started doing nothing but reacting to it - feeling a part of its grand locations , thinking urgently as the protagonists struggled , feeling at the mercy of its inventiveness , gasping at its visual delights 3 +11811 509 was , and started doing nothing but reacting to it - feeling a part of its grand locations , thinking urgently as the protagonists struggled , feeling at the mercy of its inventiveness , gasping at its visual delights 4 +11812 509 was , and 2 +11813 509 was , 2 +11814 509 started doing nothing but reacting to it - feeling a part of its grand locations , thinking urgently as the protagonists struggled , feeling at the mercy of its inventiveness , gasping at its visual delights 4 +11815 509 started 2 +11816 509 doing nothing but reacting to it - feeling a part of its grand locations , thinking urgently as the protagonists struggled , feeling at the mercy of its inventiveness , gasping at its visual delights 4 +11817 509 doing nothing 1 +11818 509 but reacting to it - feeling a part of its grand locations , thinking urgently as the protagonists struggled , feeling at the mercy of its inventiveness , gasping at its visual delights 4 +11819 509 reacting to it - feeling a part of its grand locations , thinking urgently as the protagonists struggled , feeling at the mercy of its inventiveness , gasping at its visual delights 4 +11820 509 reacting to it - feeling a part of its grand locations , thinking urgently as the protagonists struggled , feeling at the mercy of its inventiveness , 2 +11821 509 reacting to it - feeling a part of its grand locations , thinking urgently as the protagonists struggled , feeling at the mercy of its inventiveness 3 +11822 509 reacting to it - feeling a part of its grand locations , thinking urgently as the protagonists struggled , 3 +11823 509 reacting to it - feeling a part of its grand locations , thinking urgently as the protagonists struggled 3 +11824 509 reacting to it - feeling a part of its grand locations , 3 +11825 509 reacting to it - feeling a part of its grand locations 2 +11826 509 reacting to it - 2 +11827 509 reacting to it 2 +11828 509 reacting 2 +11829 509 feeling a part of its grand locations 3 +11830 509 a part of its grand locations 3 +11831 509 a part 2 +11832 509 part 2 +11833 509 of its grand locations 3 +11834 509 its grand locations 3 +11835 509 grand locations 3 +11836 509 grand 4 +11837 509 locations 2 +11838 509 thinking urgently as the protagonists struggled 2 +11839 509 thinking urgently 2 +11840 509 urgently 2 +11841 509 as the protagonists struggled 1 +11842 509 the protagonists struggled 2 +11843 509 the protagonists 2 +11844 509 protagonists 3 +11845 509 struggled 1 +11846 509 feeling at the mercy of its inventiveness 2 +11847 509 at the mercy of its inventiveness 1 +11848 509 the mercy of its inventiveness 2 +11849 509 the mercy 2 +11850 509 mercy 2 +11851 509 of its inventiveness 3 +11852 509 its inventiveness 3 +11853 509 inventiveness 3 +11854 509 gasping at its visual delights 3 +11855 509 gasping 2 +11856 509 at its visual delights 4 +11857 509 its visual delights 3 +11858 509 visual delights 4 +11859 509 delights 3 +11860 510 Newcomer helmer Kevin Donovan is hamstrung by a badly handled screenplay of what is really an amusing concept -- a high-tech tux that transforms its wearer into a superman . 2 +11861 510 Newcomer helmer Kevin Donovan 2 +11862 510 Newcomer 2 +11863 510 helmer Kevin Donovan 2 +11864 510 helmer 3 +11865 510 Kevin Donovan 2 +11866 510 Kevin 2 +11867 510 Donovan 2 +11868 510 is hamstrung by a badly handled screenplay of what is really an amusing concept -- a high-tech tux that transforms its wearer into a superman . 0 +11869 510 is hamstrung by a badly handled screenplay of what is really an amusing concept -- a high-tech tux that transforms its wearer into a superman 2 +11870 510 hamstrung by a badly handled screenplay of what is really an amusing concept -- a high-tech tux that transforms its wearer into a superman 1 +11871 510 hamstrung 1 +11872 510 by a badly handled screenplay of what is really an amusing concept -- a high-tech tux that transforms its wearer into a superman 1 +11873 510 a badly handled screenplay of what is really an amusing concept -- a high-tech tux that transforms its wearer into a superman 1 +11874 510 a badly handled screenplay 0 +11875 510 badly handled screenplay 0 +11876 510 badly handled 1 +11877 510 badly 2 +11878 510 handled 2 +11879 510 of what is really an amusing concept -- a high-tech tux that transforms its wearer into a superman 3 +11880 510 what is really an amusing concept -- a high-tech tux that transforms its wearer into a superman 3 +11881 510 what is really an amusing concept 3 +11882 510 is really an amusing concept 3 +11883 510 is really 2 +11884 510 an amusing concept 3 +11885 510 amusing concept 3 +11886 510 -- a high-tech tux that transforms its wearer into a superman 2 +11887 510 a high-tech tux that transforms its wearer into a superman 2 +11888 510 a high-tech tux 2 +11889 510 high-tech tux 2 +11890 510 high-tech 2 +11891 510 tux 2 +11892 510 that transforms its wearer into a superman 3 +11893 510 transforms its wearer into a superman 3 +11894 510 transforms its wearer 3 +11895 510 its wearer 2 +11896 510 wearer 2 +11897 510 into a superman 2 +11898 510 a superman 2 +11899 510 superman 2 +11900 511 One Hour Photo may seem disappointing in its generalities , but it 's the little nuances that perhaps had to escape from director Mark Romanek 's self-conscious scrutiny to happen , that finally get under your skin . 1 +11901 511 One Hour Photo may seem disappointing in its generalities , but it 's the little nuances that perhaps had to escape from director Mark Romanek 's self-conscious scrutiny to happen , that finally get under your skin 1 +11902 511 One Hour Photo may seem disappointing in its generalities , but 1 +11903 511 One Hour Photo may seem disappointing in its generalities , 1 +11904 511 One Hour Photo may seem disappointing in its generalities 1 +11905 511 One Hour Photo 2 +11906 511 Hour Photo 2 +11907 511 Photo 2 +11908 511 may seem disappointing in its generalities 1 +11909 511 seem disappointing in its generalities 0 +11910 511 seem disappointing 1 +11911 511 disappointing 0 +11912 511 in its generalities 2 +11913 511 its generalities 2 +11914 511 generalities 2 +11915 511 it 's the little nuances that perhaps had to escape from director Mark Romanek 's self-conscious scrutiny to happen , that finally get under your skin 1 +11916 511 's the little nuances that perhaps had to escape from director Mark Romanek 's self-conscious scrutiny to happen , that finally get under your skin 1 +11917 511 the little nuances that perhaps had to escape from director Mark Romanek 's self-conscious scrutiny to happen , that finally get under your skin 2 +11918 511 the little nuances that perhaps had to escape from director Mark Romanek 's self-conscious scrutiny to happen , 1 +11919 511 the little nuances that perhaps had to escape from director Mark Romanek 's self-conscious scrutiny to happen 2 +11920 511 the little nuances 1 +11921 511 little nuances 2 +11922 511 that perhaps had to escape from director Mark Romanek 's self-conscious scrutiny to happen 2 +11923 511 perhaps had to escape from director Mark Romanek 's self-conscious scrutiny to happen 2 +11924 511 had to escape from director Mark Romanek 's self-conscious scrutiny to happen 2 +11925 511 had to escape from director Mark Romanek 's self-conscious scrutiny 1 +11926 511 to escape from director Mark Romanek 's self-conscious scrutiny 1 +11927 511 escape from director Mark Romanek 's self-conscious scrutiny 2 +11928 511 escape 3 +11929 511 from director Mark Romanek 's self-conscious scrutiny 1 +11930 511 director Mark Romanek 's self-conscious scrutiny 2 +11931 511 director Mark Romanek 's 2 +11932 511 Mark Romanek 's 2 +11933 511 Romanek 's 2 +11934 511 Romanek 2 +11935 511 self-conscious scrutiny 2 +11936 511 self-conscious 2 +11937 511 scrutiny 1 +11938 511 to happen 2 +11939 511 that finally get under your skin 2 +11940 511 finally get under your skin 2 +11941 511 get under your skin 2 +11942 511 under your skin 2 +11943 511 your skin 2 +11944 512 With a confrontational stance , Todd Solondz takes aim on political correctness and suburban families . 2 +11945 512 With a confrontational stance 2 +11946 512 a confrontational stance 2 +11947 512 confrontational stance 1 +11948 512 confrontational 1 +11949 512 stance 2 +11950 512 , Todd Solondz takes aim on political correctness and suburban families . 2 +11951 512 Todd Solondz takes aim on political correctness and suburban families . 3 +11952 512 Todd Solondz 2 +11953 512 Todd 2 +11954 512 takes aim on political correctness and suburban families . 2 +11955 512 takes aim on political correctness and suburban families 2 +11956 512 takes aim 2 +11957 512 aim 2 +11958 512 on political correctness and suburban families 2 +11959 512 political correctness and suburban families 2 +11960 512 political correctness and 2 +11961 512 political correctness 2 +11962 512 correctness 2 +11963 512 suburban families 2 +11964 512 suburban 2 +11965 512 families 2 +11966 513 A processed comedy chop suey . 1 +11967 513 A processed comedy 2 +11968 513 processed comedy 1 +11969 513 chop suey . 2 +11970 513 chop suey 2 +11971 513 chop 2 +11972 513 suey 2 +11973 514 eventually arrives at its heart , as simple self-reflection meditation . 3 +11974 514 arrives at its heart , as simple self-reflection meditation . 3 +11975 514 arrives at its heart , as simple self-reflection meditation 3 +11976 514 arrives at 2 +11977 514 its heart , as simple self-reflection meditation 3 +11978 514 its heart , 3 +11979 514 its heart 3 +11980 514 as simple self-reflection meditation 3 +11981 514 as simple 2 +11982 514 simple 2 +11983 514 self-reflection meditation 2 +11984 514 self-reflection 2 +11985 515 Proves a lovely trifle that , unfortunately , is a little too in love with its own cuteness . 1 +11986 515 Proves a lovely trifle that , unfortunately , is a little too in love with its own cuteness 1 +11987 515 a lovely trifle that , unfortunately , is a little too in love with its own cuteness 1 +11988 515 a lovely trifle 3 +11989 515 lovely trifle 4 +11990 515 lovely 3 +11991 515 trifle 2 +11992 515 that , unfortunately , is a little too in love with its own cuteness 2 +11993 515 , unfortunately , is a little too in love with its own cuteness 1 +11994 515 unfortunately , is a little too in love with its own cuteness 0 +11995 515 , is a little too in love with its own cuteness 2 +11996 515 is a little too in love with its own cuteness 1 +11997 515 is a little too in love 1 +11998 515 a little too in love 2 +11999 515 a little too 2 +12000 515 in love 2 +12001 515 with its own cuteness 3 +12002 515 its own cuteness 3 +12003 515 own cuteness 3 +12004 515 cuteness 3 +12005 516 So purely enjoyable that you might not even notice it 's a fairly straightforward remake of Hollywood comedies such as Father of the Bride . 3 +12006 516 purely enjoyable that you might not even notice it 's a fairly straightforward remake of Hollywood comedies such as Father of the Bride . 3 +12007 516 purely enjoyable that you might not even notice it 3 +12008 516 purely enjoyable 4 +12009 516 purely 2 +12010 516 that you might not even notice it 2 +12011 516 you might not even notice it 2 +12012 516 might not even notice it 2 +12013 516 might not even 2 +12014 516 might not 2 +12015 516 notice it 2 +12016 516 notice 2 +12017 516 's a fairly straightforward remake of Hollywood comedies such as Father of the Bride . 2 +12018 516 's a fairly straightforward remake of Hollywood comedies such as Father of the Bride 2 +12019 516 a fairly straightforward remake of Hollywood comedies such as Father of the Bride 2 +12020 516 a fairly straightforward remake 2 +12021 516 fairly straightforward remake 2 +12022 516 fairly straightforward 3 +12023 516 straightforward 3 +12024 516 remake 2 +12025 516 of Hollywood comedies such as Father of the Bride 2 +12026 516 Hollywood comedies such as Father of the Bride 3 +12027 516 Hollywood comedies 2 +12028 516 such as Father of the Bride 2 +12029 516 as Father of the Bride 2 +12030 516 Father of the Bride 2 +12031 516 Father 2 +12032 516 of the Bride 2 +12033 516 the Bride 2 +12034 516 Bride 2 +12035 517 An intelligent , multi-layered and profoundly humanist -LRB- not to mention gently political -RRB- meditation on the values of knowledge , education , and the affects of cultural and geographical displacement . 4 +12036 517 An intelligent , multi-layered and profoundly humanist -LRB- not to mention gently political -RRB- meditation on the values of knowledge , education , and the 3 +12037 517 An intelligent , multi-layered and profoundly humanist -LRB- not to mention gently political -RRB- meditation 3 +12038 517 intelligent , multi-layered and profoundly humanist -LRB- not to mention gently political -RRB- meditation 3 +12039 517 , multi-layered and profoundly humanist -LRB- not to mention gently political -RRB- meditation 3 +12040 517 multi-layered and profoundly humanist -LRB- not to mention gently political -RRB- meditation 3 +12041 517 multi-layered and profoundly 3 +12042 517 multi-layered and 2 +12043 517 multi-layered 3 +12044 517 profoundly 3 +12045 517 humanist -LRB- not to mention gently political -RRB- meditation 3 +12046 517 humanist 2 +12047 517 -LRB- not to mention gently political -RRB- meditation 2 +12048 517 -LRB- not to mention gently political -RRB- 2 +12049 517 not to mention gently political -RRB- 2 +12050 517 not to mention gently political 2 +12051 517 to mention gently political 2 +12052 517 mention gently political 2 +12053 517 gently political 3 +12054 517 on the values of knowledge , education , and the 2 +12055 517 the values of knowledge , education , and the 3 +12056 517 the values 2 +12057 517 of knowledge , education , and the 2 +12058 517 knowledge , education , and the 2 +12059 517 knowledge , education , and 3 +12060 517 knowledge , education , 2 +12061 517 knowledge , education 2 +12062 517 knowledge , 2 +12063 517 knowledge 2 +12064 517 education 2 +12065 517 affects of cultural and geographical displacement . 3 +12066 517 affects of cultural and geographical displacement 2 +12067 517 affects 2 +12068 517 of cultural and geographical displacement 2 +12069 517 cultural and geographical displacement 2 +12070 517 cultural and geographical 2 +12071 517 cultural and 2 +12072 517 cultural 3 +12073 517 geographical 2 +12074 517 displacement 1 +12075 518 I 'm not sure which is worse : the poor acting by the ensemble cast , the flat dialogue by Vincent R. Nebrida or the gutless direction by Laurice Guillen . 0 +12076 518 'm not sure which is worse : the poor acting by the ensemble cast , the flat dialogue by Vincent R. Nebrida or the gutless direction by Laurice Guillen . 0 +12077 518 'm not sure which is worse : the poor acting by the ensemble cast , the flat dialogue by Vincent R. Nebrida or the gutless direction by Laurice Guillen 0 +12078 518 'm not 3 +12079 518 sure which is worse : the poor acting by the ensemble cast , the flat dialogue by Vincent R. Nebrida or the gutless direction by Laurice Guillen 0 +12080 518 which is worse : the poor acting by the ensemble cast , the flat dialogue by Vincent R. Nebrida or the gutless direction by Laurice Guillen 0 +12081 518 is worse : the poor acting by the ensemble cast , the flat dialogue by Vincent R. Nebrida or the gutless direction by Laurice Guillen 0 +12082 518 worse : the poor acting by the ensemble cast , the flat dialogue by Vincent R. Nebrida or the gutless direction by Laurice Guillen 0 +12083 518 worse 1 +12084 518 : the poor acting by the ensemble cast , the flat dialogue by Vincent R. Nebrida or the gutless direction by Laurice Guillen 1 +12085 518 the poor acting by the ensemble cast , the flat dialogue by Vincent R. Nebrida or the gutless direction by Laurice Guillen 1 +12086 518 the poor acting 0 +12087 518 poor acting 0 +12088 518 by the ensemble cast , the flat dialogue by Vincent R. Nebrida or the gutless direction by Laurice Guillen 0 +12089 518 the ensemble cast , the flat dialogue by Vincent R. Nebrida or the gutless direction by Laurice Guillen 0 +12090 518 the ensemble cast , the flat dialogue by Vincent R. Nebrida or 1 +12091 518 the ensemble cast , the flat dialogue by Vincent R. Nebrida 2 +12092 518 the ensemble cast , 2 +12093 518 the ensemble cast 2 +12094 518 ensemble cast 3 +12095 518 the flat dialogue by Vincent R. Nebrida 1 +12096 518 the flat dialogue 1 +12097 518 flat dialogue 1 +12098 518 by Vincent R. Nebrida 2 +12099 518 Vincent R. Nebrida 2 +12100 518 R. Nebrida 2 +12101 518 R. 2 +12102 518 Nebrida 3 +12103 518 the gutless direction by Laurice Guillen 1 +12104 518 the gutless direction 1 +12105 518 gutless direction 1 +12106 518 gutless 1 +12107 518 by Laurice Guillen 3 +12108 518 Laurice Guillen 2 +12109 518 Laurice 2 +12110 518 Guillen 2 +12111 519 A sexy , peculiar and always entertaining costume drama set in Renaissance Spain , and the fact that it 's based on true events somehow makes it all the more compelling . 4 +12112 519 A sexy , peculiar and always entertaining costume drama set in Renaissance Spain , and the fact that it 's based on true events 4 +12113 519 A sexy , peculiar and always entertaining costume drama 4 +12114 519 sexy , peculiar and always entertaining costume drama 4 +12115 519 , peculiar and always entertaining costume drama 3 +12116 519 peculiar and always entertaining costume drama 3 +12117 519 peculiar and always entertaining 4 +12118 519 peculiar and 2 +12119 519 peculiar 2 +12120 519 always entertaining 4 +12121 519 costume drama 2 +12122 519 costume 2 +12123 519 set in Renaissance Spain , and the fact that it 's based on true events 2 +12124 519 set in Renaissance Spain , and the fact 2 +12125 519 in Renaissance Spain , and the fact 2 +12126 519 Renaissance Spain , and the fact 2 +12127 519 Renaissance Spain , and 2 +12128 519 Renaissance Spain , 2 +12129 519 Renaissance Spain 2 +12130 519 Renaissance 2 +12131 519 Spain 3 +12132 519 the fact 2 +12133 519 that it 's based on true events 2 +12134 519 it 's based on true events 2 +12135 519 's based on true events 2 +12136 519 based on true events 2 +12137 519 on true events 2 +12138 519 true events 3 +12139 519 events 2 +12140 519 somehow makes it all the more compelling . 3 +12141 519 somehow 2 +12142 519 makes it all the more compelling . 4 +12143 519 makes it all the more compelling 3 +12144 519 it all the more compelling 3 +12145 519 all the more compelling 3 +12146 519 more compelling 3 +12147 520 The Santa Clause 2 proves itself a more streamlined and thought out encounter than the original could ever have hoped to be . 3 +12148 520 The Santa Clause 2 2 +12149 520 Santa Clause 2 2 +12150 520 Santa 2 +12151 520 Clause 2 2 +12152 520 Clause 2 +12153 520 2 2 +12154 520 proves itself a more streamlined and thought out encounter than the original could ever have hoped to be . 4 +12155 520 proves itself a more streamlined and thought out encounter than the original could ever have hoped to be 3 +12156 520 proves itself a more streamlined and 2 +12157 520 proves itself a more streamlined 3 +12158 520 itself a more streamlined 2 +12159 520 a more streamlined 2 +12160 520 more streamlined 3 +12161 520 streamlined 2 +12162 520 thought out encounter than the original could ever have hoped to be 3 +12163 520 thought out 3 +12164 520 encounter than the original could ever have hoped to be 3 +12165 520 encounter 2 +12166 520 than the original could ever have hoped to be 2 +12167 520 the original could ever have hoped to be 3 +12168 520 could ever have hoped to be 3 +12169 520 could ever 2 +12170 520 have hoped to be 2 +12171 520 hoped to be 2 +12172 520 to be 2 +12173 521 Goldmember has none of the visual wit of the previous pictures , and it looks as though Jay Roach directed the film from the back of a taxicab . 0 +12174 521 Goldmember has none of the visual wit of the previous pictures , and it looks as though Jay Roach directed the film from the back of a taxicab 1 +12175 521 Goldmember has none of the visual wit of the previous pictures , and 1 +12176 521 Goldmember has none of the visual wit of the previous pictures , 1 +12177 521 Goldmember has none of the visual wit of the previous pictures 1 +12178 521 has none of the visual wit of the previous pictures 1 +12179 521 none of the visual wit of the previous pictures 1 +12180 521 of the visual wit of the previous pictures 2 +12181 521 the visual wit of the previous pictures 3 +12182 521 the visual wit 3 +12183 521 visual wit 2 +12184 521 of the previous pictures 2 +12185 521 the previous pictures 2 +12186 521 previous pictures 2 +12187 521 previous 2 +12188 521 it looks as though Jay Roach directed the film from the back of a taxicab 1 +12189 521 looks as though Jay Roach directed the film from the back of a taxicab 1 +12190 521 as though Jay Roach directed the film from the back of a taxicab 0 +12191 521 though Jay Roach directed the film from the back of a taxicab 1 +12192 521 Jay Roach directed the film from the back of a taxicab 2 +12193 521 Jay Roach 2 +12194 521 Jay 2 +12195 521 Roach 2 +12196 521 directed the film from the back of a taxicab 0 +12197 521 directed the film 2 +12198 521 from the back of a taxicab 2 +12199 521 the back of a taxicab 2 +12200 521 the back 2 +12201 521 of a taxicab 2 +12202 521 a taxicab 2 +12203 521 taxicab 2 +12204 522 It 's a sweet , laugh-a-minute crowd pleaser that lifts your spirits as well as the corners of your mouth . 3 +12205 522 's a sweet , laugh-a-minute crowd pleaser that lifts your spirits as well as the corners of your mouth . 4 +12206 522 's a sweet , laugh-a-minute crowd pleaser that lifts your spirits as well as the corners of your mouth 4 +12207 522 a sweet , laugh-a-minute crowd pleaser that lifts your spirits as well as the corners of your mouth 4 +12208 522 a sweet , laugh-a-minute crowd pleaser that lifts your spirits as well as 3 +12209 522 a sweet , laugh-a-minute crowd pleaser that lifts your spirits 4 +12210 522 a sweet , laugh-a-minute crowd pleaser 3 +12211 522 sweet , laugh-a-minute crowd pleaser 3 +12212 522 , laugh-a-minute crowd pleaser 3 +12213 522 laugh-a-minute crowd pleaser 4 +12214 522 laugh-a-minute 3 +12215 522 crowd pleaser 4 +12216 522 crowd 2 +12217 522 pleaser 3 +12218 522 that lifts your spirits 3 +12219 522 lifts your spirits 3 +12220 522 your spirits 2 +12221 522 spirits 2 +12222 522 the corners of your mouth 2 +12223 522 the corners 2 +12224 522 corners 2 +12225 522 of your mouth 2 +12226 522 your mouth 2 +12227 522 mouth 2 +12228 523 Highly recommended as an engrossing story about a horrifying historical event and the elements which contributed to it . 3 +12229 523 recommended as an engrossing story about a horrifying historical event and the elements which contributed to it . 3 +12230 523 recommended as an engrossing story about a horrifying historical event and the elements which contributed to it 3 +12231 523 as an engrossing story about a horrifying historical event and the elements which contributed to it 3 +12232 523 an engrossing story about a horrifying historical event and the elements which contributed to it 4 +12233 523 an engrossing story about a horrifying historical event and 3 +12234 523 an engrossing story about a horrifying historical event 3 +12235 523 an engrossing story 3 +12236 523 engrossing story 4 +12237 523 engrossing 4 +12238 523 about a horrifying historical event 1 +12239 523 a horrifying historical event 2 +12240 523 horrifying historical event 2 +12241 523 historical event 3 +12242 523 historical 2 +12243 523 event 2 +12244 523 the elements which contributed to it 2 +12245 523 which contributed to it 2 +12246 523 contributed to it 2 +12247 523 contributed 2 +12248 524 Goes on and on to the point of nausea . 1 +12249 524 Goes on and on to the point of nausea 1 +12250 524 on and on to the point of nausea 1 +12251 524 on and on 2 +12252 524 on and 2 +12253 524 to the point of nausea 0 +12254 524 the point of nausea 0 +12255 524 of nausea 2 +12256 524 nausea 1 +12257 525 -LRB- Raimi 's -RRB- matured quite a bit with Spider-Man , even though it 's one of the most plain white toast comic book films you 'll ever see . 2 +12258 525 -LRB- Raimi 's -RRB- matured quite a bit with Spider-Man , even though it 's one of the most plain white toast comic book films 2 +12259 525 Raimi 's -RRB- matured quite a bit with Spider-Man , even though it 's one of the most plain white toast comic book films 2 +12260 525 Raimi 's 2 +12261 525 Raimi 2 +12262 525 -RRB- matured quite a bit with Spider-Man , even though it 's one of the most plain white toast comic book films 3 +12263 525 matured quite a bit with Spider-Man , even though it 's one of the most plain white toast comic book films 1 +12264 525 matured quite a bit with Spider-Man , 3 +12265 525 matured quite a bit with Spider-Man 2 +12266 525 matured quite a bit 3 +12267 525 matured 2 +12268 525 quite a bit 2 +12269 525 with Spider-Man 2 +12270 525 even though it 's one of the most plain white toast comic book films 2 +12271 525 though it 's one of the most plain white toast comic book films 2 +12272 525 it 's one of the most plain white toast comic book films 2 +12273 525 's one of the most plain white toast comic book films 1 +12274 525 one of the most plain white toast comic book films 1 +12275 525 of the most plain white toast comic book films 2 +12276 525 the most plain white toast comic book films 1 +12277 525 most plain white toast comic book films 2 +12278 525 most plain 1 +12279 525 plain 2 +12280 525 white toast comic book films 2 +12281 525 toast comic book films 2 +12282 525 toast 2 +12283 525 comic book films 2 +12284 525 book films 2 +12285 525 you 'll ever see . 2 +12286 525 'll ever see . 2 +12287 525 'll ever see 2 +12288 525 'll ever 2 +12289 526 It 's about as convincing as any other Arnie musclefest , but has a little too much resonance with real world events and ultimately comes off as insultingly simplistic . 1 +12290 526 's about as convincing as any other Arnie musclefest , but has a little too much resonance with real world events and ultimately comes off as insultingly simplistic . 0 +12291 526 's about as convincing as any other Arnie musclefest , but has a little too much resonance with real world events and ultimately comes off as insultingly simplistic 1 +12292 526 's about as convincing as any other Arnie musclefest , but has a little too much resonance with real world events and 1 +12293 526 's about as convincing as any other Arnie musclefest , but has a little too much resonance with real world events 1 +12294 526 's about as convincing as any other Arnie musclefest , but 2 +12295 526 's about as convincing as any other Arnie musclefest , 1 +12296 526 's about as convincing as any other Arnie musclefest 1 +12297 526 's about as convincing 2 +12298 526 about as convincing 2 +12299 526 as convincing 2 +12300 526 as any other Arnie musclefest 1 +12301 526 any other Arnie musclefest 2 +12302 526 other Arnie musclefest 2 +12303 526 Arnie musclefest 2 +12304 526 Arnie 2 +12305 526 musclefest 2 +12306 526 has a little too much resonance with real world events 2 +12307 526 a little too much resonance with real world events 1 +12308 526 a little too much resonance 2 +12309 526 little too much resonance 2 +12310 526 too much resonance 1 +12311 526 resonance 3 +12312 526 with real world events 3 +12313 526 real world events 2 +12314 526 world events 2 +12315 526 ultimately comes off as insultingly simplistic 0 +12316 526 comes off as insultingly simplistic 1 +12317 526 off as insultingly simplistic 2 +12318 526 insultingly simplistic 1 +12319 526 insultingly 1 +12320 527 An unbelievably stupid film , though occasionally fun enough to make you forget its absurdity . 1 +12321 527 An unbelievably stupid film , though occasionally fun enough to make you 1 +12322 527 An unbelievably stupid film 0 +12323 527 unbelievably stupid film 2 +12324 527 unbelievably stupid 0 +12325 527 unbelievably 2 +12326 527 , though occasionally fun enough to make you 2 +12327 527 though occasionally fun enough to make you 3 +12328 527 occasionally fun enough to make you 2 +12329 527 occasionally fun enough 3 +12330 527 occasionally fun 3 +12331 527 to make you 2 +12332 527 make you 2 +12333 527 forget its absurdity . 1 +12334 527 forget its absurdity 1 +12335 527 forget 1 +12336 527 its absurdity 1 +12337 527 absurdity 1 +12338 528 In between the icy stunts , the actors spout hilarious dialogue about following your dream and ` just letting the mountain tell you what to do . ' 3 +12339 528 In between the icy stunts 2 +12340 528 between the icy stunts 2 +12341 528 the icy stunts 2 +12342 528 icy stunts 2 +12343 528 icy 2 +12344 528 stunts 2 +12345 528 , the actors spout hilarious dialogue about following your dream and ` just letting the mountain tell you what to do . ' 2 +12346 528 the actors spout hilarious dialogue about following your dream and ` just letting the mountain tell you what to do . ' 2 +12347 528 spout hilarious dialogue about following your dream and ` just letting the mountain tell you what to do . ' 2 +12348 528 spout hilarious dialogue about following your dream and ` just letting the mountain tell you what to do . 2 +12349 528 spout hilarious dialogue about following your dream and ` just letting the mountain tell you what to do 3 +12350 528 spout hilarious dialogue 3 +12351 528 spout 2 +12352 528 hilarious dialogue 4 +12353 528 about following your dream and ` just letting the mountain tell you what to do 2 +12354 528 following your dream and ` just letting the mountain tell you what to do 2 +12355 528 following your dream and 2 +12356 528 following your dream 3 +12357 528 following 2 +12358 528 your dream 3 +12359 528 ` just letting the mountain tell you what to do 3 +12360 528 just letting the mountain tell you what to do 2 +12361 528 letting the mountain tell you what to do 2 +12362 528 letting the mountain tell 2 +12363 528 the mountain tell 2 +12364 528 the mountain 2 +12365 528 mountain 2 +12366 528 you what to do 2 +12367 528 what to do 2 +12368 528 to do 2 +12369 529 A modestly surprising movie . 3 +12370 529 A modestly surprising movie 3 +12371 529 modestly surprising movie 3 +12372 529 modestly surprising 3 +12373 529 modestly 3 +12374 530 ... a powerful sequel and one of the best films of the year . 4 +12375 530 a powerful sequel and one of the best films of the year . 4 +12376 530 a powerful sequel and one of the best films of the year 4 +12377 530 a powerful sequel and one 3 +12378 530 a powerful sequel and 3 +12379 530 a powerful sequel 4 +12380 530 powerful sequel 4 +12381 530 of the best films of the year 4 +12382 530 the best films of the year 4 +12383 530 the best films 3 +12384 530 best films 4 +12385 531 Combines improbable melodrama -LRB- gored bullfighters , comatose ballerinas -RRB- with subtly kinky bedside vigils and sensational denouements , and yet at the end , we are undeniably touched . 3 +12386 531 Combines improbable melodrama -LRB- gored bullfighters , comatose ballerinas -RRB- with subtly kinky bedside vigils and sensational denouements , and yet at the end 1 +12387 531 improbable melodrama -LRB- gored bullfighters , comatose ballerinas -RRB- with subtly kinky bedside vigils and sensational denouements , and yet at the end 3 +12388 531 melodrama -LRB- gored bullfighters , comatose ballerinas -RRB- with subtly kinky bedside vigils and sensational denouements , and yet at the end 2 +12389 531 melodrama -LRB- gored bullfighters , comatose ballerinas -RRB- with subtly kinky bedside vigils and sensational denouements 3 +12390 531 melodrama -LRB- gored bullfighters , comatose ballerinas -RRB- 2 +12391 531 -LRB- gored bullfighters , comatose ballerinas -RRB- 2 +12392 531 gored bullfighters , comatose ballerinas -RRB- 2 +12393 531 gored bullfighters , comatose ballerinas 2 +12394 531 gored bullfighters , 2 +12395 531 gored bullfighters 2 +12396 531 gored 2 +12397 531 bullfighters 2 +12398 531 comatose ballerinas 1 +12399 531 comatose 1 +12400 531 ballerinas 2 +12401 531 with subtly kinky bedside vigils and sensational denouements 2 +12402 531 subtly kinky bedside vigils and sensational denouements 3 +12403 531 subtly kinky bedside vigils and 3 +12404 531 subtly kinky bedside vigils 2 +12405 531 kinky bedside vigils 2 +12406 531 kinky 2 +12407 531 bedside vigils 2 +12408 531 bedside 2 +12409 531 vigils 2 +12410 531 sensational denouements 3 +12411 531 denouements 2 +12412 531 , and yet at the end 3 +12413 531 and yet at the end 2 +12414 531 yet at the end 2 +12415 531 at the end 2 +12416 531 , we are undeniably touched . 2 +12417 531 we are undeniably touched . 3 +12418 531 are undeniably touched . 3 +12419 531 are undeniably touched 3 +12420 531 undeniably touched 3 +12421 531 undeniably 2 +12422 531 touched 3 +12423 532 This is one of Mr. Chabrol 's subtlest works , but also one of his most uncanny . 3 +12424 532 is one of Mr. Chabrol 's subtlest works , but also one of his most uncanny . 4 +12425 532 is one of Mr. Chabrol 's subtlest works , but also one of his most uncanny 3 +12426 532 one of Mr. Chabrol 's subtlest works , but also one of his most uncanny 3 +12427 532 one of Mr. Chabrol 's subtlest works , but also 2 +12428 532 one of Mr. Chabrol 's subtlest works , 3 +12429 532 one of Mr. Chabrol 's subtlest works 3 +12430 532 of Mr. Chabrol 's subtlest works 3 +12431 532 Mr. Chabrol 's subtlest works 3 +12432 532 Mr. Chabrol 's 2 +12433 532 subtlest works 3 +12434 532 subtlest 2 +12435 532 one of his most uncanny 2 +12436 532 of his most uncanny 2 +12437 532 his most uncanny 2 +12438 532 most uncanny 3 +12439 532 uncanny 3 +12440 533 This one is strictly a lightweight escapist film . 2 +12441 533 is strictly a lightweight escapist film . 3 +12442 533 is strictly a lightweight escapist film 1 +12443 533 is strictly 2 +12444 533 a lightweight escapist film 2 +12445 533 lightweight escapist film 2 +12446 533 lightweight 2 +12447 533 escapist film 3 +12448 533 escapist 2 +12449 534 It 's actually too sincere -- the crime movie equivalent of a chick flick . 2 +12450 534 It 's actually too sincere -- the crime movie equivalent of a chick flick 2 +12451 534 It 's actually too sincere -- 1 +12452 534 It 's actually too sincere 1 +12453 534 's actually too sincere 2 +12454 534 's actually 2 +12455 534 too sincere 2 +12456 534 the crime movie equivalent of a chick flick 2 +12457 534 the crime movie equivalent of a chick 2 +12458 534 the crime movie equivalent 1 +12459 534 crime movie equivalent 3 +12460 534 crime 1 +12461 534 of a chick 2 +12462 534 a chick 2 +12463 534 chick 2 +12464 535 If the title is a Jeopardy question , then the answer might be `` How does Steven Seagal come across these days ? '' 1 +12465 535 If the title is a Jeopardy question 2 +12466 535 the title is a Jeopardy question 2 +12467 535 is a Jeopardy question 2 +12468 535 a Jeopardy question 2 +12469 535 Jeopardy question 2 +12470 535 Jeopardy 2 +12471 535 question 2 +12472 535 , then the answer might be `` How does Steven Seagal come across these days ? '' 2 +12473 535 then the answer might be `` How does Steven Seagal come across these days ? '' 2 +12474 535 then the answer 2 +12475 535 the answer 2 +12476 535 answer 2 +12477 535 might be `` How does Steven Seagal come across these days ? '' 2 +12478 535 might be `` How does Steven Seagal come across these days ? 2 +12479 535 be `` How does Steven Seagal come across these days ? 2 +12480 535 be `` 2 +12481 535 How does Steven Seagal come across these days ? 2 +12482 535 does Steven Seagal come across these days ? 1 +12483 535 does Steven Seagal come across these days 2 +12484 535 does Steven Seagal 2 +12485 535 Steven Seagal 3 +12486 535 Seagal 1 +12487 535 come across these days 2 +12488 535 across these days 2 +12489 535 these days 2 +12490 535 days 2 +12491 536 Unambitious writing emerges in the movie , using a plot that could have come from an animated-movie screenwriting textbook . 1 +12492 536 Unambitious writing 1 +12493 536 Unambitious 1 +12494 536 emerges in the movie , using a plot that could have come from an animated-movie screenwriting textbook . 2 +12495 536 emerges in the movie , using a plot that could have come from an animated-movie screenwriting textbook 1 +12496 536 emerges in the movie , 2 +12497 536 emerges in the movie 2 +12498 536 emerges 2 +12499 536 using a plot that could have come from an animated-movie screenwriting textbook 1 +12500 536 a plot that could have come from an animated-movie screenwriting textbook 2 +12501 536 a plot 2 +12502 536 that could have come from an animated-movie screenwriting textbook 2 +12503 536 could have come from an animated-movie screenwriting textbook 2 +12504 536 have come from an animated-movie screenwriting textbook 2 +12505 536 come from an animated-movie screenwriting textbook 1 +12506 536 from an animated-movie screenwriting textbook 2 +12507 536 an animated-movie screenwriting textbook 2 +12508 536 animated-movie screenwriting textbook 2 +12509 536 animated-movie 2 +12510 536 screenwriting textbook 2 +12511 536 screenwriting 2 +12512 536 textbook 2 +12513 537 Not that any of us should be complaining when a film clocks in around 90 minutes these days , but the plotting here leaves a lot to be desired . 1 +12514 537 Not that any of us should be complaining when a film clocks in around 90 minutes these days , but the plotting here leaves a lot to be desired 1 +12515 537 Not that any of us should be complaining when a film clocks in around 90 minutes these days , but 2 +12516 537 Not that any of us should be complaining when a film clocks in around 90 minutes these days , 2 +12517 537 Not that any of us should be complaining when a film clocks in around 90 minutes these days 2 +12518 537 Not that any of us 1 +12519 537 Not that any 2 +12520 537 that any 2 +12521 537 should be complaining when a film clocks in around 90 minutes these days 1 +12522 537 be complaining when a film clocks in around 90 minutes these days 1 +12523 537 complaining when a film clocks in around 90 minutes these days 3 +12524 537 complaining 1 +12525 537 when a film clocks in around 90 minutes these days 2 +12526 537 a film clocks in around 90 minutes these days 2 +12527 537 clocks in around 90 minutes these days 2 +12528 537 clocks in around 90 minutes 2 +12529 537 clocks 2 +12530 537 in around 90 minutes 2 +12531 537 around 90 minutes 2 +12532 537 around 90 2 +12533 537 90 2 +12534 537 the plotting here leaves a lot to be desired 1 +12535 537 the plotting 2 +12536 537 here leaves a lot to be desired 1 +12537 537 leaves a lot to be desired 1 +12538 537 a lot to be desired 2 +12539 537 lot to be desired 1 +12540 537 to be desired 2 +12541 537 be desired 2 +12542 537 desired 2 +12543 538 There is a freedom to watching stunts that are this crude , this fast-paced and this insane . 3 +12544 538 is a freedom to watching stunts that are this crude , this fast-paced and this insane . 2 +12545 538 is a freedom to watching stunts that are this crude , this fast-paced and this insane 2 +12546 538 a freedom to watching stunts that are this crude , this fast-paced and this insane 2 +12547 538 a freedom 3 +12548 538 freedom 3 +12549 538 to watching stunts that are this crude , this fast-paced and this insane 2 +12550 538 watching stunts that are this crude , this fast-paced and this insane 2 +12551 538 stunts that are this crude , this fast-paced and this insane 2 +12552 538 that are this crude , this fast-paced and this insane 1 +12553 538 are this crude , this fast-paced and this insane 2 +12554 538 this crude , this fast-paced and this insane 1 +12555 538 this crude , this fast-paced and 2 +12556 538 this crude , this fast-paced 2 +12557 538 this crude , 0 +12558 538 this crude 0 +12559 538 this fast-paced 3 +12560 538 fast-paced 3 +12561 538 this insane 1 +12562 539 ` This movie sucks . ' 0 +12563 539 This movie sucks . ' 1 +12564 539 sucks . ' 0 +12565 539 sucks . 0 +12566 539 sucks 0 +12567 540 Dignified CEO 's meet at a rustic retreat and pee against a tree . 1 +12568 540 Dignified CEO 3 +12569 540 Dignified 3 +12570 540 CEO 2 +12571 540 's meet at a rustic retreat and pee against a tree . 2 +12572 540 's meet at a rustic retreat and pee against a tree 2 +12573 540 meet at a rustic retreat and pee against a tree 2 +12574 540 meet 2 +12575 540 at a rustic retreat and pee against a tree 2 +12576 540 a rustic retreat and pee against a tree 1 +12577 540 a rustic retreat and pee 2 +12578 540 rustic retreat and pee 2 +12579 540 rustic 2 +12580 540 retreat and pee 2 +12581 540 retreat and 2 +12582 540 retreat 2 +12583 540 pee 2 +12584 540 against a tree 3 +12585 540 a tree 3 +12586 540 tree 2 +12587 541 A sugar-coated Rocky whose valuable messages are forgotten 10 minutes after the last trombone honks . 1 +12588 541 A sugar-coated Rocky whose valuable messages are forgotten 10 minutes after the last trombone 1 +12589 541 A sugar-coated Rocky 1 +12590 541 sugar-coated Rocky 1 +12591 541 sugar-coated 2 +12592 541 Rocky 2 +12593 541 whose valuable messages are forgotten 10 minutes after the last trombone 1 +12594 541 valuable messages are forgotten 10 minutes after the last trombone 1 +12595 541 valuable messages 3 +12596 541 valuable 3 +12597 541 messages 2 +12598 541 are forgotten 10 minutes after the last trombone 2 +12599 541 forgotten 10 minutes after the last trombone 1 +12600 541 forgotten 10 minutes 1 +12601 541 forgotten 2 +12602 541 after the last trombone 2 +12603 541 the last trombone 2 +12604 541 last trombone 2 +12605 541 trombone 2 +12606 541 honks . 2 +12607 541 honks 2 +12608 542 The movie is too amateurishly square to make the most of its own ironic implications . 1 +12609 542 is too amateurishly square to make the most of its own ironic implications . 2 +12610 542 is too amateurishly square to make the most of its own ironic implications 1 +12611 542 is too amateurishly square 1 +12612 542 too amateurishly square 1 +12613 542 amateurishly square 2 +12614 542 amateurishly 1 +12615 542 square 2 +12616 542 to make the most of its own ironic implications 2 +12617 542 make the most of its own ironic implications 3 +12618 542 the most of its own ironic implications 2 +12619 542 the most 2 +12620 542 of its own ironic implications 2 +12621 542 its own ironic implications 1 +12622 542 own ironic implications 2 +12623 542 ironic implications 2 +12624 542 ironic 2 +12625 542 implications 2 +12626 543 What sets this romantic comedy apart from most Hollywood romantic comedies is its low-key way of tackling what seems like done-to-death material . 3 +12627 543 What sets this romantic comedy apart from most Hollywood romantic comedies 2 +12628 543 sets this romantic comedy apart from most Hollywood romantic comedies 3 +12629 543 sets this romantic comedy apart 3 +12630 543 sets this romantic comedy 2 +12631 543 this romantic comedy 3 +12632 543 from most Hollywood romantic comedies 2 +12633 543 most Hollywood romantic comedies 1 +12634 543 Hollywood romantic comedies 2 +12635 543 romantic comedies 2 +12636 543 is its low-key way of tackling what seems like done-to-death material . 2 +12637 543 is its low-key way of tackling what seems like done-to-death material 1 +12638 543 its low-key way of tackling what seems like done-to-death material 2 +12639 543 its low-key way 2 +12640 543 low-key way 2 +12641 543 low-key 2 +12642 543 of tackling what seems like done-to-death material 2 +12643 543 tackling what seems like done-to-death material 1 +12644 543 tackling 2 +12645 543 what seems like done-to-death material 2 +12646 543 seems like done-to-death material 2 +12647 543 like done-to-death material 1 +12648 543 done-to-death material 0 +12649 543 done-to-death 1 +12650 544 The film 's constant mood of melancholy and its unhurried narrative are masterfully controlled . 4 +12651 544 The film 's constant mood of melancholy and its unhurried narrative 2 +12652 544 The film 's constant mood 2 +12653 544 constant mood 2 +12654 544 of melancholy and its unhurried narrative 2 +12655 544 melancholy and its unhurried narrative 2 +12656 544 melancholy and 2 +12657 544 melancholy 1 +12658 544 its unhurried narrative 3 +12659 544 unhurried narrative 3 +12660 544 unhurried 2 +12661 544 are masterfully controlled . 4 +12662 544 are masterfully controlled 4 +12663 544 masterfully controlled 4 +12664 544 masterfully 4 +12665 544 controlled 2 +12666 545 Barry Sonnenfeld owes Frank the Pug big time 2 +12667 545 Barry Sonnenfeld 2 +12668 545 Barry 2 +12669 545 Sonnenfeld 2 +12670 545 owes Frank the Pug big time 2 +12671 545 owes Frank 2 +12672 545 owes 2 +12673 545 Frank 2 +12674 545 the Pug big time 3 +12675 545 Pug big time 2 +12676 545 Pug 2 +12677 545 big time 3 +12678 546 One gets the impression the creators of Do n't Ask Do n't Tell laughed a hell of a lot at their own jokes . 2 +12679 546 gets the impression the creators of Do n't Ask Do n't Tell laughed a hell of a lot at their own jokes . 1 +12680 546 gets the impression the creators of Do n't Ask Do n't Tell laughed a hell of a lot at their own jokes 2 +12681 546 the impression the creators of Do n't Ask Do n't Tell laughed a hell of a lot at their own jokes 1 +12682 546 the creators of Do n't Ask Do n't Tell laughed a hell of a lot at their own jokes 2 +12683 546 the creators of Do n't Ask 1 +12684 546 the creators 2 +12685 546 creators 2 +12686 546 of Do n't Ask 2 +12687 546 Do n't Ask 3 +12688 546 Do n't Tell laughed a hell of a lot at their own jokes 2 +12689 546 Tell laughed a hell of a lot at their own jokes 2 +12690 546 laughed a hell of a lot at their own jokes 2 +12691 546 laughed a hell of a lot 3 +12692 546 laughed 3 +12693 546 a hell of a lot 2 +12694 546 a hell 1 +12695 546 of a lot 2 +12696 546 at their own jokes 2 +12697 546 their own jokes 2 +12698 546 own jokes 2 +12699 547 Schrader aims to present an unflinching look at one man 's downfall , brought about by his lack of self-awareness . 1 +12700 547 Schrader 2 +12701 547 aims to present an unflinching look at one man 's downfall , brought about by his lack of self-awareness . 2 +12702 547 aims to present an unflinching look at one man 's downfall , brought about by his lack of self-awareness 3 +12703 547 to present an unflinching look at one man 's downfall , brought about by his lack of self-awareness 3 +12704 547 present an unflinching look at one man 's downfall , brought about by his lack of self-awareness 3 +12705 547 present an unflinching look 3 +12706 547 an unflinching look 3 +12707 547 unflinching look 3 +12708 547 unflinching 2 +12709 547 at one man 's downfall , brought about by his lack of self-awareness 1 +12710 547 one man 's downfall , brought about by his lack of self-awareness 1 +12711 547 one man 's downfall , 2 +12712 547 one man 's downfall 2 +12713 547 downfall 1 +12714 547 brought about by his lack of self-awareness 2 +12715 547 brought 2 +12716 547 about by his lack of self-awareness 2 +12717 547 by his lack of self-awareness 1 +12718 547 his lack of self-awareness 1 +12719 547 his lack 1 +12720 547 of self-awareness 2 +12721 547 self-awareness 2 +12722 548 After that it becomes long and tedious like a classroom play in a college history course . 0 +12723 548 After that 2 +12724 548 it becomes long and tedious like a classroom play in a college history course . 0 +12725 548 becomes long and tedious like a classroom play in a college history course . 1 +12726 548 becomes long and tedious like a classroom play in a college history course 0 +12727 548 becomes long and tedious 1 +12728 548 long and tedious 0 +12729 548 long and 2 +12730 548 tedious 1 +12731 548 like a classroom play in a college history course 1 +12732 548 a classroom play in a college history course 2 +12733 548 a classroom play 2 +12734 548 classroom play 2 +12735 548 classroom 2 +12736 548 in a college history course 2 +12737 548 a college history course 2 +12738 548 college history course 2 +12739 548 history course 2 +12740 549 Blue Crush follows the formula , but throws in too many conflicts to keep the story compelling . 1 +12741 549 Blue Crush 2 +12742 549 Blue 2 +12743 549 Crush 2 +12744 549 follows the formula , but throws in too many conflicts to keep the story compelling . 1 +12745 549 follows the formula , but throws in too many conflicts to keep the story compelling 1 +12746 549 follows the formula , but 2 +12747 549 follows the formula , 1 +12748 549 follows the formula 2 +12749 549 follows 2 +12750 549 the formula 2 +12751 549 throws in too many conflicts to keep the story compelling 1 +12752 549 throws in too many conflicts 2 +12753 549 throws 2 +12754 549 in too many conflicts 1 +12755 549 too many conflicts 1 +12756 549 too many 1 +12757 549 conflicts 1 +12758 549 to keep the story compelling 2 +12759 549 keep the story compelling 3 +12760 549 the story compelling 3 +12761 550 A small gem of a movie that defies classification and is as thought-provoking as it is funny , scary and sad . 3 +12762 550 A small gem of a movie that defies classification and is as thought-provoking as it 3 +12763 550 A small gem 2 +12764 550 small gem 3 +12765 550 of a movie that defies classification and is as thought-provoking as it 3 +12766 550 a movie that defies classification and is as thought-provoking as it 4 +12767 550 that defies classification and is as thought-provoking as it 3 +12768 550 defies classification and is as thought-provoking as it 2 +12769 550 defies classification and 2 +12770 550 defies classification 3 +12771 550 defies 2 +12772 550 classification 2 +12773 550 is as thought-provoking as it 3 +12774 550 is as thought-provoking 3 +12775 550 as thought-provoking 3 +12776 550 thought-provoking 3 +12777 550 as it 2 +12778 550 is funny , scary and sad . 3 +12779 550 is funny , scary and sad 2 +12780 550 funny , scary and sad 2 +12781 550 , scary and sad 2 +12782 550 scary and sad 1 +12783 550 scary and 2 +12784 551 Somewhere in the middle , the film compels , as Demme experiments he harvests a few movie moment gems , but the field of roughage dominates . 2 +12785 551 Somewhere in the middle , the film compels , as Demme experiments he harvests a few movie moment gems , but the field of roughage dominates 2 +12786 551 Somewhere in the middle , the film compels , as Demme experiments he harvests a few movie moment gems , but 2 +12787 551 Somewhere in the middle , the film compels , as Demme experiments he harvests a few movie moment gems , 3 +12788 551 Somewhere in the middle , the film compels , as Demme experiments he harvests a few movie moment gems 3 +12789 551 Somewhere in the middle , the film compels , as Demme experiments 3 +12790 551 Somewhere 2 +12791 551 in the middle , the film compels , as Demme experiments 3 +12792 551 in the middle , the film compels , 3 +12793 551 the middle , the film compels , 3 +12794 551 the middle , the film compels 3 +12795 551 the middle , 2 +12796 551 the film compels 3 +12797 551 film compels 3 +12798 551 compels 3 +12799 551 as Demme experiments 2 +12800 551 Demme experiments 2 +12801 551 Demme 2 +12802 551 experiments 2 +12803 551 he harvests a few movie moment gems 3 +12804 551 harvests a few movie moment gems 3 +12805 551 harvests 2 +12806 551 a few movie moment gems 3 +12807 551 few movie moment gems 2 +12808 551 movie moment gems 4 +12809 551 moment gems 3 +12810 551 gems 2 +12811 551 the field of roughage dominates 2 +12812 551 the field of roughage 2 +12813 551 the field 2 +12814 551 field 2 +12815 551 of roughage 2 +12816 551 roughage 1 +12817 551 dominates 3 +12818 552 While the story is better-focused than the incomprehensible Anne Rice novel it 's based upon , Queen Of The Damned is a pointless , meandering celebration of the goth-vampire , tortured woe-is-me lifestyle . 0 +12819 552 While the story is better-focused than the incomprehensible Anne Rice novel it 's based upon 2 +12820 552 the story is better-focused than the incomprehensible Anne Rice novel it 's based upon 3 +12821 552 is better-focused than the incomprehensible Anne Rice novel it 's based upon 3 +12822 552 is better-focused than the incomprehensible Anne Rice novel 2 +12823 552 better-focused than the incomprehensible Anne Rice novel 2 +12824 552 better-focused 3 +12825 552 than the incomprehensible Anne Rice novel 2 +12826 552 the incomprehensible Anne Rice novel 1 +12827 552 incomprehensible Anne Rice novel 2 +12828 552 Anne Rice novel 2 +12829 552 Anne 2 +12830 552 Rice novel 2 +12831 552 Rice 2 +12832 552 novel 3 +12833 552 it 's based upon 2 +12834 552 's based upon 2 +12835 552 based upon 2 +12836 552 , Queen Of The Damned is a pointless , meandering celebration of the goth-vampire , tortured woe-is-me lifestyle . 0 +12837 552 Queen Of The Damned is a pointless , meandering celebration of the goth-vampire , tortured woe-is-me lifestyle . 1 +12838 552 Queen 2 +12839 552 Of The Damned is a pointless , meandering celebration of the goth-vampire , tortured woe-is-me lifestyle . 0 +12840 552 Of The Damned 2 +12841 552 The Damned 2 +12842 552 is a pointless , meandering celebration of the goth-vampire , tortured woe-is-me lifestyle . 2 +12843 552 is a pointless , meandering celebration of the goth-vampire , tortured woe-is-me lifestyle 1 +12844 552 a pointless , meandering celebration of the goth-vampire , tortured woe-is-me lifestyle 0 +12845 552 a pointless , meandering celebration 1 +12846 552 pointless , meandering celebration 2 +12847 552 pointless , meandering 0 +12848 552 , meandering 1 +12849 552 meandering 1 +12850 552 of the goth-vampire , tortured woe-is-me lifestyle 1 +12851 552 the goth-vampire , tortured woe-is-me lifestyle 2 +12852 552 goth-vampire , tortured woe-is-me lifestyle 1 +12853 552 goth-vampire , tortured 2 +12854 552 goth-vampire 2 +12855 552 , tortured 3 +12856 552 tortured 0 +12857 552 woe-is-me lifestyle 2 +12858 552 woe-is-me 1 +12859 552 lifestyle 2 +12860 553 The color sense of Stuart Little 2 is its most immediate and most obvious pleasure , but it would count for very little if the movie were n't as beautifully shaped and as delicately calibrated in tone as it is . 3 +12861 553 The color sense of Stuart Little 2 is its most immediate and most obvious pleasure , but it would count for very little if the movie were n't as beautifully shaped and as delicately calibrated in tone as it is 4 +12862 553 The color sense of Stuart Little 2 is its most immediate and most obvious pleasure , but 2 +12863 553 The color sense of Stuart Little 2 is its most immediate and most obvious pleasure , 3 +12864 553 The color sense of Stuart Little 2 is its most immediate and most obvious pleasure 3 +12865 553 The color sense of Stuart Little 2 3 +12866 553 The color sense 2 +12867 553 color sense 2 +12868 553 color 2 +12869 553 of Stuart Little 2 2 +12870 553 Stuart Little 2 2 +12871 553 Stuart 2 +12872 553 Little 2 2 +12873 553 is its most immediate and most obvious pleasure 3 +12874 553 its most immediate and most obvious pleasure 3 +12875 553 most immediate and most obvious pleasure 3 +12876 553 most immediate and most obvious 1 +12877 553 most immediate and 2 +12878 553 most immediate 2 +12879 553 immediate 2 +12880 553 most obvious 2 +12881 553 it would count for very little if the movie were n't as beautifully shaped and as delicately calibrated in tone as it is 4 +12882 553 would count for very little if the movie were n't as beautifully shaped and as delicately calibrated in tone as it is 3 +12883 553 count for very little if the movie were n't as beautifully shaped and as delicately calibrated in tone as it is 3 +12884 553 count for very little 2 +12885 553 count 2 +12886 553 for very little 2 +12887 553 if the movie were n't as beautifully shaped and as delicately calibrated in tone as it is 3 +12888 553 the movie were n't as beautifully shaped and as delicately calibrated in tone as it is 2 +12889 553 were n't as beautifully shaped and as delicately calibrated in tone as it is 3 +12890 553 were n't as beautifully shaped and as delicately calibrated in tone 1 +12891 553 as beautifully shaped and as delicately calibrated in tone 4 +12892 553 as beautifully shaped and 3 +12893 553 as beautifully shaped 3 +12894 553 beautifully shaped 3 +12895 553 shaped 2 +12896 553 as delicately calibrated in tone 3 +12897 553 delicately calibrated in tone 3 +12898 553 delicately 2 +12899 553 calibrated in tone 2 +12900 553 calibrated 2 +12901 553 in tone 2 +12902 553 as it is 2 +12903 554 Parts 2 +12904 554 lifted 2 +12905 554 Terry Gilliam 's subconscious , 2 +12906 554 Terry Gilliam 's subconscious 2 +12907 554 Terry Gilliam 's 2 +12908 554 Terry 2 +12909 554 Gilliam 's 2 +12910 554 Gilliam 2 +12911 554 subconscious 3 +12912 554 pressed 2 +12913 554 through Kafka 's meat grinder and 2 +12914 554 through Kafka 's meat grinder 1 +12915 554 Kafka 's meat grinder 2 +12916 554 Kafka 's 2 +12917 554 Kafka 3 +12918 554 meat grinder 2 +12919 554 grinder 2 +12920 554 casings 2 +12921 555 In visual fertility Treasure Planet rivals the top Japanese animations of recent vintage . 3 +12922 555 In visual fertility 2 +12923 555 visual fertility 2 +12924 555 fertility 2 +12925 555 Treasure Planet rivals the top Japanese animations of recent vintage . 4 +12926 555 Treasure Planet 2 +12927 555 Treasure 3 +12928 555 Planet 2 +12929 555 rivals the top Japanese animations of recent vintage . 4 +12930 555 rivals the top Japanese animations of recent vintage 3 +12931 555 rivals 2 +12932 555 the top Japanese animations of recent vintage 3 +12933 555 the top Japanese animations 3 +12934 555 top Japanese animations 3 +12935 555 top 2 +12936 555 Japanese animations 2 +12937 555 Japanese 2 +12938 555 animations 2 +12939 555 of recent vintage 2 +12940 555 recent vintage 2 +12941 555 vintage 2 +12942 556 This toothless Dog , already on cable , loses all bite on the big screen . 1 +12943 556 This toothless Dog , already on cable , 1 +12944 556 This toothless Dog , already on cable 2 +12945 556 This toothless Dog , 2 +12946 556 This toothless Dog 2 +12947 556 toothless Dog 1 +12948 556 already on cable 2 +12949 556 on cable 1 +12950 556 loses all bite on the big screen . 1 +12951 556 loses all bite on the big screen 1 +12952 556 loses all 1 +12953 556 bite on the big screen 2 +12954 556 bite 1 +12955 557 Make Chan 's action sequences boring . 1 +12956 557 Make Chan 's action 2 +12957 557 Make Chan 's 2 +12958 557 Chan 's 2 +12959 557 Chan 2 +12960 557 sequences boring . 1 +12961 557 sequences boring 1 +12962 557 boring 0 +12963 558 It all comes down to whether you can tolerate Leon Barlow . 1 +12964 558 all comes down to whether you can tolerate Leon Barlow . 1 +12965 558 comes down to whether you can tolerate Leon Barlow . 1 +12966 558 comes down to whether you can tolerate Leon Barlow 1 +12967 558 down to whether you can tolerate Leon Barlow 1 +12968 558 to whether you can tolerate Leon Barlow 2 +12969 558 whether you can tolerate Leon Barlow 1 +12970 558 whether 2 +12971 558 you can tolerate Leon Barlow 2 +12972 558 can tolerate Leon Barlow 1 +12973 558 tolerate Leon Barlow 1 +12974 558 tolerate 2 +12975 558 Leon Barlow 2 +12976 558 Leon 3 +12977 558 Barlow 1 +12978 559 The Wild Thornberrys Movie has all the sibling rivalry and general family chaos to which anyone can relate . 3 +12979 559 The Wild Thornberrys Movie 3 +12980 559 Wild Thornberrys Movie 2 +12981 559 Thornberrys Movie 3 +12982 559 Thornberrys 2 +12983 559 has all the sibling rivalry and general family chaos to which anyone can relate . 3 +12984 559 has all the sibling rivalry and general family chaos to which anyone can relate 3 +12985 559 all the sibling rivalry and general family chaos to which anyone can relate 2 +12986 559 all the sibling rivalry and 1 +12987 559 all the sibling rivalry 2 +12988 559 the sibling rivalry 2 +12989 559 sibling rivalry 2 +12990 559 sibling 2 +12991 559 rivalry 2 +12992 559 general family chaos to which anyone can relate 3 +12993 559 general family chaos 2 +12994 559 family chaos 2 +12995 559 chaos 1 +12996 559 to which anyone can relate 4 +12997 559 to which 2 +12998 559 anyone can relate 3 +12999 559 can relate 3 +13000 559 relate 2 +13001 560 Peralta captures , in luminous interviews and amazingly evocative film from three decades ago , the essence of the Dogtown experience . 4 +13002 560 Peralta 2 +13003 560 captures , in luminous interviews and amazingly evocative film from three decades ago , the essence of the Dogtown experience . 3 +13004 560 captures , in luminous interviews and amazingly evocative film from three decades ago , the essence of the Dogtown experience 4 +13005 560 captures , in luminous interviews and amazingly evocative film from three decades ago , 3 +13006 560 captures , in luminous interviews and amazingly evocative film from three decades ago 3 +13007 560 captures , 2 +13008 560 in luminous interviews and amazingly evocative film from three decades ago 4 +13009 560 luminous interviews and amazingly evocative film from three decades ago 4 +13010 560 luminous interviews and 2 +13011 560 luminous interviews 4 +13012 560 luminous 4 +13013 560 interviews 2 +13014 560 amazingly evocative film from three decades ago 3 +13015 560 amazingly evocative film 4 +13016 560 amazingly evocative 4 +13017 560 amazingly 3 +13018 560 evocative 3 +13019 560 from three decades ago 2 +13020 560 three decades ago 2 +13021 560 three decades 2 +13022 560 decades 2 +13023 560 the essence of the Dogtown experience 2 +13024 560 of the Dogtown experience 2 +13025 560 the Dogtown experience 2 +13026 560 Dogtown experience 2 +13027 560 Dogtown 2 +13028 561 As the movie dragged on , I thought I heard a mysterious voice , and felt myself powerfully drawn toward the light -- the light of the exit sign . 0 +13029 561 As the movie dragged on 1 +13030 561 the movie dragged on 1 +13031 561 dragged on 1 +13032 561 dragged 2 +13033 561 , I thought I heard a mysterious voice , and felt myself powerfully drawn toward the light -- the light of the exit sign . 0 +13034 561 I thought I heard a mysterious voice , and felt myself powerfully drawn toward the light -- the light of the exit sign . 0 +13035 561 thought I heard a mysterious voice , and felt myself powerfully drawn toward the light -- the light of the exit sign . 0 +13036 561 thought I heard a mysterious voice , and felt myself powerfully drawn toward the light -- the light of the exit sign 1 +13037 561 I heard a mysterious voice , and felt myself powerfully drawn toward the light -- the light of the exit sign 1 +13038 561 heard a mysterious voice , and felt myself powerfully drawn toward the light -- the light of the exit sign 1 +13039 561 heard a mysterious voice , and 2 +13040 561 heard a mysterious voice , 2 +13041 561 heard a mysterious voice 2 +13042 561 heard 2 +13043 561 a mysterious voice 2 +13044 561 mysterious voice 2 +13045 561 mysterious 3 +13046 561 voice 2 +13047 561 felt myself powerfully drawn toward the light -- the light of the exit sign 0 +13048 561 felt 2 +13049 561 myself powerfully drawn toward the light -- the light of the exit sign 0 +13050 561 myself 2 +13051 561 powerfully drawn toward the light -- the light of the exit sign 1 +13052 561 powerfully 2 +13053 561 drawn toward the light -- the light of the exit sign 0 +13054 561 toward the light -- the light of the exit sign 1 +13055 561 the light -- the light of the exit sign 2 +13056 561 the light -- 2 +13057 561 the light 2 +13058 561 the light of the exit sign 1 +13059 561 of the exit sign 2 +13060 561 the exit sign 2 +13061 561 exit sign 1 +13062 561 exit 2 +13063 561 sign 3 +13064 562 Will certainly appeal to Asian cult cinema fans and Asiaphiles interested to see what all the fuss is about . 3 +13065 562 certainly appeal to Asian cult cinema fans and Asiaphiles interested to see what all the fuss is about . 3 +13066 562 appeal to Asian cult cinema fans and Asiaphiles interested to see what all the fuss is about . 3 +13067 562 appeal to Asian cult cinema fans and Asiaphiles interested to see what all the fuss is about 3 +13068 562 appeal to Asian cult cinema fans and 2 +13069 562 appeal to Asian cult cinema fans 3 +13070 562 appeal 3 +13071 562 to Asian cult cinema fans 2 +13072 562 Asian cult cinema fans 2 +13073 562 Asian 2 +13074 562 cult cinema fans 2 +13075 562 cult 1 +13076 562 cinema fans 3 +13077 562 Asiaphiles interested to see what all the fuss is about 2 +13078 562 Asiaphiles 2 +13079 562 interested to see what all the fuss is about 2 +13080 562 to see what all the fuss is about 3 +13081 562 see what all the fuss is about 2 +13082 562 what all the fuss is about 2 +13083 562 all the fuss is about 2 +13084 562 all the fuss 2 +13085 562 the fuss 2 +13086 562 fuss 2 +13087 562 is about 2 +13088 563 Green ruins every single scene he 's in , and the film , while it 's not completely wreaked , is seriously compromised by that . 1 +13089 563 Green ruins every single scene he 's in , and the film , while it 's not completely wreaked , is seriously compromised by that 1 +13090 563 Green ruins every single scene he 's in , and 1 +13091 563 Green ruins every single scene he 's in , 1 +13092 563 Green ruins every single scene he 's in 1 +13093 563 ruins every single scene he 's in 1 +13094 563 ruins 2 +13095 563 every single scene he 's in 2 +13096 563 every single scene 3 +13097 563 single scene 2 +13098 563 he 's in 2 +13099 563 's in 2 +13100 563 the film , while it 's not completely wreaked , is seriously compromised by that 1 +13101 563 the film , while it 's not completely wreaked , 1 +13102 563 the film , while it 's not completely wreaked 1 +13103 563 the film , 2 +13104 563 while it 's not completely wreaked 2 +13105 563 it 's not completely wreaked 2 +13106 563 's not completely wreaked 2 +13107 563 completely wreaked 1 +13108 563 wreaked 0 +13109 563 is seriously compromised by that 0 +13110 563 is seriously 2 +13111 563 compromised by that 2 +13112 563 by that 2 +13113 564 Evokes the frustration , the awkwardness and the euphoria of growing up , without relying on the usual tropes . 1 +13114 564 Evokes the frustration , the awkwardness and the euphoria of growing up , without relying on the usual tropes 3 +13115 564 Evokes the frustration , the awkwardness and the euphoria of growing up , 3 +13116 564 Evokes the frustration , the awkwardness and the euphoria of growing up 3 +13117 564 the frustration , the awkwardness and the euphoria of growing up 2 +13118 564 the frustration , the awkwardness and 2 +13119 564 the frustration , the awkwardness 2 +13120 564 the frustration , 1 +13121 564 the frustration 2 +13122 564 frustration 0 +13123 564 the euphoria of growing up 3 +13124 564 the euphoria 3 +13125 564 euphoria 4 +13126 564 of growing up 2 +13127 564 without relying on the usual tropes 2 +13128 564 relying on the usual tropes 2 +13129 564 relying 2 +13130 564 on the usual tropes 2 +13131 564 the usual tropes 2 +13132 564 usual tropes 2 +13133 564 tropes 2 +13134 565 Standing in the Shadows of Motown is the best kind of documentary , one that makes a depleted yesterday feel very much like a brand-new tomorrow . 4 +13135 565 Standing in the Shadows of Motown 2 +13136 565 Standing 2 +13137 565 in the Shadows of Motown 2 +13138 565 the Shadows of Motown 3 +13139 565 the Shadows 2 +13140 565 of Motown 2 +13141 565 Motown 2 +13142 565 is the best kind of documentary , one that makes a depleted yesterday feel very much like a brand-new tomorrow . 4 +13143 565 is the best kind of documentary , one that makes a depleted yesterday feel very much like a brand-new tomorrow 3 +13144 565 the best kind of documentary , one that makes a depleted yesterday feel very much like a brand-new tomorrow 4 +13145 565 the best kind 4 +13146 565 best kind 4 +13147 565 of documentary , one that makes a depleted yesterday feel very much like a brand-new tomorrow 3 +13148 565 documentary , one that makes a depleted yesterday feel very much like a brand-new tomorrow 2 +13149 565 documentary , 2 +13150 565 one that makes a depleted yesterday feel very much like a brand-new tomorrow 2 +13151 565 that makes a depleted yesterday feel very much like a brand-new tomorrow 3 +13152 565 makes a depleted yesterday feel very much like a brand-new tomorrow 3 +13153 565 a depleted yesterday feel very much like a brand-new tomorrow 2 +13154 565 a depleted yesterday 2 +13155 565 depleted yesterday 2 +13156 565 depleted 1 +13157 565 yesterday 2 +13158 565 feel very much like a brand-new tomorrow 3 +13159 565 feel very much like a brand-new 2 +13160 565 very much like a brand-new 2 +13161 565 much like a brand-new 2 +13162 565 like a brand-new 2 +13163 565 a brand-new 2 +13164 565 brand-new 2 +13165 565 tomorrow 2 +13166 566 This is a very ambitious project for a fairly inexperienced filmmaker , but good actors , good poetry and good music help sustain it . 3 +13167 566 This is a very ambitious project for a fairly inexperienced filmmaker , but good actors , good poetry and good music help sustain it 3 +13168 566 This is a very ambitious project for a fairly inexperienced filmmaker , but 3 +13169 566 This is a very ambitious project for a fairly inexperienced filmmaker , 3 +13170 566 This is a very ambitious project for a fairly inexperienced filmmaker 3 +13171 566 is a very ambitious project for a fairly inexperienced filmmaker 3 +13172 566 a very ambitious project for a fairly inexperienced filmmaker 3 +13173 566 a very ambitious project 3 +13174 566 very ambitious project 3 +13175 566 very ambitious 3 +13176 566 for a fairly inexperienced filmmaker 1 +13177 566 a fairly inexperienced filmmaker 1 +13178 566 fairly inexperienced filmmaker 2 +13179 566 fairly inexperienced 2 +13180 566 inexperienced 1 +13181 566 good actors , good poetry and good music help sustain it 3 +13182 566 good actors , good poetry and good music 4 +13183 566 good actors , good poetry and 4 +13184 566 good actors , good poetry 3 +13185 566 good actors , 3 +13186 566 good poetry 3 +13187 566 good music 3 +13188 566 help sustain it 3 +13189 566 sustain it 2 +13190 567 A thriller whose style , structure and rhythms are so integrated with the story , you can not separate them . 3 +13191 567 A thriller whose style , structure and rhythms are so integrated with the story 4 +13192 567 whose style , structure and rhythms are so integrated with the story 3 +13193 567 style , structure and rhythms are so integrated with the story 3 +13194 567 style , structure and rhythms 3 +13195 567 , structure and rhythms 3 +13196 567 structure and rhythms 2 +13197 567 structure and 3 +13198 567 are so integrated with the story 2 +13199 567 so integrated with the story 3 +13200 567 integrated with the story 2 +13201 567 integrated 2 +13202 567 with the story 2 +13203 567 , you can not separate them . 2 +13204 567 you can not separate them . 2 +13205 567 can not separate them . 2 +13206 567 can not separate them 2 +13207 567 separate them 2 +13208 567 separate 2 +13209 568 It 's mostly a pleasure to watch . 3 +13210 568 's mostly a pleasure to watch . 4 +13211 568 's mostly a pleasure to watch 3 +13212 568 's mostly 2 +13213 568 a pleasure to watch 3 +13214 568 pleasure to watch 4 +13215 568 to watch 2 +13216 569 The first question to ask about Bad Company is why Anthony Hopkins is in it . 1 +13217 569 The first question to ask about Bad Company 2 +13218 569 first question to ask about Bad Company 2 +13219 569 question to ask about Bad Company 2 +13220 569 to ask about Bad Company 2 +13221 569 ask about Bad Company 2 +13222 569 about Bad Company 2 +13223 569 Bad Company 1 +13224 569 is why Anthony Hopkins is in it . 1 +13225 569 is why Anthony Hopkins is in it 2 +13226 569 why Anthony Hopkins is in it 2 +13227 569 Anthony Hopkins is in it 2 +13228 569 Anthony Hopkins 2 +13229 569 Anthony 2 +13230 569 Hopkins 3 +13231 569 is in it 2 +13232 569 in it 2 +13233 570 Nair and writer Laura Cahill dare to build a movie around some flawed but rather unexceptional women , emerging with a fine character study that 's short on plot but rich in the tiny revelations of real life . 2 +13234 570 Nair and writer Laura Cahill 2 +13235 570 Nair and 2 +13236 570 Nair 2 +13237 570 writer Laura Cahill 2 +13238 570 Laura Cahill 2 +13239 570 Laura 2 +13240 570 Cahill 2 +13241 570 dare to build a movie around some flawed but rather unexceptional women , emerging with a fine character study that 's short on plot but rich in the tiny revelations of real life . 3 +13242 570 dare to build a movie around some flawed but rather unexceptional women , emerging with a fine character study that 's short on plot but rich in the tiny revelations of real life 3 +13243 570 dare 2 +13244 570 to build a movie around some flawed but rather unexceptional women , emerging with a fine character study that 's short on plot but rich in the tiny revelations of real life 3 +13245 570 build a movie around some flawed but rather unexceptional women , emerging with a fine character study that 's short on plot but rich in the tiny revelations of real life 2 +13246 570 build a movie 2 +13247 570 build 2 +13248 570 around some flawed but rather unexceptional women , emerging with a fine character study that 's short on plot but rich in the tiny revelations of real life 3 +13249 570 some flawed but rather unexceptional women , emerging with a fine character study that 's short on plot but rich in the tiny revelations of real life 2 +13250 570 some flawed but rather unexceptional women , 1 +13251 570 some flawed but rather unexceptional women 1 +13252 570 flawed but rather unexceptional women 1 +13253 570 flawed but rather unexceptional 0 +13254 570 flawed but rather 2 +13255 570 but rather 2 +13256 570 unexceptional 0 +13257 570 emerging with a fine character study that 's short on plot but rich in the tiny revelations of real life 2 +13258 570 emerging 2 +13259 570 with a fine character study that 's short on plot but rich in the tiny revelations of real life 3 +13260 570 a fine character study that 's short on plot but rich in the tiny revelations of real life 3 +13261 570 a fine character study 3 +13262 570 fine character study 3 +13263 570 fine 3 +13264 570 character study 2 +13265 570 that 's short on plot but rich in the tiny revelations of real life 3 +13266 570 's short on plot but rich in the tiny revelations of real life 3 +13267 570 short on plot but rich in the tiny revelations of real life 3 +13268 570 short on plot but 1 +13269 570 short on plot 1 +13270 570 on plot 2 +13271 570 rich in the tiny revelations of real life 4 +13272 570 in the tiny revelations of real life 2 +13273 570 the tiny revelations of real life 3 +13274 570 the tiny revelations 2 +13275 570 tiny revelations 2 +13276 570 tiny 2 +13277 570 revelations 2 +13278 570 of real life 2 +13279 570 real life 2 +13280 571 Goofy , nutty , consistently funny . 4 +13281 571 , nutty , consistently funny . 3 +13282 571 nutty , consistently funny . 3 +13283 571 nutty 2 +13284 571 , consistently funny . 4 +13285 571 consistently funny . 4 +13286 571 consistently funny 3 +13287 572 Audiard successfully maintains suspense on different levels throughout a film that is both gripping and compelling . 4 +13288 572 Audiard 2 +13289 572 successfully maintains suspense on different levels throughout a film that is both gripping and compelling . 4 +13290 572 successfully 3 +13291 572 maintains suspense on different levels throughout a film that is both gripping and compelling . 3 +13292 572 maintains suspense on different levels throughout a film that is both gripping and compelling 3 +13293 572 maintains suspense on different levels 3 +13294 572 maintains 2 +13295 572 suspense on different levels 3 +13296 572 on different levels 3 +13297 572 different levels 2 +13298 572 levels 2 +13299 572 throughout a film that is both gripping and compelling 4 +13300 572 throughout 2 +13301 572 a film that is both gripping and compelling 4 +13302 572 that is both gripping and compelling 4 +13303 572 is both gripping and compelling 3 +13304 572 both gripping and compelling 3 +13305 572 gripping and compelling 3 +13306 572 gripping and 3 +13307 573 Welles groupie\/scholar Peter Bogdanovich took a long time to do it , but he 's finally provided his own broadside at publishing giant William Randolph Hearst . 3 +13308 573 Welles groupie\/scholar Peter Bogdanovich took a long time to do it , but he 's finally provided his own broadside at publishing giant William Randolph Hearst 3 +13309 573 Welles groupie\/scholar Peter Bogdanovich took a long time to do it , but 2 +13310 573 Welles groupie\/scholar Peter Bogdanovich took a long time to do it , 2 +13311 573 Welles groupie\/scholar Peter Bogdanovich took a long time to do it 2 +13312 573 Welles groupie\/scholar Peter Bogdanovich 2 +13313 573 Welles 2 +13314 573 groupie\/scholar Peter Bogdanovich 2 +13315 573 groupie\/scholar 2 +13316 573 Peter Bogdanovich 2 +13317 573 Bogdanovich 2 +13318 573 took a long time to do it 2 +13319 573 took a long time 2 +13320 573 took 2 +13321 573 a long time 2 +13322 573 long time 2 +13323 573 to do it 2 +13324 573 do it 2 +13325 573 he 's finally provided his own broadside at publishing giant William Randolph Hearst 2 +13326 573 's finally provided his own broadside at publishing giant William Randolph Hearst 2 +13327 573 's finally 2 +13328 573 provided his own broadside at publishing giant William Randolph Hearst 2 +13329 573 provided his own broadside 1 +13330 573 provided 2 +13331 573 his own broadside 2 +13332 573 own broadside 2 +13333 573 broadside 2 +13334 573 at publishing giant William Randolph Hearst 2 +13335 573 publishing giant William Randolph Hearst 2 +13336 573 giant William Randolph Hearst 3 +13337 573 giant 2 +13338 573 William Randolph Hearst 2 +13339 573 William 2 +13340 573 Randolph Hearst 2 +13341 573 Randolph 3 +13342 573 Hearst 2 +13343 574 The most excruciating 86 minutes one might sit through this summer that do not involve a dentist drill . 1 +13344 574 The most excruciating 86 minutes one 0 +13345 574 most excruciating 86 minutes one 0 +13346 574 most excruciating 86 minutes 1 +13347 574 most excruciating 0 +13348 574 excruciating 0 +13349 574 86 minutes 2 +13350 574 86 2 +13351 574 might sit through this summer that do not involve a dentist drill . 1 +13352 574 might sit through this summer that do not involve a dentist drill 1 +13353 574 sit through this summer that do not involve a dentist drill 1 +13354 574 through this summer that do not involve a dentist drill 1 +13355 574 this summer that do not involve a dentist drill 1 +13356 574 this summer 2 +13357 574 that do not involve a dentist drill 2 +13358 574 do not involve a dentist drill 2 +13359 574 do not 2 +13360 574 involve a dentist drill 0 +13361 574 involve 2 +13362 574 a dentist drill 1 +13363 574 dentist drill 2 +13364 574 dentist 2 +13365 574 drill 2 +13366 575 Skillful as he is , Mr. Shyamalan is undone by his pretensions . 2 +13367 575 Skillful as he is 3 +13368 575 Skillful 3 +13369 575 as he is 2 +13370 575 he is 2 +13371 575 , Mr. Shyamalan is undone by his pretensions . 1 +13372 575 Mr. Shyamalan is undone by his pretensions . 1 +13373 575 Mr. Shyamalan 2 +13374 575 is undone by his pretensions . 2 +13375 575 is undone by his pretensions 1 +13376 575 undone by his pretensions 1 +13377 575 undone 1 +13378 575 by his pretensions 2 +13379 575 his pretensions 2 +13380 575 pretensions 2 +13381 576 Fans of so-bad-they 're - good cinema may find some fun in this jumbled mess . 2 +13382 576 Fans of so-bad-they 're - good cinema may find some fun in this jumbled mess 2 +13383 576 Fans of so-bad-they 're - 2 +13384 576 Fans of so-bad-they 're 1 +13385 576 Fans of so-bad-they 2 +13386 576 of so-bad-they 2 +13387 576 so-bad-they 0 +13388 576 good cinema may find some fun in this jumbled mess 2 +13389 576 good cinema 4 +13390 576 may find some fun in this jumbled mess 2 +13391 576 find some fun in this jumbled mess 2 +13392 576 some fun in this jumbled mess 3 +13393 576 some fun 3 +13394 576 in this jumbled mess 0 +13395 576 this jumbled mess 0 +13396 576 jumbled mess 2 +13397 576 jumbled 1 +13398 577 We started to wonder if ... some unpaid intern had just typed ` Chris Rock , ' ` Anthony Hopkins ' and ` terrorists ' into some Univac-like script machine . 0 +13399 577 We started to wonder if ... some unpaid intern had just typed ` Chris Rock , ' ` Anthony Hopkins ' and ` terrorists ' into some Univac-like script machine 1 +13400 577 We started to wonder if ... 2 +13401 577 We started to wonder if 2 +13402 577 started to wonder if 2 +13403 577 to wonder if 2 +13404 577 wonder if 2 +13405 577 wonder 3 +13406 577 some unpaid intern had just typed ` Chris Rock , ' ` Anthony Hopkins ' and ` terrorists ' into some Univac-like script machine 0 +13407 577 some unpaid intern 1 +13408 577 unpaid intern 1 +13409 577 unpaid 1 +13410 577 intern 2 +13411 577 had just typed ` Chris Rock , ' ` Anthony Hopkins ' and ` terrorists ' into some Univac-like script machine 1 +13412 577 had just 2 +13413 577 typed ` Chris Rock , ' ` Anthony Hopkins ' and ` terrorists ' into some Univac-like script machine 1 +13414 577 typed 2 +13415 577 ` Chris Rock , ' ` Anthony Hopkins ' and ` terrorists ' into some Univac-like script machine 2 +13416 577 Chris Rock , ' ` Anthony Hopkins ' and ` terrorists ' into some Univac-like script machine 1 +13417 577 Chris Rock , ' ` Anthony Hopkins ' and ` terrorists ' 2 +13418 577 Chris Rock , ' ` Anthony Hopkins ' and ` terrorists 1 +13419 577 Chris Rock , ' 2 +13420 577 Chris Rock , 2 +13421 577 Chris Rock 2 +13422 577 ` Anthony Hopkins ' and ` terrorists 2 +13423 577 Anthony Hopkins ' and ` terrorists 2 +13424 577 ' and ` terrorists 2 +13425 577 and ` terrorists 2 +13426 577 ` terrorists 1 +13427 577 terrorists 2 +13428 577 into some Univac-like script machine 1 +13429 577 some Univac-like script machine 2 +13430 577 Univac-like script machine 1 +13431 577 Univac-like 2 +13432 577 script machine 2 +13433 577 machine 2 +13434 578 Mostly works because of the universal themes , earnest performances ... and excellent use of music by India 's popular Gulzar and Jagjit Singh . 4 +13435 578 works because of the universal themes , earnest performances ... and excellent use of music by India 's popular Gulzar and Jagjit Singh . 4 +13436 578 works because of the universal themes , earnest performances ... and excellent use of music by India 's popular Gulzar and Jagjit Singh 4 +13437 578 because of the universal themes , earnest performances ... and excellent use of music by India 's popular Gulzar and Jagjit Singh 3 +13438 578 because of the universal themes , earnest performances 3 +13439 578 of the universal themes , earnest performances 3 +13440 578 the universal themes , earnest performances 3 +13441 578 the universal themes , 3 +13442 578 the universal themes 2 +13443 578 universal themes 2 +13444 578 earnest performances 3 +13445 578 ... and excellent use of music by India 's popular Gulzar and Jagjit Singh 3 +13446 578 ... and 2 +13447 578 excellent use of music by India 's popular Gulzar and Jagjit Singh 4 +13448 578 excellent use of music 3 +13449 578 excellent use 3 +13450 578 of music 2 +13451 578 by India 's popular Gulzar and Jagjit Singh 2 +13452 578 India 's popular Gulzar and Jagjit Singh 3 +13453 578 India 's 2 +13454 578 India 2 +13455 578 popular Gulzar and Jagjit Singh 3 +13456 578 popular 3 +13457 578 Gulzar and Jagjit Singh 2 +13458 578 Gulzar 2 +13459 578 and Jagjit Singh 2 +13460 578 Jagjit Singh 2 +13461 578 Jagjit 1 +13462 578 Singh 2 +13463 579 A perceptive , good-natured movie . 3 +13464 579 A perceptive , good-natured movie 3 +13465 579 perceptive , good-natured movie 4 +13466 579 perceptive , good-natured 3 +13467 579 perceptive 3 +13468 579 , good-natured 2 +13469 580 This is n't a stand up and cheer flick ; it 's a sit down and ponder affair . 3 +13470 580 This is n't a stand up and cheer flick ; it 's a sit down and ponder affair 3 +13471 580 This is n't a stand up and cheer flick ; 2 +13472 580 This is n't a stand up and cheer flick 2 +13473 580 is n't a stand up and cheer flick 2 +13474 580 a stand up and cheer flick 4 +13475 580 a stand up and 2 +13476 580 a stand up 2 +13477 580 stand up 2 +13478 580 cheer flick 3 +13479 580 cheer 2 +13480 580 it 's a sit down and ponder affair 3 +13481 580 's a sit down and ponder affair 3 +13482 580 's a sit down and 2 +13483 580 's a sit down 2 +13484 580 a sit down 2 +13485 580 a sit 2 +13486 580 ponder affair 2 +13487 580 ponder 2 +13488 581 One of the pleasures in Walter 's documentary ... is the parade of veteran painters , confounded dealers , and miscellaneous bohos who expound upon the subject 's mysterious personality without ever explaining him . 2 +13489 581 One of the pleasures in Walter 's documentary 3 +13490 581 of the pleasures in Walter 's documentary 3 +13491 581 the pleasures in Walter 's documentary 3 +13492 581 the pleasures 2 +13493 581 pleasures 3 +13494 581 in Walter 's documentary 2 +13495 581 Walter 's documentary 2 +13496 581 Walter 's 2 +13497 581 Walter 2 +13498 581 ... is the parade of veteran painters , confounded dealers , and miscellaneous bohos who expound upon the subject 's mysterious personality without ever explaining him . 1 +13499 581 is the parade of veteran painters , confounded dealers , and miscellaneous bohos who expound upon the subject 's mysterious personality without ever explaining him . 2 +13500 581 is the parade of veteran painters , confounded dealers , and miscellaneous bohos who expound upon the subject 's mysterious personality without ever explaining him 2 +13501 581 the parade of veteran painters , confounded dealers , and miscellaneous bohos who expound upon the subject 's mysterious personality without ever explaining him 2 +13502 581 the parade of veteran painters , confounded dealers , and 2 +13503 581 the parade of veteran painters , confounded dealers , 2 +13504 581 the parade of veteran painters , confounded dealers 2 +13505 581 the parade of veteran painters , 2 +13506 581 the parade of veteran painters 2 +13507 581 the parade 3 +13508 581 parade 2 +13509 581 of veteran painters 2 +13510 581 veteran painters 2 +13511 581 veteran 3 +13512 581 painters 3 +13513 581 confounded dealers 2 +13514 581 confounded 2 +13515 581 dealers 2 +13516 581 miscellaneous bohos who expound upon the subject 's mysterious personality without ever explaining him 1 +13517 581 miscellaneous bohos 1 +13518 581 miscellaneous 2 +13519 581 bohos 2 +13520 581 who expound upon the subject 's mysterious personality without ever explaining him 2 +13521 581 expound upon the subject 's mysterious personality without ever explaining him 2 +13522 581 expound upon the subject 's mysterious personality 2 +13523 581 expound 2 +13524 581 upon the subject 's mysterious personality 2 +13525 581 the subject 's mysterious personality 2 +13526 581 the subject 's 2 +13527 581 subject 's 2 +13528 581 mysterious personality 3 +13529 581 personality 3 +13530 581 without ever explaining him 2 +13531 581 ever explaining him 2 +13532 581 explaining him 2 +13533 581 explaining 2 +13534 582 Adrift , Bentley and Hudson stare and sniffle , respectively , as Ledger attempts , in vain , to prove that movie-star intensity can overcome bad hair design . 1 +13535 582 Adrift , Bentley and Hudson 1 +13536 582 Adrift 2 +13537 582 , Bentley and Hudson 2 +13538 582 Bentley and Hudson 2 +13539 582 Bentley and 2 +13540 582 Bentley 2 +13541 582 Hudson 2 +13542 582 stare and sniffle , respectively , as Ledger attempts , in vain , to prove that movie-star intensity can overcome bad hair design . 1 +13543 582 stare and sniffle , respectively , as Ledger attempts , in vain , to prove that movie-star intensity can overcome bad hair design 1 +13544 582 stare and sniffle , respectively , 2 +13545 582 stare and sniffle , respectively 2 +13546 582 stare and sniffle , 2 +13547 582 stare and sniffle 1 +13548 582 stare and 2 +13549 582 stare 2 +13550 582 sniffle 2 +13551 582 respectively 2 +13552 582 as Ledger attempts , in vain , to prove that movie-star intensity can overcome bad hair design 1 +13553 582 Ledger attempts , in vain , to prove that movie-star intensity can overcome bad hair design 2 +13554 582 Ledger 2 +13555 582 attempts , in vain , to prove that movie-star intensity can overcome bad hair design 1 +13556 582 attempts , in vain , 1 +13557 582 attempts , in vain 1 +13558 582 attempts , 2 +13559 582 in vain 2 +13560 582 vain 2 +13561 582 to prove that movie-star intensity can overcome bad hair design 2 +13562 582 prove that movie-star intensity can overcome bad hair design 3 +13563 582 that movie-star intensity can overcome bad hair design 2 +13564 582 movie-star intensity can overcome bad hair design 2 +13565 582 movie-star intensity 3 +13566 582 movie-star 2 +13567 582 can overcome bad hair design 1 +13568 582 overcome bad hair design 1 +13569 582 overcome 2 +13570 582 bad hair design 1 +13571 582 hair design 2 +13572 582 hair 2 +13573 582 design 2 +13574 583 The real charm of this trifle is the deadpan comic face of its star , Jean Reno , who resembles Sly Stallone in a hot sake half-sleep . 2 +13575 583 The real charm of this trifle 2 +13576 583 The real charm 3 +13577 583 real charm 3 +13578 583 of this trifle 2 +13579 583 this trifle 2 +13580 583 is the deadpan comic face of its star , Jean Reno , who resembles Sly Stallone in a hot sake half-sleep . 2 +13581 583 is the deadpan comic face of its star , Jean Reno , who resembles Sly Stallone in a hot sake half-sleep 2 +13582 583 the deadpan comic face of its star , Jean Reno , who resembles Sly Stallone in a hot sake half-sleep 2 +13583 583 the deadpan comic face 2 +13584 583 deadpan comic face 3 +13585 583 comic face 3 +13586 583 of its star , Jean Reno , who resembles Sly Stallone in a hot sake half-sleep 1 +13587 583 its star , Jean Reno , who resembles Sly Stallone in a hot sake half-sleep 1 +13588 583 its star , Jean Reno , 2 +13589 583 its star , Jean Reno 2 +13590 583 its star , 2 +13591 583 its star 3 +13592 583 star 2 +13593 583 Jean Reno 2 +13594 583 Jean 2 +13595 583 who resembles Sly Stallone in a hot sake half-sleep 1 +13596 583 resembles Sly Stallone in a hot sake half-sleep 2 +13597 583 resembles 2 +13598 583 Sly Stallone in a hot sake half-sleep 2 +13599 583 Sly Stallone 3 +13600 583 Sly 2 +13601 583 Stallone 2 +13602 583 in a hot sake half-sleep 1 +13603 583 a hot sake half-sleep 1 +13604 583 hot sake half-sleep 1 +13605 583 sake half-sleep 2 +13606 583 sake 2 +13607 583 half-sleep 2 +13608 584 And there 's an element of heartbreak to watching it now , with older and wiser eyes , because we know what will happen after Greene 's story ends . 3 +13609 584 there 's an element of heartbreak to watching it now , with older and wiser eyes , because we know what will happen after Greene 's story ends . 2 +13610 584 's an element of heartbreak to watching it now , with older and wiser eyes , because we know what will happen after Greene 's story ends . 2 +13611 584 's an element of heartbreak to watching it now , with older and wiser eyes , because we know what will happen after Greene 's story ends 2 +13612 584 an element of heartbreak to watching it now , with older and wiser eyes , because we know what will happen after Greene 's story ends 2 +13613 584 an element 2 +13614 584 of heartbreak to watching it now , with older and wiser eyes , because we know what will happen after Greene 's story ends 2 +13615 584 heartbreak to watching it now , with older and wiser eyes , because we know what will happen after Greene 's story ends 3 +13616 584 heartbreak 1 +13617 584 to watching it now , with older and wiser eyes , because we know what will happen after Greene 's story ends 2 +13618 584 watching it now , with older and wiser eyes , because we know what will happen after Greene 's story ends 2 +13619 584 watching it now , 2 +13620 584 watching it now 2 +13621 584 watching it 2 +13622 584 with older and wiser eyes , because we know what will happen after Greene 's story ends 2 +13623 584 older and wiser eyes , because we know what will happen after Greene 's story ends 2 +13624 584 older and wiser eyes , 3 +13625 584 older and wiser eyes 2 +13626 584 older and wiser 2 +13627 584 older and 2 +13628 584 older 1 +13629 584 wiser 4 +13630 584 because we know what will happen after Greene 's story ends 2 +13631 584 we know what will happen after Greene 's story ends 2 +13632 584 know what will happen after Greene 's story ends 2 +13633 584 what will happen after Greene 's story ends 2 +13634 584 will happen after Greene 's story ends 2 +13635 584 happen after Greene 's story ends 2 +13636 584 after Greene 's story ends 2 +13637 584 Greene 's story ends 2 +13638 584 Greene 's story 2 +13639 585 Rather than real figures 1 +13640 585 than real figures 2 +13641 585 real figures 2 +13642 585 figures 2 +13643 585 Elling and Kjell Bjarne 2 +13644 585 Elling 2 +13645 585 and Kjell Bjarne 2 +13646 585 Kjell Bjarne 2 +13647 585 Kjell 2 +13648 585 Bjarne 2 +13649 585 symbolic characters 3 +13650 585 symbolic 3 +13651 585 actions 2 +13652 585 supposed 2 +13653 585 with the world 2 +13654 586 By no means a great movie , but it is a refreshingly forthright one . 3 +13655 586 By no 2 +13656 586 means a great movie , but it is a refreshingly forthright one . 3 +13657 586 means a great movie 3 +13658 586 a great movie 4 +13659 586 great movie 4 +13660 586 , but it is a refreshingly forthright one . 3 +13661 586 , but it is a refreshingly forthright one 3 +13662 586 it is a refreshingly forthright one 4 +13663 586 is a refreshingly forthright one 3 +13664 586 a refreshingly forthright one 4 +13665 586 refreshingly forthright one 3 +13666 586 refreshingly forthright 3 +13667 586 forthright 2 +13668 587 Not just unlikable . 1 +13669 587 just unlikable . 0 +13670 587 just unlikable 1 +13671 587 unlikable 0 +13672 588 Show me the mugging . 2 +13673 588 Show me the mugging 3 +13674 588 me the mugging 2 +13675 588 the mugging 2 +13676 588 mugging 2 +13677 589 Hashiguchi uses the situation to evoke a Japan bustling atop an undercurrent of loneliness and isolation . 3 +13678 589 Hashiguchi 2 +13679 589 uses the situation to evoke a Japan bustling atop an undercurrent of loneliness and isolation . 2 +13680 589 uses the situation to evoke a Japan bustling atop an undercurrent of loneliness and isolation 2 +13681 589 uses 2 +13682 589 the situation to evoke a Japan bustling atop an undercurrent of loneliness and isolation 2 +13683 589 situation to evoke a Japan bustling atop an undercurrent of loneliness and isolation 2 +13684 589 to evoke a Japan bustling atop an undercurrent of loneliness and isolation 2 +13685 589 evoke a Japan bustling atop an undercurrent of loneliness and isolation 2 +13686 589 evoke a Japan bustling 2 +13687 589 a Japan bustling 3 +13688 589 Japan bustling 3 +13689 589 Japan 2 +13690 589 bustling 2 +13691 589 atop an undercurrent of loneliness and isolation 1 +13692 589 atop 2 +13693 589 an undercurrent of loneliness and isolation 1 +13694 589 an undercurrent 2 +13695 589 undercurrent 2 +13696 589 of loneliness and isolation 2 +13697 589 loneliness and isolation 1 +13698 589 loneliness and 2 +13699 589 loneliness 1 +13700 589 isolation 1 +13701 590 It 's a rollicking adventure for you and all your mateys , regardless of their ages . 4 +13702 590 's a rollicking adventure for you and all your mateys , regardless of their ages . 3 +13703 590 's a rollicking adventure for you and all your mateys , regardless of their ages 2 +13704 590 a rollicking adventure for you and all your mateys , regardless of their ages 4 +13705 590 a rollicking adventure for you and 3 +13706 590 a rollicking adventure for you 3 +13707 590 a rollicking adventure 4 +13708 590 rollicking adventure 3 +13709 590 rollicking 3 +13710 590 adventure 3 +13711 590 all your mateys , regardless of their ages 2 +13712 590 all your mateys , 3 +13713 590 all your mateys 2 +13714 590 your mateys 2 +13715 590 mateys 2 +13716 590 regardless of their ages 2 +13717 590 regardless 2 +13718 590 of their ages 2 +13719 590 their ages 2 +13720 590 ages 2 +13721 591 The next big thing 's not-so-big -LRB- and not-so-hot -RRB- directorial debut . 2 +13722 591 The next big thing 's not-so-big -LRB- and not-so-hot -RRB- 0 +13723 591 The next big thing 's not-so-big 1 +13724 591 The next big thing 's 3 +13725 591 next big thing 's 2 +13726 591 big thing 's 2 +13727 591 thing 's 3 +13728 591 not-so-big 1 +13729 591 -LRB- and not-so-hot -RRB- 1 +13730 591 -LRB- and not-so-hot 1 +13731 591 -LRB- and 2 +13732 591 not-so-hot 1 +13733 591 directorial debut . 2 +13734 591 directorial debut 2 +13735 592 If you 're content with a clever pseudo-bio that manages to have a good time as it doles out pieces of the famous director 's life , Eisenstein delivers . 3 +13736 592 If you 're content with a clever pseudo-bio that manages to have a good time as it doles out pieces of the famous director 's life 2 +13737 592 you 're content with a clever pseudo-bio that manages to have a good time as it doles out pieces of the famous director 's life 2 +13738 592 're content with a clever pseudo-bio that manages to have a good time as it doles out pieces of the famous director 's life 3 +13739 592 content with a clever pseudo-bio that manages to have a good time as it doles out pieces of the famous director 's life 4 +13740 592 content 3 +13741 592 with a clever pseudo-bio that manages to have a good time as it doles out pieces of the famous director 's life 4 +13742 592 a clever pseudo-bio that manages to have a good time as it doles out pieces of the famous director 's life 3 +13743 592 a clever pseudo-bio 4 +13744 592 clever pseudo-bio 3 +13745 592 pseudo-bio 2 +13746 592 that manages to have a good time as it doles out pieces of the famous director 's life 3 +13747 592 manages to have a good time as it doles out pieces of the famous director 's life 3 +13748 592 to have a good time as it doles out pieces of the famous director 's life 3 +13749 592 have a good time as it doles out pieces of the famous director 's life 3 +13750 592 have a good time 3 +13751 592 as it doles out pieces of the famous director 's life 2 +13752 592 it doles out pieces of the famous director 's life 2 +13753 592 doles out pieces of the famous director 's life 2 +13754 592 doles out 2 +13755 592 doles 2 +13756 592 pieces of the famous director 's life 3 +13757 592 of the famous director 's life 2 +13758 592 the famous director 's life 2 +13759 592 the famous director 's 2 +13760 592 famous director 's 2 +13761 592 , Eisenstein delivers . 4 +13762 592 Eisenstein delivers . 3 +13763 592 Eisenstein 2 +13764 592 delivers . 3 +13765 593 Overly long and worshipful bio-doc . 1 +13766 593 Overly long and worshipful bio-doc 2 +13767 593 Overly long and 2 +13768 593 Overly long 0 +13769 593 Overly 2 +13770 593 worshipful bio-doc 2 +13771 593 worshipful 3 +13772 593 bio-doc 2 +13773 594 A visual spectacle full of stunning images and effects . 4 +13774 594 A visual spectacle full of stunning images and effects 4 +13775 594 A visual spectacle 3 +13776 594 visual spectacle 2 +13777 594 spectacle 3 +13778 594 full of stunning images and effects 4 +13779 594 of stunning images and effects 4 +13780 594 stunning images and effects 4 +13781 594 stunning 4 +13782 594 images and effects 2 +13783 594 images and 2 +13784 595 There is something that is so meditative and lyrical about Babak Payami 's boldly quirky Iranian drama Secret Ballot ... a charming and evoking little ditty that manages to show the gentle and humane side of Middle Eastern world politics 3 +13785 595 is something that is so meditative and lyrical about Babak Payami 's boldly quirky Iranian drama Secret Ballot ... a charming and evoking little ditty that manages to show the gentle and humane side of Middle Eastern world politics 4 +13786 595 something that is so meditative and lyrical about Babak Payami 's boldly quirky Iranian drama Secret Ballot ... a charming and evoking little ditty that manages to show the gentle and humane side of Middle Eastern world politics 4 +13787 595 that is so meditative and lyrical about Babak Payami 's boldly quirky Iranian drama Secret Ballot ... a charming and evoking little ditty that manages to show the gentle and humane side of Middle Eastern world politics 3 +13788 595 is so meditative and lyrical about Babak Payami 's boldly quirky Iranian drama Secret Ballot ... a charming and evoking little ditty that manages to show the gentle and humane side of Middle Eastern world politics 3 +13789 595 so meditative and lyrical about Babak Payami 's boldly quirky Iranian drama Secret Ballot ... a charming and evoking little ditty that manages to show the gentle and humane side of Middle Eastern world politics 3 +13790 595 so meditative and lyrical 3 +13791 595 meditative and lyrical 3 +13792 595 meditative and 3 +13793 595 meditative 3 +13794 595 lyrical 2 +13795 595 about Babak Payami 's boldly quirky Iranian drama Secret Ballot ... a charming and evoking little ditty that manages to show the gentle and humane side of Middle Eastern world politics 3 +13796 595 Babak Payami 's boldly quirky Iranian drama Secret Ballot ... a charming and evoking little ditty that manages to show the gentle and humane side of Middle Eastern world politics 3 +13797 595 Babak Payami 's boldly quirky Iranian drama Secret Ballot ... 3 +13798 595 Babak Payami 's boldly quirky Iranian drama Secret Ballot 3 +13799 595 Babak Payami 's 2 +13800 595 Babak 2 +13801 595 Payami 's 2 +13802 595 Payami 2 +13803 595 boldly quirky Iranian drama Secret Ballot 2 +13804 595 boldly 2 +13805 595 quirky Iranian drama Secret Ballot 3 +13806 595 Iranian drama Secret Ballot 2 +13807 595 Iranian 2 +13808 595 drama Secret Ballot 2 +13809 595 Secret Ballot 2 +13810 595 Secret 2 +13811 595 Ballot 3 +13812 595 a charming and evoking little ditty that manages to show the gentle and humane side of Middle Eastern world politics 3 +13813 595 a charming and evoking little ditty 3 +13814 595 charming and evoking little ditty 4 +13815 595 charming and evoking 4 +13816 595 evoking 2 +13817 595 little ditty 2 +13818 595 ditty 2 +13819 595 that manages to show the gentle and humane side of Middle Eastern world politics 3 +13820 595 manages to show the gentle and humane side of Middle Eastern world politics 3 +13821 595 to show the gentle and humane side of Middle Eastern world politics 3 +13822 595 show the gentle and humane side of Middle Eastern world politics 3 +13823 595 the gentle and humane side of Middle Eastern world politics 2 +13824 595 the gentle and humane side 3 +13825 595 gentle and humane side 3 +13826 595 gentle and humane 3 +13827 595 gentle and 3 +13828 595 gentle 3 +13829 595 side 2 +13830 595 of Middle Eastern world politics 3 +13831 595 Middle Eastern world politics 3 +13832 595 Eastern world politics 2 +13833 595 Eastern 2 +13834 595 world politics 2 +13835 595 politics 1 +13836 596 It 's easy to be cynical about documentaries in which underdogs beat the odds and the human spirit triumphs , but Westbrook 's foundation and Dalrymple 's film earn their uplift . 2 +13837 596 It 's easy to be cynical about documentaries in which underdogs beat the odds and the human spirit triumphs , but Westbrook 's foundation and Dalrymple 's film earn their uplift 3 +13838 596 It 's easy to be cynical about documentaries in which underdogs beat the odds and the human spirit triumphs , but 2 +13839 596 It 's easy to be cynical about documentaries in which underdogs beat the odds and the human spirit triumphs , 2 +13840 596 It 's easy to be cynical about documentaries in which underdogs beat the odds and the human spirit triumphs 2 +13841 596 's easy to be cynical about documentaries in which underdogs beat the odds and the human spirit triumphs 3 +13842 596 easy to be cynical about documentaries in which underdogs beat the odds and the human spirit triumphs 3 +13843 596 easy 2 +13844 596 to be cynical about documentaries in which underdogs beat the odds and the human spirit triumphs 2 +13845 596 be cynical about documentaries in which underdogs beat the odds and the human spirit triumphs 2 +13846 596 cynical about documentaries in which underdogs beat the odds and the human spirit triumphs 2 +13847 596 about documentaries in which underdogs beat the odds and the human spirit triumphs 3 +13848 596 documentaries in which underdogs beat the odds and the human spirit triumphs 3 +13849 596 documentaries 2 +13850 596 in which underdogs beat the odds and the human spirit triumphs 3 +13851 596 underdogs beat the odds and the human spirit triumphs 3 +13852 596 underdogs 2 +13853 596 beat the odds and the human spirit triumphs 3 +13854 596 beat 2 +13855 596 the odds and the human spirit triumphs 3 +13856 596 the odds and 2 +13857 596 the odds 2 +13858 596 the human spirit triumphs 3 +13859 596 human spirit triumphs 2 +13860 596 spirit triumphs 3 +13861 596 spirit 3 +13862 596 triumphs 3 +13863 596 Westbrook 's foundation and Dalrymple 's film earn their uplift 4 +13864 596 Westbrook 's foundation and Dalrymple 's film 2 +13865 596 Westbrook 's foundation and 2 +13866 596 Westbrook 's foundation 2 +13867 596 Westbrook 's 2 +13868 596 Westbrook 2 +13869 596 foundation 2 +13870 596 Dalrymple 's film 2 +13871 596 Dalrymple 's 2 +13872 596 Dalrymple 2 +13873 596 earn their uplift 3 +13874 596 earn 2 +13875 596 their uplift 2 +13876 596 uplift 3 +13877 597 The difference is that I truly enjoyed most of Mostly Martha while I ne 3 +13878 597 The difference 2 +13879 597 difference 2 +13880 597 is that I truly enjoyed most of Mostly Martha while I ne 3 +13881 597 that I truly enjoyed most of Mostly Martha while I ne 4 +13882 597 I truly enjoyed most of Mostly Martha while I ne 4 +13883 597 truly enjoyed most of Mostly Martha while I ne 3 +13884 597 enjoyed most of Mostly Martha while I ne 3 +13885 597 enjoyed most of Mostly Martha 3 +13886 597 enjoyed 3 +13887 597 most of Mostly Martha 2 +13888 597 of Mostly Martha 2 +13889 597 while I ne 2 +13890 597 I ne 2 +13891 597 ne 2 +13892 598 I ca n't remember the last time I saw a movie where I wanted so badly for the protagonist to fail . 2 +13893 598 ca n't remember the last time I saw a movie where I wanted so badly for the protagonist to fail . 0 +13894 598 ca n't remember the last time I saw a movie where I wanted so badly for the protagonist to fail 1 +13895 598 remember the last time I saw a movie where I wanted so badly for the protagonist to fail 1 +13896 598 the last time I saw a movie where I wanted so badly for the protagonist to fail 0 +13897 598 I saw a movie where I wanted so badly for the protagonist to fail 2 +13898 598 saw a movie where I wanted so badly for the protagonist to fail 1 +13899 598 saw a movie 2 +13900 598 where I wanted so badly for the protagonist to fail 2 +13901 598 I wanted so badly for the protagonist to fail 1 +13902 598 wanted so badly for the protagonist to fail 2 +13903 598 wanted so badly for the protagonist 3 +13904 598 wanted so badly 2 +13905 598 wanted 2 +13906 598 so badly 1 +13907 598 for the protagonist 2 +13908 598 the protagonist 2 +13909 598 protagonist 1 +13910 598 to fail 2 +13911 598 fail 1 +13912 599 Falsehoods pile up , undermining the movie 's reality and stifling its creator 's comic voice . 1 +13913 599 Falsehoods 2 +13914 599 pile up , undermining the movie 's reality and stifling its creator 's comic voice . 2 +13915 599 pile up , undermining the movie 's reality and stifling its creator 's comic voice 1 +13916 599 pile up , 2 +13917 599 pile up 2 +13918 599 undermining the movie 's reality and stifling its creator 's comic voice 0 +13919 599 undermining the movie 's reality and 1 +13920 599 undermining the movie 's reality 2 +13921 599 undermining 2 +13922 599 the movie 's reality 2 +13923 599 reality 2 +13924 599 stifling its creator 's comic voice 2 +13925 599 stifling 2 +13926 599 its creator 's comic voice 3 +13927 599 its creator 's 2 +13928 599 creator 's 2 +13929 599 creator 2 +13930 599 comic voice 3 +13931 600 The early and middle passages are surprising in how much they engage and even touch us . 4 +13932 600 The early and middle passages 3 +13933 600 early and middle passages 2 +13934 600 and middle passages 2 +13935 600 middle passages 2 +13936 600 passages 2 +13937 600 are surprising in how much they engage and even touch us . 3 +13938 600 are surprising in how much they engage and even touch us 2 +13939 600 surprising in how much they engage and even touch us 4 +13940 600 in how much they engage and even touch us 3 +13941 600 how much they engage and even touch us 3 +13942 600 how much 2 +13943 600 they engage and even touch us 3 +13944 600 engage and even touch us 3 +13945 600 engage and 2 +13946 600 engage 3 +13947 600 even touch us 3 +13948 600 touch us 2 +13949 601 Limps along on a squirm-inducing fish-out-of-water formula that goes nowhere and goes there very , very slowly . 1 +13950 601 Limps along on a squirm-inducing fish-out-of-water formula that goes nowhere and goes there very , very slowly 0 +13951 601 Limps along 1 +13952 601 Limps 2 +13953 601 along 2 +13954 601 on a squirm-inducing fish-out-of-water formula that goes nowhere and goes there very , very slowly 0 +13955 601 a squirm-inducing fish-out-of-water formula that goes nowhere and goes there very , very slowly 0 +13956 601 a squirm-inducing fish-out-of-water formula 0 +13957 601 squirm-inducing fish-out-of-water formula 1 +13958 601 squirm-inducing 2 +13959 601 fish-out-of-water formula 1 +13960 601 fish-out-of-water 2 +13961 601 that goes nowhere and goes there very , very slowly 0 +13962 601 goes nowhere and goes there very , very slowly 0 +13963 601 goes nowhere and 2 +13964 601 goes nowhere 2 +13965 601 nowhere 2 +13966 601 goes there very , very slowly 2 +13967 601 there very , very slowly 2 +13968 601 there very , 2 +13969 601 there very 2 +13970 601 very slowly 2 +13971 601 slowly 2 +13972 602 A really funny fifteen-minute short stretched beyond its limits to fill an almost feature-length film . 2 +13973 602 A really funny fifteen-minute 4 +13974 602 really funny fifteen-minute 3 +13975 602 really funny 4 +13976 602 fifteen-minute 2 +13977 602 short stretched beyond its limits to fill an almost feature-length film . 1 +13978 602 stretched beyond its limits to fill an almost feature-length film . 1 +13979 602 stretched beyond its limits to fill an almost feature-length film 1 +13980 602 stretched beyond its limits 2 +13981 602 stretched 2 +13982 602 beyond its limits 2 +13983 602 its limits 2 +13984 602 limits 2 +13985 602 to fill an almost feature-length film 2 +13986 602 fill an almost feature-length film 2 +13987 602 fill 2 +13988 602 an almost feature-length film 2 +13989 602 almost feature-length film 2 +13990 603 Writer and director Otar Iosseliani 's pleasant tale about a factory worker who escapes for a holiday in Venice reveals how we all need a playful respite from the grind to refresh our souls . 4 +13991 603 Writer and director Otar Iosseliani 's pleasant tale about a factory worker who escapes for a holiday in Venice 4 +13992 603 Writer and director Otar Iosseliani 's pleasant tale 3 +13993 603 Writer and director Otar Iosseliani 's 2 +13994 603 and director Otar Iosseliani 's 2 +13995 603 director Otar Iosseliani 's 2 +13996 603 Otar Iosseliani 's 2 +13997 603 Otar 2 +13998 603 Iosseliani 's 2 +13999 603 Iosseliani 3 +14000 603 pleasant tale 3 +14001 603 pleasant 4 +14002 603 about a factory worker who escapes for a holiday in Venice 2 +14003 603 a factory worker who escapes for a holiday in Venice 2 +14004 603 a factory worker 2 +14005 603 factory worker 2 +14006 603 factory 2 +14007 603 worker 2 +14008 603 who escapes for a holiday in Venice 2 +14009 603 escapes for a holiday in Venice 2 +14010 603 escapes 2 +14011 603 for a holiday in Venice 2 +14012 603 a holiday in Venice 2 +14013 603 a holiday 2 +14014 603 in Venice 3 +14015 603 Venice 2 +14016 603 reveals how we all need a playful respite from the grind to refresh our souls . 3 +14017 603 reveals how we all need a playful respite from the grind to refresh our souls 3 +14018 603 how we all need a playful respite from the grind to refresh our souls 3 +14019 603 we all need a playful respite from the grind to refresh our souls 3 +14020 603 all need a playful respite from the grind to refresh our souls 2 +14021 603 need a playful respite from the grind to refresh our souls 2 +14022 603 need a playful respite 3 +14023 603 a playful respite 3 +14024 603 playful respite 3 +14025 603 playful 4 +14026 603 respite 2 +14027 603 from the grind to refresh our souls 2 +14028 603 the grind to refresh our souls 3 +14029 603 grind to refresh our souls 2 +14030 603 grind 2 +14031 603 to refresh our souls 3 +14032 603 refresh our souls 3 +14033 603 refresh 3 +14034 603 our souls 2 +14035 603 souls 2 +14036 604 A mechanical action-comedy whose seeming purpose is to market the charismatic Jackie Chan to even younger audiences . 0 +14037 604 A mechanical action-comedy whose seeming purpose is to market the charismatic Jackie Chan to even younger audiences 1 +14038 604 A mechanical action-comedy 2 +14039 604 mechanical action-comedy 2 +14040 604 mechanical 2 +14041 604 action-comedy 2 +14042 604 whose seeming purpose is to market the charismatic Jackie Chan to even younger audiences 2 +14043 604 whose seeming purpose 2 +14044 604 whose seeming 2 +14045 604 seeming 2 +14046 604 purpose 3 +14047 604 is to market the charismatic Jackie Chan to even younger audiences 2 +14048 604 to market the charismatic Jackie Chan to even younger audiences 2 +14049 604 market the charismatic Jackie Chan to even younger audiences 2 +14050 604 market 2 +14051 604 the charismatic Jackie Chan to even younger audiences 3 +14052 604 the charismatic Jackie Chan to 3 +14053 604 the charismatic Jackie Chan 3 +14054 604 charismatic Jackie Chan 3 +14055 604 charismatic 3 +14056 604 Jackie Chan 2 +14057 604 Jackie 2 +14058 604 even younger audiences 2 +14059 604 younger audiences 2 +14060 604 younger 2 +14061 605 Chalk it up as the worst kind of hubristic folly . 0 +14062 605 Chalk it up as the worst kind of hubristic folly 2 +14063 605 Chalk it 2 +14064 605 Chalk 2 +14065 605 up as the worst kind of hubristic folly 0 +14066 605 as the worst kind of hubristic folly 1 +14067 605 the worst kind of hubristic folly 0 +14068 605 the worst kind 2 +14069 605 worst kind 0 +14070 605 worst 0 +14071 605 of hubristic folly 2 +14072 605 hubristic folly 1 +14073 605 hubristic 2 +14074 605 folly 2 +14075 606 Though Haynes ' style apes films from the period ... its message is not rooted in that decade . 2 +14076 606 Though Haynes ' style apes films from the period 2 +14077 606 Haynes ' style apes films from the period 3 +14078 606 Haynes ' style 2 +14079 606 Haynes ' 2 +14080 606 Haynes 2 +14081 606 apes films from the period 2 +14082 606 apes films 2 +14083 606 apes 2 +14084 606 from the period 2 +14085 606 the period 2 +14086 606 period 2 +14087 606 ... its message is not rooted in that decade . 2 +14088 606 its message is not rooted in that decade . 2 +14089 606 its message 2 +14090 606 is not rooted in that decade . 2 +14091 606 is not rooted in that decade 3 +14092 606 rooted in that decade 2 +14093 606 in that decade 2 +14094 606 that decade 2 +14095 606 decade 2 +14096 607 But I do . 2 +14097 607 I do . 3 +14098 607 do . 2 +14099 608 A compelling allegory about the last days of Germany 's democratic Weimar Republic . 3 +14100 608 A compelling allegory about the last days of Germany 's democratic Weimar Republic 3 +14101 608 A compelling allegory about the last days 2 +14102 608 A compelling allegory 3 +14103 608 compelling allegory 3 +14104 608 allegory 2 +14105 608 about the last days 2 +14106 608 the last days 1 +14107 608 last days 2 +14108 608 of Germany 's democratic Weimar Republic 2 +14109 608 Germany 's democratic Weimar Republic 2 +14110 608 Germany 's 2 +14111 608 Germany 2 +14112 608 democratic Weimar Republic 2 +14113 608 democratic 2 +14114 608 Weimar Republic 2 +14115 608 Weimar 2 +14116 608 Republic 2 +14117 609 Director Jay Russell stomps in hobnail boots over Natalie Babbitt 's gentle , endearing 1975 children 's novel . 1 +14118 609 Director Jay Russell 2 +14119 609 Jay Russell 1 +14120 609 Russell 2 +14121 609 stomps in hobnail boots over Natalie Babbitt 's gentle , endearing 1975 children 's novel . 0 +14122 609 stomps in hobnail boots over Natalie Babbitt 's gentle , endearing 1975 children 's novel 1 +14123 609 stomps 2 +14124 609 in hobnail boots over Natalie Babbitt 's gentle , endearing 1975 children 's novel 2 +14125 609 hobnail boots over Natalie Babbitt 's gentle , endearing 1975 children 's novel 2 +14126 609 hobnail boots 2 +14127 609 hobnail 2 +14128 609 boots 2 +14129 609 over Natalie Babbitt 's gentle , endearing 1975 children 's novel 2 +14130 609 Natalie Babbitt 's gentle , endearing 1975 children 's novel 3 +14131 609 Natalie Babbitt 's 2 +14132 609 Natalie 2 +14133 609 Babbitt 's 2 +14134 609 Babbitt 2 +14135 609 gentle , endearing 1975 children 's novel 3 +14136 609 gentle , endearing 3 +14137 609 , endearing 3 +14138 609 1975 children 's novel 2 +14139 609 1975 2 +14140 609 children 's novel 2 +14141 610 It is an indelible epic American story about two families , one black and one white , facing change in both their inner and outer lives . 2 +14142 610 is an indelible epic American story about two families , one black and one white , facing change in both their inner and outer lives . 3 +14143 610 is an indelible epic American story about two families , one black and one white , facing change in both their inner and outer lives 3 +14144 610 an indelible epic American story about two families , one black and one white , facing change in both their inner and outer lives 3 +14145 610 an indelible epic American story 3 +14146 610 indelible epic American story 3 +14147 610 indelible 2 +14148 610 epic American story 4 +14149 610 American story 2 +14150 610 about two families , one black and one white , facing change in both their inner and outer lives 2 +14151 610 two families , one black and one white , facing change in both their inner and outer lives 2 +14152 610 two families , one black and one white , 2 +14153 610 two families , one black and one white 2 +14154 610 two families , 2 +14155 610 two families 2 +14156 610 one black and one white 2 +14157 610 one black and 2 +14158 610 one black 2 +14159 610 black 2 +14160 610 one white 2 +14161 610 facing change in both their inner and outer lives 3 +14162 610 facing change 2 +14163 610 facing 2 +14164 610 change 2 +14165 610 in both their inner and outer lives 2 +14166 610 both their inner and outer lives 2 +14167 610 their inner and outer lives 2 +14168 610 inner and outer lives 2 +14169 610 inner 2 +14170 610 and outer lives 2 +14171 610 outer lives 2 +14172 610 outer 2 +14173 611 It 's as raw and action-packed an experience as a ringside seat at a tough-man contest . 4 +14174 611 's as raw and action-packed an experience as a ringside seat at a tough-man contest . 3 +14175 611 's as raw and action-packed an experience as a ringside seat at a tough-man contest 3 +14176 611 's as raw and 2 +14177 611 's as raw 2 +14178 611 as raw 2 +14179 611 action-packed an experience as a ringside seat at a tough-man contest 3 +14180 611 action-packed an experience as a ringside seat 3 +14181 611 action-packed an experience 3 +14182 611 action-packed 3 +14183 611 an experience 2 +14184 611 as a ringside seat 2 +14185 611 a ringside seat 2 +14186 611 ringside seat 3 +14187 611 ringside 2 +14188 611 at a tough-man contest 1 +14189 611 a tough-man contest 2 +14190 611 tough-man contest 2 +14191 611 tough-man 2 +14192 611 contest 2 +14193 612 ... -LRB- the film -RRB- works , due mostly to the tongue-in-cheek attitude of the screenplay . 3 +14194 612 -LRB- the film -RRB- works , due mostly to the tongue-in-cheek attitude of the screenplay . 3 +14195 612 -LRB- the film -RRB- works , due mostly to the tongue-in-cheek attitude of the screenplay 3 +14196 612 -LRB- the film -RRB- works , 2 +14197 612 -LRB- the film -RRB- works 3 +14198 612 the film -RRB- works 3 +14199 612 -RRB- works 2 +14200 612 due mostly to the tongue-in-cheek attitude of the screenplay 2 +14201 612 due 2 +14202 612 mostly to the tongue-in-cheek attitude of the screenplay 3 +14203 612 to the tongue-in-cheek attitude of the screenplay 3 +14204 612 the tongue-in-cheek attitude of the screenplay 2 +14205 612 the tongue-in-cheek attitude 2 +14206 612 tongue-in-cheek attitude 2 +14207 612 tongue-in-cheek 3 +14208 612 attitude 2 +14209 612 of the screenplay 2 +14210 613 You walk out of The Good Girl with mixed emotions -- disapproval of Justine combined with a tinge of understanding for her actions . 3 +14211 613 walk out of The Good Girl with mixed emotions -- disapproval of Justine combined with a tinge of understanding for her actions . 2 +14212 613 walk out of The Good Girl with mixed emotions -- disapproval of Justine combined with a tinge of understanding for her actions 2 +14213 613 walk out of The Good Girl with mixed emotions -- 1 +14214 613 walk out of The Good Girl with mixed emotions 2 +14215 613 walk out of The Good Girl 1 +14216 613 walk out 2 +14217 613 of The Good Girl 2 +14218 613 The Good Girl 2 +14219 613 Good Girl 2 +14220 613 with mixed emotions 2 +14221 613 mixed emotions 2 +14222 613 disapproval of Justine combined with a tinge of understanding for her actions 2 +14223 613 disapproval of Justine 2 +14224 613 disapproval 1 +14225 613 of Justine 2 +14226 613 Justine 2 +14227 613 combined with a tinge of understanding for her actions 3 +14228 613 combined 2 +14229 613 with a tinge of understanding for her actions 2 +14230 613 a tinge of understanding for her actions 2 +14231 613 a tinge 2 +14232 613 tinge 2 +14233 613 of understanding for her actions 2 +14234 613 understanding for her actions 2 +14235 613 understanding 2 +14236 613 for her actions 2 +14237 613 her actions 2 +14238 614 The movie strains to stay on the light , comic side of the issue , despite the difficulty of doing so when dealing with the destruction of property and , potentially , of life itself . 2 +14239 614 strains to stay on the light , comic side of the issue , despite the difficulty of doing so when dealing with the destruction of property and , potentially , of life itself . 2 +14240 614 strains to stay on the light , comic side of the issue , despite the difficulty of doing so when dealing with the destruction of property and , potentially , of life itself 2 +14241 614 strains 1 +14242 614 to stay on the light , comic side of the issue , despite the difficulty of doing so when dealing with the destruction of property and , potentially , of life itself 2 +14243 614 stay on the light , comic side of the issue , despite the difficulty of doing so when dealing with the destruction of property and , potentially , of life itself 3 +14244 614 stay on the light , comic side of the issue , 2 +14245 614 stay on the light , comic side of the issue 2 +14246 614 stay 2 +14247 614 on the light , comic side of the issue 2 +14248 614 the light , comic side of the issue 3 +14249 614 the light , comic side 3 +14250 614 light , comic side 2 +14251 614 , comic side 2 +14252 614 comic side 2 +14253 614 of the issue 2 +14254 614 the issue 2 +14255 614 despite the difficulty of doing so when dealing with the destruction of property and , potentially , of life itself 2 +14256 614 the difficulty of doing so when dealing with the destruction of property and , potentially , of life itself 2 +14257 614 the difficulty 2 +14258 614 difficulty 1 +14259 614 of doing so when dealing with the destruction of property and , potentially , of life itself 2 +14260 614 doing so when dealing with the destruction of property and , potentially , of life itself 2 +14261 614 so when dealing with the destruction of property and , potentially , of life itself 2 +14262 614 when dealing with the destruction of property and , potentially , of life itself 2 +14263 614 dealing with the destruction of property and , potentially , of life itself 3 +14264 614 dealing with the destruction of property and , potentially , of life 2 +14265 614 dealing 2 +14266 614 with the destruction of property and , potentially , of life 3 +14267 614 with the destruction of property 2 +14268 614 the destruction of property 1 +14269 614 the destruction 2 +14270 614 of property 2 +14271 614 property 2 +14272 614 and , potentially , of life 3 +14273 614 , potentially , of life 2 +14274 614 , potentially , 2 +14275 614 potentially , 2 +14276 614 potentially 2 +14277 615 Unfortunately the story and the actors are served with a hack script . 1 +14278 615 the story and the actors are served with a hack script . 1 +14279 615 the story and the actors 2 +14280 615 are served with a hack script . 1 +14281 615 are served with a hack script 0 +14282 615 served with a hack script 1 +14283 615 served 3 +14284 615 with a hack script 1 +14285 615 a hack script 1 +14286 615 hack script 1 +14287 616 This is an insultingly inept and artificial examination of grief and its impacts upon the relationships of the survivors . 1 +14288 616 is an insultingly inept and artificial examination of grief and its impacts upon the relationships of the survivors . 0 +14289 616 is an insultingly inept and artificial examination of grief and its impacts upon the relationships of the survivors 1 +14290 616 an insultingly inept and artificial examination of grief and its impacts upon the relationships of the survivors 0 +14291 616 an insultingly inept and artificial examination of grief and 0 +14292 616 an insultingly inept and artificial examination of grief 0 +14293 616 an insultingly inept and artificial examination 0 +14294 616 insultingly inept and artificial examination 1 +14295 616 insultingly inept and artificial 0 +14296 616 inept and artificial 1 +14297 616 inept and 1 +14298 616 of grief 2 +14299 616 grief 2 +14300 616 its impacts upon the relationships of the survivors 2 +14301 616 its impacts 2 +14302 616 impacts 3 +14303 616 upon the relationships of the survivors 2 +14304 616 the relationships of the survivors 2 +14305 616 the relationships 2 +14306 616 of the survivors 2 +14307 616 the survivors 3 +14308 616 survivors 2 +14309 617 The immersive powers of the giant screen and its hyper-realistic images are put to perfect use in the breathtakingly beautiful outer-space documentary Space Station 3D . 4 +14310 617 The immersive powers of the giant screen and its hyper-realistic images 4 +14311 617 The immersive powers 3 +14312 617 immersive powers 3 +14313 617 immersive 3 +14314 617 of the giant screen and its hyper-realistic images 3 +14315 617 the giant screen and its hyper-realistic images 3 +14316 617 the giant screen and 2 +14317 617 the giant screen 2 +14318 617 giant screen 2 +14319 617 its hyper-realistic images 2 +14320 617 hyper-realistic images 4 +14321 617 hyper-realistic 3 +14322 617 are put to perfect use in the breathtakingly beautiful outer-space documentary Space Station 3D . 4 +14323 617 are put to perfect use in the breathtakingly beautiful outer-space documentary Space Station 3D 3 +14324 617 put to perfect use in the breathtakingly beautiful outer-space documentary Space Station 3D 4 +14325 617 to perfect use in the breathtakingly beautiful outer-space documentary Space Station 3D 4 +14326 617 perfect use in the breathtakingly beautiful outer-space documentary Space Station 3D 4 +14327 617 use in the breathtakingly beautiful outer-space documentary Space Station 3D 4 +14328 617 in the breathtakingly beautiful outer-space documentary Space Station 3D 3 +14329 617 the breathtakingly beautiful outer-space documentary Space Station 3D 4 +14330 617 breathtakingly beautiful outer-space documentary Space Station 3D 3 +14331 617 beautiful outer-space documentary Space Station 3D 3 +14332 617 outer-space documentary Space Station 3D 2 +14333 617 outer-space 2 +14334 617 documentary Space Station 3D 2 +14335 617 Space Station 3D 2 +14336 617 Space 2 +14337 617 Station 3D 2 +14338 617 Station 2 +14339 617 3D 2 +14340 618 A tired , unnecessary retread ... a stale copy of a picture that was n't all that great to begin with . 0 +14341 618 A tired , unnecessary retread ... a stale copy of a picture that was n't all that great to begin with 0 +14342 618 A tired , unnecessary retread ... 0 +14343 618 A tired , unnecessary retread 0 +14344 618 tired , unnecessary retread 1 +14345 618 tired , unnecessary 1 +14346 618 , unnecessary 1 +14347 618 retread 2 +14348 618 a stale copy of a picture that was n't all that great to begin with 1 +14349 618 a stale copy 1 +14350 618 stale copy 1 +14351 618 of a picture that was n't all that great to begin with 1 +14352 618 a picture that was n't all that great to begin with 0 +14353 618 a picture 2 +14354 618 that was n't all that great to begin with 1 +14355 618 was n't all that great to begin with 1 +14356 618 all that great to begin with 2 +14357 618 all that 2 +14358 618 great to begin with 3 +14359 618 to begin with 2 +14360 618 begin with 3 +14361 618 begin 2 +14362 619 Its initial excitement settles into a warmed over pastiche . 1 +14363 619 Its initial excitement 3 +14364 619 initial excitement 2 +14365 619 excitement 3 +14366 619 settles into a warmed over pastiche . 2 +14367 619 settles into a warmed over pastiche 2 +14368 619 settles 2 +14369 619 into a warmed over pastiche 1 +14370 619 a warmed over pastiche 2 +14371 619 warmed over pastiche 3 +14372 619 warmed over 2 +14373 619 warmed 2 +14374 620 Muccino , who directed from his own screenplay , is a canny crowd pleaser , and The Last Kiss ... provides more than enough sentimental catharsis for a satisfying evening at the multiplex . 4 +14375 620 Muccino , who directed from his own screenplay , 2 +14376 620 Muccino , who directed from his own screenplay 2 +14377 620 Muccino , 2 +14378 620 Muccino 2 +14379 620 who directed from his own screenplay 2 +14380 620 directed from his own screenplay 2 +14381 620 from his own screenplay 2 +14382 620 his own screenplay 2 +14383 620 own screenplay 2 +14384 620 is a canny crowd pleaser , and The Last Kiss ... provides more than enough sentimental catharsis for a satisfying evening at the multiplex . 3 +14385 620 is a canny crowd pleaser , and The Last Kiss ... provides more than enough sentimental catharsis for a satisfying evening at the multiplex 3 +14386 620 a canny crowd pleaser , and The Last Kiss ... provides more than enough sentimental catharsis for a satisfying evening at the multiplex 3 +14387 620 a canny crowd pleaser , and The Last Kiss ... 3 +14388 620 a canny crowd pleaser , and The Last Kiss 4 +14389 620 a canny crowd pleaser , and 3 +14390 620 a canny crowd pleaser , 4 +14391 620 a canny crowd pleaser 4 +14392 620 canny crowd pleaser 3 +14393 620 canny 2 +14394 620 The Last Kiss 3 +14395 620 Last Kiss 2 +14396 620 Kiss 2 +14397 620 provides more than enough sentimental catharsis for a satisfying evening at the multiplex 4 +14398 620 more than enough sentimental catharsis for a satisfying evening at the multiplex 3 +14399 620 more than enough sentimental catharsis 3 +14400 620 more than enough sentimental 2 +14401 620 more than 2 +14402 620 enough sentimental 3 +14403 620 sentimental 3 +14404 620 catharsis 2 +14405 620 for a satisfying evening at the multiplex 3 +14406 620 a satisfying evening at the multiplex 4 +14407 620 a satisfying evening 3 +14408 620 satisfying evening 3 +14409 620 evening 2 +14410 620 at the multiplex 2 +14411 620 the multiplex 2 +14412 620 multiplex 2 +14413 621 It challenges , this nervy oddity , like modern art should . 3 +14414 621 It challenges 2 +14415 621 challenges 1 +14416 621 , this nervy oddity , like modern art should . 3 +14417 621 this nervy oddity , like modern art should . 3 +14418 621 this nervy oddity , like modern art 3 +14419 621 this nervy oddity , 2 +14420 621 this nervy oddity 2 +14421 621 nervy oddity 2 +14422 621 nervy 2 +14423 621 oddity 2 +14424 621 like modern art 2 +14425 621 modern art 3 +14426 621 should . 2 +14427 622 Read My Lips is to be viewed and treasured for its extraordinary intelligence and originality as well as its lyrical variations on the game of love . 4 +14428 622 Read My Lips 1 +14429 622 My Lips 2 +14430 622 Lips 2 +14431 622 is to be viewed and treasured for its extraordinary intelligence and originality as well as its lyrical variations on the game of love . 3 +14432 622 is to be viewed and treasured for its extraordinary intelligence and originality as well as its lyrical variations on the game of love 3 +14433 622 to be viewed and treasured for its extraordinary intelligence and originality as well as its lyrical variations on the game of love 4 +14434 622 be viewed and treasured for its extraordinary intelligence and originality as well as its lyrical variations on the game of love 4 +14435 622 be viewed and treasured for its extraordinary intelligence and originality as well as 3 +14436 622 be viewed and treasured for its extraordinary intelligence and originality 4 +14437 622 viewed and treasured for its extraordinary intelligence and originality 3 +14438 622 viewed and treasured 3 +14439 622 viewed and 2 +14440 622 viewed 2 +14441 622 treasured 3 +14442 622 for its extraordinary intelligence and originality 4 +14443 622 its extraordinary intelligence and originality 4 +14444 622 extraordinary intelligence and originality 4 +14445 622 extraordinary 4 +14446 622 intelligence and originality 3 +14447 622 intelligence and 3 +14448 622 intelligence 3 +14449 622 originality 3 +14450 622 its lyrical variations on the game of love 3 +14451 622 its lyrical variations 2 +14452 622 lyrical variations 2 +14453 622 variations 2 +14454 622 on the game of love 2 +14455 622 the game of love 2 +14456 622 the game 2 +14457 622 of love 2 +14458 623 An hour and a half of joyful solo performance . 4 +14459 623 An hour and a half of joyful solo performance 3 +14460 623 An hour 2 +14461 623 and a half of joyful solo performance 2 +14462 623 and a half 2 +14463 623 a half 2 +14464 623 of joyful solo performance 4 +14465 623 joyful solo performance 3 +14466 623 joyful 4 +14467 623 solo performance 2 +14468 623 solo 3 +14469 624 Like its parade of predecessors , this Halloween is a gory slash-fest . 3 +14470 624 Like its parade of predecessors 2 +14471 624 its parade of predecessors 2 +14472 624 its parade 2 +14473 624 of predecessors 2 +14474 624 , this Halloween is a gory slash-fest . 3 +14475 624 this Halloween is a gory slash-fest . 2 +14476 624 this Halloween 2 +14477 624 Halloween 2 +14478 624 is a gory slash-fest . 2 +14479 624 is a gory slash-fest 1 +14480 624 a gory slash-fest 1 +14481 624 gory slash-fest 2 +14482 624 gory 2 +14483 624 slash-fest 1 +14484 625 Better than the tepid Star Trek : Insurrection ; falls short of First Contact because the villain could n't pick the lint off Borg Queen Alice Krige 's cape ; and finishes half a parsec -LRB- a nose -RRB- ahead of Generations . 2 +14485 625 Better than the tepid Star Trek : Insurrection ; 3 +14486 625 Better than the tepid Star Trek : Insurrection 3 +14487 625 Better than the tepid Star Trek : 3 +14488 625 Better than the tepid Star Trek 3 +14489 625 than the tepid Star Trek 2 +14490 625 the tepid Star Trek 2 +14491 625 tepid Star Trek 1 +14492 625 tepid 1 +14493 625 Star Trek 2 +14494 625 Trek 2 +14495 625 Insurrection 2 +14496 625 falls short of First Contact because the villain could n't pick the lint off Borg Queen Alice Krige 's cape ; and finishes half a parsec -LRB- a nose -RRB- ahead of Generations . 1 +14497 625 falls short of First Contact because the villain could n't pick the lint off Borg Queen Alice Krige 's cape ; and finishes half a parsec -LRB- a nose -RRB- ahead of Generations 1 +14498 625 falls short of First Contact 2 +14499 625 falls 1 +14500 625 short of First Contact 2 +14501 625 of First Contact 2 +14502 625 First Contact 2 +14503 625 because the villain could n't pick the lint off Borg Queen Alice Krige 's cape ; and finishes half a parsec -LRB- a nose -RRB- ahead of Generations 1 +14504 625 the villain could n't pick the lint off Borg Queen Alice Krige 's cape ; and finishes half a parsec -LRB- a nose -RRB- ahead of Generations 2 +14505 625 the villain 2 +14506 625 villain 1 +14507 625 could n't pick the lint off Borg Queen Alice Krige 's cape ; and finishes half a parsec -LRB- a nose -RRB- ahead of Generations 2 +14508 625 could n't pick the lint off Borg Queen Alice Krige 's cape ; and 1 +14509 625 could n't pick the lint off Borg Queen Alice Krige 's cape ; 1 +14510 625 could n't pick the lint off Borg Queen Alice Krige 's cape 0 +14511 625 could n't 1 +14512 625 pick the lint off Borg Queen Alice Krige 's cape 2 +14513 625 pick the lint 2 +14514 625 pick 2 +14515 625 the lint 2 +14516 625 lint 2 +14517 625 off Borg Queen Alice Krige 's cape 2 +14518 625 Borg Queen Alice Krige 's cape 2 +14519 625 Borg Queen Alice Krige 's 2 +14520 625 Borg 1 +14521 625 Queen Alice Krige 's 2 +14522 625 Alice Krige 's 2 +14523 625 Alice 2 +14524 625 Krige 's 2 +14525 625 Krige 2 +14526 625 cape 2 +14527 625 finishes half a parsec -LRB- a nose -RRB- ahead of Generations 2 +14528 625 finishes 2 +14529 625 half a parsec -LRB- a nose -RRB- ahead of Generations 3 +14530 625 half a parsec -LRB- a nose -RRB- 2 +14531 625 half a parsec 2 +14532 625 a parsec 2 +14533 625 parsec 2 +14534 625 -LRB- a nose -RRB- 2 +14535 625 a nose -RRB- 2 +14536 625 a nose 2 +14537 625 nose 2 +14538 625 ahead of Generations 2 +14539 625 ahead 2 +14540 625 of Generations 2 +14541 625 Generations 2 +14542 626 Exploits -LRB- headbanger -RRB- stereotypes in good fun , while adding a bit of heart and unsettling subject matter . 3 +14543 626 Exploits -LRB- headbanger -RRB- 1 +14544 626 Exploits 2 +14545 626 -LRB- headbanger -RRB- 3 +14546 626 headbanger -RRB- 2 +14547 626 headbanger 2 +14548 626 stereotypes in good fun , while adding a bit of heart and unsettling subject matter . 4 +14549 626 stereotypes in good fun , while adding a bit of heart and unsettling subject matter 3 +14550 626 stereotypes in good fun , 3 +14551 626 stereotypes in good fun 3 +14552 626 stereotypes 1 +14553 626 in good fun 3 +14554 626 while adding a bit of heart and unsettling subject matter 3 +14555 626 adding a bit of heart and unsettling subject matter 2 +14556 626 adding 3 +14557 626 a bit of heart and unsettling subject matter 3 +14558 626 of heart and unsettling subject matter 3 +14559 626 heart and unsettling subject matter 3 +14560 626 and unsettling subject matter 1 +14561 626 unsettling subject matter 1 +14562 626 subject matter 2 +14563 627 It 's just rather leaden and dull . 0 +14564 627 's just rather leaden and dull . 1 +14565 627 's just rather leaden and dull 1 +14566 627 rather leaden and dull 1 +14567 627 leaden and dull 0 +14568 627 leaden and 1 +14569 627 leaden 1 +14570 628 Rice never clearly defines his characters or gives us a reason to care about them . 1 +14571 628 never clearly defines his characters or gives us a reason to care about them . 0 +14572 628 never clearly defines his characters or gives us a reason to care about them 2 +14573 628 never clearly defines his characters or 1 +14574 628 never clearly defines his characters 1 +14575 628 clearly defines his characters 2 +14576 628 defines his characters 2 +14577 628 defines 2 +14578 628 his characters 2 +14579 628 gives us a reason to care about them 3 +14580 628 a reason to care about them 2 +14581 628 reason to care about them 2 +14582 628 to care about them 3 +14583 628 care about them 2 +14584 628 about them 2 +14585 629 Although the subject matter may still be too close to recent national events , the film works - mostly due to its superior cast of characters . 3 +14586 629 Although the subject matter may still be too close to recent national events 2 +14587 629 the subject matter may still be too close to recent national events 2 +14588 629 the subject matter 2 +14589 629 may still be too close to recent national events 2 +14590 629 may still 2 +14591 629 be too close to recent national events 2 +14592 629 too close to recent national events 2 +14593 629 close to recent national events 2 +14594 629 close 2 +14595 629 to recent national events 2 +14596 629 recent national events 2 +14597 629 national events 2 +14598 629 , the film works - mostly due to its superior cast of characters . 4 +14599 629 the film works - mostly due to its superior cast of characters . 3 +14600 629 works - mostly due to its superior cast of characters . 3 +14601 629 works - mostly due to its superior cast of characters 3 +14602 629 works - mostly due to its superior cast 3 +14603 629 works - 3 +14604 629 mostly due to its superior cast 4 +14605 629 mostly due 2 +14606 629 to its superior cast 4 +14607 629 its superior cast 4 +14608 629 superior cast 4 +14609 629 of characters 2 +14610 630 A deeply felt and vividly detailed story about newcomers in a strange new world . 3 +14611 630 deeply felt and vividly detailed story about newcomers in a strange new world . 3 +14612 630 felt and vividly detailed story about newcomers in a strange new world . 3 +14613 630 felt and vividly detailed story about newcomers in a strange new world 3 +14614 630 felt and 2 +14615 630 vividly detailed story about newcomers in a strange new world 4 +14616 630 vividly 3 +14617 630 detailed story about newcomers in a strange new world 3 +14618 630 detailed story 2 +14619 630 detailed 3 +14620 630 about newcomers in a strange new world 2 +14621 630 newcomers in a strange new world 2 +14622 630 newcomers 2 +14623 630 in a strange new world 2 +14624 630 a strange new world 2 +14625 630 strange new world 2 +14626 630 new world 2 +14627 631 The film 's darker moments become smoothed over by an overwhelming need to tender inspirational tidings , especially in the last few cloying moments . 2 +14628 631 The film 's darker moments become smoothed over by an overwhelming need to tender inspirational tidings , especially in the last few cloying moments 1 +14629 631 The film 's darker moments become 2 +14630 631 The film 's darker moments 2 +14631 631 darker moments 2 +14632 631 darker 1 +14633 631 smoothed over by an overwhelming need to tender inspirational tidings , especially in the last few cloying moments 2 +14634 631 smoothed over by an overwhelming need to tender inspirational tidings , especially 2 +14635 631 smoothed over by an overwhelming need to tender inspirational tidings , 2 +14636 631 smoothed over by an overwhelming need to tender inspirational tidings 2 +14637 631 smoothed over 2 +14638 631 smoothed 2 +14639 631 by an overwhelming need to tender inspirational tidings 2 +14640 631 an overwhelming need to tender inspirational tidings 2 +14641 631 overwhelming need to tender inspirational tidings 2 +14642 631 overwhelming 1 +14643 631 need to tender inspirational tidings 2 +14644 631 to tender inspirational tidings 2 +14645 631 tender inspirational tidings 3 +14646 631 inspirational tidings 2 +14647 631 inspirational 4 +14648 631 tidings 2 +14649 631 in the last few cloying moments 1 +14650 631 the last few cloying moments 2 +14651 631 last few cloying moments 2 +14652 631 few cloying moments 2 +14653 631 cloying moments 2 +14654 631 cloying 2 +14655 632 From the opening strains of the Average White Band 's `` Pick up the Pieces '' , you can feel the love . 3 +14656 632 From the opening strains of the Average White Band 's `` Pick up the Pieces '' 2 +14657 632 the opening strains of the Average White Band 's `` Pick up the Pieces '' 2 +14658 632 the opening strains 2 +14659 632 opening strains 2 +14660 632 opening 2 +14661 632 of the Average White Band 's `` Pick up the Pieces '' 2 +14662 632 the Average White Band 's `` Pick up the Pieces '' 2 +14663 632 the Average White Band 's `` Pick up the Pieces 1 +14664 632 the Average White Band 's `` 2 +14665 632 the Average White Band 's 2 +14666 632 Average White Band 's 2 +14667 632 Average 2 +14668 632 White Band 's 2 +14669 632 Band 's 2 +14670 632 Pick up the Pieces 2 +14671 632 up the Pieces 2 +14672 632 the Pieces 2 +14673 632 , you can feel the love . 3 +14674 632 you can feel the love . 3 +14675 632 can feel the love . 3 +14676 632 can feel the love 3 +14677 632 feel the love 3 +14678 632 the love 3 +14679 633 Its impressive images of crematorium chimney fires and stacks of dead bodies are undermined by the movie 's presentation , which is way too stagy . 1 +14680 633 Its impressive images of crematorium chimney fires and stacks of dead bodies 3 +14681 633 Its impressive images 3 +14682 633 impressive images 4 +14683 633 impressive 4 +14684 633 of crematorium chimney fires and stacks of dead bodies 2 +14685 633 crematorium chimney fires and stacks of dead bodies 0 +14686 633 crematorium chimney fires and stacks 2 +14687 633 crematorium 1 +14688 633 chimney fires and stacks 2 +14689 633 chimney 2 +14690 633 fires and stacks 2 +14691 633 fires and 2 +14692 633 fires 2 +14693 633 stacks 2 +14694 633 of dead bodies 3 +14695 633 dead bodies 1 +14696 633 are undermined by the movie 's presentation , which is way too stagy . 1 +14697 633 are undermined by the movie 's presentation , which is way too stagy 1 +14698 633 undermined by the movie 's presentation , which is way too stagy 1 +14699 633 undermined 2 +14700 633 by the movie 's presentation , which is way too stagy 1 +14701 633 the movie 's presentation , which is way too stagy 1 +14702 633 the movie 's presentation , 2 +14703 633 the movie 's presentation 2 +14704 633 presentation 2 +14705 633 which is way too stagy 0 +14706 633 is way too stagy 1 +14707 633 too stagy 1 +14708 633 stagy 2 +14709 634 Triple X is a double agent , and he 's one bad dude . 3 +14710 634 Triple X is a double agent , and he 's one bad dude 3 +14711 634 Triple X is a double agent , and 2 +14712 634 Triple X is a double agent , 2 +14713 634 Triple X is a double agent 2 +14714 634 Triple X 3 +14715 634 Triple 2 +14716 634 is a double agent 2 +14717 634 a double agent 2 +14718 634 double agent 2 +14719 634 double 2 +14720 634 agent 2 +14721 634 he 's one bad dude 2 +14722 634 's one bad dude 2 +14723 634 one bad dude 2 +14724 634 bad dude 2 +14725 634 dude 2 +14726 635 There has been a string of ensemble cast romances recently ... but Peter Mattei 's Love in the Time of Money sets itself apart by forming a chain of relationships that come full circle to end on a positive -LRB- if tragic -RRB- note . 3 +14727 635 There has been a string of ensemble cast romances recently ... but Peter Mattei 's Love in the Time of Money sets itself apart by forming a chain of relationships that come full circle to end on a positive -LRB- if tragic -RRB- note 4 +14728 635 There has been a string of ensemble cast romances recently ... but 2 +14729 635 There has been a string of ensemble cast romances recently ... 2 +14730 635 There has been a string of ensemble cast romances recently 2 +14731 635 has been a string of ensemble cast romances recently 2 +14732 635 been a string of ensemble cast romances recently 2 +14733 635 a string of ensemble cast romances recently 3 +14734 635 a string 2 +14735 635 of ensemble cast romances recently 2 +14736 635 ensemble cast romances recently 3 +14737 635 ensemble cast romances 2 +14738 635 cast romances 2 +14739 635 romances 2 +14740 635 recently 2 +14741 635 Peter Mattei 's Love in the Time of Money sets itself apart by forming a chain of relationships that come full circle to end on a positive -LRB- if tragic -RRB- note 4 +14742 635 Peter Mattei 's Love in the Time of Money 2 +14743 635 Peter Mattei 's Love 2 +14744 635 Peter Mattei 's 2 +14745 635 Mattei 's 2 +14746 635 Mattei 2 +14747 635 in the Time of Money 2 +14748 635 the Time of Money 2 +14749 635 sets itself apart by forming a chain of relationships that come full circle to end on a positive -LRB- if tragic -RRB- note 4 +14750 635 sets itself 2 +14751 635 apart by forming a chain of relationships that come full circle to end on a positive -LRB- if tragic -RRB- note 3 +14752 635 by forming a chain of relationships that come full circle to end on a positive -LRB- if tragic -RRB- note 3 +14753 635 forming a chain of relationships that come full circle to end on a positive -LRB- if tragic -RRB- note 3 +14754 635 forming 2 +14755 635 a chain of relationships that come full circle to end on a positive -LRB- if tragic -RRB- note 3 +14756 635 a chain 2 +14757 635 chain 2 +14758 635 of relationships that come full circle to end on a positive -LRB- if tragic -RRB- note 3 +14759 635 relationships that come full circle to end on a positive -LRB- if tragic -RRB- note 2 +14760 635 that come full circle to end on a positive -LRB- if tragic -RRB- note 3 +14761 635 come full circle to end on a positive -LRB- if tragic -RRB- note 3 +14762 635 come full circle 2 +14763 635 full circle 3 +14764 635 circle 2 +14765 635 to end on a positive -LRB- if tragic -RRB- note 3 +14766 635 end on a positive -LRB- if tragic -RRB- note 3 +14767 635 on a positive -LRB- if tragic -RRB- note 3 +14768 635 a positive -LRB- if tragic -RRB- note 3 +14769 635 positive -LRB- if tragic -RRB- note 4 +14770 635 positive -LRB- if tragic -RRB- 3 +14771 635 positive 3 +14772 635 -LRB- if tragic -RRB- 2 +14773 635 if tragic -RRB- 1 +14774 635 tragic -RRB- 1 +14775 635 tragic 2 +14776 635 note 2 +14777 636 This is popcorn movie fun with equal doses of action , cheese , ham and cheek -LRB- as well as a serious debt to The Road Warrior -RRB- , but it feels like unrealized potential 3 +14778 636 This is popcorn movie fun with equal doses of action , cheese , ham and cheek -LRB- as well as a serious debt to The Road Warrior -RRB- , but 3 +14779 636 This is popcorn movie fun with equal doses of action , cheese , ham and cheek -LRB- as well as a serious debt to The Road Warrior -RRB- , 2 +14780 636 This is popcorn movie fun with equal doses of action , cheese , ham and cheek -LRB- as well as a serious debt to The Road Warrior -RRB- 4 +14781 636 is popcorn movie fun with equal doses of action , cheese , ham and cheek -LRB- as well as a serious debt to The Road Warrior -RRB- 2 +14782 636 popcorn movie fun with equal doses of action , cheese , ham and cheek -LRB- as well as a serious debt to The Road Warrior -RRB- 2 +14783 636 popcorn movie fun 4 +14784 636 movie fun 3 +14785 636 with equal doses of action , cheese , ham and cheek -LRB- as well as a serious debt to The Road Warrior -RRB- 2 +14786 636 equal doses of action , cheese , ham and cheek -LRB- as well as a serious debt to The Road Warrior -RRB- 2 +14787 636 equal doses of action , cheese , ham and cheek 3 +14788 636 equal doses 2 +14789 636 equal 2 +14790 636 doses 2 +14791 636 of action , cheese , ham and cheek 2 +14792 636 action , cheese , ham and cheek 2 +14793 636 , cheese , ham and cheek 2 +14794 636 cheese , ham and cheek 2 +14795 636 cheese 2 +14796 636 , ham and cheek 2 +14797 636 ham and cheek 2 +14798 636 ham and 2 +14799 636 ham 2 +14800 636 cheek 2 +14801 636 -LRB- as well as a serious debt to The Road Warrior -RRB- 2 +14802 636 -LRB- as well as a serious debt to The Road Warrior 2 +14803 636 -LRB- as well as 2 +14804 636 a serious debt to The Road Warrior 3 +14805 636 a serious debt 2 +14806 636 serious debt 2 +14807 636 debt 2 +14808 636 to The Road Warrior 3 +14809 636 The Road Warrior 3 +14810 636 Road Warrior 2 +14811 636 Warrior 2 +14812 636 it feels like unrealized potential 1 +14813 636 feels like unrealized potential 2 +14814 636 like unrealized potential 2 +14815 636 unrealized potential 2 +14816 636 unrealized 1 +14817 636 potential 3 +14818 637 As an actress , Madonna is one helluva singer . 4 +14819 637 As an actress 2 +14820 637 an actress 3 +14821 637 , Madonna is one helluva singer . 4 +14822 637 Madonna is one helluva singer . 4 +14823 637 is one helluva singer . 4 +14824 637 is one helluva singer 3 +14825 637 one helluva singer 4 +14826 637 helluva singer 3 +14827 637 helluva 2 +14828 637 singer 2 +14829 638 Jaglom offers the none-too-original premise that everyone involved with moviemaking is a con artist and a liar . 1 +14830 638 offers the none-too-original premise that everyone involved with moviemaking is a con artist and a liar . 1 +14831 638 offers the none-too-original premise that everyone involved with moviemaking is a con artist and a liar 0 +14832 638 offers the none-too-original premise 1 +14833 638 the none-too-original premise 1 +14834 638 none-too-original premise 1 +14835 638 none-too-original 1 +14836 638 premise 2 +14837 638 that everyone involved with moviemaking is a con artist and a liar 1 +14838 638 everyone involved with moviemaking is a con artist and a liar 1 +14839 638 everyone involved with moviemaking 2 +14840 638 involved with moviemaking 2 +14841 638 with moviemaking 2 +14842 638 is a con artist and a liar 2 +14843 638 a con artist and a liar 2 +14844 638 a con artist and 3 +14845 638 a con artist 2 +14846 638 con artist 2 +14847 638 con 1 +14848 638 a liar 2 +14849 638 liar 2 +14850 639 The filmmakers ' eye for detail and the high standards of performance convey a strong sense of the girls ' environment . 3 +14851 639 The filmmakers ' eye for detail and the high standards of performance 3 +14852 639 The filmmakers ' eye for detail and 3 +14853 639 The filmmakers ' eye for detail 3 +14854 639 The filmmakers ' eye 2 +14855 639 for detail 2 +14856 639 detail 3 +14857 639 the high standards of performance 3 +14858 639 the high standards 3 +14859 639 high standards 3 +14860 639 of performance 2 +14861 639 convey a strong sense of the girls ' environment . 3 +14862 639 convey a strong sense of the girls ' environment 3 +14863 639 convey 2 +14864 639 a strong sense of the girls ' environment 2 +14865 639 a strong sense 2 +14866 639 strong sense 2 +14867 639 of the girls ' environment 2 +14868 639 the girls ' environment 2 +14869 639 the girls ' 2 +14870 639 girls ' 2 +14871 639 girls 2 +14872 639 environment 2 +14873 640 It wraps up a classic mother\/daughter struggle in recycled paper with a shiny new bow and while the audience can tell it 's not all new , at least it looks pretty . 2 +14874 640 It wraps up a classic mother\/daughter struggle in recycled paper with a shiny new bow and while the audience can tell it 's not all new , at least it looks pretty 3 +14875 640 It wraps up a classic mother\/daughter struggle in recycled paper with a shiny new bow and 2 +14876 640 It wraps up a classic mother\/daughter struggle in recycled paper with a shiny new bow 2 +14877 640 wraps up a classic mother\/daughter struggle in recycled paper with a shiny new bow 2 +14878 640 wraps up 3 +14879 640 wraps 2 +14880 640 a classic mother\/daughter struggle in recycled paper with a shiny new bow 1 +14881 640 a classic mother\/daughter struggle 3 +14882 640 classic mother\/daughter struggle 3 +14883 640 classic 3 +14884 640 mother\/daughter struggle 2 +14885 640 mother\/daughter 2 +14886 640 in recycled paper with a shiny new bow 2 +14887 640 recycled paper with a shiny new bow 2 +14888 640 recycled paper 2 +14889 640 with a shiny new bow 2 +14890 640 a shiny new bow 2 +14891 640 shiny new bow 3 +14892 640 shiny 2 +14893 640 new bow 2 +14894 640 bow 2 +14895 640 while the audience can tell it 's not all new , at least it looks pretty 3 +14896 640 while the audience can tell it 's not all new 1 +14897 640 the audience can tell it 's not all new 3 +14898 640 the audience 2 +14899 640 can tell it 's not all new 2 +14900 640 tell it 's not all new 1 +14901 640 it 's not all new 1 +14902 640 's not all new 1 +14903 640 all new 3 +14904 640 , at least it looks pretty 2 +14905 640 at least it looks pretty 3 +14906 640 it looks pretty 3 +14907 640 looks pretty 3 +14908 641 or maybe `` How will you feel after an 88-minute rip-off of The Rock with action confined to slo-mo gun firing and random glass-shattering ? '' 0 +14909 641 maybe `` How will you feel after an 88-minute rip-off of The Rock with action confined to slo-mo gun firing and random glass-shattering ? '' 0 +14910 641 `` How will you feel after an 88-minute rip-off of The Rock with action confined to slo-mo gun firing and random glass-shattering ? '' 1 +14911 641 How will you feel after an 88-minute rip-off of The Rock with action confined to slo-mo gun firing and random glass-shattering ? '' 1 +14912 641 will you feel after an 88-minute rip-off of The Rock with action confined to slo-mo gun firing and random glass-shattering ? '' 0 +14913 641 will you feel after an 88-minute rip-off of The Rock with action confined to slo-mo gun firing and random glass-shattering ? 0 +14914 641 will you feel after an 88-minute rip-off of The Rock with action confined to slo-mo gun firing and random glass-shattering 0 +14915 641 will you 2 +14916 641 feel after an 88-minute rip-off of The Rock with action confined to slo-mo gun firing and random glass-shattering 1 +14917 641 feel after an 88-minute rip-off of The Rock 1 +14918 641 after an 88-minute rip-off of The Rock 0 +14919 641 an 88-minute rip-off of The Rock 0 +14920 641 an 88-minute rip-off 0 +14921 641 88-minute rip-off 0 +14922 641 88-minute 2 +14923 641 of The Rock 2 +14924 641 The Rock 2 +14925 641 with action confined to slo-mo gun firing and random glass-shattering 1 +14926 641 action confined to slo-mo gun firing and random glass-shattering 1 +14927 641 confined to slo-mo gun firing and random glass-shattering 2 +14928 641 confined 1 +14929 641 to slo-mo gun firing and random glass-shattering 2 +14930 641 slo-mo gun firing and random glass-shattering 2 +14931 641 slo-mo gun firing and 2 +14932 641 slo-mo gun firing 2 +14933 641 slo-mo 2 +14934 641 gun firing 2 +14935 641 gun 2 +14936 641 firing 2 +14937 641 random glass-shattering 1 +14938 641 glass-shattering 2 +14939 642 Enough may pander to our basest desires for payback , but unlike many revenge fantasies , it ultimately delivers . 3 +14940 642 Enough may pander to our basest desires for payback , but unlike many revenge fantasies , it ultimately delivers 4 +14941 642 Enough may pander to our basest desires for payback , but 2 +14942 642 Enough may pander to our basest desires for payback , 2 +14943 642 Enough may pander to our basest desires for payback 2 +14944 642 may pander to our basest desires for payback 3 +14945 642 pander to our basest desires for payback 2 +14946 642 pander to our basest desires 3 +14947 642 pander 2 +14948 642 to our basest desires 3 +14949 642 our basest desires 2 +14950 642 basest desires 2 +14951 642 basest 2 +14952 642 desires 2 +14953 642 for payback 2 +14954 642 payback 2 +14955 642 unlike many revenge fantasies , it ultimately delivers 4 +14956 642 unlike many revenge fantasies 2 +14957 642 unlike 1 +14958 642 many revenge fantasies 2 +14959 642 revenge fantasies 2 +14960 642 , it ultimately delivers 4 +14961 642 it ultimately delivers 3 +14962 642 ultimately delivers 3 +14963 643 How can such a cold movie claim to express warmth and longing ? 1 +14964 643 can such a cold movie claim to express warmth and longing ? 0 +14965 643 can such a cold movie claim to express warmth and longing 2 +14966 643 can such a cold movie 1 +14967 643 such a cold movie 2 +14968 643 a cold movie 1 +14969 643 cold movie 1 +14970 643 claim to express warmth and longing 3 +14971 643 claim 2 +14972 643 to express warmth and longing 2 +14973 643 express warmth and longing 3 +14974 643 express 2 +14975 643 warmth and longing 3 +14976 643 warmth and 3 +14977 643 warmth 4 +14978 643 longing 2 +14979 644 Only at the prospect of Beck 's next project . 2 +14980 644 Only at the prospect of Beck 's next project 2 +14981 644 at the prospect of Beck 's next project 2 +14982 644 the prospect of Beck 's next project 2 +14983 644 the prospect 2 +14984 644 prospect 2 +14985 644 of Beck 's next project 2 +14986 644 Beck 's next project 2 +14987 644 Beck 's 2 +14988 644 Beck 2 +14989 644 next project 2 +14990 645 ... a vivid , thoughtful , unapologetically raw coming-of-age tale full of sex , drugs and rock 'n' roll . 4 +14991 645 a vivid , thoughtful , unapologetically raw coming-of-age tale full of sex , drugs and rock 'n' roll . 3 +14992 645 a vivid , thoughtful , unapologetically raw coming-of-age tale full of sex , drugs and rock 3 +14993 645 a vivid , thoughtful , unapologetically raw coming-of-age tale 4 +14994 645 vivid , thoughtful , unapologetically raw coming-of-age tale 4 +14995 645 vivid , thoughtful , unapologetically raw 3 +14996 645 vivid 3 +14997 645 , thoughtful , unapologetically raw 3 +14998 645 thoughtful , unapologetically raw 3 +14999 645 , unapologetically raw 2 +15000 645 unapologetically raw 2 +15001 645 unapologetically 2 +15002 645 coming-of-age tale 2 +15003 645 full of sex , drugs and rock 3 +15004 645 of sex , drugs and rock 2 +15005 645 sex , drugs and rock 2 +15006 645 , drugs and rock 2 +15007 645 drugs and rock 2 +15008 645 drugs and 2 +15009 645 drugs 2 +15010 645 'n' roll . 2 +15011 645 'n' roll 2 +15012 645 'n' 2 +15013 646 A bittersweet contemporary comedy about benevolent deception , which , while it may not rival the filmmaker 's period pieces , is still very much worth seeing . 4 +15014 646 A bittersweet contemporary comedy about benevolent deception , which , while it may not rival the filmmaker 's period pieces , is still very much worth seeing 4 +15015 646 A bittersweet contemporary comedy 1 +15016 646 bittersweet contemporary comedy 3 +15017 646 bittersweet 3 +15018 646 contemporary comedy 2 +15019 646 about benevolent deception , which , while it may not rival the filmmaker 's period pieces , is still very much worth seeing 2 +15020 646 benevolent deception , which , while it may not rival the filmmaker 's period pieces , is still very much worth seeing 3 +15021 646 benevolent deception , 2 +15022 646 benevolent deception 2 +15023 646 benevolent 2 +15024 646 deception 1 +15025 646 which , while it may not rival the filmmaker 's period pieces , is still very much worth seeing 3 +15026 646 , while it may not rival the filmmaker 's period pieces , is still very much worth seeing 4 +15027 646 , while it may not rival the filmmaker 's period pieces , 2 +15028 646 while it may not rival the filmmaker 's period pieces , 2 +15029 646 while it may not rival the filmmaker 's period pieces 2 +15030 646 it may not rival the filmmaker 's period pieces 2 +15031 646 may not rival the filmmaker 's period pieces 1 +15032 646 rival the filmmaker 's period pieces 3 +15033 646 rival 1 +15034 646 the filmmaker 's period pieces 2 +15035 646 period pieces 2 +15036 646 is still very much worth seeing 3 +15037 646 is still very much worth 4 +15038 646 very much worth 4 +15039 646 much worth 3 +15040 647 Shankman ... and screenwriter Karen Janszen bungle their way through the narrative as if it were a series of Bible parables and not an actual story . 0 +15041 647 Shankman ... and screenwriter Karen Janszen 2 +15042 647 Shankman ... and screenwriter 2 +15043 647 Shankman 2 +15044 647 ... and screenwriter 2 +15045 647 Karen Janszen 2 +15046 647 Karen 2 +15047 647 Janszen 2 +15048 647 bungle their way through the narrative as if it were a series of Bible parables and not an actual story . 0 +15049 647 bungle their way through the narrative as if it were a series of Bible parables and not an actual story 0 +15050 647 bungle their way through the narrative 1 +15051 647 bungle their way 1 +15052 647 bungle 2 +15053 647 their way 2 +15054 647 through the narrative 2 +15055 647 as if it were a series of Bible parables and not an actual story 2 +15056 647 if it were a series of Bible parables and not an actual story 2 +15057 647 it were a series of Bible parables and not an actual story 2 +15058 647 were a series of Bible parables and not an actual story 1 +15059 647 a series of Bible parables and not an actual story 2 +15060 647 of Bible parables and not an actual story 1 +15061 647 Bible parables and not an actual story 2 +15062 647 Bible parables and 2 +15063 647 Bible parables 2 +15064 647 Bible 2 +15065 647 parables 2 +15066 647 not an actual story 2 +15067 647 an actual story 3 +15068 647 actual story 2 +15069 647 actual 2 +15070 648 They can and will turn on a dime from oddly humorous to tediously sentimental . 3 +15071 648 can and will turn on a dime from oddly humorous to tediously sentimental . 2 +15072 648 can and will turn on a dime from oddly humorous to tediously sentimental 2 +15073 648 can and will 2 +15074 648 can and 2 +15075 648 turn on a dime from oddly humorous to tediously sentimental 2 +15076 648 turn on a dime 2 +15077 648 on a dime 2 +15078 648 a dime 3 +15079 648 dime 2 +15080 648 from oddly humorous to tediously sentimental 2 +15081 648 oddly humorous to tediously sentimental 3 +15082 648 oddly humorous 4 +15083 648 oddly 2 +15084 648 to tediously sentimental 2 +15085 648 tediously sentimental 2 +15086 648 tediously 1 +15087 649 It 's a terrible movie in every regard , and utterly painful to watch . 0 +15088 649 's a terrible movie in every regard , and utterly painful to watch . 0 +15089 649 's a terrible movie in every regard , and utterly painful to watch 0 +15090 649 's a terrible movie in every regard , and 0 +15091 649 's a terrible movie in every regard , 0 +15092 649 's a terrible movie in every regard 0 +15093 649 a terrible movie in every regard 0 +15094 649 a terrible movie 0 +15095 649 terrible movie 1 +15096 649 terrible 1 +15097 649 in every regard 2 +15098 649 every regard 2 +15099 649 regard 3 +15100 649 utterly painful to watch 0 +15101 649 utterly painful 1 +15102 649 painful 1 +15103 650 Why spend $ 9 on the same stuff you can get for a buck or so in that greasy little vidgame pit in the theater lobby ? 0 +15104 650 spend $ 9 on the same stuff you can get for a buck or so in that greasy little vidgame pit in the theater lobby ? 0 +15105 650 spend $ 9 on the same stuff you can get for a buck or so in that greasy little vidgame pit in the theater lobby 0 +15106 650 spend $ 9 2 +15107 650 spend 2 +15108 650 $ 9 2 +15109 650 9 2 +15110 650 on the same stuff you can get for a buck or so in that greasy little vidgame pit in the theater lobby 2 +15111 650 the same stuff you can get for a buck or so in that greasy little vidgame pit in the theater lobby 1 +15112 650 the same stuff 2 +15113 650 same stuff 1 +15114 650 you can get for a buck or so in that greasy little vidgame pit in the theater lobby 2 +15115 650 can get for a buck or so in that greasy little vidgame pit in the theater lobby 1 +15116 650 get for a buck or so in that greasy little vidgame pit in the theater lobby 1 +15117 650 get for a buck or so 2 +15118 650 for a buck or so 2 +15119 650 a buck or so 2 +15120 650 buck or so 2 +15121 650 buck or 1 +15122 650 buck 2 +15123 650 in that greasy little vidgame pit in the theater lobby 1 +15124 650 that greasy little vidgame pit in the theater lobby 1 +15125 650 that greasy little vidgame pit 2 +15126 650 greasy little vidgame pit 1 +15127 650 greasy 2 +15128 650 little vidgame pit 1 +15129 650 vidgame pit 2 +15130 650 vidgame 2 +15131 650 pit 2 +15132 650 in the theater lobby 2 +15133 650 the theater lobby 2 +15134 650 theater lobby 2 +15135 650 lobby 2 +15136 651 Evokes the 19th century with a subtlety that is an object lesson in period filmmaking . 3 +15137 651 Evokes the 19th century with a subtlety that is an object lesson in period filmmaking 4 +15138 651 Evokes the 19th century 2 +15139 651 the 19th century 2 +15140 651 19th century 2 +15141 651 19th 2 +15142 651 century 2 +15143 651 with a subtlety that is an object lesson in period filmmaking 3 +15144 651 a subtlety that is an object lesson in period filmmaking 3 +15145 651 a subtlety 2 +15146 651 that is an object lesson in period filmmaking 2 +15147 651 is an object lesson in period filmmaking 3 +15148 651 an object lesson in period filmmaking 3 +15149 651 an object lesson 2 +15150 651 object lesson 3 +15151 651 object 2 +15152 651 lesson 2 +15153 651 in period filmmaking 2 +15154 651 period filmmaking 2 +15155 652 All three actresses are simply dazzling , particularly Balk , who 's finally been given a part worthy of her considerable talents . 4 +15156 652 All three actresses 2 +15157 652 three actresses 2 +15158 652 actresses 2 +15159 652 are simply dazzling , particularly Balk , who 's finally been given a part worthy of her considerable talents . 4 +15160 652 are simply dazzling , particularly Balk , who 's finally been given a part worthy of her considerable talents 3 +15161 652 are simply dazzling , 3 +15162 652 are simply dazzling 3 +15163 652 are simply 2 +15164 652 dazzling 4 +15165 652 particularly Balk , who 's finally been given a part worthy of her considerable talents 3 +15166 652 Balk , who 's finally been given a part worthy of her considerable talents 3 +15167 652 Balk , 2 +15168 652 Balk 2 +15169 652 who 's finally been given a part worthy of her considerable talents 4 +15170 652 's finally been given a part worthy of her considerable talents 3 +15171 652 been given a part worthy of her considerable talents 3 +15172 652 given a part worthy of her considerable talents 4 +15173 652 given a part 2 +15174 652 worthy of her considerable talents 3 +15175 652 of her considerable talents 3 +15176 652 her considerable talents 4 +15177 652 considerable talents 4 +15178 652 talents 3 +15179 653 The beautiful , unusual music is this film 's chief draw , but its dreaminess may lull you to sleep . 2 +15180 653 The beautiful , unusual music is this film 's chief draw , but its dreaminess may lull you to sleep 2 +15181 653 The beautiful , unusual music is this film 's chief draw , but 2 +15182 653 The beautiful , unusual music is this film 's chief draw , 3 +15183 653 The beautiful , unusual music is this film 's chief draw 3 +15184 653 The beautiful , unusual music 3 +15185 653 beautiful , unusual music 3 +15186 653 , unusual music 2 +15187 653 unusual music 3 +15188 653 unusual 2 +15189 653 is this film 's chief draw 3 +15190 653 this film 's chief draw 3 +15191 653 this film 's 2 +15192 653 chief draw 2 +15193 653 chief 2 +15194 653 draw 2 +15195 653 its dreaminess may lull you to sleep 1 +15196 653 its dreaminess 3 +15197 653 dreaminess 3 +15198 653 may lull you to sleep 1 +15199 653 lull you to sleep 1 +15200 653 lull 2 +15201 653 you to sleep 2 +15202 653 to sleep 2 +15203 653 sleep 1 +15204 654 You may be captivated , as I was , by its moods , and by its subtly transformed star , and still wonder why Paul Thomas Anderson ever had the inclination to make the most sincere and artful movie in which Adam Sandler will probably ever appear . 3 +15205 654 may be captivated , as I was , by its moods , and by its subtly transformed star , and still wonder why Paul Thomas Anderson ever had the inclination to make the most sincere and artful movie in which Adam Sandler will probably ever appear . 3 +15206 654 may be captivated , as I was , by its moods , and by its subtly transformed star , and still wonder why Paul Thomas Anderson ever had the inclination to make the most sincere and artful movie in which Adam Sandler will probably ever appear 4 +15207 654 be captivated , as I was , by its moods , and by its subtly transformed star , and still wonder why Paul Thomas Anderson ever had the inclination to make the most sincere and artful movie in which Adam Sandler will probably ever appear 4 +15208 654 be captivated , as I was , by its moods , and by its subtly transformed star , and still 3 +15209 654 be captivated , as I was , by its moods , and by its subtly transformed star , and 4 +15210 654 be captivated , as I was , by its moods , and by its subtly transformed star , 3 +15211 654 be captivated , as I was , by its moods , and by its subtly transformed star 4 +15212 654 be captivated , 3 +15213 654 be captivated 4 +15214 654 captivated 4 +15215 654 as I was , by its moods , and by its subtly transformed star 3 +15216 654 I was , by its moods , and by its subtly transformed star 2 +15217 654 was , by its moods , and by its subtly transformed star 3 +15218 654 was , by its moods , and by its subtly 3 +15219 654 by its moods , and by its subtly 2 +15220 654 by its moods 2 +15221 654 its moods 2 +15222 654 moods 2 +15223 654 , and by its subtly 2 +15224 654 by its subtly 2 +15225 654 its subtly 2 +15226 654 transformed star 3 +15227 654 transformed 2 +15228 654 wonder why Paul Thomas Anderson ever had the inclination to make the most sincere and artful movie in which Adam Sandler will probably ever appear 3 +15229 654 why Paul Thomas Anderson ever had the inclination to make the most sincere and artful movie in which Adam Sandler will probably ever appear 4 +15230 654 Paul Thomas Anderson ever had the inclination to make the most sincere and artful movie in which Adam Sandler will probably ever appear 3 +15231 654 Paul Thomas Anderson 2 +15232 654 Thomas Anderson 2 +15233 654 Thomas 2 +15234 654 Anderson 2 +15235 654 ever had the inclination to make the most sincere and artful movie in which Adam Sandler will probably ever appear 3 +15236 654 had the inclination to make the most sincere and artful movie in which Adam Sandler will probably ever appear 3 +15237 654 the inclination to make the most sincere and artful movie in which Adam Sandler will probably ever appear 3 +15238 654 inclination to make the most sincere and artful movie in which Adam Sandler will probably ever appear 3 +15239 654 inclination 2 +15240 654 to make the most sincere and artful movie in which Adam Sandler will probably ever appear 4 +15241 654 make the most sincere and artful movie in which Adam Sandler will probably ever appear 4 +15242 654 the most sincere and artful movie in which Adam Sandler will probably ever appear 2 +15243 654 the most sincere and artful movie 4 +15244 654 most sincere and artful movie 4 +15245 654 most sincere and artful 3 +15246 654 sincere and artful 3 +15247 654 sincere and 2 +15248 654 artful 3 +15249 654 in which Adam Sandler will probably ever appear 2 +15250 654 Adam Sandler will probably ever appear 2 +15251 654 Adam Sandler 3 +15252 654 Adam 2 +15253 654 will probably ever appear 2 +15254 654 probably ever appear 2 +15255 654 ever appear 2 +15256 655 The only surprise is that heavyweights Joel Silver and Robert Zemeckis agreed to produce this ; I assume the director has pictures of them cavorting in ladies ' underwear . 1 +15257 655 The only surprise is that heavyweights Joel Silver and Robert Zemeckis agreed to produce this ; I assume the director has pictures of them cavorting in ladies ' underwear 2 +15258 655 The only surprise is that heavyweights Joel Silver and Robert Zemeckis agreed to produce this ; 2 +15259 655 The only surprise is that heavyweights Joel Silver and Robert Zemeckis agreed to produce this 1 +15260 655 The only surprise 1 +15261 655 only surprise 1 +15262 655 surprise 2 +15263 655 is that heavyweights Joel Silver and Robert Zemeckis agreed to produce this 2 +15264 655 that heavyweights Joel Silver and Robert Zemeckis agreed to produce this 2 +15265 655 heavyweights Joel Silver and Robert Zemeckis agreed to produce this 3 +15266 655 heavyweights Joel Silver and Robert Zemeckis 3 +15267 655 heavyweights 2 +15268 655 Joel Silver and Robert Zemeckis 2 +15269 655 Joel 2 +15270 655 Silver and Robert Zemeckis 2 +15271 655 Silver 2 +15272 655 and Robert Zemeckis 2 +15273 655 Robert Zemeckis 2 +15274 655 Zemeckis 2 +15275 655 agreed to produce this 2 +15276 655 agreed 3 +15277 655 to produce this 2 +15278 655 produce this 2 +15279 655 produce 2 +15280 655 I assume the director has pictures of them cavorting in ladies ' underwear 2 +15281 655 assume the director has pictures of them cavorting in ladies ' underwear 1 +15282 655 assume 2 +15283 655 the director has pictures of them cavorting in ladies ' underwear 2 +15284 655 has pictures of them cavorting in ladies ' underwear 3 +15285 655 pictures of them cavorting in ladies ' underwear 2 +15286 655 of them cavorting in ladies ' underwear 2 +15287 655 them cavorting in ladies ' underwear 2 +15288 655 cavorting in ladies ' underwear 2 +15289 655 cavorting 2 +15290 655 in ladies ' underwear 2 +15291 655 ladies ' underwear 2 +15292 655 ladies ' 2 +15293 655 ladies 2 +15294 655 underwear 2 +15295 656 Ver Wiel 's desperate attempt at wit is lost , leaving the character of Critical Jim two-dimensional and pointless . 1 +15296 656 Ver Wiel 's desperate attempt at wit 0 +15297 656 Ver Wiel 's desperate attempt 2 +15298 656 Ver Wiel 's 3 +15299 656 Wiel 's 2 +15300 656 Wiel 2 +15301 656 desperate attempt 1 +15302 656 desperate 1 +15303 656 attempt 2 +15304 656 at wit 2 +15305 656 is lost , leaving the character of Critical Jim two-dimensional and pointless . 0 +15306 656 is lost , leaving the character of Critical Jim two-dimensional and pointless 1 +15307 656 lost , leaving the character of Critical Jim two-dimensional and pointless 1 +15308 656 lost , 2 +15309 656 lost 2 +15310 656 leaving the character of Critical Jim two-dimensional and pointless 1 +15311 656 leaving 2 +15312 656 the character of Critical Jim two-dimensional and pointless 1 +15313 656 the character 2 +15314 656 of Critical Jim two-dimensional and pointless 0 +15315 656 Critical Jim two-dimensional and pointless 2 +15316 656 Critical Jim 2 +15317 656 Critical 1 +15318 656 Jim 2 +15319 656 two-dimensional and pointless 1 +15320 656 two-dimensional and 1 +15321 656 two-dimensional 2 +15322 657 So vivid a portrait of a woman consumed by lust and love and crushed by betrayal that it conjures up the intoxicating fumes and emotional ghosts of a freshly painted Rembrandt . 4 +15323 657 So vivid a portrait of a woman 3 +15324 657 So vivid a portrait 3 +15325 657 So vivid 3 +15326 657 a portrait 2 +15327 657 of a woman 2 +15328 657 a woman 2 +15329 657 consumed by lust and love and crushed by betrayal that it conjures up the intoxicating fumes and emotional ghosts of a freshly painted Rembrandt . 3 +15330 657 consumed by lust and love and crushed by betrayal that it conjures up the intoxicating fumes and emotional ghosts of a freshly painted Rembrandt 3 +15331 657 consumed by lust and love and 2 +15332 657 consumed by lust and love 3 +15333 657 consumed 2 +15334 657 by lust and love 2 +15335 657 lust and love 3 +15336 657 lust and 2 +15337 657 crushed by betrayal that it conjures up the intoxicating fumes and emotional ghosts of a freshly painted Rembrandt 2 +15338 657 crushed by betrayal 2 +15339 657 crushed 1 +15340 657 by betrayal 2 +15341 657 that it conjures up the intoxicating fumes and emotional ghosts of a freshly painted Rembrandt 2 +15342 657 it conjures up the intoxicating fumes and emotional ghosts of a freshly painted Rembrandt 3 +15343 657 conjures up the intoxicating fumes and emotional ghosts of a freshly painted Rembrandt 3 +15344 657 conjures up 2 +15345 657 conjures 2 +15346 657 the intoxicating fumes and emotional ghosts of a freshly painted Rembrandt 3 +15347 657 the intoxicating fumes and 3 +15348 657 the intoxicating fumes 3 +15349 657 intoxicating fumes 2 +15350 657 fumes 2 +15351 657 emotional ghosts of a freshly painted Rembrandt 3 +15352 657 emotional ghosts 2 +15353 657 of a freshly painted Rembrandt 4 +15354 657 a freshly painted Rembrandt 3 +15355 657 freshly painted Rembrandt 3 +15356 657 freshly 3 +15357 657 painted Rembrandt 2 +15358 657 painted 2 +15359 657 Rembrandt 2 +15360 658 Cacoyannis ' vision is far less mature , interpreting the play as a call for pity and sympathy for anachronistic phantasms haunting the imagined glory of their own pasts . 1 +15361 658 Cacoyannis ' vision 2 +15362 658 Cacoyannis ' 2 +15363 658 Cacoyannis 2 +15364 658 vision 2 +15365 658 is far less mature , interpreting the play as a call for pity and sympathy for anachronistic phantasms haunting the imagined glory of their own pasts . 1 +15366 658 is far less mature , interpreting the play as a call for pity and sympathy for anachronistic phantasms haunting the imagined glory of their own pasts 1 +15367 658 is far less mature , 2 +15368 658 is far less mature 1 +15369 658 is far 2 +15370 658 less mature 3 +15371 658 mature 3 +15372 658 interpreting the play as a call for pity and sympathy for anachronistic phantasms haunting the imagined glory of their own pasts 2 +15373 658 interpreting the play as a call for pity and sympathy 1 +15374 658 interpreting the play 2 +15375 658 interpreting 2 +15376 658 the play 2 +15377 658 as a call for pity and sympathy 1 +15378 658 a call for pity and sympathy 2 +15379 658 a call 2 +15380 658 for pity and sympathy 2 +15381 658 pity and sympathy 2 +15382 658 pity and 1 +15383 658 pity 1 +15384 658 sympathy 2 +15385 658 for anachronistic phantasms haunting the imagined glory of their own pasts 2 +15386 658 anachronistic phantasms haunting the imagined glory of their own pasts 3 +15387 658 anachronistic phantasms 2 +15388 658 anachronistic 2 +15389 658 phantasms 2 +15390 658 haunting the imagined glory of their own pasts 2 +15391 658 haunting 2 +15392 658 the imagined glory of their own pasts 1 +15393 658 the imagined glory 2 +15394 658 imagined glory 2 +15395 658 imagined 2 +15396 658 glory 2 +15397 658 of their own pasts 2 +15398 658 their own pasts 2 +15399 658 own pasts 2 +15400 658 pasts 2 +15401 659 In other words , it 's badder than bad . 0 +15402 659 In other words 2 +15403 659 other words 2 +15404 659 words 2 +15405 659 , it 's badder than bad . 0 +15406 659 it 's badder than bad . 0 +15407 659 's badder than bad . 1 +15408 659 's badder than bad 0 +15409 659 badder than bad 0 +15410 659 badder 1 +15411 659 than bad 1 +15412 660 Wedding feels a bit anachronistic . 0 +15413 660 Wedding 3 +15414 660 feels a bit anachronistic . 1 +15415 660 feels a bit anachronistic 2 +15416 660 a bit anachronistic 1 +15417 661 Dong never pushes for insights beyond the superficial tensions of the dynamic he 's dissecting , and the film settles too easily along the contours of expectation . 1 +15418 661 Dong never pushes for insights beyond the superficial tensions of the dynamic he 's dissecting , and the film settles too easily along the contours of expectation 1 +15419 661 Dong never pushes for insights beyond the superficial tensions of the dynamic he 's dissecting , and 1 +15420 661 Dong never pushes for insights beyond the superficial tensions of the dynamic he 's dissecting , 1 +15421 661 Dong never pushes for insights beyond the superficial tensions of the dynamic he 's dissecting 1 +15422 661 Dong 2 +15423 661 never pushes for insights beyond the superficial tensions of the dynamic he 's dissecting 1 +15424 661 pushes for insights beyond the superficial tensions of the dynamic he 's dissecting 1 +15425 661 pushes for insights 2 +15426 661 for insights 3 +15427 661 beyond the superficial tensions of the dynamic he 's dissecting 2 +15428 661 the superficial tensions of the dynamic he 's dissecting 1 +15429 661 the superficial tensions 1 +15430 661 superficial tensions 2 +15431 661 tensions 1 +15432 661 of the dynamic he 's dissecting 2 +15433 661 the dynamic he 's dissecting 2 +15434 661 the dynamic 2 +15435 661 dynamic 3 +15436 661 he 's dissecting 2 +15437 661 's dissecting 2 +15438 661 dissecting 2 +15439 661 the film settles too easily along the contours of expectation 1 +15440 661 settles too easily along the contours of expectation 1 +15441 661 settles too easily 1 +15442 661 too easily 3 +15443 661 along the contours of expectation 2 +15444 661 the contours of expectation 2 +15445 661 the contours 2 +15446 661 contours 2 +15447 661 of expectation 2 +15448 662 Little is done to support the premise other than fling gags at it to see which ones shtick . 1 +15449 662 is done to support the premise other than fling gags at it to see which ones shtick . 2 +15450 662 is done to support the premise other than fling gags at it to see which ones shtick 3 +15451 662 done to support the premise other than fling gags at it to see which ones shtick 2 +15452 662 done 2 +15453 662 to support the premise other than fling gags at it to see which ones shtick 2 +15454 662 support the premise other than fling gags at it to see which ones shtick 1 +15455 662 support the premise other than fling gags at it 3 +15456 662 support 2 +15457 662 the premise other than fling gags at it 2 +15458 662 the premise 2 +15459 662 other than fling gags at it 0 +15460 662 than fling gags at it 2 +15461 662 fling gags at it 1 +15462 662 fling gags 2 +15463 662 fling 3 +15464 662 to see which ones shtick 2 +15465 662 see which ones shtick 2 +15466 662 which ones shtick 1 +15467 662 ones shtick 2 +15468 662 shtick 1 +15469 663 Brings to a spectacular completion one of the most complex , generous and subversive artworks of the last decade . 4 +15470 663 Brings to a spectacular completion one of the most complex , generous and subversive artworks of the last decade 4 +15471 663 Brings to a spectacular completion one 3 +15472 663 to a spectacular completion one 4 +15473 663 a spectacular completion one 3 +15474 663 spectacular completion one 3 +15475 663 spectacular 3 +15476 663 completion one 2 +15477 663 completion 2 +15478 663 of the most complex , generous and subversive artworks of the last decade 4 +15479 663 the most complex , generous and subversive artworks of the last decade 4 +15480 663 the most complex , generous and subversive artworks 3 +15481 663 most complex , generous and subversive artworks 3 +15482 663 most complex 2 +15483 663 , generous and subversive artworks 4 +15484 663 generous and subversive artworks 3 +15485 663 generous and subversive 3 +15486 663 subversive 1 +15487 663 artworks 2 +15488 663 of the last decade 2 +15489 663 the last decade 2 +15490 663 last decade 2 +15491 664 With an obvious rapport with her actors and a striking style behind the camera 3 +15492 664 an obvious rapport with her actors and a striking style behind the camera 3 +15493 664 an obvious rapport with her actors and 3 +15494 664 an obvious rapport with her actors 4 +15495 664 an obvious rapport 2 +15496 664 obvious rapport 2 +15497 664 rapport 2 +15498 664 with her actors 3 +15499 664 her actors 2 +15500 664 a striking style behind the camera 3 +15501 664 a striking style 3 +15502 664 striking style 4 +15503 664 striking 3 +15504 664 behind the camera 2 +15505 664 behind 2 +15506 664 the camera 2 +15507 664 Angel 3 +15508 664 is definitely a director to watch . 4 +15509 664 is definitely a director to watch 4 +15510 664 is definitely 2 +15511 664 a director to watch 3 +15512 664 director to watch 3 +15513 665 You can see where Big Bad Love is trying to go , but it never quite gets there . 2 +15514 665 You can see where Big Bad Love is trying to go , but it never quite gets there 1 +15515 665 You can see where Big Bad Love is trying to go , but 2 +15516 665 You can see where Big Bad Love is trying to go , 2 +15517 665 You can see where Big Bad Love is trying to go 2 +15518 665 can see where Big Bad Love is trying to go 2 +15519 665 see where Big Bad Love is trying to go 2 +15520 665 where Big Bad Love is trying to go 2 +15521 665 Big Bad Love is trying to go 2 +15522 665 Big Bad Love 3 +15523 665 Bad Love 3 +15524 665 is trying to go 2 +15525 665 trying to go 2 +15526 665 to go 2 +15527 665 it never quite gets there 1 +15528 665 never quite gets there 1 +15529 665 gets there 2 +15530 666 A sleek advert for youthful anomie that never quite equals the sum of its pretensions . 1 +15531 666 A sleek advert for youthful anomie 3 +15532 666 A sleek advert 3 +15533 666 sleek advert 2 +15534 666 advert 2 +15535 666 for youthful anomie 2 +15536 666 youthful anomie 2 +15537 666 youthful 2 +15538 666 anomie 2 +15539 666 that never quite equals the sum of its pretensions . 1 +15540 666 that never quite 2 +15541 666 equals the sum of its pretensions . 1 +15542 666 equals the sum of its pretensions 1 +15543 666 equals 2 +15544 666 the sum of its pretensions 1 +15545 666 the sum 3 +15546 666 sum 2 +15547 666 of its pretensions 1 +15548 666 its pretensions 1 +15549 667 Statham employs an accent that I think is supposed to be an attempt at hardass American but sometimes just lapses into unhidden British . 1 +15550 667 Statham 2 +15551 667 employs an accent that I think is supposed to be an attempt at hardass American but sometimes just lapses into unhidden British . 1 +15552 667 employs an accent that I think is supposed to be an attempt at hardass American but sometimes just lapses into unhidden British 2 +15553 667 employs an accent 2 +15554 667 employs 2 +15555 667 an accent 2 +15556 667 accent 2 +15557 667 that I think is supposed to be an attempt at hardass American but sometimes just lapses into unhidden British 1 +15558 667 I think is supposed to be an attempt at hardass American but sometimes just lapses into unhidden British 1 +15559 667 think is supposed to be an attempt at hardass American but sometimes just lapses into unhidden British 1 +15560 667 think 2 +15561 667 is supposed to be an attempt at hardass American but sometimes just lapses into unhidden British 2 +15562 667 supposed to be an attempt at hardass American but sometimes just lapses into unhidden British 2 +15563 667 supposed to be an attempt at hardass American 2 +15564 667 to be an attempt at hardass American 2 +15565 667 be an attempt at hardass American 1 +15566 667 an attempt at hardass American 2 +15567 667 an attempt 2 +15568 667 at hardass American 2 +15569 667 hardass American 2 +15570 667 hardass 2 +15571 667 but sometimes just lapses into unhidden British 2 +15572 667 sometimes just lapses into unhidden British 1 +15573 667 just lapses into unhidden British 1 +15574 667 lapses into unhidden British 2 +15575 667 lapses 2 +15576 667 into unhidden British 2 +15577 667 unhidden British 2 +15578 667 unhidden 2 +15579 667 British 2 +15580 668 If A Few Good Men told us that we `` ca n't handle the truth '' than High Crimes poetically states at one point in this movie that we `` do n't care about the truth . '' 2 +15581 668 If A Few Good Men told us that we `` ca n't handle the truth '' than High Crimes 2 +15582 668 A Few Good Men told us that we `` ca n't handle the truth '' than High Crimes 2 +15583 668 A Few Good Men 2 +15584 668 Few Good Men 2 +15585 668 Good Men 2 +15586 668 Men 3 +15587 668 told us that we `` ca n't handle the truth '' than High Crimes 2 +15588 668 told us 3 +15589 668 that we `` ca n't handle the truth '' than High Crimes 2 +15590 668 we `` ca n't handle the truth '' than High Crimes 2 +15591 668 `` ca n't handle the truth '' than High Crimes 2 +15592 668 ca n't handle the truth '' than High Crimes 2 +15593 668 handle the truth '' than High Crimes 2 +15594 668 handle the truth '' 2 +15595 668 handle the truth 2 +15596 668 the truth 2 +15597 668 than High Crimes 2 +15598 668 High Crimes 2 +15599 668 poetically states at one point in this movie that we `` do n't care about the truth . '' 2 +15600 668 poetically states at one point in this movie that we `` do n't care about the truth . 1 +15601 668 poetically states at one point in this movie that we `` do n't care about the truth 2 +15602 668 poetically 3 +15603 668 states at one point in this movie that we `` do n't care about the truth 2 +15604 668 states at one point in this movie 2 +15605 668 states 2 +15606 668 at one point in this movie 2 +15607 668 one point in this movie 2 +15608 668 one point 2 +15609 668 in this movie 2 +15610 668 that we `` do n't care about the truth 2 +15611 668 we `` do n't care about the truth 1 +15612 668 `` do n't care about the truth 2 +15613 668 do n't care about the truth 1 +15614 668 care about the truth 3 +15615 668 about the truth 2 +15616 669 So boring that even its target audience talked all the way through it . 0 +15617 669 So boring 0 +15618 669 that even its target audience talked all the way through it . 1 +15619 669 that even its target audience talked all the way through it 1 +15620 669 even its target audience talked all the way through it 1 +15621 669 its target audience talked all the way through it 1 +15622 669 its target audience 2 +15623 669 target audience 2 +15624 669 talked all the way through it 0 +15625 669 talked all the way 2 +15626 669 talked 2 +15627 669 all the way 3 +15628 670 Wiser souls would have tactfully pretended not to see it and left it lying there 2 +15629 670 Wiser souls 2 +15630 670 would have tactfully pretended not to see it and left it lying there 1 +15631 670 have tactfully pretended not to see it and left it lying there 2 +15632 670 have tactfully 2 +15633 670 tactfully 3 +15634 670 pretended not to see it and left it lying there 2 +15635 670 pretended not to see it and 1 +15636 670 pretended not to see it 1 +15637 670 pretended 1 +15638 670 not to see it 1 +15639 670 left it lying there 2 +15640 670 it lying there 2 +15641 670 lying there 2 +15642 670 lying 1 +15643 671 Rarely has sex on screen been so aggressively anti-erotic . 0 +15644 671 has sex on screen been so aggressively anti-erotic . 2 +15645 671 has sex on screen been so aggressively anti-erotic 1 +15646 671 sex on screen been so aggressively anti-erotic 1 +15647 671 on screen been so aggressively anti-erotic 1 +15648 671 screen been so aggressively anti-erotic 1 +15649 671 been so aggressively anti-erotic 1 +15650 671 so aggressively anti-erotic 1 +15651 671 aggressively anti-erotic 1 +15652 671 aggressively 2 +15653 671 anti-erotic 2 +15654 672 The Hours , a delicately crafted film , is an impressive achievement in spite of a river of sadness that pours into every frame . 3 +15655 672 The Hours , a delicately crafted film , 3 +15656 672 The Hours , a delicately crafted film 3 +15657 672 The Hours , 2 +15658 672 a delicately crafted film 3 +15659 672 delicately crafted film 3 +15660 672 crafted film 3 +15661 672 is an impressive achievement in spite of a river of sadness that pours into every frame . 3 +15662 672 is an impressive achievement in spite of a river of sadness that pours into every frame 3 +15663 672 an impressive achievement in spite of a river of sadness that pours into every frame 3 +15664 672 an impressive achievement 4 +15665 672 impressive achievement 4 +15666 672 in spite of a river of sadness that pours into every frame 2 +15667 672 spite of a river of sadness that pours into every frame 2 +15668 672 spite 2 +15669 672 of a river of sadness that pours into every frame 3 +15670 672 a river of sadness that pours into every frame 3 +15671 672 a river 2 +15672 672 river 2 +15673 672 of sadness that pours into every frame 2 +15674 672 sadness that pours into every frame 2 +15675 672 sadness 2 +15676 672 that pours into every frame 3 +15677 672 pours into every frame 2 +15678 672 pours 2 +15679 672 into every frame 2 +15680 673 Delivers roughly equal amounts of beautiful movement and inside information . 3 +15681 673 roughly equal amounts of beautiful movement and inside information . 3 +15682 673 roughly 2 +15683 673 equal amounts of beautiful movement and inside information . 3 +15684 673 equal amounts of beautiful movement and inside information 3 +15685 673 amounts of beautiful movement and inside information 3 +15686 673 of beautiful movement and inside information 4 +15687 673 beautiful movement and inside information 4 +15688 673 movement and inside information 2 +15689 673 movement 2 +15690 673 and inside information 2 +15691 673 inside information 3 +15692 673 inside 2 +15693 673 information 2 +15694 674 Showtime 's starry cast could be both an asset and a detriment . 2 +15695 674 Showtime 's starry cast 3 +15696 674 Showtime 's 2 +15697 674 Showtime 2 +15698 674 starry cast 2 +15699 674 starry 2 +15700 674 could be both an asset and a detriment . 2 +15701 674 could be both an asset and a detriment 2 +15702 674 be both an asset and a detriment 2 +15703 674 both an asset and a detriment 2 +15704 674 an asset and a detriment 2 +15705 674 an asset and 3 +15706 674 an asset 3 +15707 674 asset 3 +15708 674 a detriment 3 +15709 674 detriment 1 +15710 675 -LRB- Dong -RRB- makes a valiant effort to understand everyone 's point of view , and he does such a good job of it that Family Fundamentals gets you riled up . 4 +15711 675 -LRB- Dong -RRB- makes a valiant effort to understand everyone 's point of view , and he does such a good job of it that Family Fundamentals gets you riled up 4 +15712 675 -LRB- Dong -RRB- makes a valiant effort to understand everyone 's point of view , and 4 +15713 675 -LRB- Dong -RRB- makes a valiant effort to understand everyone 's point of view , 3 +15714 675 -LRB- Dong -RRB- makes a valiant effort to understand everyone 's point of view 2 +15715 675 -LRB- Dong -RRB- 2 +15716 675 Dong -RRB- 2 +15717 675 makes a valiant effort to understand everyone 's point of view 3 +15718 675 a valiant effort to understand everyone 's point of view 3 +15719 675 valiant effort to understand everyone 's point of view 4 +15720 675 valiant 3 +15721 675 effort to understand everyone 's point of view 3 +15722 675 to understand everyone 's point of view 2 +15723 675 understand everyone 's point of view 3 +15724 675 everyone 's point of view 2 +15725 675 everyone 's point 2 +15726 675 everyone 's 3 +15727 675 he does such a good job of it that Family Fundamentals gets you riled up 3 +15728 675 does such a good job of it that Family Fundamentals gets you riled up 4 +15729 675 does such a good job of it 3 +15730 675 such a good job of it 3 +15731 675 such a good job 4 +15732 675 a good job 4 +15733 675 good job 4 +15734 675 job 2 +15735 675 that Family Fundamentals gets you riled up 2 +15736 675 Family Fundamentals gets you riled up 4 +15737 675 Family Fundamentals 2 +15738 675 Fundamentals 2 +15739 675 gets you riled up 3 +15740 675 you riled up 2 +15741 675 riled up 2 +15742 675 riled 2 +15743 676 Light the candles , bring out the cake and do n't fret about the calories because there 's precious little substance in Birthday Girl -- it 's simply , and surprisingly , a nice , light treat . 4 +15744 676 Light the candles , bring out the cake and do n't fret about the calories because there 's precious little substance in Birthday Girl -- it 's simply , and surprisingly , a nice , light treat 3 +15745 676 Light the candles , bring out the cake and do n't fret about the calories because there 's precious little substance in Birthday Girl -- 1 +15746 676 Light the candles , bring out the cake and do n't fret about the calories because there 's precious little substance in Birthday Girl 2 +15747 676 Light the candles , bring out the cake and 3 +15748 676 Light the candles , bring out the cake 3 +15749 676 Light the candles , 2 +15750 676 Light the candles 2 +15751 676 the candles 2 +15752 676 candles 2 +15753 676 bring out the cake 3 +15754 676 bring out 2 +15755 676 the cake 2 +15756 676 cake 2 +15757 676 do n't fret about the calories because there 's precious little substance in Birthday Girl 1 +15758 676 fret about the calories because there 's precious little substance in Birthday Girl 2 +15759 676 fret about the calories 2 +15760 676 fret 1 +15761 676 about the calories 2 +15762 676 the calories 2 +15763 676 calories 2 +15764 676 because there 's precious little substance in Birthday Girl 1 +15765 676 there 's precious little substance in Birthday Girl 2 +15766 676 's precious little substance in Birthday Girl 2 +15767 676 precious little substance in Birthday Girl 1 +15768 676 precious little substance 1 +15769 676 little substance 1 +15770 676 substance 2 +15771 676 in Birthday Girl 2 +15772 676 Birthday Girl 2 +15773 676 Birthday 2 +15774 676 it 's simply , and surprisingly , a nice , light treat 2 +15775 676 's simply , and surprisingly , a nice , light treat 4 +15776 676 's simply , and surprisingly , 2 +15777 676 simply , and surprisingly , 3 +15778 676 , and surprisingly , 2 +15779 676 , and surprisingly 2 +15780 676 a nice , light treat 3 +15781 676 nice , light treat 3 +15782 676 , light treat 3 +15783 676 light treat 3 +15784 676 treat 3 +15785 677 In his debut as a director , Washington has a sure hand . 4 +15786 677 In his debut as a director 2 +15787 677 his debut as a director 2 +15788 677 his debut 2 +15789 677 as a director 2 +15790 677 a director 2 +15791 677 , Washington has a sure hand . 3 +15792 677 Washington has a sure hand . 4 +15793 677 has a sure hand . 3 +15794 677 has a sure hand 3 +15795 677 a sure hand 3 +15796 677 sure hand 3 +15797 678 -- but it makes for one of the most purely enjoyable and satisfying evenings at the movies I 've had in a while . 4 +15798 678 but it makes for one of the most purely enjoyable and satisfying evenings at the movies I 've had in a while . 4 +15799 678 it makes for one of the most purely enjoyable and satisfying evenings at the movies I 've had in a while . 4 +15800 678 makes for one of the most purely enjoyable and satisfying evenings at the movies I 've had in a while . 4 +15801 678 makes for one of the most purely enjoyable and satisfying evenings at the movies I 've had in a while 4 +15802 678 for one of the most purely enjoyable and satisfying evenings at the movies I 've had in a while 4 +15803 678 one of the most purely enjoyable and satisfying evenings at the movies I 've had in a while 4 +15804 678 of the most purely enjoyable and satisfying evenings at the movies I 've had in a while 4 +15805 678 the most purely enjoyable and satisfying evenings at the movies I 've had in a while 4 +15806 678 the most purely enjoyable and satisfying evenings at the movies 4 +15807 678 the most purely enjoyable and satisfying evenings 4 +15808 678 most purely enjoyable and satisfying evenings 4 +15809 678 most purely enjoyable and satisfying 4 +15810 678 most purely enjoyable and 3 +15811 678 most purely enjoyable 4 +15812 678 evenings 2 +15813 678 at the movies 2 +15814 678 I 've had in a while 2 +15815 678 've had in a while 2 +15816 678 had in a while 2 +15817 678 in a while 2 +15818 678 a while 2 +15819 679 This is not Chabrol 's best , but even his lesser works outshine the best some directors can offer . 2 +15820 679 This is not Chabrol 's best , but even his lesser works outshine the best some directors can offer 2 +15821 679 This is not Chabrol 's best , but 1 +15822 679 This is not Chabrol 's best , 2 +15823 679 This is not Chabrol 's best 1 +15824 679 is not Chabrol 's best 1 +15825 679 Chabrol 's best 3 +15826 679 even his lesser works outshine the best some directors can offer 3 +15827 679 even his lesser works outshine the best some directors 4 +15828 679 his lesser works outshine the best some directors 3 +15829 679 his lesser works 2 +15830 679 lesser works 2 +15831 679 lesser 2 +15832 679 outshine the best some directors 3 +15833 679 outshine 3 +15834 679 the best some directors 2 +15835 679 best some directors 3 +15836 679 some directors 2 +15837 679 can offer 2 +15838 680 The heart of the film is a touching reflection on aging , suffering and the prospect of death . 3 +15839 680 The heart of the film 3 +15840 680 of the film 2 +15841 680 is a touching reflection on aging , suffering and the prospect of death . 3 +15842 680 is a touching reflection on aging , suffering and the prospect of death 4 +15843 680 a touching reflection on aging , suffering and the prospect of death 3 +15844 680 a touching reflection 3 +15845 680 touching reflection 3 +15846 680 touching 3 +15847 680 reflection 2 +15848 680 on aging , suffering and the prospect of death 2 +15849 680 aging , suffering and the prospect of death 1 +15850 680 aging , suffering and 2 +15851 680 aging , suffering 1 +15852 680 aging , 2 +15853 680 aging 2 +15854 680 suffering 1 +15855 680 the prospect of death 2 +15856 680 of death 1 +15857 681 It 's a glorious spectacle like those D.W. Griffith made in the early days of silent film . 4 +15858 681 's a glorious spectacle like those D.W. Griffith made in the early days of silent film . 3 +15859 681 's a glorious spectacle like those D.W. Griffith made in the early days of silent film 3 +15860 681 a glorious spectacle like those D.W. Griffith made in the early days of silent film 3 +15861 681 a glorious spectacle 4 +15862 681 glorious spectacle 4 +15863 681 glorious 4 +15864 681 like those D.W. Griffith made in the early days of silent film 3 +15865 681 those D.W. Griffith made in the early days of silent film 2 +15866 681 those D.W. Griffith 2 +15867 681 D.W. Griffith 2 +15868 681 D.W. 2 +15869 681 Griffith 2 +15870 681 made in the early days of silent film 2 +15871 681 in the early days of silent film 2 +15872 681 the early days of silent film 2 +15873 681 the early days 2 +15874 681 early days 2 +15875 681 of silent film 2 +15876 681 silent film 2 +15877 682 The movie is undone by a filmmaking methodology that 's just experimental enough to alienate the mainstream audience while ringing cliched to hardened indie-heads . 1 +15878 682 is undone by a filmmaking methodology that 's just experimental enough to alienate the mainstream audience while ringing cliched to hardened indie-heads . 1 +15879 682 is undone by a filmmaking methodology that 's just experimental enough to alienate the mainstream audience while ringing cliched to hardened indie-heads 1 +15880 682 undone by a filmmaking methodology that 's just experimental enough to alienate the mainstream audience while ringing cliched to hardened indie-heads 1 +15881 682 by a filmmaking methodology that 's just experimental enough to alienate the mainstream audience while ringing cliched to hardened indie-heads 2 +15882 682 a filmmaking methodology that 's just experimental enough to alienate the mainstream audience while ringing cliched to hardened indie-heads 1 +15883 682 a filmmaking methodology 2 +15884 682 filmmaking methodology 2 +15885 682 methodology 2 +15886 682 that 's just experimental enough to alienate the mainstream audience while ringing cliched to hardened indie-heads 1 +15887 682 's just experimental enough to alienate the mainstream audience while ringing cliched to hardened indie-heads 1 +15888 682 experimental enough to alienate the mainstream audience while ringing cliched to hardened indie-heads 1 +15889 682 experimental enough 2 +15890 682 to alienate the mainstream audience while ringing cliched to hardened indie-heads 0 +15891 682 alienate the mainstream audience while ringing cliched to hardened indie-heads 1 +15892 682 alienate the mainstream audience 1 +15893 682 alienate 1 +15894 682 the mainstream audience 2 +15895 682 mainstream audience 2 +15896 682 while ringing cliched to hardened indie-heads 1 +15897 682 ringing cliched to hardened indie-heads 2 +15898 682 ringing 2 +15899 682 cliched to hardened indie-heads 1 +15900 682 to hardened indie-heads 2 +15901 682 hardened indie-heads 1 +15902 682 hardened 2 +15903 682 indie-heads 2 +15904 683 The year 's greatest adventure , and Jackson 's limited but enthusiastic adaptation has made literature literal without killing its soul -- a feat any thinking person is bound to appreciate . 4 +15905 683 The year 's greatest adventure , and Jackson 's limited but enthusiastic adaptation has made literature literal without killing its soul -- a feat any thinking person is bound to appreciate 4 +15906 683 The year 's greatest adventure , and Jackson 's limited but enthusiastic adaptation 3 +15907 683 The year 's greatest adventure , and 4 +15908 683 The year 's greatest adventure , 4 +15909 683 The year 's greatest adventure 4 +15910 683 The year 's 2 +15911 683 year 's 2 +15912 683 greatest adventure 4 +15913 683 Jackson 's limited but enthusiastic adaptation 2 +15914 683 Jackson 's 3 +15915 683 Jackson 2 +15916 683 limited but enthusiastic adaptation 2 +15917 683 limited but enthusiastic 3 +15918 683 limited but 2 +15919 683 limited 1 +15920 683 enthusiastic 3 +15921 683 has made literature literal without killing its soul -- a feat any thinking person is bound to appreciate 4 +15922 683 made literature literal without killing its soul -- a feat any thinking person is bound to appreciate 3 +15923 683 made literature literal without killing its soul -- 2 +15924 683 made literature literal without killing its soul 3 +15925 683 made literature literal 2 +15926 683 literature literal 2 +15927 683 literature 2 +15928 683 literal 3 +15929 683 without killing its soul 2 +15930 683 killing its soul 1 +15931 683 killing 2 +15932 683 its soul 3 +15933 683 a feat any thinking person is bound to appreciate 4 +15934 683 a feat 3 +15935 683 feat 2 +15936 683 any thinking person is bound to appreciate 3 +15937 683 any thinking person 2 +15938 683 thinking person 2 +15939 683 person 2 +15940 683 is bound to appreciate 3 +15941 683 bound to appreciate 2 +15942 683 bound 3 +15943 683 to appreciate 2 +15944 684 If this movie leaves you cool , it also leaves you intriguingly contemplative . 2 +15945 684 If this movie leaves you cool 2 +15946 684 this movie leaves you cool 1 +15947 684 leaves you cool 3 +15948 684 you cool 2 +15949 684 , it also leaves you intriguingly contemplative . 3 +15950 684 it also leaves you intriguingly contemplative . 3 +15951 684 also leaves you intriguingly contemplative . 3 +15952 684 leaves you intriguingly contemplative . 3 +15953 684 leaves you intriguingly contemplative 3 +15954 684 you intriguingly contemplative 2 +15955 684 intriguingly contemplative 3 +15956 684 intriguingly 2 +15957 684 contemplative 3 +15958 685 When all is said and done , she loves them to pieces -- and so , I trust , will you . 3 +15959 685 When all is said and done , she loves them to pieces -- and so , I trust 3 +15960 685 When all is said and done , she loves them to pieces -- and 3 +15961 685 When all is said and done , she loves them to pieces -- 2 +15962 685 When all is said and done , she loves them to pieces 4 +15963 685 When all is said and done 2 +15964 685 all is said and done 2 +15965 685 is said and done 2 +15966 685 said and done 2 +15967 685 said and 2 +15968 685 said 2 +15969 685 , she loves them to pieces 2 +15970 685 she loves them to pieces 3 +15971 685 loves them to pieces 3 +15972 685 loves them 3 +15973 685 loves 3 +15974 685 so , I trust 3 +15975 685 , I trust 2 +15976 685 I trust 2 +15977 685 trust 2 +15978 685 , will you . 2 +15979 685 will you . 2 +15980 686 It takes you somewhere you 're not likely to have seen before , but beneath the exotic surface -LRB- and exotic dancing -RRB- it 's surprisingly old-fashioned . 3 +15981 686 It takes you somewhere 3 +15982 686 takes you somewhere 3 +15983 686 takes you 2 +15984 686 you 're not likely to have seen before , but beneath the exotic surface -LRB- and exotic dancing -RRB- it 's surprisingly old-fashioned . 2 +15985 686 're not likely to have seen before , but beneath the exotic surface -LRB- and exotic dancing -RRB- it 's surprisingly old-fashioned . 1 +15986 686 're not likely to have seen before , but beneath the exotic surface -LRB- and exotic dancing -RRB- it 's surprisingly old-fashioned 3 +15987 686 're not 2 +15988 686 likely to have seen before , but beneath the exotic surface -LRB- and exotic dancing -RRB- it 's surprisingly old-fashioned 2 +15989 686 to have seen before , but beneath the exotic surface -LRB- and exotic dancing -RRB- it 's surprisingly old-fashioned 3 +15990 686 have seen before , but beneath the exotic surface -LRB- and exotic dancing -RRB- it 's surprisingly old-fashioned 3 +15991 686 seen before , but beneath the exotic surface -LRB- and exotic dancing -RRB- it 's surprisingly old-fashioned 2 +15992 686 before , but beneath the exotic surface -LRB- and exotic dancing -RRB- it 's surprisingly old-fashioned 2 +15993 686 , but beneath the exotic surface -LRB- and exotic dancing -RRB- it 's surprisingly old-fashioned 2 +15994 686 beneath the exotic surface -LRB- and exotic dancing -RRB- it 's surprisingly old-fashioned 2 +15995 686 the exotic surface -LRB- and exotic dancing -RRB- it 's surprisingly old-fashioned 2 +15996 686 the exotic surface -LRB- and exotic dancing -RRB- 3 +15997 686 the exotic surface 2 +15998 686 exotic surface 2 +15999 686 -LRB- and exotic dancing -RRB- 2 +16000 686 -LRB- and exotic dancing 2 +16001 686 exotic dancing 2 +16002 686 dancing 3 +16003 686 it 's surprisingly old-fashioned 2 +16004 686 's surprisingly old-fashioned 2 +16005 686 surprisingly old-fashioned 2 +16006 686 old-fashioned 2 +16007 687 Director Claude Chabrol has become the master of innuendo . 3 +16008 687 Director Claude Chabrol 3 +16009 687 Claude Chabrol 2 +16010 687 has become the master of innuendo . 3 +16011 687 has become the master of innuendo 3 +16012 687 become the master of innuendo 3 +16013 687 the master of innuendo 3 +16014 687 the master 2 +16015 687 of innuendo 2 +16016 688 Woven together handsomely , recalling sixties ' rockumentary milestones from Lonely Boy to Do n't Look Back . 3 +16017 688 Woven together handsomely 3 +16018 688 Woven together 2 +16019 688 Woven 2 +16020 688 , recalling sixties ' rockumentary milestones from Lonely Boy to Do n't Look Back . 2 +16021 688 recalling sixties ' rockumentary milestones from Lonely Boy to Do n't Look Back . 3 +16022 688 recalling sixties ' rockumentary milestones from Lonely Boy to 3 +16023 688 recalling sixties ' rockumentary milestones from Lonely Boy 2 +16024 688 recalling sixties ' rockumentary milestones 2 +16025 688 recalling 2 +16026 688 sixties ' rockumentary milestones 3 +16027 688 sixties ' 2 +16028 688 sixties 2 +16029 688 rockumentary milestones 2 +16030 688 rockumentary 2 +16031 688 milestones 2 +16032 688 from Lonely Boy 2 +16033 688 Lonely Boy 2 +16034 688 Do n't Look Back . 2 +16035 688 Do n't Look Back 2 +16036 688 Look Back 2 +16037 689 It 's petty thievery like this that puts flimsy flicks like this behind bars 0 +16038 689 's petty thievery like this that puts flimsy flicks like this behind bars 1 +16039 689 petty thievery like this that puts flimsy flicks like this behind bars 0 +16040 689 petty thievery 1 +16041 689 petty 1 +16042 689 thievery 2 +16043 689 like this that puts flimsy flicks like this behind bars 1 +16044 689 this that puts flimsy flicks like this behind bars 1 +16045 689 that puts flimsy flicks like this behind bars 2 +16046 689 puts flimsy flicks like this behind bars 0 +16047 689 puts flimsy flicks 2 +16048 689 flimsy flicks 1 +16049 689 flimsy 1 +16050 689 like this behind bars 2 +16051 689 this behind bars 2 +16052 689 behind bars 3 +16053 689 bars 2 +16054 690 Paul Cox needed to show it . 1 +16055 690 Paul Cox 2 +16056 690 Cox 2 +16057 690 needed to show it . 2 +16058 690 needed to show it 2 +16059 690 needed 3 +16060 690 to show it 2 +16061 690 show it 2 +16062 691 A film that will probably please people already fascinated by Behan but leave everyone else yawning with admiration . 2 +16063 691 A film that will probably please people 4 +16064 691 that will probably please people 3 +16065 691 will probably please people 3 +16066 691 will probably 3 +16067 691 please people 3 +16068 691 already fascinated by Behan but leave everyone else yawning with admiration . 2 +16069 691 fascinated by Behan but leave everyone else yawning with admiration . 3 +16070 691 fascinated by Behan but leave everyone else yawning with admiration 2 +16071 691 fascinated by Behan but 2 +16072 691 fascinated by Behan 2 +16073 691 fascinated 3 +16074 691 by Behan 2 +16075 691 Behan 2 +16076 691 leave everyone else yawning with admiration 1 +16077 691 everyone else yawning with admiration 1 +16078 691 else yawning with admiration 2 +16079 691 yawning with admiration 2 +16080 691 yawning 1 +16081 691 with admiration 2 +16082 691 admiration 3 +16083 692 The huskies are beautiful , the border collie is funny and the overall feeling is genial and decent . 3 +16084 692 The huskies are beautiful , the border collie is funny and the overall feeling is genial and decent 3 +16085 692 The huskies are beautiful , the border collie is funny and 2 +16086 692 The huskies are beautiful , the border collie is funny 3 +16087 692 The huskies are beautiful , 3 +16088 692 The huskies are beautiful 3 +16089 692 The huskies 2 +16090 692 huskies 2 +16091 692 are beautiful 4 +16092 692 the border collie is funny 3 +16093 692 the border collie 2 +16094 692 border collie 2 +16095 692 border 2 +16096 692 collie 2 +16097 692 is funny 3 +16098 692 the overall feeling is genial and decent 3 +16099 692 the overall feeling 2 +16100 692 overall feeling 2 +16101 692 is genial and decent 4 +16102 692 genial and decent 3 +16103 692 genial and 3 +16104 692 genial 3 +16105 693 They ought to be a whole lot scarier than they are in this tepid genre offering . 1 +16106 693 ought to be a whole lot scarier than they are in this tepid genre offering . 1 +16107 693 ought to be a whole lot scarier than they are in this tepid genre offering 1 +16108 693 ought 2 +16109 693 to be a whole lot scarier than they are in this tepid genre offering 1 +16110 693 be a whole lot scarier than they are in this tepid genre offering 1 +16111 693 be a whole lot scarier 2 +16112 693 a whole lot scarier 2 +16113 693 whole lot scarier 3 +16114 693 lot scarier 2 +16115 693 scarier 2 +16116 693 than they are in this tepid genre offering 2 +16117 693 they are in this tepid genre offering 1 +16118 693 are in this tepid genre offering 1 +16119 693 in this tepid genre offering 1 +16120 693 this tepid genre offering 1 +16121 693 tepid genre offering 1 +16122 693 genre offering 2 +16123 693 genre 2 +16124 694 moved 3 +16125 694 the emotional tumult 1 +16126 694 emotional tumult 2 +16127 694 tumult 2 +16128 694 depends a lot on how interesting and likable you find them . 2 +16129 694 depends a lot on how interesting and likable you find them 3 +16130 694 depends 2 +16131 694 a lot on how interesting and likable you find them 2 +16132 694 on how interesting and likable you find them 2 +16133 694 how interesting and likable you find them 2 +16134 694 how interesting and likable 3 +16135 694 interesting and likable 4 +16136 694 interesting and 4 +16137 694 likable 3 +16138 694 you find them 2 +16139 694 find them 2 +16140 695 Nearly every attempt at humor here is DOA . 0 +16141 695 Nearly every attempt at humor 3 +16142 695 Nearly every attempt 2 +16143 695 every attempt 2 +16144 695 at humor 2 +16145 695 here is DOA . 1 +16146 695 is DOA . 0 +16147 695 is DOA 0 +16148 695 DOA 2 +16149 696 A piquant meditation on the things that prevent people from reaching happiness . 2 +16150 696 A piquant meditation on the things that prevent people from reaching happiness 2 +16151 696 A piquant meditation 3 +16152 696 piquant meditation 2 +16153 696 piquant 2 +16154 696 on the things that prevent people from reaching happiness 2 +16155 696 the things that prevent people from reaching happiness 1 +16156 696 the things 2 +16157 696 that prevent people from reaching happiness 2 +16158 696 prevent people from reaching happiness 2 +16159 696 prevent people 2 +16160 696 prevent 2 +16161 696 from reaching happiness 2 +16162 696 reaching happiness 3 +16163 696 happiness 4 +16164 697 This movie is to be cherished . 4 +16165 697 is to be cherished . 3 +16166 697 is to be cherished 4 +16167 697 to be cherished 3 +16168 697 be cherished 3 +16169 697 cherished 3 +16170 698 The Bard as black comedy -- Willie would have loved it . 4 +16171 698 The Bard as black comedy -- Willie would have loved it 3 +16172 698 The Bard as black comedy -- 2 +16173 698 The Bard as black comedy 2 +16174 698 The Bard 2 +16175 698 Bard 2 +16176 698 as black comedy 2 +16177 698 black comedy 2 +16178 698 Willie would have loved it 3 +16179 698 Willie 2 +16180 698 would have loved it 2 +16181 698 have loved it 4 +16182 698 loved it 4 +16183 698 loved 4 +16184 699 Too bland and fustily tasteful to be truly prurient . 1 +16185 699 Too bland and fustily tasteful 2 +16186 699 Too bland and 0 +16187 699 Too bland 2 +16188 699 fustily tasteful 3 +16189 699 fustily 2 +16190 699 tasteful 3 +16191 699 to be truly prurient . 2 +16192 699 to be truly prurient 1 +16193 699 be truly prurient 2 +16194 699 truly prurient 2 +16195 699 prurient 2 +16196 700 While Tattoo borrows heavily from both Seven and The Silence of the Lambs , it manages to maintain both a level of sophisticated intrigue and human-scale characters that suck the audience in . 4 +16197 700 While Tattoo borrows heavily from both Seven and The Silence of the Lambs 2 +16198 700 Tattoo borrows heavily from both Seven and The Silence of the Lambs 2 +16199 700 Tattoo 2 +16200 700 borrows heavily from both Seven and The Silence of the Lambs 2 +16201 700 borrows heavily 1 +16202 700 borrows 2 +16203 700 heavily 2 +16204 700 from both Seven and The Silence of the Lambs 2 +16205 700 both Seven and The Silence of the Lambs 2 +16206 700 both Seven and 2 +16207 700 both Seven 2 +16208 700 The Silence of the Lambs 2 +16209 700 The Silence 2 +16210 700 Silence 2 +16211 700 of the Lambs 2 +16212 700 the Lambs 2 +16213 700 Lambs 2 +16214 700 , it manages to maintain both a level of sophisticated intrigue and human-scale characters that suck the audience in . 3 +16215 700 it manages to maintain both a level of sophisticated intrigue and human-scale characters that suck the audience in . 4 +16216 700 manages to maintain both a level of sophisticated intrigue and human-scale characters that suck the audience in . 4 +16217 700 manages to maintain both a level of sophisticated intrigue and human-scale characters that suck the audience in 3 +16218 700 to maintain both a level of sophisticated intrigue and human-scale characters that suck the audience in 3 +16219 700 maintain both a level of sophisticated intrigue and human-scale characters that suck the audience in 3 +16220 700 maintain 2 +16221 700 both a level of sophisticated intrigue and human-scale characters that suck the audience in 3 +16222 700 both a level of sophisticated intrigue and human-scale characters 3 +16223 700 both a level 2 +16224 700 a level 2 +16225 700 of sophisticated intrigue and human-scale characters 3 +16226 700 sophisticated intrigue and human-scale characters 3 +16227 700 intrigue and human-scale characters 3 +16228 700 and human-scale characters 2 +16229 700 human-scale characters 2 +16230 700 human-scale 2 +16231 700 that suck the audience in 3 +16232 700 suck the audience in 3 +16233 700 suck the audience 2 +16234 701 Once he starts learning to compromise with reality enough to become comparatively sane and healthy , the film becomes predictably conventional . 1 +16235 701 Once he starts learning to compromise with reality enough to become comparatively sane and healthy 2 +16236 701 he starts learning to compromise with reality enough to become comparatively sane and healthy 2 +16237 701 starts learning to compromise with reality enough to become comparatively sane and healthy 2 +16238 701 learning to compromise with reality enough to become comparatively sane and healthy 3 +16239 701 to compromise with reality enough to become comparatively sane and healthy 2 +16240 701 compromise with reality enough to become comparatively sane and healthy 1 +16241 701 compromise with reality 2 +16242 701 with reality 2 +16243 701 enough to become comparatively sane and healthy 3 +16244 701 to become comparatively sane and healthy 2 +16245 701 become comparatively sane and healthy 3 +16246 701 comparatively sane and healthy 3 +16247 701 comparatively 2 +16248 701 sane and healthy 3 +16249 701 healthy 2 +16250 701 , the film becomes predictably conventional . 1 +16251 701 the film becomes predictably conventional . 1 +16252 701 becomes predictably conventional . 1 +16253 701 becomes predictably conventional 1 +16254 701 predictably conventional 1 +16255 701 predictably 1 +16256 702 The film is ... determined to treat its characters , weak and strong , as fallible human beings , not caricatures , and to carefully delineate the cost of the inevitable conflicts between human urges and an institution concerned with self-preservation . 3 +16257 702 is ... determined to treat its characters , weak and strong , as fallible human beings , not caricatures , and to carefully delineate the cost of the inevitable conflicts between human urges and an institution concerned with self-preservation . 4 +16258 702 is ... determined to treat its characters , weak and strong , as fallible human beings , not caricatures , and to carefully delineate the cost of the inevitable conflicts between human urges and an institution concerned with self-preservation 3 +16259 702 is ... 2 +16260 702 determined to treat its characters , weak and strong , as fallible human beings , not caricatures , and to carefully delineate the cost of the inevitable conflicts between human urges and an institution concerned with self-preservation 2 +16261 702 determined 2 +16262 702 to treat its characters , weak and strong , as fallible human beings , not caricatures , and to carefully delineate the cost of the inevitable conflicts between human urges and an institution concerned with self-preservation 3 +16263 702 to treat its characters , weak and strong , as fallible human beings , not caricatures , and 3 +16264 702 to treat its characters , weak and strong , as fallible human beings , not caricatures , 2 +16265 702 to treat its characters , weak and strong , as fallible human beings , not caricatures 2 +16266 702 treat its characters , weak and strong , as fallible human beings , not caricatures 3 +16267 702 treat its characters , weak and strong , 2 +16268 702 its characters , weak and strong , 2 +16269 702 its characters , weak and strong 1 +16270 702 its characters , 2 +16271 702 weak and strong 3 +16272 702 weak and 1 +16273 702 as fallible human beings , not caricatures 2 +16274 702 fallible human beings , not caricatures 2 +16275 702 fallible human beings , not 2 +16276 702 fallible human beings , 2 +16277 702 fallible human beings 2 +16278 702 fallible 2 +16279 702 human beings 2 +16280 702 beings 2 +16281 702 caricatures 2 +16282 702 to carefully delineate the cost of the inevitable conflicts between human urges and an institution concerned with self-preservation 2 +16283 702 carefully delineate the cost of the inevitable conflicts between human urges and an institution concerned with self-preservation 2 +16284 702 carefully 2 +16285 702 delineate the cost of the inevitable conflicts between human urges and an institution concerned with self-preservation 1 +16286 702 delineate 2 +16287 702 the cost of the inevitable conflicts between human urges and an institution concerned with self-preservation 2 +16288 702 of the inevitable conflicts between human urges and an institution concerned with self-preservation 2 +16289 702 the inevitable conflicts between human urges and an institution concerned with self-preservation 2 +16290 702 the inevitable conflicts between human urges and 2 +16291 702 the inevitable conflicts between human urges 2 +16292 702 the inevitable conflicts 2 +16293 702 inevitable conflicts 2 +16294 702 inevitable 2 +16295 702 between human urges 2 +16296 702 human urges 2 +16297 702 urges 2 +16298 702 an institution concerned with self-preservation 2 +16299 702 an institution 2 +16300 702 institution 2 +16301 702 concerned with self-preservation 2 +16302 702 concerned 2 +16303 702 with self-preservation 2 +16304 702 self-preservation 2 +16305 703 Even as it pays earnest homage to turntablists and beat jugglers , old schoolers and current innovators , Scratch is great fun , full of the kind of energy it 's documenting . 3 +16306 703 Even as it pays earnest homage to turntablists and beat jugglers , old schoolers and current innovators 3 +16307 703 as it pays earnest homage to turntablists and beat jugglers , old schoolers and current innovators 3 +16308 703 it pays earnest homage to turntablists and beat jugglers , old schoolers and current innovators 3 +16309 703 pays earnest homage to turntablists and beat jugglers , old schoolers and current innovators 3 +16310 703 pays earnest homage to turntablists and 3 +16311 703 pays earnest homage to turntablists 3 +16312 703 pays earnest homage 2 +16313 703 earnest homage 3 +16314 703 to turntablists 2 +16315 703 turntablists 2 +16316 703 beat jugglers , old schoolers and current innovators 2 +16317 703 jugglers , old schoolers and current innovators 2 +16318 703 jugglers , old schoolers and 2 +16319 703 jugglers , old schoolers 2 +16320 703 jugglers , 2 +16321 703 jugglers 2 +16322 703 old schoolers 2 +16323 703 schoolers 2 +16324 703 current innovators 3 +16325 703 current 2 +16326 703 innovators 3 +16327 703 , Scratch is great fun , full of the kind of energy it 's documenting . 3 +16328 703 Scratch is great fun , full of the kind of energy it 's documenting . 4 +16329 703 is great fun , full of the kind of energy it 's documenting . 4 +16330 703 is great fun , full of the kind of energy it 's documenting 4 +16331 703 great fun , full of the kind of energy it 's documenting 4 +16332 703 great fun , 3 +16333 703 great fun 4 +16334 703 full of the kind of energy it 's documenting 3 +16335 703 of the kind of energy it 's documenting 2 +16336 703 the kind of energy it 's documenting 3 +16337 703 of energy it 's documenting 2 +16338 703 energy it 's documenting 3 +16339 703 it 's documenting 2 +16340 703 's documenting 2 +16341 703 documenting 2 +16342 704 While it is interesting to witness the conflict from the Palestinian side , Longley 's film lacks balance ... and fails to put the struggle into meaningful historical context . 1 +16343 704 While it is interesting to witness the conflict from the Palestinian side 2 +16344 704 it is interesting to witness the conflict from the Palestinian side 2 +16345 704 is interesting to witness the conflict from the Palestinian side 3 +16346 704 interesting to witness the conflict from the Palestinian side 3 +16347 704 to witness the conflict from the Palestinian side 2 +16348 704 witness the conflict from the Palestinian side 2 +16349 704 witness the conflict 2 +16350 704 the conflict 2 +16351 704 conflict 1 +16352 704 from the Palestinian side 2 +16353 704 the Palestinian side 2 +16354 704 Palestinian side 2 +16355 704 Palestinian 2 +16356 704 , Longley 's film lacks balance ... and fails to put the struggle into meaningful historical context . 0 +16357 704 Longley 's film lacks balance ... and fails to put the struggle into meaningful historical context . 2 +16358 704 Longley 's film 3 +16359 704 Longley 's 2 +16360 704 Longley 2 +16361 704 lacks balance ... and fails to put the struggle into meaningful historical context . 0 +16362 704 lacks balance ... and fails to put the struggle into meaningful historical context 1 +16363 704 lacks balance ... and 2 +16364 704 lacks balance ... 1 +16365 704 lacks balance 1 +16366 704 balance 2 +16367 704 fails to put the struggle into meaningful historical context 1 +16368 704 to put the struggle into meaningful historical context 2 +16369 704 put the struggle into meaningful historical context 2 +16370 704 put the struggle 2 +16371 704 the struggle 2 +16372 704 into meaningful historical context 2 +16373 704 meaningful historical context 4 +16374 704 meaningful 3 +16375 704 historical context 2 +16376 705 Producer John Penotti surveyed high school students ... and came back with the astonishing revelation that `` they wanted to see something that did n't talk down to them . '' 3 +16377 705 Producer John Penotti 3 +16378 705 Producer 2 +16379 705 John Penotti 2 +16380 705 Penotti 2 +16381 705 surveyed high school students ... and came back with the astonishing revelation that `` they wanted to see something that did n't talk down to them . '' 3 +16382 705 surveyed high school students ... and came back with the astonishing revelation that `` they wanted to see something that did n't talk down to them . 2 +16383 705 surveyed high school students ... and came back with the astonishing revelation that `` they wanted to see something that did n't talk down to them 2 +16384 705 surveyed high school students ... and 2 +16385 705 surveyed high school students ... 2 +16386 705 surveyed high school students 2 +16387 705 surveyed 2 +16388 705 high school students 2 +16389 705 school students 2 +16390 705 students 2 +16391 705 came back with the astonishing revelation that `` they wanted to see something that did n't talk down to them 2 +16392 705 came back with the astonishing revelation 2 +16393 705 came 2 +16394 705 back with the astonishing revelation 3 +16395 705 with the astonishing revelation 2 +16396 705 the astonishing revelation 2 +16397 705 astonishing revelation 2 +16398 705 astonishing 4 +16399 705 revelation 3 +16400 705 that `` they wanted to see something that did n't talk down to them 2 +16401 705 that `` 2 +16402 705 they wanted to see something that did n't talk down to them 2 +16403 705 wanted to see something that did n't talk down to them 2 +16404 705 to see something that did n't talk down to them 2 +16405 705 see something that did n't talk down to them 3 +16406 705 something that did n't talk down to them 2 +16407 705 that did n't talk down to them 2 +16408 705 did n't talk down to them 3 +16409 705 talk down to them 1 +16410 705 talk down 2 +16411 705 talk 2 +16412 705 to them 2 +16413 706 A real winner -- smart , funny , subtle , and resonant . 4 +16414 706 A real winner -- smart , funny , subtle , and resonant 4 +16415 706 A real winner -- 4 +16416 706 A real winner 4 +16417 706 real winner 4 +16418 706 winner 4 +16419 706 smart , funny , subtle , and resonant 4 +16420 706 smart , 3 +16421 706 funny , subtle , and resonant 3 +16422 706 , subtle , and resonant 2 +16423 706 subtle , and resonant 3 +16424 707 Ultimate X is a ride , basically the kind of greatest-hits reel that might come with a subscription to ESPN the Magazine . 2 +16425 707 Ultimate X 2 +16426 707 Ultimate 2 +16427 707 is a ride , basically the kind of greatest-hits reel that might come with a subscription to ESPN the Magazine . 2 +16428 707 is a ride , basically the kind of greatest-hits reel that might come with a subscription to ESPN the Magazine 3 +16429 707 a ride , basically the kind of greatest-hits reel that might come with a subscription to ESPN the Magazine 3 +16430 707 a ride , basically 3 +16431 707 a ride , 2 +16432 707 a ride 2 +16433 707 basically 2 +16434 707 the kind of greatest-hits reel that might come with a subscription to ESPN the Magazine 2 +16435 707 the kind of greatest-hits reel 2 +16436 707 of greatest-hits reel 3 +16437 707 greatest-hits reel 4 +16438 707 greatest-hits 3 +16439 707 reel 2 +16440 707 that might come with a subscription to ESPN the Magazine 2 +16441 707 might come with a subscription to ESPN the Magazine 2 +16442 707 come with a subscription to ESPN the Magazine 2 +16443 707 with a subscription to ESPN the Magazine 2 +16444 707 a subscription to ESPN the Magazine 2 +16445 707 subscription to ESPN the Magazine 2 +16446 707 subscription 2 +16447 707 to ESPN the Magazine 2 +16448 707 ESPN the Magazine 2 +16449 707 ESPN 3 +16450 707 the Magazine 2 +16451 707 Magazine 2 +16452 708 Unfortunately , contrived plotting , stereotyped characters and Woo 's over-the-top instincts as a director undermine the moral dilemma at the movie 's heart . 2 +16453 708 , contrived plotting , stereotyped characters and Woo 's over-the-top instincts as a director undermine the moral dilemma at the movie 's heart . 0 +16454 708 contrived plotting , stereotyped characters and Woo 's over-the-top instincts as a director undermine the moral dilemma at the movie 's heart . 2 +16455 708 contrived plotting , stereotyped characters and Woo 's over-the-top instincts as a director 1 +16456 708 contrived plotting , stereotyped characters and 0 +16457 708 contrived plotting , stereotyped characters 1 +16458 708 contrived plotting , 1 +16459 708 contrived plotting 2 +16460 708 stereotyped characters 1 +16461 708 stereotyped 2 +16462 708 Woo 's over-the-top instincts as a director 2 +16463 708 Woo 's over-the-top instincts 2 +16464 708 Woo 's 2 +16465 708 over-the-top instincts 2 +16466 708 instincts 2 +16467 708 undermine the moral dilemma at the movie 's heart . 1 +16468 708 undermine the moral dilemma at the movie 's heart 2 +16469 708 undermine 2 +16470 708 the moral dilemma at the movie 's heart 2 +16471 708 the moral dilemma 2 +16472 708 moral dilemma 2 +16473 708 dilemma 2 +16474 708 at the movie 's heart 2 +16475 708 the movie 's heart 2 +16476 709 Jones ... makes a great impression as the writer-director of this little $ 1.8 million charmer , which may not be cutting-edge indie filmmaking but has a huge heart . 4 +16477 709 ... makes a great impression as the writer-director of this little $ 1.8 million charmer , which may not be cutting-edge indie filmmaking but has a huge heart . 3 +16478 709 makes a great impression as the writer-director of this little $ 1.8 million charmer , which may not be cutting-edge indie filmmaking but has a huge heart . 3 +16479 709 makes a great impression as the writer-director of this little $ 1.8 million charmer , which may not be cutting-edge indie filmmaking but has a huge heart 3 +16480 709 makes a great impression as the writer-director of this little $ 1.8 million charmer , which may not be cutting-edge indie filmmaking but 3 +16481 709 makes a great impression as the writer-director of this little $ 1.8 million charmer , which may not be cutting-edge indie filmmaking 3 +16482 709 makes a great impression 4 +16483 709 a great impression 4 +16484 709 great impression 3 +16485 709 as the writer-director of this little $ 1.8 million charmer , which may not be cutting-edge indie filmmaking 3 +16486 709 the writer-director of this little $ 1.8 million charmer , which may not be cutting-edge indie filmmaking 1 +16487 709 the writer-director 2 +16488 709 writer-director 2 +16489 709 of this little $ 1.8 million charmer , which may not be cutting-edge indie filmmaking 2 +16490 709 this little $ 1.8 million charmer , which may not be cutting-edge indie filmmaking 3 +16491 709 this little $ 1.8 million charmer , 3 +16492 709 this little $ 1.8 million charmer 3 +16493 709 little $ 1.8 million charmer 3 +16494 709 $ 1.8 million charmer 3 +16495 709 $ 1.8 million 2 +16496 709 $ 1.8 2 +16497 709 1.8 2 +16498 709 million 2 +16499 709 which may not be cutting-edge indie filmmaking 1 +16500 709 may not be cutting-edge indie filmmaking 1 +16501 709 be cutting-edge indie filmmaking 3 +16502 709 cutting-edge indie filmmaking 4 +16503 709 cutting-edge 4 +16504 709 indie filmmaking 2 +16505 709 has a huge heart 3 +16506 709 a huge heart 4 +16507 709 huge heart 3 +16508 710 Even a hardened voyeur would require the patience of Job to get through this interminable , shapeless documentary about the swinging subculture . 0 +16509 710 Even a hardened voyeur 2 +16510 710 a hardened voyeur 2 +16511 710 hardened voyeur 2 +16512 710 voyeur 2 +16513 710 would require the patience of Job to get through this interminable , shapeless documentary about the swinging subculture . 1 +16514 710 would require the patience of Job to get through this interminable , shapeless documentary about the swinging subculture 1 +16515 710 require the patience of Job to get through this interminable , shapeless documentary about the swinging subculture 0 +16516 710 require the patience of Job 2 +16517 710 require 2 +16518 710 the patience of Job 2 +16519 710 the patience 2 +16520 710 patience 3 +16521 710 of Job 2 +16522 710 to get through this interminable , shapeless documentary about the swinging subculture 0 +16523 710 get through this interminable , shapeless documentary about the swinging subculture 0 +16524 710 through this interminable , shapeless documentary about the swinging subculture 1 +16525 710 this interminable , shapeless documentary about the swinging subculture 1 +16526 710 this interminable , shapeless documentary 1 +16527 710 interminable , shapeless documentary 0 +16528 710 interminable 2 +16529 710 , shapeless documentary 1 +16530 710 shapeless documentary 1 +16531 710 shapeless 1 +16532 710 about the swinging subculture 2 +16533 710 the swinging subculture 2 +16534 710 swinging subculture 2 +16535 710 subculture 2 +16536 711 I 'd watch these two together again in a New York minute . 4 +16537 711 'd watch these two together again in a New York minute . 3 +16538 711 'd watch these two together again in a New York minute 3 +16539 711 watch these two together again in a New York minute 3 +16540 711 watch these two together again 3 +16541 711 watch these two together 3 +16542 711 watch these two 3 +16543 711 these two 2 +16544 711 in a New York minute 2 +16545 711 a New York minute 2 +16546 711 New York minute 2 +16547 711 York minute 2 +16548 711 minute 2 +16549 712 You can practically hear George Orwell turning over . 0 +16550 712 can practically hear George Orwell turning over . 1 +16551 712 can practically hear George Orwell turning over 2 +16552 712 can practically 2 +16553 712 hear George Orwell turning over 1 +16554 712 hear 2 +16555 712 George Orwell turning over 1 +16556 712 George Orwell 2 +16557 712 George 2 +16558 712 Orwell 2 +16559 712 turning over 2 +16560 712 turning 2 +16561 713 Ferrara 's best film in years . 4 +16562 713 Ferrara 's best film in years 4 +16563 713 Ferrara 's best film 3 +16564 713 Ferrara 's 3 +16565 713 best film 4 +16566 713 in years 2 +16567 714 Possibly not since Grumpy Old Men have I heard a film so solidly connect with one demographic while striking out with another . 2 +16568 714 not since Grumpy Old Men have I heard a film so solidly connect with one demographic while striking out with another . 3 +16569 714 not since Grumpy Old Men 2 +16570 714 since Grumpy Old Men 2 +16571 714 Grumpy Old Men 2 +16572 714 Grumpy 2 +16573 714 Old Men 2 +16574 714 have I heard a film so solidly connect with one demographic while striking out with another . 2 +16575 714 have I heard a film so solidly connect with one demographic while striking out with another 2 +16576 714 have I 2 +16577 714 heard a film so solidly connect with one demographic while striking out with another 2 +16578 714 a film so solidly connect with one demographic while striking out with another 3 +16579 714 so solidly connect with one demographic while striking out with another 1 +16580 714 so solidly connect with one demographic while 3 +16581 714 solidly connect with one demographic while 3 +16582 714 solidly 3 +16583 714 connect with one demographic while 3 +16584 714 with one demographic while 2 +16585 714 one demographic while 2 +16586 714 demographic while 3 +16587 714 demographic 2 +16588 714 striking out with another 2 +16589 714 striking out 1 +16590 714 with another 2 +16591 715 No doubt the star and everyone else involved had their hearts in the right place . 3 +16592 715 the star and everyone else involved had their hearts in the right place . 2 +16593 715 the star and everyone else involved 2 +16594 715 the star and everyone 2 +16595 715 star and everyone 2 +16596 715 star and 2 +16597 715 else involved 2 +16598 715 had their hearts in the right place . 3 +16599 715 had their hearts in the right place 3 +16600 715 their hearts in the right place 3 +16601 715 their hearts 2 +16602 716 ... a visually seductive , unrepentantly trashy take on Rice 's second installment of her Vampire Chronicles . 2 +16603 716 a visually seductive , unrepentantly trashy take on Rice 's second installment of her Vampire Chronicles . 2 +16604 716 a visually seductive 3 +16605 716 visually seductive 3 +16606 716 seductive 2 +16607 716 , unrepentantly trashy take on Rice 's second installment of her Vampire Chronicles . 1 +16608 716 unrepentantly trashy take on Rice 's second installment of her Vampire Chronicles . 1 +16609 716 unrepentantly trashy 0 +16610 716 unrepentantly 1 +16611 716 trashy 1 +16612 716 take on Rice 's second installment of her Vampire Chronicles . 2 +16613 716 take on Rice 's second installment of her Vampire Chronicles 2 +16614 716 on Rice 's second installment of her Vampire Chronicles 2 +16615 716 Rice 's second installment of her Vampire Chronicles 2 +16616 716 Rice 's second installment 2 +16617 716 Rice 's 2 +16618 716 second installment 2 +16619 716 installment 2 +16620 716 of her Vampire Chronicles 2 +16621 716 her Vampire Chronicles 2 +16622 716 Vampire Chronicles 2 +16623 716 Vampire 2 +16624 716 Chronicles 2 +16625 717 Poetry in motion captured on film . 4 +16626 717 Poetry in motion 4 +16627 717 in motion 2 +16628 717 captured on film . 2 +16629 717 captured on film 2 +16630 717 captured 3 +16631 717 on film 2 +16632 718 Pretend like your SAT scores are below 120 and you might not notice the flaws . 1 +16633 718 Pretend like your SAT scores are below 120 and you might not notice the flaws 0 +16634 718 Pretend like your SAT scores are below 120 and 0 +16635 718 Pretend like your SAT scores are below 120 0 +16636 718 Pretend like your SAT scores 2 +16637 718 Pretend 2 +16638 718 like your SAT scores 2 +16639 718 your SAT scores 2 +16640 718 SAT scores 2 +16641 718 SAT 2 +16642 718 scores 2 +16643 718 are below 120 2 +16644 718 below 120 2 +16645 718 120 2 +16646 718 you might not notice the flaws 2 +16647 718 might not notice the flaws 2 +16648 718 notice the flaws 1 +16649 718 the flaws 1 +16650 719 None of Birthday Girl 's calculated events take us by surprise ... 1 +16651 719 None of Birthday Girl 's calculated events 2 +16652 719 of Birthday Girl 's calculated events 2 +16653 719 Birthday Girl 's calculated events 1 +16654 719 Birthday Girl 's 2 +16655 719 Girl 's 2 +16656 719 calculated events 2 +16657 719 calculated 2 +16658 719 take us by surprise ... 3 +16659 719 take us by surprise 2 +16660 719 take us 2 +16661 719 by surprise 2 +16662 720 Twenty-three movies into a mostly magnificent directorial career , Clint Eastwood 's efficiently minimalist style finally has failed him . 1 +16663 720 Twenty-three movies into a mostly magnificent directorial career , Clint Eastwood 's efficiently minimalist style 3 +16664 720 Twenty-three movies 2 +16665 720 Twenty-three 2 +16666 720 into a mostly magnificent directorial career , Clint Eastwood 's efficiently minimalist style 3 +16667 720 a mostly magnificent directorial career , Clint Eastwood 's efficiently minimalist style 4 +16668 720 a mostly magnificent directorial career , 4 +16669 720 a mostly magnificent directorial career 4 +16670 720 mostly magnificent directorial career 4 +16671 720 magnificent directorial career 4 +16672 720 magnificent 4 +16673 720 directorial career 2 +16674 720 Clint Eastwood 's efficiently minimalist style 3 +16675 720 Clint Eastwood 's 2 +16676 720 Clint 2 +16677 720 Eastwood 's 2 +16678 720 Eastwood 2 +16679 720 efficiently minimalist style 3 +16680 720 efficiently 3 +16681 720 minimalist style 2 +16682 720 minimalist 2 +16683 720 finally has failed him . 1 +16684 720 has failed him . 2 +16685 720 has failed him 0 +16686 720 failed him 2 +16687 721 It 's like a `` Big Chill '' reunion of the Baader-Meinhof Gang , only these guys are more harmless pranksters than political activists . 2 +16688 721 It 's like a `` Big Chill '' reunion of the Baader-Meinhof Gang 2 +16689 721 's like a `` Big Chill '' reunion of the Baader-Meinhof Gang 2 +16690 721 like a `` Big Chill '' reunion of the Baader-Meinhof Gang 2 +16691 721 a `` Big Chill '' reunion of the Baader-Meinhof Gang 2 +16692 721 a `` Big Chill '' reunion 2 +16693 721 `` Big Chill '' reunion 2 +16694 721 Big Chill '' reunion 2 +16695 721 Chill '' reunion 2 +16696 721 Chill 2 +16697 721 '' reunion 2 +16698 721 reunion 3 +16699 721 of the Baader-Meinhof Gang 2 +16700 721 the Baader-Meinhof Gang 2 +16701 721 Baader-Meinhof Gang 2 +16702 721 Baader-Meinhof 2 +16703 721 Gang 2 +16704 721 , only these guys are more harmless pranksters than political activists . 2 +16705 721 only these guys are more harmless pranksters than political activists . 2 +16706 721 only these guys 2 +16707 721 these guys 2 +16708 721 are more harmless pranksters than political activists . 1 +16709 721 are more harmless pranksters than political activists 2 +16710 721 more harmless pranksters than political activists 2 +16711 721 more harmless pranksters 2 +16712 721 more harmless 3 +16713 721 harmless 2 +16714 721 pranksters 2 +16715 721 than political activists 2 +16716 721 political activists 2 +16717 721 activists 2 +16718 722 Ms. Hutchins is talented enough and charismatic enough to make us care about Zelda 's ultimate fate . 4 +16719 722 Ms. Hutchins 2 +16720 722 Ms. 2 +16721 722 Hutchins 2 +16722 722 is talented enough and charismatic enough to make us care about Zelda 's ultimate fate . 4 +16723 722 is talented enough and charismatic enough to make us care about Zelda 's ultimate fate 3 +16724 722 talented enough and charismatic enough to make us care about Zelda 's ultimate fate 3 +16725 722 talented enough and 4 +16726 722 talented enough 2 +16727 722 charismatic enough to make us care about Zelda 's ultimate fate 3 +16728 722 charismatic enough 3 +16729 722 to make us care about Zelda 's ultimate fate 3 +16730 722 make us care about Zelda 's ultimate fate 3 +16731 722 us care about Zelda 's ultimate fate 2 +16732 722 care about Zelda 's ultimate fate 2 +16733 722 about Zelda 's ultimate fate 2 +16734 722 Zelda 's ultimate fate 2 +16735 722 Zelda 's 2 +16736 722 Zelda 2 +16737 722 ultimate fate 2 +16738 722 fate 2 +16739 723 Successfully blended satire , high camp and yet another sexual taboo into a really funny movie . 3 +16740 723 Successfully blended satire , high camp and yet another sexual taboo into a really funny movie 4 +16741 723 Successfully blended satire , 3 +16742 723 Successfully blended satire 3 +16743 723 blended satire 2 +16744 723 blended 2 +16745 723 high camp and yet another sexual taboo into a really funny movie 3 +16746 723 high camp and 2 +16747 723 high camp 2 +16748 723 camp 2 +16749 723 yet another sexual taboo into a really funny movie 3 +16750 723 yet another sexual taboo 2 +16751 723 another sexual taboo 2 +16752 723 sexual taboo 2 +16753 723 taboo 1 +16754 723 into a really funny movie 3 +16755 723 a really funny movie 4 +16756 723 really funny movie 4 +16757 724 Really is a pan-American movie , with moments of genuine insight into the urban heart . 3 +16758 724 is a pan-American movie , with moments of genuine insight into the urban heart . 4 +16759 724 is a pan-American movie , with moments of genuine insight into the urban heart 3 +16760 724 is a pan-American movie , 2 +16761 724 is a pan-American movie 2 +16762 724 a pan-American movie 2 +16763 724 pan-American movie 2 +16764 724 pan-American 2 +16765 724 with moments of genuine insight into the urban heart 4 +16766 724 moments of genuine insight into the urban heart 3 +16767 724 of genuine insight into the urban heart 4 +16768 724 genuine insight into the urban heart 4 +16769 724 genuine insight 4 +16770 724 genuine 4 +16771 724 into the urban heart 3 +16772 724 the urban heart 2 +16773 724 urban heart 2 +16774 724 urban 2 +16775 725 Same song , second verse , coulda been better , but it coulda been worse . 2 +16776 725 Same song , second verse , coulda been better , but it coulda been worse 1 +16777 725 Same song , second verse , coulda been better , but it coulda 1 +16778 725 Same song , second verse , 2 +16779 725 Same song , second verse 1 +16780 725 Same song , 1 +16781 725 Same song 2 +16782 725 second verse 2 +16783 725 verse 2 +16784 725 coulda been better , but it coulda 1 +16785 725 coulda 2 +16786 725 been better , but it coulda 1 +16787 725 better , but it coulda 3 +16788 725 better , but 3 +16789 725 better , 3 +16790 725 it coulda 2 +16791 725 been worse 1 +16792 726 The superior plotline is n't quite enough to drag along the dead -LRB- water -RRB- weight of the other . 1 +16793 726 The superior plotline 4 +16794 726 superior plotline 4 +16795 726 plotline 2 +16796 726 is n't quite enough to drag along the dead -LRB- water -RRB- weight of the other . 2 +16797 726 is n't quite enough to drag along the dead -LRB- water -RRB- weight of the other 1 +16798 726 quite enough to drag along the dead -LRB- water -RRB- weight of the other 2 +16799 726 enough to drag along the dead -LRB- water -RRB- weight of the other 1 +16800 726 to drag along the dead -LRB- water -RRB- weight of the other 1 +16801 726 drag along the dead -LRB- water -RRB- weight of the other 1 +16802 726 drag along 1 +16803 726 the dead -LRB- water -RRB- weight of the other 1 +16804 726 the dead -LRB- water -RRB- weight 2 +16805 726 dead -LRB- water -RRB- weight 1 +16806 726 -LRB- water -RRB- weight 2 +16807 726 -LRB- water -RRB- 2 +16808 726 water -RRB- 2 +16809 726 water 2 +16810 726 of the other 3 +16811 726 the other 2 +16812 727 Crikey indeed . 2 +16813 727 Crikey indeed 1 +16814 727 Crikey 1 +16815 728 It 's exactly what you 'd expect . 2 +16816 728 's exactly what you 'd expect . 1 +16817 728 's exactly what you 'd expect 2 +16818 728 exactly what you 'd expect 2 +16819 728 exactly what 2 +16820 728 exactly 2 +16821 728 you 'd expect 2 +16822 728 'd expect 2 +16823 729 It 's definitely not made for kids or their parents , for that matter , and I think even fans of Sandler 's comic taste may find it uninteresting . 1 +16824 729 It 's definitely not made for kids or their parents , for that matter , and I think even fans of Sandler 's comic taste may find it uninteresting 0 +16825 729 It 's definitely not made for kids or their parents , for that matter , and 1 +16826 729 It 's definitely not made for kids or their parents , for that matter , 1 +16827 729 It 's definitely not made for kids or their parents , for that matter 1 +16828 729 's definitely not made for kids or their parents , for that matter 1 +16829 729 's definitely not 2 +16830 729 's definitely 2 +16831 729 made for kids or their parents , for that matter 2 +16832 729 for kids or their parents , for that matter 1 +16833 729 for kids or their parents 3 +16834 729 kids or their parents 2 +16835 729 kids or 2 +16836 729 , for that matter 2 +16837 729 for that matter 2 +16838 729 that matter 2 +16839 729 I think even fans of Sandler 's comic taste may find it uninteresting 0 +16840 729 think even fans of Sandler 's comic taste may find it uninteresting 2 +16841 729 even fans of Sandler 's comic taste may find it uninteresting 1 +16842 729 fans of Sandler 's comic taste may find it uninteresting 1 +16843 729 fans of Sandler 's comic taste 2 +16844 729 of Sandler 's comic taste 2 +16845 729 Sandler 's comic taste 2 +16846 729 Sandler 's 2 +16847 729 comic taste 2 +16848 729 may find it uninteresting 1 +16849 729 find it uninteresting 0 +16850 729 it uninteresting 2 +16851 729 uninteresting 1 +16852 730 You can not guess why the cast and crew did n't sign a pact to burn the negative and the script and pretend the whole thing never existed . 0 +16853 730 can not guess why the cast and crew did n't sign a pact to burn the negative and the script and pretend the whole thing never existed . 0 +16854 730 can not guess why the cast and crew did n't sign a pact to burn the negative and the script and pretend the whole thing never existed 0 +16855 730 guess why the cast and crew did n't sign a pact to burn the negative and the script and pretend the whole thing never existed 0 +16856 730 guess 2 +16857 730 why the cast and crew did n't sign a pact to burn the negative and the script and pretend the whole thing never existed 0 +16858 730 the cast and crew did n't sign a pact to burn the negative and the script and pretend the whole thing never existed 1 +16859 730 the cast and crew 2 +16860 730 cast and crew 2 +16861 730 cast and 2 +16862 730 crew 2 +16863 730 did n't sign a pact to burn the negative and the script and pretend the whole thing never existed 0 +16864 730 sign a pact to burn the negative and the script and pretend the whole thing never existed 0 +16865 730 a pact to burn the negative and the script and pretend the whole thing never existed 0 +16866 730 pact to burn the negative and the script and pretend the whole thing never existed 0 +16867 730 pact 2 +16868 730 to burn the negative and the script and pretend the whole thing never existed 0 +16869 730 burn the negative and the script and pretend the whole thing never existed 0 +16870 730 burn the negative and the script and 0 +16871 730 burn the negative and the script 0 +16872 730 burn 2 +16873 730 the negative and the script 1 +16874 730 the negative and 2 +16875 730 the negative 2 +16876 730 negative 1 +16877 730 pretend the whole thing never existed 0 +16878 730 the whole thing never existed 1 +16879 730 the whole thing 2 +16880 730 whole thing 3 +16881 730 never existed 1 +16882 730 existed 2 +16883 731 A stirring road movie . 3 +16884 731 stirring road movie . 3 +16885 731 road movie . 2 +16886 732 If you 've grown tired of going where no man has gone before , but several movies have - take heart . 3 +16887 732 If you 've grown tired of going where no man has gone before 2 +16888 732 you 've grown tired of going where no man has gone before 2 +16889 732 've grown tired of going where no man has gone before 1 +16890 732 grown tired of going where no man has gone before 1 +16891 732 grown 2 +16892 732 tired of going where no man has gone before 1 +16893 732 of going where no man has gone before 2 +16894 732 going where no man has gone before 3 +16895 732 where no man has gone before 2 +16896 732 no man has gone before 2 +16897 732 no man 2 +16898 732 has gone before 2 +16899 732 gone before 2 +16900 732 , but several movies have - take heart . 2 +16901 732 but several movies have - take heart . 2 +16902 732 but several movies have - take heart 2 +16903 732 but several movies have - 2 +16904 732 but several movies have 2 +16905 732 several movies have 2 +16906 732 several movies 2 +16907 732 take heart 3 +16908 733 It has more than a few moments that are insightful enough to be fondly remembered in the endlessly challenging maze of moviegoing . 3 +16909 733 has more than a few moments that are insightful enough to be fondly remembered in the endlessly challenging maze of moviegoing . 3 +16910 733 has more than a few moments that are insightful enough to be fondly remembered in the endlessly challenging maze of moviegoing 3 +16911 733 more than a few moments that are insightful enough to be fondly remembered in the endlessly challenging maze of moviegoing 4 +16912 733 more than a few moments 2 +16913 733 more than a few 2 +16914 733 than a few 2 +16915 733 than a 2 +16916 733 that are insightful enough to be fondly remembered in the endlessly challenging maze of moviegoing 4 +16917 733 are insightful enough to be fondly remembered in the endlessly challenging maze of moviegoing 3 +16918 733 insightful enough to be fondly remembered in the endlessly challenging maze of moviegoing 3 +16919 733 insightful enough 3 +16920 733 insightful 3 +16921 733 to be fondly remembered in the endlessly challenging maze of moviegoing 3 +16922 733 be fondly remembered in the endlessly challenging maze of moviegoing 3 +16923 733 fondly remembered in the endlessly challenging maze of moviegoing 3 +16924 733 fondly 3 +16925 733 remembered in the endlessly challenging maze of moviegoing 3 +16926 733 remembered 2 +16927 733 in the endlessly challenging maze of moviegoing 2 +16928 733 the endlessly challenging maze of moviegoing 3 +16929 733 the endlessly challenging maze 2 +16930 733 endlessly challenging maze 2 +16931 733 endlessly challenging 3 +16932 733 endlessly 1 +16933 733 challenging 2 +16934 733 maze 2 +16935 733 of moviegoing 2 +16936 733 moviegoing 2 +16937 734 It just goes to show , an intelligent person is n't necessarily an admirable storyteller . 1 +16938 734 It just goes to show 2 +16939 734 just goes to show 2 +16940 734 goes to show 2 +16941 734 to show 2 +16942 734 , an intelligent person is n't necessarily an admirable storyteller . 2 +16943 734 an intelligent person is n't necessarily an admirable storyteller . 1 +16944 734 an intelligent person 3 +16945 734 intelligent person 2 +16946 734 is n't necessarily an admirable storyteller . 1 +16947 734 is n't necessarily an admirable storyteller 1 +16948 734 is n't necessarily 2 +16949 734 necessarily 2 +16950 734 an admirable storyteller 3 +16951 734 admirable storyteller 3 +16952 735 Perhaps the best sports movie I 've ever seen . 4 +16953 735 the best sports movie I 've ever seen . 4 +16954 735 the best sports movie I 've ever seen 4 +16955 735 the best sports movie 4 +16956 735 best sports movie 4 +16957 735 sports movie 2 +16958 735 sports 2 +16959 735 I 've ever seen 2 +16960 736 Just send it to Cranky . 1 +16961 736 send it to Cranky . 2 +16962 736 send it to Cranky 2 +16963 736 send it 2 +16964 736 send 2 +16965 736 to Cranky 2 +16966 736 Cranky 1 +16967 737 Steven Soderbergh does n't remake Andrei Tarkovsky 's Solaris so much as distill it . 1 +16968 737 Steven Soderbergh 2 +16969 737 does n't remake Andrei Tarkovsky 's Solaris so much as distill it . 1 +16970 737 does n't remake Andrei Tarkovsky 's Solaris so much as distill it 2 +16971 737 remake Andrei Tarkovsky 's Solaris so much as distill it 1 +16972 737 remake Andrei Tarkovsky 's Solaris 2 +16973 737 Andrei Tarkovsky 's Solaris 2 +16974 737 Andrei Tarkovsky 's 2 +16975 737 Andrei 3 +16976 737 Tarkovsky 's 2 +16977 737 Tarkovsky 2 +16978 737 Solaris 2 +16979 737 so much as distill it 2 +16980 737 as distill it 2 +16981 737 distill it 2 +16982 737 distill 2 +16983 738 Anyone who wants to start writing screenplays can just follow the same blueprint from hundreds of other films , sell it to the highest bidder and walk away without anyone truly knowing your identity . 1 +16984 738 Anyone who wants to start writing screenplays 3 +16985 738 who wants to start writing screenplays 2 +16986 738 wants to start writing screenplays 2 +16987 738 wants 3 +16988 738 to start writing screenplays 2 +16989 738 start writing screenplays 2 +16990 738 writing screenplays 2 +16991 738 screenplays 2 +16992 738 can just follow the same blueprint from hundreds of other films , sell it to the highest bidder and walk away without anyone truly knowing your identity . 1 +16993 738 can just follow the same blueprint from hundreds of other films , sell it to the highest bidder and walk away without anyone truly knowing your identity 1 +16994 738 can just 2 +16995 738 follow the same blueprint from hundreds of other films , sell it to the highest bidder and walk away without anyone truly knowing your identity 1 +16996 738 follow the same blueprint from hundreds of other films , sell it to the highest bidder and 1 +16997 738 follow the same blueprint from hundreds of other films , sell it to the highest bidder 2 +16998 738 follow the same blueprint from hundreds of other films , 1 +16999 738 follow the same blueprint from hundreds of other films 1 +17000 738 follow the same blueprint 2 +17001 738 follow 2 +17002 738 the same blueprint 1 +17003 738 same blueprint 2 +17004 738 blueprint 2 +17005 738 from hundreds of other films 2 +17006 738 hundreds of other films 2 +17007 738 hundreds 2 +17008 738 of other films 2 +17009 738 other films 2 +17010 738 sell it to the highest bidder 2 +17011 738 sell it 3 +17012 738 sell 2 +17013 738 to the highest bidder 2 +17014 738 the highest bidder 2 +17015 738 highest bidder 2 +17016 738 bidder 3 +17017 738 walk away without anyone truly knowing your identity 1 +17018 738 walk away 1 +17019 738 without anyone truly knowing your identity 2 +17020 738 anyone truly knowing your identity 2 +17021 738 truly knowing your identity 2 +17022 738 knowing your identity 2 +17023 738 knowing 2 +17024 738 your identity 2 +17025 738 identity 2 +17026 739 In theory , a middle-aged romance pairing Clayburgh and Tambor sounds promising , but in practice it 's something else altogether -- clownish and offensive and nothing at all like real life . 1 +17027 739 In theory , a middle-aged romance pairing Clayburgh and Tambor sounds promising , but in practice it 's something else altogether -- clownish and offensive and nothing at all like real life 2 +17028 739 In theory , a middle-aged romance pairing Clayburgh and Tambor sounds promising , but 2 +17029 739 In theory , a middle-aged romance pairing Clayburgh and Tambor sounds promising , 3 +17030 739 In theory , a middle-aged romance pairing Clayburgh and Tambor sounds promising 3 +17031 739 In theory 2 +17032 739 theory 2 +17033 739 , a middle-aged romance pairing Clayburgh and Tambor sounds promising 2 +17034 739 a middle-aged romance pairing Clayburgh and Tambor sounds promising 3 +17035 739 a middle-aged romance pairing Clayburgh and Tambor 3 +17036 739 a middle-aged romance 3 +17037 739 middle-aged romance 2 +17038 739 middle-aged 2 +17039 739 romance 3 +17040 739 pairing Clayburgh and Tambor 3 +17041 739 pairing 2 +17042 739 Clayburgh and Tambor 2 +17043 739 Clayburgh and 2 +17044 739 Clayburgh 2 +17045 739 Tambor 2 +17046 739 sounds promising 3 +17047 739 promising 3 +17048 739 in practice it 's something else altogether -- clownish and offensive and nothing at all like real life 1 +17049 739 in practice 2 +17050 739 practice 2 +17051 739 it 's something else altogether -- clownish and offensive and nothing at all like real life 0 +17052 739 's something else altogether -- clownish and offensive and nothing at all like real life 0 +17053 739 something else altogether -- clownish and offensive and nothing at all like real life 0 +17054 739 something else altogether -- clownish and 3 +17055 739 something else altogether -- clownish 2 +17056 739 something else altogether -- 2 +17057 739 something else altogether 2 +17058 739 something else 2 +17059 739 altogether 2 +17060 739 clownish 2 +17061 739 offensive and nothing at all like real life 0 +17062 739 offensive and nothing 2 +17063 739 at all like real life 2 +17064 739 all like real life 2 +17065 739 like real life 3 +17066 740 Works better in the conception than it does in the execution ... winds up seeming just a little too clever . 1 +17067 740 Works better in the conception than it does in the execution ... winds up seeming just a little too clever 1 +17068 740 Works better in the conception than it does in the execution ... 2 +17069 740 Works better in the conception than it does in the execution 1 +17070 740 better in the conception than it does in the execution 2 +17071 740 in the conception than it does in the execution 1 +17072 740 the conception than it does in the execution 2 +17073 740 the conception 2 +17074 740 conception 2 +17075 740 than it does in the execution 2 +17076 740 it does in the execution 2 +17077 740 does in the execution 2 +17078 740 in the execution 2 +17079 740 the execution 1 +17080 740 winds up seeming just a little too clever 2 +17081 740 up seeming just a little too clever 2 +17082 740 seeming just a little too clever 2 +17083 740 just a little too clever 2 +17084 740 just a little 2 +17085 740 too clever 3 +17086 741 New Yorkers always seem to find the oddest places to dwell ... 2 +17087 741 New Yorkers 2 +17088 741 Yorkers 2 +17089 741 always seem to find the oddest places to dwell ... 2 +17090 741 seem to find the oddest places to dwell ... 2 +17091 741 seem to find the oddest places to dwell 1 +17092 741 to find the oddest places to dwell 2 +17093 741 find the oddest places to dwell 2 +17094 741 find the oddest places 2 +17095 741 the oddest places 2 +17096 741 oddest places 2 +17097 741 places 2 +17098 741 to dwell 2 +17099 741 dwell 2 +17100 742 Vaguely interesting , but it 's just too too much . 1 +17101 742 Vaguely interesting , but it 's just too too much 1 +17102 742 Vaguely interesting , 2 +17103 742 Vaguely interesting 3 +17104 742 Vaguely 2 +17105 742 but it 's just too too much 1 +17106 742 it 's just too too much 2 +17107 742 's just too too much 2 +17108 742 too too much 2 +17109 743 With all the sympathy , empathy and pity fogging up the screen ... His Secret Life enters the land of unintentional melodrama and tiresome love triangles . 1 +17110 743 With all the sympathy 2 +17111 743 all the sympathy 2 +17112 743 the sympathy 2 +17113 743 , empathy and pity fogging up the screen ... His Secret Life enters the land of unintentional melodrama and tiresome love triangles . 1 +17114 743 empathy and pity fogging up the screen ... His Secret Life enters the land of unintentional melodrama and tiresome love triangles . 1 +17115 743 empathy and pity fogging up the screen ... His Secret Life enters the land of unintentional melodrama and tiresome love triangles 2 +17116 743 empathy and pity fogging up the screen ... 1 +17117 743 empathy and pity fogging up the screen 2 +17118 743 empathy and pity 2 +17119 743 empathy and 2 +17120 743 fogging up the screen 2 +17121 743 fogging up 2 +17122 743 fogging 2 +17123 743 His Secret Life enters the land of unintentional melodrama and tiresome love triangles 1 +17124 743 His Secret Life 2 +17125 743 Secret Life 2 +17126 743 enters the land of unintentional melodrama and tiresome love triangles 2 +17127 743 enters 2 +17128 743 the land of unintentional melodrama and tiresome love triangles 1 +17129 743 the land 3 +17130 743 of unintentional melodrama and tiresome love triangles 1 +17131 743 unintentional melodrama and tiresome love triangles 1 +17132 743 melodrama and tiresome love triangles 1 +17133 743 and tiresome love triangles 2 +17134 743 tiresome love triangles 0 +17135 743 love triangles 2 +17136 743 triangles 2 +17137 744 Van Wilder has a built-in audience , but only among those who are drying out from spring break and are still unconcerned about what they ingest . 1 +17138 744 Van Wilder 2 +17139 744 Wilder 2 +17140 744 has a built-in audience , but only among those who are drying out from spring break and are still unconcerned about what they ingest . 2 +17141 744 has a built-in audience , but only among those who are drying out from spring break and are still unconcerned about what they ingest 1 +17142 744 has a built-in audience , but only among those who are drying out from spring break and 1 +17143 744 has a built-in audience , but only among those who are drying out from spring break 1 +17144 744 has a built-in audience , 2 +17145 744 has a built-in audience 2 +17146 744 a built-in audience 2 +17147 744 built-in audience 3 +17148 744 built-in 2 +17149 744 but only among those who are drying out from spring break 1 +17150 744 but only 2 +17151 744 among those who are drying out from spring break 2 +17152 744 those who are drying out from spring break 3 +17153 744 who are drying out from spring break 2 +17154 744 are drying out from spring break 2 +17155 744 drying out from spring break 2 +17156 744 drying out 1 +17157 744 drying 2 +17158 744 from spring break 2 +17159 744 spring break 2 +17160 744 spring 2 +17161 744 are still unconcerned about what they ingest 3 +17162 744 unconcerned about what they ingest 1 +17163 744 unconcerned 1 +17164 744 about what they ingest 2 +17165 744 what they ingest 2 +17166 744 they ingest 2 +17167 744 ingest 2 +17168 745 No , even that 's too committed . 1 +17169 745 , even that 's too committed . 2 +17170 745 even that 's too committed . 1 +17171 745 even that 2 +17172 745 's too committed . 2 +17173 745 's too committed 2 +17174 745 too committed 2 +17175 745 committed 3 +17176 746 The large-frame IMAX camera lends itself beautifully to filming the teeming life on the reefs , making this gorgeous film a must for everyone from junior scientists to grown-up fish lovers . 4 +17177 746 The large-frame IMAX camera 2 +17178 746 large-frame IMAX camera 2 +17179 746 large-frame 2 +17180 746 IMAX camera 2 +17181 746 lends itself beautifully to filming the teeming life on the reefs , making this gorgeous film a must for everyone from junior scientists to grown-up fish lovers . 4 +17182 746 lends itself beautifully to filming the teeming life on the reefs , making this gorgeous film a must for everyone from junior scientists to grown-up fish lovers 4 +17183 746 lends 2 +17184 746 itself beautifully to filming the teeming life on the reefs , making this gorgeous film a must for everyone from junior scientists to grown-up fish lovers 4 +17185 746 beautifully to filming the teeming life on the reefs , making this gorgeous film a must for everyone from junior scientists to grown-up fish lovers 3 +17186 746 to filming the teeming life on the reefs , making this gorgeous film a must for everyone from junior scientists to grown-up fish lovers 4 +17187 746 filming the teeming life on the reefs , making this gorgeous film a must for everyone from junior scientists to grown-up fish lovers 4 +17188 746 filming the teeming life on the reefs , 2 +17189 746 filming the teeming life on the reefs 3 +17190 746 filming the teeming life 3 +17191 746 filming 2 +17192 746 the teeming life 2 +17193 746 teeming life 2 +17194 746 teeming 2 +17195 746 on the reefs 2 +17196 746 the reefs 1 +17197 746 reefs 2 +17198 746 making this gorgeous film a must for everyone from junior scientists to grown-up fish lovers 3 +17199 746 this gorgeous film a must for everyone from junior scientists to grown-up fish lovers 4 +17200 746 gorgeous film a must for everyone from junior scientists to grown-up fish lovers 4 +17201 746 film a must for everyone from junior scientists to grown-up fish lovers 4 +17202 746 film a must for everyone from junior scientists 4 +17203 746 film a must for everyone 3 +17204 746 film a must 4 +17205 746 a must 3 +17206 746 for everyone 3 +17207 746 from junior scientists 2 +17208 746 junior scientists 2 +17209 746 junior 2 +17210 746 scientists 2 +17211 746 to grown-up fish lovers 2 +17212 746 grown-up fish lovers 2 +17213 746 grown-up 2 +17214 746 fish lovers 2 +17215 746 fish 2 +17216 746 lovers 2 +17217 747 Low comedy does n't come much lower . 1 +17218 747 Low comedy 1 +17219 747 does n't come much lower . 1 +17220 747 does n't come much lower 2 +17221 747 come much lower 2 +17222 747 much lower 2 +17223 747 lower 2 +17224 748 The characterizations and dialogue lack depth or complexity , with the ironic exception of Scooter . 1 +17225 748 The characterizations and dialogue 2 +17226 748 The characterizations and 2 +17227 748 lack depth or complexity , with the ironic exception of Scooter . 1 +17228 748 lack depth or complexity , with the ironic exception of Scooter 1 +17229 748 lack depth or complexity , 0 +17230 748 lack depth or complexity 1 +17231 748 depth or complexity 1 +17232 748 depth or 2 +17233 748 complexity 3 +17234 748 with the ironic exception of Scooter 2 +17235 748 the ironic exception of Scooter 2 +17236 748 the ironic exception 2 +17237 748 ironic exception 2 +17238 748 exception 2 +17239 748 of Scooter 2 +17240 748 Scooter 2 +17241 749 dramatic snapshot 3 +17242 749 snapshot 2 +17243 749 of the artist three days before his death 2 +17244 749 the artist three days before his death 2 +17245 749 the artist three days 2 +17246 749 the artist 2 +17247 749 three days 2 +17248 749 before his death 2 +17249 749 his death 2 +17250 749 offers an interesting bit of speculation as to the issues Brecht faced as his life drew to a close . 3 +17251 749 offers an interesting bit of speculation as to the issues Brecht faced as his life drew to a close 2 +17252 749 offers an interesting bit of speculation 3 +17253 749 an interesting bit of speculation 3 +17254 749 an interesting bit 3 +17255 749 interesting bit 3 +17256 749 of speculation 2 +17257 749 speculation 2 +17258 749 as to the issues Brecht faced as his life drew to a close 2 +17259 749 to the issues Brecht faced as his life drew to a close 2 +17260 749 to the issues 2 +17261 749 the issues 2 +17262 749 issues 2 +17263 749 Brecht faced as his life drew to a close 2 +17264 749 Brecht 2 +17265 749 faced as his life drew to a close 2 +17266 749 faced 3 +17267 749 as his life drew to a close 2 +17268 749 his life drew to a close 1 +17269 749 his life 2 +17270 749 drew to a close 3 +17271 749 drew 2 +17272 749 to a close 2 +17273 749 a close 2 +17274 750 What we get ... is Caddyshack crossed with the Loyal Order of Raccoons . 2 +17275 750 What we get ... is Caddyshack crossed with the Loyal Order of Raccoons 3 +17276 750 What we get ... 2 +17277 750 What we get 2 +17278 750 we get 2 +17279 750 is Caddyshack crossed with the Loyal Order of Raccoons 2 +17280 750 is Caddyshack 3 +17281 750 Caddyshack 3 +17282 750 crossed with the Loyal Order of Raccoons 2 +17283 750 crossed 2 +17284 750 with the Loyal Order of Raccoons 2 +17285 750 the Loyal Order of Raccoons 2 +17286 750 the Loyal Order 2 +17287 750 Loyal Order 2 +17288 750 Loyal 3 +17289 750 of Raccoons 2 +17290 750 Raccoons 2 +17291 751 It 'll keep you wide awake and ... very tense . 3 +17292 751 'll keep you wide awake and ... very tense . 3 +17293 751 'll keep you wide awake and ... very tense 4 +17294 751 keep you wide awake and ... very tense 3 +17295 751 keep you wide awake and ... 3 +17296 751 keep you wide awake and 4 +17297 751 you wide awake and 2 +17298 751 wide awake and 2 +17299 751 wide 2 +17300 751 awake and 2 +17301 751 awake 2 +17302 751 very tense 2 +17303 751 tense 2 +17304 752 The movie is loaded with good intentions , but in his zeal to squeeze the action and our emotions into the all-too-familiar dramatic arc of the Holocaust escape story , Minac drains his movie of all individuality . 1 +17305 752 The movie is loaded with good intentions , but in his zeal to squeeze the action and our emotions into the all-too-familiar dramatic arc of the Holocaust escape story , Minac drains his movie of all individuality 1 +17306 752 The movie is loaded with good intentions , but 2 +17307 752 The movie is loaded with good intentions , 2 +17308 752 The movie is loaded with good intentions 3 +17309 752 is loaded with good intentions 3 +17310 752 loaded with good intentions 3 +17311 752 loaded 2 +17312 752 with good intentions 3 +17313 752 good intentions 3 +17314 752 intentions 2 +17315 752 in his zeal to squeeze the action and our emotions into the all-too-familiar dramatic arc of the Holocaust escape story , Minac drains his movie of all individuality 0 +17316 752 in his zeal to squeeze the action and our emotions into the all-too-familiar dramatic arc of the Holocaust escape story 2 +17317 752 his zeal to squeeze the action and our emotions into the all-too-familiar dramatic arc of the Holocaust escape story 2 +17318 752 zeal to squeeze the action and our emotions into the all-too-familiar dramatic arc of the Holocaust escape story 2 +17319 752 zeal 3 +17320 752 to squeeze the action and our emotions into the all-too-familiar dramatic arc of the Holocaust escape story 3 +17321 752 squeeze the action and our emotions into the all-too-familiar dramatic arc of the Holocaust escape story 0 +17322 752 squeeze the action and our emotions 3 +17323 752 squeeze 2 +17324 752 the action and our emotions 2 +17325 752 the action and 3 +17326 752 our emotions 3 +17327 752 into the all-too-familiar dramatic arc of the Holocaust escape story 2 +17328 752 the all-too-familiar dramatic arc of the Holocaust escape story 1 +17329 752 the all-too-familiar dramatic arc 1 +17330 752 all-too-familiar dramatic arc 2 +17331 752 all-too-familiar 1 +17332 752 dramatic arc 3 +17333 752 arc 2 +17334 752 of the Holocaust escape story 2 +17335 752 the Holocaust escape story 3 +17336 752 Holocaust escape story 3 +17337 752 Holocaust 2 +17338 752 escape story 3 +17339 752 , Minac drains his movie of all individuality 2 +17340 752 Minac drains his movie of all individuality 0 +17341 752 Minac 2 +17342 752 drains his movie of all individuality 1 +17343 752 drains 1 +17344 752 his movie of all individuality 2 +17345 752 his movie 2 +17346 752 of all individuality 2 +17347 752 all individuality 2 +17348 752 individuality 2 +17349 753 It may scream low budget , but this charmer has a spirit that can not be denied . 3 +17350 753 It may scream low budget , but this charmer has a spirit that can not be denied 3 +17351 753 It may scream low budget , but 2 +17352 753 It may scream low budget , 1 +17353 753 It may scream low budget 2 +17354 753 may scream low budget 1 +17355 753 scream low budget 0 +17356 753 scream 1 +17357 753 low budget 1 +17358 753 this charmer has a spirit that can not be denied 4 +17359 753 this charmer 3 +17360 753 has a spirit that can not be denied 4 +17361 753 a spirit that can not be denied 3 +17362 753 a spirit 3 +17363 753 that can not be denied 2 +17364 753 can not be denied 2 +17365 753 be denied 2 +17366 753 denied 2 +17367 754 Less an examination of neo-Nazism than a probe into the nature of faith itself . 3 +17368 754 Less an examination of neo-Nazism than a probe into the nature of faith itself 3 +17369 754 Less an examination of neo-Nazism than a probe into the nature of faith 3 +17370 754 Less an examination 2 +17371 754 an examination 2 +17372 754 of neo-Nazism than a probe into the nature of faith 2 +17373 754 neo-Nazism than a probe into the nature of faith 2 +17374 754 neo-Nazism 1 +17375 754 than a probe into the nature of faith 2 +17376 754 a probe into the nature of faith 2 +17377 754 a probe 2 +17378 754 probe 2 +17379 754 into the nature of faith 3 +17380 754 the nature of faith 2 +17381 754 the nature 2 +17382 754 of faith 3 +17383 754 faith 2 +17384 755 Though few will argue that it ranks with the best of Herzog 's works , Invincible shows he 's back in form , with an astoundingly rich film . 4 +17385 755 Though few will argue that it ranks with the best of Herzog 's works 3 +17386 755 few will argue that it ranks with the best of Herzog 's works 3 +17387 755 will argue that it ranks with the best of Herzog 's works 3 +17388 755 argue that it ranks with the best of Herzog 's works 3 +17389 755 argue 1 +17390 755 that it ranks with the best of Herzog 's works 4 +17391 755 it ranks with the best of Herzog 's works 4 +17392 755 ranks with the best of Herzog 's works 4 +17393 755 ranks 2 +17394 755 with the best of Herzog 's works 4 +17395 755 the best of Herzog 's works 4 +17396 755 the best 4 +17397 755 of Herzog 's works 2 +17398 755 Herzog 's works 2 +17399 755 Herzog 's 2 +17400 755 Herzog 2 +17401 755 , Invincible shows he 's back in form , with an astoundingly rich film . 4 +17402 755 Invincible shows he 's back in form , with an astoundingly rich film . 4 +17403 755 Invincible 3 +17404 755 shows he 's back in form , with an astoundingly rich film . 3 +17405 755 shows he 's back in form , with an astoundingly rich film 4 +17406 755 he 's back in form , with an astoundingly rich film 4 +17407 755 's back in form , with an astoundingly rich film 3 +17408 755 's back in form , 3 +17409 755 's back in form 2 +17410 755 's back 2 +17411 755 in form 3 +17412 755 with an astoundingly rich film 3 +17413 755 an astoundingly rich film 4 +17414 755 astoundingly rich film 4 +17415 755 astoundingly rich 4 +17416 755 astoundingly 3 +17417 756 While it may not add up to the sum of its parts , Holofcener 's film offers just enough insight to keep it from being simpleminded , and the ensemble cast is engaging enough to keep you from shifting in your chair too often . 3 +17418 756 While it may not add up to the sum of its parts 1 +17419 756 it may not add up to the sum of its parts 2 +17420 756 may not add up to the sum of its parts 1 +17421 756 add up to the sum of its parts 2 +17422 756 to the sum of its parts 2 +17423 756 the sum of its parts 2 +17424 756 of its parts 2 +17425 756 its parts 2 +17426 756 , Holofcener 's film offers just enough insight to keep it from being simpleminded , and the ensemble cast is engaging enough to keep you from shifting in your chair too often . 2 +17427 756 Holofcener 's film offers just enough insight to keep it from being simpleminded , and the ensemble cast is engaging enough to keep you from shifting in your chair too often . 2 +17428 756 Holofcener 's film offers just enough insight to keep it from being simpleminded , and the ensemble cast is engaging enough to keep you from shifting in your chair too often 3 +17429 756 Holofcener 's film offers just enough insight to keep it from being simpleminded , and 3 +17430 756 Holofcener 's film offers just enough insight to keep it from being simpleminded , 2 +17431 756 Holofcener 's film offers just enough insight to keep it from being simpleminded 2 +17432 756 Holofcener 's film 2 +17433 756 Holofcener 's 2 +17434 756 Holofcener 2 +17435 756 offers just enough insight to keep it from being simpleminded 3 +17436 756 just enough insight to keep it from being simpleminded 3 +17437 756 enough insight to keep it from being simpleminded 3 +17438 756 insight to keep it from being simpleminded 2 +17439 756 to keep it from being simpleminded 2 +17440 756 keep it from being simpleminded 3 +17441 756 keep it 2 +17442 756 from being simpleminded 2 +17443 756 being simpleminded 1 +17444 756 simpleminded 2 +17445 756 the ensemble cast is engaging enough to keep you from shifting in your chair too often 3 +17446 756 is engaging enough to keep you from shifting in your chair too often 3 +17447 756 engaging enough to keep you from shifting in your chair too often 3 +17448 756 engaging enough 3 +17449 756 to keep you from shifting in your chair too often 2 +17450 756 keep you from shifting in your chair too often 2 +17451 756 from shifting in your chair too often 2 +17452 756 shifting in your chair too often 1 +17453 756 shifting in your chair 2 +17454 756 shifting 2 +17455 756 in your chair 2 +17456 756 your chair 2 +17457 756 chair 2 +17458 757 There are no special effects , and no Hollywood endings . 3 +17459 757 are no special effects , and no Hollywood endings . 1 +17460 757 are no special effects , and no Hollywood endings 2 +17461 757 no special effects , and no Hollywood endings 1 +17462 757 no special effects , and 1 +17463 757 no special effects , 2 +17464 757 no special effects 2 +17465 757 no Hollywood endings 2 +17466 757 Hollywood endings 2 +17467 757 endings 2 +17468 758 Despite Juliet Stevenon 's attempt to bring cohesion to Pamela 's emotional roller coaster life , it is not enough to give the film the substance it so desperately needs . 1 +17469 758 Despite Juliet Stevenon 's attempt to bring cohesion to Pamela 's emotional roller coaster life 1 +17470 758 Juliet Stevenon 's attempt to bring cohesion to Pamela 's emotional roller coaster life 2 +17471 758 Juliet Stevenon 's 2 +17472 758 Juliet 2 +17473 758 Stevenon 's 2 +17474 758 Stevenon 2 +17475 758 attempt to bring cohesion to Pamela 's emotional roller coaster life 1 +17476 758 to bring cohesion to Pamela 's emotional roller coaster life 2 +17477 758 bring cohesion to Pamela 's emotional roller coaster life 2 +17478 758 bring cohesion 3 +17479 758 to Pamela 's emotional roller coaster life 3 +17480 758 Pamela 's emotional roller coaster life 2 +17481 758 Pamela 's 2 +17482 758 Pamela 2 +17483 758 emotional roller coaster life 2 +17484 758 roller coaster life 2 +17485 758 roller 2 +17486 758 coaster life 2 +17487 758 coaster 2 +17488 758 , it is not enough to give the film the substance it so desperately needs . 1 +17489 758 it is not enough to give the film the substance it so desperately needs . 1 +17490 758 is not enough to give the film the substance it so desperately needs . 1 +17491 758 is not enough to give the film the substance it so desperately needs 1 +17492 758 enough to give the film the substance it so desperately needs 1 +17493 758 to give the film the substance it so desperately needs 1 +17494 758 give the film the substance it so desperately needs 2 +17495 758 give the film 2 +17496 758 the substance it so desperately needs 1 +17497 758 the substance 2 +17498 758 it so desperately needs 2 +17499 758 so desperately needs 2 +17500 758 so desperately 2 +17501 758 needs 2 +17502 759 Not a schlocky creature feature but something far more stylish and cerebral -- and , hence , more chillingly effective . 3 +17503 759 Not a schlocky creature 2 +17504 759 a schlocky creature 1 +17505 759 schlocky creature 1 +17506 759 schlocky 1 +17507 759 creature 2 +17508 759 feature but something far more stylish and cerebral -- and , hence , more chillingly effective . 3 +17509 759 feature but something far more stylish and cerebral -- and , hence , more chillingly effective 3 +17510 759 but something far more stylish and cerebral -- and , hence , more chillingly effective 3 +17511 759 but something far more stylish and cerebral -- and , hence , 2 +17512 759 but something far more stylish and cerebral -- and , hence 3 +17513 759 but something far more stylish and cerebral -- and , 3 +17514 759 but something far more stylish and cerebral -- and 3 +17515 759 but something far more stylish and cerebral -- 2 +17516 759 but something far more stylish and cerebral 3 +17517 759 but something 2 +17518 759 far more stylish and cerebral 2 +17519 759 far more stylish and 3 +17520 759 far more stylish 3 +17521 759 more stylish 2 +17522 759 cerebral 3 +17523 759 hence 2 +17524 759 more chillingly effective 3 +17525 759 chillingly effective 3 +17526 759 chillingly 3 +17527 759 effective 3 +17528 760 From a deceptively simple premise , this deeply moving French drama develops a startling story that works both as a detailed personal portrait and as a rather frightening examination of modern times . 4 +17529 760 From a deceptively simple premise 2 +17530 760 a deceptively simple premise 3 +17531 760 deceptively simple premise 2 +17532 760 deceptively simple 2 +17533 760 deceptively 2 +17534 760 , this deeply moving French drama develops a startling story that works both as a detailed personal portrait and as a rather frightening examination of modern times . 3 +17535 760 this deeply moving French drama develops a startling story that works both as a detailed personal portrait and as a rather frightening examination of modern times . 3 +17536 760 this deeply moving French drama 3 +17537 760 deeply moving French drama 3 +17538 760 deeply moving 3 +17539 760 French drama 2 +17540 760 develops a startling story that works both as a detailed personal portrait and as a rather frightening examination of modern times . 3 +17541 760 develops a startling story that works both as a detailed personal portrait and as a rather frightening examination of modern times 3 +17542 760 develops 2 +17543 760 a startling story that works both as a detailed personal portrait and as a rather frightening examination of modern times 3 +17544 760 a startling story 2 +17545 760 startling story 3 +17546 760 that works both as a detailed personal portrait and as a rather frightening examination of modern times 3 +17547 760 works both as a detailed personal portrait and as a rather frightening examination of modern times 3 +17548 760 both as a detailed personal portrait and as a rather frightening examination of modern times 2 +17549 760 as a detailed personal portrait and as a rather frightening examination of modern times 3 +17550 760 as a detailed personal portrait and 2 +17551 760 as a detailed personal portrait 3 +17552 760 a detailed personal portrait 3 +17553 760 detailed personal portrait 3 +17554 760 personal portrait 2 +17555 760 as a rather frightening examination of modern times 2 +17556 760 a rather frightening examination of modern times 2 +17557 760 a rather frightening examination 2 +17558 760 rather frightening examination 2 +17559 760 rather frightening 1 +17560 760 frightening 2 +17561 760 of modern times 2 +17562 760 modern times 2 +17563 761 The movie is obviously a labour of love so Howard appears to have had free rein to be as pretentious as he wanted . 2 +17564 761 is obviously a labour of love so Howard appears to have had free rein to be as pretentious as he wanted . 2 +17565 761 is obviously a labour of love so Howard appears to have had free rein to be as pretentious as he wanted 2 +17566 761 is obviously a labour of love 3 +17567 761 is obviously 2 +17568 761 obviously 2 +17569 761 a labour of love 4 +17570 761 a labour 1 +17571 761 labour 2 +17572 761 so Howard appears to have had free rein to be as pretentious as he wanted 1 +17573 761 Howard appears to have had free rein to be as pretentious as he wanted 1 +17574 761 Howard 2 +17575 761 appears to have had free rein to be as pretentious as he wanted 1 +17576 761 to have had free rein to be as pretentious as he wanted 2 +17577 761 have had free rein to be as pretentious as he wanted 1 +17578 761 had free rein to be as pretentious as he wanted 1 +17579 761 had free rein 2 +17580 761 free rein 2 +17581 761 free 3 +17582 761 rein 2 +17583 761 to be as pretentious as he wanted 2 +17584 761 be as pretentious as he wanted 2 +17585 761 be as pretentious 1 +17586 761 as pretentious 1 +17587 761 pretentious 1 +17588 761 as he wanted 2 +17589 761 he wanted 2 +17590 762 A stylish cast and some clever scripting solutions help Chicago make the transition from stage to screen with considerable appeal intact . 3 +17591 762 A stylish cast and some clever scripting solutions 4 +17592 762 A stylish cast and 3 +17593 762 A stylish cast 4 +17594 762 stylish cast 3 +17595 762 some clever scripting solutions 3 +17596 762 clever scripting solutions 3 +17597 762 scripting solutions 2 +17598 762 scripting 2 +17599 762 solutions 3 +17600 762 help Chicago make the transition from stage to screen with considerable appeal intact . 3 +17601 762 help Chicago make the transition from stage to screen with considerable appeal intact 3 +17602 762 Chicago make the transition from stage to screen with considerable appeal intact 3 +17603 762 Chicago 2 +17604 762 make the transition from stage to screen with considerable appeal intact 2 +17605 762 make the transition from stage 2 +17606 762 make the transition 2 +17607 762 the transition 2 +17608 762 transition 2 +17609 762 from stage 2 +17610 762 stage 2 +17611 762 to screen with considerable appeal intact 3 +17612 762 screen with considerable appeal intact 2 +17613 762 screen with considerable appeal 3 +17614 762 with considerable appeal 4 +17615 762 considerable appeal 3 +17616 762 intact 2 +17617 763 Fessenden 's narrative is just as much about the ownership and redefinition of myth as it is about a domestic unit finding their way to joy . 3 +17618 763 Fessenden 's narrative 2 +17619 763 Fessenden 's 2 +17620 763 Fessenden 2 +17621 763 is just as much about the ownership and redefinition of myth as it is about a domestic unit finding their way to joy . 2 +17622 763 is just as much about the ownership and redefinition of myth as it is about a domestic unit finding their way to joy 3 +17623 763 is just as much about the ownership and redefinition of myth 2 +17624 763 as much about the ownership and redefinition of myth 2 +17625 763 much about the ownership and redefinition of myth 3 +17626 763 about the ownership and redefinition of myth 2 +17627 763 the ownership and redefinition of myth 2 +17628 763 the ownership and redefinition 2 +17629 763 ownership and redefinition 2 +17630 763 ownership and 2 +17631 763 ownership 2 +17632 763 redefinition 2 +17633 763 of myth 2 +17634 763 as it is about a domestic unit finding their way to joy 2 +17635 763 it is about a domestic unit finding their way to joy 3 +17636 763 is about a domestic unit finding their way to joy 3 +17637 763 about a domestic unit finding their way to joy 3 +17638 763 a domestic unit finding their way to joy 3 +17639 763 a domestic unit 2 +17640 763 domestic unit 2 +17641 763 domestic 2 +17642 763 unit 2 +17643 763 finding their way to joy 4 +17644 763 finding their way 2 +17645 763 to joy 2 +17646 764 It 's a movie that accomplishes so much that one viewing ca n't possibly be enough . 3 +17647 764 's a movie that accomplishes so much that one viewing ca n't possibly be enough . 4 +17648 764 's a movie that accomplishes so much that one viewing ca n't possibly be enough 4 +17649 764 a movie that accomplishes so much that one viewing ca n't possibly be enough 4 +17650 764 that accomplishes so much that one viewing ca n't possibly be enough 3 +17651 764 accomplishes so much that one viewing ca n't possibly be enough 4 +17652 764 accomplishes 3 +17653 764 so much that one viewing ca n't possibly be enough 4 +17654 764 that one viewing ca n't possibly be enough 3 +17655 764 one viewing ca n't possibly be enough 3 +17656 764 one viewing 2 +17657 764 ca n't possibly be enough 1 +17658 764 ca n't possibly 2 +17659 764 be enough 2 +17660 765 You can sip your vintage wines and watch your Merchant Ivory productions ; I 'll settle for a nice cool glass of iced tea and a Jerry Bruckheimer flick any day of the week . 4 +17661 765 You can sip your vintage wines and watch your Merchant Ivory productions ; I 'll settle for a nice cool glass of iced tea and a Jerry Bruckheimer flick any day of the week 2 +17662 765 You can sip your vintage wines and watch your Merchant Ivory productions ; 2 +17663 765 You can sip your vintage wines and watch your Merchant Ivory productions 2 +17664 765 can sip your vintage wines and watch your Merchant Ivory productions 2 +17665 765 sip your vintage wines and watch your Merchant Ivory productions 3 +17666 765 sip your vintage wines and 2 +17667 765 sip your vintage wines 2 +17668 765 sip 2 +17669 765 your vintage wines 2 +17670 765 vintage wines 2 +17671 765 wines 2 +17672 765 watch your Merchant Ivory productions 3 +17673 765 your Merchant Ivory productions 2 +17674 765 Merchant Ivory productions 3 +17675 765 Ivory productions 2 +17676 765 Ivory 2 +17677 765 productions 2 +17678 765 I 'll settle for a nice cool glass of iced tea and a Jerry Bruckheimer flick any day of the week 3 +17679 765 I 'll settle for a nice cool glass of iced tea and 3 +17680 765 I 'll settle for a nice cool glass of iced tea 2 +17681 765 'll settle for a nice cool glass of iced tea 2 +17682 765 settle for a nice cool glass of iced tea 2 +17683 765 settle 2 +17684 765 for a nice cool glass of iced tea 2 +17685 765 a nice cool glass of iced tea 3 +17686 765 a nice cool glass 2 +17687 765 nice cool glass 2 +17688 765 cool glass 2 +17689 765 glass 2 +17690 765 of iced tea 2 +17691 765 iced tea 2 +17692 765 iced 2 +17693 765 tea 2 +17694 765 a Jerry Bruckheimer flick any day of the week 3 +17695 765 a Jerry Bruckheimer 2 +17696 765 Jerry Bruckheimer 2 +17697 765 Jerry 2 +17698 765 Bruckheimer 2 +17699 765 flick any day of the week 2 +17700 765 any day of the week 2 +17701 765 any day 2 +17702 765 of the week 2 +17703 766 A quiet , disquieting triumph . 3 +17704 766 A quiet , disquieting triumph 3 +17705 766 A quiet , 2 +17706 766 A quiet 2 +17707 766 disquieting triumph 3 +17708 766 disquieting 1 +17709 767 A muddled limp biscuit of a movie , a vampire soap opera that does n't make much sense even on its own terms . 0 +17710 767 A muddled limp biscuit of a movie , a vampire soap opera that does n't make much 0 +17711 767 A muddled limp biscuit 0 +17712 767 muddled limp biscuit 2 +17713 767 muddled 1 +17714 767 limp biscuit 1 +17715 767 limp 2 +17716 767 biscuit 2 +17717 767 of a movie , a vampire soap opera that does n't make much 1 +17718 767 a movie , a vampire soap opera that does n't make much 1 +17719 767 a movie , 2 +17720 767 a vampire soap opera that does n't make much 1 +17721 767 a vampire soap opera 2 +17722 767 vampire soap opera 2 +17723 767 that does n't make much 2 +17724 767 does n't make much 1 +17725 767 make much 2 +17726 767 sense even on its own terms . 2 +17727 767 sense even on its own terms 2 +17728 767 sense even 2 +17729 767 on its own terms 2 +17730 767 its own terms 2 +17731 767 own terms 2 +17732 768 It looks much more like a cartoon in the end than The Simpsons ever has . 2 +17733 768 looks much more like a cartoon in the end than The Simpsons ever has . 2 +17734 768 looks much more like a cartoon in the end than The Simpsons ever has 1 +17735 768 looks much more like a cartoon in the end 1 +17736 768 much more like a cartoon in the end 1 +17737 768 like a cartoon in the end 1 +17738 768 a cartoon in the end 2 +17739 768 a cartoon 2 +17740 768 in the end 2 +17741 768 than The Simpsons ever has 2 +17742 768 The Simpsons ever has 2 +17743 768 The Simpsons 2 +17744 768 Simpsons 2 +17745 768 ever has 2 +17746 769 Hugely accomplished slice of Hitchcockian suspense . 3 +17747 769 Hugely accomplished 3 +17748 769 Hugely 2 +17749 769 slice of Hitchcockian suspense . 3 +17750 769 slice of Hitchcockian suspense 2 +17751 769 of Hitchcockian suspense 2 +17752 769 Hitchcockian suspense 3 +17753 769 Hitchcockian 3 +17754 770 A generic international version of a typical American horror film . 1 +17755 770 A generic international version of a typical American horror film 1 +17756 770 A generic international version 1 +17757 770 generic international version 2 +17758 770 international version 2 +17759 770 international 2 +17760 770 of a typical American horror film 1 +17761 770 a typical American horror film 2 +17762 770 typical American horror film 2 +17763 770 American horror film 2 +17764 770 horror film 2 +17765 771 The result is good gossip , entertainingly delivered , yet with a distinctly musty odour , its expiry date long gone . 2 +17766 771 is good gossip , entertainingly delivered , yet with a distinctly musty odour , its expiry date long gone . 1 +17767 771 is good gossip , entertainingly delivered , yet with a distinctly musty odour , its expiry date long gone 2 +17768 771 good gossip , entertainingly delivered , yet with a distinctly musty odour , its expiry date long gone 2 +17769 771 good gossip , 2 +17770 771 good gossip 3 +17771 771 gossip 2 +17772 771 entertainingly delivered , yet with a distinctly musty odour , its expiry date long gone 2 +17773 771 entertainingly 3 +17774 771 delivered , yet with a distinctly musty odour , its expiry date long gone 1 +17775 771 delivered , 3 +17776 771 yet with a distinctly musty odour , its expiry date long gone 1 +17777 771 with a distinctly musty odour , its expiry date long gone 1 +17778 771 a distinctly musty odour , its expiry date long gone 1 +17779 771 a distinctly musty odour , 1 +17780 771 a distinctly musty odour 1 +17781 771 distinctly musty odour 2 +17782 771 distinctly musty 1 +17783 771 distinctly 2 +17784 771 musty 1 +17785 771 odour 2 +17786 771 its expiry date long gone 1 +17787 771 its expiry date 2 +17788 771 expiry date 2 +17789 771 expiry 2 +17790 771 long gone 1 +17791 772 Just the labour involved in creating the layered richness of the imagery in this chiaroscuro of madness and light is astonishing . 4 +17792 772 Just the labour involved in creating the layered richness of the imagery in this chiaroscuro of madness and light 3 +17793 772 Just the labour 2 +17794 772 the labour 2 +17795 772 involved in creating the layered richness of the imagery in this chiaroscuro of madness and light 3 +17796 772 in creating the layered richness of the imagery in this chiaroscuro of madness and light 3 +17797 772 creating the layered richness of the imagery in this chiaroscuro of madness and light 4 +17798 772 the layered richness of the imagery in this chiaroscuro of madness and light 3 +17799 772 the layered richness 3 +17800 772 layered richness 3 +17801 772 layered 3 +17802 772 richness 2 +17803 772 of the imagery in this chiaroscuro of madness and light 3 +17804 772 the imagery in this chiaroscuro of madness and light 3 +17805 772 the imagery 2 +17806 772 imagery 2 +17807 772 in this chiaroscuro of madness and light 2 +17808 772 this chiaroscuro of madness and light 3 +17809 772 this chiaroscuro 2 +17810 772 chiaroscuro 2 +17811 772 of madness and light 2 +17812 772 madness and light 2 +17813 772 madness and 2 +17814 772 madness 2 +17815 772 is astonishing . 3 +17816 772 is astonishing 3 +17817 773 Charlotte Sometimes is a gem . 3 +17818 773 Charlotte 2 +17819 773 Sometimes is a gem . 4 +17820 773 is a gem . 4 +17821 773 is a gem 3 +17822 773 a gem 4 +17823 774 Stage director Sam Mendes showcases Tom Hanks as a depression era hit-man in this dark tale of revenge . 3 +17824 774 Stage director Sam Mendes 2 +17825 774 director Sam Mendes 2 +17826 774 Sam Mendes 3 +17827 774 Sam 2 +17828 774 showcases Tom Hanks as a depression era hit-man in this dark tale of revenge . 3 +17829 774 showcases Tom Hanks as a depression era hit-man in this dark tale of revenge 3 +17830 774 showcases 1 +17831 774 Tom Hanks as a depression era hit-man in this dark tale of revenge 2 +17832 774 Tom Hanks 2 +17833 774 Tom 2 +17834 774 Hanks 2 +17835 774 as a depression era hit-man in this dark tale of revenge 2 +17836 774 a depression era hit-man in this dark tale of revenge 2 +17837 774 a depression era hit-man 2 +17838 774 depression era hit-man 2 +17839 774 era hit-man 2 +17840 774 hit-man 1 +17841 774 in this dark tale of revenge 2 +17842 774 this dark tale of revenge 2 +17843 774 this dark tale 2 +17844 774 dark tale 2 +17845 774 of revenge 2 +17846 775 Brady 3 +17847 775 achieves the remarkable feat of squandering a topnotch foursome of actors ... 2 +17848 775 achieves the remarkable feat of squandering a topnotch foursome of actors 0 +17849 775 achieves the remarkable feat 3 +17850 775 the remarkable feat 3 +17851 775 remarkable feat 4 +17852 775 of squandering a topnotch foursome of actors 1 +17853 775 squandering a topnotch foursome of actors 1 +17854 775 squandering 2 +17855 775 a topnotch foursome of actors 3 +17856 775 a topnotch foursome 4 +17857 775 topnotch foursome 3 +17858 775 topnotch 4 +17859 775 foursome 2 +17860 775 of actors 2 +17861 775 shoving them 2 +17862 775 shoving 2 +17863 775 white-trash situation imaginable 2 +17864 775 white-trash 0 +17865 775 situation imaginable 2 +17866 775 imaginable 3 +17867 776 Upper Teens may get cynical . 1 +17868 776 Upper Teens 2 +17869 776 Upper 2 +17870 776 Teens 2 +17871 776 may get cynical . 2 +17872 776 may get cynical 2 +17873 776 get cynical 2 +17874 777 A gift to anyone who loves both dance and cinema 3 +17875 777 A gift 3 +17876 777 gift 2 +17877 777 to anyone who loves both dance and cinema 3 +17878 777 anyone who loves both dance and cinema 3 +17879 777 who loves both dance and cinema 3 +17880 777 loves both dance and cinema 3 +17881 777 both dance and cinema 2 +17882 777 dance and cinema 2 +17883 777 dance and 2 +17884 777 dance 2 +17885 778 A small movie with a big heart . 3 +17886 778 A small movie with a big heart 3 +17887 778 A small movie 1 +17888 778 small movie 2 +17889 778 with a big heart 3 +17890 778 a big heart 3 +17891 778 big heart 3 +17892 779 Like a comedian who starts off promisingly but then proceeds to flop , Comedian runs out of steam after a half hour . 1 +17893 779 Like a comedian who starts off promisingly but then proceeds to flop 1 +17894 779 a comedian who starts off promisingly but then proceeds to flop 1 +17895 779 a comedian 2 +17896 779 comedian 2 +17897 779 who starts off promisingly but then proceeds to flop 1 +17898 779 starts off promisingly but then proceeds to flop 0 +17899 779 starts off promisingly but 2 +17900 779 starts off promisingly 2 +17901 779 starts off 2 +17902 779 promisingly 3 +17903 779 then proceeds to flop 1 +17904 779 proceeds to flop 1 +17905 779 proceeds 2 +17906 779 to flop 2 +17907 779 flop 1 +17908 779 , Comedian runs out of steam after a half hour . 1 +17909 779 Comedian runs out of steam after a half hour . 1 +17910 779 runs out of steam after a half hour . 0 +17911 779 runs out of steam after a half hour 1 +17912 779 runs out of steam 1 +17913 779 runs out 2 +17914 779 of steam 2 +17915 779 steam 2 +17916 779 after a half hour 2 +17917 779 a half hour 2 +17918 780 feeling to it , but like the 1920 's , the trip there is a great deal of fun . 3 +17919 780 feeling to it , but like the 1920 's 2 +17920 780 to it , but like the 1920 's 2 +17921 780 , but like the 1920 's 2 +17922 780 like the 1920 's 2 +17923 780 the 1920 's 2 +17924 780 1920 's 2 +17925 780 1920 2 +17926 780 , the trip there is a great deal of fun . 3 +17927 780 the trip there is a great deal of fun . 3 +17928 780 the trip 2 +17929 780 trip 2 +17930 780 there is a great deal of fun . 4 +17931 780 is a great deal of fun . 4 +17932 780 is a great deal of fun 4 +17933 780 a great deal of fun 4 +17934 781 Essentially a collection of bits -- and they 're all naughty . 3 +17935 781 Essentially a collection of bits -- and they 're all naughty 2 +17936 781 Essentially a collection of bits -- and 2 +17937 781 Essentially a collection of bits -- 1 +17938 781 Essentially a collection of bits 2 +17939 781 a collection of bits 2 +17940 781 a collection 2 +17941 781 collection 2 +17942 781 of bits 2 +17943 781 bits 2 +17944 781 they 're all naughty 2 +17945 781 're all naughty 2 +17946 781 're all 2 +17947 781 naughty 2 +17948 782 A cartoon ? 1 +17949 782 cartoon ? 2 +17950 783 Disney aficionados will notice distinct parallels between this story and the 1971 musical `` Bedknobs and Broomsticks , '' which also dealt with British children rediscovering the power of fantasy during wartime . 2 +17951 783 Disney aficionados 2 +17952 783 aficionados 2 +17953 783 will notice distinct parallels between this story and the 1971 musical `` Bedknobs and Broomsticks , '' which also dealt with British children rediscovering the power of fantasy during wartime . 2 +17954 783 will notice distinct parallels between this story and the 1971 musical `` Bedknobs and Broomsticks , '' which also dealt with British children rediscovering the power of fantasy during wartime 2 +17955 783 notice distinct parallels between this story and the 1971 musical `` Bedknobs and Broomsticks , '' which also dealt with British children rediscovering the power of fantasy during wartime 2 +17956 783 distinct parallels between this story and the 1971 musical `` Bedknobs and Broomsticks , '' which also dealt with British children rediscovering the power of fantasy during wartime 3 +17957 783 distinct parallels between this story and the 1971 musical 2 +17958 783 distinct parallels 2 +17959 783 distinct 2 +17960 783 between this story and the 1971 musical 2 +17961 783 this story and the 1971 musical 2 +17962 783 this story and 2 +17963 783 this story 2 +17964 783 the 1971 musical 2 +17965 783 1971 musical 2 +17966 783 1971 2 +17967 783 `` Bedknobs and Broomsticks , '' which also dealt with British children rediscovering the power of fantasy during wartime 2 +17968 783 Bedknobs and Broomsticks , '' which also dealt with British children rediscovering the power of fantasy during wartime 2 +17969 783 Bedknobs and Broomsticks , '' 2 +17970 783 Bedknobs and Broomsticks , 2 +17971 783 Bedknobs and Broomsticks 2 +17972 783 Bedknobs and 2 +17973 783 Bedknobs 2 +17974 783 Broomsticks 2 +17975 783 which also dealt with British children rediscovering the power of fantasy during wartime 3 +17976 783 also dealt with British children rediscovering the power of fantasy during wartime 3 +17977 783 dealt with British children rediscovering the power of fantasy during wartime 2 +17978 783 dealt 2 +17979 783 with British children rediscovering the power of fantasy during wartime 2 +17980 783 British children rediscovering the power of fantasy during wartime 3 +17981 783 British children 3 +17982 783 rediscovering the power of fantasy during wartime 3 +17983 783 rediscovering the power of fantasy 3 +17984 783 rediscovering 2 +17985 783 the power of fantasy 4 +17986 783 the power 3 +17987 783 of fantasy 2 +17988 783 fantasy 3 +17989 783 during wartime 2 +17990 783 wartime 1 +17991 784 These guys seem great to knock back a beer with but they 're simply not funny performers . 1 +17992 784 seem great to knock back a beer with but they 're simply not funny performers . 1 +17993 784 seem great to knock back a beer with but they 're simply not funny performers 1 +17994 784 great to knock back a beer with but they 're simply not funny performers 1 +17995 784 to knock back a beer with but they 're simply not funny performers 1 +17996 784 knock back a beer with but they 're simply not funny performers 0 +17997 784 knock back 2 +17998 784 a beer with but they 're simply not funny performers 1 +17999 784 a beer 2 +18000 784 beer 2 +18001 784 with but they 're simply not funny performers 1 +18002 784 but they 're simply not funny performers 1 +18003 784 they 're simply not funny performers 2 +18004 784 're simply not funny performers 1 +18005 784 simply not funny performers 0 +18006 784 not funny performers 1 +18007 784 funny performers 3 +18008 784 performers 2 +18009 785 It 's not a motion picture ; it 's an utterly static picture . 0 +18010 785 It 's not a motion picture ; it 's an utterly static picture 0 +18011 785 It 's not a motion picture ; 1 +18012 785 It 's not a motion picture 2 +18013 785 's not a motion picture 2 +18014 785 a motion picture 2 +18015 785 it 's an utterly static picture 1 +18016 785 's an utterly static picture 1 +18017 785 an utterly static picture 2 +18018 785 utterly static picture 1 +18019 785 utterly static 1 +18020 785 static 1 +18021 786 The Powerpuff Girls arrive on the big screen with their super-powers , their super-simple animation and their super-dooper-adorability intact . 3 +18022 786 The Powerpuff Girls 2 +18023 786 Powerpuff Girls 2 +18024 786 Powerpuff 2 +18025 786 arrive on the big screen with their super-powers , their super-simple animation and their super-dooper-adorability intact . 3 +18026 786 arrive on the big screen with their super-powers , their super-simple animation and their super-dooper-adorability intact 3 +18027 786 arrive on the big screen 2 +18028 786 arrive 2 +18029 786 with their super-powers , their super-simple animation and their super-dooper-adorability intact 3 +18030 786 their super-powers , their super-simple animation and their super-dooper-adorability intact 3 +18031 786 their super-powers , their super-simple animation and 3 +18032 786 their super-powers , their super-simple animation 1 +18033 786 their super-powers , 2 +18034 786 their super-powers 2 +18035 786 super-powers 2 +18036 786 their super-simple animation 2 +18037 786 super-simple animation 3 +18038 786 super-simple 2 +18039 786 their super-dooper-adorability intact 3 +18040 786 super-dooper-adorability intact 4 +18041 786 super-dooper-adorability 3 +18042 787 Coal is n't as easy to come by as it used to be and this would be a worthy substitute for naughty children 's stockings . 1 +18043 787 Coal is n't as easy to come by as it used to be and this would be a worthy substitute for naughty children 's stockings 1 +18044 787 Coal is n't as easy to come by as it used to be and 2 +18045 787 Coal is n't as easy to come by as it used to be 2 +18046 787 Coal 2 +18047 787 is n't as easy to come by as it used to be 1 +18048 787 as easy to come by as it used to be 2 +18049 787 easy to come by as it used to be 2 +18050 787 to come by as it used to be 2 +18051 787 come by as it used to be 2 +18052 787 by as it used to be 2 +18053 787 as it used to be 2 +18054 787 it used to be 2 +18055 787 used to be 2 +18056 787 this would be a worthy substitute for naughty children 's stockings 1 +18057 787 would be a worthy substitute for naughty children 's stockings 2 +18058 787 be a worthy substitute for naughty children 's stockings 2 +18059 787 a worthy substitute for naughty children 's stockings 2 +18060 787 a worthy substitute 4 +18061 787 worthy substitute 3 +18062 787 substitute 2 +18063 787 for naughty children 's stockings 2 +18064 787 naughty children 's stockings 2 +18065 787 naughty children 's 1 +18066 787 stockings 2 +18067 788 I love the opening scenes of a wintry New York City in 1899 . 3 +18068 788 love the opening scenes of a wintry New York City in 1899 . 3 +18069 788 love the opening scenes of a wintry New York City in 1899 3 +18070 788 the opening scenes of a wintry New York City in 1899 2 +18071 788 the opening scenes of a wintry New York City 2 +18072 788 the opening scenes 2 +18073 788 opening scenes 2 +18074 788 of a wintry New York City 2 +18075 788 a wintry New York City 2 +18076 788 wintry New York City 2 +18077 788 wintry 2 +18078 788 New York City 2 +18079 788 York City 2 +18080 788 in 1899 2 +18081 788 1899 2 +18082 789 If -LRB- Jaglom 's -RRB- latest effort is not the director at his most sparkling , some of its repartee is still worth hearing . 3 +18083 789 If -LRB- Jaglom 's -RRB- latest effort is not the director at his most sparkling 2 +18084 789 If -LRB- Jaglom 's -RRB- 2 +18085 789 -LRB- Jaglom 's -RRB- 2 +18086 789 Jaglom 's -RRB- 2 +18087 789 latest effort is not the director at his most sparkling 1 +18088 789 latest effort 2 +18089 789 is not the director at his most sparkling 1 +18090 789 the director at his most sparkling 3 +18091 789 at his most sparkling 3 +18092 789 his most sparkling 4 +18093 789 most sparkling 4 +18094 789 sparkling 3 +18095 789 , some of its repartee is still worth hearing . 2 +18096 789 some of its repartee is still worth hearing . 3 +18097 789 some of its repartee 2 +18098 789 of its repartee 2 +18099 789 its repartee 2 +18100 789 repartee 2 +18101 789 is still worth hearing . 3 +18102 789 is still worth hearing 3 +18103 789 is still worth 3 +18104 789 hearing 2 +18105 790 It shares the first two films ' loose-jointed structure , but laugh-out-loud bits are few and far between . 2 +18106 790 It shares the first two films ' loose-jointed structure , but laugh-out-loud bits are few and far between 1 +18107 790 It shares the first two films ' loose-jointed structure , but 1 +18108 790 It shares the first two films ' loose-jointed structure , 1 +18109 790 It shares the first two films ' loose-jointed structure 2 +18110 790 shares the first two films ' loose-jointed structure 2 +18111 790 shares 2 +18112 790 the first two films ' loose-jointed structure 1 +18113 790 the first two films ' 2 +18114 790 first two films ' 2 +18115 790 two films ' 2 +18116 790 films ' 2 +18117 790 loose-jointed structure 1 +18118 790 loose-jointed 2 +18119 790 laugh-out-loud bits are few and far between 1 +18120 790 laugh-out-loud bits 4 +18121 790 laugh-out-loud 3 +18122 790 are few and far between 2 +18123 790 are few 2 +18124 790 and far between 2 +18125 790 far between 2 +18126 791 The movie is a trove of delights . 4 +18127 791 is a trove of delights . 4 +18128 791 is a trove of delights 3 +18129 791 a trove of delights 3 +18130 791 a trove 3 +18131 791 trove 2 +18132 791 of delights 2 +18133 792 With `` Ichi the Killer '' , Takashi Miike , Japan 's wildest filmmaker gives us a crime fighter carrying more emotional baggage than Batman ... 1 +18134 792 With `` Ichi the Killer '' , Takashi Miike 2 +18135 792 `` Ichi the Killer '' , Takashi Miike 2 +18136 792 `` Ichi the Killer '' , 2 +18137 792 `` Ichi the Killer '' 2 +18138 792 Ichi the Killer '' 2 +18139 792 Ichi 2 +18140 792 the Killer '' 2 +18141 792 Killer '' 2 +18142 792 Takashi Miike 2 +18143 792 Takashi 2 +18144 792 Miike 3 +18145 792 , Japan 's wildest filmmaker gives us a crime fighter carrying more emotional baggage than Batman ... 2 +18146 792 Japan 's wildest filmmaker gives us a crime fighter carrying more emotional baggage than Batman ... 1 +18147 792 Japan 's wildest filmmaker 2 +18148 792 Japan 's 2 +18149 792 wildest filmmaker 2 +18150 792 wildest 2 +18151 792 gives us a crime fighter carrying more emotional baggage than Batman ... 2 +18152 792 gives us a crime fighter carrying more emotional baggage than Batman 2 +18153 792 a crime fighter carrying more emotional baggage than Batman 2 +18154 792 a crime fighter 2 +18155 792 crime fighter 2 +18156 792 carrying more emotional baggage than Batman 3 +18157 792 carrying more emotional baggage 2 +18158 792 carrying 2 +18159 792 more emotional baggage 2 +18160 792 more emotional 3 +18161 792 baggage 2 +18162 792 than Batman 2 +18163 792 Batman 3 +18164 793 Were it not for a sentimental resolution that explains way more about Cal than does the movie or the character any good , Freundlich 's World Traveler might have been one of the more daring and surprising American movies of the year . 2 +18165 793 Were it not for a sentimental resolution that explains way more about Cal than does the movie or the character any good 1 +18166 793 Were it 2 +18167 793 not for a sentimental resolution that explains way more about Cal than does the movie or the character any good 1 +18168 793 for a sentimental resolution that explains way more about Cal than does the movie or the character any good 2 +18169 793 a sentimental resolution that explains way more about Cal than does the movie or the character any good 2 +18170 793 a sentimental resolution 2 +18171 793 sentimental resolution 2 +18172 793 resolution 2 +18173 793 that explains way more about Cal than does the movie or the character any good 2 +18174 793 explains way more about Cal than does the movie or the character any good 2 +18175 793 explains way more about Cal 2 +18176 793 explains 2 +18177 793 way more about Cal 2 +18178 793 way more 2 +18179 793 about Cal 2 +18180 793 Cal 2 +18181 793 than does the movie or the character any good 2 +18182 793 does the movie or the character any good 2 +18183 793 the movie or the character any good 2 +18184 793 the movie or the character 2 +18185 793 the movie or 2 +18186 793 any good 2 +18187 793 , Freundlich 's World Traveler might have been one of the more daring and surprising American movies of the year . 3 +18188 793 Freundlich 's World Traveler might have been one of the more daring and surprising American movies of the year . 3 +18189 793 Freundlich 's World Traveler 3 +18190 793 might have been one of the more daring and surprising American movies of the year . 4 +18191 793 might have been one of the more daring and surprising American movies of the year 4 +18192 793 have been one of the more daring and surprising American movies of the year 4 +18193 793 been one of the more daring and surprising American movies of the year 4 +18194 793 one of the more daring and surprising American movies of the year 3 +18195 793 of the more daring and surprising American movies of the year 3 +18196 793 the more daring and surprising American movies of the year 3 +18197 793 the more daring and surprising American movies 3 +18198 793 more daring and surprising American movies 3 +18199 793 more daring and surprising 3 +18200 793 daring and surprising 3 +18201 793 American movies 2 +18202 794 Thin period piece . 2 +18203 794 Thin period piece 1 +18204 794 Thin period 2 +18205 795 A well-executed spy-thriller . 4 +18206 795 well-executed spy-thriller . 4 +18207 795 well-executed 4 +18208 795 spy-thriller . 2 +18209 795 spy-thriller 2 +18210 796 The stripped-down dramatic constructs , austere imagery and abstract characters are equal parts poetry and politics , obvious at times but evocative and heartfelt . 2 +18211 796 The stripped-down dramatic constructs , austere imagery and abstract characters 2 +18212 796 The stripped-down dramatic constructs , austere imagery and 2 +18213 796 The stripped-down dramatic constructs , austere imagery 2 +18214 796 The stripped-down dramatic constructs , 2 +18215 796 The stripped-down dramatic constructs 2 +18216 796 stripped-down dramatic constructs 2 +18217 796 stripped-down 2 +18218 796 dramatic constructs 2 +18219 796 austere imagery 2 +18220 796 austere 2 +18221 796 abstract characters 3 +18222 796 abstract 2 +18223 796 are equal parts poetry and politics , obvious at times but evocative and heartfelt . 3 +18224 796 are equal parts poetry and politics , obvious at times but evocative and heartfelt 3 +18225 796 equal parts poetry and politics , obvious at times but evocative and heartfelt 3 +18226 796 equal parts 2 +18227 796 poetry and politics , obvious at times but evocative and heartfelt 3 +18228 796 poetry and politics , 3 +18229 796 poetry and politics 2 +18230 796 poetry and 2 +18231 796 obvious at times but evocative and heartfelt 3 +18232 796 obvious at times but 2 +18233 796 obvious at times 2 +18234 796 evocative and heartfelt 3 +18235 796 evocative and 3 +18236 797 ... the tale of her passionate , tumultuous affair with Musset unfolds as Sand 's masculine persona , with its love of life and beauty , takes form . 3 +18237 797 the tale of her passionate , tumultuous affair with Musset unfolds as Sand 's masculine persona , with its love of life and beauty , takes form . 3 +18238 797 the tale of her passionate , tumultuous affair with Musset 2 +18239 797 the tale 2 +18240 797 of her passionate , tumultuous affair with Musset 2 +18241 797 her passionate , tumultuous affair with Musset 3 +18242 797 her passionate , tumultuous affair 3 +18243 797 passionate , tumultuous affair 3 +18244 797 , tumultuous affair 2 +18245 797 tumultuous affair 2 +18246 797 tumultuous 2 +18247 797 with Musset 2 +18248 797 Musset 2 +18249 797 unfolds as Sand 's masculine persona , with its love of life and beauty , takes form . 4 +18250 797 unfolds as Sand 's masculine persona , with its love of life and beauty , takes form 3 +18251 797 as Sand 's masculine persona , with its love of life and beauty , takes form 3 +18252 797 Sand 's masculine persona , with its love of life and beauty , takes form 3 +18253 797 Sand 's masculine persona , with its love of life and beauty , 3 +18254 797 Sand 's masculine persona , with its love of life and beauty 3 +18255 797 Sand 's masculine persona , 2 +18256 797 Sand 's masculine persona 3 +18257 797 Sand 's 2 +18258 797 Sand 2 +18259 797 masculine persona 2 +18260 797 masculine 2 +18261 797 persona 2 +18262 797 with its love of life and beauty 3 +18263 797 its love of life and beauty 3 +18264 797 its love 3 +18265 797 of life and beauty 2 +18266 797 life and beauty 3 +18267 797 life and 2 +18268 797 takes form 3 +18269 798 More of the same old garbage Hollywood has been trying to pass off as acceptable teen entertainment for some time now . 0 +18270 798 More of the same old garbage 0 +18271 798 of the same old garbage 0 +18272 798 the same old garbage 0 +18273 798 same old garbage 0 +18274 798 old garbage 0 +18275 798 Hollywood has been trying to pass off as acceptable teen entertainment for some time now . 1 +18276 798 has been trying to pass off as acceptable teen entertainment for some time now . 1 +18277 798 has been trying to pass off as acceptable teen entertainment for some time now 2 +18278 798 been trying to pass off as acceptable teen entertainment for some time now 2 +18279 798 trying to pass off as acceptable teen entertainment for some time now 1 +18280 798 to pass off as acceptable teen entertainment for some time now 2 +18281 798 pass off as acceptable teen entertainment for some time now 2 +18282 798 pass off as acceptable teen entertainment for some time 2 +18283 798 pass off as acceptable teen entertainment 2 +18284 798 pass off 2 +18285 798 pass 2 +18286 798 as acceptable teen entertainment 2 +18287 798 as acceptable 2 +18288 798 acceptable 3 +18289 798 teen entertainment 2 +18290 798 for some time 2 +18291 799 Strident and inelegant in its ` message-movie ' posturing . 2 +18292 799 Strident and inelegant in its ` message-movie ' posturing 1 +18293 799 Strident and inelegant 1 +18294 799 Strident and 2 +18295 799 Strident 2 +18296 799 inelegant 1 +18297 799 in its ` message-movie ' posturing 1 +18298 799 its ` message-movie ' posturing 2 +18299 799 ` message-movie ' posturing 2 +18300 799 message-movie ' posturing 2 +18301 799 message-movie 2 +18302 799 ' posturing 2 +18303 800 In the affable Maid in Manhattan , Jennifer Lopez 's most aggressive and most sincere attempt to take movies by storm , the diva shrewdly surrounds herself with a company of strictly A-list players . 3 +18304 800 In the affable Maid in Manhattan , Jennifer Lopez 's most aggressive and most sincere attempt to take movies by storm 3 +18305 800 the affable Maid in Manhattan , Jennifer Lopez 's most aggressive and most sincere attempt to take movies by storm 3 +18306 800 the affable Maid in Manhattan , Jennifer Lopez 's most aggressive and most sincere attempt 3 +18307 800 the affable Maid 3 +18308 800 affable Maid 2 +18309 800 affable 2 +18310 800 Maid 2 +18311 800 in Manhattan , Jennifer Lopez 's most aggressive and most sincere attempt 3 +18312 800 Manhattan , Jennifer Lopez 's most aggressive and most sincere attempt 3 +18313 800 Manhattan , 2 +18314 800 Manhattan 2 +18315 800 Jennifer Lopez 's most aggressive and most sincere attempt 3 +18316 800 Jennifer Lopez 's 2 +18317 800 Jennifer 2 +18318 800 Lopez 's 2 +18319 800 Lopez 2 +18320 800 most aggressive and most sincere attempt 3 +18321 800 most aggressive and most sincere 4 +18322 800 most aggressive and 2 +18323 800 most aggressive 2 +18324 800 most sincere 3 +18325 800 to take movies by storm 2 +18326 800 take movies by storm 4 +18327 800 take movies 2 +18328 800 by storm 3 +18329 800 storm 2 +18330 800 , the diva shrewdly surrounds herself with a company of strictly A-list players . 3 +18331 800 the diva shrewdly surrounds herself with a company of strictly A-list players . 2 +18332 800 the diva shrewdly 2 +18333 800 diva shrewdly 2 +18334 800 diva 3 +18335 800 shrewdly 3 +18336 800 surrounds herself with a company of strictly A-list players . 2 +18337 800 surrounds herself with a company of strictly A-list players 3 +18338 800 surrounds herself 2 +18339 800 surrounds 2 +18340 800 herself 2 +18341 800 with a company of strictly A-list players 3 +18342 800 a company of strictly A-list players 3 +18343 800 a company 2 +18344 800 of strictly A-list players 3 +18345 800 strictly A-list players 3 +18346 800 A-list players 3 +18347 800 A-list 3 +18348 800 players 2 +18349 801 Gives an intriguing twist to the French coming-of-age genre . 3 +18350 801 Gives an intriguing twist to the French coming-of-age genre 3 +18351 801 Gives an intriguing twist 3 +18352 801 an intriguing twist 3 +18353 801 intriguing twist 3 +18354 801 twist 2 +18355 801 to the French coming-of-age genre 2 +18356 801 the French coming-of-age genre 2 +18357 801 French coming-of-age genre 2 +18358 801 coming-of-age genre 2 +18359 802 I 'd be lying if I said my ribcage did n't ache by the end of Kung Pow . 3 +18360 802 'd be lying if I said my ribcage did n't ache by the end of Kung Pow . 3 +18361 802 'd be lying if I said my ribcage did n't ache by the end of Kung Pow 3 +18362 802 be lying if I said my ribcage did n't ache by the end of Kung Pow 4 +18363 802 lying if I said my ribcage did n't ache by the end of Kung Pow 3 +18364 802 if I said my ribcage did n't ache by the end of Kung Pow 3 +18365 802 I said my ribcage did n't ache by the end of Kung Pow 3 +18366 802 said my ribcage did n't ache by the end of Kung Pow 2 +18367 802 my ribcage did n't ache by the end of Kung Pow 1 +18368 802 my ribcage 3 +18369 802 ribcage 2 +18370 802 did n't ache by the end of Kung Pow 2 +18371 802 ache by the end of Kung Pow 1 +18372 802 ache 1 +18373 802 by the end of Kung Pow 2 +18374 802 the end of Kung Pow 2 +18375 802 of Kung Pow 2 +18376 803 Has the capability of effecting change and inspiring hope . 3 +18377 803 Has the capability of effecting change and inspiring hope 3 +18378 803 the capability of effecting change and inspiring hope 3 +18379 803 the capability 2 +18380 803 of effecting change and inspiring hope 4 +18381 803 effecting change and inspiring hope 3 +18382 803 effecting change and 2 +18383 803 effecting change 3 +18384 803 effecting 3 +18385 803 inspiring hope 3 +18386 804 Kitschy , flashy , overlong soap opera . 0 +18387 804 Kitschy 2 +18388 804 , flashy , overlong soap opera . 1 +18389 804 flashy , overlong soap opera . 1 +18390 804 flashy , overlong soap 1 +18391 804 , overlong soap 1 +18392 804 overlong soap 1 +18393 804 overlong 1 +18394 804 opera . 2 +18395 805 White has n't developed characters so much as caricatures , one-dimensional buffoons that get him a few laughs but nothing else . 1 +18396 805 has n't developed characters so much as caricatures , one-dimensional buffoons that get him a few laughs but nothing else . 1 +18397 805 has n't developed characters so much as caricatures , one-dimensional buffoons that get him a few laughs but nothing else 0 +18398 805 developed characters so much as caricatures , one-dimensional buffoons that get him a few laughs but nothing else 1 +18399 805 developed characters so much 4 +18400 805 developed characters 3 +18401 805 developed 3 +18402 805 as caricatures , one-dimensional buffoons that get him a few laughs but nothing else 2 +18403 805 caricatures , one-dimensional buffoons that get him a few laughs but nothing else 2 +18404 805 caricatures , 2 +18405 805 one-dimensional buffoons that get him a few laughs but nothing else 1 +18406 805 one-dimensional buffoons 1 +18407 805 one-dimensional 1 +18408 805 buffoons 1 +18409 805 that get him a few laughs but nothing else 2 +18410 805 get him a few laughs but nothing else 1 +18411 805 him a few laughs but nothing else 2 +18412 805 a few laughs but nothing else 1 +18413 805 few laughs but nothing else 2 +18414 805 few laughs but 2 +18415 805 few laughs 2 +18416 806 ... one resurrection too many . 1 +18417 806 one resurrection too many . 1 +18418 806 resurrection too many . 2 +18419 806 resurrection too many 2 +18420 806 resurrection 2 +18421 807 Execrable . 0 +18422 807 Execrable 0 +18423 808 It may be a no-brainer , but at least it 's a funny no-brainer . 3 +18424 808 It may be a no-brainer , but at least it 's a funny no-brainer 3 +18425 808 It may be a no-brainer , but 2 +18426 808 It may be a no-brainer , 2 +18427 808 It may be a no-brainer 3 +18428 808 may be a no-brainer 2 +18429 808 be a no-brainer 2 +18430 808 a no-brainer 2 +18431 808 no-brainer 2 +18432 808 at least it 's a funny no-brainer 3 +18433 808 it 's a funny no-brainer 3 +18434 808 's a funny no-brainer 3 +18435 808 a funny no-brainer 3 +18436 808 funny no-brainer 3 +18437 809 I liked the movie , but I know I would have liked it more if it had just gone that one step further . 3 +18438 809 I liked the movie , but I know I would have liked it more if it had just gone that one step further 3 +18439 809 I liked the movie , but 3 +18440 809 I liked the movie , 3 +18441 809 I liked the movie 3 +18442 809 liked the movie 3 +18443 809 liked 3 +18444 809 I know I would have liked it more if it had just gone that one step further 1 +18445 809 know I would have liked it more if it had just gone that one step further 1 +18446 809 I would have liked it more if it had just gone that one step further 2 +18447 809 would have liked it more if it had just gone that one step further 3 +18448 809 have liked it more if it had just gone that one step further 2 +18449 809 liked it more if it had just gone that one step further 2 +18450 809 it more if it had just gone that one step further 2 +18451 809 more if it had just gone that one step further 1 +18452 809 if it had just gone that one step further 1 +18453 809 it had just gone that one step further 2 +18454 809 had just gone that one step further 2 +18455 809 gone that one step further 2 +18456 809 that one step further 2 +18457 809 one step further 3 +18458 809 step further 2 +18459 810 -LRB- Allen 's -RRB- best works understand why snobbery is a better satiric target than middle-America diversions could ever be . 3 +18460 810 -LRB- Allen 's -RRB- best works understand why snobbery is a better satiric target than middle-America 2 +18461 810 Allen 's -RRB- best works understand why snobbery is a better satiric target than middle-America 2 +18462 810 Allen 's 2 +18463 810 -RRB- best works understand why snobbery is a better satiric target than middle-America 1 +18464 810 best works understand why snobbery is a better satiric target than middle-America 2 +18465 810 works understand why snobbery is a better satiric target than middle-America 2 +18466 810 understand why snobbery is a better satiric target than middle-America 2 +18467 810 why snobbery is a better satiric target than middle-America 2 +18468 810 snobbery is a better satiric target than middle-America 2 +18469 810 snobbery 1 +18470 810 is a better satiric target than middle-America 2 +18471 810 a better satiric target than middle-America 2 +18472 810 a better satiric target 1 +18473 810 better satiric target 2 +18474 810 better satiric 2 +18475 810 satiric 2 +18476 810 than middle-America 2 +18477 810 middle-America 2 +18478 810 diversions could ever be . 2 +18479 810 diversions 2 +18480 810 could ever be . 2 +18481 810 could ever be 2 +18482 811 It gives poor Dana Carvey nothing to do that is really funny , and then expects us to laugh because he acts so goofy all the time . 1 +18483 811 It gives poor Dana Carvey nothing to do that is really funny , and then expects us to laugh because he acts so goofy all the time 1 +18484 811 It gives poor Dana Carvey nothing to do that is really funny , and 1 +18485 811 It gives poor Dana Carvey nothing to do that is really funny , 1 +18486 811 It gives poor Dana Carvey nothing to do that is really funny 1 +18487 811 gives poor Dana Carvey nothing to do that is really funny 1 +18488 811 gives poor Dana Carvey nothing 1 +18489 811 gives poor Dana Carvey 2 +18490 811 poor Dana Carvey 1 +18491 811 Dana Carvey 2 +18492 811 Dana 2 +18493 811 to do that is really funny 3 +18494 811 do that is really funny 3 +18495 811 that is really funny 4 +18496 811 is really funny 3 +18497 811 then expects us to laugh because he acts so goofy all the time 1 +18498 811 expects us to laugh because he acts so goofy all the time 1 +18499 811 expects 2 +18500 811 us to laugh because he acts so goofy all the time 3 +18501 811 to laugh because he acts so goofy all the time 3 +18502 811 laugh because he acts so goofy all the time 3 +18503 811 because he acts so goofy all the time 1 +18504 811 he acts so goofy all the time 2 +18505 811 acts so goofy all the time 2 +18506 811 acts 2 +18507 811 so goofy all the time 2 +18508 811 so goofy 2 +18509 811 all the time 2 +18510 812 Bernal and 2 +18511 812 Bernal 2 +18512 812 are an immensely appealing couple 4 +18513 812 an immensely appealing couple 3 +18514 812 immensely appealing couple 4 +18515 812 immensely appealing 4 +18516 812 immensely 3 +18517 812 appealing 3 +18518 812 even though their story is predictable , you 'll want things to work out 3 +18519 812 even though their story is predictable 2 +18520 812 though their story is predictable 1 +18521 812 their story is predictable 1 +18522 812 their story 2 +18523 812 is predictable 1 +18524 812 , you 'll want things to work out 2 +18525 812 you 'll want things to work out 3 +18526 812 'll want things to work out 2 +18527 812 want things to work out 2 +18528 812 things to work out 2 +18529 812 to work out 2 +18530 812 work out 2 +18531 813 An ambitious and moving but bleak film . 2 +18532 813 An ambitious and moving but bleak film 3 +18533 813 ambitious and moving but bleak film 2 +18534 813 ambitious and moving but bleak 1 +18535 813 ambitious and moving but 2 +18536 813 ambitious and moving 3 +18537 813 ambitious and 3 +18538 814 If cinema had been around to capture the chaos of France in the 1790 's , one imagines the result would look like something like this . 3 +18539 814 If cinema had been around to capture the chaos of France in the 1790 's 2 +18540 814 cinema had been around to capture the chaos of France in the 1790 's 2 +18541 814 had been around to capture the chaos of France in the 1790 's 2 +18542 814 been around to capture the chaos of France in the 1790 's 2 +18543 814 around to capture the chaos of France in the 1790 's 3 +18544 814 to capture the chaos of France in the 1790 's 3 +18545 814 capture the chaos of France in the 1790 's 3 +18546 814 capture the chaos of France 2 +18547 814 capture 2 +18548 814 the chaos of France 2 +18549 814 the chaos 2 +18550 814 of France 2 +18551 814 France 2 +18552 814 in the 1790 's 2 +18553 814 the 1790 's 2 +18554 814 1790 's 2 +18555 814 1790 2 +18556 814 , one imagines the result would look like something like this . 2 +18557 814 one imagines the result would look like something like this . 2 +18558 814 imagines the result would look like something like this . 2 +18559 814 imagines the result would look like something like this 2 +18560 814 imagines 3 +18561 814 the result would look like something like this 2 +18562 814 would look like something like this 3 +18563 814 look like something like this 2 +18564 814 like something like this 2 +18565 814 something like this 2 +18566 814 like this 2 +18567 815 Slight but enjoyable documentary . 3 +18568 815 but enjoyable documentary . 3 +18569 815 enjoyable documentary . 3 +18570 815 documentary . 2 +18571 816 Did the film inform and educate me ? 2 +18572 816 Did the film inform and educate me 2 +18573 816 Did the film 2 +18574 816 inform and educate me 3 +18575 816 inform and educate 2 +18576 816 inform and 2 +18577 816 inform 2 +18578 816 educate 2 +18579 817 If you are curious to see the darker side of what 's going on with young TV actors -LRB- Dawson Leery did what ?!? -RRB- , or see some interesting storytelling devices , you might want to check it out , but there 's nothing very attractive about this movie . 1 +18580 817 If you are curious to see the darker side of what 's going on with young TV actors -LRB- Dawson Leery did what ?!? -RRB- , or see some interesting storytelling devices , you might want to check it out , but there 's nothing very attractive about this movie 1 +18581 817 If you are curious to see the darker side of what 's going on with young TV actors -LRB- Dawson Leery did what ?!? -RRB- , or see some interesting storytelling devices , you might want to check it out , but 2 +18582 817 If you are curious to see the darker side of what 's going on with young TV actors -LRB- Dawson Leery did what ?!? -RRB- , or see some interesting storytelling devices , you might want to check it out , 2 +18583 817 If you are curious to see the darker side of what 's going on with young TV actors -LRB- Dawson Leery did what ?!? -RRB- , or see some interesting storytelling devices , you might want to check it out 3 +18584 817 If you are curious to see the darker side of what 's going on with young TV actors -LRB- Dawson Leery did what ?!? -RRB- , or see some interesting storytelling devices 2 +18585 817 you are curious to see the darker side of what 's going on with young TV actors -LRB- Dawson Leery did what ?!? -RRB- , or see some interesting storytelling devices 3 +18586 817 are curious to see the darker side of what 's going on with young TV actors -LRB- Dawson Leery did what ?!? -RRB- , or see some interesting storytelling devices 2 +18587 817 curious to see the darker side of what 's going on with young TV actors -LRB- Dawson Leery did what ?!? -RRB- , or see some interesting storytelling devices 2 +18588 817 curious 3 +18589 817 to see the darker side of what 's going on with young TV actors -LRB- Dawson Leery did what ?!? -RRB- , or see some interesting storytelling devices 2 +18590 817 see the darker side of what 's going on with young TV actors -LRB- Dawson Leery did what ?!? -RRB- , or see some interesting storytelling devices 2 +18591 817 see the darker side of what 's going on with young TV actors -LRB- Dawson Leery did what ?!? -RRB- , or 2 +18592 817 see the darker side of what 's going on with young TV actors -LRB- Dawson Leery did what ?!? -RRB- , 2 +18593 817 see the darker side of what 's going on with young TV actors -LRB- Dawson Leery did what ?!? -RRB- 2 +18594 817 see the darker side of what 's going on with young TV actors 2 +18595 817 the darker side of what 's going on with young TV actors 2 +18596 817 the darker side 2 +18597 817 darker side 2 +18598 817 of what 's going on with young TV actors 2 +18599 817 what 's going on with young TV actors 2 +18600 817 's going on with young TV actors 2 +18601 817 going on with young TV actors 2 +18602 817 with young TV actors 2 +18603 817 young TV actors 2 +18604 817 TV actors 2 +18605 817 -LRB- Dawson Leery did what ?!? -RRB- 2 +18606 817 Dawson Leery did what ?!? -RRB- 2 +18607 817 Dawson Leery did what ?!? 2 +18608 817 Dawson Leery 2 +18609 817 Leery 2 +18610 817 did what ?!? 2 +18611 817 what ?!? 1 +18612 817 ?!? 2 +18613 817 see some interesting storytelling devices 3 +18614 817 some interesting storytelling devices 3 +18615 817 interesting storytelling devices 3 +18616 817 storytelling devices 2 +18617 817 devices 2 +18618 817 , you might want to check it out 3 +18619 817 you might want to check it out 3 +18620 817 might want to check it out 3 +18621 817 want to check it out 3 +18622 817 to check it out 2 +18623 817 check it out 4 +18624 817 check it 2 +18625 817 check 3 +18626 817 there 's nothing very attractive about this movie 0 +18627 817 's nothing very attractive about this movie 0 +18628 817 's nothing 2 +18629 817 very attractive about this movie 4 +18630 817 attractive about this movie 3 +18631 817 attractive 3 +18632 817 about this movie 2 +18633 818 At the end of the movie , my 6-year-old nephew said , `` I guess I come from a broken family , and my uncles are all aliens , too . '' 2 +18634 818 At the end of the movie 2 +18635 818 the end of the movie 2 +18636 818 , my 6-year-old nephew said , `` I guess I come from a broken family , and my uncles are all aliens , too . '' 2 +18637 818 , my 6-year-old nephew said , 2 +18638 818 my 6-year-old nephew said , 2 +18639 818 my 6-year-old nephew said 2 +18640 818 my 6-year-old nephew 2 +18641 818 6-year-old nephew 2 +18642 818 6-year-old 2 +18643 818 nephew 2 +18644 818 `` I guess I come from a broken family , and my uncles are all aliens , too . '' 2 +18645 818 I guess I come from a broken family , and my uncles are all aliens , too . '' 2 +18646 818 I guess I come from a broken family , and my uncles are all aliens , too . 2 +18647 818 I guess I come from a broken family , and my uncles are all aliens , too 2 +18648 818 I guess I come from a broken family , and 1 +18649 818 I guess I come from a broken family , 2 +18650 818 I guess I come from a broken family 2 +18651 818 guess I come from a broken family 2 +18652 818 I come from a broken family 2 +18653 818 come from a broken family 2 +18654 818 from a broken family 2 +18655 818 a broken family 2 +18656 818 broken family 2 +18657 818 my uncles are all aliens , too 2 +18658 818 my uncles 2 +18659 818 uncles 2 +18660 818 are all aliens , too 2 +18661 818 are all aliens , 2 +18662 818 are all aliens 2 +18663 818 all aliens 1 +18664 818 aliens 2 +18665 819 All the actors are good in Pauline & Paulette but van der Groen , described as ` Belgium 's national treasure , ' is especially terrific as Pauline . 2 +18666 819 All the actors are good in Pauline & Paulette but van der Groen , described as ` Belgium 's national treasure , ' is especially terrific as Pauline 4 +18667 819 All the actors are good in Pauline & Paulette but 3 +18668 819 All the actors are good in Pauline & Paulette 3 +18669 819 are good in Pauline & Paulette 3 +18670 819 good in Pauline & Paulette 3 +18671 819 in Pauline & Paulette 2 +18672 819 Pauline & Paulette 2 +18673 819 Pauline & 2 +18674 819 Pauline 2 +18675 819 & 2 +18676 819 Paulette 2 +18677 819 van der Groen , described as ` Belgium 's national treasure , ' is especially terrific as Pauline 4 +18678 819 van der Groen , described as ` Belgium 's national treasure , ' 3 +18679 819 van der Groen , described as ` Belgium 's national treasure , 3 +18680 819 van der Groen , described as ` Belgium 's national treasure 3 +18681 819 van der Groen , 2 +18682 819 van der Groen 2 +18683 819 der Groen 2 +18684 819 der 2 +18685 819 Groen 2 +18686 819 described as ` Belgium 's national treasure 3 +18687 819 described 2 +18688 819 as ` Belgium 's national treasure 3 +18689 819 Belgium 's national treasure 3 +18690 819 Belgium 's 2 +18691 819 Belgium 2 +18692 819 national treasure 3 +18693 819 is especially terrific as Pauline 4 +18694 819 especially terrific as Pauline 3 +18695 819 terrific as Pauline 3 +18696 819 as Pauline 2 +18697 820 Curling may be a unique sport but Men with Brooms is distinctly ordinary . 2 +18698 820 Curling may be a unique sport but Men with Brooms is distinctly ordinary 1 +18699 820 Curling may be a unique sport but 2 +18700 820 Curling may be a unique sport 3 +18701 820 Curling 2 +18702 820 may be a unique sport 2 +18703 820 be a unique sport 2 +18704 820 a unique sport 2 +18705 820 unique sport 2 +18706 820 sport 2 +18707 820 Men with Brooms is distinctly ordinary 1 +18708 820 Men with Brooms 2 +18709 820 with Brooms 2 +18710 820 Brooms 2 +18711 820 is distinctly ordinary 2 +18712 820 distinctly ordinary 2 +18713 821 ` Yes , that 's right : it 's Forrest Gump , Angel Of Death . ' 3 +18714 821 Yes , that 's right : it 's Forrest Gump , Angel Of Death . ' 2 +18715 821 Yes , that 's right : it 's Forrest Gump , Angel Of Death . 2 +18716 821 Yes , that 's right : it 's Forrest Gump , Angel Of Death 2 +18717 821 Yes , that 's right : 2 +18718 821 Yes , that 's right 3 +18719 821 , that 's right 2 +18720 821 that 's right 3 +18721 821 's right 2 +18722 821 it 's Forrest Gump , Angel Of Death 2 +18723 821 it 's Forrest Gump , 2 +18724 821 it 's Forrest Gump 2 +18725 821 's Forrest Gump 2 +18726 821 Forrest Gump 2 +18727 821 Forrest 2 +18728 821 Gump 2 +18729 821 Angel Of Death 1 +18730 822 Metaphors abound , but it is easy to take this film at face value and enjoy its slightly humorous and tender story . 3 +18731 822 Metaphors abound , but it is easy to take this film at face value and enjoy its slightly humorous and tender story 3 +18732 822 Metaphors abound , but 2 +18733 822 Metaphors abound , 2 +18734 822 Metaphors abound 2 +18735 822 Metaphors 2 +18736 822 abound 2 +18737 822 it is easy to take this film at face value and enjoy its slightly humorous and tender story 3 +18738 822 is easy to take this film at face value and enjoy its slightly humorous and tender story 3 +18739 822 easy to take this film at face value and enjoy its slightly humorous and tender story 3 +18740 822 to take this film at face value and enjoy its slightly humorous and tender story 3 +18741 822 take this film at face value and enjoy its slightly humorous and tender story 3 +18742 822 take this film at face value and 2 +18743 822 take this film at face value 3 +18744 822 take this film 2 +18745 822 at face value 2 +18746 822 face value 2 +18747 822 enjoy its slightly humorous and tender story 3 +18748 822 its slightly humorous and tender story 3 +18749 822 slightly humorous and tender story 3 +18750 822 slightly humorous and tender 3 +18751 822 slightly 2 +18752 822 humorous and tender 3 +18753 822 humorous and 3 +18754 823 Comes across as a fairly weak retooling . 1 +18755 823 Comes across as a fairly weak retooling 1 +18756 823 as a fairly weak retooling 1 +18757 823 a fairly weak retooling 1 +18758 823 fairly weak retooling 1 +18759 823 fairly weak 1 +18760 823 retooling 2 +18761 824 This Orange has some juice , but it 's far from fresh-squeezed . 1 +18762 824 This Orange has some juice , but it 's far from fresh-squeezed 1 +18763 824 This Orange has some juice , but 2 +18764 824 This Orange has some juice , 3 +18765 824 This Orange has some juice 2 +18766 824 This Orange 2 +18767 824 Orange 2 +18768 824 has some juice 2 +18769 824 some juice 2 +18770 824 juice 2 +18771 824 it 's far from fresh-squeezed 1 +18772 824 's far from fresh-squeezed 1 +18773 824 far from fresh-squeezed 2 +18774 824 from fresh-squeezed 2 +18775 824 fresh-squeezed 2 +18776 825 By not averting his eyes , Solondz forces us to consider the unthinkable , the unacceptable , the unmentionable . 3 +18777 825 By not averting his eyes 2 +18778 825 not averting his eyes 2 +18779 825 averting his eyes 2 +18780 825 averting 2 +18781 825 his eyes 2 +18782 825 , Solondz forces us to consider the unthinkable , the unacceptable , the unmentionable . 2 +18783 825 Solondz forces us to consider the unthinkable , the unacceptable , the unmentionable . 2 +18784 825 forces us to consider the unthinkable , the unacceptable , the unmentionable . 2 +18785 825 forces us to consider the unthinkable , the unacceptable , the unmentionable 3 +18786 825 us to consider the unthinkable , the unacceptable , the unmentionable 2 +18787 825 to consider the unthinkable , the unacceptable , the unmentionable 1 +18788 825 consider the unthinkable , the unacceptable , the unmentionable 2 +18789 825 consider 2 +18790 825 the unthinkable , the unacceptable , the unmentionable 1 +18791 825 the unthinkable , 2 +18792 825 the unthinkable 2 +18793 825 unthinkable 2 +18794 825 the unacceptable , the unmentionable 1 +18795 825 the unacceptable , 0 +18796 825 the unacceptable 0 +18797 825 unacceptable 1 +18798 825 the unmentionable 1 +18799 825 unmentionable 1 +18800 826 A remarkably alluring film set in the constrictive Eisenhower era about one suburban woman 's yearning in the face of a loss that shatters her cheery and tranquil suburban life . 3 +18801 826 A remarkably alluring film 4 +18802 826 remarkably alluring film 4 +18803 826 remarkably alluring 3 +18804 826 remarkably 3 +18805 826 alluring 4 +18806 826 set in the constrictive Eisenhower era about one suburban woman 's yearning in the face of a loss that shatters her cheery and tranquil suburban life . 2 +18807 826 set in the constrictive Eisenhower era about one suburban woman 's yearning in the face of a loss that shatters her cheery and tranquil suburban life 2 +18808 826 set in the constrictive Eisenhower era about one 2 +18809 826 in the constrictive Eisenhower era about one 2 +18810 826 the constrictive Eisenhower era about one 2 +18811 826 the constrictive Eisenhower era 2 +18812 826 constrictive Eisenhower era 3 +18813 826 constrictive 1 +18814 826 Eisenhower era 2 +18815 826 Eisenhower 2 +18816 826 about one 2 +18817 826 suburban woman 's yearning in the face of a loss that shatters her cheery and tranquil suburban life 2 +18818 826 suburban woman 's yearning 2 +18819 826 suburban woman 's 2 +18820 826 yearning 2 +18821 826 in the face of a loss that shatters her cheery and tranquil suburban life 2 +18822 826 the face of a loss that shatters her cheery and tranquil suburban life 2 +18823 826 the face 2 +18824 826 of a loss that shatters her cheery and tranquil suburban life 2 +18825 826 a loss that shatters her cheery and tranquil suburban life 2 +18826 826 a loss 1 +18827 826 that shatters her cheery and tranquil suburban life 2 +18828 826 shatters her cheery and tranquil suburban life 2 +18829 826 shatters 2 +18830 826 her cheery and tranquil suburban life 3 +18831 826 cheery and tranquil suburban life 3 +18832 826 cheery and tranquil 3 +18833 826 cheery and 3 +18834 826 cheery 4 +18835 826 tranquil 2 +18836 826 suburban life 2 +18837 827 Ultimately this is a frustrating patchwork : an uneasy marriage of Louis Begley 's source novel -LRB- About Schmidt -RRB- and an old Payne screenplay . 1 +18838 827 this is a frustrating patchwork : an uneasy marriage of Louis Begley 's source novel -LRB- About Schmidt -RRB- and an old Payne screenplay . 1 +18839 827 is a frustrating patchwork : an uneasy marriage of Louis Begley 's source novel -LRB- About Schmidt -RRB- and an old Payne screenplay . 0 +18840 827 is a frustrating patchwork : an uneasy marriage of Louis Begley 's source novel -LRB- About Schmidt -RRB- and an old Payne screenplay 1 +18841 827 a frustrating patchwork : an uneasy marriage of Louis Begley 's source novel -LRB- About Schmidt -RRB- and an old Payne screenplay 1 +18842 827 a frustrating patchwork : an uneasy marriage of Louis Begley 's source novel -LRB- About Schmidt -RRB- and 1 +18843 827 a frustrating patchwork : an uneasy marriage of Louis Begley 's source novel -LRB- About Schmidt -RRB- 2 +18844 827 a frustrating patchwork : 0 +18845 827 a frustrating patchwork 1 +18846 827 frustrating patchwork 1 +18847 827 frustrating 0 +18848 827 patchwork 2 +18849 827 an uneasy marriage of Louis Begley 's source novel -LRB- About Schmidt -RRB- 1 +18850 827 an uneasy marriage 1 +18851 827 uneasy marriage 2 +18852 827 uneasy 1 +18853 827 marriage 2 +18854 827 of Louis Begley 's source novel -LRB- About Schmidt -RRB- 2 +18855 827 Louis Begley 's source novel -LRB- About Schmidt -RRB- 2 +18856 827 Louis Begley 's source novel 2 +18857 827 Louis Begley 's 2 +18858 827 Louis 2 +18859 827 Begley 's 2 +18860 827 Begley 2 +18861 827 source novel 2 +18862 827 -LRB- About Schmidt -RRB- 2 +18863 827 About Schmidt -RRB- 2 +18864 827 an old Payne screenplay 2 +18865 827 old Payne screenplay 2 +18866 827 Payne screenplay 2 +18867 828 The movie is like a year late for tapping into our reality tv obsession , and even tardier for exploiting the novelty of the `` webcast . '' 1 +18868 828 is like a year late for tapping into our reality tv obsession , and even tardier for exploiting the novelty of the `` webcast . '' 0 +18869 828 is like a year late for tapping into our reality tv obsession , and even tardier for exploiting the novelty of the `` webcast . 1 +18870 828 is like a year late for tapping into our reality tv obsession , and even tardier for exploiting the novelty of the `` webcast 0 +18871 828 is like a year late 1 +18872 828 like a year late 2 +18873 828 a year late 1 +18874 828 year late 2 +18875 828 late 2 +18876 828 for tapping into our reality tv obsession , and even tardier for exploiting the novelty of the `` webcast 2 +18877 828 tapping into our reality tv obsession , and even tardier for exploiting the novelty of the `` webcast 2 +18878 828 tapping into our reality tv obsession , and even tardier 0 +18879 828 tapping 2 +18880 828 into our reality tv obsession , and even tardier 2 +18881 828 our reality tv obsession , and even tardier 2 +18882 828 our reality tv obsession , and even 1 +18883 828 our reality tv obsession , and 2 +18884 828 our reality tv obsession , 1 +18885 828 our reality tv obsession 2 +18886 828 reality tv obsession 1 +18887 828 tv obsession 2 +18888 828 obsession 2 +18889 828 tardier 1 +18890 828 for exploiting the novelty of the `` webcast 1 +18891 828 exploiting the novelty of the `` webcast 2 +18892 828 exploiting 1 +18893 828 the novelty of the `` webcast 2 +18894 828 the novelty 2 +18895 828 novelty 2 +18896 828 of the `` webcast 2 +18897 828 the `` webcast 2 +18898 828 `` webcast 2 +18899 828 webcast 2 +18900 829 Chai 's structure and pacing are disconcertingly slack . 1 +18901 829 Chai 's structure and pacing 2 +18902 829 Chai 's 2 +18903 829 Chai 2 +18904 829 structure and pacing 2 +18905 829 are disconcertingly slack . 2 +18906 829 are disconcertingly slack 2 +18907 829 disconcertingly slack 1 +18908 829 disconcertingly 1 +18909 829 slack 2 +18910 830 Or else a doggie winks . 2 +18911 830 else a doggie winks . 2 +18912 830 a doggie winks . 2 +18913 830 a doggie winks 2 +18914 830 doggie winks 2 +18915 830 doggie 3 +18916 830 winks 2 +18917 831 You need n't be steeped in '50s sociology , pop culture or movie lore to appreciate the emotional depth of Haynes ' work . 3 +18918 831 need n't be steeped in '50s sociology , pop culture or movie lore to appreciate the emotional depth of Haynes ' work . 3 +18919 831 need n't be steeped in '50s sociology , pop culture or movie lore to appreciate the emotional depth of Haynes ' work 3 +18920 831 need n't 2 +18921 831 be steeped in '50s sociology , pop culture or movie lore to appreciate the emotional depth of Haynes ' work 2 +18922 831 steeped in '50s sociology , pop culture or movie lore to appreciate the emotional depth of Haynes ' work 2 +18923 831 steeped in '50s sociology , pop culture or movie lore 2 +18924 831 steeped 2 +18925 831 in '50s sociology , pop culture or movie lore 2 +18926 831 '50s sociology , pop culture or movie lore 2 +18927 831 '50s sociology , pop culture or 2 +18928 831 '50s sociology , pop culture 2 +18929 831 '50s sociology , 2 +18930 831 '50s sociology 2 +18931 831 '50s 2 +18932 831 sociology 2 +18933 831 pop culture 2 +18934 831 movie lore 2 +18935 831 lore 2 +18936 831 to appreciate the emotional depth of Haynes ' work 2 +18937 831 appreciate the emotional depth of Haynes ' work 3 +18938 831 the emotional depth of Haynes ' work 2 +18939 831 the emotional depth 3 +18940 831 emotional depth 3 +18941 831 of Haynes ' work 2 +18942 831 Haynes ' work 2 +18943 832 Decasia is what has happened already to so many silent movies , newsreels and the like . 2 +18944 832 Decasia 2 +18945 832 is what has happened already to so many silent movies , newsreels and the like . 2 +18946 832 is what has happened already to so many silent movies , newsreels and the like 2 +18947 832 what has happened already to so many silent movies , newsreels and the like 2 +18948 832 has happened already to so many silent movies , newsreels and the like 2 +18949 832 happened already to so many silent movies , newsreels and the like 2 +18950 832 happened already 1 +18951 832 happened 2 +18952 832 to so many silent movies , newsreels and the like 2 +18953 832 so many silent movies , newsreels and the like 2 +18954 832 so many silent movies , newsreels and 2 +18955 832 so many silent movies , newsreels 2 +18956 832 so many silent movies , 2 +18957 832 so many silent movies 2 +18958 832 many silent movies 2 +18959 832 silent movies 2 +18960 832 newsreels 2 +18961 832 the like 2 +18962 833 More than anything else , Kissing Jessica Stein injects freshness and spirit into the romantic comedy genre , which has been held hostage by generic scripts that seek to remake Sleepless in Seattle again and again . 4 +18963 833 More than anything else 2 +18964 833 than anything else 2 +18965 833 anything else 2 +18966 833 , Kissing Jessica Stein injects freshness and spirit into the romantic comedy genre , which has been held hostage by generic scripts that seek to remake Sleepless in Seattle again and again . 4 +18967 833 Kissing Jessica Stein injects freshness and spirit into the romantic comedy genre , which has been held hostage by generic scripts that seek to remake Sleepless in Seattle again and again . 4 +18968 833 Kissing Jessica Stein 2 +18969 833 Kissing 3 +18970 833 Jessica Stein 2 +18971 833 Jessica 2 +18972 833 Stein 2 +18973 833 injects freshness and spirit into the romantic comedy genre , which has been held hostage by generic scripts that seek to remake Sleepless in Seattle again and again . 4 +18974 833 injects freshness and spirit into the romantic comedy genre , which has been held hostage by generic scripts that seek to remake Sleepless in Seattle again and again 3 +18975 833 injects freshness and spirit 4 +18976 833 freshness and spirit 3 +18977 833 freshness and 3 +18978 833 into the romantic comedy genre , which has been held hostage by generic scripts that seek to remake Sleepless in Seattle again and again 2 +18979 833 the romantic comedy genre , which has been held hostage by generic scripts that seek to remake Sleepless in Seattle again and again 2 +18980 833 the romantic comedy genre , 2 +18981 833 the romantic comedy genre 2 +18982 833 romantic comedy genre 3 +18983 833 comedy genre 3 +18984 833 which has been held hostage by generic scripts that seek to remake Sleepless in Seattle again and again 1 +18985 833 has been held hostage by generic scripts that seek to remake Sleepless in Seattle again and again 1 +18986 833 been held hostage by generic scripts that seek to remake Sleepless in Seattle again and again 0 +18987 833 held hostage by generic scripts that seek to remake Sleepless in Seattle again and again 2 +18988 833 held hostage 1 +18989 833 held 2 +18990 833 hostage 2 +18991 833 by generic scripts that seek to remake Sleepless in Seattle again and again 1 +18992 833 generic scripts that seek to remake Sleepless in Seattle again and again 0 +18993 833 generic scripts 1 +18994 833 scripts 2 +18995 833 that seek to remake Sleepless in Seattle again and again 1 +18996 833 seek to remake Sleepless in Seattle again and again 2 +18997 833 seek 2 +18998 833 to remake Sleepless in Seattle again and again 1 +18999 833 remake Sleepless in Seattle again and again 1 +19000 833 remake Sleepless in Seattle 2 +19001 833 Sleepless in Seattle 2 +19002 833 Sleepless 2 +19003 833 in Seattle 2 +19004 833 Seattle 2 +19005 833 again and again 2 +19006 834 Fast and funny , an action cartoon that 's suspenseful enough for older kids but not too scary for the school-age crowd . 3 +19007 834 Fast and funny , an action cartoon that 's suspenseful enough for older kids but not too scary for the school-age crowd 4 +19008 834 Fast and funny , 3 +19009 834 Fast and funny 3 +19010 834 Fast and 2 +19011 834 an action cartoon that 's suspenseful enough for older kids but not too scary for the school-age crowd 3 +19012 834 an action cartoon 2 +19013 834 action cartoon 2 +19014 834 that 's suspenseful enough for older kids but not too scary for the school-age crowd 3 +19015 834 's suspenseful enough for older kids but not too scary for the school-age crowd 3 +19016 834 's suspenseful enough for older kids but not too scary 3 +19017 834 suspenseful enough for older kids but not too scary 3 +19018 834 suspenseful enough for older kids but not 3 +19019 834 suspenseful enough for older kids but 3 +19020 834 suspenseful enough for older kids 2 +19021 834 suspenseful enough 3 +19022 834 for older kids 2 +19023 834 older kids 2 +19024 834 too scary 2 +19025 834 for the school-age crowd 2 +19026 834 the school-age crowd 2 +19027 834 school-age crowd 2 +19028 834 school-age 2 +19029 835 After all the big build-up , the payoff for the audience , as well as the characters , is messy , murky , unsatisfying . 2 +19030 835 After all the big build-up 2 +19031 835 all the big build-up 2 +19032 835 the big build-up 2 +19033 835 big build-up 2 +19034 835 build-up 2 +19035 835 , the payoff for the audience , as well as the characters , is messy , murky , unsatisfying . 1 +19036 835 the payoff for the audience , as well as the characters , is messy , murky , unsatisfying . 0 +19037 835 the payoff for the audience , as well as the characters , 3 +19038 835 the payoff for the audience , as well as the characters 2 +19039 835 the payoff for the audience , as well as 3 +19040 835 the payoff for the audience , 2 +19041 835 the payoff for the audience 3 +19042 835 the payoff 3 +19043 835 payoff 2 +19044 835 for the audience 2 +19045 835 is messy , murky , unsatisfying . 0 +19046 835 is messy , murky , unsatisfying 0 +19047 835 messy , murky , unsatisfying 0 +19048 835 messy , murky , 0 +19049 835 messy , murky 0 +19050 835 messy , 1 +19051 835 messy 1 +19052 835 murky 1 +19053 835 unsatisfying 0 +19054 836 Not only better than its predecessor , it may rate as the most magical and most fun family fare of this or any recent holiday season . 4 +19055 836 Not only better than its predecessor 3 +19056 836 Not only better 3 +19057 836 , it may rate as the most magical and most fun family fare of this or any recent holiday season . 4 +19058 836 it may rate as the most magical and most fun family fare of this or any recent holiday season . 4 +19059 836 may rate as the most magical and most fun family fare of this or any recent holiday season . 4 +19060 836 may rate as the most magical and most fun family fare of this or any recent holiday season 4 +19061 836 rate as the most magical and most fun family fare of this or any recent holiday season 4 +19062 836 rate 2 +19063 836 as the most magical and most fun family fare of this or any recent holiday season 4 +19064 836 the most magical and most fun family fare of this or any recent holiday season 4 +19065 836 the most magical and most fun family fare 3 +19066 836 most magical and most fun family fare 4 +19067 836 most magical and most 3 +19068 836 most magical and 4 +19069 836 most magical 4 +19070 836 fun family fare 4 +19071 836 family fare 2 +19072 836 fare 2 +19073 836 of this or any recent holiday season 2 +19074 836 this or any recent holiday season 2 +19075 836 this or 2 +19076 836 any recent holiday season 2 +19077 836 recent holiday season 2 +19078 836 holiday season 2 +19079 836 season 3 +19080 837 Once again , the intelligence of gay audiences has been grossly underestimated , and a meaty plot and well-developed characters have been sacrificed for skin and flash that barely fizzle . 2 +19081 837 Once again 2 +19082 837 , the intelligence of gay audiences has been grossly underestimated , and a meaty plot and well-developed characters have been sacrificed for skin and flash that barely fizzle . 1 +19083 837 the intelligence of gay audiences has been grossly underestimated , and a meaty plot and well-developed characters have been sacrificed for skin and flash that barely fizzle . 0 +19084 837 the intelligence of gay audiences has been grossly underestimated , and a meaty plot and well-developed characters have been sacrificed for skin and flash that barely fizzle 0 +19085 837 the intelligence of gay audiences has been grossly underestimated , and 1 +19086 837 the intelligence of gay audiences has been grossly underestimated , 2 +19087 837 the intelligence of gay audiences has been grossly underestimated 1 +19088 837 the intelligence of gay audiences 2 +19089 837 the intelligence 2 +19090 837 of gay audiences 2 +19091 837 gay audiences 2 +19092 837 has been grossly underestimated 3 +19093 837 been grossly underestimated 1 +19094 837 grossly underestimated 2 +19095 837 grossly 1 +19096 837 underestimated 3 +19097 837 a meaty plot and well-developed characters have been sacrificed for skin and flash that barely fizzle 2 +19098 837 a meaty plot and well-developed characters 3 +19099 837 a meaty plot and 3 +19100 837 a meaty plot 3 +19101 837 meaty plot 3 +19102 837 well-developed characters 3 +19103 837 well-developed 3 +19104 837 have been sacrificed for skin and flash that barely fizzle 1 +19105 837 have been sacrificed for skin and 2 +19106 837 have been sacrificed for skin 1 +19107 837 been sacrificed for skin 1 +19108 837 sacrificed for skin 2 +19109 837 sacrificed 2 +19110 837 for skin 2 +19111 837 flash that barely fizzle 1 +19112 837 that barely fizzle 1 +19113 837 barely fizzle 1 +19114 837 fizzle 1 +19115 838 A film without surprise geared toward maximum comfort and familiarity . 1 +19116 838 A film without surprise 1 +19117 838 without surprise 2 +19118 838 geared toward maximum comfort and familiarity . 2 +19119 838 geared toward maximum comfort and familiarity 3 +19120 838 geared 3 +19121 838 toward maximum comfort and familiarity 3 +19122 838 maximum comfort and familiarity 3 +19123 838 maximum 2 +19124 838 comfort and familiarity 3 +19125 838 comfort and 2 +19126 838 comfort 3 +19127 838 familiarity 2 +19128 839 Definitely a crowd-pleaser , but then , so was the Roman Colosseum . 3 +19129 839 a crowd-pleaser , but then , so was the Roman Colosseum . 2 +19130 839 a crowd-pleaser , but then , so 3 +19131 839 a crowd-pleaser , but then , 3 +19132 839 a crowd-pleaser , but then 3 +19133 839 a crowd-pleaser , but 2 +19134 839 a crowd-pleaser , 3 +19135 839 a crowd-pleaser 3 +19136 839 crowd-pleaser 4 +19137 839 was the Roman Colosseum . 2 +19138 839 was the Roman Colosseum 2 +19139 839 the Roman Colosseum 2 +19140 839 Roman Colosseum 2 +19141 839 Colosseum 2 +19142 840 Here is a VH1 Behind the Music special that has something a little more special behind it : music that did n't sell many records but helped change a nation . 3 +19143 840 is a VH1 Behind the Music special that has something a little more special behind it : music that did n't sell many records but helped change a nation . 3 +19144 840 is a VH1 Behind the Music special that has something a little more special behind it : music that did n't sell many records but helped change a nation 3 +19145 840 a VH1 Behind the Music special that has something a little more special behind it : music that did n't sell many records but helped change a nation 3 +19146 840 a VH1 Behind the Music special 2 +19147 840 a VH1 2 +19148 840 VH1 2 +19149 840 Behind the Music special 2 +19150 840 the Music special 2 +19151 840 Music special 2 +19152 840 that has something a little more special behind it : music that did n't sell many records but helped change a nation 3 +19153 840 has something a little more special behind it : music that did n't sell many records but helped change a nation 3 +19154 840 something a little more special behind it : music that did n't sell many records but helped change a nation 3 +19155 840 something a little more special behind it : 3 +19156 840 something a little more special behind it 3 +19157 840 a little more special behind it 2 +19158 840 a little more special 3 +19159 840 more special 2 +19160 840 behind it 2 +19161 840 music that did n't sell many records but helped change a nation 2 +19162 840 that did n't sell many records but helped change a nation 3 +19163 840 did n't sell many records but helped change a nation 2 +19164 840 did n't sell many records but 1 +19165 840 did n't sell many records 2 +19166 840 sell many records 3 +19167 840 many records 2 +19168 840 records 2 +19169 840 helped change a nation 3 +19170 840 helped 3 +19171 840 change a nation 3 +19172 840 a nation 2 +19173 840 nation 2 +19174 841 Kids will love its fantasy and adventure , and grownups should appreciate its whimsical humor . 4 +19175 841 Kids will love its fantasy and adventure , and grownups should appreciate its whimsical humor 3 +19176 841 Kids will love its fantasy and adventure , and 3 +19177 841 Kids will love its fantasy and adventure , 4 +19178 841 Kids will love its fantasy and adventure 3 +19179 841 will love its fantasy and adventure 3 +19180 841 love its fantasy and adventure 3 +19181 841 its fantasy and adventure 2 +19182 841 fantasy and adventure 3 +19183 841 fantasy and 2 +19184 841 grownups should appreciate its whimsical humor 3 +19185 841 grownups 3 +19186 841 should appreciate its whimsical humor 4 +19187 841 appreciate its whimsical humor 2 +19188 841 its whimsical humor 3 +19189 841 whimsical humor 4 +19190 841 whimsical 3 +19191 842 After all , he took three minutes of dialogue , 30 seconds of plot and turned them into a 90-minute movie that feels five hours long . 1 +19192 842 After all 2 +19193 842 , he took three minutes of dialogue , 30 seconds of plot and turned them into a 90-minute movie that feels five hours long . 0 +19194 842 he took three minutes of dialogue , 30 seconds of plot and turned them into a 90-minute movie that feels five hours long . 1 +19195 842 took three minutes of dialogue , 30 seconds of plot and turned them into a 90-minute movie that feels five hours long . 0 +19196 842 took three minutes of dialogue , 30 seconds of plot and turned them into a 90-minute movie that feels five hours long 0 +19197 842 took three minutes of dialogue , 30 seconds of plot and 1 +19198 842 took three minutes of dialogue , 30 seconds of plot 2 +19199 842 three minutes of dialogue , 30 seconds of plot 1 +19200 842 three minutes 2 +19201 842 of dialogue , 30 seconds of plot 2 +19202 842 dialogue , 30 seconds of plot 0 +19203 842 dialogue , 2 +19204 842 30 seconds of plot 1 +19205 842 30 seconds 2 +19206 842 30 2 +19207 842 seconds 2 +19208 842 of plot 2 +19209 842 turned them into a 90-minute movie that feels five hours long 0 +19210 842 turned them 2 +19211 842 into a 90-minute movie that feels five hours long 0 +19212 842 a 90-minute movie that feels five hours long 1 +19213 842 a 90-minute movie 2 +19214 842 90-minute movie 2 +19215 842 90-minute 2 +19216 842 that feels five hours long 2 +19217 842 feels five hours long 1 +19218 842 five hours long 1 +19219 842 five hours 2 +19220 843 Interminably bleak , to say nothing of boring . 0 +19221 843 Interminably bleak 0 +19222 843 Interminably 3 +19223 843 , to say nothing of boring . 1 +19224 843 to say nothing of boring . 2 +19225 843 say nothing of boring . 2 +19226 843 say nothing of boring 1 +19227 843 nothing of boring 2 +19228 843 of boring 1 +19229 844 A naturally funny film , Home Movie makes you crave Chris Smith 's next movie . 4 +19230 844 A naturally funny film , Home Movie 4 +19231 844 A naturally funny film , 3 +19232 844 A naturally funny film 4 +19233 844 naturally funny film 3 +19234 844 naturally funny 4 +19235 844 naturally 2 +19236 844 Home Movie 2 +19237 844 makes you crave Chris Smith 's next movie . 4 +19238 844 makes you crave Chris Smith 's next movie 4 +19239 844 you crave Chris Smith 's next movie 4 +19240 844 crave Chris Smith 's next movie 2 +19241 844 crave 2 +19242 844 Chris Smith 's next movie 2 +19243 844 Chris Smith 's 2 +19244 844 Smith 's 2 +19245 844 Smith 2 +19246 844 next movie 1 +19247 845 The Bai brothers have taken an small slice of history and opened it up for all of us to understand , and they 've told a nice little story in the process . 4 +19248 845 The Bai brothers have taken an small slice of history and opened it up for all of us to understand , and they 've told a nice little story in the process 3 +19249 845 The Bai brothers have taken an small slice of history and opened it up for all of us to understand , and 3 +19250 845 The Bai brothers have taken an small slice of history and opened it up for all of us to understand , 4 +19251 845 The Bai brothers have taken an small slice of history and opened it up for all of us to understand 3 +19252 845 The Bai brothers 2 +19253 845 Bai brothers 2 +19254 845 Bai 2 +19255 845 have taken an small slice of history and opened it up for all of us to understand 4 +19256 845 have taken an small slice of history and 2 +19257 845 have taken an small slice of history 2 +19258 845 taken an small slice of history 2 +19259 845 taken 1 +19260 845 an small slice of history 2 +19261 845 an small slice 2 +19262 845 small slice 2 +19263 845 opened it up for all of us to understand 3 +19264 845 opened it up for all of us 3 +19265 845 opened it up 2 +19266 845 opened it 2 +19267 845 opened 2 +19268 845 for all of us 3 +19269 845 all of us 2 +19270 845 to understand 2 +19271 845 they 've told a nice little story in the process 2 +19272 845 've told a nice little story in the process 3 +19273 845 told a nice little story in the process 3 +19274 845 a nice little story in the process 3 +19275 845 a nice little story 3 +19276 845 nice little story 3 +19277 845 little story 2 +19278 845 in the process 2 +19279 845 the process 2 +19280 846 A Meatballs for the bare-midriff generation . 2 +19281 846 A Meatballs for the bare-midriff generation 2 +19282 846 A Meatballs 2 +19283 846 Meatballs 2 +19284 846 for the bare-midriff generation 2 +19285 846 the bare-midriff generation 2 +19286 846 bare-midriff generation 3 +19287 846 bare-midriff 2 +19288 846 generation 2 +19289 847 This movie is about the worst thing Chan has done in the United States . 0 +19290 847 is about the worst thing Chan has done in the United States . 0 +19291 847 is about the worst thing Chan has done in the United States 1 +19292 847 about the worst thing Chan has done in the United States 1 +19293 847 about the worst thing 1 +19294 847 the worst thing 0 +19295 847 worst thing 0 +19296 847 Chan has done in the United States 3 +19297 847 has done in the United States 2 +19298 847 done in the United States 2 +19299 847 in the United States 2 +19300 847 the United States 2 +19301 847 United States 3 +19302 847 United 2 +19303 848 Maintains your interest until the end and even leaves you with a few lingering animated thoughts . 3 +19304 848 your interest until the end and even leaves you with a few lingering animated thoughts . 3 +19305 848 your interest until the end and even leaves you with a few lingering animated thoughts 4 +19306 848 your interest until the end and 3 +19307 848 your interest until the end 2 +19308 848 your interest 2 +19309 848 until the end 2 +19310 848 until 2 +19311 848 even leaves you with a few lingering animated thoughts 3 +19312 848 leaves you with a few lingering animated thoughts 3 +19313 848 leaves you 2 +19314 848 with a few lingering animated thoughts 3 +19315 848 a few lingering animated thoughts 2 +19316 848 few lingering animated thoughts 2 +19317 848 few lingering 2 +19318 848 animated thoughts 3 +19319 848 thoughts 2 +19320 849 From blushing to gushing -- Imamura squirts the screen in ` Warm Water Under a Red Bridge ' 3 +19321 849 blushing to gushing -- Imamura squirts the screen in ` Warm Water Under a Red Bridge ' 3 +19322 849 blushing 2 +19323 849 to gushing -- Imamura squirts the screen in ` Warm Water Under a Red Bridge ' 2 +19324 849 gushing -- Imamura squirts the screen in ` Warm Water Under a Red Bridge ' 3 +19325 849 gushing -- 3 +19326 849 gushing 3 +19327 849 Imamura squirts the screen in ` Warm Water Under a Red Bridge ' 2 +19328 849 Imamura 2 +19329 849 squirts the screen in ` Warm Water Under a Red Bridge ' 3 +19330 849 squirts the screen 2 +19331 849 squirts 2 +19332 849 in ` Warm Water Under a Red Bridge ' 2 +19333 849 in ` Warm Water Under a Red Bridge 2 +19334 849 in ` 2 +19335 849 Warm Water Under a Red Bridge 2 +19336 849 Warm 3 +19337 849 Water Under a Red Bridge 2 +19338 849 Under a Red Bridge 2 +19339 849 a Red Bridge 2 +19340 849 Red Bridge 2 +19341 849 Bridge 2 +19342 850 Entertainment more disposable than Hanna-Barbera 's half-hour cartoons ever were . 2 +19343 850 Entertainment more disposable than Hanna-Barbera 's half-hour cartoons 1 +19344 850 more disposable than Hanna-Barbera 's half-hour cartoons 1 +19345 850 more disposable 2 +19346 850 than Hanna-Barbera 's half-hour cartoons 2 +19347 850 Hanna-Barbera 's half-hour cartoons 3 +19348 850 Hanna-Barbera 's 2 +19349 850 Hanna-Barbera 2 +19350 850 half-hour cartoons 2 +19351 850 half-hour 2 +19352 850 cartoons 2 +19353 850 ever were . 2 +19354 850 were . 2 +19355 851 The beautiful images and solemn words can not disguise the slack complacency of -LRB- Godard 's -RRB- vision , any more than the gorgeous piano and strings on the soundtrack can drown out the tinny self-righteousness of his voice . 1 +19356 851 The beautiful images and solemn words 3 +19357 851 beautiful images and solemn words 3 +19358 851 images and solemn words 2 +19359 851 and solemn words 2 +19360 851 solemn words 2 +19361 851 solemn 2 +19362 851 can not disguise the slack complacency of -LRB- Godard 's -RRB- vision , any more than the gorgeous piano and strings on the soundtrack can drown out the tinny self-righteousness of his voice . 1 +19363 851 can not disguise the slack complacency of -LRB- Godard 's -RRB- vision , any more than the gorgeous piano and strings on the soundtrack can drown out the tinny self-righteousness of his voice 1 +19364 851 disguise the slack complacency of -LRB- Godard 's -RRB- vision , any more than the gorgeous piano and strings on the soundtrack can drown out the tinny self-righteousness of his voice 1 +19365 851 disguise the slack complacency of -LRB- Godard 's -RRB- vision , 2 +19366 851 disguise the slack complacency of -LRB- Godard 's -RRB- vision 1 +19367 851 disguise 2 +19368 851 the slack complacency of -LRB- Godard 's -RRB- vision 1 +19369 851 the slack complacency 1 +19370 851 slack complacency 0 +19371 851 complacency 2 +19372 851 of -LRB- Godard 's -RRB- vision 2 +19373 851 -LRB- Godard 's -RRB- vision 2 +19374 851 -LRB- Godard 's -RRB- 2 +19375 851 Godard 's -RRB- 2 +19376 851 Godard 's 2 +19377 851 Godard 2 +19378 851 any more than the gorgeous piano and strings on the soundtrack can drown out the tinny self-righteousness of his voice 1 +19379 851 any more 2 +19380 851 than the gorgeous piano and strings on the soundtrack can drown out the tinny self-righteousness of his voice 2 +19381 851 the gorgeous piano and strings on the soundtrack can drown out the tinny self-righteousness of his voice 2 +19382 851 the gorgeous piano and strings on the soundtrack 4 +19383 851 the gorgeous piano and 3 +19384 851 the gorgeous piano 3 +19385 851 gorgeous piano 3 +19386 851 piano 3 +19387 851 strings on the soundtrack 2 +19388 851 strings 2 +19389 851 on the soundtrack 2 +19390 851 the soundtrack 2 +19391 851 soundtrack 2 +19392 851 can drown out the tinny self-righteousness of his voice 0 +19393 851 drown out the tinny self-righteousness of his voice 1 +19394 851 drown out 1 +19395 851 drown 2 +19396 851 the tinny self-righteousness of his voice 1 +19397 851 the tinny self-righteousness 1 +19398 851 tinny self-righteousness 1 +19399 851 tinny 2 +19400 851 self-righteousness 1 +19401 851 of his voice 2 +19402 851 his voice 2 +19403 852 Were Dylan Thomas alive to witness first-time director Ethan Hawke 's strained Chelsea Walls , he might have been tempted to change his landmark poem to , ` Do Not Go Gentle Into That Good Theatre . ' 1 +19404 852 Were Dylan Thomas alive to witness first-time director Ethan Hawke 's strained Chelsea Walls 2 +19405 852 Were Dylan Thomas alive to witness first-time director 2 +19406 852 Dylan Thomas alive to witness first-time director 3 +19407 852 Dylan Thomas 2 +19408 852 Dylan 2 +19409 852 alive to witness first-time director 2 +19410 852 alive 3 +19411 852 to witness first-time director 2 +19412 852 witness first-time director 2 +19413 852 first-time director 2 +19414 852 Ethan Hawke 's strained Chelsea Walls 1 +19415 852 Ethan Hawke 's 2 +19416 852 Ethan 2 +19417 852 Hawke 's 2 +19418 852 Hawke 2 +19419 852 strained Chelsea Walls 2 +19420 852 strained 2 +19421 852 Chelsea Walls 2 +19422 852 Chelsea 2 +19423 852 Walls 2 +19424 852 , he might have been tempted to change his landmark poem to , ` Do Not Go Gentle Into That Good Theatre . ' 1 +19425 852 , he might have been tempted to change his landmark poem to , 2 +19426 852 he might have been tempted to change his landmark poem to , 2 +19427 852 he might have been tempted to change his landmark poem to 2 +19428 852 might have been tempted to change his landmark poem to 2 +19429 852 have been tempted to change his landmark poem to 2 +19430 852 been tempted to change his landmark poem to 2 +19431 852 tempted to change his landmark poem to 2 +19432 852 tempted 2 +19433 852 to change his landmark poem to 2 +19434 852 change his landmark poem to 2 +19435 852 change his landmark poem 2 +19436 852 his landmark poem 2 +19437 852 landmark poem 2 +19438 852 landmark 3 +19439 852 ` Do Not Go Gentle Into That Good Theatre . ' 2 +19440 852 Do Not Go Gentle Into That Good Theatre . ' 1 +19441 852 Do Not Go Gentle Into That Good Theatre . 2 +19442 852 Do Not Go Gentle Into That Good Theatre 2 +19443 852 Go Gentle Into That Good Theatre 2 +19444 852 Gentle Into That Good Theatre 2 +19445 852 Into That Good Theatre 2 +19446 852 That Good Theatre 3 +19447 852 Good Theatre 3 +19448 852 Theatre 2 +19449 853 Affirms the gifts of all involved , starting with Spielberg and going right through the ranks of the players -- on-camera and off -- that he brings together . 3 +19450 853 Affirms 3 +19451 853 the gifts of all involved , starting with Spielberg and going right through the ranks of the players -- on-camera and off -- that he brings together . 3 +19452 853 the gifts of all 2 +19453 853 the gifts 2 +19454 853 gifts 2 +19455 853 of all 2 +19456 853 involved , starting with Spielberg and going right through the ranks of the players -- on-camera and off -- that he brings together . 3 +19457 853 involved , starting with Spielberg and going right through the ranks of the players -- on-camera and off -- that he brings together 2 +19458 853 involved , 3 +19459 853 starting with Spielberg and going right through the ranks of the players -- on-camera and off -- that he brings together 3 +19460 853 starting with Spielberg and 2 +19461 853 starting with Spielberg 2 +19462 853 starting 3 +19463 853 with Spielberg 2 +19464 853 going right through the ranks of the players -- on-camera and off -- that he brings together 3 +19465 853 right through the ranks of the players -- on-camera and off -- that he brings together 3 +19466 853 right through the ranks of the players -- on-camera and off -- 2 +19467 853 right through the ranks of the players 2 +19468 853 through the ranks of the players 2 +19469 853 the ranks of the players 2 +19470 853 the ranks 3 +19471 853 of the players 2 +19472 853 the players 2 +19473 853 -- on-camera and off -- 2 +19474 853 on-camera and off -- 2 +19475 853 on-camera and off 2 +19476 853 on-camera and 2 +19477 853 on-camera 2 +19478 853 that he brings together 2 +19479 853 he brings together 3 +19480 853 brings together 2 +19481 854 A somewhat disappointing and meandering saga . 2 +19482 854 A somewhat disappointing and meandering saga 1 +19483 854 somewhat disappointing and meandering saga 2 +19484 854 somewhat disappointing and meandering 1 +19485 854 disappointing and meandering 0 +19486 854 disappointing and 1 +19487 854 saga 2 +19488 855 It 's in the action scenes that things fall apart . 1 +19489 855 's in the action scenes that things fall apart . 2 +19490 855 's in the action scenes that things fall apart 0 +19491 855 's in the action scenes 2 +19492 855 in the action scenes 2 +19493 855 that things fall apart 1 +19494 855 things fall apart 1 +19495 855 fall apart 1 +19496 856 There 's no palpable chemistry between Lopez and male lead Ralph Fiennes , plus the script by Working Girl scribe Kevin Wade is workmanlike in the extreme . 0 +19497 856 There 's no palpable chemistry between Lopez and male lead Ralph Fiennes 1 +19498 856 's no palpable chemistry between Lopez and male lead Ralph Fiennes 0 +19499 856 no palpable chemistry between Lopez and male lead Ralph Fiennes 1 +19500 856 no palpable chemistry 1 +19501 856 palpable chemistry 3 +19502 856 chemistry 2 +19503 856 between Lopez and male lead Ralph Fiennes 2 +19504 856 Lopez and male lead Ralph Fiennes 2 +19505 856 and male lead Ralph Fiennes 2 +19506 856 male lead Ralph Fiennes 2 +19507 856 male 2 +19508 856 lead Ralph Fiennes 2 +19509 856 Ralph Fiennes 2 +19510 856 Ralph 2 +19511 856 Fiennes 2 +19512 856 , plus the script by Working Girl scribe Kevin Wade is workmanlike in the extreme . 2 +19513 856 plus the script by Working Girl scribe Kevin Wade is workmanlike in the extreme . 1 +19514 856 plus the script by Working Girl scribe Kevin Wade 2 +19515 856 plus the script 2 +19516 856 by Working Girl scribe Kevin Wade 1 +19517 856 Working Girl scribe Kevin Wade 2 +19518 856 Girl scribe Kevin Wade 2 +19519 856 scribe Kevin Wade 2 +19520 856 scribe 2 +19521 856 Kevin Wade 2 +19522 856 Wade 2 +19523 856 is workmanlike in the extreme . 1 +19524 856 is workmanlike in the extreme 1 +19525 856 workmanlike in the extreme 3 +19526 856 workmanlike 3 +19527 856 in the extreme 2 +19528 856 the extreme 2 +19529 856 extreme 2 +19530 857 A cleverly crafted but ultimately hollow mockumentary . 1 +19531 857 A cleverly 4 +19532 857 cleverly 3 +19533 857 crafted but ultimately hollow mockumentary . 1 +19534 857 crafted but ultimately hollow mockumentary 1 +19535 857 crafted but 3 +19536 857 ultimately hollow mockumentary 1 +19537 857 hollow mockumentary 1 +19538 857 mockumentary 2 +19539 858 The uneven movie does have its charms and its funny moments but not quite enough of them . 1 +19540 858 The uneven movie 2 +19541 858 uneven movie 1 +19542 858 does have its charms and its funny moments but not quite enough of them . 2 +19543 858 does have its charms and its funny moments but not quite enough of them 2 +19544 858 have its charms and its funny moments but not quite enough of them 2 +19545 858 its charms and its funny moments but not quite enough of them 2 +19546 858 its charms and its funny moments but not 2 +19547 858 its charms and its funny moments 3 +19548 858 its charms and 3 +19549 858 its charms 3 +19550 858 its funny moments 3 +19551 858 funny moments 3 +19552 858 quite enough of them 3 +19553 858 quite enough 2 +19554 858 of them 2 +19555 859 An unintentionally surreal kid 's picture ... in which actors in bad bear suits enact a sort of inter-species parody of a VH1 Behind the Music episode . 1 +19556 859 An unintentionally surreal kid 's picture ... in which actors in bad bear suits enact a sort of inter-species parody of a VH1 Behind the Music episode 1 +19557 859 An unintentionally surreal kid 's picture ... 2 +19558 859 An unintentionally surreal kid 's picture 2 +19559 859 An unintentionally 2 +19560 859 unintentionally 3 +19561 859 surreal kid 's picture 2 +19562 859 surreal kid 's 2 +19563 859 kid 's 2 +19564 859 in which actors in bad bear suits enact a sort of inter-species parody of a VH1 Behind the Music episode 2 +19565 859 actors in bad bear suits enact a sort of inter-species parody of a VH1 Behind the Music episode 1 +19566 859 actors in bad bear suits 1 +19567 859 in bad bear suits 2 +19568 859 bad bear suits 1 +19569 859 bear suits 2 +19570 859 suits 2 +19571 859 enact a sort of inter-species parody of a VH1 Behind the Music episode 1 +19572 859 enact 2 +19573 859 a sort of inter-species parody of a VH1 Behind the Music episode 1 +19574 859 a sort 2 +19575 859 of inter-species parody of a VH1 Behind the Music episode 2 +19576 859 inter-species parody of a VH1 Behind the Music episode 2 +19577 859 inter-species parody 2 +19578 859 inter-species 3 +19579 859 parody 2 +19580 859 of a VH1 Behind the Music episode 2 +19581 859 a VH1 Behind the Music episode 2 +19582 859 Behind the Music episode 2 +19583 859 the Music episode 2 +19584 859 Music episode 2 +19585 860 It will break your heart many times over . 2 +19586 860 will break your heart many times over . 3 +19587 860 will break your heart many times over 3 +19588 860 break your heart many times over 2 +19589 860 break your heart many times 2 +19590 860 break your heart 2 +19591 860 many times 2 +19592 861 This is as lax and limp a comedy as I 've seen in a while , a meander through worn-out material . 1 +19593 861 is as lax and limp a comedy as I 've seen in a while , a meander through worn-out material . 0 +19594 861 is as lax and limp a comedy as I 've seen in a while , a meander through worn-out material 2 +19595 861 as lax and limp a comedy as I 've seen in a while , a meander through worn-out material 0 +19596 861 lax and limp a comedy as I 've seen in a while , a meander through worn-out material 0 +19597 861 lax and limp 1 +19598 861 lax and 1 +19599 861 lax 1 +19600 861 a comedy as I 've seen in a while , a meander through worn-out material 1 +19601 861 as I 've seen in a while , a meander through worn-out material 1 +19602 861 I 've seen in a while , a meander through worn-out material 1 +19603 861 've seen in a while , a meander through worn-out material 1 +19604 861 seen in a while , a meander through worn-out material 1 +19605 861 seen in a while , a meander 2 +19606 861 in a while , a meander 2 +19607 861 a while , a meander 2 +19608 861 a while , 2 +19609 861 a meander 2 +19610 861 meander 2 +19611 861 through worn-out material 1 +19612 861 worn-out material 1 +19613 861 worn-out 1 +19614 862 It 's both sitcomishly predictable and cloying in its attempts to be poignant . 1 +19615 862 's both sitcomishly predictable and cloying in its attempts to be poignant . 1 +19616 862 's both sitcomishly predictable and cloying in its attempts to be poignant 2 +19617 862 's both sitcomishly predictable and cloying in its attempts 1 +19618 862 both sitcomishly predictable and cloying in its attempts 1 +19619 862 both sitcomishly predictable and cloying 0 +19620 862 sitcomishly predictable and cloying 1 +19621 862 sitcomishly 1 +19622 862 predictable and cloying 1 +19623 862 predictable and 1 +19624 862 in its attempts 3 +19625 862 its attempts 2 +19626 862 to be poignant 2 +19627 862 be poignant 2 +19628 863 Though this rude and crude film does deliver a few gut-busting laughs , its digs at modern society are all things we 've seen before . 1 +19629 863 Though this rude and crude film does deliver a few gut-busting laughs 1 +19630 863 this rude and crude film does deliver a few gut-busting laughs 3 +19631 863 this rude and crude film 1 +19632 863 rude and crude film 2 +19633 863 rude 1 +19634 863 and crude film 1 +19635 863 crude film 0 +19636 863 does deliver a few gut-busting laughs 3 +19637 863 deliver a few gut-busting laughs 3 +19638 863 deliver 3 +19639 863 a few gut-busting laughs 3 +19640 863 few gut-busting laughs 3 +19641 863 gut-busting laughs 2 +19642 863 gut-busting 3 +19643 863 , its digs at modern society are all things we 've seen before . 2 +19644 863 its digs at modern society are all things we 've seen before . 1 +19645 863 its digs at modern society 2 +19646 863 its digs 2 +19647 863 digs 2 +19648 863 at modern society 2 +19649 863 modern society 2 +19650 863 are all things we 've seen before . 2 +19651 863 are all things we 've seen before 1 +19652 863 all things we 've seen before 1 +19653 863 all things 2 +19654 863 we 've seen before 2 +19655 863 've seen before 1 +19656 863 seen before 2 +19657 864 -LRB- A -RRB- mess . 1 +19658 864 -LRB- A -RRB- mess 0 +19659 865 A work that lacks both a purpose and a strong pulse . 0 +19660 865 work that lacks both a purpose and a strong pulse . 1 +19661 865 work that lacks both a purpose and a strong pulse 1 +19662 865 that lacks both a purpose and a strong pulse 1 +19663 865 lacks both a purpose and a strong pulse 1 +19664 865 both a purpose and a strong pulse 2 +19665 865 a purpose and a strong pulse 3 +19666 865 a purpose and 2 +19667 865 a purpose 2 +19668 865 a strong pulse 3 +19669 865 strong pulse 2 +19670 865 pulse 1 +19671 866 The sword fighting is well done and Auteuil is a goofy pleasure . 3 +19672 866 The sword fighting is well done and Auteuil is a goofy pleasure 3 +19673 866 The sword fighting is well done and 4 +19674 866 The sword fighting is well done 3 +19675 866 The sword fighting 2 +19676 866 sword fighting 2 +19677 866 sword 2 +19678 866 is well done 3 +19679 866 well done 4 +19680 866 Auteuil is a goofy pleasure 3 +19681 866 Auteuil 2 +19682 866 is a goofy pleasure 3 +19683 866 a goofy pleasure 3 +19684 866 goofy pleasure 3 +19685 867 a stereotype 1 +19686 867 stereotype 2 +19687 867 omitted 2 +19688 867 unsaid 2 +19689 868 The IMAX screen enhances the personal touch of manual animation . 4 +19690 868 The IMAX screen 2 +19691 868 IMAX screen 2 +19692 868 enhances the personal touch of manual animation . 3 +19693 868 enhances the personal touch of manual animation 3 +19694 868 enhances 2 +19695 868 the personal touch of manual animation 3 +19696 868 the personal touch 2 +19697 868 personal touch 2 +19698 868 of manual animation 2 +19699 868 manual animation 2 +19700 868 manual 1 +19701 869 Kaufman and Jonze take huge risks to ponder the whole notion of passion -- our desire as human beings for passion in our lives and the emptiness one feels when it is missing . 2 +19702 869 Kaufman and Jonze take huge risks to ponder the whole notion of passion -- our desire as human beings for passion in our lives and the emptiness one feels when it is missing 3 +19703 869 Kaufman and Jonze take huge risks to ponder the whole notion of passion -- 3 +19704 869 Kaufman and Jonze take huge risks to ponder the whole notion of passion 3 +19705 869 Kaufman and Jonze 2 +19706 869 Kaufman and 2 +19707 869 Kaufman 2 +19708 869 Jonze 2 +19709 869 take huge risks to ponder the whole notion of passion 3 +19710 869 huge risks to ponder the whole notion of passion 2 +19711 869 huge risks 2 +19712 869 risks 2 +19713 869 to ponder the whole notion of passion 3 +19714 869 ponder the whole notion of passion 3 +19715 869 the whole notion of passion 2 +19716 869 the whole notion 2 +19717 869 whole notion 2 +19718 869 notion 2 +19719 869 of passion 3 +19720 869 our desire as human beings for passion in our lives and the emptiness one feels when it is missing 2 +19721 869 our desire as human beings for passion in our lives and the emptiness one 2 +19722 869 our desire 2 +19723 869 desire 2 +19724 869 as human beings for passion in our lives and the emptiness one 2 +19725 869 human beings for passion in our lives and the emptiness one 2 +19726 869 for passion in our lives and the emptiness one 2 +19727 869 passion in our lives and the emptiness one 2 +19728 869 in our lives and the emptiness one 2 +19729 869 our lives and the emptiness one 2 +19730 869 our lives and 2 +19731 869 our lives 2 +19732 869 the emptiness one 2 +19733 869 emptiness one 2 +19734 869 emptiness 1 +19735 869 feels when it is missing 2 +19736 869 when it is missing 2 +19737 869 it is missing 1 +19738 869 is missing 2 +19739 869 missing 2 +19740 870 God bless Crudup and his aversion to taking the easy Hollywood road and cashing in on his movie-star gorgeousness . 3 +19741 870 God bless Crudup and his aversion to taking the easy Hollywood road and cashing in on his movie-star 3 +19742 870 God bless Crudup and 2 +19743 870 God bless Crudup 2 +19744 870 God 2 +19745 870 bless Crudup 3 +19746 870 bless 2 +19747 870 his aversion to taking the easy Hollywood road and cashing in on his movie-star 2 +19748 870 his aversion 1 +19749 870 aversion 2 +19750 870 to taking the easy Hollywood road and cashing in on his movie-star 2 +19751 870 taking the easy Hollywood road and cashing in on his movie-star 2 +19752 870 taking the easy Hollywood road and 2 +19753 870 taking the easy Hollywood road 3 +19754 870 the easy Hollywood road 2 +19755 870 easy Hollywood road 2 +19756 870 Hollywood road 3 +19757 870 cashing in on his movie-star 2 +19758 870 cashing in 2 +19759 870 cashing 2 +19760 870 on his movie-star 2 +19761 870 his movie-star 2 +19762 870 gorgeousness . 3 +19763 870 gorgeousness 4 +19764 871 Is it a comedy ? 1 +19765 871 Is it a comedy 2 +19766 871 Is it 2 +19767 872 Unlike most surf movies , Blue Crush thrillingly uses modern technology to take the viewer inside the wave . 3 +19768 872 Unlike most surf movies 2 +19769 872 most surf movies 2 +19770 872 surf movies 2 +19771 872 surf 2 +19772 872 , Blue Crush thrillingly uses modern technology to take the viewer inside the wave . 4 +19773 872 Blue Crush thrillingly uses modern technology to take the viewer inside the wave . 3 +19774 872 thrillingly uses modern technology to take the viewer inside the wave . 4 +19775 872 thrillingly 3 +19776 872 uses modern technology to take the viewer inside the wave . 3 +19777 872 uses modern technology to take the viewer inside the wave 4 +19778 872 modern technology to take the viewer inside the wave 2 +19779 872 technology to take the viewer inside the wave 2 +19780 872 technology 2 +19781 872 to take the viewer inside the wave 2 +19782 872 take the viewer inside the wave 3 +19783 872 the viewer inside the wave 2 +19784 872 inside the wave 3 +19785 872 the wave 2 +19786 872 wave 2 +19787 873 The best part about `` Gangs '' was Daniel Day-Lewis . 3 +19788 873 The best part about `` Gangs '' 2 +19789 873 The best part 2 +19790 873 best part 3 +19791 873 about `` Gangs '' 2 +19792 873 `` Gangs '' 2 +19793 873 Gangs '' 2 +19794 873 Gangs 2 +19795 873 was Daniel Day-Lewis . 3 +19796 873 was Daniel Day-Lewis 2 +19797 873 Daniel Day-Lewis 2 +19798 873 Daniel 2 +19799 873 Day-Lewis 2 +19800 874 Waiting for Godard can be fruitful : ` In Praise of Love ' is the director 's epitaph for himself . 3 +19801 874 Waiting for Godard 2 +19802 874 Waiting 2 +19803 874 for Godard 1 +19804 874 can be fruitful : ` In Praise of Love ' is the director 's epitaph for himself . 2 +19805 874 can be fruitful : ` In Praise of Love ' is the director 's epitaph for himself 3 +19806 874 be fruitful : ` In Praise of Love ' is the director 's epitaph for himself 2 +19807 874 be fruitful : 2 +19808 874 be fruitful 3 +19809 874 fruitful 3 +19810 874 ` In Praise of Love ' is the director 's epitaph for himself 2 +19811 874 In Praise of Love ' is the director 's epitaph for himself 3 +19812 874 In Praise of Love ' 2 +19813 874 In Praise of Love 3 +19814 874 In Praise 2 +19815 874 Praise 3 +19816 874 is the director 's epitaph for himself 2 +19817 874 the director 's epitaph for himself 1 +19818 874 the director 's epitaph 2 +19819 874 epitaph 2 +19820 874 for himself 2 +19821 875 An edgy thriller that delivers a surprising punch . 3 +19822 875 An edgy thriller that delivers a surprising 3 +19823 875 An edgy thriller 4 +19824 875 edgy thriller 3 +19825 875 edgy 2 +19826 875 that delivers a surprising 3 +19827 875 delivers a surprising 3 +19828 875 a surprising 2 +19829 875 punch . 2 +19830 876 The movie would seem less of a trifle if Ms. Sugarman followed through on her defiance of the saccharine . 1 +19831 876 would seem less of a trifle if Ms. Sugarman followed through on her defiance of the saccharine . 2 +19832 876 would seem less of a trifle if Ms. Sugarman followed through on her defiance of the saccharine 2 +19833 876 seem less of a trifle if Ms. Sugarman followed through on her defiance of the saccharine 1 +19834 876 less of a trifle if Ms. Sugarman followed through on her defiance of the saccharine 1 +19835 876 less of a trifle 3 +19836 876 less of 2 +19837 876 a trifle 1 +19838 876 if Ms. Sugarman followed through on her defiance of the saccharine 1 +19839 876 Ms. Sugarman followed through on her defiance of the saccharine 3 +19840 876 Ms. Sugarman 2 +19841 876 followed through on her defiance of the saccharine 3 +19842 876 followed through 3 +19843 876 on her defiance of the saccharine 2 +19844 876 her defiance of the saccharine 2 +19845 876 her defiance 3 +19846 876 defiance 2 +19847 876 of the saccharine 2 +19848 876 the saccharine 2 +19849 877 ` The War of the Roses , ' trailer-trash style . 0 +19850 877 ` The War of the Roses , ' 2 +19851 877 The War of the Roses , ' 3 +19852 877 The War of the Roses , 2 +19853 877 The War of the Roses 2 +19854 877 The War 2 +19855 877 of the Roses 2 +19856 877 the Roses 2 +19857 877 Roses 2 +19858 877 trailer-trash style . 0 +19859 877 trailer-trash style 0 +19860 877 trailer-trash 1 +19861 878 The result is a powerful , naturally dramatic piece of low-budget filmmaking . 4 +19862 878 is a powerful , naturally dramatic piece of low-budget filmmaking . 3 +19863 878 is a powerful , naturally dramatic piece of low-budget filmmaking 4 +19864 878 a powerful , naturally dramatic piece of low-budget filmmaking 4 +19865 878 a powerful , naturally dramatic piece 4 +19866 878 powerful , naturally dramatic piece 4 +19867 878 powerful , naturally dramatic 3 +19868 878 , naturally dramatic 3 +19869 878 naturally dramatic 3 +19870 878 of low-budget filmmaking 1 +19871 878 low-budget filmmaking 1 +19872 878 low-budget 1 +19873 879 A fifty car pileup of cliches . 0 +19874 879 A fifty car pileup of cliches 0 +19875 879 A fifty car pileup 1 +19876 879 fifty car pileup 2 +19877 879 fifty 2 +19878 879 car pileup 2 +19879 879 car 2 +19880 879 pileup 2 +19881 879 of cliches 1 +19882 880 Whole stretches of the film may be incomprehensible to moviegoers not already clad in basic black . 1 +19883 880 Whole stretches of the film 2 +19884 880 Whole stretches 2 +19885 880 stretches 2 +19886 880 may be incomprehensible to moviegoers not already clad in basic black . 1 +19887 880 may be incomprehensible to moviegoers not already clad in basic black 1 +19888 880 be incomprehensible to moviegoers not already clad in basic black 3 +19889 880 incomprehensible to moviegoers not already clad in basic black 2 +19890 880 to moviegoers not already clad in basic black 2 +19891 880 moviegoers not already clad in basic black 1 +19892 880 not already clad in basic black 2 +19893 880 already clad in basic black 2 +19894 880 clad in basic black 2 +19895 880 in basic black 2 +19896 880 basic black 2 +19897 881 ... pitiful , slapdash disaster . 0 +19898 881 pitiful , slapdash disaster . 0 +19899 881 pitiful 1 +19900 881 , slapdash disaster . 0 +19901 881 slapdash disaster . 1 +19902 881 slapdash disaster 0 +19903 881 slapdash 2 +19904 881 disaster 0 +19905 882 Charlotte Sometimes is a brilliant movie . 4 +19906 882 Sometimes is a brilliant movie . 3 +19907 882 is a brilliant movie . 4 +19908 882 is a brilliant movie 4 +19909 882 a brilliant movie 4 +19910 882 brilliant movie 4 +19911 883 You end up simply admiring this bit or that , this performance or that . 2 +19912 883 end up simply admiring this bit or that , this performance or that . 2 +19913 883 end up simply admiring this bit or that , this performance or that 3 +19914 883 simply admiring this bit or that , this performance or that 3 +19915 883 admiring this bit or that , this performance or that 2 +19916 883 admiring 3 +19917 883 this bit or that , this performance or that 2 +19918 883 this bit or 2 +19919 883 this bit 2 +19920 883 that , this performance or that 2 +19921 883 that , this performance or 2 +19922 883 that , this performance 2 +19923 883 that , 2 +19924 883 this performance 2 +19925 884 Godard has never made a more sheerly beautiful film than this unexpectedly moving meditation on love , history , memory , resistance and artistic transcendence . 4 +19926 884 has never made a more sheerly beautiful film than this unexpectedly moving meditation on love , history , memory , resistance and artistic transcendence . 4 +19927 884 has never made a more sheerly beautiful film than this unexpectedly moving meditation on love , history , memory , resistance and artistic transcendence 3 +19928 884 made a more sheerly beautiful film than this unexpectedly moving meditation on love , history , memory , resistance and artistic transcendence 2 +19929 884 made a more sheerly beautiful film 3 +19930 884 a more sheerly beautiful film 3 +19931 884 more sheerly beautiful film 4 +19932 884 sheerly beautiful film 4 +19933 884 sheerly beautiful 4 +19934 884 sheerly 2 +19935 884 than this unexpectedly moving meditation on love , history , memory , resistance and artistic transcendence 3 +19936 884 this unexpectedly moving meditation on love , history , memory , resistance and artistic transcendence 4 +19937 884 this unexpectedly moving meditation 4 +19938 884 unexpectedly moving meditation 3 +19939 884 unexpectedly moving 4 +19940 884 unexpectedly 2 +19941 884 on love , history , memory , resistance and artistic transcendence 2 +19942 884 love , history , memory , resistance and artistic transcendence 3 +19943 884 , history , memory , resistance and artistic transcendence 3 +19944 884 history , memory , resistance and artistic transcendence 2 +19945 884 , memory , resistance and artistic transcendence 3 +19946 884 memory , resistance and artistic transcendence 4 +19947 884 , resistance and artistic transcendence 3 +19948 884 resistance and artistic transcendence 3 +19949 884 resistance 2 +19950 884 and artistic transcendence 3 +19951 884 artistic transcendence 3 +19952 884 artistic 3 +19953 884 transcendence 3 +19954 885 An erotic thriller that 's neither too erotic nor very thrilling , either . 0 +19955 885 An erotic thriller that 3 +19956 885 An erotic thriller 3 +19957 885 erotic thriller 2 +19958 885 erotic 3 +19959 885 's neither too erotic nor very thrilling , either . 0 +19960 885 's neither too erotic nor very thrilling , either 2 +19961 885 's neither too erotic nor very thrilling , 1 +19962 885 's neither too erotic nor very thrilling 2 +19963 885 too erotic nor very thrilling 1 +19964 885 too erotic nor 1 +19965 885 too erotic 1 +19966 885 very thrilling 4 +19967 886 Carrying off a spot-on Scottish burr , Duvall -LRB- also a producer -RRB- peels layers from this character that may well not have existed on paper . 3 +19968 886 Carrying off a spot-on Scottish burr 3 +19969 886 Carrying off 2 +19970 886 a spot-on Scottish burr 2 +19971 886 spot-on Scottish burr 3 +19972 886 spot-on 4 +19973 886 Scottish burr 2 +19974 886 Scottish 2 +19975 886 , Duvall -LRB- also a producer -RRB- peels layers from this character that may well not have existed on paper . 3 +19976 886 Duvall -LRB- also a producer -RRB- peels layers from this character that may well not have existed on paper . 3 +19977 886 Duvall -LRB- also a producer -RRB- 2 +19978 886 Duvall 2 +19979 886 -LRB- also a producer -RRB- 2 +19980 886 also a producer -RRB- 2 +19981 886 a producer -RRB- 2 +19982 886 a producer 2 +19983 886 peels layers from this character that may well not have existed on paper . 3 +19984 886 peels layers from this character that may well not have existed on paper 3 +19985 886 peels layers 3 +19986 886 peels 2 +19987 886 layers 3 +19988 886 from this character that may well not have existed on paper 2 +19989 886 this character that may well not have existed on paper 2 +19990 886 this character 2 +19991 886 that may well not have existed on paper 2 +19992 886 may well not have existed on paper 2 +19993 886 may well not 2 +19994 886 well not 2 +19995 886 have existed on paper 2 +19996 886 existed on paper 2 +19997 886 on paper 2 +19998 887 A solid piece of journalistic work that draws a picture of a man for whom political expedience became a deadly foreign policy . 2 +19999 887 A solid piece of journalistic work that draws a picture of a man for whom political expedience became a deadly foreign policy 2 +20000 887 A solid piece 3 +20001 887 solid piece 4 +20002 887 of journalistic work that draws a picture of a man for whom political expedience became a deadly foreign policy 2 +20003 887 journalistic work that draws a picture of a man for whom political expedience became a deadly foreign policy 3 +20004 887 journalistic work 2 +20005 887 journalistic 2 +20006 887 that draws a picture of a man for whom political expedience became a deadly foreign policy 3 +20007 887 draws a picture of a man for whom political expedience became a deadly foreign policy 1 +20008 887 draws 2 +20009 887 a picture of a man for whom political expedience became a deadly foreign policy 2 +20010 887 of a man for whom political expedience became a deadly foreign policy 1 +20011 887 a man for whom political expedience became a deadly foreign policy 2 +20012 887 for whom political expedience became a deadly foreign policy 2 +20013 887 whom political expedience became a deadly foreign policy 1 +20014 887 political expedience became a deadly foreign policy 2 +20015 887 political expedience 2 +20016 887 became a deadly foreign policy 1 +20017 887 became 2 +20018 887 a deadly foreign policy 2 +20019 887 deadly foreign policy 2 +20020 887 deadly 2 +20021 887 foreign policy 2 +20022 887 policy 2 +20023 888 Hopkins , squarely fills the screen . 4 +20024 888 , squarely fills the screen . 2 +20025 888 squarely fills the screen . 3 +20026 888 squarely 2 +20027 888 fills the screen . 2 +20028 888 fills the screen 2 +20029 888 fills 2 +20030 889 Irwin and his director never come up with an adequate reason why we should pay money for what we can get on television for free . 0 +20031 889 Irwin and his director 2 +20032 889 Irwin and 2 +20033 889 Irwin 2 +20034 889 his director 2 +20035 889 never come up with an adequate reason why we should pay money for what we can get on television for free . 2 +20036 889 never come up with an adequate reason why we should pay money for what we can get on television for free 1 +20037 889 come up with an adequate reason why we should pay money for what we can get on television for free 1 +20038 889 with an adequate reason why we should pay money for what we can get on television for free 1 +20039 889 an adequate reason why we should pay money for what we can get on television for free 2 +20040 889 an adequate reason 2 +20041 889 adequate reason 2 +20042 889 adequate 2 +20043 889 why we should pay money for what we can get on television for free 2 +20044 889 we should pay money for what we can get on television for free 2 +20045 889 should pay money for what we can get on television for free 1 +20046 889 pay money for what we can get on television for free 1 +20047 889 pay money 2 +20048 889 for what we can get on television for free 1 +20049 889 what we can get on television for free 2 +20050 889 we can get on television for free 2 +20051 889 can get on television for free 1 +20052 889 get on television for free 2 +20053 889 get on television 3 +20054 889 on television 2 +20055 889 for free 2 +20056 890 Everything its title implies , a standard-issue crime drama spat out from the Tinseltown assembly line . 2 +20057 890 Everything its title implies 2 +20058 890 Everything its title 2 +20059 890 implies 2 +20060 890 , a standard-issue crime drama spat out from the Tinseltown assembly line . 0 +20061 890 a standard-issue crime drama spat out from the Tinseltown assembly line . 3 +20062 890 a standard-issue crime drama 2 +20063 890 standard-issue crime drama 2 +20064 890 standard-issue 2 +20065 890 crime drama 1 +20066 890 spat out from the Tinseltown assembly line . 1 +20067 890 spat out from the Tinseltown assembly line 1 +20068 890 spat out 3 +20069 890 spat 2 +20070 890 from the Tinseltown assembly line 1 +20071 890 the Tinseltown assembly line 2 +20072 890 Tinseltown assembly line 1 +20073 890 Tinseltown 2 +20074 890 assembly line 2 +20075 890 assembly 2 +20076 891 Unfolds as one of the most politically audacious films of recent decades from any country , but especially from France . 3 +20077 891 Unfolds as one of the most politically audacious films of recent decades from any country , but especially from France 1 +20078 891 Unfolds as one of the most politically audacious films of recent decades 4 +20079 891 Unfolds as one 3 +20080 891 as one 2 +20081 891 of the most politically audacious films of recent decades 3 +20082 891 the most politically audacious films of recent decades 3 +20083 891 the most politically audacious films 2 +20084 891 most politically audacious films 3 +20085 891 most politically audacious 3 +20086 891 politically audacious 3 +20087 891 audacious 2 +20088 891 of recent decades 2 +20089 891 recent decades 2 +20090 891 from any country , but especially from France 2 +20091 891 from any country 2 +20092 891 any country 1 +20093 891 , but especially from France 2 +20094 891 but especially from France 2 +20095 891 especially from France 2 +20096 891 from France 2 +20097 892 `` Abandon '' will leave you wanting to abandon the theater . 0 +20098 892 Abandon '' will leave you wanting to abandon the theater . 0 +20099 892 Abandon 1 +20100 892 '' will leave you wanting to abandon the theater . 0 +20101 892 will leave you wanting to abandon the theater . 0 +20102 892 will leave you wanting to abandon the theater 1 +20103 892 leave you wanting to abandon the theater 0 +20104 892 you wanting to abandon the theater 1 +20105 892 wanting to abandon the theater 1 +20106 892 wanting 2 +20107 892 to abandon the theater 1 +20108 892 abandon the theater 1 +20109 893 Probably the best case for Christianity since Chesterton and Lewis . 3 +20110 893 Probably the best case for Christianity since Chesterton and Lewis 3 +20111 893 Probably the best case for Christianity 3 +20112 893 the best case for Christianity 3 +20113 893 the best case 3 +20114 893 best case 3 +20115 893 for Christianity 2 +20116 893 Christianity 2 +20117 893 since Chesterton and Lewis 2 +20118 893 Chesterton and Lewis 2 +20119 893 Chesterton and 2 +20120 893 Chesterton 2 +20121 893 Lewis 3 +20122 894 Before long , you 're desperate for the evening to end . 0 +20123 894 Before long 2 +20124 894 , you 're desperate for the evening to end . 1 +20125 894 you 're desperate for the evening to end . 0 +20126 894 're desperate for the evening to end . 1 +20127 894 're desperate for the evening to end 1 +20128 894 desperate for the evening to end 1 +20129 894 for the evening to end 2 +20130 894 the evening to end 1 +20131 894 evening to end 2 +20132 894 to end 2 +20133 895 It 's all a rather shapeless good time ... 2 +20134 895 's all a rather shapeless good time ... 2 +20135 895 's all a rather shapeless good time 3 +20136 895 's all 2 +20137 895 a rather shapeless good time 3 +20138 895 rather shapeless good time 3 +20139 895 rather shapeless 1 +20140 896 Feels more like a rejected X-Files episode than a credible account of a puzzling real-life happening . 0 +20141 896 Feels more 2 +20142 896 like a rejected X-Files episode than a credible account of a puzzling real-life happening . 1 +20143 896 like a rejected X-Files episode than a credible account of a puzzling real-life happening 1 +20144 896 a rejected X-Files episode than a credible account of a puzzling real-life happening 0 +20145 896 a rejected X-Files episode 1 +20146 896 rejected X-Files episode 1 +20147 896 rejected 1 +20148 896 X-Files episode 2 +20149 896 X-Files 2 +20150 896 than a credible account of a puzzling real-life happening 2 +20151 896 a credible account of a puzzling real-life happening 3 +20152 896 a credible account 2 +20153 896 credible account 4 +20154 896 credible 3 +20155 896 of a puzzling real-life happening 2 +20156 896 a puzzling real-life happening 2 +20157 896 puzzling real-life happening 2 +20158 896 real-life happening 3 +20159 896 real-life 2 +20160 896 happening 2 +20161 897 No amount of good intentions is able to overcome the triviality of the story . 0 +20162 897 No amount of good intentions 2 +20163 897 No amount 2 +20164 897 of good intentions 2 +20165 897 is able to overcome the triviality of the story . 2 +20166 897 is able to overcome the triviality of the story 3 +20167 897 able to overcome the triviality of the story 2 +20168 897 to overcome the triviality of the story 2 +20169 897 overcome the triviality of the story 3 +20170 897 the triviality of the story 2 +20171 897 the triviality 1 +20172 897 triviality 2 +20173 897 of the story 2 +20174 898 -LRB- Ramsay -RRB- visually transforms the dreary expanse of dead-end distaste the characters inhabit into a poem of art , music and metaphor . 4 +20175 898 -LRB- Ramsay -RRB- 2 +20176 898 Ramsay -RRB- 2 +20177 898 visually transforms the dreary expanse of dead-end distaste the characters inhabit into a poem of art , music and metaphor . 4 +20178 898 transforms the dreary expanse of dead-end distaste the characters inhabit into a poem of art , music and metaphor . 3 +20179 898 transforms the dreary expanse of dead-end distaste the characters inhabit into a poem of art , music and metaphor 3 +20180 898 the dreary expanse of dead-end distaste the characters inhabit into a poem of art , music and metaphor 1 +20181 898 the dreary expanse of dead-end distaste 1 +20182 898 the dreary expanse 2 +20183 898 dreary expanse 1 +20184 898 expanse 2 +20185 898 of dead-end distaste 1 +20186 898 dead-end distaste 0 +20187 898 dead-end 1 +20188 898 distaste 1 +20189 898 the characters inhabit into a poem of art , music and metaphor 3 +20190 898 inhabit into a poem of art , music and metaphor 3 +20191 898 inhabit 2 +20192 898 into a poem of art , music and metaphor 3 +20193 898 a poem of art , music and metaphor 3 +20194 898 a poem 2 +20195 898 of art , music and metaphor 2 +20196 898 art , music and metaphor 2 +20197 898 , music and metaphor 2 +20198 898 music and metaphor 2 +20199 898 music and 2 +20200 898 metaphor 3 +20201 899 The film has -LRB- its -RRB- moments , but they are few and far between . 1 +20202 899 The film has -LRB- its -RRB- moments , but they are few and far between 1 +20203 899 The film has -LRB- its -RRB- moments , but 3 +20204 899 The film has -LRB- its -RRB- moments , 2 +20205 899 The film has -LRB- its -RRB- moments 3 +20206 899 has -LRB- its -RRB- moments 3 +20207 899 -LRB- its -RRB- moments 2 +20208 899 -LRB- its -RRB- 2 +20209 899 its -RRB- 2 +20210 899 they are few and far between 2 +20211 900 ... a sweetly affecting story about four sisters who are coping , in one way or another , with life 's endgame . 3 +20212 900 a sweetly affecting story about four sisters who are coping , in one way or another , with life 's endgame . 3 +20213 900 a sweetly affecting story about four sisters who are coping , in one way or another , with life 3 +20214 900 a sweetly 3 +20215 900 sweetly 2 +20216 900 affecting story about four sisters who are coping , in one way or another , with life 3 +20217 900 affecting story 2 +20218 900 about four sisters who are coping , in one way or another , with life 2 +20219 900 four sisters who are coping , in one way or another , with life 2 +20220 900 four sisters 2 +20221 900 sisters 2 +20222 900 who are coping , in one way or another , with life 2 +20223 900 are coping , in one way or another , with life 2 +20224 900 coping , in one way or another , with life 2 +20225 900 coping , in one way or another , 2 +20226 900 coping , in one way or another 2 +20227 900 coping , 2 +20228 900 coping 2 +20229 900 in one way or another 2 +20230 900 one way or another 2 +20231 900 one way or 2 +20232 900 one way 2 +20233 900 with life 2 +20234 900 's endgame . 2 +20235 900 's endgame 3 +20236 900 endgame 2 +20237 901 A disturbing examination of what appears to be the definition of a ` bad ' police shooting . 2 +20238 901 A disturbing examination of what 2 +20239 901 A disturbing examination 2 +20240 901 disturbing examination 3 +20241 901 disturbing 1 +20242 901 of what 2 +20243 901 appears to be the definition of a ` bad ' police shooting . 1 +20244 901 appears to be the definition of a ` bad ' police shooting 1 +20245 901 to be the definition of a ` bad ' police shooting 1 +20246 901 be the definition of a ` bad ' police shooting 1 +20247 901 the definition of a ` bad ' police shooting 1 +20248 901 the definition 2 +20249 901 definition 2 +20250 901 of a ` bad ' police shooting 2 +20251 901 a ` bad ' police shooting 1 +20252 901 a ` bad ' police 2 +20253 901 ` bad ' police 2 +20254 901 bad ' police 1 +20255 901 ' police 2 +20256 901 police 2 +20257 901 shooting 1 +20258 902 Distances you by throwing out so many red herrings , so many false scares , that the genuine ones barely register . 0 +20259 902 Distances you by throwing out so many red herrings , so many false scares , that the genuine ones barely register 1 +20260 902 Distances you by throwing out so many red herrings , so many false scares , 1 +20261 902 Distances you 1 +20262 902 Distances 2 +20263 902 by throwing out so many red herrings , so many false scares , 2 +20264 902 throwing out so many red herrings , so many false scares , 1 +20265 902 throwing out 2 +20266 902 throwing 2 +20267 902 so many red herrings , so many false scares , 1 +20268 902 so many red herrings , so many false scares 1 +20269 902 so many red herrings , 1 +20270 902 so many red herrings 1 +20271 902 so many 2 +20272 902 red herrings 2 +20273 902 herrings 2 +20274 902 so many false scares 1 +20275 902 many false scares 1 +20276 902 false scares 2 +20277 902 that the genuine ones barely register 2 +20278 902 the genuine ones barely register 1 +20279 902 the genuine ones 2 +20280 902 genuine ones 3 +20281 902 barely register 1 +20282 902 register 2 +20283 903 Almost . 2 +20284 904 Every sequel you skip will be two hours gained . 0 +20285 904 Every sequel you skip 1 +20286 904 Every sequel 2 +20287 904 you skip 2 +20288 904 skip 1 +20289 904 will be two hours gained . 2 +20290 904 will be two hours gained 1 +20291 904 be two hours gained 3 +20292 904 two hours gained 2 +20293 904 gained 2 +20294 905 Been there done that . 1 +20295 905 Been there done that 1 +20296 905 there done that 1 +20297 905 done that 2 +20298 906 They exist for hushed lines like `` They 're back ! '' 2 +20299 906 exist for hushed lines like `` They 're back ! '' 2 +20300 906 exist for hushed lines like `` They 're back ! 2 +20301 906 exist for hushed lines like `` They 're back 2 +20302 906 exist for hushed lines 1 +20303 906 for hushed lines 2 +20304 906 hushed lines 2 +20305 906 hushed 2 +20306 906 like `` They 're back 2 +20307 906 like `` 2 +20308 906 They 're back 2 +20309 906 're back 2 +20310 907 Somehow Ms. Griffiths and Mr. Pryce bring off this wild Welsh whimsy . 3 +20311 907 Ms. Griffiths and Mr. Pryce bring off this wild Welsh whimsy . 4 +20312 907 Ms. Griffiths and Mr. Pryce 2 +20313 907 Griffiths and Mr. Pryce 2 +20314 907 Griffiths 2 +20315 907 and Mr. Pryce 2 +20316 907 Mr. Pryce 2 +20317 907 Pryce 2 +20318 907 bring off this wild Welsh whimsy . 3 +20319 907 bring off this wild Welsh whimsy 3 +20320 907 bring off 3 +20321 907 this wild Welsh whimsy 3 +20322 907 wild Welsh whimsy 2 +20323 907 Welsh whimsy 3 +20324 907 Welsh 2 +20325 907 whimsy 3 +20326 908 The densest distillation of Roberts ' movies ever made . 1 +20327 908 The densest distillation of Roberts ' movies 1 +20328 908 The densest distillation 2 +20329 908 densest distillation 2 +20330 908 densest 2 +20331 908 distillation 2 +20332 908 of Roberts ' movies 2 +20333 908 Roberts ' movies 2 +20334 908 Roberts ' 2 +20335 908 Roberts 2 +20336 908 ever made . 2 +20337 908 made . 2 +20338 909 Lots of effort and intelligence are on display but in execution it is all awkward , static , and lifeless rumblings . 0 +20339 909 Lots of effort and intelligence are on display but in execution it is all awkward , static , and lifeless rumblings 1 +20340 909 Lots of effort and intelligence are on display but 3 +20341 909 Lots of effort and intelligence are on display 3 +20342 909 Lots of effort and intelligence 3 +20343 909 of effort and intelligence 2 +20344 909 effort and intelligence 2 +20345 909 effort and 3 +20346 909 are on display 2 +20347 909 on display 2 +20348 909 display 2 +20349 909 in execution it is all awkward , static , and lifeless rumblings 0 +20350 909 in execution 1 +20351 909 it is all awkward , static , and lifeless rumblings 2 +20352 909 is all awkward , static , and lifeless rumblings 1 +20353 909 all awkward , static , and lifeless rumblings 0 +20354 909 all awkward , static , and 2 +20355 909 all awkward , static , 1 +20356 909 all awkward , static 1 +20357 909 all awkward , 1 +20358 909 all awkward 1 +20359 909 awkward 1 +20360 909 lifeless rumblings 1 +20361 909 lifeless 2 +20362 909 rumblings 1 +20363 910 This is one of the outstanding thrillers of recent years . 4 +20364 910 is one of the outstanding thrillers of recent years . 4 +20365 910 is one of the outstanding thrillers of recent years 4 +20366 910 one of the outstanding thrillers of recent years 4 +20367 910 of the outstanding thrillers of recent years 4 +20368 910 the outstanding thrillers of recent years 4 +20369 910 the outstanding thrillers 3 +20370 910 outstanding thrillers 4 +20371 910 outstanding 4 +20372 910 of recent years 2 +20373 910 recent years 2 +20374 911 Consider the film a celluloid litmus test for the intellectual and emotional pedigree of your date and a giant step backward for a director I admire . 1 +20375 911 Consider the film a celluloid litmus test for the intellectual and emotional pedigree of your date and a giant step backward for a director I admire 0 +20376 911 the film a celluloid litmus test for the intellectual and emotional pedigree of your date and a giant step backward for a director I admire 0 +20377 911 a celluloid litmus test for the intellectual and emotional pedigree of your date and a giant step backward for a director I admire 2 +20378 911 a celluloid litmus test 2 +20379 911 celluloid litmus test 2 +20380 911 celluloid 2 +20381 911 litmus test 2 +20382 911 litmus 2 +20383 911 test 2 +20384 911 for the intellectual and emotional pedigree of your date and a giant step backward for a director I admire 2 +20385 911 the intellectual and emotional pedigree of your date and a giant step backward for a director I admire 1 +20386 911 the intellectual and emotional pedigree of your date and 2 +20387 911 the intellectual and emotional pedigree of your date 2 +20388 911 the intellectual and emotional pedigree 2 +20389 911 intellectual and emotional pedigree 3 +20390 911 intellectual and emotional 3 +20391 911 intellectual and 3 +20392 911 of your date 2 +20393 911 your date 2 +20394 911 a giant step backward for a director I admire 0 +20395 911 a giant step backward 0 +20396 911 giant step backward 1 +20397 911 step backward 1 +20398 911 backward 2 +20399 911 for a director I admire 3 +20400 911 a director I admire 4 +20401 911 director I admire 2 +20402 911 I admire 3 +20403 911 admire 3 +20404 912 The subtitled costume drama is set in a remote African empire before cell phones , guns , and the internal combustion engine , but the politics that thump through it are as timely as tomorrow . 3 +20405 912 The subtitled costume drama is set in a remote African empire before cell phones , guns , and the internal combustion engine , but the politics that thump through it are as timely as tomorrow 3 +20406 912 The subtitled costume drama is set in a remote African empire before cell phones , guns , and the internal combustion engine , but 2 +20407 912 The subtitled costume drama is set in a remote African empire before cell phones , guns , and the internal combustion engine , 2 +20408 912 The subtitled costume drama is set in a remote African empire before cell phones , guns , and the internal combustion engine 3 +20409 912 The subtitled costume drama 2 +20410 912 subtitled costume drama 2 +20411 912 subtitled 2 +20412 912 is set in a remote African empire before cell phones , guns , and the internal combustion engine 2 +20413 912 set in a remote African empire before cell phones , guns , and the internal combustion engine 3 +20414 912 set in a remote African empire 2 +20415 912 in a remote African empire 2 +20416 912 a remote African empire 2 +20417 912 remote African empire 2 +20418 912 remote 2 +20419 912 African empire 2 +20420 912 African 2 +20421 912 empire 2 +20422 912 before cell phones , guns , and the internal combustion engine 2 +20423 912 cell phones , guns , and the internal combustion engine 1 +20424 912 cell phones , guns , and 3 +20425 912 cell phones , guns , 2 +20426 912 cell phones , guns 2 +20427 912 cell phones , 2 +20428 912 guns 2 +20429 912 the internal combustion engine 2 +20430 912 internal combustion engine 2 +20431 912 internal 2 +20432 912 combustion engine 2 +20433 912 combustion 2 +20434 912 engine 2 +20435 912 the politics that thump through it are as timely as tomorrow 3 +20436 912 the politics that thump through it 2 +20437 912 the politics 2 +20438 912 that thump through it 2 +20439 912 thump through it 2 +20440 912 thump 2 +20441 912 are as timely as tomorrow 3 +20442 912 as timely as tomorrow 3 +20443 912 timely as tomorrow 2 +20444 912 timely 2 +20445 912 as tomorrow 2 +20446 913 Opening with some contrived banter , cliches and some loose ends , the screenplay only comes into its own in the second half . 2 +20447 913 Opening with some contrived banter , cliches and some loose ends 2 +20448 913 with some contrived banter , cliches and some loose ends 1 +20449 913 some contrived banter , cliches and some loose ends 0 +20450 913 some contrived banter , cliches and 1 +20451 913 some contrived banter , cliches 2 +20452 913 some contrived banter , 1 +20453 913 some contrived banter 2 +20454 913 contrived banter 1 +20455 913 banter 2 +20456 913 some loose ends 2 +20457 913 loose ends 2 +20458 913 loose 1 +20459 913 , the screenplay only comes into its own in the second half . 3 +20460 913 the screenplay only comes into its own in the second half . 2 +20461 913 only comes into its own in the second half . 2 +20462 913 comes into its own in the second half . 3 +20463 913 comes into its own in the second half 2 +20464 913 comes into its own 3 +20465 913 into its own 2 +20466 913 in the second half 2 +20467 913 the second half 2 +20468 913 second half 2 +20469 914 A captivating new film . 4 +20470 914 captivating new film . 4 +20471 914 captivating 4 +20472 914 new film . 2 +20473 914 film . 2 +20474 915 If you adored The Full Monty so resoundingly that you 're dying to see the same old thing in a tired old setting , then this should keep you reasonably entertained . 2 +20475 915 If you adored The Full Monty so resoundingly that you 're dying to see the same old thing in a tired old setting 1 +20476 915 you adored The Full Monty so resoundingly that you 're dying to see the same old thing in a tired old setting 2 +20477 915 adored The Full Monty so resoundingly that you 're dying to see the same old thing in a tired old setting 1 +20478 915 adored The Full Monty so resoundingly 3 +20479 915 adored 4 +20480 915 The Full Monty so resoundingly 2 +20481 915 so resoundingly 2 +20482 915 resoundingly 3 +20483 915 that you 're dying to see the same old thing in a tired old setting 1 +20484 915 you 're dying to see the same old thing in a tired old setting 1 +20485 915 're dying to see the same old thing in a tired old setting 1 +20486 915 dying to see the same old thing in a tired old setting 1 +20487 915 dying 1 +20488 915 to see the same old thing in a tired old setting 1 +20489 915 see the same old thing in a tired old setting 0 +20490 915 see the same old thing 1 +20491 915 the same old thing 1 +20492 915 same old thing 2 +20493 915 old thing 2 +20494 915 in a tired old setting 1 +20495 915 a tired old setting 1 +20496 915 tired old setting 1 +20497 915 old setting 2 +20498 915 , then this should keep you reasonably entertained . 3 +20499 915 then this should keep you reasonably entertained . 3 +20500 915 this should keep you reasonably entertained . 3 +20501 915 should keep you reasonably entertained . 3 +20502 915 should keep you reasonably entertained 3 +20503 915 keep you reasonably entertained 3 +20504 915 you reasonably entertained 3 +20505 915 reasonably entertained 3 +20506 915 reasonably 2 +20507 915 entertained 4 +20508 916 Worth catching for Griffiths ' warm and winning central performance . 3 +20509 916 Worth catching for Griffiths ' warm and winning central performance 3 +20510 916 catching for Griffiths ' warm and winning central performance 3 +20511 916 catching 2 +20512 916 for Griffiths ' warm and winning central performance 4 +20513 916 Griffiths ' warm and winning central performance 4 +20514 916 Griffiths ' 2 +20515 916 warm and winning central performance 4 +20516 916 warm and winning 3 +20517 916 warm and 2 +20518 916 central performance 2 +20519 916 central 2 +20520 917 Sorvino makes the princess seem smug and cartoonish , and the film only really comes alive when poor Hermocrates and Leontine pathetically compare notes about their budding amours . 1 +20521 917 Sorvino makes the princess seem smug and cartoonish , and the film only really comes alive when poor Hermocrates and Leontine pathetically compare notes about their budding amours 1 +20522 917 Sorvino makes the princess seem smug and cartoonish , and 1 +20523 917 Sorvino makes the princess seem smug and cartoonish , 2 +20524 917 Sorvino makes the princess seem smug and cartoonish 1 +20525 917 Sorvino 3 +20526 917 makes the princess seem smug and cartoonish 1 +20527 917 the princess seem smug and cartoonish 1 +20528 917 the princess 2 +20529 917 princess 2 +20530 917 seem smug and cartoonish 1 +20531 917 smug and cartoonish 1 +20532 917 smug and 2 +20533 917 cartoonish 2 +20534 917 the film only really comes alive when poor Hermocrates and Leontine pathetically compare notes about their budding amours 2 +20535 917 the film only 2 +20536 917 film only 2 +20537 917 really comes alive when poor Hermocrates and Leontine pathetically compare notes about their budding amours 2 +20538 917 comes alive when poor Hermocrates and Leontine pathetically compare notes about their budding amours 3 +20539 917 comes alive 3 +20540 917 when poor Hermocrates and Leontine pathetically compare notes about their budding amours 1 +20541 917 poor Hermocrates and Leontine pathetically compare notes about their budding amours 2 +20542 917 poor Hermocrates and Leontine 1 +20543 917 poor Hermocrates and 2 +20544 917 poor Hermocrates 2 +20545 917 Hermocrates 2 +20546 917 Leontine 2 +20547 917 pathetically compare notes about their budding amours 0 +20548 917 pathetically 1 +20549 917 compare notes about their budding amours 2 +20550 917 compare 2 +20551 917 notes about their budding amours 2 +20552 917 notes 2 +20553 917 about their budding amours 3 +20554 917 their budding amours 2 +20555 917 budding amours 3 +20556 917 amours 3 +20557 918 While this has the making of melodrama , the filmmaker cuts against this natural grain , producing a work that 's more interested in asking questions than in answering them . 2 +20558 918 While this has the making of melodrama 2 +20559 918 this has the making of melodrama 2 +20560 918 has the making of melodrama 2 +20561 918 the making of melodrama 1 +20562 918 the making 2 +20563 918 of melodrama 2 +20564 918 , the filmmaker cuts against this natural grain , producing a work that 's more interested in asking questions than in answering them . 2 +20565 918 the filmmaker cuts against this natural grain , producing a work that 's more interested in asking questions than in answering them . 2 +20566 918 cuts against this natural grain , producing a work that 's more interested in asking questions than in answering them . 2 +20567 918 cuts against this natural grain , producing a work that 's more interested in asking questions than in answering them 3 +20568 918 cuts against this natural grain , 1 +20569 918 cuts against this natural grain 2 +20570 918 cuts 2 +20571 918 against this natural grain 1 +20572 918 this natural grain 3 +20573 918 natural grain 2 +20574 918 grain 2 +20575 918 producing a work that 's more interested in asking questions than in answering them 2 +20576 918 producing 2 +20577 918 a work that 's more interested in asking questions than in answering them 1 +20578 918 a work 2 +20579 918 that 's more interested in asking questions than in answering them 2 +20580 918 's more interested in asking questions than in answering them 2 +20581 918 more interested in asking questions than in answering them 2 +20582 918 more interested in asking questions 2 +20583 918 interested in asking questions 2 +20584 918 in asking questions 2 +20585 918 asking questions 2 +20586 918 asking 2 +20587 918 than in answering them 2 +20588 918 in answering them 3 +20589 918 answering them 2 +20590 918 answering 2 +20591 919 Davis is funny , charming and quirky in her feature film acting debut as Amy . 3 +20592 919 is funny , charming and quirky in her feature film acting debut as Amy . 3 +20593 919 is funny , charming and quirky in her feature film acting debut as Amy 4 +20594 919 is funny , charming and quirky 4 +20595 919 funny , charming and quirky 4 +20596 919 , charming and quirky 4 +20597 919 charming and quirky 3 +20598 919 in her feature film acting debut as Amy 2 +20599 919 her feature film acting debut as Amy 2 +20600 919 her feature film 3 +20601 919 feature film 2 +20602 919 acting debut as Amy 2 +20603 919 acting debut 2 +20604 919 as Amy 2 +20605 919 Amy 2 +20606 920 An uncomfortable movie , suffocating and sometimes almost senseless , The Grey Zone does have a center , though a morbid one . 0 +20607 920 An uncomfortable movie , suffocating and sometimes almost senseless , The Grey Zone 0 +20608 920 An uncomfortable movie , suffocating and sometimes almost senseless , 0 +20609 920 An uncomfortable movie , suffocating and sometimes almost senseless 0 +20610 920 An uncomfortable movie , 0 +20611 920 An uncomfortable movie 0 +20612 920 uncomfortable movie 1 +20613 920 suffocating and sometimes almost senseless 0 +20614 920 suffocating and 2 +20615 920 suffocating 1 +20616 920 sometimes almost senseless 1 +20617 920 almost senseless 1 +20618 920 senseless 1 +20619 920 The Grey Zone 2 +20620 920 Grey Zone 1 +20621 920 Grey 2 +20622 920 Zone 2 +20623 920 does have a center , though a morbid one . 2 +20624 920 does have a center , though a morbid one 2 +20625 920 have a center , though a morbid one 2 +20626 920 a center , though a morbid one 2 +20627 920 a center , 2 +20628 920 a center 2 +20629 920 though a morbid one 1 +20630 920 a morbid one 1 +20631 920 morbid one 1 +20632 920 morbid 0 +20633 921 The lousy John Q all but spits out Denzel Washington 's fine performance in the title role . 1 +20634 921 The lousy John Q 0 +20635 921 lousy John Q 1 +20636 921 lousy 0 +20637 921 John Q 2 +20638 921 all but spits out Denzel Washington 's fine performance in the title role . 3 +20639 921 all but 2 +20640 921 spits out Denzel Washington 's fine performance in the title role . 2 +20641 921 spits out Denzel Washington 's fine performance in the title role 4 +20642 921 spits out 1 +20643 921 spits 2 +20644 921 Denzel Washington 's fine performance in the title role 4 +20645 921 Denzel Washington 's fine performance 4 +20646 921 Denzel Washington 's 2 +20647 921 Denzel 3 +20648 921 Washington 's 2 +20649 921 fine performance 3 +20650 921 in the title role 2 +20651 921 the title role 2 +20652 921 title role 2 +20653 922 So devoid of pleasure or sensuality that it can not even be dubbed hedonistic . 0 +20654 922 So devoid of pleasure or sensuality 0 +20655 922 devoid of pleasure or sensuality 1 +20656 922 devoid 2 +20657 922 of pleasure or sensuality 3 +20658 922 pleasure or sensuality 2 +20659 922 pleasure or 3 +20660 922 that it can not even be dubbed hedonistic . 1 +20661 922 that it can not even be dubbed hedonistic 1 +20662 922 it can not even be dubbed hedonistic 1 +20663 922 can not even be dubbed hedonistic 1 +20664 922 can not even 2 +20665 922 be dubbed hedonistic 2 +20666 922 dubbed hedonistic 2 +20667 922 dubbed 2 +20668 922 hedonistic 1 +20669 923 Satin Rouge is not a new , or inventive , journey , but it 's encouraging to see a three-dimensional , average , middle-aged woman 's experience of self-discovery handled with such sensitivity . 3 +20670 923 Satin Rouge is not a new , or inventive , journey , but it 's encouraging to see a three-dimensional , average , middle-aged woman 's experience of self-discovery handled with such sensitivity 3 +20671 923 Satin Rouge is not a new , or inventive , journey , but 1 +20672 923 Satin Rouge is not a new , or inventive , journey , 1 +20673 923 Satin Rouge is not a new , or inventive , journey 1 +20674 923 Satin Rouge 2 +20675 923 Satin 2 +20676 923 Rouge 2 +20677 923 is not a new , or inventive , journey 2 +20678 923 a new , or inventive , journey 3 +20679 923 new , or inventive , journey 3 +20680 923 new , or inventive , 3 +20681 923 , or inventive , 2 +20682 923 , or inventive 3 +20683 923 , or 2 +20684 923 it 's encouraging to see a three-dimensional , average , middle-aged woman 's experience of self-discovery handled with such sensitivity 4 +20685 923 's encouraging to see a three-dimensional , average , middle-aged woman 's experience of self-discovery handled with such sensitivity 3 +20686 923 encouraging to see a three-dimensional , average , middle-aged woman 's experience of self-discovery handled with such sensitivity 4 +20687 923 encouraging 3 +20688 923 to see a three-dimensional , average , middle-aged woman 's experience of self-discovery handled with such sensitivity 3 +20689 923 see a three-dimensional , average , middle-aged woman 's experience of self-discovery handled with such sensitivity 3 +20690 923 see a three-dimensional , average , middle-aged woman 's experience 2 +20691 923 a three-dimensional , average , middle-aged woman 's experience 3 +20692 923 a three-dimensional , average , middle-aged woman 2 +20693 923 three-dimensional , average , middle-aged woman 2 +20694 923 three-dimensional 2 +20695 923 , average , middle-aged woman 2 +20696 923 average , middle-aged woman 2 +20697 923 , middle-aged woman 2 +20698 923 middle-aged woman 2 +20699 923 's experience 2 +20700 923 of self-discovery handled with such sensitivity 3 +20701 923 self-discovery handled with such sensitivity 3 +20702 923 self-discovery 3 +20703 923 handled with such sensitivity 2 +20704 923 with such sensitivity 3 +20705 923 such sensitivity 3 +20706 923 sensitivity 2 +20707 924 A pointed , often tender , examination of the pros and cons of unconditional love and familial duties . 3 +20708 924 A pointed , often tender , examination of the pros and cons of unconditional 3 +20709 924 A pointed , often tender , examination 3 +20710 924 pointed , often tender , examination 3 +20711 924 pointed , often tender , 3 +20712 924 pointed 2 +20713 924 , often tender , 2 +20714 924 often tender , 2 +20715 924 tender , 3 +20716 924 of the pros and cons of unconditional 2 +20717 924 the pros and cons of unconditional 2 +20718 924 the pros and cons 2 +20719 924 pros and cons 2 +20720 924 pros and 2 +20721 924 pros 3 +20722 924 cons 2 +20723 924 of unconditional 2 +20724 924 unconditional 3 +20725 924 love and familial duties . 2 +20726 924 love and familial duties 2 +20727 924 love and familial 3 +20728 924 duties 2 +20729 925 Another trumpet blast that there may be a New Mexican Cinema a-bornin ' . ' 3 +20730 925 trumpet blast that there may be a New Mexican Cinema a-bornin ' . ' 3 +20731 925 trumpet blast that there may be a New Mexican Cinema a-bornin ' . 3 +20732 925 trumpet blast that there may be a New Mexican Cinema a-bornin ' 2 +20733 925 trumpet blast 2 +20734 925 trumpet 2 +20735 925 blast 3 +20736 925 that there may be a New Mexican Cinema a-bornin ' 2 +20737 925 there may be a New Mexican Cinema a-bornin ' 2 +20738 925 may be a New Mexican Cinema a-bornin ' 2 +20739 925 be a New Mexican Cinema a-bornin ' 3 +20740 925 a New Mexican Cinema a-bornin ' 2 +20741 925 New Mexican Cinema a-bornin ' 2 +20742 925 Mexican Cinema a-bornin ' 2 +20743 925 Mexican 2 +20744 925 Cinema a-bornin ' 2 +20745 925 a-bornin ' 2 +20746 925 a-bornin 2 +20747 926 Gorgeous to look at but insufferably tedious and turgid ... a curiously constricted epic . 1 +20748 926 Gorgeous to look at but insufferably tedious and turgid ... a curiously constricted epic 1 +20749 926 Gorgeous to look at but insufferably tedious and turgid ... 1 +20750 926 Gorgeous to look at but insufferably tedious and turgid 1 +20751 926 Gorgeous to look at but 3 +20752 926 Gorgeous to look at 4 +20753 926 to look at 2 +20754 926 look at 2 +20755 926 insufferably tedious and turgid 1 +20756 926 insufferably 1 +20757 926 tedious and turgid 1 +20758 926 tedious and 2 +20759 926 a curiously constricted epic 2 +20760 926 a curiously 2 +20761 926 curiously 2 +20762 926 constricted epic 2 +20763 926 constricted 1 +20764 927 Only about as sexy and dangerous as an actress in a role that reminds at every turn of Elizabeth Berkley 's flopping dolphin-gasm . 1 +20765 927 Only about as sexy and dangerous as an actress in a role 2 +20766 927 Only about as sexy and 2 +20767 927 Only about as sexy 2 +20768 927 Only about 2 +20769 927 as sexy 3 +20770 927 dangerous as an actress in a role 2 +20771 927 as an actress in a role 1 +20772 927 an actress in a role 2 +20773 927 in a role 2 +20774 927 a role 2 +20775 927 that reminds at every turn of Elizabeth Berkley 's flopping dolphin-gasm . 1 +20776 927 that reminds at every turn of Elizabeth Berkley 's flopping dolphin-gasm 1 +20777 927 reminds at every turn of Elizabeth Berkley 's flopping dolphin-gasm 1 +20778 927 reminds 2 +20779 927 at every turn of Elizabeth Berkley 's flopping dolphin-gasm 1 +20780 927 every turn of Elizabeth Berkley 's flopping dolphin-gasm 1 +20781 927 of Elizabeth Berkley 's flopping dolphin-gasm 1 +20782 927 Elizabeth Berkley 's flopping dolphin-gasm 2 +20783 927 Elizabeth Berkley 's 2 +20784 927 Elizabeth 2 +20785 927 Berkley 's 2 +20786 927 Berkley 2 +20787 927 flopping dolphin-gasm 2 +20788 927 flopping 1 +20789 927 dolphin-gasm 2 +20790 928 Their contrast is neither dramatic nor comic -- it 's just a weird fizzle . 1 +20791 928 Their contrast is neither dramatic nor comic -- it 's just a weird fizzle 1 +20792 928 Their contrast is neither dramatic nor comic -- 1 +20793 928 Their contrast is neither dramatic nor comic 0 +20794 928 Their contrast 3 +20795 928 contrast 2 +20796 928 is neither dramatic nor comic 1 +20797 928 neither dramatic nor comic 1 +20798 928 dramatic nor comic 1 +20799 928 dramatic nor 1 +20800 928 it 's just a weird fizzle 2 +20801 928 's just a weird fizzle 2 +20802 928 a weird fizzle 1 +20803 928 weird fizzle 2 +20804 929 Collateral Damage is trash , but it earns extra points by acting as if it were n't . 0 +20805 929 Collateral Damage is trash , but it earns extra points by acting as if it were n't 2 +20806 929 Collateral Damage is trash , but 1 +20807 929 Collateral Damage is trash , 0 +20808 929 Collateral Damage is trash 0 +20809 929 Collateral Damage 2 +20810 929 Collateral 3 +20811 929 Damage 2 +20812 929 is trash 0 +20813 929 it earns extra points by acting as if it were n't 3 +20814 929 earns extra points by acting as if it were n't 3 +20815 929 earns extra points 3 +20816 929 earns 2 +20817 929 extra points 3 +20818 929 extra 2 +20819 929 by acting as if it were n't 2 +20820 929 acting as if it were n't 2 +20821 929 as if it were n't 2 +20822 929 if it were n't 2 +20823 929 it were n't 2 +20824 930 When you think you 've figured out Bielinsky 's great game , that 's when you 're in the most trouble : He 's the con , and you 're just the mark . 2 +20825 930 When you think you 've figured out Bielinsky 's great game , that 's when you 're in the most trouble 2 +20826 930 you think you 've figured out Bielinsky 's great game , that 's when you 're in the most trouble 2 +20827 930 think you 've figured out Bielinsky 's great game , that 's when you 're in the most trouble 3 +20828 930 you 've figured out Bielinsky 's great game , that 's when you 're in the most trouble 2 +20829 930 've figured out Bielinsky 's great game , that 's when you 're in the most trouble 1 +20830 930 figured out Bielinsky 's great game , that 's when you 're in the most trouble 2 +20831 930 figured 2 +20832 930 out Bielinsky 's great game , that 's when you 're in the most trouble 2 +20833 930 Bielinsky 's great game , that 's when you 're in the most trouble 3 +20834 930 Bielinsky 's great game , 2 +20835 930 Bielinsky 's great game 3 +20836 930 Bielinsky 's 2 +20837 930 Bielinsky 2 +20838 930 great game 3 +20839 930 that 's when you 're in the most trouble 1 +20840 930 's when you 're in the most trouble 1 +20841 930 when you 're in the most trouble 2 +20842 930 you 're in the most trouble 2 +20843 930 're in the most trouble 2 +20844 930 in the most trouble 2 +20845 930 the most trouble 2 +20846 930 most trouble 1 +20847 930 : He 's the con , and you 're just the mark . 1 +20848 930 He 's the con , and you 're just the mark . 2 +20849 930 He 's the con , and you 're just the mark 2 +20850 930 He 's the con , and 2 +20851 930 He 's the con , 2 +20852 930 He 's the con 1 +20853 930 's the con 2 +20854 930 the con 1 +20855 930 you 're just the mark 2 +20856 930 're just the mark 2 +20857 930 're just 2 +20858 930 the mark 3 +20859 931 Swimming is above all about a young woman 's face , and by casting an actress whose face projects that woman 's doubts and yearnings , it succeeds . 4 +20860 931 Swimming is above all about a young woman 's face , and by casting an actress whose face projects that woman 's doubts and yearnings 3 +20861 931 is above all about a young woman 's face , and by casting an actress whose face projects that woman 's doubts and yearnings 3 +20862 931 above all about a young woman 's face , and by casting an actress whose face projects that woman 's doubts and yearnings 3 +20863 931 all about a young woman 's face , and by casting an actress whose face projects that woman 's doubts and yearnings 3 +20864 931 about a young woman 's face , and by casting an actress whose face projects that woman 's doubts and yearnings 3 +20865 931 about a young woman 's face 2 +20866 931 a young woman 's face 2 +20867 931 a young woman 's 2 +20868 931 young woman 's 2 +20869 931 , and by casting an actress whose face projects that woman 's doubts and yearnings 3 +20870 931 by casting an actress whose face projects that woman 's doubts and yearnings 3 +20871 931 casting an actress whose face projects that woman 's doubts and yearnings 2 +20872 931 an actress whose face projects that woman 's doubts and yearnings 3 +20873 931 whose face projects that woman 's doubts and yearnings 2 +20874 931 whose face 2 +20875 931 projects that woman 's doubts and yearnings 2 +20876 931 projects that woman 's doubts and 2 +20877 931 projects that woman 's doubts 2 +20878 931 projects 2 +20879 931 that woman 's doubts 1 +20880 931 that woman 's 2 +20881 931 doubts 2 +20882 931 yearnings 2 +20883 931 , it succeeds . 4 +20884 931 it succeeds . 3 +20885 931 succeeds . 4 +20886 931 succeeds 3 +20887 932 It 's packed to bursting with incident , and with scores of characters , some fictional , some from history . 2 +20888 932 's packed to bursting with incident , and with scores of characters , some fictional , some from history . 3 +20889 932 's packed to bursting with incident , and with scores of characters , some fictional , some from history 3 +20890 932 packed to bursting with incident , and with scores of characters , some fictional , some from history 4 +20891 932 packed 2 +20892 932 to bursting with incident , and with scores of characters , some fictional , some from history 3 +20893 932 bursting with incident , and with scores of characters , some fictional , some from history 3 +20894 932 bursting with incident , and 2 +20895 932 bursting with incident , 2 +20896 932 bursting with incident 3 +20897 932 bursting 3 +20898 932 with incident 2 +20899 932 incident 2 +20900 932 with scores of characters , some fictional , some from history 2 +20901 932 with scores of characters , some fictional , some 2 +20902 932 scores of characters , some fictional , some 2 +20903 932 of characters , some fictional , some 2 +20904 932 characters , some fictional , some 2 +20905 932 characters , 2 +20906 932 some fictional , some 2 +20907 932 some fictional , 2 +20908 932 some fictional 2 +20909 932 fictional 2 +20910 932 from history 2 +20911 933 You want to call Domino 's . 2 +20912 933 want to call Domino 's . 2 +20913 933 want to call Domino 's 2 +20914 933 to call Domino 's 2 +20915 933 call Domino 's 2 +20916 933 Domino 's 2 +20917 933 Domino 2 +20918 934 The umpteenth summer skinny dip in Jerry Bruckheimer 's putrid pond of retread action twaddle . 2 +20919 934 The umpteenth summer 3 +20920 934 umpteenth summer 2 +20921 934 umpteenth 3 +20922 934 skinny dip in Jerry Bruckheimer 's putrid pond of retread action twaddle . 0 +20923 934 skinny 2 +20924 934 dip in Jerry Bruckheimer 's putrid pond of retread action twaddle . 1 +20925 934 dip in Jerry Bruckheimer 's putrid pond of retread action twaddle 1 +20926 934 dip 2 +20927 934 in Jerry Bruckheimer 's putrid pond of retread action twaddle 0 +20928 934 Jerry Bruckheimer 's putrid pond of retread action twaddle 1 +20929 934 Jerry Bruckheimer 's putrid pond 1 +20930 934 Jerry Bruckheimer 's 2 +20931 934 Bruckheimer 's 2 +20932 934 putrid pond 1 +20933 934 putrid 1 +20934 934 pond 2 +20935 934 of retread action twaddle 1 +20936 934 retread action twaddle 1 +20937 934 action twaddle 1 +20938 934 twaddle 2 +20939 935 `` the road paved with good intentions leads to the video store '' 3 +20940 935 the road paved with good intentions leads to the video store '' 1 +20941 935 paved with good intentions leads to the video store '' 1 +20942 935 paved with good intentions leads to the video store 1 +20943 935 paved 2 +20944 935 with good intentions leads to the video store 2 +20945 935 good intentions leads to the video store 0 +20946 935 leads to the video store 2 +20947 935 leads 2 +20948 935 to the video store 2 +20949 935 the video store 2 +20950 935 video store 2 +20951 935 video 2 +20952 935 store 2 +20953 936 Chris Columbus ' sequel is faster , livelier and a good deal funnier than his original . 3 +20954 936 Chris Columbus ' sequel 2 +20955 936 Chris Columbus ' 2 +20956 936 Columbus ' 2 +20957 936 Columbus 2 +20958 936 is faster , livelier and a good deal funnier than his original . 4 +20959 936 is faster , livelier and a good deal funnier than his original 3 +20960 936 faster , livelier and a good deal funnier than his original 4 +20961 936 faster , livelier and 3 +20962 936 faster , livelier 3 +20963 936 faster , 2 +20964 936 faster 2 +20965 936 livelier 2 +20966 936 a good deal funnier than his original 4 +20967 936 a good deal funnier 3 +20968 936 good deal funnier 3 +20969 936 deal funnier 3 +20970 936 than his original 2 +20971 936 his original 2 +20972 937 Full of flatulence jokes and mild sexual references , Kung Pow ! 1 +20973 937 Full of flatulence jokes and mild sexual references , Kung Pow 1 +20974 937 of flatulence jokes and mild sexual references , Kung Pow 2 +20975 937 flatulence jokes and mild sexual references , Kung Pow 2 +20976 937 flatulence jokes and 2 +20977 937 flatulence jokes 2 +20978 937 flatulence 1 +20979 937 mild sexual references , Kung Pow 2 +20980 937 mild sexual references , 2 +20981 937 mild sexual references 2 +20982 937 mild 2 +20983 937 sexual references 2 +20984 937 references 2 +20985 938 The whole affair is as predictable as can be . 2 +20986 938 The whole affair 2 +20987 938 whole affair 2 +20988 938 is as predictable as can be . 2 +20989 938 is as predictable as can be 1 +20990 938 is as predictable 1 +20991 938 as predictable 2 +20992 938 as can be 2 +20993 938 can be 2 +20994 939 The film is a very good viewing alternative for young women . 3 +20995 939 is a very good viewing alternative for young women . 3 +20996 939 is a very good viewing alternative for young women 4 +20997 939 a very good viewing alternative for young women 3 +20998 939 a very good viewing alternative 3 +20999 939 very good viewing alternative 3 +21000 939 viewing alternative 2 +21001 939 for young women 2 +21002 939 young women 2 +21003 940 To those who have not read the book , the film is a much better mother-daughter tale than last summer 's ` Divine Secrets of the Ya-Ya Sisterhood , ' but that 's not saying much . 3 +21004 940 To those who have not read the book 2 +21005 940 those who have not read the book 2 +21006 940 who have not read the book 2 +21007 940 have not read the book 2 +21008 940 have not 2 +21009 940 read the book 2 +21010 940 , the film is a much better mother-daughter tale than last summer 's ` Divine Secrets of the Ya-Ya Sisterhood , ' but that 's not saying much . 2 +21011 940 the film is a much better mother-daughter tale than last summer 's ` Divine Secrets of the Ya-Ya Sisterhood , ' but that 's not saying much . 2 +21012 940 is a much better mother-daughter tale than last summer 's ` Divine Secrets of the Ya-Ya Sisterhood , ' but that 's not saying much . 2 +21013 940 is a much better mother-daughter tale than last summer 's ` Divine Secrets of the Ya-Ya Sisterhood , ' but that 's not saying much 1 +21014 940 is a much better mother-daughter tale 3 +21015 940 a much better mother-daughter tale 3 +21016 940 much better mother-daughter tale 3 +21017 940 mother-daughter tale 2 +21018 940 mother-daughter 2 +21019 940 than last summer 's ` Divine Secrets of the Ya-Ya Sisterhood , ' but that 's not saying much 2 +21020 940 than last summer 's ` Divine Secrets of the Ya-Ya Sisterhood , ' but 2 +21021 940 than last summer 's ` Divine Secrets of the Ya-Ya Sisterhood , ' 2 +21022 940 than last summer 's ` Divine Secrets of the Ya-Ya Sisterhood , 2 +21023 940 than last summer 's ` Divine Secrets of the Ya-Ya Sisterhood 2 +21024 940 last summer 's ` Divine Secrets of the Ya-Ya Sisterhood 2 +21025 940 's ` Divine Secrets of the Ya-Ya Sisterhood 3 +21026 940 's ` 3 +21027 940 Divine Secrets of the Ya-Ya Sisterhood 2 +21028 940 Divine Secrets 2 +21029 940 Divine 3 +21030 940 Secrets 2 +21031 940 of the Ya-Ya Sisterhood 3 +21032 940 the Ya-Ya Sisterhood 3 +21033 940 Ya-Ya Sisterhood 2 +21034 940 Ya-Ya 2 +21035 940 Sisterhood 2 +21036 940 that 's not saying much 1 +21037 940 's not saying much 2 +21038 940 saying much 2 +21039 941 But it also has many of the things that made the first one charming . 3 +21040 941 it also has many of the things that made the first one charming . 3 +21041 941 also has many of the things that made the first one charming . 3 +21042 941 has many of the things that made the first one charming . 3 +21043 941 has many of the things that made the first one charming 3 +21044 941 many of the things that made the first one charming 3 +21045 941 of the things that made the first one charming 2 +21046 941 the things that made the first one charming 3 +21047 941 that made the first one charming 2 +21048 941 made the first one charming 3 +21049 941 the first one charming 3 +21050 941 the first one 2 +21051 941 first one 2 +21052 942 Sheridan 2 +21053 942 terrified of the book 's irreverent energy , and scotches most 1 +21054 942 terrified 2 +21055 942 of the book 's irreverent energy , and scotches most 2 +21056 942 the book 's irreverent energy , and scotches most 1 +21057 942 the book 's irreverent energy , and 2 +21058 942 the book 's irreverent energy , 3 +21059 942 the book 's irreverent energy 3 +21060 942 the book 's 2 +21061 942 book 's 2 +21062 942 irreverent energy 3 +21063 942 irreverent 2 +21064 942 scotches most 2 +21065 942 scotches 2 +21066 942 humor , bile , and irony 2 +21067 942 , bile , and irony 1 +21068 942 bile , and irony 1 +21069 942 bile 0 +21070 942 , and irony 2 +21071 942 irony 1 +21072 943 This slight premise ... works because of the ideal casting of the masterful British actor Ian Holm as the aged Napoleon . 3 +21073 943 This slight premise ... works because of the ideal casting of the masterful British actor Ian Holm as the aged Napoleon 3 +21074 943 This slight premise ... 2 +21075 943 This slight premise 1 +21076 943 slight premise 2 +21077 943 works because of the ideal casting of the masterful British actor Ian Holm as the aged Napoleon 3 +21078 943 works because of the ideal casting of the masterful British actor Ian Holm 3 +21079 943 because of the ideal casting of the masterful British actor Ian Holm 3 +21080 943 of the ideal casting of the masterful British actor Ian Holm 4 +21081 943 the ideal casting of the masterful British actor Ian Holm 3 +21082 943 the ideal casting 3 +21083 943 ideal casting 3 +21084 943 ideal 3 +21085 943 of the masterful British actor Ian Holm 3 +21086 943 the masterful British actor Ian Holm 4 +21087 943 masterful British actor Ian Holm 4 +21088 943 British actor Ian Holm 2 +21089 943 actor Ian Holm 2 +21090 943 Ian Holm 2 +21091 943 Ian 2 +21092 943 Holm 2 +21093 943 as the aged Napoleon 2 +21094 943 the aged Napoleon 2 +21095 943 aged Napoleon 2 +21096 943 aged 1 +21097 943 Napoleon 2 +21098 944 But never mind all that ; the boobs are fantasti 3 +21099 944 never mind all that ; the boobs are fantasti 3 +21100 944 mind all that ; the boobs are fantasti 2 +21101 944 all that ; the boobs are fantasti 2 +21102 944 all that ; 2 +21103 944 the boobs are fantasti 3 +21104 944 the boobs 2 +21105 944 boobs 3 +21106 944 are fantasti 3 +21107 944 fantasti 3 +21108 945 About Schmidt is Nicholson 's goofy , heartfelt , mesmerizing King Lear . 3 +21109 945 is Nicholson 's goofy , heartfelt , mesmerizing King Lear . 3 +21110 945 is Nicholson 's goofy , heartfelt , mesmerizing King Lear 3 +21111 945 Nicholson 's goofy , heartfelt , mesmerizing King Lear 3 +21112 945 Nicholson 's 2 +21113 945 Nicholson 2 +21114 945 goofy , heartfelt , mesmerizing King Lear 4 +21115 945 , heartfelt , mesmerizing King Lear 3 +21116 945 heartfelt , mesmerizing King Lear 4 +21117 945 , mesmerizing King Lear 2 +21118 945 mesmerizing King Lear 2 +21119 945 King Lear 3 +21120 945 Lear 2 +21121 946 It is most of the things Costner movies are known for ; it 's sanctimonious , self-righteous and so eager to earn our love that you want to slap it . 1 +21122 946 It is most of the things Costner movies are known for ; it 's sanctimonious , self-righteous and so eager to earn our love that you want to slap it 1 +21123 946 It is most of the things Costner movies are known for ; 2 +21124 946 It is most of the things Costner movies are known for 2 +21125 946 is most of the things Costner movies are known for 2 +21126 946 most of the things Costner movies are known for 2 +21127 946 of the things Costner movies are known for 3 +21128 946 the things Costner movies are known for 2 +21129 946 Costner movies are known for 2 +21130 946 Costner movies 2 +21131 946 Costner 2 +21132 946 are known for 2 +21133 946 known for 2 +21134 946 known 2 +21135 946 it 's sanctimonious , self-righteous and so eager to earn our love that you want to slap it 0 +21136 946 's sanctimonious , self-righteous and so eager to earn our love that you want to slap it 1 +21137 946 's sanctimonious , self-righteous and so eager to earn our love 2 +21138 946 's sanctimonious , self-righteous and so eager 1 +21139 946 sanctimonious , self-righteous and so eager 2 +21140 946 sanctimonious , self-righteous and 1 +21141 946 sanctimonious , self-righteous 1 +21142 946 sanctimonious , 2 +21143 946 sanctimonious 1 +21144 946 self-righteous 2 +21145 946 so eager 2 +21146 946 eager 2 +21147 946 to earn our love 2 +21148 946 earn our love 3 +21149 946 our love 2 +21150 946 that you want to slap it 1 +21151 946 you want to slap it 1 +21152 946 want to slap it 1 +21153 946 to slap it 2 +21154 946 slap it 2 +21155 946 slap 1 +21156 947 This is a very funny , heartwarming film . 4 +21157 947 is a very funny , heartwarming film . 4 +21158 947 is a very funny , heartwarming film 4 +21159 947 a very funny , heartwarming film 4 +21160 947 very funny , heartwarming film 4 +21161 947 , heartwarming film 4 +21162 947 heartwarming film 3 +21163 947 heartwarming 3 +21164 948 It 's a piece of handiwork that shows its indie tatters and self-conscious seams in places , but has some quietly moving moments and an intelligent subtlety . 3 +21165 948 's a piece of handiwork that shows its indie tatters and self-conscious seams in places , but has some quietly moving moments and an intelligent subtlety . 3 +21166 948 's a piece of handiwork that shows its indie tatters and self-conscious seams in places , but has some quietly moving moments and an intelligent subtlety 3 +21167 948 a piece of handiwork that shows its indie tatters and self-conscious seams in places , but has some quietly moving moments and an intelligent subtlety 3 +21168 948 a piece of handiwork 2 +21169 948 a piece 2 +21170 948 of handiwork 2 +21171 948 handiwork 2 +21172 948 that shows its indie tatters and self-conscious seams in places , but has some quietly moving moments and an intelligent subtlety 3 +21173 948 shows its indie tatters and self-conscious seams in places , but has some quietly moving moments and an intelligent subtlety 2 +21174 948 shows its indie tatters and self-conscious seams in places , but 2 +21175 948 shows its indie tatters and self-conscious seams in places , 1 +21176 948 shows its indie tatters and self-conscious seams in places 1 +21177 948 shows its indie tatters and self-conscious seams 1 +21178 948 its indie tatters and self-conscious seams 2 +21179 948 indie tatters and self-conscious seams 1 +21180 948 tatters and self-conscious seams 2 +21181 948 and self-conscious seams 1 +21182 948 self-conscious seams 2 +21183 948 seams 2 +21184 948 in places 2 +21185 948 has some quietly moving moments and an intelligent subtlety 3 +21186 948 some quietly moving moments and an intelligent subtlety 3 +21187 948 quietly moving moments and an intelligent subtlety 3 +21188 948 moving moments and an intelligent subtlety 3 +21189 948 moments and an intelligent subtlety 3 +21190 948 moments and 2 +21191 948 an intelligent subtlety 2 +21192 948 intelligent subtlety 3 +21193 949 I was amused and entertained by the unfolding of Bielinsky 's cleverly constructed scenario , and greatly impressed by the skill of the actors involved in the enterprise . 4 +21194 949 was amused and entertained by the unfolding of Bielinsky 's cleverly constructed scenario , and greatly impressed by the skill of the actors involved in the enterprise . 4 +21195 949 was amused and entertained by the unfolding of Bielinsky 's cleverly constructed scenario , and greatly impressed by the skill of the actors involved in the enterprise 4 +21196 949 amused and entertained by the unfolding of Bielinsky 's cleverly constructed scenario , and greatly impressed by the skill of the actors involved in the enterprise 4 +21197 949 amused and entertained by the unfolding of Bielinsky 's cleverly constructed scenario , and 3 +21198 949 amused and entertained by the unfolding of Bielinsky 's cleverly constructed scenario , 4 +21199 949 amused and entertained by the unfolding of Bielinsky 's cleverly constructed scenario 4 +21200 949 amused and entertained by the unfolding of Bielinsky 's 3 +21201 949 amused and 2 +21202 949 amused 3 +21203 949 entertained by the unfolding of Bielinsky 's 3 +21204 949 by the unfolding of Bielinsky 's 2 +21205 949 the unfolding of Bielinsky 's 2 +21206 949 the unfolding 2 +21207 949 of Bielinsky 's 2 +21208 949 cleverly constructed scenario 3 +21209 949 cleverly constructed 3 +21210 949 constructed 2 +21211 949 scenario 2 +21212 949 greatly impressed by the skill of the actors involved in the enterprise 4 +21213 949 greatly 3 +21214 949 impressed by the skill of the actors involved in the enterprise 4 +21215 949 by the skill of the actors involved in the enterprise 2 +21216 949 the skill of the actors involved in the enterprise 2 +21217 949 the skill 2 +21218 949 skill 2 +21219 949 of the actors involved in the enterprise 2 +21220 949 the actors involved in the enterprise 3 +21221 949 involved in the enterprise 2 +21222 949 in the enterprise 2 +21223 949 the enterprise 3 +21224 949 enterprise 2 +21225 950 For most of the distance the picture provides a satisfyingly unsettling ride into the dark places of our national psyche . 3 +21226 950 For most of the distance 2 +21227 950 most of the distance 1 +21228 950 of the distance 2 +21229 950 the distance 3 +21230 950 the picture provides a satisfyingly unsettling ride into the dark places of our national psyche . 3 +21231 950 the picture 2 +21232 950 provides a satisfyingly unsettling ride into the dark places of our national psyche . 4 +21233 950 provides a satisfyingly unsettling ride into the dark places of our national psyche 3 +21234 950 provides a satisfyingly unsettling ride 3 +21235 950 a satisfyingly unsettling ride 3 +21236 950 satisfyingly unsettling ride 3 +21237 950 satisfyingly unsettling 3 +21238 950 satisfyingly 3 +21239 950 into the dark places of our national psyche 2 +21240 950 the dark places of our national psyche 1 +21241 950 the dark places 2 +21242 950 dark places 1 +21243 950 of our national psyche 2 +21244 950 our national psyche 2 +21245 950 national psyche 2 +21246 950 psyche 2 +21247 951 With very little to add beyond the dark visions already relayed by superb recent predecessors like Swimming With Sharks and The Player , this latest skewering ... may put off insiders and outsiders alike . 1 +21248 951 With very little to add beyond the dark visions already relayed by superb recent predecessors like Swimming With Sharks and The Player , this latest skewering 1 +21249 951 very little to add beyond the dark visions already relayed by superb recent predecessors like Swimming With Sharks and The Player , this latest skewering 2 +21250 951 very little to add beyond the dark visions already relayed by superb recent predecessors 1 +21251 951 very little to add beyond the dark visions already relayed by superb 1 +21252 951 little to add beyond the dark visions already relayed by superb 2 +21253 951 to add beyond the dark visions already relayed by superb 3 +21254 951 add beyond the dark visions already relayed by superb 3 +21255 951 beyond the dark visions already relayed by superb 2 +21256 951 the dark visions already relayed by superb 3 +21257 951 the dark visions 2 +21258 951 dark visions 2 +21259 951 visions 2 +21260 951 already relayed by superb 3 +21261 951 relayed by superb 3 +21262 951 relayed 2 +21263 951 by superb 3 +21264 951 recent predecessors 2 +21265 951 like Swimming With Sharks and The Player , this latest skewering 2 +21266 951 Swimming With Sharks and The Player , this latest skewering 2 +21267 951 Swimming With Sharks and 2 +21268 951 Swimming With Sharks 2 +21269 951 With Sharks 2 +21270 951 Sharks 2 +21271 951 The Player , this latest skewering 2 +21272 951 The Player , 2 +21273 951 The Player 2 +21274 951 Player 2 +21275 951 this latest skewering 2 +21276 951 latest skewering 2 +21277 951 skewering 2 +21278 951 ... may put off insiders and outsiders alike . 1 +21279 951 may put off insiders and outsiders alike . 1 +21280 951 may put off insiders and outsiders alike 2 +21281 951 put off insiders and outsiders alike 2 +21282 951 put off insiders and outsiders 2 +21283 951 put off 2 +21284 951 insiders and outsiders 2 +21285 951 insiders and 2 +21286 951 insiders 2 +21287 951 outsiders 2 +21288 951 alike 2 +21289 952 Being unique does n't necessarily equate to being good , no matter how admirably the filmmakers have gone for broke . 1 +21290 952 Being unique 3 +21291 952 does n't necessarily equate to being good , no matter how admirably the filmmakers have gone for broke . 2 +21292 952 does n't necessarily equate to being good , no matter how admirably the filmmakers have gone for broke 1 +21293 952 does n't necessarily 1 +21294 952 equate to being good , no matter how admirably the filmmakers have gone for broke 2 +21295 952 equate to being good , 3 +21296 952 equate to being good 2 +21297 952 equate 2 +21298 952 to being good 2 +21299 952 being good 3 +21300 952 no matter how admirably the filmmakers have gone for broke 2 +21301 952 no matter 2 +21302 952 how admirably the filmmakers have gone for broke 2 +21303 952 how admirably 3 +21304 952 admirably 3 +21305 952 the filmmakers have gone for broke 2 +21306 952 have gone for broke 2 +21307 952 gone for broke 2 +21308 952 for broke 2 +21309 952 broke 2 +21310 953 The respective charms of Sandra Bullock and Hugh Grant have worn threadbare . 2 +21311 953 The respective charms of Sandra Bullock and Hugh Grant 3 +21312 953 The respective charms 2 +21313 953 respective charms 3 +21314 953 respective 2 +21315 953 of Sandra Bullock and Hugh Grant 2 +21316 953 Sandra Bullock and Hugh Grant 2 +21317 953 Sandra Bullock and 1 +21318 953 Sandra Bullock 2 +21319 953 Sandra 2 +21320 953 Bullock 2 +21321 953 Hugh Grant 2 +21322 953 Hugh 2 +21323 953 Grant 2 +21324 953 have worn threadbare . 0 +21325 953 have worn threadbare 2 +21326 953 worn threadbare 1 +21327 953 worn 1 +21328 953 threadbare 2 +21329 954 Like the Hanks character , he 's a slow study : The action is stilted and the tabloid energy embalmed . 1 +21330 954 Like the Hanks character 2 +21331 954 the Hanks character 2 +21332 954 Hanks character 2 +21333 954 , he 's a slow study : The action is stilted and the tabloid energy embalmed . 2 +21334 954 he 's a slow study : The action is stilted and the tabloid energy embalmed . 1 +21335 954 's a slow study : The action is stilted and the tabloid energy embalmed . 1 +21336 954 's a slow study : The action is stilted and the tabloid energy embalmed 2 +21337 954 a slow study : The action is stilted and the tabloid energy embalmed 1 +21338 954 a slow study : 2 +21339 954 a slow study 2 +21340 954 slow study 2 +21341 954 slow 1 +21342 954 The action is stilted and the tabloid energy embalmed 1 +21343 954 The action is stilted and 1 +21344 954 The action is stilted 1 +21345 954 is stilted 2 +21346 954 stilted 1 +21347 954 the tabloid energy embalmed 2 +21348 954 the tabloid energy 2 +21349 954 tabloid energy 2 +21350 954 tabloid 1 +21351 954 embalmed 2 +21352 955 ... enthusiastically invokes the percussion rhythm , the brass soul and the sense of fierce competition that helps make great marching bands half the fun of college football games . 3 +21353 955 enthusiastically invokes the percussion rhythm , the brass soul and the sense of fierce competition that helps make great marching bands half the fun of college football games . 3 +21354 955 enthusiastically invokes the percussion rhythm , the brass soul and the sense of fierce competition that helps make great marching bands half the fun of college football games 4 +21355 955 enthusiastically 3 +21356 955 invokes the percussion rhythm , the brass soul and the sense of fierce competition that helps make great marching bands half the fun of college football games 4 +21357 955 invokes 2 +21358 955 the percussion rhythm , the brass soul and the sense of fierce competition that helps make great marching bands half the fun of college football games 3 +21359 955 the percussion rhythm , the brass soul and 3 +21360 955 the percussion rhythm , the brass soul 2 +21361 955 the percussion rhythm , 2 +21362 955 the percussion rhythm 2 +21363 955 percussion rhythm 2 +21364 955 percussion 2 +21365 955 rhythm 2 +21366 955 the brass soul 2 +21367 955 brass soul 2 +21368 955 brass 2 +21369 955 the sense of fierce competition that helps make great marching bands half the fun of college football games 3 +21370 955 the sense of fierce competition 3 +21371 955 of fierce competition 2 +21372 955 fierce competition 3 +21373 955 fierce 3 +21374 955 competition 2 +21375 955 that helps make great marching bands half the fun of college football games 3 +21376 955 helps make great marching bands half the fun of college football games 3 +21377 955 helps 2 +21378 955 make great marching bands half the fun of college football games 2 +21379 955 make great marching bands 3 +21380 955 great marching bands 3 +21381 955 marching bands 2 +21382 955 marching 2 +21383 955 bands 2 +21384 955 half the fun of college football games 3 +21385 955 half the fun 2 +21386 955 the fun 3 +21387 955 of college football games 2 +21388 955 college football games 2 +21389 955 football games 2 +21390 955 football 2 +21391 956 What 's invigorating about it is that it does n't give a damn . 3 +21392 956 What 's invigorating about 3 +21393 956 's invigorating about 3 +21394 956 invigorating about 3 +21395 956 it is that it does n't give a damn . 1 +21396 956 is that it does n't give a damn . 2 +21397 956 is that it does n't give a damn 1 +21398 956 that it does n't give a damn 1 +21399 956 it does n't give a damn 1 +21400 956 does n't give a damn 2 +21401 956 give a damn 2 +21402 956 a damn 2 +21403 956 damn 1 +21404 957 Cacoyannis is perhaps too effective in creating an atmosphere of dust-caked stagnation and labored gentility . 2 +21405 957 is perhaps too effective in creating an atmosphere of dust-caked stagnation and labored gentility . 1 +21406 957 is perhaps too effective in creating an atmosphere of dust-caked stagnation and labored gentility 0 +21407 957 is perhaps too effective in creating an atmosphere of dust-caked stagnation and 1 +21408 957 is perhaps too effective in creating an atmosphere of dust-caked stagnation 1 +21409 957 is perhaps 2 +21410 957 too effective in creating an atmosphere of dust-caked stagnation 1 +21411 957 effective in creating an atmosphere of dust-caked stagnation 1 +21412 957 in creating an atmosphere of dust-caked stagnation 2 +21413 957 creating an atmosphere of dust-caked stagnation 1 +21414 957 an atmosphere of dust-caked stagnation 1 +21415 957 an atmosphere 2 +21416 957 of dust-caked stagnation 2 +21417 957 dust-caked stagnation 1 +21418 957 dust-caked 1 +21419 957 stagnation 1 +21420 957 labored gentility 1 +21421 957 labored 1 +21422 957 gentility 2 +21423 958 An entertaining , if ultimately minor , thriller . 3 +21424 958 An entertaining , if ultimately minor , thriller 2 +21425 958 entertaining , if ultimately minor , thriller 3 +21426 958 entertaining , if ultimately minor , 3 +21427 958 , if ultimately minor , 2 +21428 958 if ultimately minor , 2 +21429 958 ultimately minor , 2 +21430 958 minor , 2 +21431 959 The real star of this movie is the score , as in the songs translate well to film , and it 's really well directed . 3 +21432 959 The real star of this movie is the score , as in the songs translate well to film , and it 's really well directed 3 +21433 959 The real star of this movie is the score , as in the songs translate well to film , and 3 +21434 959 The real star of this movie is the score , as in the songs translate well to film , 3 +21435 959 The real star of this movie is the score , as in the songs translate well to film 3 +21436 959 The real star of this movie 2 +21437 959 The real star 2 +21438 959 real star 3 +21439 959 of this movie 2 +21440 959 is the score , as in the songs translate well to film 4 +21441 959 is the score , 2 +21442 959 is the score 2 +21443 959 the score 2 +21444 959 score 3 +21445 959 as in the songs translate well to film 3 +21446 959 in the songs translate well to film 3 +21447 959 the songs translate well to film 3 +21448 959 the songs 2 +21449 959 songs 2 +21450 959 translate well to film 3 +21451 959 translate well 3 +21452 959 translate 2 +21453 959 to film 2 +21454 959 it 's really well directed 4 +21455 959 's really well directed 4 +21456 959 's really 2 +21457 959 well directed 4 +21458 960 Punitively affirmational parable . 2 +21459 960 Punitively affirmational 3 +21460 960 Punitively 2 +21461 960 affirmational 2 +21462 960 parable . 2 +21463 961 Demme finally succeeds in diminishing his stature from Oscar-winning master to lowly studio hack . 1 +21464 961 finally succeeds in diminishing his stature from Oscar-winning master to lowly studio hack . 0 +21465 961 succeeds in diminishing his stature from Oscar-winning master to lowly studio hack . 0 +21466 961 succeeds in diminishing his stature from Oscar-winning master to lowly studio hack 0 +21467 961 in diminishing his stature from Oscar-winning master to lowly studio hack 1 +21468 961 diminishing his stature from Oscar-winning master to lowly studio hack 0 +21469 961 diminishing his stature from Oscar-winning master 1 +21470 961 diminishing his stature 1 +21471 961 diminishing 2 +21472 961 his stature 2 +21473 961 stature 2 +21474 961 from Oscar-winning master 3 +21475 961 Oscar-winning master 3 +21476 961 Oscar-winning 4 +21477 961 to lowly studio hack 1 +21478 961 lowly studio hack 1 +21479 961 lowly 2 +21480 961 studio hack 1 +21481 961 studio 2 +21482 962 Horrid little propaganda film with fascinating connections not only to the Serbs themselves but also to a network of American right-wing extremists . 3 +21483 962 Horrid little propaganda film with fascinating connections not only to the Serbs themselves but also to a network of American right-wing extremists 2 +21484 962 Horrid little propaganda film with fascinating connections 2 +21485 962 Horrid little propaganda film 0 +21486 962 Horrid 1 +21487 962 little propaganda film 1 +21488 962 propaganda film 1 +21489 962 propaganda 1 +21490 962 with fascinating connections 3 +21491 962 fascinating connections 3 +21492 962 not only to the Serbs themselves but also to a network of American right-wing extremists 2 +21493 962 to the Serbs themselves but also to a network of American right-wing extremists 1 +21494 962 to the Serbs themselves but also 2 +21495 962 to the Serbs themselves 3 +21496 962 the Serbs themselves 3 +21497 962 the Serbs 2 +21498 962 Serbs 2 +21499 962 themselves 2 +21500 962 to a network of American right-wing extremists 2 +21501 962 a network of American right-wing extremists 2 +21502 962 a network 2 +21503 962 network 2 +21504 962 of American right-wing extremists 2 +21505 962 American right-wing extremists 2 +21506 962 right-wing extremists 2 +21507 962 right-wing 2 +21508 962 extremists 2 +21509 963 Star\/producer Salma Hayek and director Julie Taymor have infused Frida with a visual style unique and inherent to the titular character 's paintings and in the process created a masterful work of art of their own . 3 +21510 963 Star\/producer Salma Hayek and director Julie Taymor 2 +21511 963 Star\/producer 2 +21512 963 Salma Hayek and director Julie Taymor 2 +21513 963 Salma 2 +21514 963 Hayek and director Julie Taymor 2 +21515 963 Hayek 2 +21516 963 and director Julie Taymor 2 +21517 963 director Julie Taymor 2 +21518 963 Julie Taymor 2 +21519 963 Taymor 2 +21520 963 have infused Frida with a visual style unique and inherent to the titular character 's paintings and in the process created a masterful work of art of their own . 4 +21521 963 have infused Frida with a visual style unique and inherent to the titular character 's paintings and in the process created a masterful work of art of their own 4 +21522 963 infused Frida with a visual style unique and inherent to the titular character 's paintings and in the process created a masterful work of art of their own 3 +21523 963 infused Frida with a visual style unique and inherent 3 +21524 963 infused 2 +21525 963 Frida with a visual style unique and inherent 3 +21526 963 Frida 2 +21527 963 with a visual style unique and inherent 3 +21528 963 a visual style unique and inherent 3 +21529 963 a visual style 2 +21530 963 visual style 3 +21531 963 unique and inherent 3 +21532 963 unique and 3 +21533 963 inherent 2 +21534 963 to the titular character 's paintings and in the process created a masterful work of art of their own 4 +21535 963 to the titular character 's paintings and 2 +21536 963 to the titular character 's paintings 2 +21537 963 the titular character 's paintings 2 +21538 963 the titular character 's 2 +21539 963 titular character 's 2 +21540 963 character 's 2 +21541 963 paintings 2 +21542 963 in the process created a masterful work of art of their own 3 +21543 963 the process created a masterful work of art of their own 4 +21544 963 created a masterful work of art of their own 4 +21545 963 a masterful work of art of their own 4 +21546 963 a masterful work 4 +21547 963 masterful work 4 +21548 963 of art of their own 2 +21549 963 art of their own 2 +21550 963 of their own 2 +21551 964 This one is not nearly as dreadful as expected . 3 +21552 964 is not nearly as dreadful as expected . 2 +21553 964 is not nearly as dreadful as expected 2 +21554 964 nearly as dreadful as expected 0 +21555 964 nearly as dreadful 0 +21556 964 as dreadful 1 +21557 964 as expected 2 +21558 965 But ... in trying to capture the novel 's deeper intimate resonances , the film has -- ironically - distanced us from the characters . 1 +21559 965 ... in trying to capture the novel 's deeper intimate resonances , the film has -- ironically - distanced us from the characters . 1 +21560 965 ... in trying to capture the novel 's deeper intimate resonances , the film has -- ironically - 2 +21561 965 ... in trying to capture the novel 's deeper intimate resonances , the film has 2 +21562 965 in trying to capture the novel 's deeper intimate resonances , the film has 2 +21563 965 trying to capture the novel 's deeper intimate resonances , the film has 2 +21564 965 to capture the novel 's deeper intimate resonances , the film has 2 +21565 965 to capture the novel 's deeper intimate resonances 3 +21566 965 capture the novel 's deeper intimate resonances 3 +21567 965 the novel 's deeper intimate resonances 2 +21568 965 the novel 's 2 +21569 965 novel 's 2 +21570 965 deeper intimate resonances 2 +21571 965 deeper intimate 2 +21572 965 resonances 2 +21573 965 , the film has 2 +21574 965 the film has 2 +21575 965 -- ironically - 2 +21576 965 ironically - 2 +21577 965 ironically 2 +21578 965 distanced us from the characters . 1 +21579 965 distanced us from the characters 1 +21580 965 distanced us 1 +21581 965 distanced 2 +21582 965 from the characters 3 +21583 966 Real Women Have Curves wears its empowerment on its sleeve but even its worst harangues are easy to swallow thanks to remarkable performances by Ferrera and Ontiveros . 3 +21584 966 Real Women Have Curves wears its empowerment on its sleeve but even its worst harangues are easy to swallow thanks to remarkable performances by Ferrera and Ontiveros 3 +21585 966 Real Women Have Curves wears its empowerment on its sleeve but even 3 +21586 966 Real Women Have Curves wears its empowerment on its sleeve but 2 +21587 966 Real Women Have Curves wears its empowerment on its sleeve 3 +21588 966 Real Women Have Curves 2 +21589 966 Women Have Curves 2 +21590 966 Have Curves 2 +21591 966 Curves 3 +21592 966 wears its empowerment on its sleeve 3 +21593 966 wears its empowerment 3 +21594 966 its empowerment 3 +21595 966 empowerment 3 +21596 966 on its sleeve 2 +21597 966 its sleeve 2 +21598 966 sleeve 2 +21599 966 its worst harangues are easy to swallow thanks to remarkable performances by Ferrera and Ontiveros 3 +21600 966 its worst harangues 1 +21601 966 worst harangues 1 +21602 966 harangues 2 +21603 966 are easy to swallow thanks to remarkable performances by Ferrera and Ontiveros 3 +21604 966 easy to swallow thanks to remarkable performances by Ferrera and Ontiveros 3 +21605 966 to swallow thanks to remarkable performances by Ferrera and Ontiveros 4 +21606 966 swallow thanks to remarkable performances by Ferrera and Ontiveros 3 +21607 966 swallow thanks to remarkable performances 3 +21608 966 thanks to remarkable performances 4 +21609 966 to remarkable performances 4 +21610 966 remarkable performances 4 +21611 966 by Ferrera and Ontiveros 2 +21612 966 Ferrera and Ontiveros 2 +21613 966 Ferrera and 2 +21614 966 Ferrera 2 +21615 966 Ontiveros 2 +21616 967 There 's a whole heap of nothing at the core of this slight coming-of-age\/coming-out tale . 1 +21617 967 's a whole heap of nothing at the core of this slight coming-of-age\/coming-out tale . 0 +21618 967 's a whole heap of nothing at the core of this slight coming-of-age\/coming-out tale 0 +21619 967 a whole heap of nothing at the core of this slight coming-of-age\/coming-out tale 0 +21620 967 a whole heap 1 +21621 967 whole heap 2 +21622 967 heap 2 +21623 967 of nothing at the core of this slight coming-of-age\/coming-out tale 1 +21624 967 nothing at the core of this slight coming-of-age\/coming-out tale 1 +21625 967 at the core of this slight coming-of-age\/coming-out tale 2 +21626 967 the core of this slight coming-of-age\/coming-out tale 2 +21627 967 the core 2 +21628 967 of this slight coming-of-age\/coming-out tale 2 +21629 967 this slight coming-of-age\/coming-out tale 2 +21630 967 slight coming-of-age\/coming-out tale 2 +21631 967 coming-of-age\/coming-out tale 2 +21632 967 coming-of-age\/coming-out 2 +21633 968 A sensitive , moving , brilliantly constructed work . 4 +21634 968 A sensitive , moving , 3 +21635 968 A sensitive , moving 3 +21636 968 A sensitive , 2 +21637 968 A sensitive 2 +21638 968 sensitive 2 +21639 968 brilliantly constructed work . 3 +21640 968 brilliantly constructed work 4 +21641 968 constructed work 2 +21642 969 It pulls the rug out from under you , just when you 're ready to hate one character , or really sympathize with another character , something happens to send you off in different direction . 2 +21643 969 It pulls the rug out from under you , just when you 're ready to hate one character , or really sympathize with another character 3 +21644 969 pulls the rug out from under you , just when you 're ready to hate one character , or really sympathize with another character 3 +21645 969 the rug out from under you , just when you 're ready to hate one character , or really sympathize with another character 2 +21646 969 the rug out 2 +21647 969 the rug 2 +21648 969 rug 2 +21649 969 from under you , just when you 're ready to hate one character , or really sympathize with another character 2 +21650 969 under you , just when you 're ready to hate one character , or really sympathize with another character 2 +21651 969 you , just when you 're ready to hate one character , or really sympathize with another character 2 +21652 969 you , 2 +21653 969 just when you 're ready to hate one character , or really sympathize with another character 2 +21654 969 just when 2 +21655 969 you 're ready to hate one character , or really sympathize with another character 2 +21656 969 're ready to hate one character , or really sympathize with another character 3 +21657 969 're ready to hate one character , or 2 +21658 969 're ready to hate one character , 1 +21659 969 're ready to hate one character 2 +21660 969 ready to hate one character 1 +21661 969 to hate one character 2 +21662 969 hate one character 1 +21663 969 really sympathize with another character 2 +21664 969 sympathize with another character 2 +21665 969 sympathize 2 +21666 969 with another character 2 +21667 969 another character 3 +21668 969 , something happens to send you off in different direction . 2 +21669 969 something happens to send you off in different direction . 2 +21670 969 happens to send you off in different direction . 2 +21671 969 happens to send you off in different direction 2 +21672 969 happens 2 +21673 969 to send you off in different direction 2 +21674 969 send you off in different direction 2 +21675 969 send you off 2 +21676 969 send you 2 +21677 969 in different direction 2 +21678 969 different direction 2 +21679 970 The art direction is often exquisite , and the anthropomorphic animal characters are beautifully realized through clever makeup design , leaving one to hope that the eventual DVD release will offer subtitles and the original Italian-language soundtrack . 4 +21680 970 The art direction is often exquisite , and the anthropomorphic animal characters are beautifully realized through clever makeup design , leaving one to hope that the eventual DVD release will offer subtitles and the original Italian-language soundtrack 4 +21681 970 The art direction is often exquisite , and 3 +21682 970 The art direction is often exquisite , 4 +21683 970 The art direction is often exquisite 4 +21684 970 The art direction 2 +21685 970 art direction 2 +21686 970 is often exquisite 4 +21687 970 often exquisite 3 +21688 970 exquisite 4 +21689 970 the anthropomorphic animal characters are beautifully realized through clever makeup design , leaving one to hope that the eventual DVD release will offer subtitles and the original Italian-language soundtrack 3 +21690 970 the anthropomorphic animal characters 2 +21691 970 anthropomorphic animal characters 2 +21692 970 anthropomorphic 3 +21693 970 animal characters 2 +21694 970 animal 3 +21695 970 are beautifully realized through clever makeup design , leaving one to hope that the eventual DVD release will offer subtitles and the original Italian-language soundtrack 3 +21696 970 are beautifully 3 +21697 970 realized through clever makeup design , leaving one to hope that the eventual DVD release will offer subtitles and the original Italian-language soundtrack 2 +21698 970 realized through clever makeup design , 3 +21699 970 realized through clever makeup design 3 +21700 970 realized 2 +21701 970 through clever makeup design 3 +21702 970 clever makeup design 3 +21703 970 makeup design 2 +21704 970 makeup 2 +21705 970 leaving one to hope that the eventual DVD release will offer subtitles and the original Italian-language soundtrack 2 +21706 970 leaving one 2 +21707 970 to hope that the eventual DVD release will offer subtitles and the original Italian-language soundtrack 2 +21708 970 hope that the eventual DVD release will offer subtitles and the original Italian-language soundtrack 2 +21709 970 that the eventual DVD release will offer subtitles and the original Italian-language soundtrack 2 +21710 970 the eventual DVD release will offer subtitles and the original Italian-language soundtrack 2 +21711 970 the eventual DVD release 2 +21712 970 eventual DVD release 2 +21713 970 eventual 2 +21714 970 DVD release 2 +21715 970 will offer subtitles and the original Italian-language soundtrack 2 +21716 970 offer subtitles and the original Italian-language soundtrack 2 +21717 970 subtitles and the original Italian-language soundtrack 2 +21718 970 subtitles and 2 +21719 970 subtitles 2 +21720 970 the original Italian-language soundtrack 2 +21721 970 original Italian-language soundtrack 2 +21722 970 Italian-language soundtrack 2 +21723 970 Italian-language 2 +21724 971 It 's probably not easy to make such a worthless film ... 0 +21725 971 's probably not easy to make such a worthless film ... 0 +21726 971 's probably not easy to make such a worthless film 0 +21727 971 easy to make such a worthless film 0 +21728 971 to make such a worthless film 1 +21729 971 make such a worthless film 1 +21730 971 such a worthless film 0 +21731 971 a worthless film 0 +21732 971 worthless film 1 +21733 971 worthless 0 +21734 972 The creative animation work may not look as fully ` rendered ' as Pixar 's industry standard , but it uses lighting effects and innovative backgrounds to an equally impressive degree . 3 +21735 972 The creative animation work may not look as fully ` rendered ' as Pixar 's industry standard , but it uses lighting effects and innovative backgrounds to an equally impressive degree 3 +21736 972 The creative animation work may not look as fully ` rendered ' as Pixar 's industry standard , but 2 +21737 972 The creative animation work may not look as fully ` rendered ' as Pixar 's industry standard , 1 +21738 972 The creative animation work may not look as fully ` rendered ' as Pixar 's industry standard 2 +21739 972 The creative animation work 3 +21740 972 creative animation work 3 +21741 972 animation work 3 +21742 972 may not look as fully ` rendered ' as Pixar 's industry standard 1 +21743 972 look as fully ` rendered ' as Pixar 's industry standard 3 +21744 972 as fully ` rendered ' as Pixar 's industry standard 2 +21745 972 fully ` rendered ' as Pixar 's industry standard 2 +21746 972 fully ` rendered ' 3 +21747 972 ` rendered ' 2 +21748 972 rendered ' 2 +21749 972 rendered 2 +21750 972 as Pixar 's industry standard 2 +21751 972 Pixar 's industry standard 2 +21752 972 Pixar 's 3 +21753 972 Pixar 2 +21754 972 industry standard 2 +21755 972 industry 2 +21756 972 it uses lighting effects and innovative backgrounds to an equally impressive degree 3 +21757 972 uses lighting effects and innovative backgrounds to an equally impressive degree 3 +21758 972 uses lighting effects and innovative backgrounds 3 +21759 972 lighting effects and innovative backgrounds 3 +21760 972 lighting effects and 3 +21761 972 lighting effects 2 +21762 972 lighting 2 +21763 972 innovative backgrounds 3 +21764 972 innovative 3 +21765 972 backgrounds 2 +21766 972 to an equally impressive degree 2 +21767 972 an equally impressive degree 3 +21768 972 equally impressive degree 4 +21769 972 equally impressive 3 +21770 972 equally 2 +21771 973 An often unfunny romp . 2 +21772 973 An often unfunny 1 +21773 973 often unfunny 1 +21774 973 unfunny 1 +21775 973 romp . 2 +21776 974 It makes sense that he went back to school to check out the girls -- his film is a frat boy 's idea of a good time . 2 +21777 974 It makes sense that he went back to school to check out the girls -- his film is a frat boy 's idea of a good time 2 +21778 974 It makes sense that he went back to school to check out the girls -- 2 +21779 974 It makes sense that he went back to school to check out the girls 2 +21780 974 makes sense that he went back to school to check out the girls 2 +21781 974 makes sense 2 +21782 974 that he went back to school to check out the girls 2 +21783 974 he went back to school to check out the girls 2 +21784 974 went back to school to check out the girls 2 +21785 974 went back to school 2 +21786 974 went back 3 +21787 974 went 2 +21788 974 to school 2 +21789 974 to check out the girls 2 +21790 974 check out the girls 2 +21791 974 check out 2 +21792 974 the girls 2 +21793 974 his film is a frat boy 's idea of a good time 2 +21794 974 is a frat boy 's idea of a good time 1 +21795 974 a frat boy 's idea of a good time 2 +21796 974 a frat boy 's idea 1 +21797 974 a frat boy 's 2 +21798 974 frat boy 's 2 +21799 974 frat 2 +21800 974 boy 's 2 +21801 974 of a good time 3 +21802 975 Clever but not especially compelling . 2 +21803 975 Clever but not especially compelling 2 +21804 975 but not especially compelling 1 +21805 975 especially compelling 3 +21806 976 An EXIT sign , that is . 1 +21807 976 An EXIT sign 2 +21808 976 , that is . 2 +21809 976 that is . 2 +21810 976 that is 2 +21811 977 It 's an actor 's showcase that accomplishes its primary goal without the use of special effects , but rather by emphasizing the characters -- including the supporting ones . 2 +21812 977 's an actor 's showcase that accomplishes its primary goal without the use of special effects , but rather by emphasizing the characters -- including the supporting ones . 3 +21813 977 's an actor 's showcase that accomplishes its primary goal without the use of special effects , but rather by emphasizing the characters -- including the supporting ones 3 +21814 977 's an actor 's showcase that accomplishes its primary goal without the use of special effects , but rather by emphasizing the characters -- 3 +21815 977 's an actor 's showcase that accomplishes its primary goal without the use of special effects , but rather by emphasizing the characters 3 +21816 977 an actor 's showcase that accomplishes its primary goal without the use of special effects , but rather by emphasizing the characters 3 +21817 977 an actor 's 2 +21818 977 showcase that accomplishes its primary goal without the use of special effects , but rather by emphasizing the characters 3 +21819 977 showcase 2 +21820 977 that accomplishes its primary goal without the use of special effects , but rather by emphasizing the characters 4 +21821 977 accomplishes its primary goal without the use of special effects , but rather by emphasizing the characters 3 +21822 977 accomplishes its primary goal 4 +21823 977 its primary goal 2 +21824 977 without the use of special effects , but rather by emphasizing the characters 3 +21825 977 without the use of special effects 2 +21826 977 the use of special effects 2 +21827 977 the use 2 +21828 977 of special effects 2 +21829 977 , but rather by emphasizing the characters 3 +21830 977 but rather by emphasizing the characters 2 +21831 977 rather by emphasizing the characters 2 +21832 977 by emphasizing the characters 2 +21833 977 emphasizing the characters 2 +21834 977 emphasizing 3 +21835 977 including the supporting ones 2 +21836 977 including 2 +21837 977 the supporting ones 2 +21838 977 supporting ones 2 +21839 977 supporting 3 +21840 978 The Emperor 's Club , ruthless in its own placid way , finds one of our most conservative and hidebound movie-making traditions and gives it new texture , new relevance , new reality . 4 +21841 978 The Emperor 's Club , ruthless in its own placid way , 1 +21842 978 The Emperor 's Club , ruthless in its own placid way 3 +21843 978 The Emperor 's Club , 3 +21844 978 The Emperor 's Club 2 +21845 978 The Emperor 's 2 +21846 978 Emperor 's 2 +21847 978 Emperor 2 +21848 978 Club 2 +21849 978 ruthless in its own placid way 1 +21850 978 in its own placid way 2 +21851 978 its own placid way 2 +21852 978 own placid way 1 +21853 978 placid way 2 +21854 978 placid 2 +21855 978 finds one of our most conservative and hidebound movie-making traditions and gives it new texture , new relevance , new reality . 3 +21856 978 finds one of our most conservative and hidebound movie-making traditions and gives it new texture , new relevance , new reality 3 +21857 978 finds one of our most conservative and hidebound movie-making traditions and 2 +21858 978 finds one of our most conservative and hidebound movie-making traditions 2 +21859 978 finds 2 +21860 978 one of our most conservative and hidebound movie-making traditions 2 +21861 978 of our most conservative and hidebound movie-making traditions 1 +21862 978 our most conservative and hidebound movie-making traditions 3 +21863 978 most conservative and hidebound movie-making traditions 2 +21864 978 most conservative and hidebound 2 +21865 978 conservative and hidebound 2 +21866 978 conservative and 2 +21867 978 conservative 2 +21868 978 hidebound 2 +21869 978 movie-making traditions 2 +21870 978 movie-making 2 +21871 978 traditions 2 +21872 978 gives it new texture , new relevance , new reality 3 +21873 978 gives it 2 +21874 978 new texture , new relevance , new reality 3 +21875 978 new texture , 2 +21876 978 new texture 2 +21877 978 texture 2 +21878 978 new relevance , new reality 2 +21879 978 new relevance , 3 +21880 978 new relevance 2 +21881 978 relevance 2 +21882 978 new reality 2 +21883 979 ... if it had been only half-an-hour long or a TV special , the humor would have been fast and furious -- at ninety minutes , it drags . 1 +21884 979 if it had been only half-an-hour long or a TV special , the humor would have been fast and furious -- at ninety minutes , it drags . 1 +21885 979 if it had been only half-an-hour long or a TV special , the humor would have been fast and furious -- at ninety minutes , it drags 1 +21886 979 if it had been only half-an-hour long or a TV special , the humor would have been fast and furious -- 2 +21887 979 if it had been only half-an-hour long or a TV special , the humor would have been fast and furious 2 +21888 979 if it had been only half-an-hour long or a TV special 2 +21889 979 it had been only half-an-hour long or a TV special 1 +21890 979 had been only half-an-hour long or a TV special 2 +21891 979 been only half-an-hour long or a TV special 2 +21892 979 only half-an-hour long or a TV special 2 +21893 979 only half-an-hour long or 1 +21894 979 only half-an-hour long 2 +21895 979 half-an-hour long 2 +21896 979 half-an-hour 2 +21897 979 a TV special 2 +21898 979 TV special 2 +21899 979 , the humor would have been fast and furious 2 +21900 979 the humor would have been fast and furious 2 +21901 979 would have been fast and furious 2 +21902 979 have been fast and furious 2 +21903 979 been fast and furious 2 +21904 979 fast and furious 2 +21905 979 furious 1 +21906 979 at ninety minutes , it drags 1 +21907 979 at ninety minutes 2 +21908 979 at ninety 2 +21909 979 ninety 2 +21910 979 , it drags 1 +21911 979 it drags 1 +21912 979 drags 1 +21913 980 Its compelling mix of trial movie , escape movie and unexpected fable ensures the film never feels draggy . 3 +21914 980 Its compelling mix of trial movie , escape movie and unexpected fable 4 +21915 980 Its compelling mix 3 +21916 980 compelling mix 3 +21917 980 of trial movie , escape movie and unexpected fable 2 +21918 980 trial movie , escape movie and unexpected fable 4 +21919 980 trial movie , escape movie and 2 +21920 980 trial movie , escape movie 2 +21921 980 trial movie , 2 +21922 980 trial movie 3 +21923 980 trial 2 +21924 980 escape movie 2 +21925 980 unexpected fable 3 +21926 980 ensures the film never feels draggy . 3 +21927 980 ensures the film never feels draggy 3 +21928 980 the film never feels draggy 3 +21929 980 never feels draggy 3 +21930 980 feels draggy 1 +21931 980 draggy 1 +21932 981 It drowns in sap . 1 +21933 981 drowns in sap . 0 +21934 981 drowns in sap 2 +21935 981 drowns 2 +21936 981 in sap 2 +21937 981 sap 2 +21938 982 ` Rare Birds ' tries to force its quirkiness upon the audience . 2 +21939 982 Rare Birds ' tries to force its quirkiness upon the audience . 1 +21940 982 Rare Birds 2 +21941 982 Birds 2 +21942 982 ' tries to force its quirkiness upon the audience . 1 +21943 982 tries to force its quirkiness upon the audience . 1 +21944 982 tries to force its quirkiness upon the audience 1 +21945 982 to force its quirkiness upon the audience 2 +21946 982 force its quirkiness upon the audience 2 +21947 982 force its quirkiness 1 +21948 982 its quirkiness 2 +21949 982 quirkiness 2 +21950 982 upon the audience 2 +21951 983 A solid and refined piece of moviemaking imbued with passion and attitude . 4 +21952 983 A solid and refined piece of moviemaking 3 +21953 983 A solid and refined piece 3 +21954 983 solid and refined piece 3 +21955 983 and refined piece 3 +21956 983 refined piece 3 +21957 983 refined 3 +21958 983 of moviemaking 2 +21959 983 imbued with passion and attitude . 3 +21960 983 imbued with passion and attitude 4 +21961 983 with passion and attitude 3 +21962 983 passion and attitude 3 +21963 983 passion and 2 +21964 984 `` Red Dragon '' never cuts corners . 3 +21965 984 Red Dragon '' never cuts corners . 4 +21966 984 Red Dragon 2 +21967 984 Dragon 3 +21968 984 '' never cuts corners . 3 +21969 984 never cuts corners . 3 +21970 984 never cuts corners 2 +21971 984 cuts corners 1 +21972 985 modeled 2 +21973 985 revenge-of-the-nerds 2 +21974 985 the filmmakers could dredge up 1 +21975 985 could dredge up 1 +21976 985 dredge up 1 +21977 985 dredge 1 +21978 986 Alternative medicine obviously has its merits ... but Ayurveda does the field no favors . 1 +21979 986 Alternative medicine obviously has its merits ... but Ayurveda does the field no favors 2 +21980 986 Alternative medicine obviously has its merits ... but 2 +21981 986 Alternative medicine obviously has its merits ... 2 +21982 986 Alternative medicine obviously has its merits 2 +21983 986 Alternative medicine 2 +21984 986 medicine 3 +21985 986 obviously has its merits 3 +21986 986 has its merits 3 +21987 986 its merits 2 +21988 986 merits 3 +21989 986 Ayurveda does the field no favors 1 +21990 986 Ayurveda 2 +21991 986 does the field no favors 1 +21992 986 the field no favors 1 +21993 986 the field no 2 +21994 986 field no 2 +21995 987 Bland but harmless . 1 +21996 987 Bland but harmless 2 +21997 987 Bland but 2 +21998 988 Viewers are asked so often to suspend belief that were it not for Holm 's performance , the film would be a total washout . 1 +21999 988 Viewers are asked so often to suspend belief that were it not for Holm 's performance 1 +22000 988 Viewers 2 +22001 988 are asked so often to suspend belief that were it not for Holm 's performance 2 +22002 988 asked so often to suspend belief that were it not for Holm 's performance 2 +22003 988 asked so often 2 +22004 988 asked 2 +22005 988 so often 2 +22006 988 to suspend belief that were it not for Holm 's performance 2 +22007 988 suspend belief that were it not for Holm 's performance 2 +22008 988 suspend 2 +22009 988 belief that were it not for Holm 's performance 2 +22010 988 belief 2 +22011 988 that were it not for Holm 's performance 2 +22012 988 were it not for Holm 's performance 2 +22013 988 not for Holm 's performance 2 +22014 988 for Holm 's performance 2 +22015 988 Holm 's performance 2 +22016 988 Holm 's 2 +22017 988 , the film would be a total washout . 1 +22018 988 the film would be a total washout . 0 +22019 988 would be a total washout . 1 +22020 988 would be a total washout 1 +22021 988 be a total washout 1 +22022 988 a total washout 1 +22023 988 total washout 2 +22024 988 total 2 +22025 988 washout 2 +22026 989 A small fortune in salaries and stunt cars might have been saved if the director , Tom Dey , had spliced together bits and pieces of Midnight Run and 48 Hours -LRB- and , for that matter , Shrek -RRB- . 1 +22027 989 A small fortune in salaries and stunt cars 1 +22028 989 A small fortune 2 +22029 989 small fortune 2 +22030 989 fortune 2 +22031 989 in salaries and stunt cars 2 +22032 989 salaries and stunt cars 2 +22033 989 salaries 2 +22034 989 and stunt cars 2 +22035 989 stunt cars 2 +22036 989 stunt 2 +22037 989 cars 2 +22038 989 might have been saved if the director , Tom Dey , had spliced together bits and pieces of Midnight Run and 48 Hours -LRB- and , for that matter , Shrek -RRB- . 0 +22039 989 might have been saved if the director , Tom Dey , had spliced together bits and pieces of Midnight Run and 48 Hours -LRB- and , for that matter , Shrek -RRB- 1 +22040 989 have been saved if the director , Tom Dey , had spliced together bits and pieces of Midnight Run and 48 Hours -LRB- and , for that matter , Shrek -RRB- 1 +22041 989 been saved if the director , Tom Dey , had spliced together bits and pieces of Midnight Run and 48 Hours -LRB- and , for that matter , Shrek -RRB- 1 +22042 989 saved if the director , Tom Dey , had spliced together bits and pieces of Midnight Run and 48 Hours -LRB- and , for that matter , Shrek -RRB- 1 +22043 989 if the director , Tom Dey , had spliced together bits and pieces of Midnight Run and 48 Hours -LRB- and , for that matter , Shrek -RRB- 1 +22044 989 the director , Tom Dey , had spliced together bits and pieces of Midnight Run and 48 Hours -LRB- and , for that matter , Shrek -RRB- 3 +22045 989 the director , Tom Dey , 2 +22046 989 the director , Tom Dey 2 +22047 989 the director , 2 +22048 989 Tom Dey 2 +22049 989 Dey 2 +22050 989 had spliced together bits and pieces of Midnight Run and 48 Hours -LRB- and , for that matter , Shrek -RRB- 2 +22051 989 spliced together bits and pieces of Midnight Run and 48 Hours -LRB- and , for that matter , Shrek -RRB- 1 +22052 989 spliced together 2 +22053 989 spliced 2 +22054 989 bits and pieces of Midnight Run and 48 Hours -LRB- and , for that matter , Shrek -RRB- 2 +22055 989 bits and pieces of Midnight Run and 48 Hours 2 +22056 989 bits and pieces 2 +22057 989 bits and 2 +22058 989 of Midnight Run and 48 Hours 2 +22059 989 Midnight Run and 48 Hours 2 +22060 989 Midnight Run and 2 +22061 989 Midnight Run 2 +22062 989 48 Hours 2 +22063 989 48 2 +22064 989 -LRB- and , for that matter , Shrek -RRB- 2 +22065 989 and , for that matter , Shrek -RRB- 2 +22066 989 , for that matter , Shrek -RRB- 3 +22067 989 for that matter , Shrek -RRB- 3 +22068 989 , Shrek -RRB- 3 +22069 989 Shrek -RRB- 2 +22070 989 Shrek 3 +22071 990 It 's good to see Michael Caine whipping out the dirty words and punching people in the stomach again . 3 +22072 990 's good to see Michael Caine whipping out the dirty words and punching people in the stomach again . 4 +22073 990 's good to see Michael Caine whipping out the dirty words and punching people in the stomach again 3 +22074 990 good to see Michael Caine whipping out the dirty words and punching people in the stomach again 3 +22075 990 to see Michael Caine whipping out the dirty words and punching people in the stomach again 2 +22076 990 see Michael Caine whipping out the dirty words and punching people in the stomach again 2 +22077 990 Michael Caine whipping out the dirty words and punching people in the stomach again 2 +22078 990 Michael Caine 2 +22079 990 Caine 2 +22080 990 whipping out the dirty words and punching people in the stomach again 2 +22081 990 whipping out the dirty words and 2 +22082 990 whipping out the dirty words 1 +22083 990 whipping out 2 +22084 990 whipping 1 +22085 990 the dirty words 2 +22086 990 dirty words 2 +22087 990 dirty 2 +22088 990 punching people in the stomach again 1 +22089 990 punching people in the stomach 2 +22090 990 punching 2 +22091 990 people in the stomach 2 +22092 990 in the stomach 2 +22093 990 the stomach 2 +22094 990 stomach 2 +22095 991 No Such Thing breaks no new ground and treads old turf like a hippopotamus ballerina . 1 +22096 991 No Such Thing 2 +22097 991 Such Thing 2 +22098 991 breaks no new ground and treads old turf like a hippopotamus ballerina . 2 +22099 991 breaks no new ground and treads old turf like a hippopotamus ballerina 1 +22100 991 breaks no new ground and 1 +22101 991 breaks no new ground 1 +22102 991 breaks 2 +22103 991 no new ground 2 +22104 991 new ground 3 +22105 991 ground 2 +22106 991 treads old turf like a hippopotamus ballerina 1 +22107 991 treads old turf 1 +22108 991 treads 2 +22109 991 old turf 2 +22110 991 turf 2 +22111 991 like a hippopotamus ballerina 2 +22112 991 a hippopotamus ballerina 2 +22113 991 hippopotamus ballerina 2 +22114 991 hippopotamus 2 +22115 991 ballerina 2 +22116 992 The film exudes the urbane sweetness that Woody Allen seems to have bitterly forsaken . 3 +22117 992 exudes the urbane sweetness that Woody Allen seems to have bitterly forsaken . 3 +22118 992 exudes the urbane sweetness that Woody Allen seems to have bitterly forsaken 3 +22119 992 exudes the urbane sweetness 3 +22120 992 exudes 3 +22121 992 the urbane sweetness 3 +22122 992 urbane sweetness 3 +22123 992 urbane 2 +22124 992 sweetness 3 +22125 992 that Woody Allen seems to have bitterly forsaken 2 +22126 992 Woody Allen seems to have bitterly forsaken 1 +22127 992 Woody Allen 2 +22128 992 Woody 2 +22129 992 seems to have bitterly forsaken 2 +22130 992 to have bitterly forsaken 1 +22131 992 have bitterly forsaken 1 +22132 992 bitterly forsaken 2 +22133 992 bitterly 1 +22134 992 forsaken 2 +22135 993 The script is a dim-witted pairing of teen-speak and animal gibberish . 1 +22136 993 is a dim-witted pairing of teen-speak and animal gibberish . 1 +22137 993 is a dim-witted pairing of teen-speak and animal gibberish 0 +22138 993 a dim-witted pairing of teen-speak and animal gibberish 1 +22139 993 a dim-witted pairing 1 +22140 993 dim-witted pairing 1 +22141 993 dim-witted 1 +22142 993 of teen-speak and animal gibberish 1 +22143 993 teen-speak and animal gibberish 1 +22144 993 teen-speak and animal 2 +22145 993 teen-speak and 2 +22146 993 teen-speak 2 +22147 993 gibberish 1 +22148 994 Cedar somewhat defuses this provocative theme by submerging it in a hoary love triangle . 3 +22149 994 Cedar 2 +22150 994 somewhat defuses this provocative theme by submerging it in a hoary love triangle . 1 +22151 994 defuses this provocative theme by submerging it in a hoary love triangle . 3 +22152 994 defuses this provocative theme by submerging it in a hoary love triangle 2 +22153 994 defuses this provocative theme 2 +22154 994 defuses 2 +22155 994 this provocative theme 2 +22156 994 provocative theme 2 +22157 994 by submerging it in a hoary love triangle 2 +22158 994 submerging it in a hoary love triangle 2 +22159 994 submerging it 2 +22160 994 submerging 3 +22161 994 in a hoary love triangle 2 +22162 994 a hoary love triangle 2 +22163 994 hoary love triangle 2 +22164 994 hoary 1 +22165 994 love triangle 2 +22166 994 triangle 2 +22167 995 What might have emerged as hilarious lunacy in the hands of Woody Allen or Mel Brooks -LRB- at least during their '70s heyday -RRB- comes across as lame and sophomoric in this debut indie feature . 0 +22168 995 What might have emerged as hilarious lunacy in the hands of Woody Allen or Mel Brooks -LRB- at least during their '70s heyday -RRB- 2 +22169 995 What might have emerged as hilarious lunacy in the hands of Woody Allen or 4 +22170 995 What might have emerged as hilarious lunacy in the hands of Woody Allen 2 +22171 995 might have emerged as hilarious lunacy in the hands of Woody Allen 2 +22172 995 have emerged as hilarious lunacy in the hands of Woody Allen 3 +22173 995 emerged as hilarious lunacy in the hands of Woody Allen 3 +22174 995 emerged as hilarious lunacy 3 +22175 995 emerged 2 +22176 995 as hilarious lunacy 3 +22177 995 as hilarious 3 +22178 995 lunacy 1 +22179 995 in the hands of Woody Allen 2 +22180 995 the hands of Woody Allen 2 +22181 995 the hands 2 +22182 995 hands 2 +22183 995 of Woody Allen 2 +22184 995 Mel Brooks -LRB- at least during their '70s heyday -RRB- 2 +22185 995 Mel Brooks 2 +22186 995 Mel 1 +22187 995 Brooks 2 +22188 995 -LRB- at least during their '70s heyday -RRB- 2 +22189 995 at least during their '70s heyday -RRB- 2 +22190 995 at least during their '70s heyday 3 +22191 995 at least during their '70s 2 +22192 995 during their '70s 2 +22193 995 their '70s 2 +22194 995 '70s 2 +22195 995 heyday 2 +22196 995 comes across as lame and sophomoric in this debut indie feature . 1 +22197 995 comes across as lame and sophomoric in this debut indie feature 0 +22198 995 comes across as lame and sophomoric 0 +22199 995 across as lame and sophomoric 1 +22200 995 as lame and sophomoric 1 +22201 995 lame and sophomoric 0 +22202 995 lame and 1 +22203 995 lame 0 +22204 995 in this debut indie feature 2 +22205 995 this debut indie feature 2 +22206 995 debut indie feature 2 +22207 995 indie feature 2 +22208 996 I have not been this disappointed by a movie in a long time . 0 +22209 996 have not been this disappointed by a movie in a long time . 0 +22210 996 have not been this disappointed by a movie in a long time 0 +22211 996 been this disappointed by a movie in a long time 0 +22212 996 this disappointed by a movie in a long time 0 +22213 996 disappointed by a movie in a long time 1 +22214 996 disappointed by a movie 1 +22215 996 by a movie 2 +22216 996 in a long time 2 +22217 997 There 's not a comedic moment in this romantic comedy . 0 +22218 997 's not a comedic moment in this romantic comedy . 0 +22219 997 's not a comedic moment in this romantic comedy 0 +22220 997 a comedic moment in this romantic comedy 3 +22221 997 a comedic moment 3 +22222 997 comedic moment 2 +22223 997 in this romantic comedy 3 +22224 998 I admire it and yet can not recommend it , because it overstays its natural running time . 1 +22225 998 admire it and yet can not recommend it , because it overstays its natural running time . 1 +22226 998 admire it and yet can not recommend it , because it overstays its natural running time 2 +22227 998 admire it and 2 +22228 998 admire it 3 +22229 998 yet can not recommend it , because it overstays its natural running time 1 +22230 998 can not recommend it , because it overstays its natural running time 1 +22231 998 recommend it , because it overstays its natural running time 3 +22232 998 recommend it , 4 +22233 998 recommend it 3 +22234 998 because it overstays its natural running time 1 +22235 998 it overstays its natural running time 1 +22236 998 overstays its natural running time 1 +22237 998 overstays 1 +22238 998 its natural running time 2 +22239 998 natural running time 3 +22240 998 running time 2 +22241 999 There 's plenty to enjoy -- in no small part thanks to Lau . 3 +22242 999 's plenty to enjoy -- in no small part thanks to Lau . 3 +22243 999 's plenty to enjoy -- in no small part thanks to Lau 2 +22244 999 's plenty to enjoy -- 3 +22245 999 's plenty to enjoy 3 +22246 999 plenty to enjoy 3 +22247 999 to enjoy 3 +22248 999 in no small part thanks to Lau 3 +22249 999 no small part thanks to Lau 2 +22250 999 no small part thanks 2 +22251 999 small part thanks 3 +22252 999 part thanks 2 +22253 999 to Lau 2 +22254 999 Lau 2 +22255 1000 Action - mechanical . 1 +22256 1000 Action - mechanical 2 +22257 1000 Action - 2 +22258 1001 None of this is half as moving as the filmmakers seem to think . 1 +22259 1001 None of this 2 +22260 1001 of this 2 +22261 1001 is half as moving as the filmmakers seem to think . 1 +22262 1001 is half as moving as the filmmakers seem to think 2 +22263 1001 is half as 2 +22264 1001 half as 2 +22265 1001 moving as the filmmakers seem to think 2 +22266 1001 as the filmmakers seem to think 2 +22267 1001 the filmmakers seem to think 2 +22268 1001 seem to think 2 +22269 1001 to think 2 +22270 1002 An incredibly irritating comedy about thoroughly vacuous people ... manages to embody the worst excesses of nouvelle vague without any of its sense of fun or energy . 0 +22271 1002 An incredibly irritating comedy about thoroughly vacuous people 0 +22272 1002 An incredibly irritating comedy 0 +22273 1002 incredibly irritating comedy 0 +22274 1002 incredibly irritating 1 +22275 1002 incredibly 3 +22276 1002 about thoroughly vacuous people 1 +22277 1002 thoroughly vacuous people 2 +22278 1002 thoroughly vacuous 2 +22279 1002 thoroughly 2 +22280 1002 vacuous 1 +22281 1002 ... manages to embody the worst excesses of nouvelle vague without any of its sense of fun or energy . 1 +22282 1002 manages to embody the worst excesses of nouvelle vague without any of its sense of fun or energy . 1 +22283 1002 manages to embody the worst excesses of nouvelle vague without any of its sense of fun or energy 1 +22284 1002 to embody the worst excesses of nouvelle vague without any of its sense of fun or energy 1 +22285 1002 embody the worst excesses of nouvelle vague without any of its sense of fun or energy 0 +22286 1002 embody 2 +22287 1002 the worst excesses of nouvelle vague without any of its sense of fun or energy 2 +22288 1002 the worst excesses of nouvelle 1 +22289 1002 the worst excesses 1 +22290 1002 worst excesses 1 +22291 1002 excesses 2 +22292 1002 of nouvelle 2 +22293 1002 nouvelle 2 +22294 1002 vague without any of its sense of fun or energy 1 +22295 1002 vague 2 +22296 1002 without any of its sense of fun or energy 1 +22297 1002 any of its sense of fun or energy 2 +22298 1002 of its sense of fun or energy 3 +22299 1002 its sense of fun or energy 3 +22300 1002 of fun or energy 3 +22301 1002 fun or energy 3 +22302 1002 fun or 3 +22303 1003 Wait to see it then . 1 +22304 1003 Wait to see it then 1 +22305 1003 Wait 2 +22306 1003 to see it then 2 +22307 1003 see it then 2 +22308 1004 None of this is very original , and it is n't particularly funny . 0 +22309 1004 None of this is very original , and it is n't particularly funny 1 +22310 1004 None of this is very original , and 0 +22311 1004 None of this is very original , 2 +22312 1004 None of this is very original 0 +22313 1004 is very original 3 +22314 1004 very original 4 +22315 1004 it is n't particularly funny 1 +22316 1004 is n't particularly funny 1 +22317 1004 particularly funny 3 +22318 1005 -- was a fad that had long since vanished . 2 +22319 1005 was a fad that had long since vanished . 1 +22320 1005 was a fad that had long since vanished 2 +22321 1005 a fad that had long since vanished 1 +22322 1005 a fad 2 +22323 1005 fad 1 +22324 1005 that had long since vanished 2 +22325 1005 had long since vanished 2 +22326 1005 had long since 2 +22327 1005 long since 2 +22328 1005 vanished 2 +22329 1006 An uneasy mix of run-of-the-mill raunchy humor and seemingly sincere personal reflection . 1 +22330 1006 An uneasy mix of run-of-the-mill raunchy humor and seemingly sincere personal reflection 1 +22331 1006 An uneasy mix 1 +22332 1006 uneasy mix 1 +22333 1006 of run-of-the-mill raunchy humor and seemingly sincere personal reflection 2 +22334 1006 run-of-the-mill raunchy humor and seemingly sincere personal reflection 2 +22335 1006 run-of-the-mill raunchy humor and 1 +22336 1006 run-of-the-mill raunchy humor 2 +22337 1006 raunchy humor 2 +22338 1006 raunchy 2 +22339 1006 seemingly sincere personal reflection 3 +22340 1006 seemingly sincere 2 +22341 1006 seemingly 2 +22342 1006 personal reflection 2 +22343 1007 Should have been worth cheering as a breakthrough but is devoid of wit and humor . 1 +22344 1007 have been worth cheering as a breakthrough but is devoid of wit and humor . 2 +22345 1007 have been worth cheering as a breakthrough but is devoid of wit and humor 1 +22346 1007 have been worth cheering as a breakthrough but 3 +22347 1007 have been worth cheering as a breakthrough 3 +22348 1007 been worth cheering as a breakthrough 3 +22349 1007 worth cheering as a breakthrough 3 +22350 1007 cheering as a breakthrough 2 +22351 1007 cheering 3 +22352 1007 as a breakthrough 2 +22353 1007 a breakthrough 3 +22354 1007 breakthrough 3 +22355 1007 is devoid of wit and humor 1 +22356 1007 devoid of wit and humor 0 +22357 1007 of wit and humor 2 +22358 1007 wit and humor 3 +22359 1008 I found myself more appreciative of what the director was trying to do than of what he had actually done . 2 +22360 1008 found myself more appreciative of what the director was trying to do than of what he had actually done . 2 +22361 1008 found myself more appreciative of what the director was trying to do than of what he had actually done 2 +22362 1008 myself more appreciative of what the director was trying to do than of what he had actually done 2 +22363 1008 more appreciative of what the director was trying to do than of what he had actually done 2 +22364 1008 appreciative of what the director was trying to do than of what he had actually done 2 +22365 1008 appreciative 3 +22366 1008 of what the director was trying to do than of what he had actually done 2 +22367 1008 the director was trying to do than of what he had actually done 2 +22368 1008 was trying to do than of what he had actually done 1 +22369 1008 trying to do than of what he had actually done 2 +22370 1008 to do than of what he had actually done 2 +22371 1008 do than of what he had actually done 2 +22372 1008 than of what he had actually done 2 +22373 1008 of what he had actually done 2 +22374 1008 what he had actually done 2 +22375 1008 he had actually done 2 +22376 1008 had actually done 2 +22377 1008 had actually 2 +22378 1009 is clever enough , though thin writing proves its undoing . 2 +22379 1009 is clever enough , though thin writing proves its undoing 1 +22380 1009 is clever enough , 3 +22381 1009 is clever enough 3 +22382 1009 clever enough 3 +22383 1009 though thin writing proves its undoing 1 +22384 1009 thin writing proves its undoing 0 +22385 1009 thin writing 1 +22386 1009 proves its undoing 2 +22387 1009 its undoing 2 +22388 1009 undoing 2 +22389 1010 Stone seems to have a knack for wrapping the theater in a cold blanket of urban desperation . 1 +22390 1010 Stone 2 +22391 1010 seems to have a knack for wrapping the theater in a cold blanket of urban desperation . 2 +22392 1010 seems to have a knack for wrapping the theater in a cold blanket of urban desperation 1 +22393 1010 to have a knack for wrapping the theater in a cold blanket of urban desperation 1 +22394 1010 have a knack for wrapping the theater in a cold blanket of urban desperation 2 +22395 1010 a knack for wrapping the theater in a cold blanket of urban desperation 2 +22396 1010 a knack 2 +22397 1010 knack 2 +22398 1010 for wrapping the theater in a cold blanket of urban desperation 1 +22399 1010 wrapping the theater in a cold blanket of urban desperation 1 +22400 1010 wrapping the theater 3 +22401 1010 wrapping 2 +22402 1010 in a cold blanket of urban desperation 2 +22403 1010 a cold blanket of urban desperation 2 +22404 1010 a cold blanket 1 +22405 1010 cold blanket 1 +22406 1010 blanket 2 +22407 1010 of urban desperation 2 +22408 1010 urban desperation 2 +22409 1010 desperation 1 +22410 1011 Done in mostly by a weak script that ca n't support the epic treatment . 0 +22411 1011 Done in mostly by a weak script that ca n't support the epic treatment 1 +22412 1011 Done in mostly 2 +22413 1011 in mostly 2 +22414 1011 by a weak script that ca n't support the epic treatment 1 +22415 1011 a weak script that ca n't support the epic treatment 1 +22416 1011 a weak script 0 +22417 1011 weak script 1 +22418 1011 that ca n't support the epic treatment 2 +22419 1011 ca n't support the epic treatment 1 +22420 1011 support the epic treatment 2 +22421 1011 the epic treatment 2 +22422 1011 epic treatment 3 +22423 1012 The whole thing plays like a tired Tyco ad . 1 +22424 1012 plays like a tired Tyco ad . 1 +22425 1012 plays like a tired Tyco ad 1 +22426 1012 like a tired Tyco ad 1 +22427 1012 a tired Tyco ad 1 +22428 1012 tired Tyco ad 1 +22429 1012 Tyco ad 2 +22430 1012 Tyco 2 +22431 1012 ad 2 +22432 1013 That 's muy loco , but no more ridiculous than most of the rest of `` Dragonfly . '' 1 +22433 1013 's muy loco , but no more ridiculous than most of the rest of `` Dragonfly . '' 1 +22434 1013 's muy loco , but no more ridiculous than most of the rest of `` Dragonfly . 1 +22435 1013 's muy loco , but no more ridiculous than most of the rest of `` Dragonfly 1 +22436 1013 's muy loco , but no more ridiculous 1 +22437 1013 muy loco , but no more ridiculous 1 +22438 1013 muy loco , but 2 +22439 1013 muy loco , 2 +22440 1013 muy loco 1 +22441 1013 muy 2 +22442 1013 loco 2 +22443 1013 no more ridiculous 2 +22444 1013 more ridiculous 1 +22445 1013 ridiculous 1 +22446 1013 than most of the rest of `` Dragonfly 2 +22447 1013 most of the rest of `` Dragonfly 2 +22448 1013 of the rest of `` Dragonfly 2 +22449 1013 the rest of `` Dragonfly 2 +22450 1013 of `` Dragonfly 2 +22451 1013 of `` 2 +22452 1013 Dragonfly 3 +22453 1014 Solondz creates some effective moments of discomfort for character and viewer alike . 2 +22454 1014 creates some effective moments of discomfort for character and viewer alike . 1 +22455 1014 creates some effective moments of discomfort for character and viewer alike 2 +22456 1014 creates some effective moments of discomfort for character and viewer 2 +22457 1014 some effective moments of discomfort for character and viewer 2 +22458 1014 some effective moments 3 +22459 1014 effective moments 3 +22460 1014 of discomfort for character and viewer 2 +22461 1014 discomfort for character and viewer 2 +22462 1014 discomfort 1 +22463 1014 for character and viewer 2 +22464 1014 character and viewer 2 +22465 1014 character and 2 +22466 1015 Includes too much obvious padding . 1 +22467 1015 Includes too much obvious padding 1 +22468 1015 Includes 2 +22469 1015 too much obvious padding 1 +22470 1015 too much obvious 2 +22471 1015 much obvious 2 +22472 1015 padding 3 +22473 1016 Well , they 're ` they ' . 2 +22474 1016 , they 're ` they ' . 2 +22475 1016 they 're ` they ' . 2 +22476 1016 're ` they ' . 2 +22477 1016 're ` they ' 2 +22478 1016 're ` 2 +22479 1016 they ' 2 +22480 1017 Any attempts at nuance given by the capable cast is drowned out by director Jon Purdy 's sledgehammer sap . 1 +22481 1017 Any attempts at nuance given by the capable cast 1 +22482 1017 Any attempts 2 +22483 1017 at nuance given by the capable cast 2 +22484 1017 nuance given by the capable cast 2 +22485 1017 nuance 2 +22486 1017 given by the capable cast 3 +22487 1017 by the capable cast 2 +22488 1017 the capable cast 3 +22489 1017 capable cast 3 +22490 1017 capable 3 +22491 1017 is drowned out by director Jon Purdy 's sledgehammer sap . 1 +22492 1017 is drowned out by director Jon Purdy 's sledgehammer sap 1 +22493 1017 drowned out by director Jon Purdy 's sledgehammer sap 1 +22494 1017 drowned out 1 +22495 1017 drowned 2 +22496 1017 by director Jon Purdy 's sledgehammer sap 1 +22497 1017 director Jon Purdy 's sledgehammer sap 1 +22498 1017 director Jon Purdy 's 2 +22499 1017 Jon Purdy 's 2 +22500 1017 Jon 2 +22501 1017 Purdy 's 2 +22502 1017 Purdy 3 +22503 1017 sledgehammer sap 2 +22504 1017 sledgehammer 2 +22505 1018 -LRB- A -RRB- wonderfully loopy tale of love , longing , and voting . 4 +22506 1018 -LRB- A -RRB- wonderfully loopy tale of love , longing , and voting 3 +22507 1018 wonderfully loopy tale of love , longing , and voting 4 +22508 1018 wonderfully loopy tale 3 +22509 1018 wonderfully loopy 4 +22510 1018 wonderfully 3 +22511 1018 loopy 1 +22512 1018 of love , longing , and voting 3 +22513 1018 love , longing , and voting 2 +22514 1018 love , longing , and 3 +22515 1018 love , longing , 3 +22516 1018 love , longing 3 +22517 1018 love , 2 +22518 1018 voting 2 +22519 1019 The characters , cast in impossibly contrived situations , are totally estranged from reality . 1 +22520 1019 The characters , cast in impossibly contrived situations , 2 +22521 1019 The characters , cast in impossibly contrived situations 1 +22522 1019 The characters , 2 +22523 1019 cast in impossibly contrived situations 1 +22524 1019 in impossibly contrived situations 2 +22525 1019 impossibly contrived situations 1 +22526 1019 impossibly 1 +22527 1019 contrived situations 1 +22528 1019 situations 2 +22529 1019 are totally estranged from reality . 1 +22530 1019 are totally estranged from reality 1 +22531 1019 totally estranged from reality 1 +22532 1019 estranged from reality 1 +22533 1019 estranged 1 +22534 1019 from reality 2 +22535 1020 For every cheesy scene , though , there is a really cool bit -- the movie 's conception of a future-world holographic librarian -LRB- Orlando Jones -RRB- who knows everything and answers all questions , is visually smart , cleverly written , and nicely realized . 3 +22536 1020 For every cheesy scene 1 +22537 1020 every cheesy scene 1 +22538 1020 cheesy scene 2 +22539 1020 cheesy 1 +22540 1020 , though , there is a really cool bit -- the movie 's conception of a future-world holographic librarian -LRB- Orlando Jones -RRB- who knows everything and answers all questions , is visually smart , cleverly written , and nicely realized . 3 +22541 1020 though , there is a really cool bit -- the movie 's conception of a future-world holographic librarian -LRB- Orlando Jones -RRB- who knows everything and answers all questions , is visually smart , cleverly written , and nicely realized . 4 +22542 1020 , there is a really cool bit -- the movie 's conception of a future-world holographic librarian -LRB- Orlando Jones -RRB- who knows everything and answers all questions , is visually smart , cleverly written , and nicely realized . 4 +22543 1020 there is a really cool bit -- the movie 's conception of a future-world holographic librarian -LRB- Orlando Jones -RRB- who knows everything and answers all questions , is visually smart , cleverly written , and nicely realized . 4 +22544 1020 is a really cool bit -- the movie 's conception of a future-world holographic librarian -LRB- Orlando Jones -RRB- who knows everything and answers all questions , is visually smart , cleverly written , and nicely realized . 4 +22545 1020 is a really cool bit -- the movie 's conception of a future-world holographic librarian -LRB- Orlando Jones -RRB- who knows everything and answers all questions , is visually smart , cleverly written , and nicely realized 3 +22546 1020 a really cool bit -- the movie 's conception of a future-world holographic librarian -LRB- Orlando Jones -RRB- who knows everything and answers all questions , is visually smart , cleverly written , and nicely realized 3 +22547 1020 a really cool bit -- 3 +22548 1020 a really cool bit 3 +22549 1020 really cool bit 3 +22550 1020 really cool 3 +22551 1020 the movie 's conception of a future-world holographic librarian -LRB- Orlando Jones -RRB- who knows everything and answers all questions , is visually smart , cleverly written , and nicely realized 3 +22552 1020 the movie 's conception 2 +22553 1020 of a future-world holographic librarian -LRB- Orlando Jones -RRB- who knows everything and answers all questions , is visually smart , cleverly written , and nicely realized 3 +22554 1020 a future-world holographic librarian -LRB- Orlando Jones -RRB- who knows everything and answers all questions , is visually smart , cleverly written , and nicely realized 3 +22555 1020 future-world holographic librarian -LRB- Orlando Jones -RRB- who knows everything and answers all questions , is visually smart , cleverly written , and nicely realized 4 +22556 1020 future-world 3 +22557 1020 holographic librarian -LRB- Orlando Jones -RRB- who knows everything and answers all questions , is visually smart , cleverly written , and nicely realized 4 +22558 1020 holographic 2 +22559 1020 librarian -LRB- Orlando Jones -RRB- who knows everything and answers all questions , is visually smart , cleverly written , and nicely realized 3 +22560 1020 librarian -LRB- Orlando Jones -RRB- 2 +22561 1020 librarian 2 +22562 1020 -LRB- Orlando Jones -RRB- 1 +22563 1020 Orlando Jones -RRB- 2 +22564 1020 Orlando Jones 2 +22565 1020 Orlando 2 +22566 1020 who knows everything and answers all questions , is visually smart , cleverly written , and nicely realized 4 +22567 1020 knows everything and answers all questions , is visually smart , cleverly written , and nicely realized 4 +22568 1020 knows everything and answers all questions , is visually smart , cleverly written , and nicely 4 +22569 1020 knows everything and answers all questions , is visually smart , cleverly written , and 4 +22570 1020 knows everything and answers all questions , is visually smart , cleverly written , 3 +22571 1020 knows everything and answers all questions , is visually smart , cleverly written 3 +22572 1020 knows everything and answers all questions , 3 +22573 1020 knows everything and answers all questions 3 +22574 1020 knows everything and 2 +22575 1020 knows everything 2 +22576 1020 answers all questions 2 +22577 1020 answers 2 +22578 1020 all questions 2 +22579 1020 is visually smart , cleverly written 4 +22580 1020 is visually smart , 3 +22581 1020 is visually smart 3 +22582 1020 visually smart 3 +22583 1020 cleverly written 3 +22584 1021 The mark of a respectable summer blockbuster is one of two things : unadulterated thrills or genuine laughs . 4 +22585 1021 The mark of a respectable summer blockbuster 3 +22586 1021 of a respectable summer blockbuster 3 +22587 1021 a respectable summer blockbuster 3 +22588 1021 respectable summer blockbuster 3 +22589 1021 respectable 3 +22590 1021 is one of two things : unadulterated thrills or genuine laughs . 4 +22591 1021 is one of two things : unadulterated thrills or genuine laughs 3 +22592 1021 one of two things : unadulterated thrills or genuine laughs 3 +22593 1021 one of two things : 2 +22594 1021 one of two things 2 +22595 1021 of two things 2 +22596 1021 two things 2 +22597 1021 unadulterated thrills or genuine laughs 3 +22598 1021 unadulterated thrills or 2 +22599 1021 unadulterated thrills 3 +22600 1021 unadulterated 2 +22601 1021 thrills 4 +22602 1021 genuine laughs 4 +22603 1022 As a hybrid teen thriller and murder mystery , Murder by Numbers fits the profile too closely . 2 +22604 1022 As a hybrid teen thriller and murder mystery 2 +22605 1022 a hybrid teen thriller and murder mystery 2 +22606 1022 hybrid teen thriller and murder mystery 2 +22607 1022 hybrid 2 +22608 1022 teen thriller and murder mystery 2 +22609 1022 thriller and murder mystery 3 +22610 1022 and murder mystery 2 +22611 1022 murder mystery 2 +22612 1022 , Murder by Numbers fits the profile too closely . 1 +22613 1022 Murder by Numbers fits the profile too closely . 1 +22614 1022 Murder by Numbers 2 +22615 1022 by Numbers 2 +22616 1022 Numbers 2 +22617 1022 fits the profile too closely . 2 +22618 1022 fits the profile too closely 3 +22619 1022 fits the profile 2 +22620 1022 fits 3 +22621 1022 the profile 2 +22622 1022 profile 2 +22623 1022 too closely 2 +22624 1022 closely 2 +22625 1023 Alternately frustrating and rewarding . 3 +22626 1023 Alternately frustrating and rewarding 2 +22627 1023 Alternately 2 +22628 1023 frustrating and rewarding 2 +22629 1023 frustrating and 1 +22630 1023 rewarding 3 +22631 1024 I highly recommend Irwin , but not in the way this film showcases him . 2 +22632 1024 I highly recommend Irwin , but not in the way this film showcases him 2 +22633 1024 I highly recommend Irwin , but 3 +22634 1024 I highly recommend Irwin , 4 +22635 1024 I highly recommend Irwin 4 +22636 1024 highly recommend Irwin 4 +22637 1024 recommend Irwin 2 +22638 1024 not in the way this film showcases him 1 +22639 1024 not in the way 2 +22640 1024 in the way 2 +22641 1024 this film showcases him 2 +22642 1024 showcases him 2 +22643 1025 It 's hard to believe that something so short could be so flabby . 1 +22644 1025 's hard to believe that something so short could be so flabby . 1 +22645 1025 's hard to believe that something so short could be so flabby 1 +22646 1025 hard to believe that something so short could be so flabby 0 +22647 1025 to believe that something so short could be so flabby 1 +22648 1025 believe that something so short could be so flabby 1 +22649 1025 that something so short could be so flabby 1 +22650 1025 something so short could be so flabby 2 +22651 1025 so short could be so flabby 1 +22652 1025 so short 1 +22653 1025 could be so flabby 1 +22654 1025 be so flabby 2 +22655 1025 so flabby 1 +22656 1025 flabby 1 +22657 1026 Anyone who welcomes a dash of the avant-garde fused with their humor should take pleasure in this crazed , joyous romp of a film . 4 +22658 1026 Anyone who welcomes a dash of the avant-garde fused with their humor should take pleasure in this crazed 4 +22659 1026 Anyone who welcomes a dash of the avant-garde fused with their humor 4 +22660 1026 who welcomes a dash of the avant-garde fused with their humor 3 +22661 1026 welcomes a dash of the avant-garde fused with their humor 4 +22662 1026 welcomes 3 +22663 1026 a dash of the avant-garde fused with their humor 3 +22664 1026 a dash 2 +22665 1026 of the avant-garde fused with their humor 3 +22666 1026 the avant-garde fused with their humor 3 +22667 1026 the avant-garde 2 +22668 1026 avant-garde 2 +22669 1026 fused with their humor 3 +22670 1026 with their humor 2 +22671 1026 their humor 2 +22672 1026 should take pleasure in this crazed 2 +22673 1026 take pleasure in this crazed 2 +22674 1026 take pleasure 3 +22675 1026 in this crazed 2 +22676 1026 this crazed 2 +22677 1026 crazed 2 +22678 1026 , joyous romp of a film . 4 +22679 1026 joyous romp of a film . 3 +22680 1026 romp of a film . 3 +22681 1026 romp of a film 3 +22682 1026 of a film 2 +22683 1027 It merely indulges in the worst elements of all of them . 1 +22684 1027 merely indulges in the worst elements of all of them . 1 +22685 1027 merely 2 +22686 1027 indulges in the worst elements of all of them . 1 +22687 1027 indulges in the worst elements of all of them 0 +22688 1027 indulges 2 +22689 1027 in the worst elements of all of them 1 +22690 1027 the worst elements of all of them 1 +22691 1027 the worst elements 1 +22692 1027 worst elements 1 +22693 1027 of all of them 2 +22694 1027 all of them 2 +22695 1028 -- that the ` true story ' by which All the Queen 's Men is allegedly `` inspired '' was a lot funnier and more deftly enacted than what 's been cobbled together onscreen . 1 +22696 1028 that the ` true story ' by which All the Queen 's Men is allegedly `` inspired '' was a lot funnier and more deftly enacted than what 's been cobbled together onscreen . 2 +22697 1028 that the ` true story ' by which All the Queen 's Men is allegedly `` inspired '' was a lot funnier and more deftly enacted than what 's been cobbled together onscreen 0 +22698 1028 the ` true story ' by which All the Queen 's Men is allegedly `` inspired '' was a lot funnier and more deftly enacted than what 's been cobbled together onscreen 1 +22699 1028 the ` true story ' 2 +22700 1028 ` true story ' 3 +22701 1028 true story ' 2 +22702 1028 story ' 2 +22703 1028 by which All the Queen 's Men is allegedly `` inspired '' was a lot funnier and more deftly enacted than what 's been cobbled together onscreen 0 +22704 1028 by which 2 +22705 1028 All the Queen 's Men is allegedly `` inspired '' was a lot funnier and more deftly enacted than what 's been cobbled together onscreen 1 +22706 1028 All the Queen 's Men 2 +22707 1028 the Queen 's Men 2 +22708 1028 the Queen 's 2 +22709 1028 Queen 's 2 +22710 1028 is allegedly `` inspired '' was a lot funnier and more deftly enacted than what 's been cobbled together onscreen 1 +22711 1028 allegedly `` inspired '' was a lot funnier and more deftly enacted than what 's been cobbled together onscreen 2 +22712 1028 allegedly `` inspired '' was a lot funnier and 2 +22713 1028 allegedly `` inspired '' was a lot funnier 1 +22714 1028 allegedly 2 +22715 1028 `` inspired '' was a lot funnier 2 +22716 1028 inspired '' was a lot funnier 1 +22717 1028 inspired '' 3 +22718 1028 was a lot funnier 2 +22719 1028 a lot funnier 2 +22720 1028 lot funnier 3 +22721 1028 more deftly enacted than what 's been cobbled together onscreen 2 +22722 1028 more deftly 2 +22723 1028 deftly 2 +22724 1028 enacted than what 's been cobbled together onscreen 1 +22725 1028 enacted 2 +22726 1028 than what 's been cobbled together onscreen 1 +22727 1028 what 's been cobbled together onscreen 2 +22728 1028 's been cobbled together onscreen 2 +22729 1028 been cobbled together onscreen 1 +22730 1028 cobbled together onscreen 2 +22731 1028 cobbled together 2 +22732 1028 cobbled 2 +22733 1029 Interesting , but not compelling . 2 +22734 1029 , but not compelling . 1 +22735 1029 , but not compelling 1 +22736 1029 not compelling 1 +22737 1030 `` Catch Me '' feels capable of charming the masses with star power , a pop-induced score and sentimental moments that have become a Spielberg trademark . 3 +22738 1030 Catch Me '' feels capable of charming the masses with star power , a pop-induced score and sentimental moments that have become a Spielberg trademark . 3 +22739 1030 Catch Me 2 +22740 1030 '' feels capable of charming the masses with star power , a pop-induced score and sentimental moments that have become a Spielberg trademark . 3 +22741 1030 feels capable of charming the masses with star power , a pop-induced score and sentimental moments that have become a Spielberg trademark . 3 +22742 1030 feels capable of charming the masses with star power , a pop-induced score and sentimental moments that have become a Spielberg trademark 4 +22743 1030 capable of charming the masses with star power , a pop-induced score and sentimental moments that have become a Spielberg trademark 3 +22744 1030 of charming the masses with star power , a pop-induced score and sentimental moments that have become a Spielberg trademark 3 +22745 1030 charming the masses with star power , a pop-induced score and sentimental moments that have become a Spielberg trademark 4 +22746 1030 charming the masses with star power , a pop-induced score and sentimental moments 3 +22747 1030 the masses with star power , a pop-induced score and sentimental moments 3 +22748 1030 the masses with star power , a pop-induced score and sentimental 3 +22749 1030 the masses with star power , a pop-induced score and 2 +22750 1030 the masses with star power , a pop-induced score 3 +22751 1030 the masses 2 +22752 1030 masses 2 +22753 1030 with star power , a pop-induced score 3 +22754 1030 star power , a pop-induced score 3 +22755 1030 star power , 3 +22756 1030 star power 3 +22757 1030 a pop-induced score 2 +22758 1030 pop-induced score 2 +22759 1030 pop-induced 2 +22760 1030 that have become a Spielberg trademark 3 +22761 1030 have become a Spielberg trademark 2 +22762 1030 become a Spielberg trademark 3 +22763 1030 a Spielberg trademark 3 +22764 1030 Spielberg trademark 2 +22765 1031 An enigmatic film that 's too clever for its own good , it 's a conundrum not worth solving . 2 +22766 1031 An enigmatic film that 's too clever for its own good 1 +22767 1031 An enigmatic film 3 +22768 1031 enigmatic film 2 +22769 1031 that 's too clever for its own good 1 +22770 1031 's too clever for its own good 2 +22771 1031 too clever for its own good 1 +22772 1031 clever for its own good 2 +22773 1031 for its own good 2 +22774 1031 its own good 3 +22775 1031 own good 2 +22776 1031 , it 's a conundrum not worth solving . 1 +22777 1031 it 's a conundrum not worth solving . 0 +22778 1031 's a conundrum not worth solving . 2 +22779 1031 's a conundrum not worth solving 1 +22780 1031 's a conundrum not worth 2 +22781 1031 's a conundrum not 2 +22782 1031 a conundrum not 2 +22783 1031 a conundrum 2 +22784 1031 conundrum 2 +22785 1032 The fascination comes in the power of the Huston performance , which seems so larger than life and yet so fragile , and in the way the Ivan character accepts the news of his illness so quickly but still finds himself unable to react . 3 +22786 1032 The fascination comes in the power of the Huston performance , which seems so larger than life and yet so fragile , and in the way the Ivan character accepts the news of his illness so quickly but still finds himself unable to react 3 +22787 1032 The fascination comes in the power of the Huston performance , which seems so larger than life and yet so fragile , and 3 +22788 1032 The fascination comes in the power of the Huston performance , which seems so larger than life and yet so fragile , 3 +22789 1032 The fascination comes in the power of the Huston performance , which seems so larger than life and yet so fragile 3 +22790 1032 The fascination 2 +22791 1032 fascination 3 +22792 1032 comes in the power of the Huston performance , which seems so larger than life and yet so fragile 4 +22793 1032 in the power of the Huston performance , which seems so larger than life and yet so fragile 3 +22794 1032 the power of the Huston performance , which seems so larger than life and yet so fragile 3 +22795 1032 the power of the Huston performance , 3 +22796 1032 the power of the Huston performance 3 +22797 1032 of the Huston performance 2 +22798 1032 the Huston performance 2 +22799 1032 Huston performance 3 +22800 1032 Huston 2 +22801 1032 which seems so larger than life and yet so fragile 3 +22802 1032 seems so larger than life and yet so fragile 3 +22803 1032 so larger than life and yet so fragile 2 +22804 1032 so larger than life and 3 +22805 1032 so larger than life 3 +22806 1032 larger than life 3 +22807 1032 larger 2 +22808 1032 than life 2 +22809 1032 yet so fragile 2 +22810 1032 so fragile 2 +22811 1032 fragile 2 +22812 1032 in the way the Ivan character accepts the news of his illness so quickly but still finds himself unable to react 1 +22813 1032 the Ivan character accepts the news of his illness so quickly but still finds himself unable to react 2 +22814 1032 the Ivan character 2 +22815 1032 Ivan character 2 +22816 1032 accepts the news of his illness so quickly but still finds himself unable to react 2 +22817 1032 accepts the news of his illness so quickly but still finds himself 2 +22818 1032 accepts the news of his illness so quickly but 2 +22819 1032 accepts the news of his illness so quickly 2 +22820 1032 accepts the news of his illness 2 +22821 1032 accepts 2 +22822 1032 the news of his illness 2 +22823 1032 the news 2 +22824 1032 of his illness 2 +22825 1032 his illness 2 +22826 1032 illness 0 +22827 1032 so quickly 2 +22828 1032 quickly 2 +22829 1032 still finds himself 2 +22830 1032 finds himself 2 +22831 1032 unable to react 2 +22832 1032 unable 1 +22833 1032 to react 2 +22834 1032 react 2 +22835 1033 Eh . 2 +22836 1033 Eh 1 +22837 1034 Highly uneven and inconsistent ... Margarita Happy Hour kinda resembles the el cheapo margaritas served within . 0 +22838 1034 Highly uneven and inconsistent ... Margarita Happy Hour kinda 1 +22839 1034 Highly uneven and inconsistent ... 0 +22840 1034 Highly uneven and inconsistent 0 +22841 1034 Highly uneven and 1 +22842 1034 Highly uneven 1 +22843 1034 inconsistent 1 +22844 1034 Margarita Happy Hour kinda 2 +22845 1034 Margarita 2 +22846 1034 Happy Hour kinda 2 +22847 1034 Hour kinda 2 +22848 1034 resembles the el cheapo margaritas served within . 1 +22849 1034 resembles the el cheapo margaritas served within 2 +22850 1034 the el cheapo margaritas served within 2 +22851 1034 the el cheapo margaritas 1 +22852 1034 el cheapo margaritas 2 +22853 1034 el 2 +22854 1034 cheapo margaritas 2 +22855 1034 cheapo 1 +22856 1034 margaritas 2 +22857 1034 served within 2 +22858 1035 The film tries to touch on spousal abuse but veers off course and becomes just another revenge film . 2 +22859 1035 tries to touch on spousal abuse but veers off course and becomes just another revenge film . 1 +22860 1035 tries to touch on spousal abuse but veers off course and becomes just another revenge film 1 +22861 1035 tries to touch on spousal abuse but veers off course and 1 +22862 1035 tries to touch on spousal abuse but veers off course 0 +22863 1035 tries to touch on spousal abuse but 2 +22864 1035 tries to touch on spousal abuse 3 +22865 1035 to touch on spousal abuse 2 +22866 1035 touch on spousal abuse 1 +22867 1035 on spousal abuse 2 +22868 1035 spousal abuse 1 +22869 1035 spousal 2 +22870 1035 abuse 1 +22871 1035 veers off course 1 +22872 1035 veers off 1 +22873 1035 becomes just another revenge film 1 +22874 1035 just another revenge film 1 +22875 1035 another revenge film 2 +22876 1035 revenge film 2 +22877 1036 -LRB- Stephen -RRB- Earnhart 's film is more about the optimism of a group of people who are struggling to give themselves a better lot in life than the ones they currently have . 3 +22878 1036 -LRB- Stephen -RRB- Earnhart 's film is more about the optimism of a group of people who are struggling to give themselves a better lot in life than the ones 2 +22879 1036 -LRB- Stephen -RRB- 2 +22880 1036 Stephen -RRB- 2 +22881 1036 Stephen 2 +22882 1036 Earnhart 's film is more about the optimism of a group of people who are struggling to give themselves a better lot in life than the ones 3 +22883 1036 Earnhart 's film 2 +22884 1036 Earnhart 's 2 +22885 1036 Earnhart 2 +22886 1036 is more about the optimism of a group of people who are struggling to give themselves a better lot in life than the ones 3 +22887 1036 more about the optimism of a group of people who are struggling to give themselves a better lot in life than the ones 2 +22888 1036 about the optimism of a group of people who are struggling to give themselves a better lot in life than the ones 3 +22889 1036 the optimism of a group of people who are struggling to give themselves a better lot in life than the ones 3 +22890 1036 the optimism 2 +22891 1036 optimism 3 +22892 1036 of a group of people who are struggling to give themselves a better lot in life than the ones 2 +22893 1036 a group of people who are struggling to give themselves a better lot in life than the ones 2 +22894 1036 a group 2 +22895 1036 group 2 +22896 1036 of people who are struggling to give themselves a better lot in life than the ones 2 +22897 1036 people who are struggling to give themselves a better lot in life than the ones 2 +22898 1036 who are struggling to give themselves a better lot in life than the ones 2 +22899 1036 are struggling to give themselves a better lot in life than the ones 3 +22900 1036 struggling to give themselves a better lot in life than the ones 3 +22901 1036 struggling 1 +22902 1036 to give themselves a better lot in life than the ones 2 +22903 1036 give themselves a better lot in life than the ones 2 +22904 1036 give themselves a better lot in life 2 +22905 1036 give themselves 2 +22906 1036 a better lot in life 2 +22907 1036 a better lot 3 +22908 1036 better lot 2 +22909 1036 in life 2 +22910 1036 they currently have . 2 +22911 1036 currently have . 2 +22912 1036 currently 2 +22913 1036 have . 3 +22914 1037 Glizty but formulaic and silly ... Cagney 's ` top of the world ' has been replaced by the bottom of the barrel . 1 +22915 1037 Glizty but formulaic and silly 2 +22916 1037 Glizty 3 +22917 1037 but formulaic and silly 2 +22918 1037 formulaic and silly 2 +22919 1037 formulaic and 2 +22920 1037 formulaic 1 +22921 1037 ... Cagney 's ` top of the world ' has been replaced by the bottom of the barrel . 0 +22922 1037 Cagney 's ` top of the world ' has been replaced by the bottom of the barrel . 2 +22923 1037 Cagney 's ` top of the world ' has been replaced by the bottom of the barrel 0 +22924 1037 Cagney 's ` top of the world ' 3 +22925 1037 Cagney 's 2 +22926 1037 Cagney 2 +22927 1037 ` top of the world ' 4 +22928 1037 top of the world ' 2 +22929 1037 top of the world 2 +22930 1037 of the world 2 +22931 1037 has been replaced by the bottom of the barrel 0 +22932 1037 been replaced by the bottom of the barrel 0 +22933 1037 replaced by the bottom of the barrel 2 +22934 1037 replaced 2 +22935 1037 by the bottom of the barrel 2 +22936 1037 the bottom of the barrel 0 +22937 1037 of the barrel 2 +22938 1037 the barrel 2 +22939 1038 Queen of the Damned as you might have guessed , makes sorry use of Aaliyah in her one and only starring role -- she does little here but point at things that explode into flame . 1 +22940 1038 Queen of the Damned as you might have guessed , makes sorry use of Aaliyah in her one and only starring role -- she does little here but point at things that explode into flame 1 +22941 1038 Queen of the Damned as you might have guessed , makes sorry use of Aaliyah in her one and only starring role -- 1 +22942 1038 Queen of the Damned as you might have guessed , makes sorry use of Aaliyah in her one and only starring role 2 +22943 1038 Queen of the Damned as you might have guessed , 2 +22944 1038 Queen of the Damned as you might have guessed 2 +22945 1038 Queen of the Damned 2 +22946 1038 as you might have guessed 2 +22947 1038 you might have guessed 2 +22948 1038 might have guessed 1 +22949 1038 have guessed 2 +22950 1038 guessed 2 +22951 1038 makes sorry use of Aaliyah in her one and only starring role 1 +22952 1038 sorry use of Aaliyah in her one and only starring role 1 +22953 1038 sorry use of Aaliyah in her one and 1 +22954 1038 sorry use of Aaliyah in her one 1 +22955 1038 sorry use of Aaliyah 2 +22956 1038 sorry 2 +22957 1038 use of Aaliyah 2 +22958 1038 of Aaliyah 2 +22959 1038 Aaliyah 2 +22960 1038 in her one 2 +22961 1038 her one 2 +22962 1038 only starring role 2 +22963 1038 starring role 2 +22964 1038 starring 2 +22965 1038 she does little here but point at things that explode into flame 1 +22966 1038 does little here but point at things that explode into flame 1 +22967 1038 does little here but 2 +22968 1038 does little here 1 +22969 1038 does little 1 +22970 1038 point at things that explode into flame 1 +22971 1038 at things that explode into flame 2 +22972 1038 things that explode into flame 2 +22973 1038 that explode into flame 2 +22974 1038 explode into flame 2 +22975 1038 explode 3 +22976 1038 into flame 2 +22977 1038 flame 2 +22978 1039 The modern master of the chase sequence returns with a chase to end all chases 4 +22979 1039 The modern master of the chase sequence 3 +22980 1039 The modern master 4 +22981 1039 modern master 3 +22982 1039 of the chase sequence 2 +22983 1039 the chase sequence 2 +22984 1039 chase sequence 2 +22985 1039 returns with a chase to end all chases 3 +22986 1039 with a chase to end all chases 3 +22987 1039 a chase to end all chases 2 +22988 1039 chase to end all chases 3 +22989 1039 to end all chases 2 +22990 1039 end all chases 3 +22991 1039 all chases 2 +22992 1039 chases 2 +22993 1040 into Scrooge . 2 +22994 1040 into Scrooge 2 +22995 1040 Scrooge 2 +22996 1041 A sub-formulaic slap in the face to seasonal cheer . 1 +22997 1041 A sub-formulaic slap in the face to seasonal cheer 2 +22998 1041 A sub-formulaic slap in the face 1 +22999 1041 A sub-formulaic slap 1 +23000 1041 sub-formulaic slap 1 +23001 1041 sub-formulaic 1 +23002 1041 in the face 2 +23003 1041 to seasonal cheer 2 +23004 1041 seasonal cheer 2 +23005 1041 seasonal 2 +23006 1042 A baffling mixed platter of gritty realism and magic realism with a hard-to-swallow premise . 1 +23007 1042 A baffling mixed platter of gritty realism and magic realism with a hard-to-swallow premise 1 +23008 1042 A baffling mixed platter 2 +23009 1042 baffling mixed platter 1 +23010 1042 baffling 2 +23011 1042 mixed platter 2 +23012 1042 platter 2 +23013 1042 of gritty realism and magic realism with a hard-to-swallow premise 2 +23014 1042 gritty realism and magic realism with a hard-to-swallow premise 2 +23015 1042 gritty realism and magic realism 3 +23016 1042 realism and magic realism 2 +23017 1042 and magic realism 2 +23018 1042 with a hard-to-swallow premise 1 +23019 1042 a hard-to-swallow premise 1 +23020 1042 hard-to-swallow premise 0 +23021 1042 hard-to-swallow 1 +23022 1043 -LRB- I -RRB- t 's certainly laudable that the movie deals with hot-button issues in a comedic context , but Barbershop is n't as funny as it should be . 1 +23023 1043 -LRB- I -RRB- t 's certainly laudable that the movie deals with hot-button issues in a comedic context , but Barbershop is n't as funny as it should be 1 +23024 1043 -LRB- I -RRB- t 's certainly laudable that the movie deals with hot-button issues in a comedic context , but 2 +23025 1043 -LRB- I -RRB- t 's certainly laudable that the movie deals with hot-button issues in a comedic context , 3 +23026 1043 -LRB- I -RRB- t 's certainly laudable that the movie deals with hot-button issues in a comedic context 2 +23027 1043 -LRB- I -RRB- 2 +23028 1043 I -RRB- 2 +23029 1043 t 's certainly laudable that the movie deals with hot-button issues in a comedic context 3 +23030 1043 t 2 +23031 1043 's certainly laudable that the movie deals with hot-button issues in a comedic context 3 +23032 1043 's certainly laudable 3 +23033 1043 's certainly 2 +23034 1043 laudable 3 +23035 1043 that the movie deals with hot-button issues in a comedic context 2 +23036 1043 the movie deals with hot-button issues in a comedic context 3 +23037 1043 deals with hot-button issues in a comedic context 3 +23038 1043 deals 2 +23039 1043 with hot-button issues in a comedic context 2 +23040 1043 hot-button issues in a comedic context 2 +23041 1043 hot-button issues 2 +23042 1043 hot-button 2 +23043 1043 in a comedic context 2 +23044 1043 a comedic context 3 +23045 1043 comedic context 2 +23046 1043 Barbershop is n't as funny as it should be 1 +23047 1043 is n't as funny as it should be 1 +23048 1043 is n't as funny 1 +23049 1043 as funny 3 +23050 1043 as it should be 3 +23051 1043 it should be 2 +23052 1043 should be 2 +23053 1044 But once the falcon arrives in the skies above Manhattan , the adventure is on red alert . 3 +23054 1044 once the falcon arrives in the skies above Manhattan , the adventure is on red alert . 2 +23055 1044 once the falcon arrives in the skies above Manhattan 2 +23056 1044 the falcon arrives in the skies above Manhattan 3 +23057 1044 the falcon 2 +23058 1044 falcon 2 +23059 1044 arrives in the skies above Manhattan 2 +23060 1044 in the skies above Manhattan 2 +23061 1044 the skies above Manhattan 2 +23062 1044 the skies 2 +23063 1044 skies 2 +23064 1044 above Manhattan 2 +23065 1044 , the adventure is on red alert . 2 +23066 1044 the adventure is on red alert . 2 +23067 1044 the adventure 2 +23068 1044 is on red alert . 2 +23069 1044 is on red alert 2 +23070 1044 on red alert 2 +23071 1044 red alert 2 +23072 1044 alert 2 +23073 1045 All the filmmakers are asking of us , is to believe in something that is improbable . 2 +23074 1045 the filmmakers are asking of us , is to believe in something that is improbable . 2 +23075 1045 the filmmakers are asking of us , 2 +23076 1045 the filmmakers are asking of us 2 +23077 1045 are asking of us 2 +23078 1045 asking of us 3 +23079 1045 is to believe in something that is improbable . 2 +23080 1045 is to believe in something that is improbable 2 +23081 1045 to believe in something that is improbable 1 +23082 1045 believe in something that is improbable 2 +23083 1045 in something that is improbable 2 +23084 1045 something that is improbable 2 +23085 1045 that is improbable 2 +23086 1045 is improbable 2 +23087 1046 A fascinating literary mystery story with multiple strands about the controversy of who really wrote Shakespeare 's plays . 4 +23088 1046 A fascinating literary mystery story with multiple 3 +23089 1046 A fascinating literary mystery story 4 +23090 1046 fascinating literary mystery story 4 +23091 1046 literary mystery story 2 +23092 1046 literary 2 +23093 1046 mystery story 2 +23094 1046 with multiple 2 +23095 1046 multiple 2 +23096 1046 strands about the controversy of who really wrote Shakespeare 's plays . 2 +23097 1046 strands about the controversy of who really wrote Shakespeare 's plays 2 +23098 1046 strands 2 +23099 1046 about the controversy of who really wrote Shakespeare 's plays 2 +23100 1046 the controversy of who really wrote Shakespeare 's plays 2 +23101 1046 the controversy 2 +23102 1046 controversy 1 +23103 1046 of who really wrote Shakespeare 's plays 2 +23104 1046 who really wrote Shakespeare 's plays 2 +23105 1046 really wrote Shakespeare 's plays 2 +23106 1046 wrote Shakespeare 's plays 2 +23107 1046 wrote 2 +23108 1046 Shakespeare 's plays 2 +23109 1047 My own minority report is that it stinks . 0 +23110 1047 My own minority report 2 +23111 1047 own minority report 2 +23112 1047 minority report 1 +23113 1047 minority 2 +23114 1047 is that it stinks . 0 +23115 1047 is that it stinks 1 +23116 1047 that it stinks 1 +23117 1047 it stinks 0 +23118 1047 stinks 1 +23119 1048 Unless there are zoning ordinances to protect your community from the dullest science fiction , Impostor is opening today at a theater near you . 1 +23120 1048 Unless there are zoning ordinances to protect your community from the dullest science fiction 0 +23121 1048 there are zoning ordinances to protect your community from the dullest science fiction 1 +23122 1048 are zoning ordinances to protect your community from the dullest science fiction 1 +23123 1048 zoning ordinances to protect your community from the dullest science fiction 0 +23124 1048 zoning ordinances 2 +23125 1048 zoning 2 +23126 1048 ordinances 2 +23127 1048 to protect your community from the dullest science fiction 1 +23128 1048 protect your community from the dullest science fiction 2 +23129 1048 protect your community 3 +23130 1048 your community 2 +23131 1048 from the dullest science fiction 0 +23132 1048 the dullest science fiction 1 +23133 1048 dullest science fiction 0 +23134 1048 dullest 1 +23135 1048 science fiction 2 +23136 1048 , Impostor is opening today at a theater near you . 2 +23137 1048 Impostor is opening today at a theater near you . 2 +23138 1048 Impostor 2 +23139 1048 is opening today at a theater near you . 2 +23140 1048 is opening today at a theater near you 2 +23141 1048 opening today at a theater near you 2 +23142 1048 opening today 2 +23143 1048 at a theater near you 2 +23144 1048 a theater near you 2 +23145 1048 a theater 2 +23146 1048 near you 2 +23147 1049 A handsome but unfulfilling suspense drama more suited to a quiet evening on PBS than a night out at an AMC . 1 +23148 1049 A handsome but unfulfilling suspense drama more 1 +23149 1049 A handsome but unfulfilling suspense drama 2 +23150 1049 handsome but unfulfilling suspense drama 1 +23151 1049 handsome but unfulfilling 2 +23152 1049 handsome but 2 +23153 1049 unfulfilling 0 +23154 1049 suspense drama 2 +23155 1049 suited to a quiet evening on PBS than a night out at an AMC . 1 +23156 1049 suited to a quiet evening on PBS than a night out at an AMC 1 +23157 1049 suited to a quiet evening on PBS than a night out 2 +23158 1049 suited to a quiet evening on PBS 1 +23159 1049 suited 3 +23160 1049 to a quiet evening on PBS 2 +23161 1049 a quiet evening on PBS 2 +23162 1049 a quiet evening 2 +23163 1049 quiet evening 2 +23164 1049 on PBS 2 +23165 1049 PBS 2 +23166 1049 than a night out 2 +23167 1049 a night out 2 +23168 1049 night out 3 +23169 1049 night 2 +23170 1049 at an AMC 2 +23171 1049 an AMC 2 +23172 1049 AMC 2 +23173 1050 Not only are the film 's Sopranos gags incredibly dated and unfunny , they also demonstrate how desperate the makers of this ` we 're - doing-it-for - the-cash ' sequel were . 0 +23174 1050 Not only are the film 's Sopranos gags incredibly dated and unfunny 1 +23175 1050 only are the film 's Sopranos gags incredibly dated and unfunny 1 +23176 1050 are the film 's Sopranos gags incredibly dated and unfunny 1 +23177 1050 the film 's Sopranos gags incredibly dated and unfunny 2 +23178 1050 the film 's Sopranos gags 1 +23179 1050 Sopranos gags 2 +23180 1050 Sopranos 2 +23181 1050 incredibly dated and unfunny 0 +23182 1050 dated and unfunny 0 +23183 1050 dated and 2 +23184 1050 dated 1 +23185 1050 , they also demonstrate how desperate the makers of this ` we 're - doing-it-for - the-cash ' sequel were . 2 +23186 1050 they also demonstrate how desperate the makers of this ` we 're - doing-it-for - the-cash ' sequel were . 0 +23187 1050 also demonstrate how desperate the makers of this ` we 're - doing-it-for - the-cash ' sequel were . 0 +23188 1050 demonstrate how desperate the makers of this ` we 're - doing-it-for - the-cash ' sequel were . 1 +23189 1050 demonstrate how desperate the makers of this ` we 're - doing-it-for - the-cash ' sequel were 0 +23190 1050 demonstrate 2 +23191 1050 how desperate the makers of this ` we 're - doing-it-for - the-cash ' sequel were 1 +23192 1050 how desperate 2 +23193 1050 the makers of this ` we 're - doing-it-for - the-cash ' sequel were 0 +23194 1050 the makers of this ` we 're - doing-it-for - the-cash ' sequel 0 +23195 1050 of this ` we 're - doing-it-for - the-cash ' sequel 1 +23196 1050 this ` we 're - doing-it-for - the-cash ' sequel 0 +23197 1050 ` we 're - doing-it-for - the-cash ' sequel 2 +23198 1050 we 're - doing-it-for - the-cash ' sequel 2 +23199 1050 we 're - doing-it-for - the-cash 2 +23200 1050 're - doing-it-for - the-cash 1 +23201 1050 're - 2 +23202 1050 doing-it-for - the-cash 2 +23203 1050 doing-it-for - 2 +23204 1050 doing-it-for 2 +23205 1050 the-cash 2 +23206 1050 ' sequel 2 +23207 1051 To the vast majority of more casual filmgoers , it will probably be a talky bore . 1 +23208 1051 To the vast majority of more casual filmgoers 2 +23209 1051 the vast majority of more casual filmgoers 2 +23210 1051 the vast majority 2 +23211 1051 vast majority 2 +23212 1051 vast 2 +23213 1051 majority 2 +23214 1051 of more casual filmgoers 2 +23215 1051 more casual filmgoers 2 +23216 1051 casual filmgoers 3 +23217 1051 casual 2 +23218 1051 filmgoers 2 +23219 1051 , it will probably be a talky bore . 1 +23220 1051 it will probably be a talky bore . 1 +23221 1051 will probably be a talky bore . 1 +23222 1051 will probably be a talky bore 1 +23223 1051 be a talky bore 1 +23224 1051 a talky bore 1 +23225 1051 a talky 2 +23226 1051 talky 2 +23227 1051 bore 0 +23228 1052 finely crafted , finely written , exquisitely performed 4 +23229 1052 finely crafted , finely written , 4 +23230 1052 finely crafted , finely written 4 +23231 1052 finely crafted , 4 +23232 1052 finely crafted 4 +23233 1052 finely 3 +23234 1052 finely written 4 +23235 1052 exquisitely performed 4 +23236 1052 exquisitely 4 +23237 1052 performed 2 +23238 1053 There 's no real reason to see it , and no real reason not to . 2 +23239 1053 There 's no real reason to see it , and no real reason not to 2 +23240 1053 There 's no real reason to see it , and 1 +23241 1053 There 's no real reason to see it , 0 +23242 1053 There 's no real reason to see it 0 +23243 1053 's no real reason to see it 0 +23244 1053 no real reason to see it 1 +23245 1053 real reason to see it 3 +23246 1053 reason to see it 3 +23247 1053 no real reason not to 2 +23248 1053 no real reason 3 +23249 1053 real reason 2 +23250 1053 not to 2 +23251 1054 -LRB- Crystal and De Niro -RRB- manage to squeeze out some good laughs but not enough to make this silly con job sing . 2 +23252 1054 -LRB- Crystal and De Niro -RRB- 2 +23253 1054 Crystal and De Niro -RRB- 3 +23254 1054 Crystal and De Niro 2 +23255 1054 Crystal and 2 +23256 1054 Crystal 2 +23257 1054 De Niro 2 +23258 1054 De 2 +23259 1054 Niro 2 +23260 1054 manage to squeeze out some good laughs but not enough to make this silly con job sing . 2 +23261 1054 manage to squeeze out some good laughs but not enough to make this silly con job sing 2 +23262 1054 manage 2 +23263 1054 to squeeze out some good laughs but not enough to make this silly con job sing 1 +23264 1054 squeeze out some good laughs but not enough to make this silly con job sing 2 +23265 1054 squeeze out some good laughs but not enough 2 +23266 1054 squeeze out 2 +23267 1054 some good laughs but not enough 2 +23268 1054 some good laughs but not 2 +23269 1054 some good laughs 3 +23270 1054 good laughs 3 +23271 1054 to make this silly con job sing 2 +23272 1054 make this silly con job sing 3 +23273 1054 this silly con job sing 2 +23274 1054 this silly con job 1 +23275 1054 silly con job 1 +23276 1054 con job 1 +23277 1054 sing 2 +23278 1055 Master of Disguise runs for only 71 minutes and feels like three hours . 0 +23279 1055 Master of Disguise 2 +23280 1055 of Disguise 2 +23281 1055 runs for only 71 minutes and feels like three hours . 2 +23282 1055 runs for only 71 minutes and feels like three hours 0 +23283 1055 runs for only 71 minutes and 1 +23284 1055 runs for only 71 minutes 2 +23285 1055 for only 71 minutes 3 +23286 1055 only 71 minutes 2 +23287 1055 only 71 2 +23288 1055 71 2 +23289 1055 feels like three hours 1 +23290 1055 like three hours 2 +23291 1055 three hours 2 +23292 1056 ... a delightfully unpredictable , hilarious comedy with wonderful performances that tug at your heart in ways that utterly transcend gender labels . 4 +23293 1056 a delightfully unpredictable , hilarious comedy with wonderful performances that tug at your heart in ways that utterly transcend gender labels . 4 +23294 1056 a delightfully unpredictable , hilarious comedy with wonderful performances that tug at your heart in ways that utterly transcend gender 4 +23295 1056 a delightfully unpredictable , hilarious comedy 4 +23296 1056 delightfully unpredictable , hilarious comedy 4 +23297 1056 delightfully unpredictable , hilarious 4 +23298 1056 delightfully 3 +23299 1056 unpredictable , hilarious 4 +23300 1056 , hilarious 3 +23301 1056 with wonderful performances that tug at your heart in ways that utterly transcend gender 4 +23302 1056 wonderful performances that tug at your heart in ways that utterly transcend gender 4 +23303 1056 wonderful performances 3 +23304 1056 that tug at your heart in ways that utterly transcend gender 3 +23305 1056 tug at your heart in ways that utterly transcend gender 3 +23306 1056 tug at your heart in ways 4 +23307 1056 at your heart in ways 2 +23308 1056 your heart in ways 2 +23309 1056 in ways 2 +23310 1056 that utterly transcend gender 2 +23311 1056 utterly transcend gender 3 +23312 1056 utterly transcend 2 +23313 1056 transcend 3 +23314 1056 gender 2 +23315 1056 labels . 2 +23316 1056 labels 2 +23317 1057 It does n't matter that the film is less than 90 minutes . 3 +23318 1057 does n't matter that the film is less than 90 minutes . 2 +23319 1057 does n't matter that the film is less than 90 minutes 2 +23320 1057 matter that the film is less than 90 minutes 2 +23321 1057 that the film is less than 90 minutes 2 +23322 1057 the film is less than 90 minutes 2 +23323 1057 is less than 90 minutes 2 +23324 1057 less than 90 minutes 2 +23325 1057 less than 90 2 +23326 1057 than 90 2 +23327 1058 Do n't hate El Crimen del Padre Amaro because it 's anti-Catholic . 2 +23328 1058 Do n't hate El Crimen del Padre Amaro because it 's anti-Catholic 2 +23329 1058 hate El Crimen del Padre Amaro because it 's anti-Catholic 0 +23330 1058 El Crimen del Padre Amaro because it 's anti-Catholic 2 +23331 1058 El Crimen del Padre Amaro 2 +23332 1058 Crimen del Padre Amaro 2 +23333 1058 Crimen 2 +23334 1058 del Padre Amaro 2 +23335 1058 del 3 +23336 1058 Padre Amaro 2 +23337 1058 Padre 2 +23338 1058 Amaro 2 +23339 1058 because it 's anti-Catholic 2 +23340 1058 it 's anti-Catholic 2 +23341 1058 's anti-Catholic 2 +23342 1058 anti-Catholic 2 +23343 1059 The new Insomnia is a surprisingly faithful remake of its chilly predecessor , and when it does elect to head off in its own direction , it employs changes that fit it well rather than ones that were imposed for the sake of commercial sensibilities . 3 +23344 1059 The new Insomnia is a surprisingly faithful remake of its chilly predecessor , and when it does elect to head off in its own direction , it employs changes that fit it well rather than ones that were imposed for the sake of commercial sensibilities 4 +23345 1059 The new Insomnia is a surprisingly faithful remake of its chilly predecessor , and 3 +23346 1059 The new Insomnia is a surprisingly faithful remake of its chilly predecessor , 3 +23347 1059 The new Insomnia is a surprisingly faithful remake of its chilly predecessor 3 +23348 1059 The new Insomnia 3 +23349 1059 new Insomnia 2 +23350 1059 is a surprisingly faithful remake of its chilly predecessor 3 +23351 1059 a surprisingly faithful remake of its chilly predecessor 4 +23352 1059 a surprisingly faithful remake 3 +23353 1059 surprisingly faithful remake 2 +23354 1059 surprisingly faithful 3 +23355 1059 faithful 3 +23356 1059 of its chilly predecessor 2 +23357 1059 its chilly predecessor 2 +23358 1059 chilly predecessor 2 +23359 1059 chilly 2 +23360 1059 when it does elect to head off in its own direction , it employs changes that fit it well rather than ones that were imposed for the sake of commercial sensibilities 2 +23361 1059 when it does elect to head off in its own direction 2 +23362 1059 it does elect to head off in its own direction 3 +23363 1059 does elect to head off in its own direction 2 +23364 1059 elect to head off in its own direction 2 +23365 1059 elect 2 +23366 1059 to head off in its own direction 3 +23367 1059 head off in its own direction 2 +23368 1059 head off 2 +23369 1059 in its own direction 3 +23370 1059 its own direction 3 +23371 1059 own direction 2 +23372 1059 , it employs changes that fit it well rather than ones that were imposed for the sake of commercial sensibilities 2 +23373 1059 it employs changes that fit it well rather than ones that were imposed for the sake of commercial sensibilities 3 +23374 1059 employs changes that fit it well rather than ones that were imposed for the sake of commercial sensibilities 3 +23375 1059 changes that fit it well rather than ones that were imposed for the sake of commercial sensibilities 2 +23376 1059 changes that fit it well rather than 2 +23377 1059 changes that fit it 2 +23378 1059 changes 2 +23379 1059 that fit it 2 +23380 1059 fit it 2 +23381 1059 well rather than 2 +23382 1059 ones that were imposed for the sake of commercial sensibilities 1 +23383 1059 that were imposed for the sake of commercial sensibilities 1 +23384 1059 were imposed for the sake of commercial sensibilities 1 +23385 1059 imposed for the sake of commercial sensibilities 2 +23386 1059 imposed 2 +23387 1059 for the sake of commercial sensibilities 2 +23388 1059 the sake of commercial sensibilities 2 +23389 1059 the sake 2 +23390 1059 of commercial sensibilities 2 +23391 1059 commercial sensibilities 2 +23392 1060 Its sheer dynamism is infectious . 3 +23393 1060 Its sheer dynamism 4 +23394 1060 sheer dynamism 3 +23395 1060 dynamism 3 +23396 1060 is infectious . 3 +23397 1060 is infectious 3 +23398 1060 infectious 3 +23399 1061 Troll the cult section of your local video store for the real deal . 2 +23400 1061 Troll the cult section of your local video store for the real deal 1 +23401 1061 Troll 1 +23402 1061 the cult section of your local video store for the real deal 2 +23403 1061 the cult section 2 +23404 1061 cult section 2 +23405 1061 section 2 +23406 1061 of your local video store for the real deal 2 +23407 1061 your local video store for the real deal 2 +23408 1061 your local video store 2 +23409 1061 local video store 2 +23410 1061 local 3 +23411 1061 for the real deal 2 +23412 1061 the real deal 3 +23413 1061 real deal 2 +23414 1062 Bears is even worse than I imagined a movie ever could be . 0 +23415 1062 is even worse than I imagined a movie ever could be . 0 +23416 1062 is even worse than I imagined a movie ever could be 0 +23417 1062 is even worse 1 +23418 1062 even worse 1 +23419 1062 than I imagined a movie ever could be 2 +23420 1062 I imagined a movie ever could be 3 +23421 1062 imagined a movie ever could be 2 +23422 1062 a movie ever could be 3 +23423 1062 ever could be 2 +23424 1062 could be 2 +23425 1063 Crush could be the worst film a man has made about women since Valley of the Dolls . 0 +23426 1063 could be the worst film a man has made about women since Valley of the Dolls . 0 +23427 1063 could be the worst film a man has made about women since Valley of the Dolls 0 +23428 1063 be the worst film a man has made about women since Valley of the Dolls 0 +23429 1063 the worst film a man has made about women since Valley of the Dolls 0 +23430 1063 the worst film 0 +23431 1063 worst film 0 +23432 1063 a man has made about women since Valley of the Dolls 3 +23433 1063 has made about women since Valley of the Dolls 2 +23434 1063 made about women since Valley of the Dolls 2 +23435 1063 about women since Valley of the Dolls 2 +23436 1063 women since Valley of the Dolls 2 +23437 1063 since Valley of the Dolls 2 +23438 1063 Valley of the Dolls 3 +23439 1063 Valley 2 +23440 1063 of the Dolls 2 +23441 1063 the Dolls 2 +23442 1063 Dolls 2 +23443 1064 With McConaughey in an entirely irony-free zone and Bale reduced mainly to batting his sensitive eyelids , there 's not enough intelligence , wit or innovation on the screen to attract and sustain an older crowd . 1 +23444 1064 With McConaughey in an entirely irony-free zone and Bale reduced mainly to batting his sensitive eyelids 1 +23445 1064 McConaughey in an entirely irony-free zone and Bale reduced mainly to batting his sensitive eyelids 2 +23446 1064 McConaughey 2 +23447 1064 in an entirely irony-free zone and Bale reduced mainly to batting his sensitive eyelids 1 +23448 1064 an entirely irony-free zone and Bale reduced mainly to batting his sensitive eyelids 1 +23449 1064 an entirely irony-free zone and 2 +23450 1064 an entirely irony-free zone 2 +23451 1064 entirely irony-free zone 3 +23452 1064 entirely irony-free 3 +23453 1064 irony-free 3 +23454 1064 Bale reduced mainly to batting his sensitive eyelids 1 +23455 1064 Bale 2 +23456 1064 reduced mainly to batting his sensitive eyelids 2 +23457 1064 reduced mainly 2 +23458 1064 reduced 2 +23459 1064 to batting his sensitive eyelids 2 +23460 1064 batting his sensitive eyelids 2 +23461 1064 batting 2 +23462 1064 his sensitive eyelids 2 +23463 1064 sensitive eyelids 2 +23464 1064 eyelids 2 +23465 1064 , there 's not enough intelligence , wit or innovation on the screen to attract and sustain an older crowd . 0 +23466 1064 there 's not enough intelligence , wit or innovation on the screen to attract and sustain an older crowd . 0 +23467 1064 's not enough intelligence , wit or innovation on the screen to attract and sustain an older crowd . 1 +23468 1064 's not enough intelligence , wit or innovation on the screen to attract and sustain an older crowd 1 +23469 1064 enough intelligence , wit or innovation on the screen to attract and sustain an older crowd 4 +23470 1064 enough intelligence , wit or innovation 2 +23471 1064 intelligence , wit or innovation 3 +23472 1064 , wit or innovation 2 +23473 1064 wit or innovation 3 +23474 1064 wit or 2 +23475 1064 innovation 3 +23476 1064 on the screen to attract and sustain an older crowd 2 +23477 1064 the screen to attract and sustain an older crowd 3 +23478 1064 screen to attract and sustain an older crowd 2 +23479 1064 to attract and sustain an older crowd 2 +23480 1064 attract and sustain an older crowd 3 +23481 1064 attract and sustain 2 +23482 1064 attract and 2 +23483 1064 an older crowd 2 +23484 1064 older crowd 2 +23485 1065 A light , engaging comedy that fumbles away almost all of its accumulated enjoyment with a crucial third act miscalculation . 1 +23486 1065 A light , engaging comedy that fumbles away almost all of its accumulated enjoyment with a crucial third act miscalculation 2 +23487 1065 A light , 2 +23488 1065 A light 2 +23489 1065 engaging comedy that fumbles away almost all of its accumulated enjoyment with a crucial third act miscalculation 2 +23490 1065 engaging comedy 3 +23491 1065 that fumbles away almost all of its accumulated enjoyment with a crucial third act miscalculation 1 +23492 1065 fumbles away almost all of its accumulated enjoyment with a crucial third act miscalculation 1 +23493 1065 fumbles away 1 +23494 1065 fumbles 2 +23495 1065 almost all of its accumulated enjoyment with a crucial third act miscalculation 1 +23496 1065 almost all 2 +23497 1065 of its accumulated enjoyment with a crucial third act miscalculation 2 +23498 1065 its accumulated enjoyment with a crucial third act miscalculation 2 +23499 1065 its accumulated enjoyment 3 +23500 1065 accumulated enjoyment 3 +23501 1065 accumulated 2 +23502 1065 with a crucial third act miscalculation 2 +23503 1065 a crucial third act miscalculation 1 +23504 1065 crucial third act miscalculation 2 +23505 1065 crucial 2 +23506 1065 third act miscalculation 1 +23507 1065 third 2 +23508 1065 act miscalculation 2 +23509 1065 miscalculation 1 +23510 1066 They presume their audience wo n't sit still for a sociology lesson , however entertainingly presented , so they trot out the conventional science-fiction elements of bug-eyed monsters and futuristic women in skimpy clothes . 1 +23511 1066 They presume their audience wo n't sit still for a sociology lesson , however entertainingly presented , so they trot out the conventional science-fiction elements of bug-eyed monsters and futuristic women in skimpy clothes 1 +23512 1066 They presume their audience wo n't sit still for a sociology lesson , however entertainingly presented , so 3 +23513 1066 They presume their audience wo n't sit still for a sociology lesson , however entertainingly presented , 2 +23514 1066 They presume their audience wo n't sit still for a sociology lesson 1 +23515 1066 presume their audience wo n't sit still for a sociology lesson 1 +23516 1066 presume 3 +23517 1066 their audience wo n't sit still for a sociology lesson 2 +23518 1066 their audience 2 +23519 1066 wo n't sit still for a sociology lesson 1 +23520 1066 sit still for a sociology lesson 2 +23521 1066 sit still 2 +23522 1066 for a sociology lesson 2 +23523 1066 a sociology lesson 2 +23524 1066 sociology lesson 2 +23525 1066 , however entertainingly presented , 1 +23526 1066 however entertainingly presented , 3 +23527 1066 however entertainingly presented 3 +23528 1066 however 2 +23529 1066 entertainingly presented 3 +23530 1066 presented 2 +23531 1066 they trot out the conventional science-fiction elements of bug-eyed monsters and futuristic women in skimpy clothes 1 +23532 1066 trot out the conventional science-fiction elements of bug-eyed monsters and futuristic women in skimpy clothes 2 +23533 1066 trot out 2 +23534 1066 trot 2 +23535 1066 the conventional science-fiction elements of bug-eyed monsters and futuristic women in skimpy clothes 1 +23536 1066 the conventional science-fiction elements of bug-eyed monsters and 2 +23537 1066 the conventional science-fiction elements of bug-eyed monsters 1 +23538 1066 the conventional science-fiction elements 2 +23539 1066 conventional science-fiction elements 2 +23540 1066 science-fiction elements 2 +23541 1066 science-fiction 2 +23542 1066 of bug-eyed monsters 2 +23543 1066 bug-eyed monsters 2 +23544 1066 bug-eyed 2 +23545 1066 monsters 2 +23546 1066 futuristic women in skimpy clothes 1 +23547 1066 futuristic women 2 +23548 1066 futuristic 2 +23549 1066 in skimpy clothes 2 +23550 1066 skimpy clothes 2 +23551 1066 skimpy 1 +23552 1066 clothes 2 +23553 1067 It does n't offer audiences any way of gripping what its point is , or even its attitude toward its subject . 1 +23554 1067 does n't offer audiences any way of gripping what its point is , or even its attitude toward its subject . 0 +23555 1067 does n't offer audiences any way of gripping what its point is , or even its attitude toward its subject 1 +23556 1067 offer audiences any way of gripping what its point is , or even its attitude toward its subject 1 +23557 1067 offer audiences 3 +23558 1067 any way of gripping what its point is , or even its attitude toward its subject 1 +23559 1067 any way of gripping what its point is , or 1 +23560 1067 any way of gripping what its point is , 1 +23561 1067 any way of gripping what its point is 1 +23562 1067 any way of gripping 2 +23563 1067 any way 2 +23564 1067 of gripping 2 +23565 1067 what its point is 2 +23566 1067 its point is 2 +23567 1067 its point 2 +23568 1067 even its attitude toward its subject 2 +23569 1067 even its attitude 2 +23570 1067 its attitude 2 +23571 1067 toward its subject 2 +23572 1067 its subject 2 +23573 1068 A loquacious and dreary piece of business . 1 +23574 1068 A loquacious and dreary piece of business 2 +23575 1068 A loquacious and dreary piece 1 +23576 1068 loquacious and dreary piece 1 +23577 1068 loquacious 3 +23578 1068 and dreary piece 1 +23579 1068 dreary piece 1 +23580 1068 of business 2 +23581 1069 Blue Crush is as predictable as the tides . 1 +23582 1069 is as predictable as the tides . 1 +23583 1069 is as predictable as the tides 1 +23584 1069 as predictable as the tides 0 +23585 1069 predictable as the tides 1 +23586 1069 as the tides 2 +23587 1069 the tides 2 +23588 1069 tides 2 +23589 1070 waydowntown manages to nail the spirit-crushing ennui of denuded urban living without giving in to it . 3 +23590 1070 manages to nail the spirit-crushing ennui of denuded urban living without giving in to it . 3 +23591 1070 manages to nail the spirit-crushing ennui of denuded urban living without giving in to it 3 +23592 1070 to nail the spirit-crushing ennui of denuded urban living without giving in to it 3 +23593 1070 nail the spirit-crushing ennui of denuded urban living without giving in to it 3 +23594 1070 nail the spirit-crushing ennui of denuded urban living 2 +23595 1070 nail 2 +23596 1070 the spirit-crushing ennui of denuded urban living 2 +23597 1070 the spirit-crushing ennui 2 +23598 1070 spirit-crushing ennui 1 +23599 1070 spirit-crushing 1 +23600 1070 ennui 2 +23601 1070 of denuded urban living 2 +23602 1070 denuded urban living 2 +23603 1070 denuded 3 +23604 1070 urban living 2 +23605 1070 without giving in to it 2 +23606 1070 giving in to it 2 +23607 1070 giving 2 +23608 1070 in to it 2 +23609 1071 Disturbing . 1 +23610 1072 But it 's defiantly and delightfully against the grain . 3 +23611 1072 it 's defiantly and delightfully against the grain . 4 +23612 1072 's defiantly and delightfully against the grain . 4 +23613 1072 's defiantly and delightfully against the grain 4 +23614 1072 defiantly and delightfully against the grain 3 +23615 1072 defiantly and 2 +23616 1072 delightfully against the grain 3 +23617 1072 against the grain 2 +23618 1072 the grain 2 +23619 1073 A compelling coming-of-age drama about the arduous journey of a sensitive young girl through a series of foster homes and a fierce struggle to pull free from her dangerous and domineering mother 's hold over her . 3 +23620 1073 A compelling coming-of-age drama about the arduous journey of a sensitive young girl through a series of foster homes and a fierce struggle to pull free from her dangerous and domineering mother 3 +23621 1073 A compelling coming-of-age drama 3 +23622 1073 compelling coming-of-age drama 4 +23623 1073 coming-of-age drama 3 +23624 1073 about the arduous journey of a sensitive young girl through a series of foster homes and a fierce struggle to pull free from her dangerous and domineering mother 2 +23625 1073 the arduous journey of a sensitive young girl through a series of foster homes and a fierce struggle to pull free from her dangerous and domineering mother 2 +23626 1073 the arduous journey of a sensitive young girl through a series of foster homes and 3 +23627 1073 the arduous journey of a sensitive young girl through a series of foster homes 2 +23628 1073 the arduous journey 2 +23629 1073 arduous journey 1 +23630 1073 arduous 1 +23631 1073 of a sensitive young girl through a series of foster homes 2 +23632 1073 a sensitive young girl through a series of foster homes 2 +23633 1073 a sensitive young girl 2 +23634 1073 sensitive young girl 2 +23635 1073 young girl 2 +23636 1073 through a series of foster homes 2 +23637 1073 a series of foster homes 2 +23638 1073 of foster homes 2 +23639 1073 foster homes 2 +23640 1073 homes 2 +23641 1073 a fierce struggle to pull free from her dangerous and domineering mother 2 +23642 1073 fierce struggle to pull free from her dangerous and domineering mother 2 +23643 1073 struggle to pull free from her dangerous and domineering mother 2 +23644 1073 to pull free from her dangerous and domineering mother 2 +23645 1073 pull free from her dangerous and domineering mother 2 +23646 1073 pull free 2 +23647 1073 pull 2 +23648 1073 from her dangerous and domineering mother 2 +23649 1073 her dangerous and domineering mother 2 +23650 1073 dangerous and domineering mother 2 +23651 1073 dangerous and domineering 1 +23652 1073 dangerous and 2 +23653 1073 domineering 2 +23654 1073 mother 2 +23655 1073 's hold over her . 2 +23656 1073 's hold over her 2 +23657 1073 hold over her 2 +23658 1073 hold over 2 +23659 1074 Strange it is , but delightfully so . 3 +23660 1074 Strange it is , but delightfully so 3 +23661 1074 Strange it is , but 2 +23662 1074 Strange it is , 2 +23663 1074 Strange it is 2 +23664 1074 delightfully so 3 +23665 1075 A clash between the artificial structure of the story and the more contemporary , naturalistic tone of the film ... 1 +23666 1075 A clash between the artificial structure of the story and the more contemporary , naturalistic tone of the film 1 +23667 1075 A clash between the artificial structure of the story and the more contemporary , naturalistic tone 2 +23668 1075 A clash between the artificial structure 2 +23669 1075 A clash 2 +23670 1075 clash 2 +23671 1075 between the artificial structure 1 +23672 1075 the artificial structure 1 +23673 1075 artificial structure 1 +23674 1075 of the story and the more contemporary , naturalistic tone 2 +23675 1075 the story and the more contemporary , naturalistic tone 3 +23676 1075 the more contemporary , naturalistic tone 2 +23677 1075 more contemporary , naturalistic tone 2 +23678 1075 more contemporary 3 +23679 1075 , naturalistic tone 2 +23680 1075 naturalistic tone 2 +23681 1075 naturalistic 3 +23682 1076 Jagger , Stoppard and director Michael Apted ... deliver a riveting and surprisingly romantic ride . 4 +23683 1076 Jagger , Stoppard and director Michael Apted 2 +23684 1076 Jagger , Stoppard and 3 +23685 1076 Jagger , Stoppard 2 +23686 1076 Jagger , 2 +23687 1076 Jagger 2 +23688 1076 Stoppard 2 +23689 1076 director Michael Apted 2 +23690 1076 Michael Apted 2 +23691 1076 Apted 2 +23692 1076 ... deliver a riveting and surprisingly romantic ride . 4 +23693 1076 deliver a riveting and surprisingly romantic ride . 3 +23694 1076 deliver a riveting and surprisingly romantic ride 4 +23695 1076 a riveting and surprisingly romantic ride 4 +23696 1076 riveting and surprisingly romantic ride 4 +23697 1076 riveting and surprisingly romantic 4 +23698 1076 surprisingly romantic 3 +23699 1077 If the material is slight and admittedly manipulative , Jacquot preserves Tosca 's intoxicating ardor through his use of the camera . 3 +23700 1077 If the material is slight and admittedly manipulative 2 +23701 1077 the material is slight and admittedly manipulative 2 +23702 1077 is slight and admittedly manipulative 2 +23703 1077 slight and admittedly manipulative 2 +23704 1077 slight and 2 +23705 1077 admittedly manipulative 1 +23706 1077 admittedly 2 +23707 1077 , Jacquot preserves Tosca 's intoxicating ardor through his use of the camera . 2 +23708 1077 Jacquot preserves Tosca 's intoxicating ardor through his use of the camera . 3 +23709 1077 Jacquot 2 +23710 1077 preserves Tosca 's intoxicating ardor through his use of the camera . 3 +23711 1077 preserves Tosca 's intoxicating ardor through his use of the camera 3 +23712 1077 preserves Tosca 's intoxicating ardor 4 +23713 1077 preserves 2 +23714 1077 Tosca 's intoxicating ardor 3 +23715 1077 Tosca 's 2 +23716 1077 Tosca 2 +23717 1077 intoxicating ardor 2 +23718 1077 ardor 2 +23719 1077 through his use of the camera 2 +23720 1077 his use of the camera 2 +23721 1077 his use 2 +23722 1077 of the camera 2 +23723 1078 -LRB- A -RRB- slummer . 1 +23724 1078 slummer . 2 +23725 1078 slummer 1 +23726 1079 Ultimately , in the history of the Academy , people may be wondering what all that jazz was about `` Chicago '' in 2002 . 1 +23727 1079 , in the history of the Academy , people may be wondering what all that jazz was about `` Chicago '' in 2002 . 1 +23728 1079 in the history of the Academy , people may be wondering what all that jazz was about `` Chicago '' in 2002 . 2 +23729 1079 in the history of the Academy 2 +23730 1079 the history of the Academy 2 +23731 1079 of the Academy 2 +23732 1079 the Academy 2 +23733 1079 , people may be wondering what all that jazz was about `` Chicago '' in 2002 . 2 +23734 1079 people may be wondering what all that jazz was about `` Chicago '' in 2002 . 1 +23735 1079 may be wondering what all that jazz was about `` Chicago '' in 2002 . 1 +23736 1079 may be wondering what all that jazz was about `` Chicago '' in 2002 2 +23737 1079 be wondering what all that jazz was about `` Chicago '' in 2002 2 +23738 1079 wondering what all that jazz was about `` Chicago '' in 2002 1 +23739 1079 what all that jazz was about `` Chicago '' in 2002 2 +23740 1079 all that jazz was about `` Chicago '' in 2002 2 +23741 1079 all that jazz 2 +23742 1079 that jazz 2 +23743 1079 jazz 2 +23744 1079 was about `` Chicago '' in 2002 2 +23745 1079 about `` Chicago '' in 2002 2 +23746 1079 `` Chicago '' in 2002 2 +23747 1079 `` Chicago '' 2 +23748 1079 Chicago '' 2 +23749 1080 The direction occasionally rises to the level of marginal competence , but for most of the film it is hard to tell who is chasing who or why . 1 +23750 1080 The direction occasionally rises to the level of marginal competence , but for most of the film it is hard to tell who is chasing who or why 1 +23751 1080 The direction occasionally rises to the level of marginal competence , but 2 +23752 1080 The direction occasionally rises to the level of marginal competence , 2 +23753 1080 The direction occasionally rises to the level of marginal competence 1 +23754 1080 The direction 2 +23755 1080 occasionally rises to the level of marginal competence 2 +23756 1080 rises to the level of marginal competence 2 +23757 1080 to the level of marginal competence 2 +23758 1080 the level of marginal competence 1 +23759 1080 the level 2 +23760 1080 of marginal competence 2 +23761 1080 marginal competence 2 +23762 1080 marginal 1 +23763 1080 competence 3 +23764 1080 for most of the film it is hard to tell who is chasing who or why 1 +23765 1080 for most of the film 2 +23766 1080 most of the film 2 +23767 1080 it is hard to tell who is chasing who or why 1 +23768 1080 is hard to tell who is chasing who or why 1 +23769 1080 hard to tell who is chasing who or why 2 +23770 1080 to tell who is chasing who or why 2 +23771 1080 tell who is chasing who or why 2 +23772 1080 who is chasing who or why 2 +23773 1080 who is chasing who or 1 +23774 1080 who is chasing who 3 +23775 1080 is chasing who 2 +23776 1080 chasing who 3 +23777 1080 chasing 2 +23778 1081 For a story set at sea , Ghost Ship is pretty landbound , with its leaden acting , dull exposition and telegraphed ` surprises . ' 0 +23779 1081 For a story set at sea 2 +23780 1081 a story set at sea 2 +23781 1081 set at sea 2 +23782 1081 at sea 2 +23783 1081 , Ghost Ship is pretty landbound , with its leaden acting , dull exposition and telegraphed ` surprises . ' 0 +23784 1081 Ghost Ship is pretty landbound , with its leaden acting , dull exposition and telegraphed ` surprises . ' 1 +23785 1081 Ghost Ship 2 +23786 1081 Ghost 2 +23787 1081 Ship 2 +23788 1081 is pretty landbound , with its leaden acting , dull exposition and telegraphed ` surprises . ' 2 +23789 1081 is pretty landbound , with its leaden acting , dull exposition and telegraphed ` surprises . 1 +23790 1081 is pretty landbound , with its leaden acting , dull exposition and telegraphed ` surprises 1 +23791 1081 is pretty landbound , 2 +23792 1081 is pretty landbound 2 +23793 1081 pretty landbound 2 +23794 1081 landbound 2 +23795 1081 with its leaden acting , dull exposition and telegraphed ` surprises 1 +23796 1081 its leaden acting , dull exposition and telegraphed ` surprises 1 +23797 1081 its leaden acting , dull exposition and 1 +23798 1081 its leaden acting , dull exposition 3 +23799 1081 its leaden acting , 1 +23800 1081 its leaden acting 1 +23801 1081 leaden acting 2 +23802 1081 dull exposition 1 +23803 1081 telegraphed ` surprises 2 +23804 1081 ` surprises 2 +23805 1081 surprises 3 +23806 1082 On its icy face , the new film is a subzero version of Monsters , Inc. , without the latter 's imagination , visual charm or texture . 0 +23807 1082 On its icy face 2 +23808 1082 its icy face 2 +23809 1082 icy face 2 +23810 1082 , the new film is a subzero version of Monsters , Inc. , without the latter 's imagination , visual charm or texture . 0 +23811 1082 the new film is a subzero version of Monsters , Inc. , without the latter 's imagination , visual charm or texture . 0 +23812 1082 the new film 2 +23813 1082 new film 2 +23814 1082 is a subzero version of Monsters , Inc. , without the latter 's imagination , visual charm or texture . 1 +23815 1082 is a subzero version of Monsters , Inc. , without the latter 's imagination , visual charm or texture 0 +23816 1082 is a subzero version of Monsters , Inc. , without the latter 's imagination , 0 +23817 1082 is a subzero version of Monsters , Inc. , without the latter 's imagination 0 +23818 1082 is a subzero version of Monsters , Inc. , 1 +23819 1082 a subzero version of Monsters , Inc. , 2 +23820 1082 a subzero version 1 +23821 1082 subzero version 1 +23822 1082 subzero 1 +23823 1082 of Monsters , Inc. , 2 +23824 1082 Monsters , Inc. , 2 +23825 1082 , Inc. , 2 +23826 1082 Inc. , 2 +23827 1082 Inc. 2 +23828 1082 without the latter 's imagination 2 +23829 1082 the latter 's imagination 2 +23830 1082 the latter 's 2 +23831 1082 latter 's 2 +23832 1082 latter 2 +23833 1082 imagination 3 +23834 1082 visual charm or texture 3 +23835 1082 charm or texture 3 +23836 1082 charm or 3 +23837 1083 The 1960s rebellion was misdirected : you ca n't fight your culture . 2 +23838 1083 The 1960s rebellion was misdirected : you ca n't fight your culture 1 +23839 1083 The 1960s rebellion was misdirected : 1 +23840 1083 The 1960s rebellion was misdirected 1 +23841 1083 The 1960s rebellion 2 +23842 1083 1960s rebellion 1 +23843 1083 1960s 2 +23844 1083 rebellion 2 +23845 1083 was misdirected 2 +23846 1083 misdirected 1 +23847 1083 you ca n't fight your culture 2 +23848 1083 ca n't fight your culture 2 +23849 1083 fight your culture 2 +23850 1083 your culture 2 +23851 1084 Millions of dollars heaped upon a project of such vast proportions need to reap more rewards than spiffy bluescreen technique and stylish weaponry . 1 +23852 1084 Millions of dollars 2 +23853 1084 Millions 2 +23854 1084 of dollars 2 +23855 1084 dollars 3 +23856 1084 heaped upon a project of such vast proportions need to reap more rewards than spiffy bluescreen technique and stylish weaponry . 3 +23857 1084 heaped upon a project of such vast proportions need to reap more rewards than spiffy bluescreen technique and stylish weaponry 2 +23858 1084 heaped 2 +23859 1084 upon a project of such vast proportions need to reap more rewards than spiffy bluescreen technique and stylish weaponry 2 +23860 1084 a project of such vast proportions need to reap more rewards than spiffy bluescreen technique and stylish weaponry 2 +23861 1084 a project of such vast proportions 2 +23862 1084 a project 2 +23863 1084 of such vast proportions 2 +23864 1084 such vast proportions 2 +23865 1084 vast proportions 2 +23866 1084 need to reap more rewards than spiffy bluescreen technique and stylish weaponry 1 +23867 1084 to reap more rewards than spiffy bluescreen technique and stylish weaponry 2 +23868 1084 reap more rewards than spiffy bluescreen technique and stylish weaponry 2 +23869 1084 reap more rewards 3 +23870 1084 reap 2 +23871 1084 more rewards 2 +23872 1084 rewards 3 +23873 1084 than spiffy bluescreen technique and stylish weaponry 3 +23874 1084 spiffy bluescreen technique and stylish weaponry 3 +23875 1084 spiffy bluescreen technique and 3 +23876 1084 spiffy bluescreen technique 3 +23877 1084 spiffy 3 +23878 1084 bluescreen technique 2 +23879 1084 technique 2 +23880 1084 stylish weaponry 3 +23881 1084 weaponry 2 +23882 1085 Family portrait of need , neurosis and nervy negativity is a rare treat that shows the promise of digital filmmaking . 3 +23883 1085 Family portrait of need , neurosis and nervy 2 +23884 1085 Family portrait 2 +23885 1085 of need , neurosis and nervy 2 +23886 1085 need , neurosis and nervy 1 +23887 1085 , neurosis and nervy 2 +23888 1085 neurosis and nervy 2 +23889 1085 neurosis and 2 +23890 1085 neurosis 2 +23891 1085 negativity is a rare treat that shows the promise of digital filmmaking . 4 +23892 1085 negativity 0 +23893 1085 is a rare treat that shows the promise of digital filmmaking . 4 +23894 1085 is a rare treat that shows the promise of digital filmmaking 4 +23895 1085 a rare treat that shows the promise of digital filmmaking 3 +23896 1085 a rare treat 4 +23897 1085 rare treat 3 +23898 1085 that shows the promise of digital filmmaking 3 +23899 1085 shows the promise of digital filmmaking 3 +23900 1085 the promise of digital filmmaking 3 +23901 1085 the promise 2 +23902 1085 of digital filmmaking 2 +23903 1085 digital filmmaking 2 +23904 1085 digital 2 +23905 1086 A poignant and gently humorous parable that loves its characters and communicates something rather beautiful about human nature . 4 +23906 1086 A poignant and gently humorous 4 +23907 1086 poignant and gently humorous 3 +23908 1086 and gently humorous 3 +23909 1086 gently humorous 3 +23910 1086 parable that loves its characters and communicates something rather beautiful about human nature . 3 +23911 1086 parable that loves its characters and communicates something rather beautiful about human nature 4 +23912 1086 that loves its characters and communicates something rather beautiful about human nature 4 +23913 1086 loves its characters and communicates something rather beautiful about human nature 4 +23914 1086 loves its characters and communicates something rather beautiful 3 +23915 1086 loves its characters and communicates something 3 +23916 1086 its characters and communicates something 3 +23917 1086 characters and communicates something 2 +23918 1086 and communicates something 3 +23919 1086 communicates something 3 +23920 1086 communicates 2 +23921 1086 rather beautiful 4 +23922 1086 about human nature 2 +23923 1087 Smug , artificial , ill-constructed and fatally overlong ... it never finds a consistent tone and lacks bite , degenerating into a pious , preachy soap opera . 2 +23924 1087 Smug , artificial , ill-constructed and fatally overlong ... it never finds a consistent tone and lacks bite , degenerating into a pious , preachy soap opera 0 +23925 1087 Smug , artificial , ill-constructed and fatally overlong ... 1 +23926 1087 Smug , artificial , ill-constructed and fatally overlong 0 +23927 1087 , artificial , ill-constructed and fatally overlong 0 +23928 1087 artificial , ill-constructed and fatally overlong 1 +23929 1087 , ill-constructed and fatally overlong 1 +23930 1087 ill-constructed and fatally overlong 0 +23931 1087 ill-constructed 0 +23932 1087 and fatally overlong 1 +23933 1087 fatally overlong 0 +23934 1087 fatally 2 +23935 1087 it never finds a consistent tone and lacks bite , degenerating into a pious , preachy soap opera 0 +23936 1087 never finds a consistent tone and lacks bite , degenerating into a pious , preachy soap opera 0 +23937 1087 finds a consistent tone and lacks bite , degenerating into a pious , preachy soap opera 1 +23938 1087 finds a consistent tone and lacks bite , 1 +23939 1087 finds a consistent tone and lacks bite 1 +23940 1087 finds a consistent tone and lacks 3 +23941 1087 finds a consistent tone and 3 +23942 1087 finds a consistent tone 3 +23943 1087 a consistent tone 3 +23944 1087 consistent tone 2 +23945 1087 consistent 3 +23946 1087 degenerating into a pious , preachy soap opera 0 +23947 1087 degenerating 1 +23948 1087 into a pious , preachy soap opera 1 +23949 1087 a pious , preachy soap opera 1 +23950 1087 pious , preachy soap opera 0 +23951 1087 pious 2 +23952 1087 , preachy soap opera 1 +23953 1087 preachy soap opera 1 +23954 1088 Charlie Hunnam has the twinkling eyes , repressed smile and determined face needed to carry out a Dickensian hero . 4 +23955 1088 Charlie Hunnam 2 +23956 1088 Charlie 2 +23957 1088 Hunnam 2 +23958 1088 has the twinkling eyes , repressed smile and determined face needed to carry out a Dickensian hero . 3 +23959 1088 has the twinkling eyes , repressed smile and determined face needed to carry out a Dickensian hero 3 +23960 1088 has the twinkling eyes , repressed smile and 3 +23961 1088 has the twinkling eyes , repressed smile 2 +23962 1088 the twinkling eyes , repressed smile 2 +23963 1088 twinkling eyes , repressed smile 2 +23964 1088 twinkling 3 +23965 1088 eyes , repressed smile 2 +23966 1088 , repressed smile 2 +23967 1088 repressed smile 2 +23968 1088 repressed 1 +23969 1088 smile 4 +23970 1088 determined face needed to carry out a Dickensian hero 2 +23971 1088 face needed to carry out a Dickensian hero 2 +23972 1088 needed to carry out a Dickensian hero 2 +23973 1088 to carry out a Dickensian hero 2 +23974 1088 carry out a Dickensian hero 2 +23975 1088 carry out 2 +23976 1088 carry 2 +23977 1088 a Dickensian hero 3 +23978 1088 Dickensian hero 2 +23979 1088 Dickensian 2 +23980 1089 Measured against practically any like-themed film other than its Oscar-sweeping franchise predecessor The Silence of the Lambs , Red Dragon rates as an exceptional thriller . 4 +23981 1089 Measured against practically any like-themed film other than its Oscar-sweeping franchise predecessor The Silence of the Lambs 2 +23982 1089 Measured against practically any like-themed film other than its Oscar-sweeping franchise predecessor 3 +23983 1089 Measured 2 +23984 1089 against practically any like-themed film other than its Oscar-sweeping franchise predecessor 2 +23985 1089 practically any like-themed film other than its Oscar-sweeping franchise predecessor 3 +23986 1089 practically any like-themed film 2 +23987 1089 any like-themed film 2 +23988 1089 like-themed film 3 +23989 1089 like-themed 2 +23990 1089 other than its Oscar-sweeping franchise predecessor 3 +23991 1089 than its Oscar-sweeping franchise predecessor 2 +23992 1089 its Oscar-sweeping franchise predecessor 4 +23993 1089 Oscar-sweeping franchise predecessor 3 +23994 1089 Oscar-sweeping 4 +23995 1089 franchise predecessor 2 +23996 1089 , Red Dragon rates as an exceptional thriller . 3 +23997 1089 Red Dragon rates as an exceptional thriller . 4 +23998 1089 rates as an exceptional thriller . 4 +23999 1089 rates as an exceptional thriller 4 +24000 1089 rates 2 +24001 1089 as an exceptional thriller 3 +24002 1089 an exceptional thriller 4 +24003 1089 exceptional thriller 4 +24004 1089 exceptional 3 +24005 1090 Watching a Brian DePalma movie is like watching an Alfred Hitchcock movie after drinking twelve beers . 1 +24006 1090 Watching a Brian DePalma movie 2 +24007 1090 a Brian DePalma movie 2 +24008 1090 Brian DePalma movie 2 +24009 1090 Brian 2 +24010 1090 DePalma movie 2 +24011 1090 DePalma 2 +24012 1090 is like watching an Alfred Hitchcock movie after drinking twelve beers . 1 +24013 1090 is like watching an Alfred Hitchcock movie after drinking twelve beers 2 +24014 1090 like watching an Alfred Hitchcock movie after drinking twelve beers 1 +24015 1090 watching an Alfred Hitchcock movie after drinking twelve beers 2 +24016 1090 watching an Alfred Hitchcock movie 2 +24017 1090 an Alfred Hitchcock movie 3 +24018 1090 Alfred Hitchcock movie 2 +24019 1090 Alfred 2 +24020 1090 Hitchcock movie 2 +24021 1090 Hitchcock 2 +24022 1090 after drinking twelve beers 1 +24023 1090 drinking twelve beers 2 +24024 1090 drinking 2 +24025 1090 twelve beers 2 +24026 1090 twelve 2 +24027 1090 beers 2 +24028 1091 Guy gets girl , guy loses girl , audience falls asleep . 0 +24029 1091 Guy gets girl , guy loses girl , audience falls asleep 0 +24030 1091 Guy gets girl , guy loses girl , 2 +24031 1091 Guy gets girl , guy loses girl 2 +24032 1091 Guy gets girl , 2 +24033 1091 Guy gets girl 3 +24034 1091 gets girl 2 +24035 1091 guy loses girl 2 +24036 1091 loses girl 2 +24037 1091 audience falls asleep 0 +24038 1091 falls asleep 2 +24039 1091 asleep 2 +24040 1092 ... this story gets sillier , not scarier , as it goes along ... 1 +24041 1092 this story gets sillier , not scarier , as it goes along ... 1 +24042 1092 gets sillier , not scarier , as it goes along ... 2 +24043 1092 gets sillier , not scarier , as it goes along 1 +24044 1092 gets sillier , not scarier , 1 +24045 1092 gets sillier , not scarier 1 +24046 1092 sillier , not scarier 1 +24047 1092 , not scarier 1 +24048 1092 not scarier 1 +24049 1092 as it goes along 2 +24050 1092 it goes along 2 +24051 1092 goes along 2 +24052 1093 You can thank me for this . 2 +24053 1093 can thank me for this . 2 +24054 1093 can thank me for this 2 +24055 1093 thank me for this 3 +24056 1093 thank me 2 +24057 1093 thank 3 +24058 1093 for this 2 +24059 1094 Despite its Hawaiian setting , the science-fiction trimmings and some moments of rowdy slapstick , the basic plot of `` Lilo '' could have been pulled from a tear-stained vintage Shirley Temple script . 1 +24060 1094 Despite its Hawaiian setting , the science-fiction trimmings and some moments of rowdy slapstick 2 +24061 1094 its Hawaiian setting , the science-fiction trimmings and some moments of rowdy slapstick 3 +24062 1094 its Hawaiian setting , the science-fiction trimmings and 3 +24063 1094 its Hawaiian setting , the science-fiction trimmings 2 +24064 1094 its Hawaiian setting , 2 +24065 1094 its Hawaiian setting 2 +24066 1094 Hawaiian setting 3 +24067 1094 Hawaiian 2 +24068 1094 the science-fiction trimmings 2 +24069 1094 science-fiction trimmings 2 +24070 1094 trimmings 2 +24071 1094 some moments of rowdy slapstick 2 +24072 1094 some moments 2 +24073 1094 of rowdy slapstick 2 +24074 1094 rowdy slapstick 3 +24075 1094 rowdy 2 +24076 1094 , the basic plot of `` Lilo '' could have been pulled from a tear-stained vintage Shirley Temple script . 3 +24077 1094 the basic plot of `` Lilo '' could have been pulled from a tear-stained vintage Shirley Temple script . 1 +24078 1094 the basic plot of `` Lilo '' 2 +24079 1094 the basic plot 2 +24080 1094 basic plot 2 +24081 1094 of `` Lilo '' 2 +24082 1094 `` Lilo '' 2 +24083 1094 Lilo '' 2 +24084 1094 Lilo 2 +24085 1094 could have been pulled from a tear-stained vintage Shirley Temple script . 2 +24086 1094 could have been pulled from a tear-stained vintage Shirley Temple script 2 +24087 1094 have been pulled from a tear-stained vintage Shirley Temple script 2 +24088 1094 been pulled from a tear-stained vintage Shirley Temple script 2 +24089 1094 pulled from a tear-stained vintage Shirley Temple script 3 +24090 1094 pulled 2 +24091 1094 from a tear-stained vintage Shirley Temple script 2 +24092 1094 a tear-stained vintage Shirley Temple script 3 +24093 1094 tear-stained vintage Shirley Temple script 2 +24094 1094 tear-stained 1 +24095 1094 vintage Shirley Temple script 2 +24096 1094 Shirley Temple script 2 +24097 1094 Shirley 2 +24098 1094 Temple script 2 +24099 1094 Temple 2 +24100 1095 Reassuring , retro uplifter . 4 +24101 1095 , retro uplifter . 3 +24102 1095 retro uplifter . 3 +24103 1095 uplifter . 4 +24104 1095 uplifter 3 +24105 1096 An alternately raucous and sappy ethnic sitcom ... you 'd be wise to send your regrets . 1 +24106 1096 An alternately raucous and sappy ethnic sitcom ... you 'd be wise to send your regrets 2 +24107 1096 An alternately raucous and sappy ethnic sitcom ... 2 +24108 1096 An alternately raucous and sappy ethnic sitcom 2 +24109 1096 alternately raucous and sappy ethnic sitcom 2 +24110 1096 alternately raucous and sappy 2 +24111 1096 raucous and sappy 1 +24112 1096 raucous and 2 +24113 1096 raucous 2 +24114 1096 ethnic sitcom 2 +24115 1096 ethnic 3 +24116 1096 sitcom 2 +24117 1096 you 'd be wise to send your regrets 1 +24118 1096 'd be wise to send your regrets 2 +24119 1096 be wise to send your regrets 2 +24120 1096 wise to send your regrets 2 +24121 1096 wise 3 +24122 1096 to send your regrets 1 +24123 1096 send your regrets 2 +24124 1096 your regrets 2 +24125 1096 regrets 2 +24126 1097 The sheer joy and pride they took in their work -- and in each other -- shines through every frame . 3 +24127 1097 The sheer joy and pride they took in their work -- and in each other -- 3 +24128 1097 The sheer joy and pride 4 +24129 1097 sheer joy and pride 3 +24130 1097 joy and pride 3 +24131 1097 joy and 2 +24132 1097 pride 2 +24133 1097 they took in their work -- and in each other -- 2 +24134 1097 took in their work -- and in each other -- 2 +24135 1097 in their work -- and in each other -- 2 +24136 1097 in their work 2 +24137 1097 their work 2 +24138 1097 -- and in each other -- 2 +24139 1097 -- and in each other 2 +24140 1097 -- and 2 +24141 1097 in each other 2 +24142 1097 shines through every frame . 3 +24143 1097 shines through every frame 4 +24144 1097 through every frame 2 +24145 1098 Filmmaker Stacy Peralta has a flashy editing style that does n't always jell with Sean Penn 's monotone narration , but he respects the material without sentimentalizing it . 3 +24146 1098 Filmmaker Stacy Peralta has a flashy editing style that does n't always jell with Sean Penn 's monotone narration , but he respects the material without sentimentalizing it 2 +24147 1098 Filmmaker Stacy Peralta has a flashy editing style that does n't always jell with Sean Penn 's monotone narration , but 1 +24148 1098 Filmmaker Stacy Peralta has a flashy editing style that does n't always jell with Sean Penn 's monotone narration , 2 +24149 1098 Filmmaker Stacy Peralta has a flashy editing style that does n't always jell with Sean Penn 's monotone narration 1 +24150 1098 Filmmaker Stacy Peralta 2 +24151 1098 Stacy Peralta 2 +24152 1098 Stacy 2 +24153 1098 has a flashy editing style that does n't always jell with Sean Penn 's monotone narration 2 +24154 1098 a flashy editing style that does n't always jell with Sean Penn 's monotone narration 1 +24155 1098 a flashy editing style 3 +24156 1098 flashy editing style 3 +24157 1098 editing style 2 +24158 1098 that does n't always jell with Sean Penn 's monotone narration 2 +24159 1098 does n't always jell with Sean Penn 's monotone narration 1 +24160 1098 jell with Sean Penn 's monotone narration 1 +24161 1098 jell 2 +24162 1098 with Sean Penn 's monotone narration 1 +24163 1098 Sean Penn 's monotone narration 2 +24164 1098 Sean Penn 's 2 +24165 1098 Sean 2 +24166 1098 Penn 's 2 +24167 1098 Penn 2 +24168 1098 monotone narration 1 +24169 1098 monotone 1 +24170 1098 narration 2 +24171 1098 he respects the material without sentimentalizing it 3 +24172 1098 respects the material without sentimentalizing it 3 +24173 1098 respects the material 3 +24174 1098 respects 3 +24175 1098 without sentimentalizing it 2 +24176 1098 sentimentalizing it 3 +24177 1098 sentimentalizing 3 +24178 1099 The nonstop artifice ultimately proves tiresome , with the surface histrionics failing to compensate for the paper-thin characterizations and facile situations . 0 +24179 1099 The nonstop artifice 3 +24180 1099 nonstop artifice 2 +24181 1099 nonstop 2 +24182 1099 artifice 2 +24183 1099 ultimately proves tiresome , with the surface histrionics failing to compensate for the paper-thin characterizations and facile situations . 0 +24184 1099 proves tiresome , with the surface histrionics failing to compensate for the paper-thin characterizations and facile situations . 0 +24185 1099 proves tiresome , with the surface histrionics failing to compensate for the paper-thin characterizations and facile situations 0 +24186 1099 proves tiresome , 1 +24187 1099 proves tiresome 1 +24188 1099 with the surface histrionics failing to compensate for the paper-thin characterizations and facile situations 0 +24189 1099 the surface histrionics failing to compensate for the paper-thin characterizations and facile situations 1 +24190 1099 the surface histrionics 1 +24191 1099 surface histrionics 2 +24192 1099 histrionics 2 +24193 1099 failing to compensate for the paper-thin characterizations and facile situations 1 +24194 1099 to compensate for the paper-thin characterizations and facile situations 1 +24195 1099 compensate for the paper-thin characterizations and facile situations 2 +24196 1099 compensate 2 +24197 1099 for the paper-thin characterizations and facile situations 1 +24198 1099 the paper-thin characterizations and facile situations 1 +24199 1099 the paper-thin characterizations and 1 +24200 1099 the paper-thin characterizations 1 +24201 1099 paper-thin characterizations 1 +24202 1099 paper-thin 2 +24203 1099 facile situations 2 +24204 1099 facile 2 +24205 1100 TV skit-com material fervently deposited on the big screen . 1 +24206 1100 skit-com material fervently deposited on the big screen . 1 +24207 1100 skit-com material fervently 2 +24208 1100 skit-com material 2 +24209 1100 skit-com 2 +24210 1100 fervently 2 +24211 1100 deposited on the big screen . 2 +24212 1100 deposited on the big screen 2 +24213 1100 deposited 2 +24214 1101 Is there a group of more self-absorbed women than the mother and daughters featured in this film ? 0 +24215 1101 Is there a group of more self-absorbed women than the mother and daughters featured in this film 1 +24216 1101 Is there 2 +24217 1101 a group of more self-absorbed women than the mother and daughters featured in this film 1 +24218 1101 of more self-absorbed women than the mother and daughters featured in this film 1 +24219 1101 more self-absorbed women than the mother and daughters featured in this film 2 +24220 1101 more self-absorbed women than the mother and 1 +24221 1101 more self-absorbed women than the mother 2 +24222 1101 more self-absorbed women 2 +24223 1101 self-absorbed women 2 +24224 1101 self-absorbed 1 +24225 1101 than the mother 2 +24226 1101 the mother 2 +24227 1101 daughters featured in this film 2 +24228 1101 daughters 2 +24229 1101 featured in this film 2 +24230 1102 Lohman adapts to the changes required of her , but the actress and director Peter Kosminsky never get the audience to break through the wall her character erects 2 +24231 1102 Lohman 2 +24232 1102 adapts to the changes required of her , but the actress and director Peter Kosminsky never get the audience to break through the wall her character erects 1 +24233 1102 adapts 3 +24234 1102 to the changes required of her , but the actress and director Peter Kosminsky never get the audience to break through the wall her character erects 1 +24235 1102 the changes required of her , but the actress and director Peter Kosminsky never get the audience to break through the wall her character erects 2 +24236 1102 the changes 2 +24237 1102 required of her , but the actress and director Peter Kosminsky never get the audience to break through the wall her character erects 1 +24238 1102 required of her , but 2 +24239 1102 required of her , 2 +24240 1102 required of her 2 +24241 1102 required 2 +24242 1102 of her 2 +24243 1102 the actress and director Peter Kosminsky never get the audience to break through the wall her character erects 2 +24244 1102 the actress and director 2 +24245 1102 actress and director 2 +24246 1102 actress and 2 +24247 1102 Peter Kosminsky never get the audience to break through the wall her character erects 1 +24248 1102 Peter Kosminsky 2 +24249 1102 Kosminsky 2 +24250 1102 never get the audience to break through the wall her character erects 1 +24251 1102 get the audience to break through the wall her character erects 3 +24252 1102 the audience to break through the wall her character erects 2 +24253 1102 to break through the wall her character erects 2 +24254 1102 break through the wall her character erects 2 +24255 1102 break through the wall 2 +24256 1102 through the wall 3 +24257 1102 the wall 2 +24258 1102 wall 3 +24259 1102 her character erects 3 +24260 1102 character erects 2 +24261 1102 erects 2 +24262 1103 The wonderful combination of the sweetness and the extraordinary technical accomplishments of the first film are maintained , but its overall impact falls a little flat with a storyline that never quite delivers the original magic . 2 +24263 1103 The wonderful combination of the sweetness and the extraordinary technical accomplishments of the first film are maintained , but its overall impact falls a little flat with a storyline that never quite delivers the original magic 1 +24264 1103 The wonderful combination of the sweetness and the extraordinary technical accomplishments of the first film are maintained , but 3 +24265 1103 The wonderful combination of the sweetness and the extraordinary technical accomplishments of the first film are maintained , 4 +24266 1103 The wonderful combination of the sweetness and the extraordinary technical accomplishments of the first film are maintained 3 +24267 1103 The wonderful combination of the sweetness and the extraordinary technical accomplishments of the first film 4 +24268 1103 The wonderful combination 3 +24269 1103 wonderful combination 3 +24270 1103 of the sweetness and the extraordinary technical accomplishments of the first film 4 +24271 1103 the sweetness and the extraordinary technical accomplishments of the first film 4 +24272 1103 the sweetness and 2 +24273 1103 the sweetness 3 +24274 1103 the extraordinary technical accomplishments of the first film 4 +24275 1103 the extraordinary technical accomplishments 4 +24276 1103 extraordinary technical accomplishments 4 +24277 1103 technical accomplishments 3 +24278 1103 accomplishments 2 +24279 1103 of the first film 2 +24280 1103 the first film 2 +24281 1103 are maintained 2 +24282 1103 maintained 3 +24283 1103 its overall impact falls a little flat with a storyline that never quite delivers the original magic 1 +24284 1103 its overall impact 2 +24285 1103 overall impact 2 +24286 1103 impact 2 +24287 1103 falls a little flat with a storyline that never quite delivers the original magic 1 +24288 1103 falls a little flat 1 +24289 1103 a little flat 1 +24290 1103 with a storyline that never quite delivers the original magic 1 +24291 1103 a storyline that never quite delivers the original magic 1 +24292 1103 a storyline 2 +24293 1103 storyline 2 +24294 1103 that never quite delivers the original magic 2 +24295 1103 never quite delivers the original magic 1 +24296 1103 delivers the original magic 3 +24297 1103 the original magic 2 +24298 1103 original magic 3 +24299 1104 Although commentary on Nachtwey is provided ... it 's the image that really tells the tale . 3 +24300 1104 Although commentary on Nachtwey is provided 2 +24301 1104 commentary on Nachtwey is provided 2 +24302 1104 commentary on Nachtwey 2 +24303 1104 on Nachtwey 2 +24304 1104 Nachtwey 2 +24305 1104 is provided 2 +24306 1104 ... it 's the image that really tells the tale . 2 +24307 1104 it 's the image that really tells the tale . 3 +24308 1104 's the image that really tells the tale . 2 +24309 1104 's the image that really tells the tale 3 +24310 1104 the image that really tells the tale 3 +24311 1104 the image 2 +24312 1104 image 2 +24313 1104 that really tells the tale 3 +24314 1104 really tells the tale 3 +24315 1104 tells the tale 2 +24316 1105 Everyone 's to blame here . 1 +24317 1105 's to blame here . 2 +24318 1105 's to blame here 2 +24319 1105 to blame here 2 +24320 1105 blame here 2 +24321 1106 Instead , she sees it as a chance to revitalize what is and always has been remarkable about clung-to traditions . 3 +24322 1106 , she sees it as a chance to revitalize what is and always has been remarkable about clung-to traditions . 3 +24323 1106 she sees it as a chance to revitalize what is and always has been remarkable about clung-to traditions . 3 +24324 1106 sees it as a chance to revitalize what is and always has been remarkable about clung-to traditions . 3 +24325 1106 sees it as a chance to revitalize what is and always has been remarkable about clung-to traditions 3 +24326 1106 sees it 2 +24327 1106 sees 2 +24328 1106 as a chance to revitalize what is and always has been remarkable about clung-to traditions 3 +24329 1106 a chance to revitalize what is and always has been remarkable about clung-to traditions 3 +24330 1106 chance to revitalize what is and always has been remarkable about clung-to traditions 3 +24331 1106 to revitalize what is and always has been remarkable about clung-to traditions 3 +24332 1106 revitalize what is and always has been remarkable about clung-to traditions 3 +24333 1106 revitalize 3 +24334 1106 what is and always has been remarkable about clung-to traditions 3 +24335 1106 is and always has been remarkable about clung-to traditions 3 +24336 1106 is and 2 +24337 1106 always has been remarkable about clung-to traditions 3 +24338 1106 has been remarkable about clung-to traditions 3 +24339 1106 been remarkable about clung-to traditions 3 +24340 1106 been remarkable 4 +24341 1106 about clung-to traditions 2 +24342 1106 clung-to traditions 2 +24343 1106 clung-to 2 +24344 1107 the film belongs to the marvelous Verdu , a sexy slip of an earth mother who mourns her tragedies in private and embraces life in public 3 +24345 1107 belongs to the marvelous Verdu , a sexy slip of an earth mother who mourns her tragedies in private and embraces life in public 3 +24346 1107 belongs 2 +24347 1107 to the marvelous Verdu , a sexy slip of an earth mother who mourns her tragedies in private and embraces life in public 2 +24348 1107 the marvelous Verdu , a sexy slip of an earth mother who mourns her tragedies in private and embraces life in public 3 +24349 1107 the marvelous Verdu , 3 +24350 1107 the marvelous Verdu 3 +24351 1107 marvelous Verdu 3 +24352 1107 marvelous 4 +24353 1107 Verdu 2 +24354 1107 a sexy slip of an earth mother who mourns her tragedies in private and embraces life in public 3 +24355 1107 a sexy slip of an earth mother 3 +24356 1107 a sexy slip 2 +24357 1107 sexy slip 3 +24358 1107 of an earth mother 2 +24359 1107 an earth mother 2 +24360 1107 earth mother 2 +24361 1107 earth 2 +24362 1107 who mourns her tragedies in private and embraces life in public 3 +24363 1107 mourns her tragedies in private and embraces life in public 2 +24364 1107 mourns her tragedies in private and 2 +24365 1107 mourns her tragedies in private 1 +24366 1107 mourns her tragedies 2 +24367 1107 mourns 1 +24368 1107 her tragedies 1 +24369 1107 in private 3 +24370 1107 embraces life in public 3 +24371 1107 embraces life 3 +24372 1107 embraces 2 +24373 1107 in public 2 +24374 1108 Assured , glossy and shot through with brittle desperation . 3 +24375 1108 Assured , glossy and shot through with brittle desperation 3 +24376 1108 Assured , glossy and 2 +24377 1108 Assured , glossy 3 +24378 1108 Assured , 2 +24379 1108 Assured 3 +24380 1108 glossy 2 +24381 1108 shot through with brittle desperation 2 +24382 1108 shot through 2 +24383 1108 shot 2 +24384 1108 with brittle desperation 2 +24385 1108 brittle desperation 1 +24386 1108 brittle 2 +24387 1109 Those who are only mildly curious , I fear , will be put to sleep or bewildered by the artsy and often pointless visuals . 1 +24388 1109 Those who are only mildly curious 2 +24389 1109 who are only mildly curious 2 +24390 1109 are only mildly curious 2 +24391 1109 are only 2 +24392 1109 mildly curious 2 +24393 1109 , I fear , will be put to sleep or bewildered by the artsy and often pointless visuals . 1 +24394 1109 , I fear , 2 +24395 1109 I fear , 2 +24396 1109 I fear 1 +24397 1109 fear 2 +24398 1109 will be put to sleep or bewildered by the artsy and often pointless visuals . 1 +24399 1109 will be put to sleep or bewildered by the artsy and often pointless visuals 0 +24400 1109 be put to sleep or bewildered by the artsy and often pointless visuals 0 +24401 1109 put to sleep or bewildered by the artsy and often pointless visuals 0 +24402 1109 to sleep or bewildered by the artsy and often pointless visuals 1 +24403 1109 sleep or bewildered by the artsy and often pointless visuals 1 +24404 1109 sleep or bewildered 2 +24405 1109 or bewildered 2 +24406 1109 bewildered 2 +24407 1109 by the artsy and often pointless visuals 1 +24408 1109 the artsy and often pointless visuals 1 +24409 1109 artsy and often pointless visuals 2 +24410 1109 artsy and often pointless 0 +24411 1109 artsy and 3 +24412 1109 artsy 3 +24413 1109 often pointless 1 +24414 1109 visuals 2 +24415 1110 What ultimately makes Windtalkers a disappointment is the superficial way it deals with its story . 0 +24416 1110 What ultimately makes Windtalkers 2 +24417 1110 ultimately makes Windtalkers 2 +24418 1110 makes Windtalkers 2 +24419 1110 a disappointment is the superficial way it deals with its story . 0 +24420 1110 a disappointment 0 +24421 1110 disappointment 0 +24422 1110 is the superficial way it deals with its story . 2 +24423 1110 is the superficial way it deals with its story 1 +24424 1110 the superficial way it deals with its story 1 +24425 1110 the superficial way 1 +24426 1110 superficial way 2 +24427 1110 it deals with its story 2 +24428 1110 deals with its story 2 +24429 1110 with its story 2 +24430 1110 its story 2 +24431 1111 At least it 's a fairly impressive debut from the director , Charles Stone III . 4 +24432 1111 it 's a fairly impressive debut from the director , Charles Stone III . 4 +24433 1111 's a fairly impressive debut from the director , Charles Stone III . 3 +24434 1111 's a fairly impressive debut from the director , Charles Stone III 3 +24435 1111 a fairly impressive debut from the director , Charles Stone III 4 +24436 1111 a fairly impressive debut 4 +24437 1111 fairly impressive debut 3 +24438 1111 fairly impressive 2 +24439 1111 from the director , Charles Stone III 2 +24440 1111 the director , Charles Stone III 2 +24441 1111 Charles Stone III 2 +24442 1111 Charles 2 +24443 1111 Stone III 2 +24444 1111 III 2 +24445 1112 Instead , it 'll only put you to sleep . 0 +24446 1112 , it 'll only put you to sleep . 0 +24447 1112 it 'll only put you to sleep . 0 +24448 1112 'll only put you to sleep . 0 +24449 1112 'll only put you to sleep 0 +24450 1112 'll only 2 +24451 1112 put you to sleep 1 +24452 1113 The evocative imagery and gentle , lapping rhythms of this film are infectious -- it gets under our skin and draws us in long before the plot kicks into gear . 3 +24453 1113 The evocative imagery and gentle , lapping rhythms of this film are infectious -- it gets under our skin and draws us in long before the plot kicks into gear 4 +24454 1113 The evocative imagery and gentle , lapping rhythms of this film are infectious -- 4 +24455 1113 The evocative imagery and gentle , lapping rhythms of this film are infectious 3 +24456 1113 The evocative imagery and gentle , lapping rhythms of this film 3 +24457 1113 The evocative imagery and 3 +24458 1113 The evocative imagery 3 +24459 1113 evocative imagery 3 +24460 1113 gentle , lapping rhythms of this film 3 +24461 1113 gentle , lapping rhythms 3 +24462 1113 gentle , lapping 3 +24463 1113 , lapping 2 +24464 1113 lapping 2 +24465 1113 are infectious 3 +24466 1113 it gets under our skin and draws us in long before the plot kicks into gear 2 +24467 1113 gets under our skin and draws us in long before the plot kicks into gear 4 +24468 1113 gets under our skin and draws us in long 3 +24469 1113 gets under our skin and 3 +24470 1113 gets under our skin 2 +24471 1113 under our skin 1 +24472 1113 our skin 2 +24473 1113 draws us in long 3 +24474 1113 draws us in 3 +24475 1113 draws us 2 +24476 1113 before the plot kicks into gear 3 +24477 1113 the plot kicks into gear 3 +24478 1113 kicks into gear 3 +24479 1113 kicks 2 +24480 1113 into gear 2 +24481 1113 gear 2 +24482 1114 Not only is it a charming , funny and beautifully crafted import , it uses very little dialogue , making it relatively effortless to read and follow the action at the same time . 4 +24483 1114 is it a charming , funny and beautifully crafted import , it uses very little dialogue , making it relatively effortless to read and follow the action at the same time . 3 +24484 1114 is it a charming , funny and beautifully crafted import 4 +24485 1114 a charming , funny and beautifully crafted import 3 +24486 1114 charming , funny and beautifully crafted import 4 +24487 1114 charming , funny and beautifully 4 +24488 1114 , funny and beautifully 3 +24489 1114 funny and beautifully 2 +24490 1114 funny and 3 +24491 1114 crafted import 3 +24492 1114 import 2 +24493 1114 , it uses very little dialogue , making it relatively effortless to read and follow the action at the same time . 3 +24494 1114 it uses very little dialogue , making it relatively effortless to read and follow the action at the same time . 3 +24495 1114 it uses very little dialogue , making it relatively effortless to read and follow the action at the same time 2 +24496 1114 uses very little dialogue , making it relatively effortless to read and follow the action at the same time 2 +24497 1114 uses very little dialogue , 2 +24498 1114 uses very little dialogue 1 +24499 1114 very little dialogue 2 +24500 1114 making it relatively effortless to read and follow the action at the same time 3 +24501 1114 it relatively effortless to read and follow the action at the same time 2 +24502 1114 relatively effortless to read and follow the action at the same time 2 +24503 1114 relatively effortless 2 +24504 1114 relatively 2 +24505 1114 effortless 4 +24506 1114 to read and follow the action at the same time 2 +24507 1114 read and follow the action at the same time 2 +24508 1114 read and follow the action 2 +24509 1114 read and follow 2 +24510 1114 read and 2 +24511 1114 at the same time 2 +24512 1114 the same time 2 +24513 1114 same time 2 +24514 1115 Truly terrible . 0 +24515 1115 Truly terrible 0 +24516 1116 LaBute masterfully balances both Traditional or Modern stories together in a manner that one never overwhelms the other . 4 +24517 1116 LaBute masterfully 3 +24518 1116 LaBute 2 +24519 1116 balances both Traditional or Modern stories together in a manner that one never overwhelms the other . 3 +24520 1116 balances both Traditional or Modern stories together in a manner that one never overwhelms the other 4 +24521 1116 balances both Traditional or Modern stories together in a manner 3 +24522 1116 balances both Traditional or Modern stories together 3 +24523 1116 balances both Traditional or Modern stories 3 +24524 1116 balances 2 +24525 1116 both Traditional or Modern stories 2 +24526 1116 Traditional or Modern stories 2 +24527 1116 Traditional 2 +24528 1116 or Modern stories 2 +24529 1116 Modern stories 2 +24530 1116 in a manner 2 +24531 1116 a manner 2 +24532 1116 that one never overwhelms the other 2 +24533 1116 one never overwhelms the other 3 +24534 1116 never overwhelms the other 2 +24535 1116 overwhelms the other 2 +24536 1116 overwhelms 2 +24537 1117 Perry 's good and his is an interesting character , but `` Serving Sara '' has n't much more to serve than silly fluff . 1 +24538 1117 Perry 's good and his is an interesting character , but `` Serving Sara '' has n't much more to serve than silly fluff 1 +24539 1117 Perry 's good and his is an interesting character , but 2 +24540 1117 Perry 's good and his is an interesting character , 4 +24541 1117 Perry 's good and his is an interesting character 3 +24542 1117 Perry 's good and 3 +24543 1117 Perry 's good 3 +24544 1117 Perry 2 +24545 1117 's good 3 +24546 1117 his is an interesting character 3 +24547 1117 is an interesting character 3 +24548 1117 an interesting character 3 +24549 1117 interesting character 3 +24550 1117 `` Serving Sara '' has n't much more to serve than silly fluff 0 +24551 1117 Serving Sara '' has n't much more to serve than silly fluff 0 +24552 1117 Serving Sara 2 +24553 1117 Serving 2 +24554 1117 '' has n't much more to serve than silly fluff 0 +24555 1117 has n't much more to serve than silly fluff 1 +24556 1117 has n't much more 2 +24557 1117 to serve than silly fluff 2 +24558 1117 serve than silly fluff 2 +24559 1117 than silly fluff 2 +24560 1117 silly fluff 1 +24561 1117 fluff 2 +24562 1118 Anemic , pretentious . 1 +24563 1118 Anemic , pretentious 1 +24564 1118 Anemic , 1 +24565 1118 Anemic 1 +24566 1119 If the very concept makes you nervous ... you 'll have an idea of the film 's creepy , scary effectiveness . 2 +24567 1119 If the very concept makes you nervous 2 +24568 1119 the very concept makes you nervous 2 +24569 1119 the very concept 2 +24570 1119 very concept 2 +24571 1119 makes you nervous 1 +24572 1119 you nervous 2 +24573 1119 nervous 1 +24574 1119 ... you 'll have an idea of the film 's creepy , scary effectiveness . 2 +24575 1119 you 'll have an idea of the film 's creepy , scary effectiveness . 3 +24576 1119 'll have an idea of the film 's creepy , scary effectiveness . 3 +24577 1119 'll have an idea of the film 's creepy , scary effectiveness 3 +24578 1119 have an idea of the film 's creepy , scary effectiveness 3 +24579 1119 an idea of the film 's creepy , scary effectiveness 3 +24580 1119 of the film 's creepy , scary effectiveness 2 +24581 1119 the film 's creepy , scary effectiveness 3 +24582 1119 creepy , scary effectiveness 3 +24583 1119 creepy , scary 2 +24584 1119 , scary 2 +24585 1119 effectiveness 3 +24586 1120 Watchable up until the point where the situations and the dialogue spin hopelessly out of control -- that is to say , when Carol Kane appears on the screen . 1 +24587 1120 Watchable up until the point where the situations and the dialogue spin hopelessly out of control -- that is to say , when Carol Kane appears on the screen 0 +24588 1120 Watchable up until the point where the situations and the dialogue spin hopelessly out of control -- that is to say , 0 +24589 1120 Watchable up until the point where the situations and the dialogue spin hopelessly out of control -- that is to say 1 +24590 1120 Watchable up until the point 1 +24591 1120 Watchable up 3 +24592 1120 until the point 2 +24593 1120 where the situations and the dialogue spin hopelessly out of control -- that is to say 1 +24594 1120 the situations and the dialogue spin hopelessly out of control -- that is to say 0 +24595 1120 the situations and the dialogue 2 +24596 1120 the situations and 2 +24597 1120 the situations 2 +24598 1120 spin hopelessly out of control -- that is to say 1 +24599 1120 spin hopelessly out 1 +24600 1120 spin 2 +24601 1120 hopelessly out 1 +24602 1120 hopelessly 2 +24603 1120 of control -- that is to say 2 +24604 1120 control -- that is to say 2 +24605 1120 control -- 2 +24606 1120 control 2 +24607 1120 that is to say 2 +24608 1120 is to say 2 +24609 1120 to say 2 +24610 1120 when Carol Kane appears on the screen 2 +24611 1120 Carol Kane appears on the screen 2 +24612 1120 Carol Kane 2 +24613 1120 Kane 2 +24614 1120 appears on the screen 2 +24615 1120 on the screen 2 +24616 1121 There might be some sort of credible gender-provoking philosophy submerged here , but who the hell cares ? 1 +24617 1121 might be some sort of credible gender-provoking philosophy submerged here , but who the hell cares ? 1 +24618 1121 might be some sort of credible gender-provoking philosophy submerged here , but who the hell cares 1 +24619 1121 be some sort of credible gender-provoking philosophy submerged here , but who the hell cares 0 +24620 1121 be some sort of credible gender-provoking philosophy 2 +24621 1121 some sort of credible gender-provoking philosophy 2 +24622 1121 some sort 2 +24623 1121 of credible gender-provoking philosophy 3 +24624 1121 credible gender-provoking philosophy 3 +24625 1121 gender-provoking philosophy 2 +24626 1121 gender-provoking 3 +24627 1121 submerged here , but who the hell cares 2 +24628 1121 submerged here , but 2 +24629 1121 submerged here , 3 +24630 1121 submerged here 2 +24631 1121 submerged 2 +24632 1121 who the hell cares 2 +24633 1121 the hell cares 1 +24634 1121 the hell 1 +24635 1122 `` -LRB- Hopkins -RRB- does n't so much phone in his performance as fax it . 1 +24636 1122 -LRB- Hopkins -RRB- does n't so much phone in his performance as fax it . 0 +24637 1122 Hopkins -RRB- does n't so much phone in his performance as fax it . 0 +24638 1122 -RRB- does n't so much phone in his performance as fax it . 2 +24639 1122 does n't so much phone in his performance as fax it . 1 +24640 1122 does n't so much phone in his performance as fax it 1 +24641 1122 does n't so much phone in his performance as 1 +24642 1122 so much phone in his performance as 1 +24643 1122 so much phone 2 +24644 1122 much phone 2 +24645 1122 phone 2 +24646 1122 in his performance as 2 +24647 1122 his performance as 2 +24648 1122 performance as 2 +24649 1122 fax it 2 +24650 1122 fax 3 +24651 1123 The film is a confusing melange of tones and styles , one moment a romantic trifle and the next a turgid drama . 1 +24652 1123 is a confusing melange of tones and styles , one moment a romantic trifle and the next a turgid drama . 1 +24653 1123 is a confusing melange of tones and styles , one moment a romantic trifle and the next a turgid drama 1 +24654 1123 a confusing melange of tones and styles , one moment a romantic trifle and the next a turgid drama 1 +24655 1123 a confusing melange of tones and styles , one moment a romantic trifle and 2 +24656 1123 a confusing melange of tones and styles , one moment a romantic trifle 1 +24657 1123 a confusing melange of tones and styles , 0 +24658 1123 a confusing melange of tones and styles 2 +24659 1123 a confusing melange 1 +24660 1123 confusing melange 1 +24661 1123 confusing 1 +24662 1123 melange 2 +24663 1123 of tones and styles 2 +24664 1123 tones and styles 2 +24665 1123 tones and 2 +24666 1123 tones 2 +24667 1123 styles 2 +24668 1123 one moment a romantic trifle 2 +24669 1123 one moment 3 +24670 1123 a romantic trifle 2 +24671 1123 romantic trifle 2 +24672 1123 the next a turgid drama 1 +24673 1123 the next 2 +24674 1123 a turgid drama 2 +24675 1123 turgid drama 2 +24676 1124 The film is one of the year 's best . 4 +24677 1124 is one of the year 's best . 4 +24678 1124 is one of the year 's best 4 +24679 1124 one of the year 's best 4 +24680 1124 of the year 's best 3 +24681 1124 the year 's best 4 +24682 1125 A buoyant romantic comedy about friendship , love , and the truth that we 're all in this together . 3 +24683 1125 A buoyant romantic comedy about friendship , love , and the truth that we 're all in this together 4 +24684 1125 A buoyant romantic comedy about friendship , love , and the truth 3 +24685 1125 A buoyant romantic comedy 3 +24686 1125 buoyant romantic comedy 4 +24687 1125 buoyant 2 +24688 1125 about friendship , love , and the truth 3 +24689 1125 friendship , love , and the truth 3 +24690 1125 friendship , love , and 4 +24691 1125 friendship , love , 2 +24692 1125 friendship , love 3 +24693 1125 friendship , 3 +24694 1125 friendship 2 +24695 1125 that we 're all in this together 2 +24696 1125 we 're all in this together 2 +24697 1125 're all in this together 3 +24698 1125 're all in this 2 +24699 1125 all in this 2 +24700 1125 in this 2 +24701 1126 Davis ... gets vivid performances from her cast and pulls off some deft Ally McBeal-style fantasy sequences . 4 +24702 1126 ... gets vivid performances from her cast and pulls off some deft Ally McBeal-style fantasy sequences . 3 +24703 1126 gets vivid performances from her cast and pulls off some deft Ally McBeal-style fantasy sequences . 3 +24704 1126 gets vivid performances from her cast and pulls off some deft Ally McBeal-style fantasy sequences 3 +24705 1126 gets vivid performances from her cast and 4 +24706 1126 gets vivid performances from her cast 4 +24707 1126 gets vivid performances 4 +24708 1126 vivid performances 4 +24709 1126 from her cast 2 +24710 1126 her cast 2 +24711 1126 pulls off some deft Ally McBeal-style fantasy sequences 3 +24712 1126 pulls off 2 +24713 1126 some deft Ally McBeal-style fantasy sequences 3 +24714 1126 deft Ally McBeal-style fantasy sequences 2 +24715 1126 deft 3 +24716 1126 Ally McBeal-style fantasy sequences 3 +24717 1126 Ally 3 +24718 1126 McBeal-style fantasy sequences 2 +24719 1126 McBeal-style 2 +24720 1126 fantasy sequences 2 +24721 1127 The Sundance Film Festival has become so buzz-obsessed that fans and producers descend upon Utah each January to ferret out The Next Great Thing . 2 +24722 1127 The Sundance Film Festival 2 +24723 1127 Sundance Film Festival 2 +24724 1127 Sundance 2 +24725 1127 Film Festival 3 +24726 1127 Festival 3 +24727 1127 has become so buzz-obsessed that fans and producers descend upon Utah each January to ferret out The Next Great Thing . 2 +24728 1127 has become so buzz-obsessed that fans and producers descend upon Utah each January to ferret out The Next Great Thing 2 +24729 1127 become so buzz-obsessed that fans and producers descend upon Utah each January to ferret out The Next Great Thing 1 +24730 1127 become so buzz-obsessed 2 +24731 1127 so buzz-obsessed 2 +24732 1127 buzz-obsessed 1 +24733 1127 that fans and producers descend upon Utah each January to ferret out The Next Great Thing 2 +24734 1127 fans and producers descend upon Utah each January to ferret out The Next Great Thing 2 +24735 1127 fans and producers 2 +24736 1127 fans and 2 +24737 1127 descend upon Utah each January to ferret out The Next Great Thing 2 +24738 1127 descend upon Utah each January 2 +24739 1127 descend upon Utah each 2 +24740 1127 descend 2 +24741 1127 upon Utah each 2 +24742 1127 Utah each 2 +24743 1127 Utah 2 +24744 1127 January 2 +24745 1127 to ferret out The Next Great Thing 2 +24746 1127 ferret out The Next Great Thing 2 +24747 1127 ferret out 2 +24748 1127 ferret 2 +24749 1127 The Next Great Thing 3 +24750 1127 Next Great Thing 3 +24751 1127 Great Thing 3 +24752 1128 One of the most slyly exquisite anti-adult movies ever made . 4 +24753 1128 One of the most slyly exquisite anti-adult movies 3 +24754 1128 of the most slyly exquisite anti-adult movies 3 +24755 1128 the most slyly exquisite anti-adult movies 2 +24756 1128 most slyly exquisite anti-adult movies 3 +24757 1128 most slyly exquisite 4 +24758 1128 slyly exquisite 3 +24759 1128 slyly 2 +24760 1128 anti-adult movies 2 +24761 1128 anti-adult 2 +24762 1129 What a bewilderingly brilliant and entertaining movie this is . 4 +24763 1129 What a bewilderingly brilliant and entertaining movie 4 +24764 1129 What a bewilderingly brilliant and entertaining 4 +24765 1129 a bewilderingly brilliant and entertaining 4 +24766 1129 bewilderingly brilliant and entertaining 3 +24767 1129 bewilderingly brilliant and 4 +24768 1129 bewilderingly brilliant 3 +24769 1129 bewilderingly 1 +24770 1129 this is . 2 +24771 1129 this is 2 +24772 1130 The film will appeal to Discovery Channel fans and will surely widen the perspective of those of us who see the continent through rose-colored glasses . 2 +24773 1130 will appeal to Discovery Channel fans and will surely widen the perspective of those of us who see the continent through rose-colored glasses . 3 +24774 1130 will appeal to Discovery Channel fans and will surely widen the perspective of those of us who see the continent through rose-colored glasses 2 +24775 1130 will appeal to Discovery Channel fans and 3 +24776 1130 will appeal to Discovery Channel fans 3 +24777 1130 appeal to Discovery Channel fans 2 +24778 1130 to Discovery Channel fans 2 +24779 1130 Discovery Channel fans 3 +24780 1130 Discovery 2 +24781 1130 Channel fans 2 +24782 1130 will surely widen the perspective of those of us who see the continent through rose-colored glasses 3 +24783 1130 will surely 2 +24784 1130 surely 2 +24785 1130 widen the perspective of those of us who see the continent through rose-colored glasses 3 +24786 1130 widen 2 +24787 1130 the perspective of those of us who see the continent through rose-colored glasses 2 +24788 1130 the perspective of those of us 2 +24789 1130 the perspective 2 +24790 1130 of those of us 2 +24791 1130 those of us 2 +24792 1130 who see the continent through rose-colored glasses 2 +24793 1130 see the continent through rose-colored glasses 2 +24794 1130 see the continent 2 +24795 1130 the continent 2 +24796 1130 continent 2 +24797 1130 through rose-colored glasses 2 +24798 1130 rose-colored glasses 2 +24799 1130 rose-colored 2 +24800 1130 glasses 2 +24801 1131 Matthew Lillard is born to play Shaggy ! 4 +24802 1131 Matthew Lillard 2 +24803 1131 Matthew 2 +24804 1131 Lillard 2 +24805 1131 is born to play Shaggy ! 3 +24806 1131 is born to play Shaggy 3 +24807 1131 born to play Shaggy 2 +24808 1131 born 2 +24809 1131 to play Shaggy 2 +24810 1131 play Shaggy 2 +24811 1131 Shaggy 2 +24812 1132 Light , silly , photographed with colour and depth , and rather a good time . 4 +24813 1132 Light , silly , 2 +24814 1132 Light , silly 3 +24815 1132 Light , 2 +24816 1132 photographed with colour and depth , and rather a good time . 3 +24817 1132 photographed with colour and depth , and rather a good time 4 +24818 1132 with colour and depth , and rather a good time 3 +24819 1132 colour and depth , and rather a good time 3 +24820 1132 colour and depth , and rather 2 +24821 1132 colour and depth , and 3 +24822 1132 colour and depth , 3 +24823 1132 colour and depth 2 +24824 1132 colour and 2 +24825 1132 colour 2 +24826 1133 ... is funny in the way that makes you ache with sadness -LRB- the way Chekhov is funny -RRB- , profound without ever being self-important , warm without ever succumbing to sentimentality . 4 +24827 1133 is funny in the way that makes you ache with sadness -LRB- the way Chekhov is funny -RRB- , profound without ever being self-important , warm without ever succumbing to sentimentality . 2 +24828 1133 is funny in the way that makes you ache with sadness -LRB- the way Chekhov is funny -RRB- , profound without ever being self-important , warm without ever succumbing to sentimentality 2 +24829 1133 funny in the way that makes you ache with sadness -LRB- the way Chekhov is funny -RRB- , profound without ever being self-important , warm without ever succumbing to sentimentality 4 +24830 1133 in the way that makes you ache with sadness -LRB- the way Chekhov is funny -RRB- , profound without ever being self-important , warm without ever succumbing to sentimentality 3 +24831 1133 the way that makes you ache with sadness -LRB- the way Chekhov is funny -RRB- , profound without ever being self-important , warm without ever succumbing to sentimentality 3 +24832 1133 that makes you ache with sadness -LRB- the way Chekhov is funny -RRB- , profound without ever being self-important , warm without ever succumbing to sentimentality 3 +24833 1133 makes you ache with sadness -LRB- the way Chekhov is funny -RRB- , profound without ever being self-important , warm without ever succumbing to sentimentality 2 +24834 1133 makes you ache with sadness -LRB- the way Chekhov is funny -RRB- , profound without ever being self-important , 2 +24835 1133 makes you ache with sadness -LRB- the way Chekhov is funny -RRB- , profound without ever being self-important 3 +24836 1133 you ache with sadness -LRB- the way Chekhov is funny -RRB- , profound without ever being self-important 2 +24837 1133 ache with sadness -LRB- the way Chekhov is funny -RRB- , profound without ever being self-important 3 +24838 1133 ache with sadness -LRB- the way Chekhov is funny -RRB- , 2 +24839 1133 ache with sadness -LRB- the way Chekhov is funny -RRB- 3 +24840 1133 ache with sadness 2 +24841 1133 with sadness 2 +24842 1133 -LRB- the way Chekhov is funny -RRB- 2 +24843 1133 the way Chekhov is funny -RRB- 2 +24844 1133 the way Chekhov is funny 3 +24845 1133 the way Chekhov 2 +24846 1133 way Chekhov 2 +24847 1133 Chekhov 2 +24848 1133 profound without ever being self-important 3 +24849 1133 profound 3 +24850 1133 without ever being self-important 4 +24851 1133 ever being self-important 2 +24852 1133 being self-important 2 +24853 1133 self-important 2 +24854 1133 warm without ever succumbing to sentimentality 3 +24855 1133 without ever succumbing to sentimentality 3 +24856 1133 ever succumbing to sentimentality 2 +24857 1133 succumbing to sentimentality 1 +24858 1133 succumbing 2 +24859 1133 to sentimentality 2 +24860 1134 Ultimately too repellent to fully endear itself to American art house audiences , but it is notable for its stylistic austerity and forcefulness . 1 +24861 1134 too repellent to fully endear itself to American art house audiences , but it is notable for its stylistic austerity and forcefulness . 2 +24862 1134 repellent to fully endear itself to American art house audiences , but it is notable for its stylistic austerity and forcefulness . 3 +24863 1134 repellent to fully endear itself to American art house audiences , but it is notable for its stylistic austerity and forcefulness 2 +24864 1134 repellent to fully endear itself to American art house audiences , but 3 +24865 1134 repellent to fully endear itself to American art house audiences , 1 +24866 1134 repellent to fully endear itself to American art house audiences 2 +24867 1134 repellent 1 +24868 1134 to fully endear itself to American art house audiences 3 +24869 1134 fully endear itself to American art house audiences 3 +24870 1134 endear itself to American art house audiences 3 +24871 1134 endear itself 3 +24872 1134 endear 3 +24873 1134 to American art house audiences 2 +24874 1134 American art house audiences 2 +24875 1134 art house audiences 2 +24876 1134 house audiences 2 +24877 1134 it is notable for its stylistic austerity and forcefulness 3 +24878 1134 is notable for its stylistic austerity and forcefulness 3 +24879 1134 notable for its stylistic austerity and forcefulness 3 +24880 1134 notable 3 +24881 1134 for its stylistic austerity and forcefulness 3 +24882 1134 its stylistic austerity and forcefulness 2 +24883 1134 stylistic austerity and forcefulness 3 +24884 1134 austerity and forcefulness 3 +24885 1134 austerity and 2 +24886 1135 In between all the emotional seesawing , it 's hard to figure the depth of these two literary figures , and even the times in which they lived . 1 +24887 1135 In between all the emotional seesawing 2 +24888 1135 between all the emotional seesawing 2 +24889 1135 all the emotional seesawing 2 +24890 1135 the emotional seesawing 2 +24891 1135 emotional seesawing 1 +24892 1135 seesawing 2 +24893 1135 , it 's hard to figure the depth of these two literary figures , and even the times in which they lived . 1 +24894 1135 it 's hard to figure the depth of these two literary figures , and even the times in which they lived . 1 +24895 1135 's hard to figure the depth of these two literary figures , and even the times in which they lived . 1 +24896 1135 's hard to figure the depth of these two literary figures , and even the times in which they lived 2 +24897 1135 hard to figure the depth of these two literary figures , and even the times in which they lived 2 +24898 1135 to figure the depth of these two literary figures , and even the times in which they lived 3 +24899 1135 figure the depth of these two literary figures , and even the times in which they lived 2 +24900 1135 the depth of these two literary figures , and even the times in which they lived 3 +24901 1135 the depth of these two literary figures , and even the times 2 +24902 1135 the depth 2 +24903 1135 of these two literary figures , and even the times 2 +24904 1135 these two literary figures , and even the times 3 +24905 1135 these two literary figures , and even 2 +24906 1135 these two literary figures , and 2 +24907 1135 these two literary figures , 2 +24908 1135 these two literary figures 2 +24909 1135 two literary figures 2 +24910 1135 literary figures 2 +24911 1135 the times 2 +24912 1135 in which they lived 2 +24913 1135 they lived 2 +24914 1135 lived 2 +24915 1136 The combination of lightness and strictness in this instance gives Italian for Beginners an amiable aimlessness that keeps it from seeming predictably formulaic . 2 +24916 1136 The combination of lightness and strictness in this instance 3 +24917 1136 The combination 2 +24918 1136 of lightness and strictness in this instance 2 +24919 1136 lightness and strictness in this instance 2 +24920 1136 lightness and strictness 1 +24921 1136 lightness and 2 +24922 1136 lightness 2 +24923 1136 strictness 2 +24924 1136 in this instance 2 +24925 1136 this instance 2 +24926 1136 gives Italian for Beginners an amiable aimlessness that keeps it from seeming predictably formulaic . 2 +24927 1136 gives Italian for Beginners an amiable aimlessness that keeps it from seeming predictably formulaic 3 +24928 1136 gives Italian for Beginners 2 +24929 1136 Italian for Beginners 2 +24930 1136 Italian 2 +24931 1136 for Beginners 1 +24932 1136 Beginners 2 +24933 1136 an amiable aimlessness that keeps it from seeming predictably formulaic 3 +24934 1136 an amiable aimlessness 2 +24935 1136 amiable aimlessness 2 +24936 1136 aimlessness 1 +24937 1136 that keeps it from seeming predictably formulaic 3 +24938 1136 keeps it from seeming predictably formulaic 3 +24939 1136 keeps it 2 +24940 1136 from seeming predictably formulaic 1 +24941 1136 seeming predictably formulaic 1 +24942 1136 predictably formulaic 1 +24943 1137 Continually challenges perceptions of guilt and innocence , of good guys and bad , and asks us whether a noble end can justify evil means . 3 +24944 1137 Continually 2 +24945 1137 challenges perceptions of guilt and innocence , of good guys and bad , and asks us whether a noble end can justify evil means . 2 +24946 1137 challenges perceptions of guilt and innocence , of good guys and bad , and asks us whether a noble end can justify evil means 3 +24947 1137 challenges perceptions of guilt and innocence , of good guys and bad , and 2 +24948 1137 challenges perceptions of guilt and innocence , of good guys and bad , 2 +24949 1137 challenges perceptions of guilt and innocence , of good guys and bad 2 +24950 1137 perceptions of guilt and innocence , of good guys and bad 2 +24951 1137 perceptions of guilt and innocence , 2 +24952 1137 perceptions of guilt and innocence 2 +24953 1137 perceptions 2 +24954 1137 of guilt and innocence 2 +24955 1137 guilt and innocence 2 +24956 1137 guilt and 2 +24957 1137 guilt 1 +24958 1137 of good guys and bad 2 +24959 1137 good guys and bad 2 +24960 1137 good guys and 3 +24961 1137 good guys 3 +24962 1137 asks us whether a noble end can justify evil means 2 +24963 1137 asks us 2 +24964 1137 whether a noble end can justify evil means 2 +24965 1137 a noble end can justify evil means 2 +24966 1137 a noble end 3 +24967 1137 noble end 1 +24968 1137 noble 3 +24969 1137 can justify evil means 2 +24970 1137 justify evil means 2 +24971 1137 justify 2 +24972 1137 evil means 2 +24973 1138 Good-naturedly cornball sequel . 3 +24974 1138 Good-naturedly 3 +24975 1138 cornball sequel . 2 +24976 1138 cornball sequel 1 +24977 1138 cornball 2 +24978 1139 Moonlight Mile does n't quite go the distance but the cast is impressive and they all give life to these broken characters who are trying to make their way through this tragedy . 3 +24979 1139 Moonlight Mile does n't quite go the distance but the cast is impressive and they all give life to these broken characters who are trying to make their way through this tragedy 3 +24980 1139 Moonlight Mile does n't quite go the distance but the cast is impressive and 2 +24981 1139 Moonlight Mile does n't quite go the distance but the cast is impressive 2 +24982 1139 Moonlight Mile does n't quite go the distance but 1 +24983 1139 Moonlight Mile does n't quite go the distance 1 +24984 1139 Moonlight Mile 2 +24985 1139 does n't quite go the distance 1 +24986 1139 does n't quite 1 +24987 1139 go the distance 3 +24988 1139 the cast is impressive 4 +24989 1139 is impressive 3 +24990 1139 they all give life to these broken characters who are trying to make their way through this tragedy 2 +24991 1139 all give life to these broken characters who are trying to make their way through this tragedy 3 +24992 1139 give life to these broken characters who are trying to make their way through this tragedy 2 +24993 1139 give life 3 +24994 1139 to these broken characters who are trying to make their way through this tragedy 1 +24995 1139 these broken characters who are trying to make their way through this tragedy 1 +24996 1139 these broken characters 2 +24997 1139 broken characters 1 +24998 1139 who are trying to make their way through this tragedy 1 +24999 1139 are trying to make their way through this tragedy 2 +25000 1139 trying to make their way through this tragedy 2 +25001 1139 to make their way through this tragedy 1 +25002 1139 make their way through this tragedy 2 +25003 1139 make their way 2 +25004 1139 through this tragedy 2 +25005 1139 this tragedy 2 +25006 1140 And that is where Ararat went astray . 1 +25007 1140 that is where Ararat went astray . 1 +25008 1140 is where Ararat went astray . 1 +25009 1140 is where Ararat went astray 2 +25010 1140 where Ararat went astray 2 +25011 1140 Ararat went astray 2 +25012 1140 Ararat 2 +25013 1140 went astray 1 +25014 1140 astray 2 +25015 1141 The documentary is much too conventional -- lots of boring talking heads , etc. -- to do the subject matter justice . 0 +25016 1141 The documentary 2 +25017 1141 is much too conventional -- lots of boring talking heads , etc. -- to do the subject matter justice . 1 +25018 1141 is much too conventional -- lots of boring talking heads , etc. -- to do the subject matter justice 1 +25019 1141 much too conventional -- lots of boring talking heads , etc. -- to do the subject matter justice 1 +25020 1141 too conventional -- lots of boring talking heads , etc. -- to do the subject matter justice 1 +25021 1141 conventional -- lots of boring talking heads , etc. -- to do the subject matter justice 1 +25022 1141 conventional -- lots of boring talking heads , etc. -- 1 +25023 1141 -- lots of boring talking heads , etc. -- 1 +25024 1141 lots of boring talking heads , etc. -- 1 +25025 1141 lots of boring talking heads , etc. 0 +25026 1141 of boring talking heads , etc. 1 +25027 1141 boring talking heads , etc. 0 +25028 1141 boring talking heads , 1 +25029 1141 boring talking heads 1 +25030 1141 talking heads 2 +25031 1141 talking 2 +25032 1141 heads 2 +25033 1141 etc. 2 +25034 1141 to do the subject matter justice 2 +25035 1141 do the subject matter justice 3 +25036 1141 the subject matter justice 2 +25037 1141 subject matter justice 2 +25038 1141 matter justice 2 +25039 1141 justice 2 +25040 1142 Discursive but oddly riveting documentary . 3 +25041 1142 Discursive but oddly riveting documentary 3 +25042 1142 Discursive but oddly 2 +25043 1142 Discursive but 2 +25044 1142 Discursive 1 +25045 1142 riveting documentary 2 +25046 1143 This feature is about as necessary as a hole in the head 1 +25047 1143 This feature 2 +25048 1143 is about as necessary as a hole in the head 1 +25049 1143 is about as necessary 2 +25050 1143 about as necessary 2 +25051 1143 as necessary 2 +25052 1143 necessary 2 +25053 1143 as a hole in the head 1 +25054 1143 a hole in the head 1 +25055 1143 in the head 2 +25056 1143 the head 2 +25057 1144 This movie got me grinning . 3 +25058 1144 got me grinning . 3 +25059 1144 got me grinning 3 +25060 1144 me grinning 3 +25061 1144 grinning 3 +25062 1145 The film virtually chokes on its own self-consciousness . 2 +25063 1145 virtually chokes on its own self-consciousness . 1 +25064 1145 chokes on its own self-consciousness . 1 +25065 1145 chokes on its own self-consciousness 1 +25066 1145 chokes 1 +25067 1145 on its own self-consciousness 2 +25068 1145 its own self-consciousness 2 +25069 1145 own self-consciousness 2 +25070 1145 self-consciousness 2 +25071 1146 One of the most plain , unimaginative romantic comedies I 've ever seen . 1 +25072 1146 One of the most plain , unimaginative romantic comedies I 0 +25073 1146 of the most plain , unimaginative romantic comedies I 0 +25074 1146 the most plain , unimaginative romantic comedies I 1 +25075 1146 most plain , unimaginative romantic comedies I 1 +25076 1146 most plain , unimaginative 1 +25077 1146 plain , unimaginative 1 +25078 1146 , unimaginative 0 +25079 1146 romantic comedies I 2 +25080 1146 comedies I 2 +25081 1146 've ever seen . 2 +25082 1147 The rare Imax movie that you 'll wish was longer than an hour . 3 +25083 1147 The rare Imax movie that you 'll wish 3 +25084 1147 The rare Imax movie 2 +25085 1147 rare Imax movie 3 +25086 1147 Imax movie 2 +25087 1147 that you 'll wish 2 +25088 1147 you 'll wish 2 +25089 1147 'll wish 2 +25090 1147 wish 2 +25091 1147 was longer than an hour . 2 +25092 1147 was longer than an hour 3 +25093 1147 longer than an hour 2 +25094 1147 longer 2 +25095 1147 than an hour 2 +25096 1148 ` Matrix ' - style massacres erupt throughout ... but the movie has a tougher time balancing its violence with Kafka-inspired philosophy . 1 +25097 1148 ` Matrix ' - style massacres erupt throughout ... but the movie has a tougher time balancing its violence with Kafka-inspired philosophy 1 +25098 1148 ` Matrix ' - 2 +25099 1148 ` Matrix ' 2 +25100 1148 Matrix ' 2 +25101 1148 Matrix 2 +25102 1148 style massacres erupt throughout ... but the movie has a tougher time balancing its violence with Kafka-inspired philosophy 2 +25103 1148 style massacres erupt throughout ... 2 +25104 1148 style massacres erupt throughout 1 +25105 1148 style massacres 2 +25106 1148 massacres 2 +25107 1148 erupt throughout 2 +25108 1148 erupt 2 +25109 1148 but the movie has a tougher time balancing its violence with Kafka-inspired philosophy 1 +25110 1148 the movie has a tougher time balancing its violence with Kafka-inspired philosophy 1 +25111 1148 has a tougher time balancing its violence with Kafka-inspired philosophy 1 +25112 1148 a tougher time balancing its violence with Kafka-inspired philosophy 1 +25113 1148 a tougher time 2 +25114 1148 tougher time 2 +25115 1148 tougher 2 +25116 1148 balancing its violence with Kafka-inspired philosophy 2 +25117 1148 balancing its violence 2 +25118 1148 balancing 2 +25119 1148 its violence 2 +25120 1148 with Kafka-inspired philosophy 2 +25121 1148 Kafka-inspired philosophy 2 +25122 1148 Kafka-inspired 2 +25123 1149 Elegantly produced and expressively performed , the six musical numbers crystallize key plot moments into minutely detailed wonders of dreamlike ecstasy . 4 +25124 1149 Elegantly produced and expressively performed 3 +25125 1149 Elegantly produced and 3 +25126 1149 Elegantly produced 4 +25127 1149 Elegantly 3 +25128 1149 produced 2 +25129 1149 expressively performed 3 +25130 1149 expressively 2 +25131 1149 , the six musical numbers crystallize key plot moments into minutely detailed wonders of dreamlike ecstasy . 3 +25132 1149 the six musical numbers crystallize key plot moments into minutely detailed wonders of dreamlike ecstasy . 3 +25133 1149 the six musical numbers 2 +25134 1149 six musical numbers 2 +25135 1149 six 2 +25136 1149 musical numbers 3 +25137 1149 crystallize key plot moments into minutely detailed wonders of dreamlike ecstasy . 4 +25138 1149 crystallize key plot moments into minutely detailed wonders of dreamlike ecstasy 3 +25139 1149 crystallize key plot moments 3 +25140 1149 crystallize 2 +25141 1149 key plot moments 2 +25142 1149 plot moments 2 +25143 1149 into minutely detailed wonders of dreamlike ecstasy 4 +25144 1149 minutely detailed wonders of dreamlike ecstasy 4 +25145 1149 minutely detailed wonders 3 +25146 1149 minutely 2 +25147 1149 detailed wonders 2 +25148 1149 wonders 2 +25149 1149 of dreamlike ecstasy 3 +25150 1149 dreamlike ecstasy 4 +25151 1149 dreamlike 3 +25152 1149 ecstasy 3 +25153 1150 This filmed Tosca -- not the first , by the way -- is a pretty good job , if it 's filmed Tosca that you want . 3 +25154 1150 This filmed Tosca -- not the first , by the way -- 2 +25155 1150 This filmed Tosca 2 +25156 1150 filmed Tosca 2 +25157 1150 filmed 2 +25158 1150 -- not the first , by the way -- 1 +25159 1150 not the first , by the way -- 2 +25160 1150 not the first , by the way 2 +25161 1150 not the first , 2 +25162 1150 not the first 2 +25163 1150 by the way 2 +25164 1150 is a pretty good job , if it 's filmed Tosca that you want . 3 +25165 1150 is a pretty good job , if it 's filmed Tosca that you want 2 +25166 1150 is a pretty good job , 3 +25167 1150 is a pretty good job 3 +25168 1150 a pretty good job 3 +25169 1150 pretty good job 2 +25170 1150 if it 's filmed Tosca that you want 3 +25171 1150 it 's filmed Tosca that you want 2 +25172 1150 's filmed Tosca that you want 2 +25173 1150 filmed Tosca that you want 2 +25174 1150 that you want 2 +25175 1150 you want 2 +25176 1151 Lavishly , exhilaratingly tasteless . 2 +25177 1151 Lavishly 2 +25178 1151 , exhilaratingly tasteless . 1 +25179 1151 exhilaratingly tasteless . 1 +25180 1151 exhilaratingly tasteless 1 +25181 1151 exhilaratingly 3 +25182 1151 tasteless 2 +25183 1152 Would be an unendurable viewing experience for this ultra-provincial New Yorker if 26-year-old Reese Witherspoon were not on hand to inject her pure fantasy character , Melanie Carmichael , with a massive infusion of old-fashioned Hollywood magic . 3 +25184 1152 Would be an unendurable viewing experience for this ultra-provincial New Yorker if 26-year-old Reese Witherspoon were not on hand to inject her pure fantasy character , Melanie Carmichael , with a massive infusion of old-fashioned Hollywood magic 2 +25185 1152 be an unendurable viewing experience for this ultra-provincial New Yorker if 26-year-old Reese Witherspoon were not on hand to inject her pure fantasy character , Melanie Carmichael , with a massive infusion of old-fashioned Hollywood magic 3 +25186 1152 be an unendurable viewing experience for this ultra-provincial New Yorker 1 +25187 1152 an unendurable viewing experience for this ultra-provincial New Yorker 2 +25188 1152 an unendurable viewing experience 0 +25189 1152 unendurable viewing experience 0 +25190 1152 unendurable 0 +25191 1152 viewing experience 2 +25192 1152 for this ultra-provincial New Yorker 2 +25193 1152 this ultra-provincial New Yorker 2 +25194 1152 ultra-provincial New Yorker 2 +25195 1152 ultra-provincial 2 +25196 1152 New Yorker 2 +25197 1152 Yorker 2 +25198 1152 if 26-year-old Reese Witherspoon were not on hand to inject her pure fantasy character , Melanie Carmichael , with a massive infusion of old-fashioned Hollywood magic 2 +25199 1152 26-year-old Reese Witherspoon were not on hand to inject her pure fantasy character , Melanie Carmichael , with a massive infusion of old-fashioned Hollywood magic 2 +25200 1152 26-year-old Reese Witherspoon 2 +25201 1152 26-year-old 2 +25202 1152 Reese Witherspoon 2 +25203 1152 Reese 2 +25204 1152 Witherspoon 2 +25205 1152 were not on hand to inject her pure fantasy character , Melanie Carmichael , with a massive infusion of old-fashioned Hollywood magic 2 +25206 1152 were not on hand 2 +25207 1152 were not 2 +25208 1152 on hand 2 +25209 1152 to inject her pure fantasy character , Melanie Carmichael , with a massive infusion of old-fashioned Hollywood magic 4 +25210 1152 inject her pure fantasy character , Melanie Carmichael , with a massive infusion of old-fashioned Hollywood magic 4 +25211 1152 inject 2 +25212 1152 her pure fantasy character , Melanie Carmichael , with a massive infusion of old-fashioned Hollywood magic 3 +25213 1152 her pure fantasy character , Melanie Carmichael , 2 +25214 1152 her pure fantasy character , Melanie Carmichael 2 +25215 1152 her pure fantasy character , 3 +25216 1152 her pure fantasy character 3 +25217 1152 pure fantasy character 2 +25218 1152 pure 4 +25219 1152 fantasy character 2 +25220 1152 Melanie Carmichael 2 +25221 1152 Melanie 2 +25222 1152 Carmichael 3 +25223 1152 with a massive infusion of old-fashioned Hollywood magic 3 +25224 1152 a massive infusion of old-fashioned Hollywood magic 3 +25225 1152 a massive infusion 1 +25226 1152 massive infusion 2 +25227 1152 massive 2 +25228 1152 infusion 2 +25229 1152 of old-fashioned Hollywood magic 3 +25230 1152 old-fashioned Hollywood magic 4 +25231 1152 Hollywood magic 4 +25232 1153 Richard Pryor mined his personal horrors and came up with a treasure chest of material , but Lawrence gives us mostly fool 's gold . 1 +25233 1153 Richard Pryor mined his personal horrors and came up with a treasure chest of material , but Lawrence gives us mostly fool 's gold 2 +25234 1153 Richard Pryor mined his personal horrors and came up with a treasure chest of material , but 3 +25235 1153 Richard Pryor mined his personal horrors and came up with a treasure chest of material , 3 +25236 1153 Richard Pryor mined his personal horrors and came up with a treasure chest of material 2 +25237 1153 Richard Pryor 2 +25238 1153 Richard 2 +25239 1153 Pryor 2 +25240 1153 mined his personal horrors and came up with a treasure chest of material 3 +25241 1153 mined his personal horrors and 1 +25242 1153 mined his personal horrors 2 +25243 1153 mined 2 +25244 1153 his personal horrors 2 +25245 1153 personal horrors 2 +25246 1153 horrors 1 +25247 1153 came up with a treasure chest of material 3 +25248 1153 came up 2 +25249 1153 with a treasure chest of material 3 +25250 1153 a treasure chest of material 3 +25251 1153 a treasure chest 3 +25252 1153 treasure chest 3 +25253 1153 of material 2 +25254 1153 Lawrence gives us mostly fool 's gold 1 +25255 1153 gives us mostly fool 's gold 1 +25256 1153 mostly fool 's gold 0 +25257 1153 mostly fool 's 1 +25258 1153 fool 's 2 +25259 1153 fool 1 +25260 1153 gold 3 +25261 1154 The thing looks like a made-for-home-video quickie . 2 +25262 1154 looks like a made-for-home-video quickie . 1 +25263 1154 looks like a made-for-home-video quickie 1 +25264 1154 like a made-for-home-video quickie 0 +25265 1154 a made-for-home-video quickie 1 +25266 1154 made-for-home-video quickie 0 +25267 1154 made-for-home-video 2 +25268 1154 quickie 2 +25269 1155 This slender plot feels especially thin stretched over the nearly 80-minute running time . 1 +25270 1155 This slender plot 2 +25271 1155 slender plot 2 +25272 1155 slender 2 +25273 1155 feels especially thin stretched over the nearly 80-minute running time . 1 +25274 1155 feels especially thin stretched over the nearly 80-minute running time 1 +25275 1155 especially thin stretched over the nearly 80-minute running time 0 +25276 1155 thin stretched over the nearly 80-minute running time 1 +25277 1155 stretched over the nearly 80-minute running time 1 +25278 1155 over the nearly 80-minute running time 2 +25279 1155 the nearly 80-minute running time 2 +25280 1155 nearly 80-minute running time 2 +25281 1155 nearly 80-minute 2 +25282 1155 80-minute 2 +25283 1156 Reminiscent of Alfred Hitchcock 's thrillers , most of the scary parts in ` Signs ' occur while waiting for things to happen . 3 +25284 1156 Reminiscent of Alfred Hitchcock 's thrillers , most of the scary parts in ` Signs ' 3 +25285 1156 Reminiscent 3 +25286 1156 of Alfred Hitchcock 's thrillers , most of the scary parts in ` Signs ' 2 +25287 1156 Alfred Hitchcock 's thrillers , most of the scary parts in ` Signs ' 2 +25288 1156 Alfred Hitchcock 's thrillers , 1 +25289 1156 Alfred Hitchcock 's thrillers 2 +25290 1156 Alfred Hitchcock 's 3 +25291 1156 Hitchcock 's 3 +25292 1156 most of the scary parts in ` Signs ' 2 +25293 1156 of the scary parts in ` Signs ' 2 +25294 1156 the scary parts in ` Signs ' 2 +25295 1156 the scary parts 2 +25296 1156 scary parts 2 +25297 1156 in ` Signs ' 2 +25298 1156 in ` Signs 2 +25299 1156 Signs 2 +25300 1156 occur while waiting for things to happen . 2 +25301 1156 occur while waiting for things to happen 2 +25302 1156 occur 2 +25303 1156 while waiting for things to happen 2 +25304 1156 waiting for things to happen 2 +25305 1156 waiting for things 3 +25306 1156 for things 2 +25307 1157 The Merchant-Ivory team continues to systematically destroy everything we hold dear about cinema , only now it 's begun to split up so that it can do even more damage . 1 +25308 1157 The Merchant-Ivory team 2 +25309 1157 Merchant-Ivory team 2 +25310 1157 Merchant-Ivory 2 +25311 1157 continues to systematically destroy everything we hold dear about cinema , only now it 's begun to split up so that it can do even more damage . 0 +25312 1157 continues to systematically destroy everything we hold dear about cinema , only now it 's begun to split up so that it can do even more damage 0 +25313 1157 continues 2 +25314 1157 to systematically destroy everything we hold dear about cinema , only now it 's begun to split up so that it can do even more damage 0 +25315 1157 systematically destroy everything we hold dear about cinema , only now it 's begun to split up so that it can do even more damage 0 +25316 1157 systematically 2 +25317 1157 destroy everything we hold dear about cinema , only now it 's begun to split up so that it can do even more damage 1 +25318 1157 destroy 1 +25319 1157 everything we hold dear about cinema , only now it 's begun to split up so that it can do even more damage 1 +25320 1157 we hold dear about cinema , only now it 's begun to split up so that it can do even more damage 1 +25321 1157 hold dear about cinema , only now it 's begun to split up so that it can do even more damage 1 +25322 1157 hold dear about cinema , 3 +25323 1157 hold dear about cinema 3 +25324 1157 hold dear 2 +25325 1157 dear 2 +25326 1157 about cinema 2 +25327 1157 only now it 's begun to split up so that it can do even more damage 1 +25328 1157 now it 's begun to split up so that it can do even more damage 2 +25329 1157 it 's begun to split up so that it can do even more damage 1 +25330 1157 's begun to split up so that it can do even more damage 1 +25331 1157 begun to split up so that it can do even more damage 1 +25332 1157 begun 2 +25333 1157 to split up so that it can do even more damage 1 +25334 1157 split up so that it can do even more damage 1 +25335 1157 split up 2 +25336 1157 split 2 +25337 1157 so that it can do even more damage 2 +25338 1157 that it can do even more damage 2 +25339 1157 it can do even more damage 1 +25340 1157 can do even more damage 1 +25341 1157 do even more damage 2 +25342 1157 even more damage 2 +25343 1157 even more 2 +25344 1158 It 's a bad sign in a thriller when you instantly know whodunit . 1 +25345 1158 's a bad sign in a thriller when you instantly know whodunit . 0 +25346 1158 's a bad sign in a thriller when you instantly know whodunit 0 +25347 1158 a bad sign in a thriller when you instantly know whodunit 1 +25348 1158 a bad sign 1 +25349 1158 bad sign 1 +25350 1158 in a thriller when you instantly know whodunit 2 +25351 1158 a thriller when you instantly know whodunit 2 +25352 1158 when you instantly know whodunit 1 +25353 1158 you instantly know whodunit 1 +25354 1158 instantly know whodunit 1 +25355 1158 know whodunit 2 +25356 1158 whodunit 2 +25357 1159 As a thoughtful and unflinching examination of an alternative lifestyle , Sex with Strangers is a success . 3 +25358 1159 As a thoughtful and unflinching examination of an alternative lifestyle 3 +25359 1159 a thoughtful and unflinching examination of an alternative lifestyle 3 +25360 1159 a thoughtful and unflinching examination 2 +25361 1159 thoughtful and unflinching examination 3 +25362 1159 thoughtful and unflinching 3 +25363 1159 of an alternative lifestyle 3 +25364 1159 an alternative lifestyle 2 +25365 1159 alternative lifestyle 2 +25366 1159 , Sex with Strangers is a success . 4 +25367 1159 Sex with Strangers is a success . 3 +25368 1159 Sex with Strangers 3 +25369 1159 with Strangers 2 +25370 1159 Strangers 2 +25371 1159 is a success . 4 +25372 1159 is a success 3 +25373 1159 a success 4 +25374 1160 A cockeyed shot all the way . 1 +25375 1160 A cockeyed 2 +25376 1160 cockeyed 2 +25377 1160 shot all the way . 3 +25378 1160 shot all the way 2 +25379 1161 Befuddled in its characterizations as it begins to seem as long as the two year affair which is its subject 1 +25380 1161 Befuddled in its characterizations 1 +25381 1161 Befuddled 1 +25382 1161 in its characterizations 3 +25383 1161 its characterizations 2 +25384 1161 as it begins to seem as long as the two year affair which is its subject 2 +25385 1161 it begins to seem as long as the two year affair which is its subject 1 +25386 1161 begins to seem as long as the two year affair which is its subject 1 +25387 1161 to seem as long as the two year affair which is its subject 1 +25388 1161 seem as long as the two year affair which is its subject 1 +25389 1161 seem as long 2 +25390 1161 as long 2 +25391 1161 as the two year affair which is its subject 2 +25392 1161 the two year affair which is its subject 2 +25393 1161 the two year affair 2 +25394 1161 two year affair 2 +25395 1161 year affair 2 +25396 1161 which is its subject 2 +25397 1161 is its subject 2 +25398 1162 Press the delete key . 0 +25399 1162 Press the delete key 1 +25400 1162 Press 2 +25401 1162 the delete key 1 +25402 1162 delete key 1 +25403 1162 delete 2 +25404 1163 The plot is paper-thin and the characters are n't interesting enough to watch them go about their daily activities for two whole hours . 0 +25405 1163 The plot is paper-thin and the characters are n't interesting enough to watch them go about their daily activities for two whole hours 0 +25406 1163 The plot is paper-thin and 1 +25407 1163 The plot is paper-thin 1 +25408 1163 is paper-thin 2 +25409 1163 the characters are n't interesting enough to watch them go about their daily activities for two whole hours 0 +25410 1163 are n't interesting enough to watch them go about their daily activities for two whole hours 0 +25411 1163 are n't 1 +25412 1163 interesting enough to watch them go about their daily activities for two whole hours 2 +25413 1163 interesting enough 3 +25414 1163 to watch them go about their daily activities for two whole hours 2 +25415 1163 watch them go about their daily activities for two whole hours 1 +25416 1163 them go about their daily activities for two whole hours 2 +25417 1163 go about their daily activities for two whole hours 2 +25418 1163 go about their daily activities 2 +25419 1163 about their daily activities 2 +25420 1163 their daily activities 2 +25421 1163 daily activities 2 +25422 1163 daily 2 +25423 1163 activities 2 +25424 1163 for two whole hours 2 +25425 1163 two whole hours 1 +25426 1163 whole hours 3 +25427 1164 The best movie in many a moon about the passions that sometimes fuel our best achievements and other times leave us stranded with nothing more than our lesser appetites . 3 +25428 1164 The best movie in many a moon about the passions that sometimes fuel our best achievements and other times 4 +25429 1164 The best movie 4 +25430 1164 best movie 3 +25431 1164 in many a moon about the passions that sometimes fuel our best achievements and other times 2 +25432 1164 many a moon about the passions that sometimes fuel our best achievements and other times 3 +25433 1164 many a moon 2 +25434 1164 a moon 2 +25435 1164 moon 2 +25436 1164 about the passions that sometimes fuel our best achievements and other times 3 +25437 1164 the passions that sometimes fuel our best achievements and other times 3 +25438 1164 the passions 2 +25439 1164 passions 2 +25440 1164 that sometimes fuel our best achievements and other times 2 +25441 1164 sometimes fuel our best achievements and other times 2 +25442 1164 fuel our best achievements and other times 3 +25443 1164 fuel 2 +25444 1164 our best achievements and other times 3 +25445 1164 our best achievements and 3 +25446 1164 our best achievements 3 +25447 1164 best achievements 3 +25448 1164 achievements 2 +25449 1164 other times 2 +25450 1164 leave us stranded with nothing more than our lesser appetites . 1 +25451 1164 leave us stranded with nothing more than our lesser appetites 1 +25452 1164 us stranded with nothing more than our lesser appetites 2 +25453 1164 stranded with nothing more than our lesser appetites 1 +25454 1164 stranded with nothing 2 +25455 1164 stranded 1 +25456 1164 with nothing 2 +25457 1164 more than our lesser appetites 2 +25458 1164 than our lesser appetites 2 +25459 1164 our lesser appetites 2 +25460 1164 lesser appetites 2 +25461 1164 appetites 2 +25462 1165 I like that Smith , he 's not making fun of these people , he 's not laughing at them . 3 +25463 1165 like that Smith , he 's not making fun of these people , he 's not laughing at them . 2 +25464 1165 like that Smith , he 's not making fun of these people , he 's not laughing at them 2 +25465 1165 that Smith , he 's not making fun of these people , he 's not laughing at them 2 +25466 1165 Smith , he 's not making fun of these people , he 's not laughing at them 2 +25467 1165 , he 's not making fun of these people , he 's not laughing at them 2 +25468 1165 , he 's not making fun of these people , 2 +25469 1165 he 's not making fun of these people , 2 +25470 1165 he 's not making fun of these people 2 +25471 1165 's not making fun of these people 2 +25472 1165 making fun of these people 2 +25473 1165 fun of these people 2 +25474 1165 he 's not laughing at them 2 +25475 1165 's not laughing at them 2 +25476 1165 laughing at them 2 +25477 1165 at them 2 +25478 1166 At its best when the guarded , resentful Betty and the manipulative yet needy Margot are front and center . 2 +25479 1166 At its best when the guarded 2 +25480 1166 its best when the guarded 2 +25481 1166 its best 3 +25482 1166 when the guarded 2 +25483 1166 the guarded 2 +25484 1166 guarded 2 +25485 1166 , resentful Betty and the manipulative yet needy Margot are front and center . 2 +25486 1166 resentful Betty and the manipulative yet needy Margot are front and center . 2 +25487 1166 resentful Betty and the manipulative yet needy Margot 1 +25488 1166 resentful Betty and 1 +25489 1166 resentful Betty 2 +25490 1166 resentful 2 +25491 1166 Betty 2 +25492 1166 the manipulative yet needy Margot 2 +25493 1166 manipulative yet needy Margot 2 +25494 1166 manipulative yet needy 2 +25495 1166 manipulative yet 2 +25496 1166 needy 2 +25497 1166 Margot 3 +25498 1166 are front and center . 2 +25499 1166 are front and center 3 +25500 1166 front and center 2 +25501 1166 front and 2 +25502 1166 front 2 +25503 1167 Director Tom Dey demonstrated a knack for mixing action and idiosyncratic humor in his charming 2000 debut Shanghai Noon , but Showtime 's uninspired send-up of TV cop show cliches mostly leaves him shooting blanks . 3 +25504 1167 Director Tom Dey demonstrated a knack for mixing action and idiosyncratic humor in his charming 2000 debut Shanghai Noon , but Showtime 's uninspired send-up of TV cop show cliches mostly leaves him shooting blanks 1 +25505 1167 Director Tom Dey demonstrated a knack for mixing action and idiosyncratic humor in his charming 2000 debut Shanghai Noon , but 2 +25506 1167 Director Tom Dey demonstrated a knack for mixing action and idiosyncratic humor in his charming 2000 debut Shanghai Noon , 4 +25507 1167 Director Tom Dey demonstrated a knack for mixing action and idiosyncratic humor in his charming 2000 debut Shanghai Noon 4 +25508 1167 Director Tom Dey 2 +25509 1167 demonstrated a knack for mixing action and idiosyncratic humor in his charming 2000 debut Shanghai Noon 3 +25510 1167 demonstrated a knack 2 +25511 1167 demonstrated 2 +25512 1167 for mixing action and idiosyncratic humor in his charming 2000 debut Shanghai Noon 3 +25513 1167 mixing action and idiosyncratic humor in his charming 2000 debut Shanghai Noon 3 +25514 1167 mixing action and idiosyncratic humor 2 +25515 1167 mixing 2 +25516 1167 action and idiosyncratic humor 2 +25517 1167 and idiosyncratic humor 2 +25518 1167 idiosyncratic humor 3 +25519 1167 idiosyncratic 2 +25520 1167 in his charming 2000 debut Shanghai Noon 3 +25521 1167 his charming 2000 debut Shanghai Noon 3 +25522 1167 charming 2000 debut Shanghai Noon 3 +25523 1167 2000 debut Shanghai Noon 2 +25524 1167 2000 2 +25525 1167 debut Shanghai Noon 2 +25526 1167 Shanghai Noon 2 +25527 1167 Shanghai 2 +25528 1167 Noon 2 +25529 1167 Showtime 's uninspired send-up of TV cop show cliches mostly leaves him shooting blanks 1 +25530 1167 Showtime 's uninspired send-up of TV cop show cliches 1 +25531 1167 Showtime 's uninspired send-up 1 +25532 1167 uninspired send-up 2 +25533 1167 send-up 2 +25534 1167 of TV cop show cliches 2 +25535 1167 TV cop show cliches 1 +25536 1167 cop show cliches 2 +25537 1167 show cliches 2 +25538 1167 mostly leaves him shooting blanks 1 +25539 1167 leaves him shooting blanks 0 +25540 1167 him shooting blanks 2 +25541 1167 shooting blanks 1 +25542 1167 blanks 2 +25543 1168 I wo n't argue with anyone who calls ` Slackers ' dumb , insulting , or childish ... but I laughed so much that I did n't mind . 2 +25544 1168 I wo n't argue with anyone who calls ` Slackers ' dumb , insulting , or childish ... but I laughed so much that I did n't mind 2 +25545 1168 I wo n't argue with anyone who calls ` Slackers ' dumb , insulting , or childish ... but 1 +25546 1168 I wo n't argue with anyone who calls ` Slackers ' dumb , insulting , or childish ... 0 +25547 1168 I wo n't argue with anyone who calls ` Slackers ' dumb , insulting , or childish 1 +25548 1168 wo n't argue with anyone who calls ` Slackers ' dumb , insulting , or childish 1 +25549 1168 argue with anyone who calls ` Slackers ' dumb , insulting , or childish 1 +25550 1168 with anyone who calls ` Slackers ' dumb , insulting , or childish 1 +25551 1168 anyone who calls ` Slackers ' dumb , insulting , or childish 2 +25552 1168 who calls ` Slackers ' dumb , insulting , or childish 2 +25553 1168 calls ` Slackers ' dumb , insulting , or childish 2 +25554 1168 calls ` Slackers ' 2 +25555 1168 calls 2 +25556 1168 ` Slackers ' 1 +25557 1168 Slackers ' 2 +25558 1168 Slackers 2 +25559 1168 dumb , insulting , or childish 1 +25560 1168 , insulting , or childish 1 +25561 1168 insulting , or childish 1 +25562 1168 insulting 1 +25563 1168 , or childish 2 +25564 1168 childish 1 +25565 1168 I laughed so much that I did n't mind 4 +25566 1168 laughed so much that I did n't mind 4 +25567 1168 laughed so much 3 +25568 1168 that I did n't mind 2 +25569 1168 I did n't mind 2 +25570 1168 did n't mind 2 +25571 1169 Sparkling , often hilarious romantic jealousy comedy ... Attal looks so much like a young Robert DeNiro that it seems the film should instead be called ` My Husband Is Travis Bickle ' . 4 +25572 1169 Sparkling , often hilarious romantic jealousy comedy ... Attal looks so much like a young Robert DeNiro that it seems the film should instead be called ` My Husband Is Travis Bickle ' 3 +25573 1169 Sparkling , often hilarious romantic jealousy comedy ... 3 +25574 1169 Sparkling , often hilarious romantic jealousy comedy 4 +25575 1169 , often hilarious romantic jealousy comedy 4 +25576 1169 often hilarious romantic jealousy comedy 3 +25577 1169 often hilarious 4 +25578 1169 romantic jealousy comedy 2 +25579 1169 jealousy comedy 2 +25580 1169 jealousy 1 +25581 1169 Attal looks so much like a young Robert DeNiro that it seems the film should instead be called ` My Husband Is Travis Bickle ' 2 +25582 1169 looks so much like a young Robert DeNiro that it seems the film should instead be called ` My Husband Is Travis Bickle ' 2 +25583 1169 looks so much like a young Robert DeNiro 2 +25584 1169 so much like a young Robert DeNiro 3 +25585 1169 much like a young Robert DeNiro 3 +25586 1169 like a young Robert DeNiro 2 +25587 1169 a young Robert DeNiro 3 +25588 1169 young Robert DeNiro 2 +25589 1169 Robert DeNiro 2 +25590 1169 DeNiro 2 +25591 1169 that it seems the film should instead be called ` My Husband Is Travis Bickle ' 1 +25592 1169 it seems the film should instead be called ` My Husband Is Travis Bickle ' 2 +25593 1169 seems the film should instead be called ` My Husband Is Travis Bickle ' 1 +25594 1169 the film should instead be called ` My Husband Is Travis Bickle ' 1 +25595 1169 should instead be called ` My Husband Is Travis Bickle ' 2 +25596 1169 should instead 2 +25597 1169 be called ` My Husband Is Travis Bickle ' 2 +25598 1169 called ` My Husband Is Travis Bickle ' 2 +25599 1169 called ` My Husband Is Travis Bickle 2 +25600 1169 called ` 2 +25601 1169 called 2 +25602 1169 My Husband Is Travis Bickle 2 +25603 1169 My Husband 2 +25604 1169 Is Travis Bickle 2 +25605 1169 Travis Bickle 2 +25606 1169 Travis 2 +25607 1169 Bickle 2 +25608 1170 It throws quirky characters , odd situations , and off-kilter dialogue at us , all as if to say , `` Look at this ! 3 +25609 1170 throws quirky characters , odd situations , and off-kilter dialogue at us , all as if to say , `` Look at this ! 1 +25610 1170 throws quirky characters , odd situations , and off-kilter dialogue at us , all as if to say , `` Look at this 2 +25611 1170 throws quirky characters , odd situations , and off-kilter dialogue at us , 2 +25612 1170 throws quirky characters , odd situations , and off-kilter dialogue at us 1 +25613 1170 throws quirky characters , odd situations , and off-kilter dialogue 1 +25614 1170 quirky characters , odd situations , and off-kilter dialogue 2 +25615 1170 quirky characters , odd situations , and 3 +25616 1170 quirky characters , odd situations , 2 +25617 1170 quirky characters , odd situations 2 +25618 1170 quirky characters , 2 +25619 1170 odd situations 2 +25620 1170 odd 2 +25621 1170 off-kilter dialogue 1 +25622 1170 off-kilter 2 +25623 1170 at us 2 +25624 1170 all as if to say , `` Look at this 2 +25625 1170 all as 2 +25626 1170 if to say , `` Look at this 2 +25627 1170 to say , `` Look at this 2 +25628 1170 say , `` Look at this 2 +25629 1170 say , `` 2 +25630 1170 say , 2 +25631 1170 Look at this 2 +25632 1170 at this 2 +25633 1171 A surprisingly flat retread , hobbled by half-baked setups and sluggish pacing . 0 +25634 1171 A surprisingly flat 2 +25635 1171 surprisingly flat 1 +25636 1171 retread , hobbled by half-baked setups and sluggish pacing . 1 +25637 1171 retread , hobbled by half-baked setups and sluggish pacing 0 +25638 1171 retread , 1 +25639 1171 hobbled by half-baked setups and sluggish pacing 1 +25640 1171 hobbled 2 +25641 1171 by half-baked setups and sluggish pacing 0 +25642 1171 half-baked setups and sluggish pacing 1 +25643 1171 half-baked setups and 0 +25644 1171 half-baked setups 1 +25645 1171 half-baked 1 +25646 1171 setups 2 +25647 1171 sluggish pacing 1 +25648 1171 sluggish 1 +25649 1172 It 's hard to understand why anyone in his right mind would even think to make the attraction a movie . 0 +25650 1172 's hard to understand why anyone in his right mind would even think to make the attraction a movie . 0 +25651 1172 's hard to understand why anyone in his right mind would even think to make the attraction a movie 0 +25652 1172 hard to understand why anyone in his right mind would even think to make the attraction a movie 0 +25653 1172 to understand why anyone in his right mind would even think to make the attraction a movie 1 +25654 1172 understand why anyone in his right mind would even think to make the attraction a movie 1 +25655 1172 why anyone in his right mind would even think to make the attraction a movie 0 +25656 1172 anyone in his right mind would even think to make the attraction a movie 1 +25657 1172 anyone in his right mind 2 +25658 1172 in his right mind 3 +25659 1172 his right mind 2 +25660 1172 right mind 2 +25661 1172 would even think to make the attraction a movie 2 +25662 1172 would even 2 +25663 1172 think to make the attraction a movie 2 +25664 1172 to make the attraction a movie 2 +25665 1172 make the attraction a movie 3 +25666 1172 the attraction a movie 2 +25667 1172 the attraction 2 +25668 1173 aside from showing us in explicit detail how difficult it is to win over the two-drink-minimum crowd , there 's little to be learned from watching ` Comedian ' 2 +25669 1173 aside from showing us in explicit detail how difficult it is to win over the two-drink-minimum crowd 2 +25670 1173 aside 2 +25671 1173 from showing us in explicit detail how difficult it is to win over the two-drink-minimum crowd 3 +25672 1173 showing us in explicit detail how difficult it is to win over the two-drink-minimum crowd 2 +25673 1173 showing us in explicit detail 2 +25674 1173 showing us 2 +25675 1173 showing 2 +25676 1173 in explicit detail 2 +25677 1173 explicit detail 2 +25678 1173 explicit 3 +25679 1173 how difficult it is to win over the two-drink-minimum crowd 2 +25680 1173 how difficult 1 +25681 1173 it is to win over the two-drink-minimum crowd 2 +25682 1173 is to win over the two-drink-minimum crowd 3 +25683 1173 to win over the two-drink-minimum crowd 2 +25684 1173 win over the two-drink-minimum crowd 2 +25685 1173 win over 3 +25686 1173 the two-drink-minimum crowd 2 +25687 1173 two-drink-minimum crowd 2 +25688 1173 two-drink-minimum 2 +25689 1173 , there 's little to be learned from watching ` Comedian ' 1 +25690 1173 there 's little to be learned from watching ` Comedian ' 1 +25691 1173 's little to be learned from watching ` Comedian ' 1 +25692 1173 little to be learned from watching ` Comedian ' 1 +25693 1173 to be learned from watching ` Comedian ' 2 +25694 1173 be learned from watching ` Comedian ' 2 +25695 1173 learned from watching ` Comedian ' 3 +25696 1173 learned 2 +25697 1173 from watching ` Comedian ' 2 +25698 1173 watching ` Comedian ' 2 +25699 1173 ` Comedian ' 2 +25700 1173 Comedian ' 3 +25701 1174 One of the best , most understated performances of -LRB- Jack Nicholson 's -RRB- career . 4 +25702 1174 One of the best , most 4 +25703 1174 of the best , most 3 +25704 1174 the best , most 3 +25705 1174 the best , 3 +25706 1174 understated performances of -LRB- Jack Nicholson 's -RRB- career . 3 +25707 1174 understated performances of -LRB- Jack Nicholson 's -RRB- career 1 +25708 1174 understated 2 +25709 1174 performances of -LRB- Jack Nicholson 's -RRB- career 3 +25710 1174 of -LRB- Jack Nicholson 's -RRB- career 2 +25711 1174 -LRB- Jack Nicholson 's -RRB- career 2 +25712 1174 -LRB- Jack Nicholson 's -RRB- 2 +25713 1174 Jack Nicholson 's -RRB- 2 +25714 1174 Jack Nicholson 's 2 +25715 1174 Jack 2 +25716 1175 An intense and effective film about loneliness and the chilly anonymity of the environments where so many of us spend so much of our time . 3 +25717 1175 An intense and effective film about loneliness and the chilly anonymity of the environments where so many of us spend so much of our time 3 +25718 1175 An intense and effective film 4 +25719 1175 intense and effective film 4 +25720 1175 intense and effective 4 +25721 1175 intense and 3 +25722 1175 intense 3 +25723 1175 about loneliness and the chilly anonymity of the environments where so many of us spend so much of our time 2 +25724 1175 loneliness and the chilly anonymity of the environments where so many of us spend so much of our time 1 +25725 1175 the chilly anonymity of the environments where so many of us spend so much of our time 2 +25726 1175 the chilly anonymity of the environments 2 +25727 1175 the chilly anonymity 2 +25728 1175 chilly anonymity 2 +25729 1175 anonymity 2 +25730 1175 of the environments 2 +25731 1175 the environments 2 +25732 1175 environments 2 +25733 1175 where so many of us spend so much of our time 2 +25734 1175 so many of us spend so much of our time 2 +25735 1175 so many of us 2 +25736 1175 spend so much of our time 2 +25737 1175 spend so much 2 +25738 1175 of our time 2 +25739 1175 our time 2 +25740 1176 It 's still a comic book , but Maguire makes it a comic book with soul . 3 +25741 1176 It 's still a comic book , but Maguire makes it a comic book with soul 3 +25742 1176 It 's still a comic book , but 2 +25743 1176 It 's still a comic book , 1 +25744 1176 It 's still a comic book 2 +25745 1176 's still a comic book 2 +25746 1176 a comic book 2 +25747 1176 comic book 2 +25748 1176 Maguire makes it a comic book with soul 4 +25749 1176 Maguire 2 +25750 1176 makes it a comic book with soul 3 +25751 1176 it a comic book with soul 3 +25752 1176 a comic book with soul 4 +25753 1176 with soul 3 +25754 1177 Where the film falters is in its tone . 1 +25755 1177 Where the film falters 2 +25756 1177 the film falters 1 +25757 1177 falters 1 +25758 1177 is in its tone . 2 +25759 1177 is in its tone 2 +25760 1177 in its tone 2 +25761 1177 its tone 2 +25762 1178 Amazing ! 4 +25763 1179 A modestly comic , modestly action-oriented World War II adventure that , in terms of authenticity , is one of those films that requires the enemy to never shoot straight . 2 +25764 1179 A modestly comic , modestly action-oriented World War II adventure that , in terms of authenticity , 2 +25765 1179 A modestly comic , modestly action-oriented World War II adventure that , in terms of authenticity 3 +25766 1179 A modestly comic , modestly action-oriented World War II adventure that , 3 +25767 1179 A modestly comic , modestly action-oriented World War II adventure that 3 +25768 1179 A modestly comic , modestly action-oriented World War II adventure 3 +25769 1179 modestly comic , modestly action-oriented World War II adventure 3 +25770 1179 modestly comic 2 +25771 1179 , modestly action-oriented World War II adventure 3 +25772 1179 modestly action-oriented World War II adventure 2 +25773 1179 action-oriented World War II adventure 3 +25774 1179 action-oriented World War II 2 +25775 1179 action-oriented World War 3 +25776 1179 action-oriented World 2 +25777 1179 action-oriented 2 +25778 1179 in terms of authenticity 2 +25779 1179 terms of authenticity 3 +25780 1179 of authenticity 2 +25781 1179 authenticity 2 +25782 1179 is one of those films that requires the enemy to never shoot straight . 1 +25783 1179 is one of those films that requires the enemy to never shoot straight 1 +25784 1179 one of those films that requires the enemy to never shoot straight 1 +25785 1179 of those films that requires the enemy to never shoot straight 3 +25786 1179 those films that requires the enemy to never shoot straight 1 +25787 1179 those films 2 +25788 1179 that requires the enemy to never shoot straight 3 +25789 1179 requires the enemy to never shoot straight 2 +25790 1179 requires 2 +25791 1179 the enemy to never shoot straight 2 +25792 1179 enemy to never shoot straight 2 +25793 1179 enemy 2 +25794 1179 to never shoot straight 3 +25795 1179 never shoot straight 1 +25796 1179 shoot straight 2 +25797 1179 shoot 1 +25798 1179 straight 2 +25799 1180 Wow , so who knew Charles Dickens could be so light-hearted ? 3 +25800 1180 Wow 4 +25801 1180 , so who knew Charles Dickens could be so light-hearted ? 3 +25802 1180 so who knew Charles Dickens could be so light-hearted ? 2 +25803 1180 so who knew 2 +25804 1180 who knew 2 +25805 1180 knew 2 +25806 1180 Charles Dickens could be so light-hearted ? 2 +25807 1180 Charles Dickens 2 +25808 1180 Dickens 2 +25809 1180 could be so light-hearted ? 3 +25810 1180 could be so light-hearted 2 +25811 1180 be so light-hearted 3 +25812 1180 so light-hearted 2 +25813 1180 light-hearted 3 +25814 1181 Hey , Happy ! 3 +25815 1181 Hey , 2 +25816 1181 Happy ! 3 +25817 1182 But here 's a movie about it anyway . 1 +25818 1182 here 's a movie about it anyway . 2 +25819 1182 's a movie about it anyway . 2 +25820 1182 's a movie about it anyway 2 +25821 1182 's a movie about it 3 +25822 1182 a movie about it 2 +25823 1182 about it 2 +25824 1182 anyway 2 +25825 1183 Does n't get the job done , running off the limited chemistry created by Ralph Fiennes and Jennifer Lopez . 1 +25826 1183 Does n't get the job done , running off the limited chemistry created by Ralph Fiennes and Jennifer Lopez 1 +25827 1183 get the job done , running off the limited chemistry created by Ralph Fiennes and Jennifer Lopez 2 +25828 1183 the job done , running off the limited chemistry created by Ralph Fiennes and Jennifer Lopez 1 +25829 1183 the job 2 +25830 1183 done , running off the limited chemistry created by Ralph Fiennes and Jennifer Lopez 1 +25831 1183 done , 2 +25832 1183 running off the limited chemistry created by Ralph Fiennes and Jennifer Lopez 2 +25833 1183 running off 1 +25834 1183 the limited chemistry created by Ralph Fiennes and Jennifer Lopez 1 +25835 1183 the limited chemistry 1 +25836 1183 limited chemistry 1 +25837 1183 created by Ralph Fiennes and Jennifer Lopez 2 +25838 1183 by Ralph Fiennes and Jennifer Lopez 2 +25839 1183 Ralph Fiennes and Jennifer Lopez 2 +25840 1183 Ralph Fiennes and 2 +25841 1183 Jennifer Lopez 2 +25842 1184 More than simply a portrait of early extreme sports , this peek into the 1970s skateboard revolution is a skateboard film as social anthropology ... 2 +25843 1184 More than simply a portrait of early extreme sports , this peek into the 1970s skateboard revolution 3 +25844 1184 More than simply a portrait 3 +25845 1184 than simply a portrait 2 +25846 1184 simply a portrait 2 +25847 1184 of early extreme sports , this peek into the 1970s skateboard revolution 2 +25848 1184 early extreme sports , this peek into the 1970s skateboard revolution 2 +25849 1184 early extreme sports , 2 +25850 1184 early extreme sports 2 +25851 1184 extreme sports 2 +25852 1184 this peek into the 1970s skateboard revolution 3 +25853 1184 this peek 2 +25854 1184 peek 2 +25855 1184 into the 1970s skateboard revolution 2 +25856 1184 the 1970s skateboard revolution 2 +25857 1184 1970s skateboard revolution 2 +25858 1184 skateboard revolution 2 +25859 1184 skateboard 2 +25860 1184 revolution 2 +25861 1184 is a skateboard film as social anthropology ... 2 +25862 1184 is a skateboard film as social anthropology 2 +25863 1184 a skateboard film as social anthropology 2 +25864 1184 a skateboard film 2 +25865 1184 skateboard film 2 +25866 1184 as social anthropology 2 +25867 1184 social anthropology 2 +25868 1184 anthropology 2 +25869 1185 A live-wire film that never loses its ability to shock and amaze . 4 +25870 1185 A live-wire film that 3 +25871 1185 A live-wire film 4 +25872 1185 live-wire film 3 +25873 1185 live-wire 3 +25874 1185 never loses its ability to shock and amaze . 4 +25875 1185 loses its ability to shock and amaze . 1 +25876 1185 loses its ability to shock and amaze 1 +25877 1185 its ability to shock and amaze 3 +25878 1185 ability to shock and amaze 4 +25879 1185 ability 2 +25880 1185 to shock and amaze 3 +25881 1185 shock and amaze 3 +25882 1185 shock and 2 +25883 1185 amaze 4 +25884 1186 -LRB- Kirshner wins , but it 's close . -RRB- 2 +25885 1186 Kirshner wins , but it 's close . -RRB- 3 +25886 1186 Kirshner wins , but it 's close . 3 +25887 1186 Kirshner wins , but it 's close 2 +25888 1186 Kirshner wins , but 2 +25889 1186 Kirshner wins , 2 +25890 1186 Kirshner wins 2 +25891 1186 Kirshner 2 +25892 1186 wins 2 +25893 1186 it 's close 2 +25894 1186 's close 2 +25895 1187 Like Rudy Yellow Lodge , Eyre needs to take a good sweat to clarify his cinematic vision before his next creation and remember the lessons of the trickster spider . 0 +25896 1187 Like Rudy Yellow Lodge 2 +25897 1187 Rudy Yellow Lodge 2 +25898 1187 Rudy 2 +25899 1187 Yellow Lodge 2 +25900 1187 Yellow 2 +25901 1187 Lodge 2 +25902 1187 , Eyre needs to take a good sweat to clarify his cinematic vision before his next creation and remember the lessons of the trickster spider . 0 +25903 1187 Eyre needs to take a good sweat to clarify his cinematic vision before his next creation and remember the lessons of the trickster spider . 1 +25904 1187 Eyre 2 +25905 1187 needs to take a good sweat to clarify his cinematic vision before his next creation and remember the lessons of the trickster spider . 1 +25906 1187 needs to take a good sweat to clarify his cinematic vision before his next creation and remember the lessons of the trickster spider 2 +25907 1187 to take a good sweat to clarify his cinematic vision before his next creation and remember the lessons of the trickster spider 2 +25908 1187 take a good sweat to clarify his cinematic vision before his next creation and remember the lessons of the trickster spider 2 +25909 1187 take a good sweat 2 +25910 1187 a good sweat 2 +25911 1187 good sweat 3 +25912 1187 sweat 2 +25913 1187 to clarify his cinematic vision before his next creation and remember the lessons of the trickster spider 2 +25914 1187 clarify his cinematic vision before his next creation and remember the lessons of the trickster spider 2 +25915 1187 clarify his cinematic vision before his next creation and 2 +25916 1187 clarify his cinematic vision before his next creation 2 +25917 1187 clarify his cinematic vision 2 +25918 1187 clarify 2 +25919 1187 his cinematic vision 3 +25920 1187 cinematic vision 2 +25921 1187 before his next creation 2 +25922 1187 his next creation 2 +25923 1187 next creation 2 +25924 1187 creation 2 +25925 1187 remember the lessons of the trickster spider 2 +25926 1187 the lessons of the trickster spider 2 +25927 1187 the lessons 2 +25928 1187 lessons 2 +25929 1187 of the trickster spider 2 +25930 1187 the trickster spider 2 +25931 1187 trickster spider 2 +25932 1187 trickster 2 +25933 1187 spider 2 +25934 1188 The large-format film is well suited to capture these musicians in full regalia and the incredible IMAX sound system lets you feel the beat down to your toes . 4 +25935 1188 The large-format film is well suited to capture these musicians in full regalia and the incredible IMAX sound system lets you feel the beat down to your toes 4 +25936 1188 The large-format film is well suited to capture these musicians in full regalia and 3 +25937 1188 The large-format film is well suited to capture these musicians in full regalia 4 +25938 1188 The large-format film 2 +25939 1188 large-format film 2 +25940 1188 large-format 3 +25941 1188 is well suited to capture these musicians in full regalia 3 +25942 1188 suited to capture these musicians in full regalia 3 +25943 1188 to capture these musicians in full regalia 3 +25944 1188 capture these musicians in full regalia 3 +25945 1188 capture these musicians 2 +25946 1188 these musicians 2 +25947 1188 musicians 2 +25948 1188 in full regalia 2 +25949 1188 full regalia 2 +25950 1188 regalia 2 +25951 1188 the incredible IMAX sound system lets you feel the beat down to your toes 3 +25952 1188 the incredible IMAX sound system 3 +25953 1188 incredible IMAX sound system 4 +25954 1188 incredible 3 +25955 1188 IMAX sound system 3 +25956 1188 sound system 2 +25957 1188 sound 2 +25958 1188 system 2 +25959 1188 lets you feel the beat down to your toes 2 +25960 1188 you feel the beat down to your toes 2 +25961 1188 feel the beat down to your toes 3 +25962 1188 feel the beat down 2 +25963 1188 the beat down 2 +25964 1188 the beat 2 +25965 1188 to your toes 2 +25966 1188 your toes 2 +25967 1188 toes 2 +25968 1189 Even bigger and more ambitious than the first installment , Spy Kids 2 looks as if it were made by a highly gifted 12-year-old instead of a grown man . 1 +25969 1189 Even bigger and more ambitious than the first installment 3 +25970 1189 bigger and more ambitious than the first installment 3 +25971 1189 bigger and more ambitious 2 +25972 1189 bigger and 2 +25973 1189 more ambitious 3 +25974 1189 than the first installment 2 +25975 1189 the first installment 2 +25976 1189 first installment 2 +25977 1189 , Spy Kids 2 looks as if it were made by a highly gifted 12-year-old instead of a grown man . 0 +25978 1189 Spy Kids 2 looks as if it were made by a highly gifted 12-year-old instead of a grown man . 1 +25979 1189 Spy Kids 2 2 +25980 1189 Spy 2 +25981 1189 Kids 2 2 +25982 1189 looks as if it were made by a highly gifted 12-year-old instead of a grown man . 1 +25983 1189 looks as if it were made by a highly gifted 12-year-old instead of a grown man 1 +25984 1189 as if it were made by a highly gifted 12-year-old instead of a grown man 2 +25985 1189 if it were made by a highly gifted 12-year-old instead of a grown man 2 +25986 1189 it were made by a highly gifted 12-year-old instead of a grown man 2 +25987 1189 were made by a highly gifted 12-year-old instead of a grown man 1 +25988 1189 made by a highly gifted 12-year-old instead of a grown man 2 +25989 1189 by a highly gifted 12-year-old instead of a grown man 2 +25990 1189 a highly gifted 12-year-old instead of a grown man 3 +25991 1189 a highly gifted 12-year-old 3 +25992 1189 highly gifted 12-year-old 3 +25993 1189 gifted 12-year-old 2 +25994 1189 12-year-old 2 +25995 1189 instead of a grown man 2 +25996 1189 of a grown man 2 +25997 1189 a grown man 2 +25998 1189 grown man 2 +25999 1190 The leads are so unmemorable , despite several attempts at lengthy dialogue scenes , that one eventually resents having to inhale this gutter romancer 's secondhand material . 0 +26000 1190 The leads 2 +26001 1190 are so unmemorable , despite several attempts at lengthy dialogue scenes , that one eventually resents having to inhale this gutter romancer 's secondhand material . 0 +26002 1190 are so unmemorable , despite several attempts at lengthy dialogue scenes , that one eventually resents having to inhale this gutter romancer 's secondhand material 0 +26003 1190 are so unmemorable , despite several attempts at lengthy dialogue scenes , 0 +26004 1190 are so unmemorable 1 +26005 1190 so unmemorable 1 +26006 1190 unmemorable 0 +26007 1190 , despite several attempts at lengthy dialogue scenes , 1 +26008 1190 despite several attempts at lengthy dialogue scenes , 2 +26009 1190 despite several attempts at lengthy dialogue scenes 1 +26010 1190 several attempts at lengthy dialogue scenes 1 +26011 1190 several attempts 2 +26012 1190 at lengthy dialogue scenes 1 +26013 1190 lengthy dialogue scenes 2 +26014 1190 lengthy 2 +26015 1190 dialogue scenes 2 +26016 1190 that one eventually resents having to inhale this gutter romancer 's secondhand material 1 +26017 1190 one eventually resents having to inhale this gutter romancer 's secondhand material 0 +26018 1190 eventually resents having to inhale this gutter romancer 's secondhand material 1 +26019 1190 resents having to inhale this gutter romancer 's secondhand material 1 +26020 1190 resents 2 +26021 1190 having to inhale this gutter romancer 's secondhand material 0 +26022 1190 to inhale this gutter romancer 's secondhand material 1 +26023 1190 inhale this gutter romancer 's secondhand material 0 +26024 1190 inhale 2 +26025 1190 this gutter romancer 's secondhand material 2 +26026 1190 this gutter romancer 's 1 +26027 1190 gutter romancer 's 1 +26028 1190 gutter 1 +26029 1190 romancer 's 2 +26030 1190 romancer 2 +26031 1190 secondhand material 0 +26032 1191 None of this has the suavity or classical familiarity of Bond , but much of it is good for a laugh . 2 +26033 1191 None of this has the suavity or classical familiarity of Bond , but much of it is good for a laugh 2 +26034 1191 None of this has the suavity or classical familiarity of Bond , but 1 +26035 1191 None of this has the suavity or classical familiarity of Bond , 2 +26036 1191 None of this has the suavity or classical familiarity of Bond 2 +26037 1191 has the suavity or classical familiarity of Bond 3 +26038 1191 the suavity or classical familiarity of Bond 2 +26039 1191 the suavity or classical familiarity 2 +26040 1191 suavity or classical familiarity 2 +26041 1191 suavity 3 +26042 1191 or classical familiarity 2 +26043 1191 classical familiarity 3 +26044 1191 classical 3 +26045 1191 of Bond 2 +26046 1191 much of it is good for a laugh 3 +26047 1191 much of it 2 +26048 1191 is good for a laugh 3 +26049 1191 good for a laugh 3 +26050 1191 for a laugh 3 +26051 1191 a laugh 3 +26052 1192 The heat of the moment prevails . 3 +26053 1192 The heat of the moment 3 +26054 1192 The heat 2 +26055 1192 of the moment 2 +26056 1192 the moment 2 +26057 1192 prevails . 2 +26058 1192 prevails 3 +26059 1193 Wait for it to hit cable . 2 +26060 1193 Wait for it to hit cable 2 +26061 1193 for it to hit cable 2 +26062 1193 it to hit cable 2 +26063 1193 to hit cable 3 +26064 1193 hit cable 2 +26065 1193 hit 3 +26066 1194 Bigelow handles the nuclear crisis sequences evenly but milks drama when she should be building suspense , and drags out too many scenes toward the end that should move quickly . 1 +26067 1194 handles the nuclear crisis sequences evenly but milks drama when she should be building suspense , and drags out too many scenes toward the end that should move quickly . 1 +26068 1194 handles the nuclear crisis sequences evenly but milks drama when she should be building suspense , and drags out too many scenes toward the end that should move quickly 0 +26069 1194 handles the nuclear crisis sequences evenly but milks drama when she should be building suspense , and 2 +26070 1194 handles the nuclear crisis sequences evenly but milks drama when she should be building suspense , 2 +26071 1194 handles the nuclear crisis sequences evenly but milks drama when she should be building suspense 2 +26072 1194 handles the nuclear crisis sequences evenly but 2 +26073 1194 handles the nuclear crisis sequences evenly 2 +26074 1194 handles the nuclear crisis sequences 2 +26075 1194 handles 2 +26076 1194 the nuclear crisis sequences 2 +26077 1194 nuclear crisis sequences 2 +26078 1194 nuclear 2 +26079 1194 crisis sequences 2 +26080 1194 evenly 2 +26081 1194 milks drama when she should be building suspense 1 +26082 1194 milks drama 2 +26083 1194 milks 2 +26084 1194 when she should be building suspense 1 +26085 1194 she should be building suspense 2 +26086 1194 should be building suspense 2 +26087 1194 be building suspense 3 +26088 1194 building suspense 2 +26089 1194 building 2 +26090 1194 drags out too many scenes toward the end that should move quickly 2 +26091 1194 drags out 1 +26092 1194 too many scenes toward the end that should move quickly 1 +26093 1194 too many scenes toward the end 1 +26094 1194 too many scenes 2 +26095 1194 toward the end 2 +26096 1194 that should move quickly 2 +26097 1194 should move quickly 2 +26098 1194 move quickly 2 +26099 1194 move 2 +26100 1195 -LRB- A -RRB- satisfying niblet . 3 +26101 1195 -LRB- A -RRB- satisfying niblet 3 +26102 1195 satisfying niblet 3 +26103 1195 niblet 2 +26104 1196 But they fascinate in their recklessness . 3 +26105 1196 they fascinate in their recklessness . 3 +26106 1196 fascinate in their recklessness . 2 +26107 1196 fascinate in their recklessness 3 +26108 1196 fascinate 3 +26109 1196 in their recklessness 1 +26110 1196 their recklessness 1 +26111 1197 If you have n't seen the film lately , you may be surprised at the variety of tones in Spielberg 's work . 3 +26112 1197 If you have n't seen the film lately 2 +26113 1197 you have n't seen the film lately 2 +26114 1197 have n't seen the film lately 2 +26115 1197 have n't 2 +26116 1197 seen the film lately 2 +26117 1197 seen the film 2 +26118 1197 lately 2 +26119 1197 , you may be surprised at the variety of tones in Spielberg 's work . 3 +26120 1197 you may be surprised at the variety of tones in Spielberg 's work . 3 +26121 1197 may be surprised at the variety of tones in Spielberg 's work . 3 +26122 1197 may be surprised at the variety of tones in Spielberg 's work 3 +26123 1197 be surprised at the variety of tones in Spielberg 's work 3 +26124 1197 surprised at the variety of tones in Spielberg 's work 4 +26125 1197 surprised 3 +26126 1197 at the variety of tones in Spielberg 's work 3 +26127 1197 the variety of tones in Spielberg 's work 3 +26128 1197 the variety 2 +26129 1197 of tones in Spielberg 's work 2 +26130 1197 tones in Spielberg 's work 2 +26131 1197 in Spielberg 's work 2 +26132 1197 Spielberg 's work 2 +26133 1198 Me no lika da accents so good , but I thoroughly enjoyed the love story . 3 +26134 1198 Me no lika da accents so good , but I thoroughly enjoyed the love story 3 +26135 1198 Me no lika da accents so good , but 1 +26136 1198 Me no lika da accents so good , 1 +26137 1198 Me no lika da accents so good 0 +26138 1198 no lika da accents so good 1 +26139 1198 no lika da 1 +26140 1198 no lika 1 +26141 1198 lika 2 +26142 1198 da 2 +26143 1198 accents so good 3 +26144 1198 so good 4 +26145 1198 I thoroughly enjoyed the love story 4 +26146 1198 thoroughly enjoyed the love story 4 +26147 1198 enjoyed the love story 4 +26148 1198 the love story 2 +26149 1199 The movie 's biggest shocks come from seeing former nymphette Juliette Lewis playing a salt-of-the-earth mommy named Minnie and watching Slim travel incognito in a ridiculous wig no respectable Halloween costume shop would ever try to sell . 1 +26150 1199 The movie 's biggest shocks 2 +26151 1199 biggest shocks 2 +26152 1199 biggest 3 +26153 1199 come from seeing former nymphette Juliette Lewis playing a salt-of-the-earth mommy named Minnie and watching Slim travel incognito in a ridiculous wig no respectable Halloween costume shop would ever try to sell . 1 +26154 1199 come from seeing former nymphette Juliette Lewis playing a salt-of-the-earth mommy named Minnie and watching Slim travel incognito in a ridiculous wig no respectable Halloween costume shop would ever try to sell 1 +26155 1199 from seeing former nymphette Juliette Lewis playing a salt-of-the-earth mommy named Minnie and watching Slim travel incognito in a ridiculous wig no respectable Halloween costume shop would ever try to sell 1 +26156 1199 seeing former nymphette Juliette Lewis playing a salt-of-the-earth mommy named Minnie and watching Slim travel incognito in a ridiculous wig no respectable Halloween costume shop would ever try to sell 1 +26157 1199 seeing former nymphette Juliette Lewis playing a salt-of-the-earth mommy named Minnie and 2 +26158 1199 seeing former nymphette Juliette Lewis playing a salt-of-the-earth mommy named Minnie 2 +26159 1199 seeing former nymphette Juliette Lewis 2 +26160 1199 former nymphette Juliette Lewis 2 +26161 1199 nymphette Juliette Lewis 2 +26162 1199 nymphette 2 +26163 1199 Juliette Lewis 2 +26164 1199 Juliette 2 +26165 1199 playing a salt-of-the-earth mommy named Minnie 2 +26166 1199 a salt-of-the-earth mommy named Minnie 2 +26167 1199 a salt-of-the-earth mommy 2 +26168 1199 salt-of-the-earth mommy 2 +26169 1199 salt-of-the-earth 2 +26170 1199 mommy 2 +26171 1199 named Minnie 2 +26172 1199 named 2 +26173 1199 Minnie 2 +26174 1199 watching Slim travel incognito in a ridiculous wig no respectable Halloween costume shop would ever try to sell 1 +26175 1199 Slim travel incognito in a ridiculous wig no respectable Halloween costume shop would ever try to sell 1 +26176 1199 Slim travel incognito 2 +26177 1199 Slim 2 +26178 1199 travel incognito 2 +26179 1199 travel 2 +26180 1199 incognito 2 +26181 1199 in a ridiculous wig no respectable Halloween costume shop would ever try to sell 1 +26182 1199 a ridiculous wig no respectable Halloween costume shop would ever try to sell 1 +26183 1199 a ridiculous wig 1 +26184 1199 ridiculous wig 1 +26185 1199 wig 2 +26186 1199 no respectable Halloween costume shop would ever try to sell 1 +26187 1199 no respectable Halloween costume shop 2 +26188 1199 respectable Halloween costume shop 2 +26189 1199 Halloween costume shop 2 +26190 1199 costume shop 2 +26191 1199 shop 2 +26192 1199 would ever try to sell 2 +26193 1199 would ever 2 +26194 1199 try to sell 2 +26195 1199 to sell 2 +26196 1200 A timid , soggy near miss . 1 +26197 1200 A timid , soggy near miss 1 +26198 1200 A timid , 2 +26199 1200 A timid 2 +26200 1200 timid 1 +26201 1200 soggy near miss 2 +26202 1200 soggy 2 +26203 1200 near miss 1 +26204 1201 hard as this may be to believe , Here on Earth , a surprisingly similar teen drama , was a better film . 1 +26205 1201 hard as this may be to believe 2 +26206 1201 as this may be to believe 2 +26207 1201 this may be to believe 2 +26208 1201 may be to believe 2 +26209 1201 be to believe 2 +26210 1201 to believe 2 +26211 1201 , Here on Earth , a surprisingly similar teen drama , was a better film . 2 +26212 1201 Here on Earth , a surprisingly similar teen drama , was a better film . 2 +26213 1201 Here on Earth , a surprisingly similar teen drama , 2 +26214 1201 Here on Earth , a surprisingly similar teen drama 2 +26215 1201 Here on Earth , 2 +26216 1201 Here on Earth 2 +26217 1201 on Earth 2 +26218 1201 a surprisingly similar teen drama 2 +26219 1201 surprisingly similar teen drama 2 +26220 1201 surprisingly similar 1 +26221 1201 similar 2 +26222 1201 teen drama 2 +26223 1201 was a better film . 2 +26224 1201 was a better film 3 +26225 1201 a better film 4 +26226 1201 better film 3 +26227 1202 It 's far from a frothy piece , and the characters are complex , laden with plenty of baggage and tinged with tragic undertones . 3 +26228 1202 It 's far from a frothy piece , and the characters are complex , laden with plenty of baggage and tinged with tragic undertones 3 +26229 1202 It 's far from a frothy piece , and 2 +26230 1202 It 's far from a frothy piece , 2 +26231 1202 It 's far from a frothy piece 2 +26232 1202 's far from a frothy piece 3 +26233 1202 's far 2 +26234 1202 from a frothy piece 2 +26235 1202 a frothy piece 2 +26236 1202 frothy piece 2 +26237 1202 frothy 2 +26238 1202 the characters are complex , laden with plenty of baggage and tinged with tragic undertones 3 +26239 1202 are complex , laden with plenty of baggage and tinged with tragic undertones 3 +26240 1202 complex , laden with plenty of baggage and tinged with tragic undertones 3 +26241 1202 complex , laden with plenty of baggage and 1 +26242 1202 complex , laden with plenty of baggage 2 +26243 1202 complex , 3 +26244 1202 laden with plenty of baggage 1 +26245 1202 laden 2 +26246 1202 with plenty of baggage 2 +26247 1202 plenty of baggage 1 +26248 1202 of baggage 2 +26249 1202 tinged with tragic undertones 1 +26250 1202 tinged 2 +26251 1202 with tragic undertones 2 +26252 1202 tragic undertones 2 +26253 1202 undertones 2 +26254 1203 The execution is so pedestrian that the most positive comment we can make is that Rob Schneider actually turns in a pretty convincing performance as a prissy teenage girl . 2 +26255 1203 is so pedestrian that the most positive comment we can make is that Rob Schneider actually turns in a pretty convincing performance as a prissy teenage girl . 0 +26256 1203 is so pedestrian that the most positive comment we can make is that Rob Schneider actually turns in a pretty convincing performance as a prissy teenage girl 1 +26257 1203 is so pedestrian 2 +26258 1203 so pedestrian 2 +26259 1203 pedestrian 3 +26260 1203 that the most positive comment we can make is that Rob Schneider actually turns in a pretty convincing performance as a prissy teenage girl 2 +26261 1203 the most positive comment we can make is that Rob Schneider actually turns in a pretty convincing performance as a prissy teenage girl 2 +26262 1203 the most positive comment we can make 3 +26263 1203 the most positive comment 2 +26264 1203 most positive comment 3 +26265 1203 most positive 3 +26266 1203 comment 2 +26267 1203 we can make 2 +26268 1203 can make 2 +26269 1203 is that Rob Schneider actually turns in a pretty convincing performance as a prissy teenage girl 3 +26270 1203 that Rob Schneider actually turns in a pretty convincing performance as a prissy teenage girl 3 +26271 1203 Rob Schneider actually turns in a pretty convincing performance as a prissy teenage girl 3 +26272 1203 Rob Schneider 2 +26273 1203 Rob 2 +26274 1203 Schneider 2 +26275 1203 actually turns in a pretty convincing performance as a prissy teenage girl 3 +26276 1203 turns in a pretty convincing performance as a prissy teenage girl 3 +26277 1203 in a pretty convincing performance as a prissy teenage girl 3 +26278 1203 a pretty convincing performance as a prissy teenage girl 3 +26279 1203 a pretty convincing performance 4 +26280 1203 pretty convincing performance 3 +26281 1203 pretty convincing 3 +26282 1203 as a prissy teenage girl 1 +26283 1203 a prissy teenage girl 2 +26284 1203 prissy teenage girl 2 +26285 1203 prissy 1 +26286 1203 teenage girl 2 +26287 1204 Watching E.T now , in an era dominated by cold , loud special-effects-laden extravaganzas , one is struck less by its lavish grandeur than by its intimacy and precision . 2 +26288 1204 Watching E.T now , in an era dominated by cold , loud special-effects-laden extravaganzas 2 +26289 1204 Watching E.T now , 2 +26290 1204 Watching E.T now 2 +26291 1204 Watching E.T 2 +26292 1204 E.T 2 +26293 1204 in an era dominated by cold , loud special-effects-laden extravaganzas 2 +26294 1204 an era dominated by cold , loud special-effects-laden extravaganzas 3 +26295 1204 dominated by cold , loud special-effects-laden extravaganzas 1 +26296 1204 dominated 3 +26297 1204 by cold , loud special-effects-laden extravaganzas 1 +26298 1204 cold , loud special-effects-laden extravaganzas 2 +26299 1204 , loud special-effects-laden extravaganzas 3 +26300 1204 loud special-effects-laden extravaganzas 3 +26301 1204 loud 2 +26302 1204 special-effects-laden extravaganzas 3 +26303 1204 special-effects-laden 2 +26304 1204 extravaganzas 2 +26305 1204 , one is struck less by its lavish grandeur than by its intimacy and precision . 4 +26306 1204 one is struck less by its lavish grandeur than by its intimacy and precision . 2 +26307 1204 is struck less by its lavish grandeur than by its intimacy and precision . 2 +26308 1204 is struck less by its lavish grandeur than by its intimacy and precision 3 +26309 1204 struck less by its lavish grandeur than by its intimacy and precision 3 +26310 1204 struck less by its lavish grandeur 3 +26311 1204 struck less 2 +26312 1204 struck 2 +26313 1204 by its lavish grandeur 3 +26314 1204 its lavish grandeur 4 +26315 1204 lavish grandeur 3 +26316 1204 than by its intimacy and precision 2 +26317 1204 by its intimacy and precision 3 +26318 1204 its intimacy and precision 3 +26319 1204 intimacy and precision 3 +26320 1204 intimacy and 2 +26321 1204 precision 3 +26322 1205 If you 're looking for a story , do n't bother . 1 +26323 1205 If you 're looking for a story 2 +26324 1205 you 're looking for a story 2 +26325 1205 're looking for a story 2 +26326 1205 looking for a story 1 +26327 1205 for a story 3 +26328 1205 , do n't bother . 0 +26329 1205 do n't bother . 2 +26330 1205 do n't bother 1 +26331 1205 bother 2 +26332 1206 The cast is spot on and the mood is laid back . 3 +26333 1206 The cast is spot on and the mood is laid back 3 +26334 1206 The cast is spot on and 3 +26335 1206 The cast is spot on 3 +26336 1206 is spot on 3 +26337 1206 is spot 3 +26338 1206 spot 3 +26339 1206 the mood is laid back 3 +26340 1206 is laid back 2 +26341 1206 laid back 3 +26342 1206 laid 2 +26343 1207 Absurdities and 2 +26344 1207 Absurdities 1 +26345 1207 accumulate like lint in a fat man 's navel . 1 +26346 1207 accumulate like lint in a fat man 's navel 1 +26347 1207 accumulate 2 +26348 1207 like lint in a fat man 's navel 0 +26349 1207 lint in a fat man 's navel 2 +26350 1207 in a fat man 's navel 1 +26351 1207 a fat man 's navel 1 +26352 1207 a fat man 's 2 +26353 1207 fat man 's 2 +26354 1207 navel 2 +26355 1208 A party-hearty teen flick that scalds like acid . 1 +26356 1208 A party-hearty teen 3 +26357 1208 party-hearty teen 2 +26358 1208 party-hearty 3 +26359 1208 flick that scalds like acid . 1 +26360 1208 flick that scalds like acid 0 +26361 1208 that scalds like acid 0 +26362 1208 scalds like acid 1 +26363 1208 scalds 2 +26364 1208 like acid 1 +26365 1208 acid 2 +26366 1209 A moving and stark reminder that the casualties of war reach much further than we imagine . 4 +26367 1209 A moving and stark reminder that the casualties of war 2 +26368 1209 A moving and stark reminder 3 +26369 1209 moving and stark reminder 3 +26370 1209 moving and stark 3 +26371 1209 moving and 2 +26372 1209 stark 2 +26373 1209 reminder 2 +26374 1209 that the casualties of war 2 +26375 1209 the casualties of war 2 +26376 1209 the casualties 2 +26377 1209 casualties 2 +26378 1209 of war 1 +26379 1209 reach much further than we imagine . 3 +26380 1209 reach much further than we imagine 3 +26381 1209 reach 2 +26382 1209 much further than we imagine 3 +26383 1209 much further 2 +26384 1209 than we imagine 2 +26385 1209 we imagine 2 +26386 1210 A so-so , made-for-TV something posing as a real movie . 0 +26387 1210 A so-so , made-for-TV something 2 +26388 1210 so-so , made-for-TV something 2 +26389 1210 so-so , made-for-TV 1 +26390 1210 , made-for-TV 2 +26391 1210 made-for-TV 1 +26392 1210 posing as a real movie . 0 +26393 1210 posing as a real movie 1 +26394 1210 posing 2 +26395 1210 as a real movie 3 +26396 1210 a real movie 3 +26397 1210 real movie 2 +26398 1211 Astonishing ... -LRB- frames -RRB- profound ethical and philosophical questions in the form of dazzling pop entertainment . 4 +26399 1211 Astonishing ... -LRB- frames -RRB- profound ethical and philosophical questions in the form of dazzling pop entertainment 3 +26400 1211 Astonishing ... 3 +26401 1211 -LRB- frames -RRB- profound ethical and philosophical questions in the form of dazzling pop entertainment 3 +26402 1211 frames -RRB- profound ethical and philosophical questions in the form of dazzling pop entertainment 4 +26403 1211 frames 2 +26404 1211 -RRB- profound ethical and philosophical questions in the form of dazzling pop entertainment 3 +26405 1211 profound ethical and philosophical questions in the form of dazzling pop entertainment 4 +26406 1211 profound ethical and philosophical questions 3 +26407 1211 ethical and philosophical questions 2 +26408 1211 ethical and philosophical 3 +26409 1211 ethical and 2 +26410 1211 ethical 2 +26411 1211 philosophical 3 +26412 1211 in the form of dazzling pop entertainment 3 +26413 1211 the form of dazzling pop entertainment 3 +26414 1211 the form 2 +26415 1211 of dazzling pop entertainment 4 +26416 1211 dazzling pop entertainment 3 +26417 1211 pop entertainment 2 +26418 1212 Fans of Plympton 's shorts may marginally enjoy the film , but it is doubtful this listless feature will win him any new viewers . 1 +26419 1212 Fans of Plympton 's shorts may marginally enjoy the film , but it is doubtful this listless feature will win him any new viewers 2 +26420 1212 Fans of Plympton 's shorts may marginally enjoy the film , but 1 +26421 1212 Fans of Plympton 's shorts may marginally enjoy the film , 3 +26422 1212 Fans of Plympton 's shorts may marginally enjoy the film 3 +26423 1212 Fans of Plympton 's shorts 2 +26424 1212 of Plympton 's shorts 2 +26425 1212 Plympton 's shorts 2 +26426 1212 Plympton 's 2 +26427 1212 Plympton 2 +26428 1212 shorts 2 +26429 1212 may marginally enjoy the film 3 +26430 1212 may marginally 2 +26431 1212 marginally 2 +26432 1212 enjoy the film 3 +26433 1212 it is doubtful this listless feature will win him any new viewers 1 +26434 1212 is doubtful this listless feature will win him any new viewers 1 +26435 1212 doubtful this listless feature will win him any new viewers 1 +26436 1212 doubtful 2 +26437 1212 this listless feature will win him any new viewers 1 +26438 1212 this listless feature 1 +26439 1212 listless feature 2 +26440 1212 will win him any new viewers 2 +26441 1212 win him any new viewers 2 +26442 1212 win him 2 +26443 1212 any new viewers 2 +26444 1212 new viewers 2 +26445 1213 The problem with The Bread , My Sweet is that it 's far too sentimental . 1 +26446 1213 The problem with The Bread , My Sweet 1 +26447 1213 The problem 2 +26448 1213 with The Bread , My Sweet 2 +26449 1213 The Bread , My Sweet 2 +26450 1213 The Bread , 3 +26451 1213 The Bread 2 +26452 1213 Bread 2 +26453 1213 My Sweet 2 +26454 1213 is that it 's far too sentimental . 1 +26455 1213 is that it 's far too sentimental 1 +26456 1213 that it 's far too sentimental 1 +26457 1213 it 's far too sentimental 2 +26458 1213 's far too sentimental 1 +26459 1213 far too sentimental 1 +26460 1213 too sentimental 2 +26461 1214 If you can tolerate the redneck-versus-blueblood cliches that the film trades in , Sweet Home Alabama is diverting in the manner of Jeff Foxworthy 's stand-up act . 2 +26462 1214 If you can tolerate the redneck-versus-blueblood cliches that the film trades in 1 +26463 1214 you can tolerate the redneck-versus-blueblood cliches that the film trades in 1 +26464 1214 can tolerate the redneck-versus-blueblood cliches that the film trades in 3 +26465 1214 tolerate the redneck-versus-blueblood cliches that the film trades in 1 +26466 1214 tolerate the redneck-versus-blueblood cliches 2 +26467 1214 the redneck-versus-blueblood cliches 2 +26468 1214 redneck-versus-blueblood cliches 2 +26469 1214 redneck-versus-blueblood 2 +26470 1214 that the film trades in 2 +26471 1214 the film trades in 2 +26472 1214 trades in 2 +26473 1214 trades 2 +26474 1214 , Sweet Home Alabama is diverting in the manner of Jeff Foxworthy 's stand-up act . 2 +26475 1214 Sweet Home Alabama is diverting in the manner of Jeff Foxworthy 's stand-up act . 2 +26476 1214 is diverting in the manner of Jeff Foxworthy 's stand-up act . 2 +26477 1214 is diverting in the manner of Jeff Foxworthy 's stand-up act 2 +26478 1214 diverting in the manner of Jeff Foxworthy 's stand-up act 2 +26479 1214 diverting 2 +26480 1214 in the manner of Jeff Foxworthy 's stand-up act 2 +26481 1214 the manner of Jeff Foxworthy 's stand-up act 2 +26482 1214 the manner 2 +26483 1214 of Jeff Foxworthy 's stand-up act 2 +26484 1214 Jeff Foxworthy 's stand-up act 2 +26485 1214 Jeff Foxworthy 's 2 +26486 1214 Jeff 2 +26487 1214 Foxworthy 's 2 +26488 1214 Foxworthy 2 +26489 1214 stand-up act 2 +26490 1215 Oh , look at that clever angle ! 3 +26491 1215 Oh 2 +26492 1215 , look at that clever angle ! 2 +26493 1215 look at that clever angle ! 4 +26494 1215 look at that clever angle 3 +26495 1215 at that clever angle 2 +26496 1215 that clever angle 3 +26497 1215 clever angle 3 +26498 1215 angle 2 +26499 1216 A crass and insulting homage to great films like Some Like It Hot and the John Wayne classics . 0 +26500 1216 A crass and insulting homage to great films 0 +26501 1216 A crass and insulting homage 1 +26502 1216 crass and insulting homage 0 +26503 1216 crass and insulting 1 +26504 1216 crass and 2 +26505 1216 to great films 2 +26506 1216 great films 3 +26507 1216 like Some Like It Hot and the John Wayne classics . 2 +26508 1216 like Some Like It Hot and the John Wayne classics 2 +26509 1216 like Some Like It 3 +26510 1216 Some Like It 3 +26511 1216 Like It 4 +26512 1216 Hot and the John Wayne classics 3 +26513 1216 Hot and 2 +26514 1216 the John Wayne classics 3 +26515 1216 John Wayne classics 2 +26516 1216 Wayne classics 2 +26517 1216 classics 2 +26518 1217 This version moves beyond the original 's nostalgia for the communal film experiences of yesteryear to a deeper realization of cinema 's inability to stand in for true , lived experience . 2 +26519 1217 This version 2 +26520 1217 moves beyond the original 's nostalgia for the communal film experiences of yesteryear to a deeper realization of cinema 's inability to stand in for true , lived experience . 4 +26521 1217 moves beyond the original 's nostalgia for the communal film experiences of yesteryear to a deeper realization of cinema 's inability to stand in for true , lived experience 2 +26522 1217 moves beyond the original 's nostalgia for the communal film experiences of yesteryear 3 +26523 1217 beyond the original 's nostalgia for the communal film experiences of yesteryear 3 +26524 1217 the original 's nostalgia for the communal film experiences of yesteryear 3 +26525 1217 the original 's nostalgia 2 +26526 1217 the original 's 3 +26527 1217 original 's 2 +26528 1217 for the communal film experiences of yesteryear 2 +26529 1217 the communal film experiences of yesteryear 2 +26530 1217 the communal film experiences 2 +26531 1217 communal film experiences 2 +26532 1217 communal 2 +26533 1217 film experiences 2 +26534 1217 of yesteryear 2 +26535 1217 yesteryear 2 +26536 1217 to a deeper realization of cinema 's inability to stand in for true , lived experience 2 +26537 1217 a deeper realization of cinema 's inability to stand in for true , lived experience 2 +26538 1217 a deeper realization 2 +26539 1217 deeper realization 3 +26540 1217 of cinema 's inability to stand in for true , lived experience 2 +26541 1217 cinema 's inability to stand in for true , lived experience 1 +26542 1217 inability to stand in for true , lived experience 1 +26543 1217 inability 2 +26544 1217 to stand in for true , lived experience 3 +26545 1217 stand in for true , lived experience 2 +26546 1217 stand in 2 +26547 1217 for true , lived experience 2 +26548 1217 true , lived experience 3 +26549 1217 , lived experience 2 +26550 1217 lived experience 2 +26551 1218 Since Lee is a sentimentalist , the film is more worshipful than your random E ! 2 +26552 1218 Since Lee is a sentimentalist 2 +26553 1218 Lee is a sentimentalist 2 +26554 1218 is a sentimentalist 2 +26555 1218 a sentimentalist 2 +26556 1218 sentimentalist 2 +26557 1218 , the film is more worshipful than your random E ! 2 +26558 1218 the film is more worshipful than your random E ! 1 +26559 1218 is more worshipful than your random E ! 2 +26560 1218 is more worshipful than your random E 3 +26561 1218 more worshipful than your random E 2 +26562 1218 worshipful than your random E 2 +26563 1218 than your random E 2 +26564 1218 your random E 2 +26565 1218 random E 2 +26566 1218 E 2 +26567 1219 I do n't know if Frailty will turn Bill Paxton into an A-list director , but he can rest contentedly with the knowledge that he 's made at least one damn fine horror movie . 3 +26568 1219 I do n't know if Frailty will turn Bill Paxton into an A-list director , but he can rest contentedly with the knowledge that he 's made at least one damn fine horror movie 4 +26569 1219 I do n't know if Frailty will turn Bill Paxton into an A-list director , but 3 +26570 1219 I do n't know if Frailty will turn Bill Paxton into an A-list director , 2 +26571 1219 I do n't know if Frailty will turn Bill Paxton into an A-list director 2 +26572 1219 do n't know if Frailty will turn Bill Paxton into an A-list director 1 +26573 1219 know if Frailty will turn Bill Paxton into an A-list director 2 +26574 1219 if Frailty will turn Bill Paxton into an A-list director 3 +26575 1219 Frailty will turn Bill Paxton into an A-list director 4 +26576 1219 will turn Bill Paxton into an A-list director 4 +26577 1219 turn Bill Paxton into an A-list director 3 +26578 1219 turn Bill Paxton 2 +26579 1219 Bill Paxton 2 +26580 1219 Bill 2 +26581 1219 Paxton 2 +26582 1219 into an A-list director 3 +26583 1219 an A-list director 3 +26584 1219 A-list director 3 +26585 1219 he can rest contentedly with the knowledge that he 's made at least one damn fine horror movie 4 +26586 1219 can rest contentedly with the knowledge that he 's made at least one damn fine horror movie 4 +26587 1219 rest contentedly with the knowledge that he 's made at least one damn fine horror movie 4 +26588 1219 rest contentedly with the knowledge 2 +26589 1219 rest contentedly 2 +26590 1219 contentedly 3 +26591 1219 with the knowledge 2 +26592 1219 the knowledge 2 +26593 1219 that he 's made at least one damn fine horror movie 4 +26594 1219 he 's made at least one damn fine horror movie 4 +26595 1219 's made at least one damn fine horror movie 3 +26596 1219 made at least one damn fine horror movie 4 +26597 1219 at least one damn fine horror movie 4 +26598 1219 at least one damn fine 3 +26599 1219 at least one 2 +26600 1219 damn fine 4 +26601 1219 horror movie 2 +26602 1220 This movie , a certain scene in particular , brought me uncomfortably close to losing my lunch . 0 +26603 1220 This movie , a certain scene in particular , 2 +26604 1220 This movie , a certain scene in particular 2 +26605 1220 This movie , 2 +26606 1220 a certain scene in particular 2 +26607 1220 a certain scene 2 +26608 1220 certain scene 2 +26609 1220 certain 3 +26610 1220 in particular 2 +26611 1220 brought me uncomfortably close to losing my lunch . 0 +26612 1220 brought me uncomfortably close to losing my lunch 0 +26613 1220 me uncomfortably close to losing my lunch 1 +26614 1220 uncomfortably close to losing my lunch 1 +26615 1220 uncomfortably 2 +26616 1220 close to losing my lunch 0 +26617 1220 to losing my lunch 0 +26618 1220 losing my lunch 0 +26619 1220 my lunch 2 +26620 1221 There 's a heavy stench of ` been there , done that ' hanging over the film . 1 +26621 1221 's a heavy stench of ` been there , done that ' hanging over the film . 1 +26622 1221 's a heavy stench of ` been there , done that ' hanging over the film 1 +26623 1221 a heavy stench of ` been there , done that ' hanging over the film 0 +26624 1221 a heavy stench of ` been there , done 1 +26625 1221 a heavy stench 1 +26626 1221 heavy stench 1 +26627 1221 stench 1 +26628 1221 of ` been there , done 2 +26629 1221 been there , done 1 +26630 1221 there , done 2 +26631 1221 , done 2 +26632 1221 that ' hanging over the film 2 +26633 1221 ' hanging over the film 1 +26634 1221 hanging over the film 2 +26635 1221 hanging 1 +26636 1221 over the film 2 +26637 1222 Only those most addicted to film violence in all its forms will find anything here to appreciate . 2 +26638 1222 Only those most addicted to film violence in all its forms 2 +26639 1222 Only those most addicted to film violence 1 +26640 1222 those most addicted to film violence 2 +26641 1222 most addicted to film violence 2 +26642 1222 most addicted to film 3 +26643 1222 most addicted 2 +26644 1222 addicted 1 +26645 1222 in all its forms 2 +26646 1222 all its forms 2 +26647 1222 its forms 2 +26648 1222 forms 2 +26649 1222 will find anything here to appreciate . 2 +26650 1222 will find anything here to appreciate 2 +26651 1222 find anything here to appreciate 2 +26652 1222 find anything here 2 +26653 1222 find anything 2 +26654 1223 The Santa Clause 2 's plot may sound like it was co-written by Mattel executives and lobbyists for the tinsel industry . 1 +26655 1223 The Santa Clause 2 's plot 2 +26656 1223 The Santa Clause 2 's 2 +26657 1223 Santa Clause 2 's 2 +26658 1223 Clause 2 's 2 +26659 1223 2 's 2 +26660 1223 may sound like it was co-written by Mattel executives and lobbyists for the tinsel industry . 1 +26661 1223 may sound like it was co-written by Mattel executives and lobbyists for the tinsel industry 1 +26662 1223 sound like it was co-written by Mattel executives and lobbyists for the tinsel industry 1 +26663 1223 like it was co-written by Mattel executives and lobbyists for the tinsel industry 1 +26664 1223 it was co-written by Mattel executives and lobbyists for the tinsel industry 1 +26665 1223 was co-written by Mattel executives and lobbyists for the tinsel industry 2 +26666 1223 was co-written by Mattel executives and lobbyists 2 +26667 1223 co-written by Mattel executives and lobbyists 2 +26668 1223 co-written 2 +26669 1223 by Mattel executives and lobbyists 2 +26670 1223 Mattel executives and lobbyists 2 +26671 1223 Mattel 3 +26672 1223 executives and lobbyists 2 +26673 1223 executives and 2 +26674 1223 executives 2 +26675 1223 lobbyists 2 +26676 1223 for the tinsel industry 2 +26677 1223 the tinsel industry 2 +26678 1223 tinsel industry 2 +26679 1223 tinsel 2 +26680 1224 An energizing , intoxicating documentary charting the rise of hip-hop culture in general and the art of scratching -LRB- or turntablism -RRB- in particular . 4 +26681 1224 An energizing , intoxicating documentary charting the rise of hip-hop culture in general and the art of scratching -LRB- or turntablism -RRB- in particular 3 +26682 1224 An energizing , 3 +26683 1224 An energizing 3 +26684 1224 energizing 4 +26685 1224 intoxicating documentary charting the rise of hip-hop culture in general and the art of scratching -LRB- or turntablism -RRB- in particular 3 +26686 1224 intoxicating documentary 3 +26687 1224 charting the rise of hip-hop culture in general and the art of scratching -LRB- or turntablism -RRB- in particular 3 +26688 1224 charting 2 +26689 1224 the rise of hip-hop culture in general and the art of scratching -LRB- or turntablism -RRB- in particular 2 +26690 1224 the rise 2 +26691 1224 rise 2 +26692 1224 of hip-hop culture in general and the art of scratching -LRB- or turntablism -RRB- in particular 2 +26693 1224 hip-hop culture in general and the art of scratching -LRB- or turntablism -RRB- in particular 2 +26694 1224 hip-hop culture in general and 2 +26695 1224 hip-hop culture in general 2 +26696 1224 hip-hop culture 2 +26697 1224 in general 2 +26698 1224 the art of scratching -LRB- or turntablism -RRB- in particular 2 +26699 1224 the art 2 +26700 1224 of scratching -LRB- or turntablism -RRB- in particular 2 +26701 1224 scratching -LRB- or turntablism -RRB- in particular 2 +26702 1224 scratching 2 +26703 1224 -LRB- or turntablism -RRB- in particular 2 +26704 1224 -LRB- or turntablism -RRB- 2 +26705 1224 or turntablism -RRB- 2 +26706 1224 or turntablism 2 +26707 1224 turntablism 3 +26708 1225 ... for all its social and political potential , State Property does n't end up being very inspiring or insightful . 1 +26709 1225 for all its social and political potential , State Property does n't end up being very inspiring or insightful . 1 +26710 1225 for all its social and political potential 2 +26711 1225 all its social and political potential 2 +26712 1225 its social and political potential 3 +26713 1225 social and political potential 3 +26714 1225 social and political 2 +26715 1225 social and 2 +26716 1225 , State Property does n't end up being very inspiring or insightful . 1 +26717 1225 State Property does n't end up being very inspiring or insightful . 1 +26718 1225 State Property 2 +26719 1225 does n't end up being very inspiring or insightful . 1 +26720 1225 does n't end up being very inspiring or insightful 1 +26721 1225 end up being very inspiring or insightful 2 +26722 1225 being very inspiring or insightful 3 +26723 1225 very inspiring or insightful 3 +26724 1225 inspiring or insightful 3 +26725 1225 inspiring or 2 +26726 1226 Instead of hitting the audience over the head with a moral , Schrader relies on subtle ironies and visual devices to convey point of view . 3 +26727 1226 Instead of hitting the audience over the head with a moral 2 +26728 1226 of hitting the audience over the head with a moral 2 +26729 1226 hitting the audience over the head with a moral 1 +26730 1226 hitting the audience 2 +26731 1226 over the head with a moral 3 +26732 1226 the head with a moral 2 +26733 1226 with a moral 3 +26734 1226 a moral 3 +26735 1226 , Schrader relies on subtle ironies and visual devices to convey point of view . 2 +26736 1226 Schrader relies on subtle ironies and visual devices to convey point of view . 3 +26737 1226 relies on subtle ironies and visual devices to convey point of view . 3 +26738 1226 relies on subtle ironies and visual devices to convey point of view 2 +26739 1226 relies on subtle ironies and visual devices 3 +26740 1226 relies 2 +26741 1226 on subtle ironies and visual devices 3 +26742 1226 subtle ironies and visual devices 3 +26743 1226 subtle ironies and 2 +26744 1226 subtle ironies 3 +26745 1226 ironies 2 +26746 1226 visual devices 2 +26747 1226 to convey point of view 2 +26748 1226 convey point of view 2 +26749 1226 point of view 2 +26750 1227 Compellingly watchable . 4 +26751 1227 Compellingly 3 +26752 1227 watchable . 3 +26753 1228 Other than the slightly flawed -LRB- and fairly unbelievable -RRB- finale , everything else is top shelf . 3 +26754 1228 Other than the slightly flawed -LRB- and fairly unbelievable -RRB- finale , everything else 2 +26755 1228 than the slightly flawed -LRB- and fairly unbelievable -RRB- finale , everything else 2 +26756 1228 the slightly flawed -LRB- and fairly unbelievable -RRB- finale , everything else 2 +26757 1228 the slightly flawed -LRB- and fairly unbelievable -RRB- finale , 1 +26758 1228 the slightly flawed -LRB- and fairly unbelievable -RRB- finale 1 +26759 1228 slightly flawed -LRB- and fairly unbelievable -RRB- finale 1 +26760 1228 slightly flawed 1 +26761 1228 -LRB- and fairly unbelievable -RRB- finale 1 +26762 1228 -LRB- and fairly unbelievable -RRB- 1 +26763 1228 -LRB- and fairly unbelievable 2 +26764 1228 fairly unbelievable 2 +26765 1228 unbelievable 3 +26766 1228 finale 2 +26767 1228 everything else 2 +26768 1228 is top shelf . 2 +26769 1228 is top shelf 3 +26770 1228 top shelf 3 +26771 1228 shelf 2 +26772 1229 This heist flick about young Brooklyn hoods is off the shelf after two years to capitalize on the popularity of Vin Diesel , Seth Green and Barry Pepper . 2 +26773 1229 This heist flick about young Brooklyn hoods 2 +26774 1229 This heist flick 2 +26775 1229 heist flick 2 +26776 1229 about young Brooklyn hoods 2 +26777 1229 young Brooklyn hoods 2 +26778 1229 Brooklyn hoods 2 +26779 1229 Brooklyn 2 +26780 1229 hoods 2 +26781 1229 is off the shelf after two years to capitalize on the popularity of Vin Diesel , Seth Green and Barry Pepper . 2 +26782 1229 is off the shelf after two years to capitalize on the popularity of Vin Diesel , Seth Green and Barry Pepper 2 +26783 1229 is off the shelf after two years 2 +26784 1229 off the shelf after two years 2 +26785 1229 off the shelf 3 +26786 1229 the shelf 2 +26787 1229 after two years 2 +26788 1229 two years 2 +26789 1229 to capitalize on the popularity of Vin Diesel , Seth Green and Barry Pepper 2 +26790 1229 capitalize on the popularity of Vin Diesel , Seth Green and Barry Pepper 2 +26791 1229 capitalize 2 +26792 1229 on the popularity of Vin Diesel , Seth Green and Barry Pepper 2 +26793 1229 the popularity of Vin Diesel , Seth Green and Barry Pepper 3 +26794 1229 the popularity 2 +26795 1229 popularity 2 +26796 1229 of Vin Diesel , Seth Green and Barry Pepper 2 +26797 1229 Vin Diesel , Seth Green and Barry Pepper 2 +26798 1229 Vin Diesel , Seth Green and 2 +26799 1229 Vin Diesel , Seth Green 2 +26800 1229 Vin Diesel , 2 +26801 1229 Vin Diesel 2 +26802 1229 Vin 2 +26803 1229 Diesel 2 +26804 1229 Seth Green 2 +26805 1229 Seth 2 +26806 1229 Barry Pepper 2 +26807 1229 Pepper 2 +26808 1230 The movie spends more time with Schneider than with newcomer McAdams , even though her performance is more interesting -LRB- and funnier -RRB- than his . 1 +26809 1230 spends more time with Schneider than with newcomer McAdams , even though her performance is more interesting -LRB- and funnier -RRB- than his . 2 +26810 1230 spends more time with Schneider than with newcomer McAdams , even though her performance is more interesting -LRB- and funnier -RRB- than his 2 +26811 1230 spends more time with Schneider than with newcomer McAdams , 2 +26812 1230 spends more time with Schneider than with newcomer McAdams 2 +26813 1230 spends more time with Schneider 2 +26814 1230 spends more time 2 +26815 1230 spends 2 +26816 1230 more time 2 +26817 1230 with Schneider 2 +26818 1230 than with newcomer McAdams 2 +26819 1230 with newcomer McAdams 2 +26820 1230 newcomer McAdams 2 +26821 1230 McAdams 2 +26822 1230 even though her performance is more interesting -LRB- and funnier -RRB- than his 3 +26823 1230 though her performance is more interesting -LRB- and funnier -RRB- than his 3 +26824 1230 her performance is more interesting -LRB- and funnier -RRB- than his 2 +26825 1230 her performance 2 +26826 1230 is more interesting -LRB- and funnier -RRB- than his 3 +26827 1230 is more interesting -LRB- and funnier -RRB- 3 +26828 1230 is more interesting 3 +26829 1230 more interesting 3 +26830 1230 -LRB- and funnier -RRB- 2 +26831 1230 -LRB- and funnier 3 +26832 1230 than his 2 +26833 1231 Certainly not a good movie , but it was n't horrible either . 1 +26834 1231 not a good movie , but it was n't horrible either . 2 +26835 1231 not a good movie 1 +26836 1231 a good movie 4 +26837 1231 good movie 3 +26838 1231 , but it was n't horrible either . 2 +26839 1231 but it was n't horrible either . 3 +26840 1231 but it was n't horrible either 3 +26841 1231 it was n't horrible either 3 +26842 1231 was n't horrible either 2 +26843 1231 horrible either 2 +26844 1232 Blisteringly rude , scarily funny , sorrowfully sympathetic to the damage it surveys , the film has in Kieran Culkin a pitch-perfect Holden . 4 +26845 1232 Blisteringly rude , scarily funny , sorrowfully sympathetic to the damage it surveys 2 +26846 1232 Blisteringly 2 +26847 1232 rude , scarily funny , sorrowfully sympathetic to the damage it surveys 3 +26848 1232 , scarily funny , sorrowfully sympathetic to the damage it surveys 3 +26849 1232 scarily funny , sorrowfully sympathetic to the damage it surveys 3 +26850 1232 scarily funny , sorrowfully sympathetic to the damage it 3 +26851 1232 scarily funny , sorrowfully sympathetic to the damage 2 +26852 1232 scarily funny , 3 +26853 1232 scarily funny 3 +26854 1232 scarily 2 +26855 1232 sorrowfully sympathetic to the damage 2 +26856 1232 sorrowfully 1 +26857 1232 sympathetic to the damage 2 +26858 1232 to the damage 2 +26859 1232 the damage 2 +26860 1232 surveys 2 +26861 1232 , the film has in Kieran Culkin a pitch-perfect Holden . 3 +26862 1232 the film has in Kieran Culkin a pitch-perfect Holden . 3 +26863 1232 has in Kieran Culkin a pitch-perfect Holden . 3 +26864 1232 has in Kieran Culkin a pitch-perfect Holden 2 +26865 1232 in Kieran Culkin a pitch-perfect Holden 2 +26866 1232 Kieran Culkin a pitch-perfect Holden 3 +26867 1232 Kieran Culkin 2 +26868 1232 Kieran 2 +26869 1232 Culkin 2 +26870 1232 a pitch-perfect Holden 3 +26871 1232 pitch-perfect Holden 3 +26872 1232 pitch-perfect 3 +26873 1232 Holden 2 +26874 1233 It is n't scary . 1 +26875 1233 is n't scary . 1 +26876 1233 is n't scary 1 +26877 1234 And it sees those relationships , including that between the son and his wife , and the wife and the father , and between the two brothers , with incredible subtlety and acumen . 3 +26878 1234 it sees those relationships , including that between the son and his wife , and the wife and the father , and between the two brothers , with incredible subtlety and acumen . 4 +26879 1234 sees those relationships , including that between the son and his wife , and the wife and the father , and between the two brothers , with incredible subtlety and acumen . 3 +26880 1234 sees those relationships , including that between the son and his wife , and the wife and the father , and between the two brothers , with incredible subtlety and acumen 3 +26881 1234 those relationships , including that between the son and his wife , and the wife and the father , and between the two brothers , with incredible subtlety and acumen 3 +26882 1234 those relationships , 2 +26883 1234 those relationships 2 +26884 1234 including that between the son and his wife , and the wife and the father , and between the two brothers , with incredible subtlety and acumen 3 +26885 1234 that between the son and his wife , and the wife and the father , and between the two brothers , with incredible subtlety and acumen 4 +26886 1234 that between the son and his wife , and the wife and the father , and between the two brothers , 3 +26887 1234 that between the son and his wife , and the wife and the father , and between the two brothers 3 +26888 1234 that between the son and his wife , and the wife and the father , and 2 +26889 1234 that between the son and his wife , and the wife and the father , 2 +26890 1234 that between the son and his wife , and the wife and the father 2 +26891 1234 that between the son and his wife , and 2 +26892 1234 that between the son and his wife , 2 +26893 1234 that between the son and his wife 2 +26894 1234 between the son and his wife 2 +26895 1234 the son and his wife 2 +26896 1234 the son and 2 +26897 1234 the son 2 +26898 1234 son 2 +26899 1234 his wife 2 +26900 1234 wife 2 +26901 1234 the wife and the father 2 +26902 1234 the wife and 2 +26903 1234 the wife 2 +26904 1234 the father 2 +26905 1234 between the two brothers 2 +26906 1234 the two brothers 2 +26907 1234 two brothers 2 +26908 1234 with incredible subtlety and acumen 3 +26909 1234 incredible subtlety and acumen 3 +26910 1234 subtlety and acumen 3 +26911 1234 subtlety and 2 +26912 1234 acumen 3 +26913 1235 Like a fish that 's lived too long , Austin Powers in Goldmember has some unnecessary parts and is kinda wrong in places . 1 +26914 1235 Like a fish that 's lived too long 1 +26915 1235 a fish that 's lived too long 1 +26916 1235 a fish 2 +26917 1235 that 's lived too long 1 +26918 1235 's lived too long 2 +26919 1235 lived too long 2 +26920 1235 , Austin Powers in Goldmember has some unnecessary parts and is kinda wrong in places . 1 +26921 1235 Austin Powers in Goldmember has some unnecessary parts and is kinda wrong in places . 1 +26922 1235 has some unnecessary parts and is kinda wrong in places . 2 +26923 1235 has some unnecessary parts and is kinda wrong in places 1 +26924 1235 has some unnecessary parts and 1 +26925 1235 has some unnecessary parts 1 +26926 1235 some unnecessary parts 1 +26927 1235 unnecessary parts 2 +26928 1235 is kinda wrong in places 1 +26929 1235 kinda wrong in places 1 +26930 1235 kinda wrong 1 +26931 1236 Grant is n't Cary and Bullock is n't Katherine . 1 +26932 1236 Grant is n't Cary and Bullock is n't Katherine 1 +26933 1236 Grant is n't Cary and 2 +26934 1236 Grant is n't Cary 2 +26935 1236 is n't Cary 2 +26936 1236 Cary 2 +26937 1236 Bullock is n't Katherine 2 +26938 1236 is n't Katherine 2 +26939 1236 Katherine 2 +26940 1237 A seriocomic debut of extravagant promise by Georgian-Israeli director Dover Kosashvili . 3 +26941 1237 A seriocomic debut of extravagant 2 +26942 1237 A seriocomic debut 2 +26943 1237 seriocomic debut 2 +26944 1237 seriocomic 2 +26945 1237 of extravagant 3 +26946 1237 promise by Georgian-Israeli director Dover Kosashvili . 2 +26947 1237 promise by Georgian-Israeli director Dover Kosashvili 3 +26948 1237 by Georgian-Israeli director Dover Kosashvili 2 +26949 1237 Georgian-Israeli director Dover Kosashvili 2 +26950 1237 Georgian-Israeli 2 +26951 1237 director Dover Kosashvili 2 +26952 1237 Dover Kosashvili 2 +26953 1237 Dover 2 +26954 1237 Kosashvili 2 +26955 1238 -LRB- It 's -RRB- a clever thriller with enough unexpected twists to keep our interest . 3 +26956 1238 It 's -RRB- a clever thriller with enough unexpected twists to keep our interest . 4 +26957 1238 's -RRB- a clever thriller with enough unexpected twists to keep our interest . 3 +26958 1238 's -RRB- a clever thriller with enough unexpected twists to keep our interest 3 +26959 1238 a clever thriller with enough unexpected twists to keep our interest 4 +26960 1238 a clever 3 +26961 1238 thriller with enough unexpected twists to keep our interest 4 +26962 1238 thriller with enough unexpected twists 3 +26963 1238 with enough unexpected twists 3 +26964 1238 enough unexpected twists 2 +26965 1238 unexpected twists 3 +26966 1238 to keep our interest 3 +26967 1238 keep our interest 3 +26968 1238 our interest 2 +26969 1239 If you 're not a fan , it might be like trying to eat Brussels sprouts . 1 +26970 1239 If you 're not a fan 2 +26971 1239 you 're not a fan 1 +26972 1239 're not a fan 2 +26973 1239 a fan 3 +26974 1239 , it might be like trying to eat Brussels sprouts . 1 +26975 1239 it might be like trying to eat Brussels sprouts . 1 +26976 1239 might be like trying to eat Brussels sprouts . 1 +26977 1239 might be like trying to eat Brussels sprouts 1 +26978 1239 be like trying to eat Brussels sprouts 1 +26979 1239 like trying to eat Brussels sprouts 1 +26980 1239 trying to eat Brussels sprouts 2 +26981 1239 to eat Brussels sprouts 2 +26982 1239 eat Brussels sprouts 2 +26983 1239 eat 2 +26984 1239 Brussels sprouts 2 +26985 1239 Brussels 3 +26986 1239 sprouts 2 +26987 1240 The movie eventually snaps under the strain of its plot contrivances and its need to reassure . 1 +26988 1240 eventually snaps under the strain of its plot contrivances and its need to reassure . 2 +26989 1240 snaps under the strain of its plot contrivances and its need to reassure . 1 +26990 1240 snaps under the strain of its plot contrivances and its need to reassure 1 +26991 1240 snaps 2 +26992 1240 under the strain of its plot contrivances and its need to reassure 1 +26993 1240 the strain of its plot contrivances and its need to reassure 1 +26994 1240 the strain of its plot contrivances and 1 +26995 1240 the strain of its plot contrivances 1 +26996 1240 the strain 2 +26997 1240 strain 1 +26998 1240 of its plot contrivances 1 +26999 1240 its plot contrivances 1 +27000 1240 plot contrivances 1 +27001 1240 contrivances 2 +27002 1240 its need to reassure 1 +27003 1240 need to reassure 2 +27004 1240 to reassure 2 +27005 1240 reassure 2 +27006 1241 Maelstrom is strange and compelling , engrossing and different , a moral tale with a twisted sense of humor . 4 +27007 1241 Maelstrom is strange and compelling , engrossing and different , a moral tale with a twisted sense of humor 3 +27008 1241 Maelstrom is strange and compelling , engrossing and different , 4 +27009 1241 Maelstrom is strange and compelling , engrossing and different 4 +27010 1241 Maelstrom is strange and compelling , 3 +27011 1241 Maelstrom is strange and compelling 3 +27012 1241 is strange and compelling 3 +27013 1241 strange and compelling 3 +27014 1241 strange and 2 +27015 1241 engrossing and different 3 +27016 1241 engrossing and 2 +27017 1241 a moral tale with a twisted sense of humor 3 +27018 1241 a moral tale 3 +27019 1241 moral tale 2 +27020 1241 with a twisted sense of humor 3 +27021 1241 a twisted sense of humor 3 +27022 1241 a twisted sense 3 +27023 1241 twisted sense 1 +27024 1242 A touching , small-scale story of family responsibility and care in the community . 3 +27025 1242 A touching , small-scale story of family responsibility and care in the community 4 +27026 1242 A touching , small-scale story of family responsibility and care 3 +27027 1242 A touching , small-scale story 3 +27028 1242 touching , small-scale story 3 +27029 1242 , small-scale story 2 +27030 1242 small-scale story 2 +27031 1242 small-scale 2 +27032 1242 of family responsibility and care 2 +27033 1242 family responsibility and care 3 +27034 1242 responsibility and care 2 +27035 1242 responsibility and 2 +27036 1242 responsibility 2 +27037 1242 in the community 2 +27038 1242 the community 3 +27039 1243 Boasts eye-catching art direction but has a forcefully quirky tone that quickly wears out its limited welcome . 1 +27040 1243 Boasts 2 +27041 1243 eye-catching art direction but has a forcefully quirky tone that quickly wears out its limited welcome . 2 +27042 1243 eye-catching art direction but has a forcefully quirky tone that quickly wears out its limited welcome 2 +27043 1243 eye-catching art direction but 2 +27044 1243 eye-catching art direction 3 +27045 1243 eye-catching 4 +27046 1243 has a forcefully quirky tone that quickly wears out its limited welcome 1 +27047 1243 a forcefully quirky tone that quickly wears out its limited welcome 1 +27048 1243 a forcefully quirky tone 2 +27049 1243 forcefully quirky tone 2 +27050 1243 forcefully 2 +27051 1243 quirky tone 2 +27052 1243 that quickly wears out its limited welcome 1 +27053 1243 quickly wears out its limited welcome 1 +27054 1243 wears out its limited welcome 1 +27055 1243 its limited welcome 2 +27056 1243 limited welcome 2 +27057 1244 This is a smart movie that knows its classical music , knows its Freud and knows its Sade . 3 +27058 1244 is a smart movie that knows its classical music , knows its Freud and knows its Sade . 3 +27059 1244 is a smart movie that knows its classical music , knows its Freud and knows its Sade 4 +27060 1244 a smart movie that knows its classical music , knows its Freud and knows its Sade 4 +27061 1244 a smart movie 4 +27062 1244 smart movie 3 +27063 1244 that knows its classical music , knows its Freud and knows its Sade 2 +27064 1244 knows its classical music , knows its Freud and knows its Sade 3 +27065 1244 knows its classical music , knows its Freud and 3 +27066 1244 knows its classical music , knows its Freud 2 +27067 1244 knows its classical music , 3 +27068 1244 knows its classical music 3 +27069 1244 its classical music 3 +27070 1244 classical music 2 +27071 1244 knows its Freud 2 +27072 1244 its Freud 2 +27073 1244 Freud 2 +27074 1244 knows its Sade 2 +27075 1244 its Sade 2 +27076 1244 Sade 2 +27077 1245 Kinnear ... gives his best screen performance with an oddly winning portrayal of one of life 's ultimate losers . 4 +27078 1245 Kinnear 2 +27079 1245 ... gives his best screen performance with an oddly winning portrayal of one of life 's ultimate losers . 3 +27080 1245 gives his best screen performance with an oddly winning portrayal of one of life 's ultimate losers . 3 +27081 1245 gives his best screen performance with an oddly winning portrayal of one of life 's ultimate losers 4 +27082 1245 gives his best screen performance 4 +27083 1245 gives his best screen 3 +27084 1245 his best screen 3 +27085 1245 best screen 3 +27086 1245 with an oddly winning portrayal of one of life 's ultimate losers 2 +27087 1245 an oddly winning portrayal of one of life 's ultimate losers 3 +27088 1245 an oddly winning portrayal of one 3 +27089 1245 an oddly winning portrayal 3 +27090 1245 oddly winning portrayal 2 +27091 1245 winning portrayal 3 +27092 1245 portrayal 2 +27093 1245 of life 's ultimate losers 2 +27094 1245 life 's ultimate losers 1 +27095 1245 life 's 2 +27096 1245 ultimate losers 2 +27097 1245 losers 1 +27098 1246 Their work is fantastic . 4 +27099 1246 is fantastic . 4 +27100 1246 is fantastic 3 +27101 1246 fantastic 3 +27102 1247 As a movie , it never seems fresh and vital . 2 +27103 1247 As a movie 3 +27104 1247 , it never seems fresh and vital . 2 +27105 1247 it never seems fresh and vital . 1 +27106 1247 never seems fresh and vital . 1 +27107 1247 seems fresh and vital . 4 +27108 1247 seems fresh and vital 4 +27109 1247 fresh and vital 3 +27110 1247 fresh and 4 +27111 1247 vital 3 +27112 1248 Plodding , poorly written , murky and weakly acted , the picture feels as if everyone making it lost their movie mojo . 0 +27113 1248 , poorly written , murky and weakly acted , the picture feels as if everyone making it lost their movie mojo . 0 +27114 1248 poorly written , murky and weakly acted , the picture feels as if everyone making it lost their movie mojo . 1 +27115 1248 poorly written , murky and weakly acted 0 +27116 1248 poorly written 1 +27117 1248 , murky and weakly acted 1 +27118 1248 murky and weakly acted 2 +27119 1248 and weakly acted 1 +27120 1248 weakly acted 2 +27121 1248 weakly 2 +27122 1248 , the picture feels as if everyone making it lost their movie mojo . 0 +27123 1248 the picture feels as if everyone making it lost their movie mojo . 2 +27124 1248 feels as if everyone making it lost their movie mojo . 0 +27125 1248 feels as if everyone making it lost their movie mojo 1 +27126 1248 as if everyone making it lost their movie mojo 1 +27127 1248 if everyone making it lost their movie mojo 2 +27128 1248 everyone making it lost their movie mojo 2 +27129 1248 everyone making it 3 +27130 1248 lost their movie mojo 1 +27131 1248 their movie mojo 2 +27132 1248 movie mojo 2 +27133 1248 mojo 2 +27134 1249 With Notorious C.H.O. Cho proves she has the stuff to stand tall with Pryor , Carlin and Murphy . 3 +27135 1249 With Notorious 2 +27136 1249 Notorious 2 +27137 1249 C.H.O. Cho proves she has the stuff to stand tall with Pryor , Carlin and Murphy . 4 +27138 1249 C.H.O. Cho 2 +27139 1249 C.H.O. 2 +27140 1249 proves she has the stuff to stand tall with Pryor , Carlin and Murphy . 3 +27141 1249 proves she has the stuff to stand tall with Pryor , Carlin and Murphy 4 +27142 1249 she has the stuff to stand tall with Pryor , Carlin and Murphy 4 +27143 1249 has the stuff to stand tall with Pryor , Carlin and Murphy 3 +27144 1249 the stuff to stand tall with Pryor , Carlin and Murphy 3 +27145 1249 stuff to stand tall with Pryor , Carlin and Murphy 3 +27146 1249 to stand tall with Pryor , Carlin and Murphy 3 +27147 1249 stand tall with Pryor , Carlin and Murphy 3 +27148 1249 stand tall 3 +27149 1249 tall 2 +27150 1249 with Pryor , Carlin and Murphy 2 +27151 1249 Pryor , Carlin and Murphy 2 +27152 1249 , Carlin and Murphy 2 +27153 1249 Carlin and Murphy 2 +27154 1249 Carlin and 2 +27155 1249 Carlin 2 +27156 1249 Murphy 2 +27157 1250 near the end takes on a whole other meaning . 2 +27158 1250 near the end 2 +27159 1250 takes on a whole other meaning . 3 +27160 1250 takes on a whole other meaning 3 +27161 1250 on a whole other meaning 2 +27162 1250 a whole other meaning 2 +27163 1250 whole other meaning 2 +27164 1250 other meaning 2 +27165 1251 the script assumes that not only would subtlety be lost on the target audience , but that it 's also too stupid to realize that they 've already seen this exact same movie a hundred times 0 +27166 1251 assumes that not only would subtlety be lost on the target audience , but that it 's also too stupid to realize that they 've already seen this exact same movie a hundred times 0 +27167 1251 assumes 2 +27168 1251 that not only would subtlety be lost on the target audience , but that it 's also too stupid to realize that they 've already seen this exact same movie a hundred times 0 +27169 1251 that not only would subtlety be lost on the target audience , but 1 +27170 1251 that not only would subtlety be lost on the target audience , 1 +27171 1251 that not only would subtlety be lost on the target audience 1 +27172 1251 that not only 2 +27173 1251 would subtlety be lost on the target audience 1 +27174 1251 would subtlety 2 +27175 1251 be lost on the target audience 1 +27176 1251 lost on the target audience 1 +27177 1251 on the target audience 2 +27178 1251 the target audience 2 +27179 1251 that it 's also too stupid to realize that they 've already seen this exact same movie a hundred times 0 +27180 1251 it 's also too stupid to realize that they 've already seen this exact same movie a hundred times 0 +27181 1251 's also too stupid to realize that they 've already seen this exact same movie a hundred times 0 +27182 1251 's also too stupid 1 +27183 1251 too stupid 0 +27184 1251 to realize that they 've already seen this exact same movie a hundred times 1 +27185 1251 realize that they 've already seen this exact same movie a hundred times 0 +27186 1251 realize 2 +27187 1251 that they 've already seen this exact same movie a hundred times 1 +27188 1251 they 've already seen this exact same movie a hundred times 1 +27189 1251 've already seen this exact same movie a hundred times 0 +27190 1251 've already 2 +27191 1251 seen this exact same movie a hundred times 1 +27192 1251 seen this exact same movie 2 +27193 1251 this exact same movie 2 +27194 1251 exact same movie 2 +27195 1251 exact 2 +27196 1251 same movie 2 +27197 1251 a hundred times 2 +27198 1251 hundred times 2 +27199 1251 hundred 2 +27200 1252 ` Linklater fans , or pretentious types who want to appear avant-garde will suck up to this project ... ' 1 +27201 1252 Linklater fans , or pretentious types who want to appear avant-garde will suck up to this project ... ' 2 +27202 1252 Linklater fans , or pretentious types who want to appear avant-garde 2 +27203 1252 Linklater fans , or 2 +27204 1252 Linklater fans , 2 +27205 1252 Linklater 1 +27206 1252 fans , 2 +27207 1252 pretentious types who want to appear avant-garde 1 +27208 1252 pretentious types 1 +27209 1252 types 2 +27210 1252 who want to appear avant-garde 2 +27211 1252 want to appear avant-garde 2 +27212 1252 to appear avant-garde 2 +27213 1252 appear avant-garde 3 +27214 1252 will suck up to this project ... ' 2 +27215 1252 will suck up to this project ... 2 +27216 1252 will suck up to this project 2 +27217 1252 suck up to this project 2 +27218 1252 suck up 1 +27219 1252 to this project 2 +27220 1252 this project 2 +27221 1253 There is one surefire way to get a nomination for a best-foreign-film Oscar : Make a movie about whimsical folk who learn a nonchallenging , life-affirming lesson while walking around a foreign city with stunning architecture . 2 +27222 1253 is one surefire way to get a nomination for a best-foreign-film Oscar : Make a movie about whimsical folk who learn a nonchallenging , life-affirming lesson while walking around a foreign city with stunning architecture . 2 +27223 1253 is one surefire way to get a nomination for a best-foreign-film Oscar : Make a movie about whimsical folk who learn a nonchallenging , life-affirming lesson while walking around a foreign city with stunning architecture 2 +27224 1253 one surefire way to get a nomination for a best-foreign-film Oscar : Make a movie about whimsical folk who learn a nonchallenging , life-affirming lesson while walking around a foreign city with stunning architecture 3 +27225 1253 one surefire way 2 +27226 1253 surefire way 2 +27227 1253 surefire 2 +27228 1253 to get a nomination for a best-foreign-film Oscar : Make a movie about whimsical folk who learn a nonchallenging , life-affirming lesson while walking around a foreign city with stunning architecture 2 +27229 1253 get a nomination for a best-foreign-film Oscar : Make a movie about whimsical folk who learn a nonchallenging , life-affirming lesson while walking around a foreign city with stunning architecture 4 +27230 1253 a nomination for a best-foreign-film Oscar : Make a movie about whimsical folk who learn a nonchallenging , life-affirming lesson while walking around a foreign city with stunning architecture 3 +27231 1253 a nomination for a best-foreign-film Oscar : Make a movie about whimsical folk 2 +27232 1253 a nomination for a best-foreign-film Oscar : 4 +27233 1253 a nomination for a best-foreign-film Oscar 4 +27234 1253 a nomination 2 +27235 1253 nomination 2 +27236 1253 for a best-foreign-film Oscar 3 +27237 1253 a best-foreign-film Oscar 4 +27238 1253 best-foreign-film Oscar 4 +27239 1253 best-foreign-film 4 +27240 1253 Oscar 3 +27241 1253 Make a movie about whimsical folk 2 +27242 1253 a movie about whimsical folk 3 +27243 1253 about whimsical folk 3 +27244 1253 whimsical folk 2 +27245 1253 folk 2 +27246 1253 who learn a nonchallenging , life-affirming lesson while walking around a foreign city with stunning architecture 2 +27247 1253 learn a nonchallenging , life-affirming lesson while walking around a foreign city with stunning architecture 3 +27248 1253 learn a nonchallenging , life-affirming lesson 2 +27249 1253 learn 2 +27250 1253 a nonchallenging , life-affirming lesson 2 +27251 1253 nonchallenging , life-affirming lesson 2 +27252 1253 nonchallenging 1 +27253 1253 , life-affirming lesson 2 +27254 1253 life-affirming lesson 2 +27255 1253 life-affirming 3 +27256 1253 while walking around a foreign city with stunning architecture 2 +27257 1253 walking around a foreign city with stunning architecture 3 +27258 1253 walking around a foreign city 2 +27259 1253 walking around 2 +27260 1253 walking 2 +27261 1253 a foreign city 2 +27262 1253 foreign city 2 +27263 1253 with stunning architecture 4 +27264 1253 stunning architecture 2 +27265 1253 architecture 2 +27266 1254 It plods along methodically , somehow under the assumption that its `` dead wife communicating from beyond the grave '' framework is even remotely new or interesting . 1 +27267 1254 plods along methodically , somehow under the assumption that its `` dead wife communicating from beyond the grave '' framework is even remotely new or interesting . 1 +27268 1254 plods along methodically , somehow under the assumption that its `` dead wife communicating from beyond the grave '' framework is even remotely new or interesting 1 +27269 1254 plods along methodically , somehow under the assumption 2 +27270 1254 plods along methodically , somehow 2 +27271 1254 plods along methodically , 2 +27272 1254 plods along methodically 2 +27273 1254 plods along 2 +27274 1254 plods 2 +27275 1254 methodically 2 +27276 1254 under the assumption 2 +27277 1254 the assumption 2 +27278 1254 assumption 2 +27279 1254 that its `` dead wife communicating from beyond the grave '' framework is even remotely new or interesting 1 +27280 1254 its `` dead wife communicating from beyond the grave '' framework is even remotely new or interesting 1 +27281 1254 its `` dead wife communicating from beyond the grave '' framework 2 +27282 1254 its `` dead wife communicating 2 +27283 1254 `` dead wife communicating 2 +27284 1254 dead wife communicating 2 +27285 1254 wife communicating 2 +27286 1254 communicating 2 +27287 1254 from beyond the grave '' framework 2 +27288 1254 beyond the grave '' framework 2 +27289 1254 the grave '' framework 2 +27290 1254 grave '' framework 2 +27291 1254 grave 1 +27292 1254 '' framework 2 +27293 1254 framework 2 +27294 1254 is even remotely new or interesting 1 +27295 1254 is even 2 +27296 1254 remotely new or interesting 1 +27297 1254 remotely 2 +27298 1254 new or interesting 3 +27299 1254 new or 2 +27300 1255 LaBute ca n't avoid a fatal mistake in the modern era : He 's changed the male academic from a lower-class Brit to an American , a choice that upsets the novel 's exquisite balance and shreds the fabric of the film . 2 +27301 1255 LaBute ca n't avoid a fatal mistake in the modern era : He 's changed the male academic from a lower-class Brit to an American , a choice that upsets the novel 's exquisite balance and shreds the fabric of the film 1 +27302 1255 LaBute ca n't avoid a fatal mistake in the modern era : 1 +27303 1255 LaBute ca n't avoid a fatal mistake in the modern era 0 +27304 1255 ca n't avoid a fatal mistake in the modern era 2 +27305 1255 avoid a fatal mistake in the modern era 2 +27306 1255 avoid a fatal mistake 2 +27307 1255 a fatal mistake 1 +27308 1255 fatal mistake 1 +27309 1255 mistake 2 +27310 1255 in the modern era 2 +27311 1255 the modern era 2 +27312 1255 modern era 2 +27313 1255 He 's changed the male academic from a lower-class Brit to an American , a choice that upsets the novel 's exquisite balance and shreds the fabric of the film 1 +27314 1255 's changed the male academic from a lower-class Brit to an American , a choice that upsets the novel 's exquisite balance and shreds the fabric of the film 1 +27315 1255 changed the male academic from a lower-class Brit to an American , a choice that upsets the novel 's exquisite balance and shreds the fabric of the film 1 +27316 1255 changed the male academic from a lower-class Brit 2 +27317 1255 changed the male academic 2 +27318 1255 changed 2 +27319 1255 the male academic 2 +27320 1255 male academic 2 +27321 1255 academic 3 +27322 1255 from a lower-class Brit 2 +27323 1255 a lower-class Brit 2 +27324 1255 lower-class Brit 2 +27325 1255 Brit 2 +27326 1255 to an American , a choice that upsets the novel 's exquisite balance and shreds the fabric of the film 2 +27327 1255 an American , a choice that upsets the novel 's exquisite balance and shreds the fabric of the film 1 +27328 1255 an American , 3 +27329 1255 an American 3 +27330 1255 a choice that upsets the novel 's exquisite balance and shreds the fabric of the film 1 +27331 1255 a choice 2 +27332 1255 choice 2 +27333 1255 that upsets the novel 's exquisite balance and shreds the fabric of the film 1 +27334 1255 upsets the novel 's exquisite balance and shreds the fabric of the film 2 +27335 1255 upsets the novel 's exquisite balance and 1 +27336 1255 upsets the novel 's exquisite balance 2 +27337 1255 upsets 1 +27338 1255 the novel 's exquisite balance 2 +27339 1255 exquisite balance 3 +27340 1255 shreds the fabric of the film 1 +27341 1255 shreds 2 +27342 1255 the fabric of the film 3 +27343 1255 the fabric 2 +27344 1255 fabric 2 +27345 1256 A virtual roller-coaster ride of glamour and sleaze . 2 +27346 1256 A virtual roller-coaster ride of glamour and sleaze 3 +27347 1256 A virtual roller-coaster ride 2 +27348 1256 virtual roller-coaster ride 3 +27349 1256 virtual 2 +27350 1256 roller-coaster ride 3 +27351 1256 roller-coaster 2 +27352 1256 of glamour and sleaze 2 +27353 1256 glamour and sleaze 2 +27354 1256 glamour and 2 +27355 1256 glamour 3 +27356 1256 sleaze 1 +27357 1257 Mostly the film is just hectic and homiletic : two parts exhausting Men in Black mayhem to one part family values . 2 +27358 1257 the film is just hectic and homiletic : two parts exhausting Men in Black mayhem to one part family values . 1 +27359 1257 is just hectic and homiletic : two parts exhausting Men in Black mayhem to one part family values . 2 +27360 1257 is just hectic and homiletic : two parts exhausting Men in Black mayhem to one part family values 1 +27361 1257 is just hectic and homiletic : 2 +27362 1257 is just hectic and homiletic 1 +27363 1257 just hectic and homiletic 1 +27364 1257 hectic and homiletic 2 +27365 1257 hectic and 2 +27366 1257 hectic 2 +27367 1257 homiletic 2 +27368 1257 two parts exhausting Men in Black mayhem to one part family values 2 +27369 1257 two parts 2 +27370 1257 exhausting Men in Black mayhem to one part family values 2 +27371 1257 exhausting Men in Black mayhem 2 +27372 1257 exhausting 2 +27373 1257 Men in Black mayhem 2 +27374 1257 in Black mayhem 2 +27375 1257 Black mayhem 2 +27376 1257 mayhem 2 +27377 1257 to one part family values 2 +27378 1257 one part family values 2 +27379 1257 part family values 2 +27380 1257 family values 3 +27381 1258 You might want to take a reality check before you pay the full ticket price to see `` Simone , '' and consider a DVD rental instead . 1 +27382 1258 might want to take a reality check before you pay the full ticket price to see `` Simone , '' and consider a DVD rental instead . 0 +27383 1258 might want to take a reality check before you pay the full ticket price to see `` Simone , '' and consider a DVD rental instead 1 +27384 1258 want to take a reality check before you pay the full ticket price to see `` Simone , '' and consider a DVD rental instead 1 +27385 1258 to take a reality check before you pay the full ticket price to see `` Simone , '' and consider a DVD rental instead 0 +27386 1258 take a reality check before you pay the full ticket price to see `` Simone , '' and consider a DVD rental instead 1 +27387 1258 take a reality check 2 +27388 1258 a reality check 2 +27389 1258 reality check 2 +27390 1258 before you pay the full ticket price to see `` Simone , '' and consider a DVD rental instead 1 +27391 1258 you pay the full ticket price to see `` Simone , '' and consider a DVD rental instead 1 +27392 1258 pay the full ticket price to see `` Simone , '' and consider a DVD rental instead 1 +27393 1258 the full ticket price to see `` Simone , '' and consider a DVD rental instead 1 +27394 1258 the full ticket price 2 +27395 1258 full ticket price 2 +27396 1258 ticket price 2 +27397 1258 to see `` Simone , '' and consider a DVD rental instead 2 +27398 1258 see `` Simone , '' and consider a DVD rental instead 1 +27399 1258 see `` Simone , '' and 2 +27400 1258 see `` Simone , '' 2 +27401 1258 `` Simone , '' 2 +27402 1258 Simone , '' 2 +27403 1258 Simone , 2 +27404 1258 Simone 2 +27405 1258 consider a DVD rental instead 1 +27406 1258 consider a DVD rental 2 +27407 1258 a DVD rental 2 +27408 1258 DVD rental 2 +27409 1258 rental 2 +27410 1259 About a Boy vividly recalls the Cary Grant of Room for One More , Houseboat and Father Goose in its affectionate depiction of the gentle war between a reluctant , irresponsible man and the kid who latches onto him . 2 +27411 1259 vividly recalls the Cary Grant of Room for One More , Houseboat and Father Goose in its affectionate depiction of the gentle war between a reluctant , irresponsible man and the kid who latches onto him . 3 +27412 1259 recalls the Cary Grant of Room for One More , Houseboat and Father Goose in its affectionate depiction of the gentle war between a reluctant , irresponsible man and the kid who latches onto him . 3 +27413 1259 recalls the Cary Grant of Room for One More , Houseboat and Father Goose in its affectionate depiction of the gentle war between a reluctant , irresponsible man and the kid who latches onto him 3 +27414 1259 recalls the Cary Grant of Room for One More , 2 +27415 1259 recalls the Cary Grant of Room for One More 2 +27416 1259 recalls the Cary Grant of Room 3 +27417 1259 recalls 1 +27418 1259 the Cary Grant of Room 2 +27419 1259 the Cary Grant 2 +27420 1259 Cary Grant 2 +27421 1259 of Room 2 +27422 1259 for One More 2 +27423 1259 Houseboat and Father Goose in its affectionate depiction of the gentle war between a reluctant , irresponsible man and the kid who latches onto him 3 +27424 1259 Houseboat and Father Goose 2 +27425 1259 Houseboat 2 +27426 1259 and Father Goose 2 +27427 1259 Father Goose 2 +27428 1259 in its affectionate depiction of the gentle war between a reluctant , irresponsible man and the kid who latches onto him 3 +27429 1259 its affectionate depiction of the gentle war between a reluctant , irresponsible man and the kid who latches onto him 2 +27430 1259 its affectionate depiction 3 +27431 1259 affectionate depiction 2 +27432 1259 of the gentle war between a reluctant , irresponsible man and the kid who latches onto him 2 +27433 1259 the gentle war between a reluctant , irresponsible man and the kid who latches onto him 2 +27434 1259 the gentle war 2 +27435 1259 gentle war 2 +27436 1259 between a reluctant , irresponsible man and the kid who latches onto him 2 +27437 1259 a reluctant , irresponsible man and the kid who latches onto him 1 +27438 1259 a reluctant , irresponsible man and 1 +27439 1259 a reluctant , irresponsible man 2 +27440 1259 reluctant , irresponsible man 1 +27441 1259 reluctant , irresponsible 1 +27442 1259 reluctant 1 +27443 1259 , irresponsible 1 +27444 1259 irresponsible 1 +27445 1259 the kid who latches onto him 2 +27446 1259 the kid 2 +27447 1259 who latches onto him 2 +27448 1259 latches onto him 2 +27449 1259 latches 2 +27450 1259 onto him 2 +27451 1259 onto 2 +27452 1260 ... a light , yet engrossing piece . 3 +27453 1260 a light , yet engrossing piece . 4 +27454 1260 a light , yet engrossing piece 3 +27455 1260 yet engrossing piece 4 +27456 1260 engrossing piece 3 +27457 1261 The problem is that it is one that allows him to churn out one mediocre movie after another . 0 +27458 1261 is that it is one that allows him to churn out one mediocre movie after another . 0 +27459 1261 is that it is one that allows him to churn out one mediocre movie after another 1 +27460 1261 that it is one that allows him to churn out one mediocre movie after another 1 +27461 1261 it is one that allows him to churn out one mediocre movie after another 1 +27462 1261 is one that allows him to churn out one mediocre movie after another 1 +27463 1261 one that allows him to churn out one mediocre movie after another 1 +27464 1261 that allows him to churn out one mediocre movie after another 1 +27465 1261 allows him to churn out one mediocre movie after another 1 +27466 1261 him to churn out one mediocre movie after another 0 +27467 1261 to churn out one mediocre movie after another 1 +27468 1261 churn out one mediocre movie after another 0 +27469 1261 churn out one mediocre movie 0 +27470 1261 churn out 2 +27471 1261 churn 2 +27472 1261 one mediocre movie 1 +27473 1261 mediocre movie 1 +27474 1261 after another 2 +27475 1262 unpretentious , charming , quirky , original 4 +27476 1262 unpretentious , 2 +27477 1262 unpretentious 4 +27478 1262 charming , quirky , original 4 +27479 1262 , quirky , original 3 +27480 1262 quirky , original 3 +27481 1262 , original 3 +27482 1263 Where Janice Beard falters in its recycled aspects , implausibility , and sags in pace , it rises in its courageousness , and comedic employment . 3 +27483 1263 Where Janice Beard falters in its recycled aspects , implausibility , and sags in pace 1 +27484 1263 Janice Beard falters in its recycled aspects , implausibility , and sags in pace 2 +27485 1263 Janice Beard 2 +27486 1263 Janice 2 +27487 1263 Beard 2 +27488 1263 falters in its recycled aspects , implausibility , and sags in pace 1 +27489 1263 in its recycled aspects , implausibility , and sags in pace 0 +27490 1263 its recycled aspects , implausibility , and sags in pace 0 +27491 1263 its recycled aspects , implausibility , and 0 +27492 1263 its recycled aspects , implausibility , 1 +27493 1263 its recycled aspects , implausibility 1 +27494 1263 its recycled aspects , 1 +27495 1263 its recycled aspects 1 +27496 1263 recycled aspects 2 +27497 1263 aspects 2 +27498 1263 implausibility 2 +27499 1263 sags in pace 1 +27500 1263 sags 1 +27501 1263 in pace 2 +27502 1263 pace 2 +27503 1263 , it rises in its courageousness , and comedic employment . 3 +27504 1263 it rises in its courageousness , and comedic employment . 3 +27505 1263 rises in its courageousness , and comedic employment . 4 +27506 1263 rises in its courageousness , and comedic employment 2 +27507 1263 in its courageousness , and comedic employment 3 +27508 1263 its courageousness , and comedic employment 3 +27509 1263 its courageousness , and 3 +27510 1263 its courageousness , 4 +27511 1263 its courageousness 4 +27512 1263 courageousness 3 +27513 1263 comedic employment 3 +27514 1263 employment 2 +27515 1264 The movie is as padded as Allen 's jelly belly . 1 +27516 1264 is as padded as Allen 's jelly belly . 1 +27517 1264 is as padded as Allen 's jelly belly 0 +27518 1264 as padded as Allen 's jelly belly 1 +27519 1264 padded as Allen 's jelly belly 2 +27520 1264 padded 1 +27521 1264 as Allen 's jelly belly 2 +27522 1264 Allen 's jelly belly 2 +27523 1264 jelly belly 2 +27524 1264 jelly 2 +27525 1264 belly 2 +27526 1265 A dazzling dream of a documentary . 4 +27527 1265 A dazzling dream of a documentary 4 +27528 1265 A dazzling dream 4 +27529 1265 dazzling dream 3 +27530 1265 of a documentary 2 +27531 1266 An intelligently made -LRB- and beautifully edited -RRB- picture that at the very least has a spark of life to it -- more than you can say for plenty of movies that flow through the Hollywood pipeline without a hitch . 4 +27532 1266 An intelligently made -LRB- and beautifully edited -RRB- 4 +27533 1266 An intelligently made 3 +27534 1266 An intelligently 2 +27535 1266 intelligently 3 +27536 1266 -LRB- and beautifully edited -RRB- 4 +27537 1266 -LRB- and beautifully edited 4 +27538 1266 beautifully edited 4 +27539 1266 edited 2 +27540 1266 picture that at the very least has a spark of life to it -- more than you can say for plenty of movies that flow through the Hollywood pipeline without a hitch . 3 +27541 1266 picture that at the very least has a spark of life to it -- more than you can say for plenty of movies that flow through the Hollywood pipeline without a hitch 3 +27542 1266 that at the very least has a spark of life to it -- more than you can say for plenty of movies that flow through the Hollywood pipeline without a hitch 3 +27543 1266 that at the very least 2 +27544 1266 has a spark of life to it -- more than you can say for plenty of movies that flow through the Hollywood pipeline without a hitch 3 +27545 1266 a spark of life to it -- more than you can say for plenty of movies that flow through the Hollywood pipeline without a hitch 3 +27546 1266 a spark of life to it -- 2 +27547 1266 a spark of life to it 2 +27548 1266 a spark 2 +27549 1266 of life to it 2 +27550 1266 life to it 2 +27551 1266 more than you can say for plenty of movies that flow through the Hollywood pipeline without a hitch 3 +27552 1266 than you can say for plenty of movies that flow through the Hollywood pipeline without a hitch 2 +27553 1266 you can say for plenty of movies that flow through the Hollywood pipeline without a hitch 2 +27554 1266 can say for plenty of movies that flow through the Hollywood pipeline without a hitch 2 +27555 1266 say for plenty of movies that flow through the Hollywood pipeline without a hitch 3 +27556 1266 say for plenty of movies 3 +27557 1266 for plenty of movies 2 +27558 1266 plenty of movies 2 +27559 1266 of movies 2 +27560 1266 that flow through the Hollywood pipeline without a hitch 3 +27561 1266 flow through the Hollywood pipeline without a hitch 3 +27562 1266 flow through the Hollywood pipeline 2 +27563 1266 flow 2 +27564 1266 through the Hollywood pipeline 2 +27565 1266 the Hollywood pipeline 2 +27566 1266 Hollywood pipeline 1 +27567 1266 pipeline 2 +27568 1266 without a hitch 2 +27569 1266 a hitch 2 +27570 1266 hitch 2 +27571 1267 The unexplored story opportunities of `` Punch-Drunk Love '' may have worked against the maker 's minimalist intent but it is an interesting exercise by talented writer\/director Anderson . 3 +27572 1267 The unexplored story opportunities of `` Punch-Drunk Love '' may have worked against the maker 's minimalist intent but it is an interesting exercise by talented writer\/director Anderson 2 +27573 1267 The unexplored story opportunities of `` Punch-Drunk Love '' may have worked against the maker 's minimalist intent but 2 +27574 1267 The unexplored story opportunities of `` Punch-Drunk Love '' may have worked against the maker 's minimalist intent 2 +27575 1267 The unexplored story opportunities of `` Punch-Drunk Love '' 2 +27576 1267 The unexplored story opportunities 3 +27577 1267 unexplored story opportunities 2 +27578 1267 unexplored 2 +27579 1267 story opportunities 2 +27580 1267 of `` Punch-Drunk Love '' 2 +27581 1267 of `` Punch-Drunk Love 2 +27582 1267 Punch-Drunk Love 2 +27583 1267 Punch-Drunk 2 +27584 1267 may have worked against the maker 's minimalist intent 2 +27585 1267 have worked against the maker 's minimalist intent 2 +27586 1267 worked against the maker 's minimalist intent 1 +27587 1267 worked 3 +27588 1267 against the maker 's minimalist intent 1 +27589 1267 the maker 's minimalist intent 2 +27590 1267 the maker 's 2 +27591 1267 maker 's 2 +27592 1267 maker 2 +27593 1267 minimalist intent 2 +27594 1267 intent 2 +27595 1267 it is an interesting exercise by talented writer\/director Anderson 3 +27596 1267 is an interesting exercise by talented writer\/director Anderson 3 +27597 1267 an interesting exercise by talented writer\/director Anderson 4 +27598 1267 an interesting exercise 3 +27599 1267 interesting exercise 2 +27600 1267 by talented writer\/director Anderson 4 +27601 1267 talented writer\/director Anderson 3 +27602 1267 writer\/director Anderson 2 +27603 1268 Aspires to the cracked lunacy of The Adventures of Buckaroo Banzai , but thanks to an astonishingly witless script ends up more like The Adventures of Ford Fairlane . 1 +27604 1268 Aspires to the cracked lunacy of The Adventures of Buckaroo Banzai , but thanks to an astonishingly witless script 1 +27605 1268 Aspires 2 +27606 1268 to the cracked lunacy of The Adventures of Buckaroo Banzai , but thanks to an astonishingly witless script 1 +27607 1268 the cracked lunacy of The Adventures of Buckaroo Banzai , but thanks to an astonishingly witless script 1 +27608 1268 the cracked lunacy of The Adventures of Buckaroo Banzai , but 2 +27609 1268 the cracked lunacy of The Adventures of Buckaroo Banzai , 2 +27610 1268 the cracked lunacy of The Adventures of Buckaroo Banzai 2 +27611 1268 the cracked lunacy of The Adventures 2 +27612 1268 the cracked lunacy 2 +27613 1268 cracked lunacy 1 +27614 1268 cracked 2 +27615 1268 of The Adventures 2 +27616 1268 The Adventures 2 +27617 1268 Adventures 2 +27618 1268 of Buckaroo Banzai 2 +27619 1268 Buckaroo Banzai 2 +27620 1268 Buckaroo 3 +27621 1268 Banzai 2 +27622 1268 thanks to an astonishingly witless script 1 +27623 1268 to an astonishingly witless script 2 +27624 1268 an astonishingly witless script 0 +27625 1268 astonishingly witless script 2 +27626 1268 astonishingly 3 +27627 1268 witless script 1 +27628 1268 witless 1 +27629 1268 ends up more like The Adventures of Ford Fairlane . 2 +27630 1268 ends up more like The Adventures of Ford Fairlane 2 +27631 1268 ends up more 2 +27632 1268 up more 2 +27633 1268 like The Adventures of Ford Fairlane 2 +27634 1268 The Adventures of Ford Fairlane 2 +27635 1268 of Ford Fairlane 2 +27636 1268 Ford Fairlane 2 +27637 1268 Ford 2 +27638 1268 Fairlane 2 +27639 1269 Mariah Carey gives us another peek at some of the magic we saw in Glitter here in Wisegirls . 3 +27640 1269 Mariah Carey 2 +27641 1269 Mariah 2 +27642 1269 Carey 2 +27643 1269 gives us another peek at some of the magic we saw in Glitter here in Wisegirls . 3 +27644 1269 gives us another peek at some of the magic we saw in Glitter here in Wisegirls 3 +27645 1269 another peek at some of the magic we saw in Glitter here in Wisegirls 3 +27646 1269 another peek 2 +27647 1269 at some of the magic we saw in Glitter here in Wisegirls 2 +27648 1269 some of the magic we saw in Glitter here in Wisegirls 3 +27649 1269 of the magic we saw in Glitter here in Wisegirls 2 +27650 1269 the magic we saw in Glitter here in Wisegirls 2 +27651 1269 the magic 2 +27652 1269 we saw in Glitter here in Wisegirls 2 +27653 1269 saw in Glitter here in Wisegirls 2 +27654 1269 saw in Glitter 2 +27655 1269 in Glitter 2 +27656 1269 Glitter 2 +27657 1269 here in Wisegirls 2 +27658 1269 in Wisegirls 2 +27659 1269 Wisegirls 2 +27660 1270 Rock solid family fun out of the gates , extremely imaginative through out , but wanes in the middle 3 +27661 1270 Rock solid family fun out of the gates , extremely imaginative through out 4 +27662 1270 Rock solid family fun out of the gates , 4 +27663 1270 Rock solid family fun out of the gates 3 +27664 1270 Rock solid family fun out 4 +27665 1270 Rock solid family fun 4 +27666 1270 solid family fun 3 +27667 1270 family fun 3 +27668 1270 of the gates 2 +27669 1270 the gates 2 +27670 1270 gates 3 +27671 1270 extremely imaginative through out 3 +27672 1270 imaginative through out 3 +27673 1270 imaginative 4 +27674 1270 through out 2 +27675 1270 , but wanes in the middle 1 +27676 1270 wanes in the middle 2 +27677 1270 in the middle 2 +27678 1271 Clever and unflinching in its comic barbs , Slap Her is a small but rewarding comedy that takes aim at contemporary southern adolescence and never lets up . 4 +27679 1271 Clever and unflinching in its comic barbs 3 +27680 1271 Clever and unflinching 4 +27681 1271 in its comic barbs 2 +27682 1271 its comic barbs 2 +27683 1271 comic barbs 3 +27684 1271 barbs 2 +27685 1271 , Slap Her is a small but rewarding comedy that takes aim at contemporary southern adolescence and never lets up . 3 +27686 1271 Slap Her is a small but rewarding comedy that takes aim at contemporary southern adolescence and never lets up . 3 +27687 1271 Slap Her 1 +27688 1271 is a small but rewarding comedy that takes aim at contemporary southern adolescence and never lets up . 3 +27689 1271 is a small but rewarding comedy that takes aim at contemporary southern adolescence and never lets up 2 +27690 1271 a small but rewarding comedy that takes aim at contemporary southern adolescence and never lets up 3 +27691 1271 a small but rewarding comedy 3 +27692 1271 small but rewarding comedy 3 +27693 1271 small but rewarding 3 +27694 1271 small but 2 +27695 1271 that takes aim at contemporary southern adolescence and never lets up 2 +27696 1271 takes aim at contemporary southern adolescence and never lets up 2 +27697 1271 takes aim at contemporary southern adolescence and never 2 +27698 1271 takes aim at contemporary southern adolescence and 2 +27699 1271 takes aim at contemporary southern adolescence 2 +27700 1271 at contemporary southern adolescence 2 +27701 1271 contemporary southern adolescence 3 +27702 1271 southern adolescence 2 +27703 1271 adolescence 2 +27704 1271 lets up 2 +27705 1272 The Scorpion King is more fun than Conan the Barbarian . 3 +27706 1272 The Scorpion King 2 +27707 1272 Scorpion King 2 +27708 1272 Scorpion 2 +27709 1272 is more fun than Conan the Barbarian . 4 +27710 1272 is more fun than Conan the Barbarian 3 +27711 1272 more fun than Conan the Barbarian 3 +27712 1272 more fun 2 +27713 1272 than Conan the Barbarian 2 +27714 1272 Conan the Barbarian 2 +27715 1272 Conan 2 +27716 1272 the Barbarian 2 +27717 1272 Barbarian 2 +27718 1273 Pedro Rodrigues ' 2 +27719 1273 Pedro 3 +27720 1273 Rodrigues ' 2 +27721 1273 Rodrigues 2 +27722 1273 unwillingness to define his hero 's background or motivations 1 +27723 1273 unwillingness 2 +27724 1273 to define his hero 's background or motivations 2 +27725 1273 define his hero 's background or motivations 2 +27726 1273 define 2 +27727 1273 his hero 's background or motivations 2 +27728 1273 his hero 's 2 +27729 1273 hero 's 2 +27730 1273 background or motivations 2 +27731 1273 background or 2 +27732 1273 motivations 2 +27733 1273 becomes more and more frustrating as the film goes on . 0 +27734 1273 becomes more and more frustrating as the film goes on 0 +27735 1273 becomes more and more frustrating 1 +27736 1273 more and more frustrating 1 +27737 1273 more and 2 +27738 1273 more frustrating 1 +27739 1273 as the film goes on 2 +27740 1273 the film goes on 2 +27741 1273 goes on 2 +27742 1274 A college story that works even without vulgarity , sex scenes , and cussing ! 3 +27743 1274 A college story that works even without vulgarity , sex scenes , and cussing 4 +27744 1274 A college story 2 +27745 1274 college story 2 +27746 1274 that works even without vulgarity , sex scenes , and cussing 3 +27747 1274 works even without vulgarity , sex scenes , and cussing 3 +27748 1274 works even 2 +27749 1274 without vulgarity , sex scenes , and cussing 3 +27750 1274 vulgarity , sex scenes , and cussing 1 +27751 1274 vulgarity , sex scenes , and 1 +27752 1274 vulgarity , sex scenes , 2 +27753 1274 vulgarity , sex scenes 1 +27754 1274 vulgarity , 2 +27755 1274 vulgarity 1 +27756 1274 cussing 1 +27757 1275 There are cheesy backdrops , ridiculous action sequences , and many tired jokes about men in heels . 0 +27758 1275 are cheesy backdrops , ridiculous action sequences , and many tired jokes about men in heels . 0 +27759 1275 are cheesy backdrops , ridiculous action sequences , and many tired jokes about men in heels 0 +27760 1275 cheesy backdrops , ridiculous action sequences , and many tired jokes about men in heels 0 +27761 1275 cheesy backdrops , ridiculous action sequences , and 0 +27762 1275 cheesy backdrops , ridiculous action sequences , 0 +27763 1275 cheesy backdrops , ridiculous action sequences 0 +27764 1275 cheesy backdrops , 1 +27765 1275 cheesy backdrops 1 +27766 1275 backdrops 2 +27767 1275 ridiculous action sequences 1 +27768 1275 action sequences 2 +27769 1275 many tired jokes about men in heels 2 +27770 1275 many tired jokes 2 +27771 1275 tired jokes 1 +27772 1275 about men in heels 2 +27773 1275 men in heels 2 +27774 1275 in heels 2 +27775 1275 heels 2 +27776 1276 All the more disquieting for its relatively gore-free allusions to the serial murders , but it falls down in its attempts to humanize its subject . 1 +27777 1276 All the more disquieting for its relatively gore-free allusions to the serial murders , but it falls down in its attempts to humanize its subject 2 +27778 1276 All the more disquieting for its relatively gore-free allusions to the serial murders , but 2 +27779 1276 All the more disquieting for its relatively gore-free allusions to the serial murders , 1 +27780 1276 All the more disquieting for its relatively gore-free allusions to the serial murders 1 +27781 1276 more disquieting for its relatively gore-free allusions to the serial murders 2 +27782 1276 disquieting for its relatively gore-free allusions to the serial murders 2 +27783 1276 for its relatively gore-free allusions to the serial murders 2 +27784 1276 its relatively gore-free allusions to the serial murders 2 +27785 1276 its relatively gore-free allusions 2 +27786 1276 relatively gore-free allusions 2 +27787 1276 relatively gore-free 3 +27788 1276 gore-free 2 +27789 1276 allusions 3 +27790 1276 to the serial murders 2 +27791 1276 the serial murders 2 +27792 1276 serial murders 3 +27793 1276 serial 2 +27794 1276 murders 2 +27795 1276 it falls down in its attempts to humanize its subject 1 +27796 1276 falls down in its attempts to humanize its subject 1 +27797 1276 falls down 1 +27798 1276 in its attempts to humanize its subject 2 +27799 1276 its attempts to humanize its subject 2 +27800 1276 attempts to humanize its subject 2 +27801 1276 to humanize its subject 2 +27802 1276 humanize its subject 3 +27803 1276 humanize 3 +27804 1277 A lame romantic comedy about an unsympathetic character and someone who would not likely be so stupid as to get involved with her . 0 +27805 1277 A lame romantic comedy about an unsympathetic character and someone who would not likely be so stupid as to get 0 +27806 1277 A lame romantic comedy 1 +27807 1277 lame romantic comedy 1 +27808 1277 about an unsympathetic character and someone who would not likely be so stupid as to get 1 +27809 1277 an unsympathetic character and someone who would not likely be so stupid as to get 1 +27810 1277 an unsympathetic character and someone 1 +27811 1277 unsympathetic character and someone 2 +27812 1277 unsympathetic 1 +27813 1277 character and someone 2 +27814 1277 someone 2 +27815 1277 who would not likely be so stupid as to get 1 +27816 1277 would not likely be so stupid as to get 1 +27817 1277 would not likely 2 +27818 1277 would not 2 +27819 1277 be so stupid as to get 2 +27820 1277 be so stupid 1 +27821 1277 so stupid 1 +27822 1277 as to get 2 +27823 1277 to get 2 +27824 1277 involved with her . 2 +27825 1277 involved with her 2 +27826 1277 with her 2 +27827 1278 Once the downward spiral comes to pass , Auto Focus bears out as your typical junkie opera ... 1 +27828 1278 Once the downward spiral comes to pass 2 +27829 1278 the downward spiral comes to pass 1 +27830 1278 the downward spiral 1 +27831 1278 downward spiral 2 +27832 1278 spiral 2 +27833 1278 comes to pass 2 +27834 1278 to pass 2 +27835 1278 , Auto Focus bears out as your typical junkie opera ... 1 +27836 1278 Auto Focus bears out as your typical junkie opera ... 1 +27837 1278 Auto Focus 2 +27838 1278 Auto 2 +27839 1278 Focus 3 +27840 1278 bears out as your typical junkie opera ... 2 +27841 1278 bears out as your typical junkie opera 0 +27842 1278 bears out 2 +27843 1278 as your typical junkie opera 2 +27844 1278 your typical junkie opera 1 +27845 1278 typical junkie opera 1 +27846 1278 junkie opera 2 +27847 1278 junkie 1 +27848 1279 In the book-on-tape market , the film of `` The Kid Stays in the Picture '' would be an abridged edition 1 +27849 1279 In the book-on-tape market 2 +27850 1279 the book-on-tape market 2 +27851 1279 book-on-tape market 2 +27852 1279 book-on-tape 1 +27853 1279 , the film of `` The Kid Stays in the Picture '' would be an abridged edition 2 +27854 1279 the film of `` The Kid Stays in the Picture '' would be an abridged edition 2 +27855 1279 the film of `` The Kid Stays in the Picture '' 2 +27856 1279 of `` The Kid Stays in the Picture '' 2 +27857 1279 of `` The Kid Stays in the Picture 2 +27858 1279 The Kid Stays in the Picture 2 +27859 1279 The Kid Stays 2 +27860 1279 Kid Stays 2 +27861 1279 Stays 2 +27862 1279 in the Picture 2 +27863 1279 would be an abridged edition 1 +27864 1279 be an abridged edition 2 +27865 1279 an abridged edition 2 +27866 1279 abridged edition 3 +27867 1279 abridged 2 +27868 1279 edition 2 +27869 1280 I wish Windtalkers had had more faith in the dramatic potential of this true story . 2 +27870 1280 wish Windtalkers had had more faith in the dramatic potential of this true story . 2 +27871 1280 wish Windtalkers had had more faith in the dramatic potential of this true story 2 +27872 1280 Windtalkers had had more faith in the dramatic potential of this true story 2 +27873 1280 had had more faith in the dramatic potential of this true story 2 +27874 1280 had more faith in the dramatic potential of this true story 3 +27875 1280 had more faith 2 +27876 1280 more faith 2 +27877 1280 in the dramatic potential of this true story 2 +27878 1280 the dramatic potential of this true story 2 +27879 1280 the dramatic potential 2 +27880 1280 dramatic potential 3 +27881 1280 of this true story 2 +27882 1280 this true story 2 +27883 1280 true story 2 +27884 1281 After an hour and a half of wondering -- sometimes amusedly , sometimes impatiently -- just what this strenuously unconventional movie is supposed to be , you discover that the answer is as conventional as can be . 1 +27885 1281 After an hour and a half of wondering -- sometimes amusedly , sometimes impatiently -- just what this strenuously unconventional movie is supposed to be 1 +27886 1281 an hour and a half of wondering -- sometimes amusedly , sometimes impatiently -- just what this strenuously unconventional movie is supposed to be 2 +27887 1281 an hour and 2 +27888 1281 a half of wondering -- sometimes amusedly , sometimes impatiently -- just what this strenuously unconventional movie is supposed to be 2 +27889 1281 of wondering -- sometimes amusedly , sometimes impatiently -- just what this strenuously unconventional movie is supposed to be 2 +27890 1281 wondering -- sometimes amusedly , sometimes impatiently -- just what this strenuously unconventional movie is supposed to be 1 +27891 1281 wondering -- sometimes amusedly , sometimes impatiently -- 2 +27892 1281 -- sometimes amusedly , sometimes impatiently -- 2 +27893 1281 sometimes amusedly , sometimes impatiently -- 2 +27894 1281 amusedly , sometimes impatiently -- 2 +27895 1281 amusedly , sometimes impatiently 2 +27896 1281 amusedly , sometimes 2 +27897 1281 amusedly , 3 +27898 1281 amusedly 3 +27899 1281 impatiently 2 +27900 1281 just what this strenuously unconventional movie is supposed to be 3 +27901 1281 just what 2 +27902 1281 this strenuously unconventional movie is supposed to be 2 +27903 1281 this strenuously unconventional movie 1 +27904 1281 strenuously unconventional movie 2 +27905 1281 strenuously unconventional 2 +27906 1281 strenuously 2 +27907 1281 is supposed to be 2 +27908 1281 supposed to be 2 +27909 1281 , you discover that the answer is as conventional as can be . 1 +27910 1281 you discover that the answer is as conventional as can be . 2 +27911 1281 discover that the answer is as conventional as can be . 2 +27912 1281 discover that the answer is as conventional as can be 1 +27913 1281 discover 2 +27914 1281 that the answer is as conventional as can be 1 +27915 1281 the answer is as conventional as can be 1 +27916 1281 is as conventional as can be 1 +27917 1281 is as conventional 2 +27918 1281 as conventional 2 +27919 1282 We hate -LRB- Madonna -RRB- within the film 's first five minutes , and she lacks the skill or presence to regain any ground . 1 +27920 1282 We hate -LRB- Madonna -RRB- within the film 's first five minutes , and she lacks the skill or presence to regain any ground 0 +27921 1282 We hate -LRB- Madonna -RRB- within the film 's first five minutes , and 0 +27922 1282 We hate -LRB- Madonna -RRB- within the film 's first five minutes , 0 +27923 1282 We hate -LRB- Madonna -RRB- within the film 's first five minutes 0 +27924 1282 hate -LRB- Madonna -RRB- within the film 's first five minutes 1 +27925 1282 -LRB- Madonna -RRB- within the film 's first five minutes 2 +27926 1282 -LRB- Madonna -RRB- 2 +27927 1282 Madonna -RRB- 2 +27928 1282 within the film 's first five minutes 2 +27929 1282 the film 's first five minutes 2 +27930 1282 first five minutes 2 +27931 1282 five minutes 2 +27932 1282 she lacks the skill or presence to regain any ground 1 +27933 1282 lacks the skill or presence to regain any ground 1 +27934 1282 lacks the skill or presence 1 +27935 1282 the skill or presence 2 +27936 1282 skill or presence 2 +27937 1282 skill or 2 +27938 1282 presence 2 +27939 1282 to regain any ground 2 +27940 1282 regain any ground 2 +27941 1282 regain 2 +27942 1282 any ground 2 +27943 1283 An ebullient Tunisian film about the startling transformation of a tradition-bound widow who is drawn into the exotic world of belly dancing . 3 +27944 1283 An ebullient Tunisian film about the startling transformation of a tradition-bound widow who is drawn into the exotic world of belly dancing 4 +27945 1283 An ebullient Tunisian film 2 +27946 1283 ebullient Tunisian film 3 +27947 1283 ebullient 3 +27948 1283 Tunisian film 2 +27949 1283 Tunisian 2 +27950 1283 about the startling transformation of a tradition-bound widow who is drawn into the exotic world of belly dancing 3 +27951 1283 the startling transformation of a tradition-bound widow who is drawn into the exotic world of belly dancing 2 +27952 1283 the startling transformation 2 +27953 1283 startling transformation 2 +27954 1283 transformation 2 +27955 1283 of a tradition-bound widow who is drawn into the exotic world of belly dancing 2 +27956 1283 a tradition-bound widow who is drawn into the exotic world of belly dancing 3 +27957 1283 a tradition-bound widow 2 +27958 1283 tradition-bound widow 2 +27959 1283 tradition-bound 2 +27960 1283 widow 2 +27961 1283 who is drawn into the exotic world of belly dancing 3 +27962 1283 is drawn into the exotic world of belly dancing 2 +27963 1283 drawn into the exotic world of belly dancing 3 +27964 1283 into the exotic world of belly dancing 2 +27965 1283 the exotic world of belly dancing 2 +27966 1283 the exotic world 3 +27967 1283 exotic world 2 +27968 1283 of belly dancing 2 +27969 1283 belly dancing 2 +27970 1284 A Frankenstein mishmash that careens from dark satire to cartoonish slapstick , Bartleby performs neither one very well . 2 +27971 1284 A Frankenstein mishmash that careens from dark satire to cartoonish slapstick 1 +27972 1284 A Frankenstein 2 +27973 1284 Frankenstein 2 +27974 1284 mishmash that careens from dark satire to cartoonish slapstick 1 +27975 1284 mishmash 1 +27976 1284 that careens from dark satire to cartoonish slapstick 1 +27977 1284 careens from dark satire to cartoonish slapstick 1 +27978 1284 careens from dark satire 2 +27979 1284 careens 2 +27980 1284 from dark satire 3 +27981 1284 dark satire 2 +27982 1284 to cartoonish slapstick 2 +27983 1284 cartoonish slapstick 2 +27984 1284 , Bartleby performs neither one very well . 1 +27985 1284 Bartleby performs neither one very well . 1 +27986 1284 Bartleby 2 +27987 1284 performs neither one very well . 1 +27988 1284 performs neither one very well 1 +27989 1284 performs neither one 2 +27990 1284 performs 2 +27991 1284 neither one 2 +27992 1284 very well 3 +27993 1285 There 's something not entirely convincing about The Quiet American . 2 +27994 1285 's something not entirely convincing about The Quiet American . 1 +27995 1285 's something not entirely convincing about The Quiet American 1 +27996 1285 something not entirely convincing about The Quiet American 2 +27997 1285 not entirely convincing about The Quiet American 1 +27998 1285 entirely convincing about The Quiet American 3 +27999 1285 convincing about The Quiet American 2 +28000 1285 convincing about 2 +28001 1286 Chelsea Walls is a case of too many chefs fussing over too weak a recipe . 1 +28002 1286 is a case of too many chefs fussing over too weak a recipe . 0 +28003 1286 is a case of too many chefs fussing over too weak a recipe 0 +28004 1286 a case of too many chefs fussing over too weak a recipe 0 +28005 1286 of too many chefs fussing over too weak a recipe 0 +28006 1286 too many chefs fussing over too weak a recipe 1 +28007 1286 too many chefs 2 +28008 1286 many chefs 2 +28009 1286 chefs 2 +28010 1286 fussing over too weak a recipe 1 +28011 1286 fussing over 1 +28012 1286 fussing 2 +28013 1286 too weak a recipe 1 +28014 1286 too weak 1 +28015 1286 a recipe 2 +28016 1286 recipe 2 +28017 1287 Though filmed partly in Canada , Paid in Full has clever ways of capturing inner-city life during the Reagan years . 3 +28018 1287 Though filmed partly in Canada 2 +28019 1287 filmed partly in Canada 2 +28020 1287 filmed partly 2 +28021 1287 in Canada 2 +28022 1287 Canada 3 +28023 1287 , Paid in Full has clever ways of capturing inner-city life during the Reagan years . 3 +28024 1287 Paid in Full has clever ways of capturing inner-city life during the Reagan years . 3 +28025 1287 Paid in Full 2 +28026 1287 in Full 2 +28027 1287 has clever ways of capturing inner-city life during the Reagan years . 3 +28028 1287 has clever ways of capturing inner-city life during the Reagan years 4 +28029 1287 clever ways of capturing inner-city life during the Reagan years 3 +28030 1287 clever ways 3 +28031 1287 of capturing inner-city life during the Reagan years 2 +28032 1287 capturing inner-city life during the Reagan years 2 +28033 1287 capturing inner-city life 2 +28034 1287 capturing 3 +28035 1287 inner-city life 2 +28036 1287 inner-city 2 +28037 1287 during the Reagan years 2 +28038 1287 the Reagan years 2 +28039 1287 Reagan years 2 +28040 1287 Reagan 2 +28041 1288 It still feels like a prison stretch . 1 +28042 1288 still feels like a prison stretch . 2 +28043 1288 feels like a prison stretch . 0 +28044 1288 feels like a prison stretch 0 +28045 1288 like a prison stretch 1 +28046 1288 a prison stretch 2 +28047 1288 prison stretch 2 +28048 1288 prison 2 +28049 1288 stretch 2 +28050 1289 As home movie gone haywire , it 's pretty enjoyable , but as sexual manifesto , I 'd rather listen to old Tori Amos records . 2 +28051 1289 As home movie gone haywire , it 's pretty enjoyable , but as sexual manifesto , I 'd rather listen to old Tori Amos records 2 +28052 1289 As home movie gone haywire , it 's pretty enjoyable , but 3 +28053 1289 As home movie gone haywire , it 's pretty enjoyable , 3 +28054 1289 As home movie gone haywire , it 's pretty enjoyable 3 +28055 1289 As home movie gone haywire 2 +28056 1289 home movie gone haywire 1 +28057 1289 gone haywire 2 +28058 1289 haywire 1 +28059 1289 , it 's pretty enjoyable 2 +28060 1289 it 's pretty enjoyable 4 +28061 1289 's pretty enjoyable 4 +28062 1289 pretty enjoyable 3 +28063 1289 as sexual manifesto , I 'd rather listen to old Tori Amos records 1 +28064 1289 as sexual manifesto 2 +28065 1289 sexual manifesto 2 +28066 1289 manifesto 2 +28067 1289 , I 'd rather listen to old Tori Amos records 1 +28068 1289 I 'd rather listen to old Tori Amos records 1 +28069 1289 'd rather listen to old Tori Amos records 0 +28070 1289 'd rather 2 +28071 1289 listen to old Tori Amos records 2 +28072 1289 listen 2 +28073 1289 to old Tori Amos records 2 +28074 1289 old Tori Amos records 2 +28075 1289 Tori Amos records 3 +28076 1289 Tori 2 +28077 1289 Amos records 2 +28078 1289 Amos 2 +28079 1290 Ah-nuld 's action hero days might be over . 1 +28080 1290 Ah-nuld 's action hero days 2 +28081 1290 Ah-nuld 's 1 +28082 1290 Ah-nuld 2 +28083 1290 action hero days 2 +28084 1290 hero days 2 +28085 1290 might be over . 2 +28086 1290 might be over 2 +28087 1290 be over 3 +28088 1291 In gleefully , thumpingly hyperbolic terms , it covers just about every cliche in the compendium about crass , jaded movie types and the phony baloney movie biz . 2 +28089 1291 In gleefully , thumpingly hyperbolic terms 2 +28090 1291 gleefully , thumpingly hyperbolic terms 2 +28091 1291 gleefully 4 +28092 1291 , thumpingly hyperbolic terms 1 +28093 1291 thumpingly hyperbolic terms 2 +28094 1291 thumpingly 3 +28095 1291 hyperbolic terms 2 +28096 1291 hyperbolic 2 +28097 1291 , it covers just about every cliche in the compendium about crass , jaded movie types and the phony baloney movie biz . 1 +28098 1291 it covers just about every cliche in the compendium about crass , jaded movie types and the phony baloney movie biz . 1 +28099 1291 covers just about every cliche in the compendium about crass , jaded movie types and the phony baloney movie biz . 0 +28100 1291 covers just about every cliche in the compendium about crass , jaded movie types and the phony baloney movie biz 1 +28101 1291 covers just 2 +28102 1291 about every cliche in the compendium about crass , jaded movie types and the phony baloney movie biz 1 +28103 1291 every cliche in the compendium about crass , jaded movie types and the phony baloney movie biz 1 +28104 1291 every cliche 1 +28105 1291 in the compendium about crass , jaded movie types and the phony baloney movie biz 1 +28106 1291 the compendium about crass , jaded movie types and the phony baloney movie biz 1 +28107 1291 the compendium 2 +28108 1291 compendium 2 +28109 1291 about crass , jaded movie types and the phony baloney movie biz 2 +28110 1291 crass , jaded movie types and the phony baloney movie biz 0 +28111 1291 crass , jaded movie types and 1 +28112 1291 crass , jaded movie types 1 +28113 1291 crass , jaded 1 +28114 1291 , jaded 2 +28115 1291 jaded 1 +28116 1291 movie types 2 +28117 1291 the phony baloney movie biz 0 +28118 1291 phony baloney movie biz 1 +28119 1291 phony 1 +28120 1291 baloney movie biz 1 +28121 1291 baloney 1 +28122 1291 movie biz 2 +28123 1291 biz 2 +28124 1292 The Sweetest Thing leaves a bitter taste . 0 +28125 1292 The Sweetest Thing 2 +28126 1292 Sweetest Thing 4 +28127 1292 Sweetest 2 +28128 1292 leaves a bitter taste . 1 +28129 1292 leaves a bitter taste 1 +28130 1292 a bitter taste 1 +28131 1292 bitter taste 1 +28132 1292 bitter 0 +28133 1293 After the setup , the air leaks out of the movie , flattening its momentum with about an hour to go . 2 +28134 1293 After the setup 2 +28135 1293 the setup 2 +28136 1293 setup 2 +28137 1293 , the air leaks out of the movie , flattening its momentum with about an hour to go . 0 +28138 1293 the air leaks out of the movie , flattening its momentum with about an hour to go . 0 +28139 1293 the air 2 +28140 1293 leaks out of the movie , flattening its momentum with about an hour to go . 1 +28141 1293 leaks out of the movie , flattening its momentum with about an hour to go 1 +28142 1293 leaks out of the movie , 3 +28143 1293 leaks out of the movie 2 +28144 1293 leaks out 2 +28145 1293 leaks 2 +28146 1293 flattening its momentum with about an hour to go 1 +28147 1293 flattening its momentum with about an hour 1 +28148 1293 flattening its momentum 1 +28149 1293 flattening 1 +28150 1293 its momentum 2 +28151 1293 with about an hour 2 +28152 1293 about an hour 3 +28153 1294 Because the film deliberately lacks irony , it has a genuine dramatic impact ; it plays like a powerful 1957 drama we 've somehow never seen before . 4 +28154 1294 Because the film deliberately lacks irony , it has a genuine dramatic impact ; it plays like a powerful 1957 drama we 've somehow never seen before 3 +28155 1294 Because the film deliberately lacks irony , it has a genuine dramatic impact ; 4 +28156 1294 Because the film deliberately lacks irony , it has a genuine dramatic impact 3 +28157 1294 Because the film deliberately lacks irony 1 +28158 1294 the film deliberately lacks irony 2 +28159 1294 deliberately lacks irony 2 +28160 1294 lacks irony 2 +28161 1294 , it has a genuine dramatic impact 3 +28162 1294 it has a genuine dramatic impact 3 +28163 1294 has a genuine dramatic impact 3 +28164 1294 a genuine dramatic impact 3 +28165 1294 genuine dramatic impact 4 +28166 1294 dramatic impact 3 +28167 1294 it plays like a powerful 1957 drama we 've somehow never seen before 4 +28168 1294 plays like a powerful 1957 drama we 've somehow never seen before 4 +28169 1294 like a powerful 1957 drama we 've somehow never seen before 3 +28170 1294 a powerful 1957 drama we 've somehow never seen before 4 +28171 1294 a powerful 1957 drama 3 +28172 1294 powerful 1957 drama 3 +28173 1294 powerful 1957 2 +28174 1294 1957 2 +28175 1294 we 've somehow never seen before 2 +28176 1294 've somehow never seen before 2 +28177 1294 've somehow 2 +28178 1294 never seen before 2 +28179 1295 In an ART FILM ! 3 +28180 1295 In an ART FILM 2 +28181 1295 an ART FILM 3 +28182 1295 ART FILM 3 +28183 1296 The satire is just too easy to be genuinely satisfying . 1 +28184 1296 The satire 2 +28185 1296 is just too easy to be genuinely satisfying . 1 +28186 1296 is just too easy to be genuinely satisfying 3 +28187 1296 is just too easy 2 +28188 1296 too easy 1 +28189 1296 to be genuinely satisfying 3 +28190 1296 be genuinely satisfying 3 +28191 1296 genuinely satisfying 4 +28192 1297 A gem , captured in the unhurried , low-key style favored by many directors of the Iranian new wave . 2 +28193 1297 A gem , captured in the unhurried , low-key style 4 +28194 1297 A gem , 4 +28195 1297 captured in the unhurried , low-key style 2 +28196 1297 in the unhurried , low-key style 3 +28197 1297 the unhurried , low-key style 3 +28198 1297 unhurried , low-key style 2 +28199 1297 , low-key style 2 +28200 1297 low-key style 2 +28201 1297 favored by many directors of the Iranian new wave . 3 +28202 1297 favored by many directors of the Iranian new wave 3 +28203 1297 favored 3 +28204 1297 by many directors of the Iranian new wave 2 +28205 1297 many directors of the Iranian new wave 2 +28206 1297 many directors 2 +28207 1297 of the Iranian new wave 2 +28208 1297 the Iranian new wave 2 +28209 1297 Iranian new wave 2 +28210 1297 new wave 2 +28211 1298 -LRB- A -RRB- real pleasure in its laid-back way . 4 +28212 1298 -LRB- A -RRB- real pleasure in its laid-back way 3 +28213 1298 real pleasure in its laid-back way 3 +28214 1298 real pleasure 3 +28215 1298 in its laid-back way 3 +28216 1298 its laid-back way 3 +28217 1298 laid-back way 2 +28218 1298 laid-back 3 +28219 1299 Aloof and lacks any real raw emotion , which is fatal for a film that relies on personal relationships . 0 +28220 1299 Aloof and 1 +28221 1299 Aloof 2 +28222 1299 lacks any real raw emotion , which is fatal for a film that relies on personal relationships . 0 +28223 1299 lacks any real raw emotion , which is fatal for a film that relies on personal relationships 1 +28224 1299 any real raw emotion , which is fatal for a film that relies on personal relationships 1 +28225 1299 any real raw emotion , 2 +28226 1299 any real raw emotion 2 +28227 1299 real raw emotion 3 +28228 1299 raw emotion 3 +28229 1299 which is fatal for a film that relies on personal relationships 2 +28230 1299 is fatal for a film that relies on personal relationships 1 +28231 1299 fatal for a film that relies on personal relationships 1 +28232 1299 for a film that relies on personal relationships 2 +28233 1299 a film that relies on personal relationships 3 +28234 1299 that relies on personal relationships 2 +28235 1299 relies on personal relationships 2 +28236 1299 on personal relationships 2 +28237 1299 personal relationships 2 +28238 1300 This is cruel , misanthropic stuff with only weak claims to surrealism and black comedy . 1 +28239 1300 is cruel , misanthropic stuff with only weak claims to surrealism and black comedy . 0 +28240 1300 is cruel , misanthropic stuff with only weak claims to surrealism and black comedy 1 +28241 1300 cruel , misanthropic stuff with only weak claims to surrealism and black comedy 0 +28242 1300 cruel , misanthropic stuff 1 +28243 1300 cruel 1 +28244 1300 , misanthropic stuff 2 +28245 1300 misanthropic stuff 1 +28246 1300 misanthropic 1 +28247 1300 with only weak claims to surrealism and black comedy 1 +28248 1300 only weak claims to surrealism and black comedy 1 +28249 1300 only weak claims 2 +28250 1300 weak claims 1 +28251 1300 to surrealism and black comedy 3 +28252 1300 surrealism and black comedy 2 +28253 1300 surrealism 2 +28254 1300 and black comedy 2 +28255 1301 there is truth here 3 +28256 1301 is truth here 2 +28257 1301 is truth 3 +28258 1302 The symbols float like butterflies and the spinning styx sting like bees . 2 +28259 1302 The symbols 2 +28260 1302 symbols 2 +28261 1302 float like butterflies and the spinning styx sting like bees . 3 +28262 1302 float like butterflies and the spinning styx sting like bees 3 +28263 1302 float 2 +28264 1302 like butterflies and the spinning styx sting like bees 2 +28265 1302 butterflies and the spinning styx sting like bees 2 +28266 1302 butterflies and 2 +28267 1302 butterflies 2 +28268 1302 the spinning styx sting like bees 2 +28269 1302 the spinning styx 2 +28270 1302 spinning styx 2 +28271 1302 spinning 2 +28272 1302 styx 2 +28273 1302 sting like bees 1 +28274 1302 sting 2 +28275 1302 like bees 2 +28276 1302 bees 2 +28277 1303 I 'm going to give it a marginal thumbs up . 3 +28278 1303 'm going to give it a marginal thumbs up . 2 +28279 1303 'm going to give it a marginal thumbs up 4 +28280 1303 going to give it a marginal thumbs up 2 +28281 1303 to give it a marginal thumbs up 3 +28282 1303 give it a marginal thumbs up 3 +28283 1303 give it 2 +28284 1303 a marginal thumbs up 3 +28285 1303 a marginal thumbs 3 +28286 1303 marginal thumbs 2 +28287 1303 thumbs 2 +28288 1304 Otherwise , maybe . 2 +28289 1304 , maybe . 2 +28290 1304 maybe . 2 +28291 1305 While the path may be familiar , first-time director Denzel Washington and a top-notch cast manage to keep things interesting . 3 +28292 1305 While the path may be familiar 2 +28293 1305 the path may be familiar 2 +28294 1305 may be familiar 2 +28295 1305 be familiar 3 +28296 1305 , first-time director Denzel Washington and a top-notch cast manage to keep things interesting . 3 +28297 1305 first-time director Denzel Washington and a top-notch cast manage to keep things interesting . 4 +28298 1305 first-time director Denzel Washington and a top-notch cast 4 +28299 1305 first-time director Denzel Washington and 2 +28300 1305 first-time director Denzel Washington 2 +28301 1305 director Denzel Washington 2 +28302 1305 Denzel Washington 2 +28303 1305 a top-notch cast 3 +28304 1305 top-notch cast 4 +28305 1305 top-notch 4 +28306 1305 manage to keep things interesting . 3 +28307 1305 manage to keep things interesting 3 +28308 1305 to keep things interesting 3 +28309 1305 keep things interesting 3 +28310 1305 things interesting 3 +28311 1306 If you answered yes , by all means enjoy The New Guy . 3 +28312 1306 If you answered yes , by all means 2 +28313 1306 you answered yes , by all means 2 +28314 1306 answered yes , by all means 3 +28315 1306 answered yes , 2 +28316 1306 answered yes 2 +28317 1306 answered 3 +28318 1306 by all means 3 +28319 1306 all means 2 +28320 1306 enjoy The New Guy . 3 +28321 1306 enjoy The New Guy 2 +28322 1306 The New Guy 2 +28323 1306 New Guy 2 +28324 1307 Throws in enough clever and unexpected twists to make the formula feel fresh . 4 +28325 1307 Throws in enough clever and unexpected 3 +28326 1307 in enough clever and unexpected 3 +28327 1307 enough clever and unexpected 3 +28328 1307 clever and unexpected 4 +28329 1307 twists to make the formula feel fresh . 3 +28330 1307 twists to make the formula feel fresh 2 +28331 1307 to make the formula feel fresh 3 +28332 1307 make the formula feel fresh 3 +28333 1307 the formula feel fresh 3 +28334 1307 feel fresh 3 +28335 1308 He does this so well you do n't have the slightest difficulty accepting him in the role . 4 +28336 1308 He does this so well 3 +28337 1308 does this so well 4 +28338 1308 does this 2 +28339 1308 so well 3 +28340 1308 you do n't have the slightest difficulty accepting him in the role . 3 +28341 1308 do n't have the slightest difficulty accepting him in the role . 3 +28342 1308 do n't have the slightest difficulty accepting him in the role 3 +28343 1308 have the slightest difficulty accepting him in the role 1 +28344 1308 the slightest difficulty accepting him in the role 1 +28345 1308 the slightest difficulty 2 +28346 1308 slightest difficulty 1 +28347 1308 slightest 2 +28348 1308 accepting him in the role 3 +28349 1308 accepting him 3 +28350 1308 accepting 2 +28351 1308 in the role 2 +28352 1308 the role 2 +28353 1309 The premise of Jason X is silly but strangely believable . 3 +28354 1309 The premise of Jason X 2 +28355 1309 of Jason X 1 +28356 1309 Jason X 2 +28357 1309 is silly but strangely believable . 3 +28358 1309 is silly but strangely believable 3 +28359 1309 silly but strangely believable 3 +28360 1309 but strangely believable 3 +28361 1309 strangely believable 3 +28362 1310 Ya-Yas everywhere will forgive the flaws and love the film . 3 +28363 1310 Ya-Yas 2 +28364 1310 everywhere will forgive the flaws and love the film . 3 +28365 1310 everywhere 3 +28366 1310 will forgive the flaws and love the film . 3 +28367 1310 will forgive the flaws and love the film 3 +28368 1310 forgive the flaws and love the film 3 +28369 1310 forgive the flaws and 2 +28370 1310 forgive the flaws 2 +28371 1310 forgive 2 +28372 1310 love the film 4 +28373 1311 I will be . 3 +28374 1311 will be . 2 +28375 1311 will be 2 +28376 1312 -LRB- Washington 's -RRB- strong hand , keen eye , sweet spirit and good taste are reflected in almost every scene . 4 +28377 1312 -LRB- Washington 's -RRB- strong hand , keen eye , sweet spirit and good taste 3 +28378 1312 -LRB- Washington 's -RRB- strong hand , 2 +28379 1312 -LRB- Washington 's -RRB- strong hand 3 +28380 1312 -LRB- Washington 's -RRB- 2 +28381 1312 Washington 's -RRB- 2 +28382 1312 strong hand 2 +28383 1312 keen eye , sweet spirit and good taste 3 +28384 1312 keen eye , sweet spirit and 3 +28385 1312 keen eye , sweet spirit 3 +28386 1312 keen eye , 3 +28387 1312 keen eye 2 +28388 1312 sweet spirit 3 +28389 1312 good taste 3 +28390 1312 are reflected in almost every scene . 3 +28391 1312 are reflected in almost every scene 3 +28392 1312 reflected in almost every scene 3 +28393 1312 reflected 2 +28394 1312 in almost every scene 2 +28395 1312 almost every scene 2 +28396 1312 every scene 2 +28397 1313 What a dumb , fun , curiously adolescent movie this is . 3 +28398 1313 What a dumb , fun , curiously adolescent movie this 3 +28399 1313 a dumb , fun , curiously adolescent movie this 3 +28400 1313 a dumb , fun , curiously adolescent movie 3 +28401 1313 dumb , fun , curiously adolescent movie 3 +28402 1313 , fun , curiously adolescent movie 3 +28403 1313 fun , curiously adolescent movie 3 +28404 1313 , curiously adolescent movie 2 +28405 1313 curiously adolescent movie 2 +28406 1313 adolescent movie 2 +28407 1313 is . 2 +28408 1314 Cold and scattered , Minority Report commands interest almost solely as an exercise in gorgeous visuals . 2 +28409 1314 Cold and scattered 2 +28410 1314 Cold and 2 +28411 1314 , Minority Report commands interest almost solely as an exercise in gorgeous visuals . 4 +28412 1314 Minority Report commands interest almost solely as an exercise in gorgeous visuals . 3 +28413 1314 commands interest almost solely as an exercise in gorgeous visuals . 3 +28414 1314 commands interest almost solely as an exercise in gorgeous visuals 4 +28415 1314 commands 3 +28416 1314 interest almost solely as an exercise in gorgeous visuals 3 +28417 1314 almost solely as an exercise in gorgeous visuals 2 +28418 1314 solely as an exercise in gorgeous visuals 3 +28419 1314 solely 2 +28420 1314 as an exercise in gorgeous visuals 4 +28421 1314 an exercise in gorgeous visuals 4 +28422 1314 an exercise 2 +28423 1314 in gorgeous visuals 4 +28424 1314 gorgeous visuals 4 +28425 1315 National Lampoon 's Van Wilder may aim to be the next Animal House , but it more closely resembles this year 's version of Tomcats . 2 +28426 1315 National Lampoon 's Van Wilder may aim to be the next Animal House , but it more closely resembles this year 's version of Tomcats 2 +28427 1315 National Lampoon 's Van Wilder may aim to be the next Animal House , but 1 +28428 1315 National Lampoon 's Van Wilder may aim to be the next Animal House , 2 +28429 1315 National Lampoon 's Van Wilder may aim to be the next Animal House 3 +28430 1315 National Lampoon 's Van Wilder 2 +28431 1315 National Lampoon 's 2 +28432 1315 Lampoon 's 2 +28433 1315 Lampoon 2 +28434 1315 may aim to be the next Animal House 2 +28435 1315 aim to be the next Animal House 2 +28436 1315 to be the next Animal House 2 +28437 1315 be the next Animal House 3 +28438 1315 the next Animal House 3 +28439 1315 next Animal House 2 +28440 1315 Animal House 2 +28441 1315 it more closely resembles this year 's version of Tomcats 3 +28442 1315 more closely resembles this year 's version of Tomcats 3 +28443 1315 more closely 2 +28444 1315 resembles this year 's version of Tomcats 2 +28445 1315 this year 's version of Tomcats 2 +28446 1315 this year 's version 2 +28447 1315 this year 's 2 +28448 1315 of Tomcats 3 +28449 1315 Tomcats 2 +28450 1316 A well made indieflick in need of some trims and a more chemistry between its stars . 3 +28451 1316 A well 2 +28452 1316 made indieflick in need of some trims and a more chemistry between its stars . 2 +28453 1316 made indieflick in need of some trims and a more chemistry between its stars 1 +28454 1316 made indieflick 2 +28455 1316 indieflick 2 +28456 1316 in need of some trims and a more chemistry between its stars 1 +28457 1316 need of some trims and a more chemistry between its stars 2 +28458 1316 need of some trims and 1 +28459 1316 need of some trims 1 +28460 1316 of some trims 2 +28461 1316 some trims 2 +28462 1316 trims 2 +28463 1316 a more chemistry between its stars 2 +28464 1316 a more chemistry 2 +28465 1316 more chemistry 2 +28466 1316 between its stars 2 +28467 1316 its stars 2 +28468 1317 The film truly does rescue -LRB- the Funk Brothers -RRB- from Motown 's shadows . 2 +28469 1317 truly does rescue -LRB- the Funk Brothers -RRB- from Motown 's shadows . 2 +28470 1317 does rescue -LRB- the Funk Brothers -RRB- from Motown 's shadows . 2 +28471 1317 does rescue -LRB- the Funk Brothers -RRB- from Motown 's shadows 2 +28472 1317 rescue -LRB- the Funk Brothers -RRB- from Motown 's shadows 2 +28473 1317 rescue -LRB- the Funk Brothers -RRB- 2 +28474 1317 rescue 2 +28475 1317 -LRB- the Funk Brothers -RRB- 2 +28476 1317 the Funk Brothers -RRB- 2 +28477 1317 the Funk Brothers 2 +28478 1317 Funk Brothers 2 +28479 1317 Funk 1 +28480 1317 from Motown 's shadows 3 +28481 1317 Motown 's shadows 2 +28482 1317 Motown 's 2 +28483 1318 Director Chris Wedge and screenwriters Michael Berg , Michael J. Wilson and Peter Ackerman create some episodes that rival vintage Looney Tunes for the most creative mayhem in a brief amount of time . 3 +28484 1318 Director Chris Wedge and screenwriters Michael Berg , Michael J. Wilson and Peter Ackerman 2 +28485 1318 Director Chris Wedge and screenwriters Michael Berg , Michael J. Wilson and 2 +28486 1318 Director Chris Wedge and screenwriters Michael Berg , Michael J. Wilson 2 +28487 1318 Chris Wedge and screenwriters Michael Berg , Michael J. Wilson 2 +28488 1318 Wedge and screenwriters Michael Berg , Michael J. Wilson 2 +28489 1318 Wedge 2 +28490 1318 and screenwriters Michael Berg , Michael J. Wilson 2 +28491 1318 screenwriters Michael Berg , Michael J. Wilson 2 +28492 1318 Michael Berg , Michael J. Wilson 2 +28493 1318 Berg , Michael J. Wilson 2 +28494 1318 Berg 2 +28495 1318 , Michael J. Wilson 2 +28496 1318 Michael J. Wilson 2 +28497 1318 J. Wilson 2 +28498 1318 J. 2 +28499 1318 Wilson 2 +28500 1318 Peter Ackerman 2 +28501 1318 Ackerman 2 +28502 1318 create some episodes that rival vintage Looney Tunes for the most creative mayhem in a brief amount of time . 3 +28503 1318 create some episodes that rival vintage Looney Tunes for the most creative mayhem in a brief amount of time 3 +28504 1318 some episodes that rival vintage Looney Tunes for the most creative mayhem in a brief amount of time 3 +28505 1318 some episodes 2 +28506 1318 episodes 2 +28507 1318 that rival vintage Looney Tunes for the most creative mayhem in a brief amount of time 3 +28508 1318 that rival vintage Looney Tunes 2 +28509 1318 rival vintage Looney Tunes 2 +28510 1318 vintage Looney Tunes 3 +28511 1318 Looney Tunes 2 +28512 1318 Looney 2 +28513 1318 Tunes 2 +28514 1318 for the most creative mayhem in a brief amount of time 3 +28515 1318 the most creative mayhem in a brief amount of time 2 +28516 1318 the most creative mayhem 3 +28517 1318 most creative mayhem 3 +28518 1318 creative mayhem 2 +28519 1318 in a brief amount of time 2 +28520 1318 a brief amount of time 3 +28521 1318 a brief amount 3 +28522 1318 brief amount 2 +28523 1318 of time 2 +28524 1319 The star who helped give a spark to `` Chasing Amy '' and `` Changing Lanes '' falls flat as thinking man CIA agent Jack Ryan in this summer 's new action film , `` The Sum of All Fears . '' 1 +28525 1319 The star who helped give a spark to `` Chasing Amy '' and `` Changing Lanes '' falls flat as thinking man CIA agent Jack Ryan in this summer 's new action film , `` The Sum of All Fears . 2 +28526 1319 The star who helped give a spark to `` Chasing Amy '' and `` Changing Lanes '' falls flat as thinking man CIA agent Jack Ryan in this summer 's new action film , `` The Sum of All Fears 1 +28527 1319 The star 2 +28528 1319 who helped give a spark to `` Chasing Amy '' and `` Changing Lanes '' falls flat as thinking man CIA agent Jack Ryan in this summer 's new action film , `` The Sum of All Fears 2 +28529 1319 helped give a spark to `` Chasing Amy '' and `` Changing Lanes '' falls flat as thinking man CIA agent Jack Ryan in this summer 's new action film , `` The Sum of All Fears 0 +28530 1319 give a spark to `` Chasing Amy '' and `` Changing Lanes '' falls flat as thinking man CIA agent Jack Ryan in this summer 's new action film , `` The Sum of All Fears 1 +28531 1319 give a spark to `` Chasing Amy '' and `` Changing Lanes '' falls flat as thinking man CIA agent Jack Ryan in this summer 's new action film , `` 1 +28532 1319 give a spark to `` Chasing Amy '' and `` Changing Lanes '' falls flat as thinking man CIA agent Jack Ryan in this summer 's new action film , 1 +28533 1319 give a spark to `` Chasing Amy '' and `` Changing Lanes '' falls flat as thinking man CIA agent Jack Ryan in this summer 's new action film 0 +28534 1319 give a spark to `` Chasing Amy '' and `` Changing Lanes '' 2 +28535 1319 give a spark to `` Chasing Amy '' and `` Changing Lanes 2 +28536 1319 give a spark 3 +28537 1319 to `` Chasing Amy '' and `` Changing Lanes 2 +28538 1319 `` Chasing Amy '' and `` Changing Lanes 2 +28539 1319 Chasing Amy '' and `` Changing Lanes 2 +28540 1319 Chasing Amy '' and `` 2 +28541 1319 Chasing Amy '' and 2 +28542 1319 Chasing Amy '' 2 +28543 1319 Chasing Amy 2 +28544 1319 falls flat as thinking man CIA agent Jack Ryan in this summer 's new action film 0 +28545 1319 falls flat as thinking man CIA agent Jack Ryan 0 +28546 1319 falls flat as thinking man 1 +28547 1319 flat as thinking man 1 +28548 1319 as thinking man 2 +28549 1319 thinking man 3 +28550 1319 CIA agent Jack Ryan 2 +28551 1319 CIA 2 +28552 1319 agent Jack Ryan 2 +28553 1319 Jack Ryan 2 +28554 1319 Ryan 2 +28555 1319 in this summer 's new action film 3 +28556 1319 this summer 's new action film 2 +28557 1319 this summer 's 2 +28558 1319 summer 's 2 +28559 1319 new action film 2 +28560 1319 action film 2 +28561 1319 The Sum of All Fears 2 +28562 1319 of All Fears 2 +28563 1319 All Fears 2 +28564 1320 A playful Iranian parable about openness , particularly the need for people of diverse political perspectives to get along despite their ideological differences . 3 +28565 1320 A playful Iranian parable about openness , particularly the 3 +28566 1320 A playful Iranian parable 3 +28567 1320 playful Iranian parable 3 +28568 1320 Iranian parable 2 +28569 1320 about openness , particularly the 3 +28570 1320 openness , particularly the 2 +28571 1320 openness , 3 +28572 1320 openness 2 +28573 1320 particularly the 2 +28574 1320 need for people of diverse political perspectives to get along despite their ideological differences . 2 +28575 1320 need for people of diverse political perspectives to get along despite their ideological differences 2 +28576 1320 need for people of diverse political perspectives 2 +28577 1320 for people of diverse political perspectives 2 +28578 1320 people of diverse political perspectives 2 +28579 1320 of diverse political perspectives 3 +28580 1320 diverse political perspectives 2 +28581 1320 political perspectives 2 +28582 1320 perspectives 2 +28583 1320 to get along despite their ideological differences 2 +28584 1320 get along despite their ideological differences 2 +28585 1320 get along 2 +28586 1320 despite their ideological differences 2 +28587 1320 their ideological differences 2 +28588 1320 ideological differences 2 +28589 1320 ideological 3 +28590 1320 differences 2 +28591 1321 If only there were one for this kind of movie . 2 +28592 1321 only there were one for this kind of movie . 2 +28593 1321 only there were one for this kind of movie 2 +28594 1321 there were one for this kind of movie 2 +28595 1321 were one for this kind of movie 2 +28596 1321 one for this kind of movie 3 +28597 1321 for this kind of movie 2 +28598 1321 this kind of movie 2 +28599 1321 this kind 2 +28600 1321 of movie 2 +28601 1322 You can taste it , but there 's no fizz . 1 +28602 1322 You can taste it , but there 's no fizz 1 +28603 1322 You can taste it , but 2 +28604 1322 You can taste it , 3 +28605 1322 You can taste it 2 +28606 1322 can taste it 2 +28607 1322 taste it 2 +28608 1322 there 's no fizz 1 +28609 1322 's no fizz 1 +28610 1322 no fizz 2 +28611 1322 fizz 2 +28612 1323 Control-Alt-Delete Simone as quickly as possible 0 +28613 1323 Control-Alt-Delete Simone as quickly 0 +28614 1323 Control-Alt-Delete Simone 1 +28615 1323 Control-Alt-Delete 1 +28616 1323 as quickly 2 +28617 1323 as possible 2 +28618 1324 Strong filmmaking requires a clear sense of purpose , and in that oh-so-important category , The Four Feathers comes up short . 0 +28619 1324 Strong filmmaking requires a clear sense of purpose , and in that oh-so-important category , The Four Feathers comes up short 1 +28620 1324 Strong filmmaking requires a clear sense of purpose , and 2 +28621 1324 Strong filmmaking requires a clear sense of purpose , 2 +28622 1324 Strong filmmaking requires a clear sense of purpose 3 +28623 1324 Strong filmmaking 4 +28624 1324 requires a clear sense of purpose 2 +28625 1324 a clear sense of purpose 3 +28626 1324 a clear sense 2 +28627 1324 clear sense 3 +28628 1324 clear 2 +28629 1324 of purpose 4 +28630 1324 in that oh-so-important category , The Four Feathers comes up short 1 +28631 1324 in that oh-so-important category 2 +28632 1324 that oh-so-important category 2 +28633 1324 oh-so-important category 2 +28634 1324 oh-so-important 3 +28635 1324 category 2 +28636 1324 , The Four Feathers comes up short 1 +28637 1324 The Four Feathers comes up short 1 +28638 1324 The Four Feathers 2 +28639 1324 Four Feathers 2 +28640 1324 Feathers 2 +28641 1324 comes up short 2 +28642 1324 up short 2 +28643 1325 Enriched by a strong and unforced supporting cast . 4 +28644 1325 Enriched by a strong and unforced supporting cast 3 +28645 1325 Enriched 4 +28646 1325 by a strong and unforced supporting cast 3 +28647 1325 a strong and unforced supporting cast 3 +28648 1325 strong and unforced supporting cast 3 +28649 1325 strong and unforced 4 +28650 1325 strong and 3 +28651 1325 unforced 3 +28652 1325 supporting cast 2 +28653 1326 Nothing overly original , mind you , but solidly entertaining . 3 +28654 1326 Nothing overly original , mind you , but solidly entertaining 3 +28655 1326 Nothing overly original , 2 +28656 1326 Nothing overly original 0 +28657 1326 overly original 3 +28658 1326 mind you , but solidly entertaining 2 +28659 1326 mind you 2 +28660 1326 , but solidly entertaining 4 +28661 1326 solidly entertaining 4 +28662 1327 At its best , this is grand-scale moviemaking for a larger-than-life figure , an artist who has been awarded mythic status in contemporary culture . 4 +28663 1327 At its best 3 +28664 1327 , this is grand-scale moviemaking for a larger-than-life figure , an artist who has been awarded mythic status in contemporary culture . 3 +28665 1327 this is grand-scale moviemaking for a larger-than-life figure , an artist who has been awarded mythic status in contemporary culture . 3 +28666 1327 is grand-scale moviemaking for a larger-than-life figure , an artist who has been awarded mythic status in contemporary culture . 3 +28667 1327 is grand-scale moviemaking for a larger-than-life figure , an artist who has been awarded mythic status in contemporary culture 4 +28668 1327 is grand-scale 3 +28669 1327 grand-scale 3 +28670 1327 moviemaking for a larger-than-life figure , an artist who has been awarded mythic status in contemporary culture 3 +28671 1327 for a larger-than-life figure , an artist who has been awarded mythic status in contemporary culture 3 +28672 1327 a larger-than-life figure , an artist who has been awarded mythic status in contemporary culture 3 +28673 1327 a larger-than-life figure , 3 +28674 1327 a larger-than-life figure 3 +28675 1327 larger-than-life figure 3 +28676 1327 larger-than-life 2 +28677 1327 an artist who has been awarded mythic status in contemporary culture 4 +28678 1327 who has been awarded mythic status in contemporary culture 3 +28679 1327 has been awarded mythic status in contemporary culture 3 +28680 1327 been awarded mythic status in contemporary culture 3 +28681 1327 awarded mythic status in contemporary culture 4 +28682 1327 awarded mythic status 3 +28683 1327 awarded 2 +28684 1327 mythic status 3 +28685 1327 status 3 +28686 1327 in contemporary culture 2 +28687 1327 contemporary culture 2 +28688 1328 Funny in a sick , twisted sort of way . 3 +28689 1328 Funny in a sick , twisted sort of way 3 +28690 1328 in a sick , twisted sort of way 1 +28691 1328 a sick , twisted sort of way 1 +28692 1328 a sick , twisted sort 2 +28693 1328 sick , twisted sort 1 +28694 1328 , twisted sort 1 +28695 1328 twisted sort 2 +28696 1328 of way 2 +28697 1329 It 's fun , but it 's a real howler . 3 +28698 1329 It 's fun , but it 's a real howler 3 +28699 1329 It 's fun , but 2 +28700 1329 It 's fun , 3 +28701 1329 It 's fun 4 +28702 1329 's fun 3 +28703 1329 it 's a real howler 2 +28704 1329 's a real howler 2 +28705 1329 a real howler 3 +28706 1329 real howler 2 +28707 1329 howler 3 +28708 1330 A manipulative feminist empowerment tale thinly posing as a serious drama about spousal abuse . 1 +28709 1330 A manipulative feminist empowerment tale thinly posing as a serious drama about spousal abuse 1 +28710 1330 A manipulative feminist empowerment tale thinly 2 +28711 1330 manipulative feminist empowerment tale thinly 1 +28712 1330 feminist empowerment tale thinly 1 +28713 1330 feminist 2 +28714 1330 empowerment tale thinly 1 +28715 1330 tale thinly 2 +28716 1330 thinly 2 +28717 1330 posing as a serious drama about spousal abuse 1 +28718 1330 as a serious drama about spousal abuse 3 +28719 1330 a serious drama about spousal abuse 2 +28720 1330 a serious drama 3 +28721 1330 about spousal abuse 2 +28722 1331 A semi-autobiographical film that 's so sloppily written and cast that you can not believe anyone more central to the creation of Bugsy than the caterer had anything to do with it . 0 +28723 1331 A semi-autobiographical film that 's so sloppily written and cast that you can not believe anyone more central to the creation of Bugsy than the caterer 0 +28724 1331 A semi-autobiographical film 2 +28725 1331 semi-autobiographical film 2 +28726 1331 semi-autobiographical 2 +28727 1331 that 's so sloppily written and cast that you can not believe anyone more central to the creation of Bugsy than the caterer 1 +28728 1331 's so sloppily written and cast that you can not believe anyone more central to the creation of Bugsy than the caterer 0 +28729 1331 so sloppily written and cast that you can not believe anyone more central to the creation of Bugsy than the caterer 0 +28730 1331 so sloppily written and 0 +28731 1331 so sloppily written 1 +28732 1331 sloppily written 1 +28733 1331 cast that you can not believe anyone more central to the creation of Bugsy than the caterer 2 +28734 1331 that you can not believe anyone more central to the creation of Bugsy than the caterer 1 +28735 1331 you can not believe anyone more central to the creation of Bugsy than the caterer 2 +28736 1331 can not believe anyone more central to the creation of Bugsy than the caterer 2 +28737 1331 believe anyone more central to the creation of Bugsy than the caterer 2 +28738 1331 anyone more central to the creation of Bugsy than the caterer 2 +28739 1331 more central to the creation of Bugsy than the caterer 2 +28740 1331 central to the creation of Bugsy than the caterer 2 +28741 1331 to the creation of Bugsy than the caterer 2 +28742 1331 the creation of Bugsy than the caterer 2 +28743 1331 the creation 2 +28744 1331 of Bugsy than the caterer 2 +28745 1331 Bugsy than the caterer 2 +28746 1331 Bugsy 2 +28747 1331 than the caterer 2 +28748 1331 the caterer 2 +28749 1331 caterer 2 +28750 1331 had anything to do with it . 2 +28751 1331 had anything to do with it 2 +28752 1331 anything to do with it 2 +28753 1331 to do with it 2 +28754 1331 do with it 2 +28755 1331 with it 3 +28756 1332 Renner ? 2 +28757 1332 Renner 2 +28758 1333 For all its violence , the movie is remarkably dull with only Caine making much of an impression . 1 +28759 1333 For all its violence 2 +28760 1333 all its violence 2 +28761 1333 , the movie is remarkably dull with only Caine making much of an impression . 1 +28762 1333 the movie is remarkably dull with only Caine making much of an impression . 1 +28763 1333 is remarkably dull with only Caine making much of an impression . 1 +28764 1333 is remarkably dull with only Caine making much of an impression 2 +28765 1333 is remarkably dull with only Caine 1 +28766 1333 remarkably dull with only Caine 0 +28767 1333 dull with only Caine 1 +28768 1333 with only Caine 2 +28769 1333 only Caine 2 +28770 1333 making much of an impression 2 +28771 1333 much of an impression 2 +28772 1333 of an impression 3 +28773 1333 an impression 2 +28774 1334 Trades run-of-the-mill revulsion for extreme unease . 2 +28775 1334 Trades run-of-the-mill revulsion for extreme unease 1 +28776 1334 run-of-the-mill revulsion for extreme unease 1 +28777 1334 run-of-the-mill revulsion 0 +28778 1334 revulsion 0 +28779 1334 for extreme unease 1 +28780 1334 extreme unease 1 +28781 1334 unease 1 +28782 1335 She 's all-powerful , a voice for a pop-cyber culture that feeds on her Bjorkness . 3 +28783 1335 's all-powerful , a voice for a pop-cyber culture that feeds on her Bjorkness . 3 +28784 1335 's all-powerful , a voice for a pop-cyber culture that feeds on her Bjorkness 3 +28785 1335 all-powerful , a voice for a pop-cyber culture that feeds on her Bjorkness 3 +28786 1335 all-powerful , 3 +28787 1335 all-powerful 3 +28788 1335 a voice for a pop-cyber culture that feeds on her Bjorkness 2 +28789 1335 a voice for a pop-cyber culture 3 +28790 1335 a voice 2 +28791 1335 for a pop-cyber culture 2 +28792 1335 a pop-cyber culture 2 +28793 1335 pop-cyber culture 2 +28794 1335 pop-cyber 2 +28795 1335 that feeds on her Bjorkness 2 +28796 1335 feeds on her Bjorkness 2 +28797 1335 feeds 2 +28798 1335 on her Bjorkness 2 +28799 1335 her Bjorkness 2 +28800 1335 Bjorkness 2 +28801 1336 Like many Western action films , this thriller is too loud and thoroughly overbearing , but its heartfelt concern about North Korea 's recent past and South Korea 's future adds a much needed moral weight . 3 +28802 1336 Like many Western action films , this thriller is too loud and thoroughly overbearing , but its heartfelt concern about North Korea 's recent past and South Korea 's future adds a much needed moral weight 1 +28803 1336 Like many Western action films , this thriller is too loud and thoroughly overbearing , but 1 +28804 1336 Like many Western action films , this thriller is too loud and thoroughly overbearing , 0 +28805 1336 Like many Western action films , this thriller is too loud and thoroughly overbearing 1 +28806 1336 Like many Western action films 2 +28807 1336 many Western action films 2 +28808 1336 Western action films 2 +28809 1336 Western 2 +28810 1336 action films 2 +28811 1336 , this thriller is too loud and thoroughly overbearing 1 +28812 1336 this thriller is too loud and thoroughly overbearing 1 +28813 1336 this thriller 2 +28814 1336 is too loud and thoroughly overbearing 0 +28815 1336 too loud and thoroughly overbearing 2 +28816 1336 too loud and 1 +28817 1336 too loud 1 +28818 1336 thoroughly overbearing 1 +28819 1336 overbearing 1 +28820 1336 its heartfelt concern about North Korea 's recent past and South Korea 's future adds a much needed moral weight 3 +28821 1336 its heartfelt concern about North Korea 's recent past and South Korea 's future 3 +28822 1336 its heartfelt concern 3 +28823 1336 heartfelt concern 3 +28824 1336 concern 2 +28825 1336 about North Korea 's recent past and South Korea 's future 2 +28826 1336 North Korea 's recent past and South Korea 's future 2 +28827 1336 North Korea 's recent past and 2 +28828 1336 North Korea 's recent past 2 +28829 1336 North Korea 's 2 +28830 1336 North 2 +28831 1336 Korea 's 2 +28832 1336 Korea 2 +28833 1336 recent past 3 +28834 1336 South Korea 's future 3 +28835 1336 South Korea 's 1 +28836 1336 future 2 +28837 1336 adds a much needed moral weight 3 +28838 1336 a much needed moral weight 2 +28839 1336 much needed moral weight 2 +28840 1336 much needed 3 +28841 1336 moral weight 2 +28842 1337 The actors are fantastic . 4 +28843 1337 are fantastic . 3 +28844 1337 are fantastic 4 +28845 1338 It 's got all the familiar Bruckheimer elements , and Schumacher does probably as good a job as anyone at bringing off the Hopkins\/Rock collision of acting styles and onscreen personas . 3 +28846 1338 It 's got all the familiar Bruckheimer elements , and Schumacher does probably as good a job as anyone at bringing off the Hopkins\/Rock collision of acting styles and onscreen personas 3 +28847 1338 It 's got all the familiar Bruckheimer elements , and 2 +28848 1338 It 's got all the familiar Bruckheimer elements , 3 +28849 1338 It 's got all the familiar Bruckheimer elements 2 +28850 1338 's got all the familiar Bruckheimer elements 2 +28851 1338 got all the familiar Bruckheimer elements 2 +28852 1338 all the familiar Bruckheimer elements 2 +28853 1338 the familiar Bruckheimer elements 2 +28854 1338 familiar Bruckheimer elements 2 +28855 1338 Bruckheimer elements 2 +28856 1338 Schumacher does probably as good a job as anyone at bringing off the Hopkins\/Rock collision of acting styles and onscreen personas 3 +28857 1338 Schumacher 2 +28858 1338 does probably as good a job as anyone at bringing off the Hopkins\/Rock collision of acting styles and onscreen personas 3 +28859 1338 does probably as good a job as anyone 3 +28860 1338 does probably 2 +28861 1338 as good a job as anyone 3 +28862 1338 good a job as anyone 3 +28863 1338 good a job 2 +28864 1338 a job 2 +28865 1338 as anyone 2 +28866 1338 at bringing off the Hopkins\/Rock collision of acting styles and onscreen personas 2 +28867 1338 bringing off the Hopkins\/Rock collision of acting styles and onscreen personas 2 +28868 1338 bringing off 2 +28869 1338 bringing 2 +28870 1338 the Hopkins\/Rock collision of acting styles and onscreen personas 2 +28871 1338 the Hopkins\/Rock collision 2 +28872 1338 Hopkins\/Rock collision 1 +28873 1338 Hopkins\/Rock 2 +28874 1338 collision 1 +28875 1338 of acting styles and onscreen personas 2 +28876 1338 acting styles and onscreen personas 2 +28877 1338 styles and onscreen personas 2 +28878 1338 and onscreen personas 2 +28879 1338 onscreen personas 2 +28880 1338 personas 2 +28881 1339 The Trinity Assembly approaches the endeavor with a shocking lack of irony , and George Ratliff 's documentary , Hell House , reflects their earnestness -- which makes for a terrifying film . 2 +28882 1339 The Trinity Assembly approaches the endeavor with a shocking lack of irony , and George Ratliff 's documentary , Hell House , reflects their earnestness -- which makes for a terrifying film 2 +28883 1339 The Trinity Assembly approaches the endeavor with a shocking lack of irony , and 1 +28884 1339 The Trinity Assembly approaches the endeavor with a shocking lack of irony , 2 +28885 1339 The Trinity Assembly approaches the endeavor with a shocking lack of irony 2 +28886 1339 The Trinity Assembly 2 +28887 1339 Trinity Assembly 2 +28888 1339 Trinity 2 +28889 1339 approaches the endeavor with a shocking lack of irony 1 +28890 1339 approaches the endeavor 2 +28891 1339 approaches 2 +28892 1339 the endeavor 3 +28893 1339 with a shocking lack of irony 1 +28894 1339 a shocking lack of irony 2 +28895 1339 a shocking lack 1 +28896 1339 shocking lack 1 +28897 1339 shocking 2 +28898 1339 of irony 2 +28899 1339 George Ratliff 's documentary , Hell House , reflects their earnestness -- which makes for a terrifying film 3 +28900 1339 George Ratliff 's documentary , Hell House , 2 +28901 1339 George Ratliff 's documentary , Hell House 2 +28902 1339 George Ratliff 's documentary , 2 +28903 1339 George Ratliff 's documentary 2 +28904 1339 George Ratliff 's 2 +28905 1339 Ratliff 's 2 +28906 1339 Ratliff 2 +28907 1339 Hell House 1 +28908 1339 reflects their earnestness -- which makes for a terrifying film 3 +28909 1339 reflects 2 +28910 1339 their earnestness -- which makes for a terrifying film 3 +28911 1339 their earnestness -- 2 +28912 1339 their earnestness 3 +28913 1339 earnestness 3 +28914 1339 which makes for a terrifying film 2 +28915 1339 makes for a terrifying film 3 +28916 1339 for a terrifying film 2 +28917 1339 a terrifying film 2 +28918 1339 terrifying film 3 +28919 1339 terrifying 2 +28920 1340 Becomes the last thing you would expect from a film with this title or indeed from any Plympton film : boring . 1 +28921 1340 Becomes the last thing you would expect from a film with this title or indeed from any Plympton film : boring 1 +28922 1340 the last thing you would expect from a film with this title or indeed from any Plympton film : boring 0 +28923 1340 the last thing you would expect from a film with this title or indeed from any Plympton film : 2 +28924 1340 the last thing you would expect from a film with this title or indeed from any Plympton film 2 +28925 1340 the last thing 2 +28926 1340 last thing 2 +28927 1340 you would expect from a film with this title or indeed from any Plympton film 2 +28928 1340 would expect from a film with this title or indeed from any Plympton film 2 +28929 1340 expect from a film with this title or indeed from any Plympton film 2 +28930 1340 from a film with this title or indeed from any Plympton film 2 +28931 1340 from a film with this title 2 +28932 1340 a film with this title 2 +28933 1340 with this title 2 +28934 1340 this title 2 +28935 1340 or indeed from any Plympton film 2 +28936 1340 indeed from any Plympton film 2 +28937 1340 from any Plympton film 2 +28938 1340 any Plympton film 2 +28939 1340 Plympton film 2 +28940 1341 But it is set in a world that is very , very far from the one most of us inhabit . 2 +28941 1341 it is set in a world that is very , very far from the one most of us inhabit . 2 +28942 1341 is set in a world that is very , very far from the one most of us inhabit . 2 +28943 1341 is set in a world that is very , very far from the one most of us inhabit 2 +28944 1341 set in a world that is very , very far from the one most of us inhabit 2 +28945 1341 in a world that is very , very far from the one most of us inhabit 2 +28946 1341 a world that is very , very far from the one most of us inhabit 2 +28947 1341 that is very , very far from the one most of us inhabit 2 +28948 1341 is very , very far from the one most of us inhabit 1 +28949 1341 is very , very far 1 +28950 1341 very , very far 2 +28951 1341 , very far 2 +28952 1341 very far 2 +28953 1341 from the one most of us inhabit 2 +28954 1341 the one most of us inhabit 2 +28955 1341 the one most 2 +28956 1341 one most 2 +28957 1341 of us inhabit 2 +28958 1341 us inhabit 2 +28959 1342 Call me a cynic , but there 's something awfully deadly about any movie with a life-affirming message . 1 +28960 1342 Call me a cynic , but there 's something awfully deadly about any movie with a life-affirming message 2 +28961 1342 Call me a cynic , but 2 +28962 1342 Call me a cynic , 1 +28963 1342 Call me a cynic 2 +28964 1342 me a cynic 2 +28965 1342 a cynic 2 +28966 1342 cynic 2 +28967 1342 there 's something awfully deadly about any movie with a life-affirming message 1 +28968 1342 's something awfully deadly about any movie with a life-affirming message 1 +28969 1342 something awfully deadly about any movie with a life-affirming message 1 +28970 1342 something awfully deadly 1 +28971 1342 awfully deadly 1 +28972 1342 awfully 0 +28973 1342 about any movie with a life-affirming message 2 +28974 1342 any movie with a life-affirming message 3 +28975 1342 any movie 2 +28976 1342 with a life-affirming message 3 +28977 1342 a life-affirming message 3 +28978 1342 life-affirming message 3 +28979 1343 I have no problem with `` difficult '' movies , or movies that ask the audience to meet them halfway and connect the dots instead of having things all spelled out . 2 +28980 1343 have no problem with `` difficult '' movies , or movies that ask the audience to meet them halfway and connect the dots instead of having things all spelled out . 2 +28981 1343 have no problem with `` difficult '' movies , or movies that ask the audience to meet them halfway and connect the dots instead of having things all spelled out 2 +28982 1343 no problem with `` difficult '' movies , or movies that ask the audience to meet them halfway and connect the dots instead of having things all spelled out 2 +28983 1343 no problem with `` difficult '' movies , or 2 +28984 1343 no problem with `` difficult '' movies , 2 +28985 1343 no problem with `` difficult '' movies 2 +28986 1343 no problem 1 +28987 1343 with `` difficult '' movies 2 +28988 1343 `` difficult '' movies 2 +28989 1343 difficult '' movies 1 +28990 1343 '' movies 2 +28991 1343 movies that ask the audience to meet them halfway and connect the dots instead of having things all spelled out 2 +28992 1343 that ask the audience to meet them halfway and connect the dots instead of having things all spelled out 2 +28993 1343 ask the audience to meet them halfway and connect the dots instead of having things all spelled out 2 +28994 1343 the audience to meet them halfway and connect the dots instead of having things all spelled out 3 +28995 1343 to meet them halfway and connect the dots instead of having things all spelled out 1 +28996 1343 meet them halfway and connect the dots instead of having things all spelled out 2 +28997 1343 meet them halfway and 2 +28998 1343 meet them halfway 2 +28999 1343 meet them 2 +29000 1343 connect the dots instead of having things all spelled out 2 +29001 1343 connect the dots 2 +29002 1343 the dots 2 +29003 1343 dots 2 +29004 1343 instead of having things all spelled out 2 +29005 1343 of having things all spelled out 2 +29006 1343 having things all spelled out 2 +29007 1343 having things all 2 +29008 1343 things all 2 +29009 1343 spelled out 2 +29010 1343 spelled 2 +29011 1344 By surrounding us with hyper-artificiality , Haynes makes us see familiar issues , like racism and homophobia , in a fresh way . 3 +29012 1344 By surrounding us with hyper-artificiality 1 +29013 1344 surrounding us with hyper-artificiality 1 +29014 1344 surrounding us 3 +29015 1344 surrounding 2 +29016 1344 with hyper-artificiality 2 +29017 1344 hyper-artificiality 1 +29018 1344 , Haynes makes us see familiar issues , like racism and homophobia , in a fresh way . 2 +29019 1344 Haynes makes us see familiar issues , like racism and homophobia , in a fresh way . 3 +29020 1344 makes us see familiar issues , like racism and homophobia , in a fresh way . 3 +29021 1344 makes us see familiar issues , like racism and homophobia , in a fresh way 3 +29022 1344 us see familiar issues , like racism and homophobia , in a fresh way 3 +29023 1344 see familiar issues , like racism and homophobia , in a fresh way 3 +29024 1344 familiar issues , like racism and homophobia , in a fresh way 2 +29025 1344 familiar issues , like racism and homophobia , 2 +29026 1344 familiar issues , like racism and homophobia 2 +29027 1344 familiar issues , 2 +29028 1344 familiar issues 2 +29029 1344 like racism and homophobia 2 +29030 1344 racism and homophobia 1 +29031 1344 racism and 1 +29032 1344 racism 0 +29033 1344 homophobia 2 +29034 1344 in a fresh way 3 +29035 1344 a fresh way 3 +29036 1344 fresh way 2 +29037 1345 Though Frida is easier to swallow than Julie Taymor 's preposterous Titus , the eye candy here lacks considerable brio . 1 +29038 1345 Though Frida is easier to swallow than Julie Taymor 's preposterous Titus 2 +29039 1345 Frida is easier to swallow than Julie Taymor 's preposterous Titus 2 +29040 1345 is easier to swallow than Julie Taymor 's preposterous Titus 2 +29041 1345 is easier 2 +29042 1345 to swallow than Julie Taymor 's preposterous Titus 2 +29043 1345 swallow than Julie Taymor 's preposterous Titus 1 +29044 1345 than Julie Taymor 's preposterous Titus 1 +29045 1345 Julie Taymor 's preposterous Titus 1 +29046 1345 Julie Taymor 's 2 +29047 1345 Taymor 's 2 +29048 1345 preposterous Titus 2 +29049 1345 Titus 2 +29050 1345 , the eye candy here lacks considerable brio . 1 +29051 1345 the eye candy here lacks considerable brio . 1 +29052 1345 the eye candy 2 +29053 1345 eye candy 2 +29054 1345 here lacks considerable brio . 1 +29055 1345 lacks considerable brio . 2 +29056 1345 lacks considerable brio 1 +29057 1345 considerable brio 2 +29058 1345 brio 2 +29059 1346 Full Frontal , which opens today nationwide , could almost be classified as a movie-industry satire , but it lacks the generous inclusiveness that is the genre 's definitive , if disingenuous , feature . 1 +29060 1346 Full Frontal , which opens today nationwide , could almost be classified as a movie-industry satire , but it lacks the generous inclusiveness that is the genre 's definitive , if disingenuous , feature 1 +29061 1346 Full Frontal , which opens today nationwide , could almost be classified as a movie-industry satire , but 2 +29062 1346 Full Frontal , which opens today nationwide , could almost be classified as a movie-industry satire , 2 +29063 1346 Full Frontal , which opens today nationwide , could almost be classified as a movie-industry satire 2 +29064 1346 Full Frontal , which opens today nationwide , 2 +29065 1346 Full Frontal , which opens today nationwide 2 +29066 1346 Full Frontal , 2 +29067 1346 Full Frontal 2 +29068 1346 Frontal 2 +29069 1346 which opens today nationwide 2 +29070 1346 opens today nationwide 2 +29071 1346 opens today 3 +29072 1346 opens 2 +29073 1346 nationwide 2 +29074 1346 could almost be classified as a movie-industry satire 2 +29075 1346 could almost 2 +29076 1346 be classified as a movie-industry satire 2 +29077 1346 classified as a movie-industry satire 1 +29078 1346 classified 2 +29079 1346 as a movie-industry satire 2 +29080 1346 a movie-industry satire 3 +29081 1346 movie-industry satire 2 +29082 1346 movie-industry 2 +29083 1346 it lacks the generous inclusiveness that is the genre 's definitive , if disingenuous , feature 2 +29084 1346 lacks the generous inclusiveness that is the genre 's definitive , if disingenuous , feature 1 +29085 1346 the generous inclusiveness that is the genre 's definitive , if disingenuous , feature 2 +29086 1346 the generous inclusiveness 2 +29087 1346 generous inclusiveness 2 +29088 1346 inclusiveness 2 +29089 1346 that is the genre 's definitive , if disingenuous , feature 2 +29090 1346 is the genre 's definitive , if disingenuous , feature 2 +29091 1346 the genre 's definitive , if disingenuous , feature 2 +29092 1346 the genre 's 2 +29093 1346 genre 's 2 +29094 1346 definitive , if disingenuous , feature 1 +29095 1346 definitive , if disingenuous , 1 +29096 1346 definitive 3 +29097 1346 , if disingenuous , 1 +29098 1346 if disingenuous , 1 +29099 1346 disingenuous , 1 +29100 1346 disingenuous 1 +29101 1347 While the humor is recognizably Plympton , he has actually bothered to construct a real story this time . 3 +29102 1347 While the humor is recognizably Plympton 3 +29103 1347 the humor is recognizably Plympton 3 +29104 1347 is recognizably Plympton 3 +29105 1347 recognizably Plympton 2 +29106 1347 recognizably 2 +29107 1347 , he has actually bothered to construct a real story this time . 2 +29108 1347 he has actually bothered to construct a real story this time . 3 +29109 1347 has actually bothered to construct a real story this time . 3 +29110 1347 has actually bothered to construct a real story this time 3 +29111 1347 has actually 2 +29112 1347 bothered to construct a real story this time 3 +29113 1347 bothered 2 +29114 1347 to construct a real story this time 2 +29115 1347 construct a real story this time 2 +29116 1347 construct a real story 2 +29117 1347 construct 2 +29118 1347 a real story 3 +29119 1347 real story 2 +29120 1347 this time 2 +29121 1348 ` Drumline ' shows a level of young , Black manhood that is funny , touching , smart and complicated . 4 +29122 1348 Drumline ' shows a level of young , Black manhood that is funny , touching , smart and complicated . 4 +29123 1348 ' shows a level of young , Black manhood that is funny , touching , smart and complicated . 4 +29124 1348 shows a level of young , Black manhood that is funny , touching , smart and complicated . 4 +29125 1348 shows a level of young , Black manhood that is funny , touching , smart and complicated 4 +29126 1348 a level of young , Black manhood that is funny , touching , smart and complicated 4 +29127 1348 of young , Black manhood that is funny , touching , smart and complicated 4 +29128 1348 young , Black manhood that is funny , touching , smart and complicated 3 +29129 1348 young , Black manhood 2 +29130 1348 , Black manhood 2 +29131 1348 Black manhood 2 +29132 1348 manhood 2 +29133 1348 that is funny , touching , smart and complicated 3 +29134 1348 is funny , touching , smart and complicated 4 +29135 1348 funny , touching , smart and complicated 4 +29136 1348 , touching , smart and complicated 4 +29137 1348 touching , smart and complicated 4 +29138 1348 , smart and complicated 3 +29139 1348 smart and complicated 3 +29140 1348 smart and 3 +29141 1348 complicated 2 +29142 1349 This is a movie filled with unlikable , spiteful idiots ; whether or not their friendship is salvaged makes no difference in the least . 0 +29143 1349 This is a movie filled with unlikable , spiteful idiots ; whether or not their friendship is salvaged 0 +29144 1349 is a movie filled with unlikable , spiteful idiots ; whether or not their friendship is salvaged 1 +29145 1349 is a movie filled with unlikable , spiteful idiots ; 0 +29146 1349 is a movie filled with unlikable , spiteful idiots 0 +29147 1349 a movie filled with unlikable , spiteful idiots 0 +29148 1349 filled with unlikable , spiteful idiots 1 +29149 1349 with unlikable , spiteful idiots 1 +29150 1349 unlikable , spiteful idiots 1 +29151 1349 , spiteful idiots 1 +29152 1349 spiteful idiots 1 +29153 1349 spiteful 1 +29154 1349 idiots 0 +29155 1349 whether or not their friendship is salvaged 2 +29156 1349 whether or not 1 +29157 1349 whether or 2 +29158 1349 their friendship is salvaged 2 +29159 1349 their friendship 2 +29160 1349 is salvaged 2 +29161 1349 salvaged 2 +29162 1349 makes no difference in the least . 2 +29163 1349 makes no difference in the least 1 +29164 1349 no difference in the least 2 +29165 1349 no difference 2 +29166 1349 in the least 2 +29167 1349 the least 2 +29168 1350 This insufferable movie is meant to make you think about existential suffering . 1 +29169 1350 This insufferable movie 1 +29170 1350 insufferable movie 0 +29171 1350 insufferable 0 +29172 1350 is meant to make you think about existential suffering . 2 +29173 1350 is meant to make you think about existential suffering 2 +29174 1350 meant to make you think about existential suffering 2 +29175 1350 meant 2 +29176 1350 to make you think about existential suffering 2 +29177 1350 make you think about existential suffering 3 +29178 1350 you think about existential suffering 2 +29179 1350 think about existential suffering 2 +29180 1350 about existential suffering 1 +29181 1350 existential suffering 1 +29182 1350 existential 2 +29183 1351 This sensitive , smart , savvy , compelling coming-of-age drama delves into the passive-aggressive psychology of co-dependence and the struggle for self-esteem . 4 +29184 1351 This sensitive , smart , savvy , compelling coming-of-age drama 4 +29185 1351 sensitive , smart , savvy , compelling coming-of-age drama 4 +29186 1351 sensitive , smart , savvy , compelling 4 +29187 1351 , smart , savvy , compelling 4 +29188 1351 smart , savvy , compelling 4 +29189 1351 , savvy , compelling 3 +29190 1351 savvy , compelling 4 +29191 1351 savvy 3 +29192 1351 , compelling 3 +29193 1351 delves into the passive-aggressive psychology of co-dependence and the struggle for self-esteem . 1 +29194 1351 delves into the passive-aggressive psychology of co-dependence and the struggle for self-esteem 2 +29195 1351 delves 2 +29196 1351 into the passive-aggressive psychology of co-dependence and the struggle for self-esteem 3 +29197 1351 the passive-aggressive psychology of co-dependence and the struggle for self-esteem 2 +29198 1351 the passive-aggressive psychology of co-dependence and 2 +29199 1351 the passive-aggressive psychology of co-dependence 1 +29200 1351 the passive-aggressive psychology 2 +29201 1351 passive-aggressive psychology 3 +29202 1351 passive-aggressive 1 +29203 1351 psychology 2 +29204 1351 of co-dependence 2 +29205 1351 co-dependence 2 +29206 1351 the struggle for self-esteem 2 +29207 1351 for self-esteem 2 +29208 1351 self-esteem 2 +29209 1352 All the small moments and flashbacks do n't add up to much more than trite observations on the human condition . 1 +29210 1352 All the small moments and flashbacks 3 +29211 1352 All the small moments and 2 +29212 1352 All the small moments 2 +29213 1352 the small moments 3 +29214 1352 small moments 2 +29215 1352 flashbacks 2 +29216 1352 do n't add up to much more than trite observations on the human condition . 1 +29217 1352 do n't add up to much more than trite observations on the human condition 1 +29218 1352 add up to much more than trite observations on the human condition 2 +29219 1352 to much more than trite observations on the human condition 1 +29220 1352 much more than trite observations on the human condition 2 +29221 1352 much more than 3 +29222 1352 trite observations on the human condition 2 +29223 1352 trite 1 +29224 1352 observations on the human condition 3 +29225 1352 observations 2 +29226 1352 on the human condition 2 +29227 1352 the human condition 2 +29228 1352 human condition 2 +29229 1352 condition 2 +29230 1353 A beautifully observed character piece . 4 +29231 1353 A beautifully 3 +29232 1353 observed character piece . 3 +29233 1353 observed character piece 2 +29234 1353 character piece 3 +29235 1354 Though it inspires some -LRB- out-of-field -RRB- creative thought , the film is -- to its own detriment -- much more a cinematic collage than a polemical tract . 2 +29236 1354 Though it inspires some -LRB- out-of-field -RRB- creative thought 3 +29237 1354 it inspires some -LRB- out-of-field -RRB- creative thought 2 +29238 1354 inspires some -LRB- out-of-field -RRB- creative thought 4 +29239 1354 some -LRB- out-of-field -RRB- creative thought 3 +29240 1354 some -LRB- out-of-field -RRB- 2 +29241 1354 -LRB- out-of-field -RRB- 2 +29242 1354 out-of-field -RRB- 2 +29243 1354 out-of-field 2 +29244 1354 creative thought 3 +29245 1354 , the film is -- to its own detriment -- much more a cinematic collage than a polemical tract . 1 +29246 1354 the film is -- to its own detriment -- much more a cinematic collage than a polemical tract . 2 +29247 1354 is -- to its own detriment -- much more a cinematic collage than a polemical tract . 2 +29248 1354 is -- to its own detriment -- much more a cinematic collage than a polemical tract 2 +29249 1354 is -- to its own detriment -- much more a cinematic collage 1 +29250 1354 is -- to its own detriment -- much 1 +29251 1354 -- to its own detriment -- much 1 +29252 1354 -- to its own detriment -- 2 +29253 1354 to its own detriment -- 1 +29254 1354 to its own detriment 1 +29255 1354 its own detriment 1 +29256 1354 own detriment 2 +29257 1354 more a cinematic collage 1 +29258 1354 a cinematic collage 2 +29259 1354 cinematic collage 2 +29260 1354 collage 2 +29261 1354 than a polemical tract 2 +29262 1354 a polemical tract 1 +29263 1354 polemical tract 1 +29264 1354 polemical 2 +29265 1354 tract 2 +29266 1355 Perhaps the grossest movie ever made . 0 +29267 1355 Perhaps the grossest movie 0 +29268 1355 the grossest movie 1 +29269 1355 grossest movie 0 +29270 1355 grossest 1 +29271 1356 Does a good job of establishing a time and place , and of telling a fascinating character 's story . 3 +29272 1356 Does a good job of establishing a time and place , and of telling a fascinating character 's story 3 +29273 1356 Does a good job 3 +29274 1356 of establishing a time and place , and of telling a fascinating character 's story 3 +29275 1356 of establishing a time and place 2 +29276 1356 establishing a time and place 2 +29277 1356 establishing 2 +29278 1356 a time and place 2 +29279 1356 time and place 2 +29280 1356 time and 2 +29281 1356 , and of telling a fascinating character 's story 3 +29282 1356 of telling a fascinating character 's story 3 +29283 1356 telling a fascinating character 's story 3 +29284 1356 a fascinating character 's story 4 +29285 1356 a fascinating character 's 3 +29286 1356 fascinating character 's 3 +29287 1357 In fact , it does n't even seem like she tried . 0 +29288 1357 In fact 2 +29289 1357 , it does n't even seem like she tried . 1 +29290 1357 it does n't even seem like she tried . 0 +29291 1357 does n't even seem like she tried . 2 +29292 1357 does n't even seem like she tried 1 +29293 1357 does n't even 2 +29294 1357 seem like she tried 2 +29295 1357 like she tried 2 +29296 1357 she tried 2 +29297 1357 tried 2 +29298 1358 Spare yet audacious ... 2 +29299 1358 Spare yet audacious 2 +29300 1358 yet audacious 2 +29301 1359 With three excellent principal singers , a youthful and good-looking diva and tenor and richly handsome locations , it 's enough to make you wish Jacquot had left well enough alone and just filmed the opera without all these distortions of perspective . 2 +29302 1359 With three excellent principal singers , a youthful and good-looking diva and tenor and richly handsome locations 3 +29303 1359 three excellent principal singers , a youthful and good-looking diva and tenor and richly handsome locations 4 +29304 1359 three excellent principal singers , 3 +29305 1359 three excellent principal singers 3 +29306 1359 excellent principal singers 4 +29307 1359 principal singers 2 +29308 1359 principal 2 +29309 1359 singers 2 +29310 1359 a youthful and good-looking diva and tenor and richly handsome locations 4 +29311 1359 a youthful and good-looking diva and 3 +29312 1359 a youthful and good-looking diva 3 +29313 1359 youthful and good-looking diva 3 +29314 1359 youthful and good-looking 3 +29315 1359 youthful and 2 +29316 1359 tenor and richly handsome locations 3 +29317 1359 tenor and 2 +29318 1359 tenor 2 +29319 1359 richly handsome locations 3 +29320 1359 richly 3 +29321 1359 handsome locations 3 +29322 1359 , it 's enough to make you wish Jacquot had left well enough alone and just filmed the opera without all these distortions of perspective . 1 +29323 1359 it 's enough to make you wish Jacquot had left well enough alone and just filmed the opera without all these distortions of perspective . 1 +29324 1359 's enough to make you wish Jacquot had left well enough alone and just filmed the opera without all these distortions of perspective . 1 +29325 1359 's enough to make you wish Jacquot had left well enough alone and just filmed the opera without all these distortions of perspective 1 +29326 1359 enough to make you wish Jacquot had left well enough alone and just filmed the opera without all these distortions of perspective 1 +29327 1359 to make you wish Jacquot had left well enough alone and just filmed the opera without all these distortions of perspective 1 +29328 1359 make you wish Jacquot had left well enough alone and just filmed the opera without all these distortions of perspective 1 +29329 1359 you wish Jacquot had left well enough alone and just filmed the opera without all these distortions of perspective 1 +29330 1359 wish Jacquot had left well enough alone and just filmed the opera without all these distortions of perspective 1 +29331 1359 Jacquot had left well enough alone and just filmed the opera without all these distortions of perspective 1 +29332 1359 had left well enough alone and just filmed the opera without all these distortions of perspective 2 +29333 1359 left well enough alone and just filmed the opera without all these distortions of perspective 2 +29334 1359 left well enough alone and just 1 +29335 1359 left well enough alone and 2 +29336 1359 left well enough alone 2 +29337 1359 well enough alone 2 +29338 1359 enough alone 2 +29339 1359 filmed the opera without all these distortions of perspective 2 +29340 1359 filmed the opera 2 +29341 1359 the opera 2 +29342 1359 without all these distortions of perspective 2 +29343 1359 all these distortions of perspective 2 +29344 1359 all these distortions 1 +29345 1359 these distortions 2 +29346 1359 distortions 1 +29347 1359 of perspective 2 +29348 1360 After several scenes of this tacky nonsense , you 'll be wistful for the testosterone-charged wizardry of Jerry Bruckheimer productions , especially because Half Past Dead is like The Rock on a Wal-Mart budget . 0 +29349 1360 After several scenes of this tacky nonsense 1 +29350 1360 several scenes of this tacky nonsense 1 +29351 1360 several scenes 2 +29352 1360 of this tacky nonsense 1 +29353 1360 this tacky nonsense 2 +29354 1360 tacky nonsense 1 +29355 1360 tacky 2 +29356 1360 nonsense 1 +29357 1360 , you 'll be wistful for the testosterone-charged wizardry of Jerry Bruckheimer productions , especially because Half Past Dead is like The Rock on a Wal-Mart budget . 2 +29358 1360 you 'll be wistful for the testosterone-charged wizardry of Jerry Bruckheimer productions , especially because Half Past Dead is like The Rock on a Wal-Mart budget . 0 +29359 1360 'll be wistful for the testosterone-charged wizardry of Jerry Bruckheimer productions , especially because Half Past Dead is like The Rock on a Wal-Mart budget . 1 +29360 1360 'll be wistful for the testosterone-charged wizardry of Jerry Bruckheimer productions , especially because Half Past Dead is like The Rock on a Wal-Mart budget 1 +29361 1360 be wistful for the testosterone-charged wizardry of Jerry Bruckheimer productions , especially because Half Past Dead is like The Rock on a Wal-Mart budget 2 +29362 1360 be wistful for the testosterone-charged wizardry of Jerry Bruckheimer productions , 2 +29363 1360 be wistful for the testosterone-charged wizardry of Jerry Bruckheimer productions 2 +29364 1360 be wistful 2 +29365 1360 wistful 2 +29366 1360 for the testosterone-charged wizardry of Jerry Bruckheimer productions 3 +29367 1360 the testosterone-charged wizardry of Jerry Bruckheimer productions 3 +29368 1360 the testosterone-charged wizardry 2 +29369 1360 testosterone-charged wizardry 2 +29370 1360 testosterone-charged 2 +29371 1360 wizardry 2 +29372 1360 of Jerry Bruckheimer productions 2 +29373 1360 Jerry Bruckheimer productions 2 +29374 1360 Bruckheimer productions 2 +29375 1360 especially because Half Past Dead is like The Rock on a Wal-Mart budget 0 +29376 1360 because Half Past Dead is like The Rock on a Wal-Mart budget 1 +29377 1360 Half Past Dead is like The Rock on a Wal-Mart budget 0 +29378 1360 Half Past Dead 2 +29379 1360 Past Dead 2 +29380 1360 is like The Rock on a Wal-Mart budget 2 +29381 1360 like The Rock on a Wal-Mart budget 1 +29382 1360 The Rock on a Wal-Mart budget 1 +29383 1360 on a Wal-Mart budget 1 +29384 1360 a Wal-Mart budget 1 +29385 1360 Wal-Mart budget 1 +29386 1360 Wal-Mart 2 +29387 1361 Could n't someone take Rob Schneider and have him switch bodies with a funny person ? 1 +29388 1361 Could n't someone take Rob Schneider and have him switch bodies with a funny person 0 +29389 1361 Could n't someone 2 +29390 1361 take Rob Schneider and have him switch bodies with a funny person 2 +29391 1361 take Rob Schneider and 2 +29392 1361 take Rob Schneider 2 +29393 1361 have him switch bodies with a funny person 2 +29394 1361 him switch bodies with a funny person 2 +29395 1361 switch bodies with a funny person 2 +29396 1361 switch bodies 2 +29397 1361 with a funny person 2 +29398 1361 a funny person 2 +29399 1361 funny person 2 +29400 1362 Formuliac , but fun . 3 +29401 1362 Formuliac 1 +29402 1362 , but fun . 3 +29403 1362 but fun . 3 +29404 1362 but fun 3 +29405 1363 What might have been acceptable on the printed page of Iles ' book does not translate well to the screen . 0 +29406 1363 What might have been acceptable on the printed page of Iles ' book 2 +29407 1363 might have been acceptable on the printed page of Iles ' book 2 +29408 1363 have been acceptable on the printed page of Iles ' book 2 +29409 1363 been acceptable on the printed page of Iles ' book 2 +29410 1363 acceptable on the printed page of Iles ' book 2 +29411 1363 on the printed page of Iles ' book 2 +29412 1363 the printed page of Iles ' book 2 +29413 1363 the printed page 2 +29414 1363 printed page 2 +29415 1363 printed 2 +29416 1363 page 2 +29417 1363 of Iles ' book 2 +29418 1363 Iles ' book 2 +29419 1363 Iles ' 2 +29420 1363 Iles 3 +29421 1363 does not translate well to the screen . 2 +29422 1363 does not translate well to the screen 1 +29423 1363 does not 2 +29424 1363 translate well to the screen 3 +29425 1363 to the screen 2 +29426 1364 The sight of the spaceship on the launching pad is duly impressive in IMAX dimensions , as are shots of the astronauts floating in their cabins . 3 +29427 1364 The sight of the spaceship on the launching pad 2 +29428 1364 The sight 2 +29429 1364 sight 2 +29430 1364 of the spaceship on the launching pad 2 +29431 1364 the spaceship on the launching pad 2 +29432 1364 the spaceship 2 +29433 1364 spaceship 2 +29434 1364 on the launching pad 2 +29435 1364 the launching pad 2 +29436 1364 launching pad 2 +29437 1364 launching 2 +29438 1364 pad 2 +29439 1364 is duly impressive in IMAX dimensions , as are shots of the astronauts floating in their cabins . 4 +29440 1364 is duly impressive in IMAX dimensions , as are shots of the astronauts floating in their cabins 3 +29441 1364 is duly impressive in IMAX dimensions , 4 +29442 1364 is duly impressive in IMAX dimensions 2 +29443 1364 duly impressive in IMAX dimensions 3 +29444 1364 duly 2 +29445 1364 impressive in IMAX dimensions 4 +29446 1364 in IMAX dimensions 2 +29447 1364 IMAX dimensions 2 +29448 1364 dimensions 2 +29449 1364 as are shots of the astronauts floating in their cabins 2 +29450 1364 are shots of the astronauts floating in their cabins 2 +29451 1364 shots of the astronauts floating in their cabins 2 +29452 1364 of the astronauts floating in their cabins 2 +29453 1364 the astronauts floating in their cabins 2 +29454 1364 the astronauts 2 +29455 1364 astronauts 2 +29456 1364 floating in their cabins 2 +29457 1364 floating 2 +29458 1364 in their cabins 2 +29459 1364 their cabins 2 +29460 1364 cabins 2 +29461 1365 As Hannibal would say , yes , ` It 's like having an old friend for dinner ' . 3 +29462 1365 As Hannibal would say 2 +29463 1365 Hannibal would say 2 +29464 1365 Hannibal 2 +29465 1365 would say 2 +29466 1365 , yes , ` It 's like having an old friend for dinner ' . 3 +29467 1365 yes , ` It 's like having an old friend for dinner ' . 3 +29468 1365 , ` It 's like having an old friend for dinner ' . 3 +29469 1365 ` It 's like having an old friend for dinner ' . 4 +29470 1365 ` It 2 +29471 1365 's like having an old friend for dinner ' . 3 +29472 1365 's like having an old friend for dinner ' 3 +29473 1365 like having an old friend for dinner ' 3 +29474 1365 having an old friend for dinner ' 3 +29475 1365 having an old friend 3 +29476 1365 an old friend 2 +29477 1365 old friend 2 +29478 1365 friend 3 +29479 1365 for dinner ' 2 +29480 1365 dinner ' 2 +29481 1365 dinner 2 +29482 1366 Williams absolutely nails Sy 's queasy infatuation and overall strangeness . 3 +29483 1366 absolutely nails Sy 's queasy infatuation and overall strangeness . 2 +29484 1366 nails Sy 's queasy infatuation and overall strangeness . 3 +29485 1366 nails Sy 's queasy infatuation and overall strangeness 1 +29486 1366 nails 2 +29487 1366 Sy 's queasy infatuation and overall strangeness 2 +29488 1366 Sy 's 2 +29489 1366 queasy infatuation and overall strangeness 1 +29490 1366 queasy 1 +29491 1366 infatuation and overall strangeness 2 +29492 1366 infatuation 3 +29493 1366 and overall strangeness 2 +29494 1366 overall strangeness 2 +29495 1367 Paul Bettany is good at being the ultra-violent gangster wannabe , but the movie is certainly not number 1 . 1 +29496 1367 Paul Bettany is good at being the ultra-violent gangster wannabe , but the movie is certainly not number 1 2 +29497 1367 Paul Bettany is good at being the ultra-violent gangster wannabe , but 2 +29498 1367 Paul Bettany is good at being the ultra-violent gangster wannabe , 3 +29499 1367 Paul Bettany is good at being the ultra-violent gangster wannabe 3 +29500 1367 is good at being the ultra-violent gangster wannabe 3 +29501 1367 good at being the ultra-violent gangster wannabe 3 +29502 1367 at being the ultra-violent gangster wannabe 2 +29503 1367 being the ultra-violent gangster wannabe 1 +29504 1367 the ultra-violent gangster wannabe 2 +29505 1367 ultra-violent gangster wannabe 1 +29506 1367 ultra-violent 1 +29507 1367 gangster wannabe 2 +29508 1367 wannabe 1 +29509 1367 the movie is certainly not number 1 1 +29510 1367 is certainly not number 1 2 +29511 1367 is certainly 2 +29512 1367 not number 1 1 +29513 1367 number 1 3 +29514 1367 1 2 +29515 1368 This is the kind of movie that you only need to watch for about thirty seconds before you say to yourself , ` Ah , yes , here we have a bad , bad , bad movie . ' 0 +29516 1368 This is the kind of movie that you only need to watch for about thirty seconds before you say to yourself , ` Ah , yes , here we have a bad , bad , bad movie . 0 +29517 1368 This is the kind of movie that you only need to watch for about thirty seconds before you say to yourself , ` Ah , yes , here we have a bad , bad , bad movie 0 +29518 1368 This is the kind of movie that you only need to watch for about thirty seconds before you say to yourself , ` Ah , yes , here 1 +29519 1368 This is the kind of movie that you only need to watch for about thirty seconds before you say to yourself , ` Ah , yes , 3 +29520 1368 This is the kind of movie that you only need to watch for about thirty seconds before you say to yourself , ` Ah , yes 2 +29521 1368 is the kind of movie that you only need to watch for about thirty seconds before you say to yourself , ` Ah , yes 2 +29522 1368 is the kind of movie 2 +29523 1368 the kind of movie 2 +29524 1368 that you only need to watch for about thirty seconds before you say to yourself , ` Ah , yes 2 +29525 1368 you only need to watch for about thirty seconds before you say to yourself , ` Ah , yes 3 +29526 1368 only need to watch for about thirty seconds before you say to yourself , ` Ah , yes 3 +29527 1368 need to watch for about thirty seconds before you say to yourself , ` Ah , yes 2 +29528 1368 to watch for about thirty seconds before you say to yourself , ` Ah , yes 2 +29529 1368 watch for about thirty seconds before you say to yourself , ` Ah , yes 2 +29530 1368 watch for about thirty seconds before you say to yourself , ` 2 +29531 1368 watch for about thirty seconds before you say to yourself , 1 +29532 1368 watch for about thirty seconds before you say to yourself 1 +29533 1368 watch for about thirty seconds 2 +29534 1368 for about thirty seconds 2 +29535 1368 about thirty seconds 2 +29536 1368 thirty seconds 2 +29537 1368 thirty 2 +29538 1368 before you say to yourself 2 +29539 1368 you say to yourself 2 +29540 1368 say to yourself 2 +29541 1368 to yourself 2 +29542 1368 we have a bad , bad , bad movie 0 +29543 1368 have a bad , bad , bad movie 1 +29544 1368 a bad , bad , bad movie 0 +29545 1368 bad , bad , bad movie 1 +29546 1368 , bad , bad movie 0 +29547 1368 bad , bad movie 0 +29548 1368 , bad movie 1 +29549 1368 bad movie 0 +29550 1369 Personally , I 'd rather watch them on the Animal Planet . 0 +29551 1369 Personally 2 +29552 1369 , I 'd rather watch them on the Animal Planet . 0 +29553 1369 I 'd rather watch them on the Animal Planet . 1 +29554 1369 'd rather watch them on the Animal Planet . 1 +29555 1369 'd rather watch them on the Animal Planet 1 +29556 1369 watch them on the Animal Planet 2 +29557 1369 watch them 2 +29558 1369 on the Animal Planet 2 +29559 1369 the Animal Planet 2 +29560 1369 Animal Planet 2 +29561 1370 The lively appeal of The Last Kiss lies in the ease with which it integrates thoughtfulness and pasta-fagioli comedy . 4 +29562 1370 The lively appeal of The Last Kiss 3 +29563 1370 The lively appeal 3 +29564 1370 lively appeal 2 +29565 1370 of The Last Kiss 2 +29566 1370 lies in the ease with which it integrates thoughtfulness and pasta-fagioli comedy . 3 +29567 1370 lies in the ease with which it integrates thoughtfulness and pasta-fagioli comedy 3 +29568 1370 lies 2 +29569 1370 in the ease with which it integrates thoughtfulness and pasta-fagioli comedy 3 +29570 1370 the ease with which it integrates thoughtfulness and pasta-fagioli comedy 3 +29571 1370 the ease 2 +29572 1370 ease 2 +29573 1370 with which it integrates thoughtfulness and pasta-fagioli comedy 3 +29574 1370 with which 2 +29575 1370 it integrates thoughtfulness and pasta-fagioli comedy 3 +29576 1370 integrates thoughtfulness and pasta-fagioli comedy 3 +29577 1370 integrates 2 +29578 1370 thoughtfulness and pasta-fagioli comedy 2 +29579 1370 and pasta-fagioli comedy 3 +29580 1370 pasta-fagioli comedy 2 +29581 1370 pasta-fagioli 2 +29582 1371 An annoying orgy of excess and exploitation that has no point and goes nowhere . 0 +29583 1371 An annoying orgy of excess and exploitation that has no point and goes nowhere 0 +29584 1371 An annoying orgy of excess and exploitation 1 +29585 1371 An annoying orgy 0 +29586 1371 annoying orgy 1 +29587 1371 orgy 1 +29588 1371 of excess and exploitation 2 +29589 1371 excess and exploitation 2 +29590 1371 excess and 2 +29591 1371 excess 2 +29592 1371 exploitation 1 +29593 1371 that has no point and goes nowhere 0 +29594 1371 has no point and goes nowhere 0 +29595 1371 has no point and 0 +29596 1371 has no point 1 +29597 1372 This deeply spiritual film taps into the meaning and consolation in afterlife communications . 3 +29598 1372 deeply spiritual film taps into the meaning and consolation in afterlife communications . 3 +29599 1372 spiritual film taps into the meaning and consolation in afterlife communications . 3 +29600 1372 spiritual film taps into the meaning and consolation in afterlife communications 3 +29601 1372 spiritual film taps 3 +29602 1372 film taps 2 +29603 1372 taps 2 +29604 1372 into the meaning and consolation in afterlife communications 2 +29605 1372 the meaning and consolation in afterlife communications 2 +29606 1372 the meaning and consolation 2 +29607 1372 meaning and consolation 2 +29608 1372 meaning and 2 +29609 1372 in afterlife communications 2 +29610 1372 afterlife communications 2 +29611 1372 afterlife 3 +29612 1372 communications 2 +29613 1373 There are now two signs that M. Night Shyamalan 's debut feature sucked up all he has to give to the mystic genres of cinema : Unbreakable and Signs . 0 +29614 1373 are now two signs that M. Night Shyamalan 's debut feature sucked up all he has to give to the mystic genres of cinema : Unbreakable and Signs . 2 +29615 1373 are now two signs that M. Night Shyamalan 's debut feature sucked up all he has to give to the mystic genres of cinema : Unbreakable and Signs 2 +29616 1373 are now 2 +29617 1373 two signs that M. Night Shyamalan 's debut feature sucked up all he has to give to the mystic genres of cinema : Unbreakable and Signs 1 +29618 1373 two signs that M. Night Shyamalan 's debut feature sucked up all he has to give to the mystic genres of cinema : 2 +29619 1373 two signs that M. Night Shyamalan 's debut feature sucked up all he has to give to the mystic genres of cinema 1 +29620 1373 two signs 2 +29621 1373 that M. Night Shyamalan 's debut feature sucked up all he has to give to the mystic genres of cinema 2 +29622 1373 M. Night Shyamalan 's debut feature sucked up all he has to give to the mystic genres of cinema 1 +29623 1373 M. Night Shyamalan 's debut feature 2 +29624 1373 M. Night Shyamalan 's 2 +29625 1373 M. 2 +29626 1373 Night Shyamalan 's 2 +29627 1373 Shyamalan 's 2 +29628 1373 debut feature 2 +29629 1373 sucked up all he has to give to the mystic genres of cinema 2 +29630 1373 sucked up all 1 +29631 1373 sucked 0 +29632 1373 up all 2 +29633 1373 he has to give to the mystic genres of cinema 2 +29634 1373 has to give to the mystic genres of cinema 2 +29635 1373 to give to the mystic genres of cinema 2 +29636 1373 give to the mystic genres of cinema 2 +29637 1373 to the mystic genres of cinema 2 +29638 1373 the mystic genres of cinema 2 +29639 1373 the mystic genres 2 +29640 1373 mystic genres 2 +29641 1373 mystic 3 +29642 1373 genres 2 +29643 1373 Unbreakable and Signs 2 +29644 1373 Unbreakable and 2 +29645 1373 Unbreakable 3 +29646 1374 The filmmakers try to balance pointed , often incisive satire and unabashed sweetness , with results that are sometimes bracing , sometimes baffling and quite often , and in unexpected ways , touching . 3 +29647 1374 try to balance pointed , often incisive satire and unabashed sweetness , with results that are sometimes bracing , sometimes baffling and quite often , and in unexpected ways , touching . 4 +29648 1374 try to balance pointed , often incisive satire and unabashed sweetness , with results that are sometimes bracing , sometimes baffling and quite often , and in unexpected ways , touching 3 +29649 1374 to balance pointed , often incisive satire and unabashed sweetness , with results that are sometimes bracing , sometimes baffling and quite often , and in unexpected ways , touching 3 +29650 1374 balance pointed , often incisive satire and unabashed sweetness , with results that are sometimes bracing , sometimes baffling and quite often , and in unexpected ways , touching 4 +29651 1374 balance pointed , often incisive satire and unabashed sweetness , 3 +29652 1374 balance pointed , often incisive satire and unabashed sweetness 3 +29653 1374 pointed , often incisive satire and unabashed sweetness 3 +29654 1374 , often incisive satire and unabashed sweetness 3 +29655 1374 often incisive satire and unabashed sweetness 3 +29656 1374 often incisive 2 +29657 1374 incisive 2 +29658 1374 satire and unabashed sweetness 3 +29659 1374 and unabashed sweetness 3 +29660 1374 unabashed sweetness 3 +29661 1374 unabashed 2 +29662 1374 with results that are sometimes bracing , sometimes baffling and quite often , and in unexpected ways , touching 4 +29663 1374 with results that are sometimes bracing , sometimes baffling and quite often , and 3 +29664 1374 with results that are sometimes bracing , sometimes baffling and quite often , 3 +29665 1374 results that are sometimes bracing , sometimes baffling and quite often , 2 +29666 1374 results that are sometimes bracing , sometimes baffling and quite often 2 +29667 1374 results that are sometimes bracing , 2 +29668 1374 results that are sometimes bracing 3 +29669 1374 that are sometimes bracing 2 +29670 1374 are sometimes bracing 3 +29671 1374 are sometimes 2 +29672 1374 bracing 3 +29673 1374 sometimes baffling and quite often 2 +29674 1374 sometimes baffling and 2 +29675 1374 sometimes baffling 2 +29676 1374 quite often 2 +29677 1374 in unexpected ways , touching 3 +29678 1374 unexpected ways , touching 3 +29679 1374 unexpected ways , 2 +29680 1374 unexpected ways 2 +29681 1375 Does little to elaborate the conceit of setting this blood-soaked tragedy of murderous ambition in the era of Richard Nixon . 2 +29682 1375 Does little to elaborate the conceit of setting this blood-soaked tragedy of murderous ambition in the era of Richard Nixon 1 +29683 1375 little to elaborate the conceit of setting this blood-soaked tragedy of murderous ambition in the era of Richard Nixon 1 +29684 1375 to elaborate the conceit of setting this blood-soaked tragedy of murderous ambition in the era of Richard Nixon 2 +29685 1375 elaborate the conceit of setting this blood-soaked tragedy of murderous ambition in the era of Richard Nixon 1 +29686 1375 elaborate 2 +29687 1375 the conceit of setting this blood-soaked tragedy of murderous ambition in the era of Richard Nixon 1 +29688 1375 the conceit 2 +29689 1375 conceit 1 +29690 1375 of setting this blood-soaked tragedy of murderous ambition in the era of Richard Nixon 2 +29691 1375 setting this blood-soaked tragedy of murderous ambition in the era of Richard Nixon 2 +29692 1375 setting this blood-soaked tragedy of murderous ambition 2 +29693 1375 this blood-soaked tragedy of murderous ambition 2 +29694 1375 this blood-soaked tragedy 2 +29695 1375 blood-soaked tragedy 2 +29696 1375 blood-soaked 2 +29697 1375 of murderous ambition 2 +29698 1375 murderous ambition 3 +29699 1375 murderous 1 +29700 1375 in the era of Richard Nixon 2 +29701 1375 the era of Richard Nixon 3 +29702 1375 the era 2 +29703 1375 of Richard Nixon 3 +29704 1375 Richard Nixon 2 +29705 1375 Nixon 2 +29706 1376 Go , girls , right down the reality drain . 1 +29707 1376 Go , girls , right down the reality drain 2 +29708 1376 Go , 2 +29709 1376 girls , right down the reality drain 1 +29710 1376 girls , 2 +29711 1376 right down the reality drain 1 +29712 1376 down the reality drain 1 +29713 1376 the reality drain 2 +29714 1376 reality drain 1 +29715 1376 drain 1 +29716 1377 The power of Shanghai Ghetto , a documentary by Dana Janklowicz-Mann and Amir Mann , rests in the voices of men and women , now in their 70s , who lived there in the 1940s . 3 +29717 1377 The power of Shanghai Ghetto , a documentary by Dana Janklowicz-Mann and Amir Mann , 3 +29718 1377 The power of Shanghai Ghetto , a documentary by Dana Janklowicz-Mann and Amir Mann 2 +29719 1377 The power of Shanghai Ghetto , 2 +29720 1377 The power of Shanghai Ghetto 3 +29721 1377 of Shanghai Ghetto 2 +29722 1377 Shanghai Ghetto 2 +29723 1377 Ghetto 1 +29724 1377 a documentary by Dana Janklowicz-Mann and Amir Mann 2 +29725 1377 by Dana Janklowicz-Mann and Amir Mann 2 +29726 1377 Dana Janklowicz-Mann and Amir Mann 2 +29727 1377 Dana Janklowicz-Mann and 2 +29728 1377 Dana Janklowicz-Mann 2 +29729 1377 Janklowicz-Mann 2 +29730 1377 Amir Mann 2 +29731 1377 Amir 2 +29732 1377 Mann 2 +29733 1377 rests in the voices of men and women , now in their 70s , who lived there in the 1940s . 2 +29734 1377 rests in the voices of men and women , now in their 70s , who lived there in the 1940s 2 +29735 1377 rests in the voices of men and women , now 2 +29736 1377 rests 2 +29737 1377 in the voices of men and women , now 2 +29738 1377 in the voices of men and women , 2 +29739 1377 in the voices of men and women 2 +29740 1377 the voices of men and women 2 +29741 1377 the voices 2 +29742 1377 voices 2 +29743 1377 of men and women 2 +29744 1377 men and women 2 +29745 1377 men and 2 +29746 1377 in their 70s , who lived there in the 1940s 2 +29747 1377 their 70s , who lived there in the 1940s 2 +29748 1377 their 70s , 2 +29749 1377 their 70s 2 +29750 1377 70s 2 +29751 1377 who lived there in the 1940s 2 +29752 1377 lived there in the 1940s 2 +29753 1377 lived there 2 +29754 1377 in the 1940s 2 +29755 1377 the 1940s 2 +29756 1377 1940s 2 +29757 1378 Funny and touching . 3 +29758 1378 Funny and touching 3 +29759 1379 There is nothing redeeming about this movie . 0 +29760 1379 is nothing redeeming about this movie . 1 +29761 1379 is nothing redeeming about this movie 0 +29762 1379 is nothing 2 +29763 1379 redeeming about this movie 2 +29764 1379 redeeming 2 +29765 1380 It 's a spectacular performance - ahem , we hope it 's only acting . 3 +29766 1380 It 's a spectacular performance - ahem 3 +29767 1380 's a spectacular performance - ahem 3 +29768 1380 a spectacular performance - ahem 4 +29769 1380 spectacular performance - ahem 4 +29770 1380 performance - ahem 1 +29771 1380 - ahem 2 +29772 1380 ahem 2 +29773 1380 , we hope it 's only acting . 3 +29774 1380 we hope it 's only acting . 2 +29775 1380 hope it 's only acting . 2 +29776 1380 hope it 's only acting 2 +29777 1380 it 's only acting 2 +29778 1380 's only acting 2 +29779 1380 's only 2 +29780 1381 The waterlogged script plumbs uncharted depths of stupidity , incoherence and sub-sophomoric sexual banter . 0 +29781 1381 The waterlogged script 1 +29782 1381 waterlogged script 1 +29783 1381 waterlogged 2 +29784 1381 plumbs uncharted depths of stupidity , incoherence and sub-sophomoric sexual banter . 0 +29785 1381 plumbs uncharted depths of stupidity , incoherence and sub-sophomoric sexual banter 0 +29786 1381 plumbs 2 +29787 1381 uncharted depths of stupidity , incoherence and sub-sophomoric sexual banter 0 +29788 1381 uncharted depths 4 +29789 1381 uncharted 2 +29790 1381 depths 2 +29791 1381 of stupidity , incoherence and sub-sophomoric sexual banter 0 +29792 1381 stupidity , incoherence and sub-sophomoric sexual banter 1 +29793 1381 stupidity , incoherence and sub-sophomoric 0 +29794 1381 stupidity 1 +29795 1381 , incoherence and sub-sophomoric 3 +29796 1381 incoherence and sub-sophomoric 1 +29797 1381 incoherence and 1 +29798 1381 sub-sophomoric 1 +29799 1381 sexual banter 2 +29800 1382 It concentrates far too much on the awkward interplay and utter lack of chemistry between Chan and Hewitt . 1 +29801 1382 concentrates far too much on the awkward interplay and utter lack of chemistry between Chan and Hewitt . 1 +29802 1382 concentrates far too much on the awkward interplay and utter lack of chemistry between Chan and Hewitt 1 +29803 1382 concentrates far too much 1 +29804 1382 concentrates 2 +29805 1382 on the awkward interplay and utter lack of chemistry between Chan and Hewitt 1 +29806 1382 the awkward interplay and utter lack of chemistry between Chan and Hewitt 1 +29807 1382 the awkward interplay and utter lack 2 +29808 1382 awkward interplay and utter lack 1 +29809 1382 interplay and utter lack 1 +29810 1382 interplay 2 +29811 1382 and utter lack 2 +29812 1382 utter lack 1 +29813 1382 utter 2 +29814 1382 of chemistry between Chan and Hewitt 2 +29815 1382 chemistry between Chan and Hewitt 2 +29816 1382 between Chan and Hewitt 2 +29817 1382 Chan and Hewitt 2 +29818 1382 Chan and 2 +29819 1382 Hewitt 2 +29820 1383 A stirring tribute to the bravery and dedication of the world 's reporters who willingly walk into the nightmare of war not only to record the events for posterity , but to help us clearly see the world of our making . 4 +29821 1383 A stirring tribute to the bravery and dedication of the world 's reporters who willingly walk into the nightmare of war not only to record the events for posterity , but to help us 3 +29822 1383 A stirring tribute 3 +29823 1383 stirring tribute 3 +29824 1383 tribute 3 +29825 1383 to the bravery and dedication of the world 's reporters who willingly walk into the nightmare of war not only to record the events for posterity , but to help us 3 +29826 1383 the bravery and dedication of the world 's reporters who willingly walk into the nightmare of war not only to record the events for posterity , but to help us 2 +29827 1383 the bravery and dedication of the world 's reporters 2 +29828 1383 the bravery and dedication 3 +29829 1383 bravery and dedication 3 +29830 1383 bravery and 2 +29831 1383 bravery 3 +29832 1383 of the world 's reporters 2 +29833 1383 the world 's reporters 2 +29834 1383 the world 's 2 +29835 1383 world 's 2 +29836 1383 reporters 2 +29837 1383 who willingly walk into the nightmare of war not only to record the events for posterity , but to help us 3 +29838 1383 willingly walk into the nightmare of war not only to record the events for posterity , but to help us 2 +29839 1383 willingly 2 +29840 1383 walk into the nightmare of war not only to record the events for posterity , but to help us 2 +29841 1383 walk into the nightmare of war 2 +29842 1383 into the nightmare of war 2 +29843 1383 the nightmare of war 1 +29844 1383 the nightmare 1 +29845 1383 not only to record the events for posterity , but to help us 3 +29846 1383 only to record the events for posterity , but to help us 2 +29847 1383 only to record the events for posterity , but 3 +29848 1383 only to record the events for posterity , 2 +29849 1383 only to record the events for posterity 2 +29850 1383 to record the events for posterity 2 +29851 1383 record the events for posterity 2 +29852 1383 record the events 2 +29853 1383 the events 2 +29854 1383 for posterity 2 +29855 1383 posterity 2 +29856 1383 to help us 2 +29857 1383 help us 2 +29858 1383 clearly see the world of our making . 3 +29859 1383 see the world of our making . 2 +29860 1383 see the world of our making 2 +29861 1383 the world of our making 2 +29862 1383 of our making 3 +29863 1383 our making 2 +29864 1384 A lot like the imaginary sport it projects onto the screen -- loud , violent and mindless . 1 +29865 1384 like the imaginary sport it projects onto the screen -- loud , violent and mindless . 1 +29866 1384 like the imaginary sport it projects onto the screen -- loud , violent and mindless 0 +29867 1384 the imaginary sport it projects onto the screen -- loud , violent and mindless 1 +29868 1384 the imaginary sport 2 +29869 1384 imaginary sport 2 +29870 1384 imaginary 3 +29871 1384 it projects onto the screen -- loud , violent and mindless 1 +29872 1384 projects onto the screen -- loud , violent and mindless 1 +29873 1384 onto the screen -- loud , violent and mindless 1 +29874 1384 the screen -- loud , violent and mindless 1 +29875 1384 the screen -- 2 +29876 1384 loud , violent and mindless 1 +29877 1384 , violent and mindless 1 +29878 1384 violent and mindless 0 +29879 1384 violent and 1 +29880 1385 If you like an extreme action-packed film with a hint of humor , then Triple X marks the spot . 3 +29881 1385 If you like an extreme action-packed film with a hint of humor 3 +29882 1385 you like an extreme action-packed film with a hint of humor 4 +29883 1385 like an extreme action-packed film with a hint of humor 3 +29884 1385 like an extreme action-packed film 3 +29885 1385 an extreme action-packed film 3 +29886 1385 extreme action-packed film 3 +29887 1385 action-packed film 3 +29888 1385 with a hint of humor 2 +29889 1385 a hint of humor 3 +29890 1385 a hint 3 +29891 1385 hint 3 +29892 1385 , then Triple X marks the spot . 3 +29893 1385 then Triple X marks the spot . 3 +29894 1385 Triple X marks the spot . 3 +29895 1385 marks the spot . 3 +29896 1385 marks the spot 2 +29897 1385 the spot 2 +29898 1386 The simplicity of The Way Home has few equals this side of Aesop 2 +29899 1386 The simplicity of The Way Home 2 +29900 1386 The simplicity 2 +29901 1386 simplicity 2 +29902 1386 of The Way Home 2 +29903 1386 The Way Home 3 +29904 1386 Way Home 2 +29905 1386 has few equals this side of Aesop 3 +29906 1386 few equals this side of Aesop 3 +29907 1386 equals this side of Aesop 2 +29908 1386 this side of Aesop 2 +29909 1386 this side 2 +29910 1386 of Aesop 2 +29911 1386 Aesop 2 +29912 1387 The only reason you should see this movie is if you have a case of masochism and an hour and a half to blow . 1 +29913 1387 The only reason you should see this movie 2 +29914 1387 you should see this movie 4 +29915 1387 should see this movie 3 +29916 1387 see this movie 4 +29917 1387 is if you have a case of masochism and an hour and a half to blow . 0 +29918 1387 is if you have a case of masochism and an hour and a half to blow 0 +29919 1387 if you have a case of masochism and an hour and a half to blow 2 +29920 1387 you have a case of masochism and an hour and a half to blow 0 +29921 1387 have a case of masochism and an hour and a half to blow 0 +29922 1387 have a case of masochism and an hour and a half 1 +29923 1387 a case of masochism and an hour and a half 1 +29924 1387 a case of masochism and 2 +29925 1387 a case of masochism 2 +29926 1387 of masochism 2 +29927 1387 masochism 1 +29928 1387 an hour and a half 2 +29929 1387 to blow 2 +29930 1387 blow 2 +29931 1388 The film is saved from are n't - kids-cute sentimentality by a warmth that is n't faked and a stately sense of composition . 3 +29932 1388 The film is saved from 2 +29933 1388 is saved from 2 +29934 1388 saved from 3 +29935 1388 are n't - kids-cute sentimentality by a warmth that is n't faked and a stately sense of composition . 3 +29936 1388 are n't - kids-cute sentimentality by a warmth that is n't faked and a stately sense of composition 3 +29937 1388 - kids-cute sentimentality by a warmth that is n't faked and a stately sense of composition 2 +29938 1388 - kids-cute sentimentality by a warmth that is n't faked and 3 +29939 1388 - kids-cute sentimentality by a warmth that is n't faked 3 +29940 1388 kids-cute sentimentality by a warmth that is n't faked 3 +29941 1388 kids-cute sentimentality 3 +29942 1388 kids-cute 3 +29943 1388 by a warmth that is n't faked 3 +29944 1388 a warmth that is n't faked 3 +29945 1388 a warmth 3 +29946 1388 that is n't faked 2 +29947 1388 is n't faked 2 +29948 1388 faked 1 +29949 1388 a stately sense of composition 3 +29950 1388 a stately sense 3 +29951 1388 stately sense 3 +29952 1388 stately 2 +29953 1388 of composition 2 +29954 1388 composition 2 +29955 1389 A few pieces of the film buzz and whir ; very little of it actually clicks . 1 +29956 1389 A few pieces of the film buzz and whir ; very little of it 2 +29957 1389 A few pieces 2 +29958 1389 few pieces 2 +29959 1389 of the film buzz and whir ; very little of it 1 +29960 1389 the film buzz and whir ; very little of it 1 +29961 1389 the film buzz and whir ; very little 2 +29962 1389 the film buzz and whir ; 3 +29963 1389 the film buzz and whir 3 +29964 1389 film buzz and whir 3 +29965 1389 buzz and whir 2 +29966 1389 buzz and 2 +29967 1389 buzz 2 +29968 1389 whir 2 +29969 1389 actually clicks . 3 +29970 1389 clicks . 2 +29971 1389 clicks 2 +29972 1390 Like any good romance , Son of the Bride , proves it 's never too late to learn . 3 +29973 1390 Like any good romance 3 +29974 1390 any good romance 2 +29975 1390 good romance 4 +29976 1390 , Son of the Bride , proves it 's never too late to learn . 2 +29977 1390 Son of the Bride , proves it 's never too late to learn . 3 +29978 1390 Son of the Bride 2 +29979 1390 , proves it 's never too late to learn . 3 +29980 1390 proves it 's never too late to learn . 3 +29981 1390 proves it 's never too late to learn 3 +29982 1390 it 's never too late to learn 2 +29983 1390 's never too late to learn 3 +29984 1390 's never too late 2 +29985 1390 's never 2 +29986 1390 too late 1 +29987 1390 to learn 2 +29988 1391 One of the funniest motion pictures of the year , but ... also one of the most curiously depressing . 3 +29989 1391 One of the funniest motion pictures of the year , but ... also one of the most curiously depressing 4 +29990 1391 One of the funniest motion pictures of the year , but 4 +29991 1391 One of the funniest motion pictures of the year , 4 +29992 1391 One of the funniest motion pictures of the year 4 +29993 1391 One of the funniest motion 3 +29994 1391 of the funniest motion 3 +29995 1391 the funniest motion 3 +29996 1391 funniest motion 3 +29997 1391 pictures of the year 2 +29998 1391 ... also one of the most curiously depressing 1 +29999 1391 also one of the most curiously depressing 1 +30000 1391 one of the most curiously depressing 1 +30001 1391 of the most curiously depressing 1 +30002 1391 the most curiously depressing 2 +30003 1391 most curiously depressing 2 +30004 1391 curiously depressing 1 +30005 1392 A film that 's flawed and brilliant in equal measure . 3 +30006 1392 film that 's flawed and brilliant in equal measure . 3 +30007 1392 film that 's flawed and brilliant in equal measure 3 +30008 1392 that 's flawed and brilliant in equal measure 3 +30009 1392 's flawed and brilliant in equal measure 2 +30010 1392 's flawed and brilliant 3 +30011 1392 flawed and brilliant 4 +30012 1392 flawed and 1 +30013 1392 in equal measure 2 +30014 1392 equal measure 2 +30015 1392 measure 2 +30016 1393 An imponderably stilted and self-consciously arty movie . 1 +30017 1393 An imponderably stilted and self-consciously arty movie 1 +30018 1393 imponderably stilted and self-consciously arty movie 1 +30019 1393 imponderably stilted and self-consciously arty 1 +30020 1393 imponderably stilted and 1 +30021 1393 imponderably stilted 1 +30022 1393 imponderably 2 +30023 1393 self-consciously arty 1 +30024 1393 self-consciously 1 +30025 1394 ... the story , like Ravel 's Bolero , builds to a crescendo that encompasses many more paths than we started with . 3 +30026 1394 the story , like Ravel 's Bolero , builds to a crescendo that encompasses many more paths than we started with . 3 +30027 1394 the story , like Ravel 's Bolero , builds to a crescendo that encompasses many more paths than we started with 3 +30028 1394 , like Ravel 's Bolero , builds to a crescendo that encompasses many more paths than we started with 3 +30029 1394 like Ravel 's Bolero , builds to a crescendo that encompasses many more paths than we started with 2 +30030 1394 like Ravel 's Bolero 3 +30031 1394 Ravel 's Bolero 2 +30032 1394 Ravel 's 2 +30033 1394 Ravel 2 +30034 1394 Bolero 2 +30035 1394 , builds to a crescendo that encompasses many more paths than we started with 4 +30036 1394 builds to a crescendo that encompasses many more paths than we started with 3 +30037 1394 builds 2 +30038 1394 to a crescendo that encompasses many more paths than we started with 3 +30039 1394 a crescendo that encompasses many more paths than we started with 3 +30040 1394 a crescendo 3 +30041 1394 crescendo 2 +30042 1394 that encompasses many more paths than we started with 3 +30043 1394 encompasses many more paths than we started with 2 +30044 1394 encompasses many more paths 3 +30045 1394 encompasses 2 +30046 1394 many more paths 2 +30047 1394 more paths 2 +30048 1394 paths 2 +30049 1394 than we started with 2 +30050 1394 we started with 2 +30051 1394 started with 2 +30052 1395 This thing is virtually unwatchable . 0 +30053 1395 is virtually unwatchable . 0 +30054 1395 is virtually unwatchable 0 +30055 1395 virtually unwatchable 0 +30056 1395 unwatchable 0 +30057 1396 The movie does its best to work us over , with second helpings of love , romance , tragedy , false dawns , real dawns , comic relief , two separate crises during marriage ceremonies , and the lush scenery of the Cotswolds . 3 +30058 1396 does its best to work us over , with second helpings of love , romance , tragedy , false dawns , real dawns , comic relief , two separate crises during marriage ceremonies , and the lush scenery of the Cotswolds . 3 +30059 1396 does its best to work us over , with second helpings of love , romance , tragedy , false dawns , real dawns , comic relief , two separate crises during marriage ceremonies , and the lush scenery of the Cotswolds 3 +30060 1396 does its best 3 +30061 1396 to work us over , with second helpings of love , romance , tragedy , false dawns , real dawns , comic relief , two separate crises during marriage ceremonies , and the lush scenery of the Cotswolds 3 +30062 1396 work us over , with second helpings of love , romance , tragedy , false dawns , real dawns , comic relief , two separate crises during marriage ceremonies , and the lush scenery of the Cotswolds 3 +30063 1396 work us over , 2 +30064 1396 work us over 2 +30065 1396 work us 2 +30066 1396 with second helpings of love , romance , tragedy , false dawns , real dawns , comic relief , two separate crises during marriage ceremonies , and the lush scenery of the Cotswolds 3 +30067 1396 second helpings of love , romance , tragedy , false dawns , real dawns , comic relief , two separate crises during marriage ceremonies , and the lush scenery of the Cotswolds 3 +30068 1396 second helpings of love , romance , tragedy , false dawns , real dawns , comic relief , two separate crises during marriage ceremonies , and 3 +30069 1396 second helpings of love , romance , tragedy , false dawns , real dawns , comic relief , two separate crises during marriage ceremonies , 3 +30070 1396 second helpings of love , romance , tragedy , false dawns , real dawns , comic relief , two separate crises during marriage ceremonies 2 +30071 1396 second helpings of love , romance , tragedy , false dawns , real dawns , comic relief , 2 +30072 1396 second helpings of love , romance , tragedy , false dawns , real dawns , comic relief 3 +30073 1396 second helpings 3 +30074 1396 helpings 2 +30075 1396 of love , romance , tragedy , false dawns , real dawns , comic relief 2 +30076 1396 love , romance , tragedy , false dawns , real dawns , comic relief 2 +30077 1396 , romance , tragedy , false dawns , real dawns , comic relief 3 +30078 1396 romance , tragedy , false dawns , real dawns , comic relief 2 +30079 1396 , tragedy , false dawns , real dawns , comic relief 2 +30080 1396 tragedy , false dawns , real dawns , comic relief 2 +30081 1396 , false dawns , real dawns , comic relief 2 +30082 1396 false dawns , real dawns , comic relief 2 +30083 1396 dawns , real dawns , comic relief 3 +30084 1396 dawns 2 +30085 1396 , real dawns , comic relief 2 +30086 1396 real dawns , comic relief 3 +30087 1396 dawns , comic relief 3 +30088 1396 , comic relief 2 +30089 1396 comic relief 3 +30090 1396 two separate crises during marriage ceremonies 2 +30091 1396 two separate crises 2 +30092 1396 separate crises 2 +30093 1396 crises 2 +30094 1396 during marriage ceremonies 2 +30095 1396 marriage ceremonies 2 +30096 1396 ceremonies 2 +30097 1396 the lush scenery of the Cotswolds 2 +30098 1396 the lush scenery 3 +30099 1396 lush scenery 3 +30100 1396 scenery 2 +30101 1396 of the Cotswolds 2 +30102 1396 the Cotswolds 2 +30103 1396 Cotswolds 2 +30104 1397 What a concept , what an idea , what a thrill ride . 4 +30105 1397 What a concept 3 +30106 1397 a concept 2 +30107 1397 , what an idea , what a thrill ride . 4 +30108 1397 what an idea , what a thrill ride . 4 +30109 1397 what an idea , what a thrill ride 4 +30110 1397 what an idea 3 +30111 1397 , what a thrill ride 4 +30112 1397 what a thrill ride 4 +30113 1397 a thrill ride 3 +30114 1397 a thrill 3 +30115 1397 thrill 3 +30116 1398 And , thanks to the presence of ` the King , ' it also rocks . 3 +30117 1398 , thanks to the presence of ` the King , ' it also rocks . 3 +30118 1398 thanks to the presence of ` the King , ' it also rocks . 3 +30119 1398 thanks to the presence of ` the King 3 +30120 1398 thanks to the presence 3 +30121 1398 to the presence 2 +30122 1398 the presence 2 +30123 1398 of ` the King 2 +30124 1398 the King 2 +30125 1398 , ' it also rocks . 3 +30126 1398 ' it also rocks . 3 +30127 1398 it also rocks . 4 +30128 1398 also rocks . 4 +30129 1398 also rocks 3 +30130 1398 rocks 2 +30131 1399 I do n't feel the least bit ashamed in admitting that my enjoyment came at the expense of seeing justice served , even if it 's a dish that 's best served cold . 3 +30132 1399 do n't feel the least bit ashamed in admitting that my enjoyment came at the expense of seeing justice served , even if it 's a dish that 's best served cold . 3 +30133 1399 do n't feel the least bit ashamed in admitting that my enjoyment came at the expense of seeing justice served , even if it 's a dish that 's best served cold 3 +30134 1399 feel the least bit ashamed in admitting that my enjoyment came at the expense of seeing justice served , even if it 's a dish that 's best served cold 3 +30135 1399 the least bit ashamed in admitting that my enjoyment came at the expense of seeing justice served , even if it 's a dish that 's best served cold 4 +30136 1399 the least bit 2 +30137 1399 least bit 2 +30138 1399 ashamed in admitting that my enjoyment came at the expense of seeing justice served , even if it 's a dish that 's best served cold 3 +30139 1399 ashamed 2 +30140 1399 in admitting that my enjoyment came at the expense of seeing justice served , even if it 's a dish that 's best served cold 3 +30141 1399 admitting that my enjoyment came at the expense of seeing justice served , even if it 's a dish that 's best served cold 3 +30142 1399 admitting 2 +30143 1399 that my enjoyment came at the expense of seeing justice served , even if it 's a dish that 's best served cold 3 +30144 1399 my enjoyment came at the expense of seeing justice served , even if it 's a dish that 's best served cold 3 +30145 1399 my enjoyment 3 +30146 1399 came at the expense of seeing justice served , even if it 's a dish that 's best served cold 2 +30147 1399 came at the expense of seeing justice served , 2 +30148 1399 came at the expense of seeing justice served 2 +30149 1399 at the expense of seeing justice served 2 +30150 1399 the expense of seeing justice served 2 +30151 1399 of seeing justice served 3 +30152 1399 seeing justice served 3 +30153 1399 justice served 2 +30154 1399 even if it 's a dish that 's best served cold 3 +30155 1399 if it 's a dish that 's best served cold 2 +30156 1399 it 's a dish that 's best served cold 1 +30157 1399 's a dish that 's best served cold 2 +30158 1399 a dish that 's best served cold 2 +30159 1399 a dish 2 +30160 1399 dish 2 +30161 1399 that 's best served cold 3 +30162 1399 's best served cold 3 +30163 1399 's best 3 +30164 1399 served cold 2 +30165 1400 Everybody loves a David and Goliath story , and this one is told almost entirely from David 's point of view . 3 +30166 1400 Everybody loves a David and Goliath story , and this one is told almost entirely from David 's point of view 3 +30167 1400 Everybody loves a David and Goliath story , and 2 +30168 1400 Everybody loves a David and Goliath story , 3 +30169 1400 Everybody loves a David and Goliath story 4 +30170 1400 loves a David and Goliath story 3 +30171 1400 a David and Goliath story 2 +30172 1400 David and Goliath story 2 +30173 1400 David and 3 +30174 1400 Goliath story 2 +30175 1400 Goliath 2 +30176 1400 this one is told almost entirely from David 's point of view 2 +30177 1400 is told almost entirely from David 's point of view 2 +30178 1400 told almost entirely from David 's point of view 2 +30179 1400 told almost entirely 2 +30180 1400 almost entirely 2 +30181 1400 from David 's point of view 1 +30182 1400 David 's point of view 2 +30183 1400 David 's point 2 +30184 1400 David 's 2 +30185 1401 The performances are strong , though the subject matter demands acting that borders on hammy at times . 3 +30186 1401 are strong , though the subject matter demands acting that borders on hammy at times . 3 +30187 1401 are strong , though the subject matter demands acting that borders on hammy at times 3 +30188 1401 are strong , 2 +30189 1401 are strong 3 +30190 1401 though the subject matter demands acting that borders on hammy at times 2 +30191 1401 the subject matter demands acting that borders on hammy at times 2 +30192 1401 demands acting that borders on hammy at times 2 +30193 1401 demands 2 +30194 1401 acting that borders on hammy at times 2 +30195 1401 acting that borders 2 +30196 1401 that borders 2 +30197 1401 borders 2 +30198 1401 on hammy at times 3 +30199 1401 hammy at times 2 +30200 1401 hammy 2 +30201 1402 An inexperienced director , Mehta has much to learn . 1 +30202 1402 An inexperienced director , Mehta 2 +30203 1402 An inexperienced director , 1 +30204 1402 An inexperienced director 2 +30205 1402 inexperienced director 2 +30206 1402 Mehta 2 +30207 1402 has much to learn . 2 +30208 1402 has much to learn 1 +30209 1402 has much 2 +30210 1403 Ryosuke has created a wry , winning , if languidly paced , meditation on the meaning and value of family . 2 +30211 1403 Ryosuke 2 +30212 1403 has created a wry , winning , if languidly paced , meditation on the meaning and value of family . 3 +30213 1403 has created a wry , winning , if languidly paced , meditation on the meaning and value of family 3 +30214 1403 created a wry , winning , if languidly paced , meditation on the meaning and value of family 3 +30215 1403 created a wry , winning , if languidly paced , meditation 2 +30216 1403 a wry , winning , if languidly paced , meditation 3 +30217 1403 wry , winning , if languidly paced , meditation 3 +30218 1403 wry , winning , if languidly paced , 2 +30219 1403 , winning , if languidly paced , 3 +30220 1403 winning , if languidly paced , 2 +30221 1403 , if languidly paced , 2 +30222 1403 if languidly paced , 2 +30223 1403 languidly paced , 2 +30224 1403 languidly 2 +30225 1403 paced , 2 +30226 1403 paced 2 +30227 1403 on the meaning and value of family 2 +30228 1403 the meaning and value of family 3 +30229 1403 the meaning and value 3 +30230 1403 meaning and value 3 +30231 1403 of family 2 +30232 1404 It has a caffeinated , sloppy brilliance , sparkling with ideas you wish had been developed with more care , but animated by an energy that puts the dutiful efforts of more disciplined grade-grubbers to shame . 3 +30233 1404 has a caffeinated , sloppy brilliance , sparkling with ideas you wish had been developed with more care , but animated by an energy that puts the dutiful efforts of more disciplined grade-grubbers to shame . 2 +30234 1404 has a caffeinated , sloppy brilliance , sparkling with ideas you wish had been developed with more care , but animated by an energy that puts the dutiful efforts of more disciplined grade-grubbers to shame 2 +30235 1404 has a caffeinated , sloppy brilliance , sparkling with ideas you wish had been developed with more care , but 3 +30236 1404 has a caffeinated , sloppy brilliance , sparkling with ideas you wish had been developed with more care , 3 +30237 1404 has a caffeinated , sloppy brilliance , sparkling with ideas you wish had been developed with more care 2 +30238 1404 a caffeinated , sloppy brilliance , sparkling with ideas you wish had been developed with more care 2 +30239 1404 a caffeinated , sloppy brilliance , 3 +30240 1404 a caffeinated , sloppy brilliance 3 +30241 1404 caffeinated , sloppy brilliance 3 +30242 1404 caffeinated , sloppy 0 +30243 1404 caffeinated 2 +30244 1404 brilliance 3 +30245 1404 sparkling with ideas you wish had been developed with more care 3 +30246 1404 sparkling with ideas 3 +30247 1404 with ideas 2 +30248 1404 you wish had been developed with more care 0 +30249 1404 wish had been developed with more care 1 +30250 1404 had been developed with more care 3 +30251 1404 been developed with more care 1 +30252 1404 developed with more care 3 +30253 1404 with more care 2 +30254 1404 more care 2 +30255 1404 animated by an energy that puts the dutiful efforts of more disciplined grade-grubbers to shame 3 +30256 1404 animated by an energy that puts the dutiful efforts of more disciplined grade-grubbers 3 +30257 1404 by an energy that puts the dutiful efforts of more disciplined grade-grubbers 3 +30258 1404 an energy that puts the dutiful efforts of more disciplined grade-grubbers 3 +30259 1404 an energy 2 +30260 1404 that puts the dutiful efforts of more disciplined grade-grubbers 2 +30261 1404 puts the dutiful efforts of more disciplined grade-grubbers 3 +30262 1404 the dutiful efforts of more disciplined grade-grubbers 2 +30263 1404 the dutiful efforts 2 +30264 1404 dutiful efforts 2 +30265 1404 dutiful 2 +30266 1404 of more disciplined grade-grubbers 2 +30267 1404 more disciplined grade-grubbers 1 +30268 1404 more disciplined 2 +30269 1404 disciplined 2 +30270 1404 grade-grubbers 1 +30271 1404 to shame 2 +30272 1404 shame 1 +30273 1405 It 's just not very smart . 1 +30274 1405 's just not very smart . 1 +30275 1405 's just not very smart 1 +30276 1405 's just not 2 +30277 1405 very smart 4 +30278 1406 It wears its heart on the sleeve of its gaudy Hawaiian shirt . 1 +30279 1406 wears its heart on the sleeve of its gaudy Hawaiian shirt . 2 +30280 1406 wears its heart on the sleeve of its gaudy Hawaiian shirt 3 +30281 1406 wears its heart 3 +30282 1406 on the sleeve of its gaudy Hawaiian shirt 2 +30283 1406 the sleeve of its gaudy Hawaiian shirt 2 +30284 1406 the sleeve 2 +30285 1406 of its gaudy Hawaiian shirt 1 +30286 1406 its gaudy Hawaiian shirt 2 +30287 1406 gaudy Hawaiian shirt 1 +30288 1406 gaudy 2 +30289 1406 Hawaiian shirt 3 +30290 1406 shirt 2 +30291 1407 Like a skillful fisher , the director uses the last act to reel in the audience since its poignancy hooks us completely . 4 +30292 1407 Like a skillful fisher 3 +30293 1407 a skillful fisher 3 +30294 1407 skillful fisher 3 +30295 1407 fisher 2 +30296 1407 , the director uses the last act to reel in the audience since its poignancy hooks us completely . 3 +30297 1407 the director uses the last act to reel in the audience since its poignancy hooks us completely . 3 +30298 1407 uses the last act to reel in the audience since its poignancy hooks us completely . 3 +30299 1407 uses the last act to reel in the audience since its poignancy hooks us completely 3 +30300 1407 uses the last act to reel in the audience 3 +30301 1407 uses the last act 2 +30302 1407 the last act 2 +30303 1407 last act 2 +30304 1407 to reel in the audience 3 +30305 1407 reel in the audience 3 +30306 1407 in the audience 2 +30307 1407 since its poignancy hooks us completely 4 +30308 1407 its poignancy hooks us completely 4 +30309 1407 its poignancy 2 +30310 1407 poignancy 1 +30311 1407 hooks us completely 3 +30312 1407 hooks us 3 +30313 1407 hooks 2 +30314 1408 A wild ride with eight boarders from Venice Beach that was a deserved co-winner of the Audience Award for documentaries at the Sundance Film Festival . 4 +30315 1408 A wild ride with eight 2 +30316 1408 A wild ride 3 +30317 1408 wild ride 3 +30318 1408 with eight 2 +30319 1408 boarders from Venice Beach that was a deserved co-winner of the Audience Award for documentaries at the Sundance Film Festival . 4 +30320 1408 boarders from Venice Beach that was a deserved co-winner of the Audience Award for documentaries at the Sundance Film Festival 4 +30321 1408 boarders 2 +30322 1408 from Venice Beach that was a deserved co-winner of the Audience Award for documentaries at the Sundance Film Festival 3 +30323 1408 Venice Beach that was a deserved co-winner of the Audience Award for documentaries at the Sundance Film Festival 4 +30324 1408 Venice Beach 2 +30325 1408 that was a deserved co-winner of the Audience Award for documentaries at the Sundance Film Festival 3 +30326 1408 was a deserved co-winner of the Audience Award for documentaries at the Sundance Film Festival 3 +30327 1408 a deserved co-winner of the Audience Award for documentaries at the Sundance Film Festival 4 +30328 1408 a deserved co-winner 3 +30329 1408 deserved co-winner 3 +30330 1408 deserved 2 +30331 1408 co-winner 3 +30332 1408 of the Audience Award for documentaries at the Sundance Film Festival 3 +30333 1408 the Audience Award for documentaries at the Sundance Film Festival 3 +30334 1408 the Audience Award 3 +30335 1408 Audience Award 3 +30336 1408 Award 2 +30337 1408 for documentaries at the Sundance Film Festival 2 +30338 1408 documentaries at the Sundance Film Festival 2 +30339 1408 at the Sundance Film Festival 2 +30340 1409 But the 2002 film does n't really believe in it , and breaks the mood with absurdly inappropriate ` comedy ' scenes . 0 +30341 1409 the 2002 film does n't really believe in it , and breaks the mood with absurdly inappropriate ` comedy ' scenes . 0 +30342 1409 the 2002 film 2 +30343 1409 2002 film 2 +30344 1409 does n't really believe in it , and breaks the mood with absurdly inappropriate ` comedy ' scenes . 0 +30345 1409 does n't really believe in it , and breaks the mood with absurdly inappropriate ` comedy ' scenes 1 +30346 1409 does n't really believe in it , and 2 +30347 1409 does n't really believe in it , 1 +30348 1409 does n't really believe in it 1 +30349 1409 does n't really 2 +30350 1409 believe in it 2 +30351 1409 breaks the mood with absurdly inappropriate ` comedy ' scenes 1 +30352 1409 breaks the mood 2 +30353 1409 with absurdly inappropriate ` comedy ' scenes 1 +30354 1409 absurdly inappropriate ` comedy ' scenes 0 +30355 1409 absurdly inappropriate 2 +30356 1409 absurdly 2 +30357 1409 inappropriate 1 +30358 1409 ` comedy ' scenes 3 +30359 1409 comedy ' scenes 2 +30360 1409 ' scenes 2 +30361 1410 Birot creates a drama with such a well-defined sense of place and age -- as in , 15 years old -- that the torments and angst become almost as operatic to us as they are to her characters . 3 +30362 1410 Birot 2 +30363 1410 creates a drama with such a well-defined sense of place and age -- as in , 15 years old -- that the torments and angst become almost as operatic to us as they are to her characters . 3 +30364 1410 creates a drama with such a well-defined sense of place and age -- as in , 15 years old -- that the torments and angst become almost as operatic to us as they are to her characters 3 +30365 1410 creates a drama with such a well-defined sense of place and age -- as in , 15 years old -- 4 +30366 1410 creates a drama with such a well-defined sense of place and age -- as in , 15 years old 2 +30367 1410 creates a drama 2 +30368 1410 a drama 2 +30369 1410 with such a well-defined sense of place and age -- as in , 15 years old 2 +30370 1410 such a well-defined sense of place and age -- as in , 15 years old 2 +30371 1410 such a well-defined sense 3 +30372 1410 a well-defined sense 3 +30373 1410 well-defined sense 3 +30374 1410 well-defined 3 +30375 1410 of place and age -- as in , 15 years old 2 +30376 1410 place and age -- as in , 15 years old 2 +30377 1410 place and age -- as in , 2 +30378 1410 place and age -- as in 2 +30379 1410 place and age -- 2 +30380 1410 place and age 2 +30381 1410 place and 2 +30382 1410 as in 2 +30383 1410 15 years old 3 +30384 1410 15 years 2 +30385 1410 15 2 +30386 1410 that the torments and angst become almost as operatic to us as they are to her characters 2 +30387 1410 the torments and angst become almost as operatic to us as they are to her characters 2 +30388 1410 the torments and angst 1 +30389 1410 torments and angst 1 +30390 1410 torments and 1 +30391 1410 torments 1 +30392 1410 angst 2 +30393 1410 become almost as operatic to us as they are to her characters 1 +30394 1410 become almost as operatic to us 1 +30395 1410 become almost as operatic 2 +30396 1410 almost as operatic 2 +30397 1410 as operatic 2 +30398 1410 operatic 3 +30399 1410 to us 2 +30400 1410 as they are to her characters 2 +30401 1410 they are to her characters 2 +30402 1410 are to her characters 2 +30403 1410 to her characters 2 +30404 1410 her characters 2 +30405 1411 Toward the end Sum of All Fears morphs into a mundane '70s disaster flick . 1 +30406 1411 the end Sum of All Fears morphs into a mundane '70s disaster flick . 0 +30407 1411 the end Sum of All Fears 2 +30408 1411 the end Sum 2 +30409 1411 end Sum 2 +30410 1411 morphs into a mundane '70s disaster flick . 1 +30411 1411 morphs into a mundane '70s disaster flick 0 +30412 1411 morphs 2 +30413 1411 into a mundane '70s disaster flick 1 +30414 1411 a mundane '70s disaster flick 1 +30415 1411 mundane '70s disaster flick 1 +30416 1411 mundane '70s 0 +30417 1411 mundane 1 +30418 1411 disaster flick 1 +30419 1412 Your 20th outing shows off a lot of stamina and vitality , and get this , Madonna 's cameo does n't suck ! 3 +30420 1412 Your 20th outing shows off a lot of stamina and vitality , and get this 3 +30421 1412 Your 20th outing 2 +30422 1412 20th outing 2 +30423 1412 20th 3 +30424 1412 shows off a lot of stamina and vitality , and get this 2 +30425 1412 shows off a lot of stamina and vitality , and 3 +30426 1412 shows off a lot of stamina and vitality , 3 +30427 1412 shows off a lot of stamina and vitality 3 +30428 1412 shows off 2 +30429 1412 a lot of stamina and vitality 3 +30430 1412 of stamina and vitality 2 +30431 1412 stamina and vitality 3 +30432 1412 stamina and 2 +30433 1412 stamina 2 +30434 1412 vitality 2 +30435 1412 get this 2 +30436 1412 , Madonna 's cameo does n't suck ! 3 +30437 1412 Madonna 's cameo does n't suck ! 3 +30438 1412 Madonna 's cameo 2 +30439 1412 Madonna 's 1 +30440 1412 cameo 2 +30441 1412 does n't suck ! 2 +30442 1412 does n't suck 2 +30443 1413 The production design , score and choreography are simply intoxicating . 4 +30444 1413 The production design , score and choreography 2 +30445 1413 production design , score and choreography 2 +30446 1413 design , score and choreography 2 +30447 1413 , score and choreography 2 +30448 1413 score and choreography 2 +30449 1413 score and 2 +30450 1413 choreography 2 +30451 1413 are simply intoxicating . 3 +30452 1413 are simply intoxicating 3 +30453 1414 For almost the first two-thirds of Martin Scorsese 's 168-minute Gangs of New York , I was entranced . 3 +30454 1414 For almost the first two-thirds of Martin Scorsese 's 168-minute Gangs of New York 3 +30455 1414 almost the first two-thirds of Martin Scorsese 's 168-minute Gangs of New York 2 +30456 1414 almost the first two-thirds of Martin Scorsese 's 168-minute Gangs 2 +30457 1414 almost the first two-thirds 2 +30458 1414 the first two-thirds 2 +30459 1414 first two-thirds 2 +30460 1414 two-thirds 2 +30461 1414 of Martin Scorsese 's 168-minute Gangs 2 +30462 1414 Martin Scorsese 's 168-minute Gangs 2 +30463 1414 Martin Scorsese 's 2 +30464 1414 Scorsese 's 2 +30465 1414 Scorsese 2 +30466 1414 168-minute Gangs 2 +30467 1414 168-minute 2 +30468 1414 of New York 2 +30469 1414 New York 2 +30470 1414 , I was entranced . 4 +30471 1414 I was entranced . 3 +30472 1414 was entranced . 3 +30473 1414 was entranced 3 +30474 1414 entranced 2 +30475 1415 A brutally dry satire of Middle American numbness . 1 +30476 1415 A brutally dry satire of Middle American 2 +30477 1415 A brutally dry satire 2 +30478 1415 brutally dry satire 1 +30479 1415 brutally dry 1 +30480 1415 brutally 2 +30481 1415 of Middle American 2 +30482 1415 Middle American 2 +30483 1415 numbness . 1 +30484 1415 numbness 1 +30485 1416 A perfectly acceptable , perfectly bland , competently acted but by no means scary horror movie . 2 +30486 1416 A perfectly acceptable , perfectly bland , competently 3 +30487 1416 perfectly acceptable , perfectly bland , competently 2 +30488 1416 perfectly acceptable , perfectly bland , 3 +30489 1416 perfectly acceptable , perfectly bland 2 +30490 1416 perfectly acceptable , 3 +30491 1416 perfectly acceptable 3 +30492 1416 perfectly bland 0 +30493 1416 competently 3 +30494 1416 acted but by no means scary horror movie . 2 +30495 1416 acted but by no means scary horror movie 2 +30496 1416 acted but 2 +30497 1416 by no means scary horror movie 2 +30498 1416 means scary horror movie 1 +30499 1416 scary horror movie 3 +30500 1417 The tasteful little revision works wonders , enhancing the cultural and economic subtext , bringing richer meaning to the story 's morals . 3 +30501 1417 The tasteful little revision works 4 +30502 1417 tasteful little revision works 3 +30503 1417 little revision works 3 +30504 1417 revision works 2 +30505 1417 revision 2 +30506 1417 wonders , enhancing the cultural and economic subtext , bringing richer meaning to the story 's morals . 4 +30507 1417 wonders , enhancing the cultural and economic subtext , bringing richer meaning to the story 's morals 4 +30508 1417 wonders , 2 +30509 1417 enhancing the cultural and economic subtext , bringing richer meaning to the story 's morals 3 +30510 1417 enhancing 3 +30511 1417 the cultural and economic subtext , bringing richer meaning to the story 's morals 3 +30512 1417 the cultural and economic subtext , 2 +30513 1417 the cultural and economic subtext 2 +30514 1417 cultural and economic subtext 3 +30515 1417 cultural and economic 2 +30516 1417 economic 2 +30517 1417 subtext 2 +30518 1417 bringing richer meaning to the story 's morals 3 +30519 1417 bringing richer meaning 2 +30520 1417 richer meaning 2 +30521 1417 to the story 's morals 2 +30522 1417 the story 's morals 2 +30523 1417 morals 2 +30524 1418 And Diesel is n't the actor to save it . 1 +30525 1418 Diesel is n't the actor to save it . 1 +30526 1418 is n't the actor to save it . 1 +30527 1418 is n't the actor to save it 2 +30528 1418 the actor to save it 2 +30529 1418 actor to save it 2 +30530 1418 to save it 2 +30531 1418 save it 2 +30532 1419 Wendigo wants to be a monster movie for the art-house crowd , but it falls into the trap of pretention almost every time . 0 +30533 1419 Wendigo wants to be a monster movie for the art-house crowd , but it falls into the trap of pretention almost every time 1 +30534 1419 Wendigo wants to be a monster movie for the art-house crowd , but 2 +30535 1419 Wendigo wants to be a monster movie for the art-house crowd , 2 +30536 1419 Wendigo wants to be a monster movie for the art-house crowd 1 +30537 1419 Wendigo 2 +30538 1419 wants to be a monster movie for the art-house crowd 2 +30539 1419 to be a monster movie for the art-house crowd 3 +30540 1419 be a monster movie for the art-house crowd 2 +30541 1419 a monster movie for the art-house crowd 2 +30542 1419 a monster movie 3 +30543 1419 monster movie 2 +30544 1419 for the art-house crowd 3 +30545 1419 the art-house crowd 2 +30546 1419 art-house crowd 2 +30547 1419 art-house 2 +30548 1419 it falls into the trap of pretention almost every time 3 +30549 1419 falls into the trap of pretention almost every time 1 +30550 1419 falls into the trap of pretention 1 +30551 1419 into the trap of pretention 1 +30552 1419 the trap of pretention 2 +30553 1419 the trap 2 +30554 1419 trap 2 +30555 1419 of pretention 2 +30556 1419 pretention 1 +30557 1419 almost every time 2 +30558 1419 every time 2 +30559 1420 Nothing short of wonderful with its ten-year-old female protagonist and its steadfast refusal to set up a dualistic battle between good and evil . 4 +30560 1420 short of wonderful with its ten-year-old female protagonist and its steadfast refusal to set up a dualistic battle between good and evil . 3 +30561 1420 short of wonderful with its ten-year-old female protagonist and its steadfast refusal to set up a dualistic battle between good and evil 4 +30562 1420 short of wonderful 2 +30563 1420 of wonderful 2 +30564 1420 with its ten-year-old female protagonist and its steadfast refusal to set up a dualistic battle between good and evil 2 +30565 1420 its ten-year-old female protagonist and its steadfast refusal to set up a dualistic battle between good and evil 2 +30566 1420 its ten-year-old female protagonist and 2 +30567 1420 its ten-year-old female protagonist 2 +30568 1420 ten-year-old female protagonist 2 +30569 1420 ten-year-old 2 +30570 1420 female protagonist 2 +30571 1420 its steadfast refusal to set up a dualistic battle between good and evil 2 +30572 1420 steadfast refusal to set up a dualistic battle between good and evil 2 +30573 1420 steadfast 3 +30574 1420 refusal to set up a dualistic battle between good and evil 2 +30575 1420 refusal 1 +30576 1420 to set up a dualistic battle between good and evil 2 +30577 1420 set up a dualistic battle between good and evil 2 +30578 1420 set up 3 +30579 1420 a dualistic battle between good and evil 3 +30580 1420 a dualistic battle 2 +30581 1420 dualistic battle 2 +30582 1420 dualistic 2 +30583 1420 between good and evil 2 +30584 1420 good and evil 2 +30585 1420 good and 3 +30586 1421 Drumline is -- the mere suggestion , albeit a visually compelling one , of a fully realized story . 3 +30587 1421 is -- the mere suggestion , albeit a visually compelling one , of a fully realized story . 2 +30588 1421 is -- the mere suggestion , albeit a visually compelling one , of a fully realized story 2 +30589 1421 is -- 2 +30590 1421 the mere suggestion , albeit a visually compelling one , of a fully realized story 2 +30591 1421 the mere suggestion , albeit a visually compelling one , 2 +30592 1421 the mere suggestion 2 +30593 1421 mere suggestion 2 +30594 1421 suggestion 2 +30595 1421 , albeit a visually compelling one , 3 +30596 1421 albeit a visually compelling one , 3 +30597 1421 albeit a visually compelling one 3 +30598 1421 albeit 2 +30599 1421 a visually compelling one 3 +30600 1421 visually compelling one 3 +30601 1421 visually compelling 4 +30602 1421 of a fully realized story 2 +30603 1421 a fully realized story 2 +30604 1421 fully realized story 3 +30605 1421 realized story 2 +30606 1422 With lesser talents , High Crimes would be entertaining , but forgettable . 2 +30607 1422 With lesser talents 1 +30608 1422 lesser talents 1 +30609 1422 , High Crimes would be entertaining , but forgettable . 1 +30610 1422 High Crimes would be entertaining , but forgettable . 2 +30611 1422 would be entertaining , but forgettable . 2 +30612 1422 would be entertaining , but forgettable 2 +30613 1422 be entertaining , but forgettable 2 +30614 1422 entertaining , but forgettable 3 +30615 1422 , but forgettable 1 +30616 1422 forgettable 0 +30617 1423 The history is fascinating ; the action is dazzling . 4 +30618 1423 The history is fascinating ; the action is dazzling 4 +30619 1423 The history is fascinating ; 4 +30620 1423 The history is fascinating 3 +30621 1423 is fascinating 4 +30622 1423 the action is dazzling 4 +30623 1423 is dazzling 4 +30624 1424 I could n't help but feel the wasted potential of this slapstick comedy . 1 +30625 1424 could n't help but feel the wasted potential of this slapstick comedy . 1 +30626 1424 could n't help but feel the wasted potential of this slapstick comedy 1 +30627 1424 could n't help but 1 +30628 1424 could n't help 2 +30629 1424 feel the wasted potential of this slapstick comedy 1 +30630 1424 the wasted potential of this slapstick comedy 0 +30631 1424 the wasted potential 1 +30632 1424 wasted potential 1 +30633 1424 wasted 1 +30634 1424 of this slapstick comedy 2 +30635 1424 this slapstick comedy 2 +30636 1424 slapstick comedy 2 +30637 1425 All in all , Road to Perdition is more in love with strangeness than excellence . 3 +30638 1425 All in all , Road to Perdition 2 +30639 1425 in all , Road to Perdition 2 +30640 1425 all , Road to Perdition 2 +30641 1425 all , 2 +30642 1425 Road to Perdition 2 +30643 1425 to Perdition 2 +30644 1425 Perdition 3 +30645 1425 is more in love with strangeness than excellence . 3 +30646 1425 is more in love with strangeness than excellence 1 +30647 1425 is more in love 2 +30648 1425 more in love 2 +30649 1425 with strangeness than excellence 1 +30650 1425 strangeness than excellence 2 +30651 1425 than excellence 2 +30652 1425 excellence 4 +30653 1426 DeMeo is not without talent ; he just needs better material . 2 +30654 1426 DeMeo is not without talent ; he just needs better material 3 +30655 1426 DeMeo is not without talent ; 2 +30656 1426 DeMeo is not without talent 3 +30657 1426 DeMeo 2 +30658 1426 is not without talent 3 +30659 1426 without talent 2 +30660 1426 he just needs better material 1 +30661 1426 just needs better material 1 +30662 1426 needs better material 1 +30663 1426 better material 2 +30664 1427 Puportedly `` Based on True Events , '' a convolution of language that suggests it 's impossible to claim that it is `` Based on a True Story '' with a straight face . 1 +30665 1427 Puportedly 2 +30666 1427 `` Based on True Events , '' a convolution of language that suggests it 's impossible to claim that it is `` Based on a True Story '' with a straight face . 1 +30667 1427 `` Based on True Events , '' a convolution of language that suggests it 1 +30668 1427 Based on True Events , '' a convolution of language that suggests it 2 +30669 1427 Based on True Events , '' 2 +30670 1427 Based on True Events , 2 +30671 1427 a convolution of language that suggests it 1 +30672 1427 a convolution of language 2 +30673 1427 a convolution 1 +30674 1427 convolution 2 +30675 1427 of language 2 +30676 1427 language 2 +30677 1427 that suggests it 2 +30678 1427 suggests it 2 +30679 1427 suggests 2 +30680 1427 's impossible to claim that it is `` Based on a True Story '' with a straight face . 1 +30681 1427 's impossible to claim that it is `` Based on a True Story '' with a straight face 1 +30682 1427 impossible to claim that it is `` Based on a True Story '' with a straight face 1 +30683 1427 impossible to claim that it is `` Based on a True Story '' 1 +30684 1427 impossible to claim that it is `` Based on a True Story 1 +30685 1427 to claim that it is `` Based on a True Story 2 +30686 1427 claim that it is `` Based on a True Story 2 +30687 1427 that it is `` Based on a True Story 2 +30688 1427 it is `` Based on a True Story 2 +30689 1427 is `` Based on a True Story 2 +30690 1427 is `` 2 +30691 1427 Based on a True Story 2 +30692 1427 on a True Story 2 +30693 1427 a True Story 2 +30694 1427 with a straight face 2 +30695 1427 a straight face 3 +30696 1427 straight face 2 +30697 1428 ... gripping and handsome execution , -LRB- but -RRB- there is n't much about K-19 that 's unique or memorable . 2 +30698 1428 gripping and handsome execution , -LRB- but -RRB- there is n't much about K-19 that 's unique or memorable . 2 +30699 1428 gripping and handsome execution 3 +30700 1428 handsome execution 3 +30701 1428 , -LRB- but -RRB- there is n't much about K-19 that 's unique or memorable . 1 +30702 1428 -LRB- but -RRB- there is n't much about K-19 that 's unique or memorable . 0 +30703 1428 -LRB- but -RRB- there is n't much about K-19 1 +30704 1428 there is n't much about K-19 1 +30705 1428 is n't much about K-19 1 +30706 1428 much about K-19 2 +30707 1428 about K-19 2 +30708 1428 K-19 2 +30709 1428 that 's unique or memorable . 3 +30710 1428 's unique or memorable . 3 +30711 1428 's unique or memorable 3 +30712 1428 unique or memorable 4 +30713 1428 unique or 2 +30714 1429 I liked the original short story but this movie , even at an hour and twenty-some minutes , it 's too long and it goes nowhere . 0 +30715 1429 I liked the original short story but this movie , even at an hour and twenty-some minutes , it 's too long and it goes nowhere 0 +30716 1429 I liked the original short story but this movie , even at an hour and twenty-some minutes , it 's too long and 1 +30717 1429 I liked the original short story but this movie , even at an hour and twenty-some minutes , it 's too long 2 +30718 1429 I liked the original short story but this movie , even at an hour and twenty-some minutes , 2 +30719 1429 I liked the original short story but this movie , even at an hour and twenty-some minutes 1 +30720 1429 liked the original short story but this movie , even at an hour and twenty-some minutes 2 +30721 1429 liked the original short story but this movie , 2 +30722 1429 liked the original short story but this movie 2 +30723 1429 the original short story but this movie 2 +30724 1429 the original short story 2 +30725 1429 original short story 2 +30726 1429 but this movie 2 +30727 1429 even at an hour and twenty-some minutes 2 +30728 1429 at an hour and twenty-some minutes 2 +30729 1429 an hour and twenty-some minutes 2 +30730 1429 twenty-some minutes 2 +30731 1429 twenty-some 2 +30732 1429 it 's too long 1 +30733 1429 's too long 1 +30734 1429 it goes nowhere 1 +30735 1430 An artsploitation movie with too much exploitation and too little art . 0 +30736 1430 An artsploitation movie with too much exploitation and too little art 1 +30737 1430 An artsploitation movie 2 +30738 1430 artsploitation movie 2 +30739 1430 artsploitation 2 +30740 1430 with too much exploitation and too little art 1 +30741 1430 too much exploitation and too little art 1 +30742 1430 too much exploitation and too little 1 +30743 1430 too much exploitation and 0 +30744 1430 too much exploitation 1 +30745 1430 much exploitation 2 +30746 1430 too little 1 +30747 1431 ... a sour little movie at its core ; an exploration of the emptiness that underlay the relentless gaiety of the 1920 's ... The film 's ending has a `` What was it all for ? '' 0 +30748 1431 ... a sour little movie at its core ; an exploration of the emptiness that underlay the relentless gaiety of the 1920 's ... The film 's ending has a `` What was it all for ? 1 +30749 1431 ... a sour little movie at its core ; an exploration of the emptiness that underlay the relentless gaiety of the 1920 's ... The film 's ending has a `` What was it all for 0 +30750 1431 ... a sour little movie at its core ; an exploration of the emptiness that underlay the relentless gaiety of the 1920 's ... 1 +30751 1431 ... a sour little movie at its core ; an exploration of the emptiness that underlay the relentless gaiety of the 1920 's 2 +30752 1431 ... a sour little movie at its core ; an exploration of the emptiness that underlay the relentless gaiety of the 1920 1 +30753 1431 ... a sour little movie at its core ; an exploration of the emptiness that underlay the relentless gaiety 0 +30754 1431 a sour little movie at its core ; an exploration of the emptiness that underlay the relentless gaiety 0 +30755 1431 a sour little movie 0 +30756 1431 sour little movie 1 +30757 1431 sour 1 +30758 1431 little movie 2 +30759 1431 at its core ; an exploration of the emptiness that underlay the relentless gaiety 2 +30760 1431 its core ; an exploration of the emptiness that underlay the relentless gaiety 2 +30761 1431 its core ; 2 +30762 1431 its core 3 +30763 1431 an exploration of the emptiness that underlay the relentless gaiety 2 +30764 1431 an exploration of the emptiness 2 +30765 1431 an exploration 2 +30766 1431 exploration 2 +30767 1431 of the emptiness 2 +30768 1431 the emptiness 2 +30769 1431 that underlay the relentless gaiety 2 +30770 1431 underlay the relentless gaiety 2 +30771 1431 underlay 2 +30772 1431 the relentless gaiety 1 +30773 1431 relentless gaiety 2 +30774 1431 relentless 2 +30775 1431 gaiety 2 +30776 1431 of the 1920 2 +30777 1431 the 1920 2 +30778 1431 The film 's ending has a `` What was it all for 1 +30779 1431 The film 's ending 2 +30780 1431 has a `` What was it all for 1 +30781 1431 a `` What was it all for 2 +30782 1431 a `` 2 +30783 1431 What was it all for 2 +30784 1431 was it all for 2 +30785 1431 was it 2 +30786 1431 all for 2 +30787 1432 Check your brain and your secret agent decoder ring at the door because you do n't want to think too much about what 's going on . 1 +30788 1432 Check your brain and your secret agent decoder ring at the door because you do n't want to think too much about what 's going on 1 +30789 1432 Check your brain and your secret agent decoder ring at the door 2 +30790 1432 your brain and your secret agent decoder ring at the door 1 +30791 1432 your brain and 2 +30792 1432 your brain 2 +30793 1432 your secret agent decoder ring at the door 2 +30794 1432 your secret agent decoder ring 2 +30795 1432 secret agent decoder ring 2 +30796 1432 agent decoder ring 2 +30797 1432 decoder ring 2 +30798 1432 decoder 2 +30799 1432 ring 2 +30800 1432 at the door 2 +30801 1432 the door 2 +30802 1432 door 2 +30803 1432 because you do n't want to think too much about what 's going on 2 +30804 1432 you do n't want to think too much about what 's going on 1 +30805 1432 do n't want to think too much about what 's going on 1 +30806 1432 want to think too much about what 's going on 1 +30807 1432 to think too much about what 's going on 2 +30808 1432 think too much about what 's going on 2 +30809 1432 too much about what 's going on 2 +30810 1432 much about what 's going on 2 +30811 1432 about what 's going on 2 +30812 1432 what 's going on 2 +30813 1432 's going on 2 +30814 1433 Talkiness is n't necessarily bad , but the dialogue frequently misses the mark . 1 +30815 1433 Talkiness is n't necessarily bad , but the dialogue frequently misses the mark 0 +30816 1433 Talkiness is n't necessarily bad , but 2 +30817 1433 Talkiness is n't necessarily bad , 2 +30818 1433 Talkiness is n't necessarily bad 3 +30819 1433 Talkiness 1 +30820 1433 is n't necessarily bad 2 +30821 1433 necessarily bad 2 +30822 1433 the dialogue frequently misses the mark 1 +30823 1433 frequently misses the mark 1 +30824 1433 frequently 2 +30825 1433 misses the mark 1 +30826 1434 The Pianist is the film Roman Polanski may have been born to make . 3 +30827 1434 is the film Roman Polanski may have been born to make . 3 +30828 1434 is the film Roman Polanski may have been born to make 3 +30829 1434 the film Roman Polanski may have been born to make 2 +30830 1434 Roman Polanski may have been born to make 4 +30831 1434 may have been born to make 3 +30832 1434 have been born to make 2 +30833 1434 been born to make 2 +30834 1434 born to make 3 +30835 1434 to make 2 +30836 1435 It 's funny and human and really pretty damned wonderful , all at once . 3 +30837 1435 's funny and human and really pretty damned wonderful , all at once . 4 +30838 1435 's funny and human and really pretty damned wonderful , all at once 3 +30839 1435 's funny and human and really pretty damned wonderful , 4 +30840 1435 's funny and human and really pretty damned wonderful 2 +30841 1435 funny and human and really pretty damned wonderful 4 +30842 1435 funny and human and really 4 +30843 1435 funny and human and 3 +30844 1435 funny and human 3 +30845 1435 pretty damned wonderful 3 +30846 1435 damned wonderful 4 +30847 1436 The first Tunisian film I have ever seen , and it 's also probably the most good-hearted yet sensual entertainment I 'm likely to see all year . 4 +30848 1436 The first Tunisian film I have ever seen , and it 's also probably the most good-hearted yet sensual entertainment I 'm likely to see all year 4 +30849 1436 The first Tunisian film I have ever seen , and 2 +30850 1436 The first Tunisian film I have ever seen , 2 +30851 1436 The first Tunisian film I have ever seen 2 +30852 1436 The first Tunisian film I 2 +30853 1436 first Tunisian film I 2 +30854 1436 Tunisian film I 2 +30855 1436 film I 2 +30856 1436 have ever seen 2 +30857 1436 have ever 2 +30858 1436 it 's also probably the most good-hearted yet sensual entertainment I 'm likely to see all year 4 +30859 1436 's also probably the most good-hearted yet sensual entertainment I 'm likely to see all year 4 +30860 1436 probably the most good-hearted yet sensual entertainment I 'm likely to see all year 4 +30861 1436 probably the most good-hearted yet sensual entertainment 4 +30862 1436 the most good-hearted yet sensual entertainment 4 +30863 1436 most good-hearted yet sensual entertainment 4 +30864 1436 most good-hearted yet sensual 3 +30865 1436 most good-hearted yet 4 +30866 1436 most good-hearted 3 +30867 1436 I 'm likely to see all year 3 +30868 1436 'm likely to see all year 2 +30869 1436 likely to see all year 3 +30870 1436 to see all year 2 +30871 1436 see all year 2 +30872 1436 all year 2 +30873 1437 There are more shots of children smiling for the camera than typical documentary footage which hurts the overall impact of the film . 2 +30874 1437 are more shots of children smiling for the camera than typical documentary footage which hurts the overall impact of the film . 1 +30875 1437 are more shots of children smiling for the camera than typical documentary footage which hurts the overall impact of the film 1 +30876 1437 more shots of children smiling for the camera than typical documentary footage which hurts the overall impact of the film 1 +30877 1437 more shots 2 +30878 1437 of children smiling for the camera than typical documentary footage which hurts the overall impact of the film 1 +30879 1437 children smiling for the camera than typical documentary footage which hurts the overall impact of the film 1 +30880 1437 smiling for the camera than typical documentary footage which hurts the overall impact of the film 1 +30881 1437 smiling for the camera 3 +30882 1437 for the camera 2 +30883 1437 than typical documentary footage which hurts the overall impact of the film 1 +30884 1437 typical documentary footage which hurts the overall impact of the film 1 +30885 1437 typical documentary footage 2 +30886 1437 documentary footage 2 +30887 1437 footage 2 +30888 1437 which hurts the overall impact of the film 1 +30889 1437 hurts the overall impact of the film 1 +30890 1437 hurts 1 +30891 1437 the overall impact of the film 2 +30892 1437 the overall impact 2 +30893 1438 Like a pack of dynamite sticks , built for controversy . 1 +30894 1438 Like a pack of dynamite sticks 2 +30895 1438 a pack of dynamite sticks 2 +30896 1438 a pack 2 +30897 1438 pack 2 +30898 1438 of dynamite sticks 2 +30899 1438 dynamite sticks 2 +30900 1438 dynamite 2 +30901 1438 sticks 2 +30902 1438 , built for controversy . 2 +30903 1438 built for controversy . 1 +30904 1438 built for controversy 3 +30905 1438 built 2 +30906 1438 for controversy 3 +30907 1439 Alas , another breathless movie about same ! 2 +30908 1439 Alas , another breathless movie about same 1 +30909 1439 Alas , 2 +30910 1439 Alas 2 +30911 1439 another breathless movie about same 2 +30912 1439 another breathless movie 3 +30913 1439 breathless movie 3 +30914 1439 breathless 3 +30915 1439 about same 2 +30916 1440 -LRB- Reaches -RRB- wholly believable and heart-wrenching depths of despair . 3 +30917 1440 -LRB- Reaches -RRB- wholly believable and heart-wrenching depths of despair 3 +30918 1440 -LRB- Reaches -RRB- 2 +30919 1440 Reaches -RRB- 2 +30920 1440 Reaches 1 +30921 1440 wholly believable and heart-wrenching depths of despair 3 +30922 1440 wholly believable and heart-wrenching depths 3 +30923 1440 wholly believable and heart-wrenching 3 +30924 1440 wholly 3 +30925 1440 believable and heart-wrenching 3 +30926 1440 believable and 3 +30927 1440 heart-wrenching 2 +30928 1440 of despair 1 +30929 1441 If you do n't ... well , skip to another review . 2 +30930 1441 If you do n't ... well 2 +30931 1441 If you do n't ... 2 +30932 1441 If you do n't 1 +30933 1441 you do n't 2 +30934 1441 , skip to another review . 2 +30935 1441 skip to another review . 2 +30936 1441 skip to another review 1 +30937 1441 to another review 2 +30938 1441 another review 2 +30939 1442 In my opinion , Analyze That is not as funny or entertaining as Analyze This , but it is a respectable sequel . 2 +30940 1442 In my opinion , Analyze That is not as funny or entertaining as Analyze This , but it is a respectable sequel 2 +30941 1442 In my opinion , Analyze That is not as funny or entertaining as Analyze This , but 1 +30942 1442 In my opinion , Analyze That is not as funny or entertaining as Analyze This , 1 +30943 1442 In my opinion , Analyze That is not as funny or entertaining as Analyze This 1 +30944 1442 In my opinion , Analyze 2 +30945 1442 my opinion , Analyze 2 +30946 1442 my opinion , 2 +30947 1442 my opinion 2 +30948 1442 opinion 2 +30949 1442 That is not as funny or entertaining as Analyze This 1 +30950 1442 is not as funny or entertaining as Analyze This 1 +30951 1442 is not as funny or entertaining 1 +30952 1442 as funny or entertaining 3 +30953 1442 funny or entertaining 3 +30954 1442 funny or 3 +30955 1442 as Analyze This 2 +30956 1442 Analyze This 2 +30957 1442 it is a respectable sequel 3 +30958 1442 is a respectable sequel 3 +30959 1442 a respectable sequel 3 +30960 1442 respectable sequel 3 +30961 1443 A generic bloodbath that often becomes laughably unbearable when it is n't merely offensive . 0 +30962 1443 A generic bloodbath that often becomes 1 +30963 1443 A generic bloodbath 1 +30964 1443 generic bloodbath 2 +30965 1443 bloodbath 1 +30966 1443 that often becomes 2 +30967 1443 often becomes 2 +30968 1443 laughably unbearable when it is n't merely offensive . 1 +30969 1443 laughably 1 +30970 1443 unbearable when it is n't merely offensive . 0 +30971 1443 unbearable when it is n't merely offensive 0 +30972 1443 unbearable 0 +30973 1443 when it is n't merely offensive 1 +30974 1443 it is n't merely offensive 1 +30975 1443 is n't merely offensive 1 +30976 1443 merely offensive 1 +30977 1444 Can be classified as one of those ` alternate reality ' movies ... except that it would have worked so much better dealing in only one reality . 1 +30978 1444 Can be classified as one of those ` alternate reality ' movies ... except that it would have worked so much better dealing in only one reality 1 +30979 1444 Can be classified as one of those ` alternate reality ' movies ... 2 +30980 1444 Can be classified as one of those ` alternate reality ' movies 2 +30981 1444 Can be classified as one of those ` alternate reality ' 2 +30982 1444 be classified as one of those ` alternate reality ' 2 +30983 1444 classified as one of those ` alternate reality ' 3 +30984 1444 as one of those ` alternate reality ' 2 +30985 1444 one of those ` alternate reality ' 1 +30986 1444 of those ` alternate reality ' 2 +30987 1444 those ` alternate reality ' 2 +30988 1444 ` alternate reality ' 2 +30989 1444 alternate reality ' 2 +30990 1444 alternate 2 +30991 1444 reality ' 2 +30992 1444 except that it would have worked so much better dealing in only one reality 2 +30993 1444 except that 2 +30994 1444 it would have worked so much better dealing in only one reality 1 +30995 1444 would have worked so much better dealing in only one reality 2 +30996 1444 have worked so much better dealing in only one reality 2 +30997 1444 worked so much better dealing in only one reality 1 +30998 1444 worked so much better 2 +30999 1444 so much better 2 +31000 1444 dealing in only one reality 2 +31001 1444 in only one reality 2 +31002 1444 only one reality 2 +31003 1444 one reality 2 +31004 1445 This wretchedly unfunny wannabe comedy is inane and awful - no doubt , it 's the worst movie I 've seen this summer . 1 +31005 1445 This wretchedly unfunny wannabe comedy is inane and awful - no doubt , it 's the worst movie I 've seen this summer 0 +31006 1445 This wretchedly unfunny wannabe comedy is inane and awful - 0 +31007 1445 This wretchedly unfunny wannabe comedy is inane and awful 0 +31008 1445 This wretchedly unfunny wannabe comedy 0 +31009 1445 wretchedly unfunny wannabe comedy 0 +31010 1445 wretchedly unfunny wannabe 0 +31011 1445 wretchedly 1 +31012 1445 unfunny wannabe 0 +31013 1445 is inane and awful 0 +31014 1445 inane and awful 0 +31015 1445 inane and 1 +31016 1445 inane 1 +31017 1445 awful 2 +31018 1445 no doubt , it 's the worst movie I 've seen this summer 0 +31019 1445 , it 's the worst movie I 've seen this summer 0 +31020 1445 it 's the worst movie I 've seen this summer 1 +31021 1445 's the worst movie I 've seen this summer 0 +31022 1445 the worst movie I 've seen this summer 1 +31023 1445 the worst movie 0 +31024 1445 worst movie 0 +31025 1445 I 've seen this summer 2 +31026 1445 've seen this summer 2 +31027 1445 seen this summer 3 +31028 1446 Entirely suspenseful , extremely well-paced and ultimately ... dare I say , entertaining ! 4 +31029 1446 Entirely suspenseful , extremely well-paced and ultimately ... 4 +31030 1446 Entirely suspenseful , extremely well-paced and ultimately 4 +31031 1446 Entirely suspenseful , extremely 4 +31032 1446 Entirely suspenseful , 3 +31033 1446 Entirely suspenseful 3 +31034 1446 well-paced and ultimately 3 +31035 1446 well-paced and 4 +31036 1446 well-paced 3 +31037 1446 dare I say , entertaining ! 3 +31038 1446 dare I say , entertaining 3 +31039 1446 I say , entertaining 4 +31040 1446 say , entertaining 2 +31041 1447 `` Red Dragon '' is entertaining . 4 +31042 1447 Red Dragon '' is entertaining . 3 +31043 1447 '' is entertaining . 3 +31044 1447 is entertaining . 3 +31045 1447 is entertaining 3 +31046 1448 Quitting offers piercing domestic drama with spikes of sly humor . 3 +31047 1448 Quitting 2 +31048 1448 offers piercing domestic drama with spikes of sly humor . 3 +31049 1448 offers piercing domestic drama with spikes of sly humor 3 +31050 1448 piercing domestic drama with spikes of sly humor 2 +31051 1448 piercing domestic drama 3 +31052 1448 piercing 3 +31053 1448 domestic drama 2 +31054 1448 with spikes of sly humor 3 +31055 1448 spikes of sly humor 3 +31056 1448 spikes 2 +31057 1448 of sly humor 3 +31058 1448 sly humor 3 +31059 1449 It winds up moving in many directions as it searches -LRB- vainly , I think -RRB- for something fresh to say . 1 +31060 1449 winds up moving in many directions as it searches -LRB- vainly , I think -RRB- for something fresh to say . 2 +31061 1449 winds up moving in many directions as it searches -LRB- vainly , I think -RRB- for something fresh to say 1 +31062 1449 moving in many directions as it searches -LRB- vainly , I think -RRB- for something fresh to say 3 +31063 1449 moving in many directions 2 +31064 1449 in many directions 2 +31065 1449 many directions 2 +31066 1449 as it searches -LRB- vainly , I think -RRB- for something fresh to say 2 +31067 1449 it searches -LRB- vainly , I think -RRB- for something fresh to say 1 +31068 1449 searches -LRB- vainly , I think -RRB- for something fresh to say 3 +31069 1449 searches -LRB- vainly , I think -RRB- 2 +31070 1449 searches 2 +31071 1449 -LRB- vainly , I think -RRB- 1 +31072 1449 vainly , I think -RRB- 2 +31073 1449 vainly , I think 1 +31074 1449 vainly 1 +31075 1449 , I think 2 +31076 1449 I think 2 +31077 1449 for something fresh to say 2 +31078 1449 something fresh to say 3 +31079 1449 fresh to say 2 +31080 1450 An improvement on the feeble examples of big-screen Poke-mania that have preceded it . 3 +31081 1450 An improvement on the feeble examples of big-screen Poke-mania that have preceded it 3 +31082 1450 An improvement 2 +31083 1450 on the feeble examples of big-screen Poke-mania that have preceded it 2 +31084 1450 the feeble examples of big-screen Poke-mania that have preceded it 1 +31085 1450 the feeble examples of big-screen Poke-mania 1 +31086 1450 the feeble examples 1 +31087 1450 feeble examples 2 +31088 1450 feeble 1 +31089 1450 examples 2 +31090 1450 of big-screen Poke-mania 2 +31091 1450 big-screen Poke-mania 2 +31092 1450 Poke-mania 2 +31093 1450 that have preceded it 3 +31094 1450 have preceded it 3 +31095 1450 preceded it 2 +31096 1450 preceded 2 +31097 1451 Fear permeates the whole of Stortelling , Todd Solondz ' oftentimes funny , yet ultimately cowardly autocritique . 3 +31098 1451 permeates the whole of Stortelling , Todd Solondz ' oftentimes funny , yet ultimately cowardly autocritique . 2 +31099 1451 permeates the whole of Stortelling , Todd Solondz ' oftentimes funny , yet ultimately cowardly autocritique 2 +31100 1451 permeates 2 +31101 1451 the whole of Stortelling , Todd Solondz ' oftentimes funny , yet ultimately cowardly autocritique 2 +31102 1451 the whole 2 +31103 1451 of Stortelling , Todd Solondz ' oftentimes funny , yet ultimately cowardly autocritique 2 +31104 1451 Stortelling , Todd Solondz ' oftentimes funny , yet ultimately cowardly autocritique 2 +31105 1451 Stortelling , 2 +31106 1451 Stortelling 2 +31107 1451 Todd Solondz ' oftentimes funny , yet ultimately cowardly autocritique 1 +31108 1451 Todd Solondz ' 2 +31109 1451 Solondz ' 2 +31110 1451 oftentimes funny , yet ultimately cowardly autocritique 3 +31111 1451 oftentimes funny , yet ultimately cowardly 1 +31112 1451 oftentimes funny , yet 3 +31113 1451 oftentimes funny , 4 +31114 1451 oftentimes funny 3 +31115 1451 oftentimes 2 +31116 1451 ultimately cowardly 1 +31117 1451 cowardly 0 +31118 1451 autocritique 2 +31119 1452 As a film director , LaBute continues to improve . 3 +31120 1452 As a film director 2 +31121 1452 a film director 2 +31122 1452 film director 2 +31123 1452 , LaBute continues to improve . 3 +31124 1452 LaBute continues to improve . 3 +31125 1452 continues to improve . 3 +31126 1452 continues to improve 3 +31127 1452 to improve 2 +31128 1453 Dull , a road-trip movie that 's surprisingly short of both adventure and song . 0 +31129 1453 Dull , a road-trip movie that 's surprisingly short of both adventure and song 1 +31130 1453 Dull , 1 +31131 1453 a road-trip movie that 's surprisingly short of both adventure and song 1 +31132 1453 a road-trip movie 2 +31133 1453 road-trip movie 2 +31134 1453 road-trip 2 +31135 1453 that 's surprisingly short of both adventure and song 1 +31136 1453 's surprisingly short of both adventure and song 2 +31137 1453 surprisingly short of both adventure and song 1 +31138 1453 short of both adventure and song 0 +31139 1453 of both adventure and song 3 +31140 1453 both adventure and song 2 +31141 1453 adventure and song 3 +31142 1453 adventure and 2 +31143 1454 You wo n't have any trouble getting kids to eat up these Veggies . 3 +31144 1454 wo n't have any trouble getting kids to eat up these Veggies . 3 +31145 1454 wo n't have any trouble getting kids to eat up these Veggies 3 +31146 1454 have any trouble getting kids to eat up these Veggies 3 +31147 1454 any trouble getting kids to eat up these Veggies 2 +31148 1454 any trouble 2 +31149 1454 getting kids to eat up these Veggies 2 +31150 1454 getting kids 2 +31151 1454 getting 2 +31152 1454 to eat up these Veggies 2 +31153 1454 eat up these Veggies 2 +31154 1454 eat up 3 +31155 1454 these Veggies 2 +31156 1454 Veggies 2 +31157 1455 Some may choose to interpret the film 's end as hopeful or optimistic but I think Payne is after something darker . 2 +31158 1455 Some may choose to interpret the film 's end as hopeful or optimistic but I think Payne is after something darker 3 +31159 1455 Some may choose to interpret the film 's end as hopeful or optimistic but 2 +31160 1455 Some may choose to interpret the film 's end as hopeful or optimistic 2 +31161 1455 may choose to interpret the film 's end as hopeful or optimistic 3 +31162 1455 choose to interpret the film 's end as hopeful or optimistic 3 +31163 1455 choose 2 +31164 1455 to interpret the film 's end as hopeful or optimistic 3 +31165 1455 interpret the film 's end as hopeful or optimistic 3 +31166 1455 interpret 2 +31167 1455 the film 's end as hopeful or optimistic 2 +31168 1455 the film 's end 2 +31169 1455 as hopeful or optimistic 2 +31170 1455 hopeful or optimistic 4 +31171 1455 hopeful or 2 +31172 1455 optimistic 3 +31173 1455 I think Payne is after something darker 2 +31174 1455 think Payne is after something darker 2 +31175 1455 Payne is after something darker 2 +31176 1455 is after something darker 1 +31177 1455 after something darker 2 +31178 1455 something darker 2 +31179 1456 Scott delivers a terrific performance in this fascinating portrait of a modern Lothario . 4 +31180 1456 Scott 2 +31181 1456 delivers a terrific performance in this fascinating portrait of a modern Lothario . 4 +31182 1456 delivers a terrific performance in this fascinating portrait of a modern Lothario 3 +31183 1456 a terrific performance in this fascinating portrait of a modern Lothario 4 +31184 1456 a terrific performance 4 +31185 1456 terrific performance 4 +31186 1456 in this fascinating portrait of a modern Lothario 4 +31187 1456 this fascinating portrait of a modern Lothario 3 +31188 1456 this fascinating portrait 3 +31189 1456 fascinating portrait 4 +31190 1456 of a modern Lothario 2 +31191 1456 a modern Lothario 2 +31192 1456 modern Lothario 2 +31193 1456 Lothario 2 +31194 1457 Overwrought , melodramatic bodice-ripper . 1 +31195 1457 Overwrought , melodramatic bodice-ripper 0 +31196 1457 Overwrought , 1 +31197 1457 Overwrought 1 +31198 1457 melodramatic bodice-ripper 1 +31199 1457 bodice-ripper 2 +31200 1458 Steers has an unexpectedly adamant streak of warm-blooded empathy for all his disparate Manhattan denizens -- especially the a \*\* holes . 2 +31201 1458 has an unexpectedly adamant streak of warm-blooded empathy for all his disparate Manhattan denizens -- especially the a \*\* holes . 3 +31202 1458 has an unexpectedly adamant streak of warm-blooded empathy for all his disparate Manhattan denizens -- especially the a \*\* holes 3 +31203 1458 an unexpectedly adamant streak of warm-blooded empathy for all his disparate Manhattan denizens -- especially the a \*\* holes 3 +31204 1458 an unexpectedly adamant streak 3 +31205 1458 unexpectedly adamant streak 3 +31206 1458 unexpectedly adamant 2 +31207 1458 adamant 2 +31208 1458 streak 2 +31209 1458 of warm-blooded empathy for all his disparate Manhattan denizens -- especially the a \*\* holes 2 +31210 1458 warm-blooded empathy for all his disparate Manhattan denizens -- especially the a \*\* holes 2 +31211 1458 warm-blooded empathy 3 +31212 1458 warm-blooded 2 +31213 1458 for all his disparate Manhattan denizens -- especially the a \*\* holes 1 +31214 1458 all his disparate Manhattan denizens -- especially the a \*\* holes 1 +31215 1458 his disparate Manhattan denizens -- especially the a \*\* holes 1 +31216 1458 his disparate Manhattan denizens -- 2 +31217 1458 his disparate Manhattan denizens 2 +31218 1458 disparate Manhattan denizens 2 +31219 1458 disparate 2 +31220 1458 Manhattan denizens 2 +31221 1458 denizens 2 +31222 1458 especially the a \*\* holes 2 +31223 1458 especially the 2 +31224 1458 a \*\* holes 1 +31225 1458 \*\* holes 1 +31226 1458 \*\* 2 +31227 1458 holes 2 +31228 1459 These two are generating about as much chemistry as an Iraqi factory poised to receive a UN inspector . 2 +31229 1459 are generating about as much chemistry as an Iraqi factory poised to receive a UN inspector . 1 +31230 1459 are generating about as much chemistry as an Iraqi factory poised to receive a UN inspector 1 +31231 1459 generating about as much chemistry as an Iraqi factory poised to receive a UN inspector 2 +31232 1459 generating about as much chemistry 2 +31233 1459 generating 2 +31234 1459 about as much chemistry 2 +31235 1459 about as much 2 +31236 1459 as much 2 +31237 1459 as an Iraqi factory poised to receive a UN inspector 2 +31238 1459 an Iraqi factory poised to receive a UN inspector 2 +31239 1459 an Iraqi factory 1 +31240 1459 Iraqi factory 3 +31241 1459 Iraqi 2 +31242 1459 poised to receive a UN inspector 2 +31243 1459 poised 2 +31244 1459 to receive a UN inspector 2 +31245 1459 receive a UN inspector 2 +31246 1459 receive 3 +31247 1459 a UN inspector 2 +31248 1459 UN inspector 2 +31249 1459 UN 2 +31250 1459 inspector 2 +31251 1460 Jeffrey Tambor 's performance as the intelligent jazz-playing exterminator is Oscar-worthy . 4 +31252 1460 Jeffrey Tambor 's performance as the intelligent jazz-playing exterminator 2 +31253 1460 Jeffrey Tambor 's performance 2 +31254 1460 Jeffrey Tambor 's 3 +31255 1460 Jeffrey 2 +31256 1460 Tambor 's 2 +31257 1460 as the intelligent jazz-playing exterminator 2 +31258 1460 the intelligent jazz-playing exterminator 2 +31259 1460 intelligent jazz-playing exterminator 3 +31260 1460 jazz-playing exterminator 2 +31261 1460 jazz-playing 2 +31262 1460 exterminator 2 +31263 1460 is Oscar-worthy . 4 +31264 1460 is Oscar-worthy 4 +31265 1460 Oscar-worthy 4 +31266 1461 This familiar rise-and-fall tale is long on glamour and short on larger moralistic consequences , though it 's told with sharp ears and eyes for the tenor of the times . 3 +31267 1461 This familiar rise-and-fall tale 2 +31268 1461 familiar rise-and-fall tale 2 +31269 1461 rise-and-fall tale 2 +31270 1461 rise-and-fall 2 +31271 1461 is long on glamour and short on larger moralistic consequences , though it 's told with sharp ears and eyes for the tenor of the times . 2 +31272 1461 is long on glamour and short on larger moralistic consequences , though it 's told with sharp ears and eyes for the tenor of the times 2 +31273 1461 is long on glamour and short on larger moralistic consequences , 1 +31274 1461 is long on glamour and short on larger moralistic consequences 2 +31275 1461 long on glamour and short on larger moralistic consequences 2 +31276 1461 long on glamour and 2 +31277 1461 long on glamour 3 +31278 1461 on glamour 2 +31279 1461 short on larger moralistic consequences 1 +31280 1461 on larger moralistic consequences 2 +31281 1461 larger moralistic consequences 2 +31282 1461 larger moralistic 2 +31283 1461 moralistic 2 +31284 1461 consequences 2 +31285 1461 though it 's told with sharp ears and eyes for the tenor of the times 3 +31286 1461 it 's told with sharp ears and eyes for the tenor of the times 2 +31287 1461 's told with sharp ears and eyes for the tenor of the times 2 +31288 1461 told with sharp ears and eyes for the tenor of the times 3 +31289 1461 told with sharp ears and eyes 3 +31290 1461 with sharp ears and eyes 3 +31291 1461 sharp ears and eyes 2 +31292 1461 ears and eyes 2 +31293 1461 ears and 2 +31294 1461 ears 2 +31295 1461 for the tenor of the times 2 +31296 1461 the tenor of the times 2 +31297 1461 the tenor 2 +31298 1461 of the times 2 +31299 1462 Even the hastily and amateurishly drawn animation can not engage . 0 +31300 1462 Even the hastily and amateurishly drawn animation 1 +31301 1462 Even the hastily and amateurishly 1 +31302 1462 the hastily and amateurishly 0 +31303 1462 hastily and amateurishly 1 +31304 1462 hastily and 1 +31305 1462 drawn animation 2 +31306 1462 can not engage . 1 +31307 1462 can not engage 1 +31308 1463 Plodding , peevish and gimmicky . 1 +31309 1463 Plodding , peevish and gimmicky 0 +31310 1463 Plodding , 1 +31311 1463 peevish and gimmicky 1 +31312 1463 peevish and 1 +31313 1463 peevish 1 +31314 1463 gimmicky 3 +31315 1464 Insomnia does not become one of those rare remakes to eclipse the original , but it does n't disgrace it , either . 2 +31316 1464 Insomnia does not become one of those rare remakes to eclipse the original , but it does n't disgrace it , either 3 +31317 1464 Insomnia does not become one of those rare remakes to eclipse the original , but 3 +31318 1464 Insomnia does not become one of those rare remakes to eclipse the original , 1 +31319 1464 Insomnia does not become one of those rare remakes to eclipse the original 2 +31320 1464 does not become one of those rare remakes to eclipse the original 2 +31321 1464 become one of those rare remakes to eclipse the original 3 +31322 1464 become one of those rare remakes 2 +31323 1464 one of those rare remakes 3 +31324 1464 of those rare remakes 3 +31325 1464 those rare remakes 2 +31326 1464 rare remakes 3 +31327 1464 to eclipse the original 2 +31328 1464 eclipse the original 3 +31329 1464 eclipse 2 +31330 1464 it does n't disgrace it , either 2 +31331 1464 does n't disgrace it , either 2 +31332 1464 disgrace it , either 2 +31333 1464 disgrace it , 1 +31334 1464 disgrace it 1 +31335 1464 disgrace 1 +31336 1465 No. . 1 +31337 1465 No. 1 +31338 1466 To say that this vapid vehicle is downright doltish and uneventful is just as obvious as telling a country skunk that he has severe body odor . 0 +31339 1466 To say that this vapid vehicle is downright doltish and uneventful 1 +31340 1466 say that this vapid vehicle is downright doltish and uneventful 1 +31341 1466 that this vapid vehicle is downright doltish and uneventful 1 +31342 1466 this vapid vehicle is downright doltish and uneventful 0 +31343 1466 this vapid vehicle 2 +31344 1466 vapid vehicle 1 +31345 1466 vehicle 2 +31346 1466 is downright doltish and uneventful 0 +31347 1466 downright doltish and uneventful 2 +31348 1466 doltish and uneventful 1 +31349 1466 doltish and 1 +31350 1466 doltish 1 +31351 1466 uneventful 1 +31352 1466 is just as obvious as telling a country skunk that he has severe body odor . 1 +31353 1466 is just as obvious as telling a country skunk that he has severe body odor 0 +31354 1466 is just as obvious as telling a country skunk 1 +31355 1466 as obvious as telling a country skunk 1 +31356 1466 obvious as telling a country skunk 1 +31357 1466 as telling a country skunk 1 +31358 1466 telling a country skunk 2 +31359 1466 a country skunk 1 +31360 1466 country skunk 2 +31361 1466 skunk 1 +31362 1466 that he has severe body odor 2 +31363 1466 he has severe body odor 0 +31364 1466 has severe body odor 0 +31365 1466 severe body odor 0 +31366 1466 severe 2 +31367 1466 body odor 2 +31368 1466 odor 2 +31369 1467 It 's crap on a leash -- far too polite to scale the lunatic heights of Joe Dante 's similarly styled Gremlins . 0 +31370 1467 's crap on a leash -- far too polite to scale the lunatic heights of Joe Dante 's similarly styled Gremlins . 0 +31371 1467 's crap on a leash -- far too polite to scale the lunatic heights of Joe Dante 's similarly styled Gremlins 1 +31372 1467 crap on a leash -- far too polite to scale the lunatic heights of Joe Dante 's similarly styled Gremlins 1 +31373 1467 crap 0 +31374 1467 on a leash -- far too polite to scale the lunatic heights of Joe Dante 's similarly styled Gremlins 2 +31375 1467 a leash -- far too polite to scale the lunatic heights of Joe Dante 's similarly styled Gremlins 1 +31376 1467 a leash -- 2 +31377 1467 a leash 2 +31378 1467 leash 2 +31379 1467 far too polite to scale the lunatic heights of Joe Dante 's similarly styled Gremlins 3 +31380 1467 too polite to scale the lunatic heights of Joe Dante 's similarly styled Gremlins 1 +31381 1467 polite to scale the lunatic heights of Joe Dante 's similarly styled Gremlins 2 +31382 1467 polite 2 +31383 1467 to scale the lunatic heights of Joe Dante 's similarly styled Gremlins 3 +31384 1467 scale the lunatic heights of Joe Dante 's similarly styled Gremlins 2 +31385 1467 scale 2 +31386 1467 the lunatic heights of Joe Dante 's similarly styled Gremlins 2 +31387 1467 the lunatic heights 2 +31388 1467 lunatic heights 2 +31389 1467 heights 2 +31390 1467 of Joe Dante 's similarly styled Gremlins 2 +31391 1467 Joe Dante 's similarly styled Gremlins 3 +31392 1467 Joe Dante 's 2 +31393 1467 Joe 2 +31394 1467 Dante 's 2 +31395 1467 Dante 2 +31396 1467 similarly styled Gremlins 3 +31397 1467 similarly styled 2 +31398 1467 similarly 2 +31399 1467 styled 2 +31400 1467 Gremlins 2 +31401 1468 At 78 minutes it just zings along with vibrance and warmth . 4 +31402 1468 At 78 minutes 2 +31403 1468 78 minutes 2 +31404 1468 78 2 +31405 1468 it just zings along with vibrance and warmth . 4 +31406 1468 just zings along with vibrance and warmth . 4 +31407 1468 zings along with vibrance and warmth . 4 +31408 1468 zings along with vibrance and warmth 4 +31409 1468 zings along 2 +31410 1468 zings 2 +31411 1468 with vibrance and warmth 3 +31412 1468 vibrance and warmth 3 +31413 1468 vibrance and 3 +31414 1468 vibrance 3 +31415 1469 You have to see it . 4 +31416 1469 have to see it . 3 +31417 1469 have to see it 3 +31418 1470 If ever such a dependable concept was botched in execution , this is it . 0 +31419 1470 If ever such a dependable concept was botched in execution 1 +31420 1470 ever such a dependable concept was botched in execution 1 +31421 1470 such a dependable concept was botched in execution 1 +31422 1470 such a dependable concept 3 +31423 1470 a dependable concept 3 +31424 1470 dependable concept 3 +31425 1470 dependable 2 +31426 1470 was botched in execution 1 +31427 1470 botched in execution 1 +31428 1470 botched 1 +31429 1470 , this is it . 2 +31430 1470 this is it . 2 +31431 1470 is it . 2 +31432 1471 A tasty slice of droll whimsy . 2 +31433 1471 A tasty slice of droll whimsy 3 +31434 1471 A tasty slice 3 +31435 1471 tasty slice 3 +31436 1471 of droll whimsy 2 +31437 1471 droll whimsy 1 +31438 1471 droll 2 +31439 1472 ... while the humor aspects of ` Jason X ' were far more entertaining than I had expected , everything else about the film tanks . 1 +31440 1472 while the humor aspects of ` Jason X ' were far more entertaining than I had expected , everything else about the film tanks . 1 +31441 1472 while the humor aspects of ` Jason X ' were far more entertaining than I had expected 3 +31442 1472 the humor aspects of ` Jason X ' were far more entertaining than I had expected 3 +31443 1472 the humor aspects of ` Jason X ' 2 +31444 1472 the humor aspects 2 +31445 1472 humor aspects 2 +31446 1472 of ` Jason X ' 2 +31447 1472 of ` Jason X 2 +31448 1472 were far more entertaining than I had expected 4 +31449 1472 far more entertaining than I had expected 4 +31450 1472 far more entertaining 4 +31451 1472 more entertaining 3 +31452 1472 than I had expected 2 +31453 1472 I had expected 2 +31454 1472 had expected 2 +31455 1472 , everything else about the film tanks . 1 +31456 1472 everything else about the film tanks . 1 +31457 1472 everything else about the film 2 +31458 1472 about the film 2 +31459 1472 tanks . 1 +31460 1472 tanks 1 +31461 1473 Rice is too pedestrian a filmmaker to bring any edge or personality to The Rising Place that would set it apart from other Deep South stories . 1 +31462 1473 is too pedestrian a filmmaker to bring any edge or personality to The Rising Place that would set it apart from other Deep South stories . 1 +31463 1473 is too pedestrian a filmmaker to bring any edge or personality to The Rising Place that would set it apart from other Deep South stories 0 +31464 1473 is too 2 +31465 1473 pedestrian a filmmaker to bring any edge or personality to The Rising Place that would set it apart from other Deep South stories 2 +31466 1473 a filmmaker to bring any edge or personality to The Rising Place that would set it apart from other Deep South stories 2 +31467 1473 filmmaker to bring any edge or personality to The Rising Place that would set it apart from other Deep South stories 2 +31468 1473 to bring any edge or personality to The Rising Place that would set it apart from other Deep South stories 3 +31469 1473 bring any edge or personality to The Rising Place that would set it apart from other Deep South stories 2 +31470 1473 bring any edge or personality 2 +31471 1473 any edge or personality 2 +31472 1473 edge or personality 2 +31473 1473 edge or 3 +31474 1473 to The Rising Place that would set it apart from other Deep South stories 3 +31475 1473 The Rising Place that would set it apart from other Deep South stories 3 +31476 1473 The Rising Place 2 +31477 1473 Rising Place 2 +31478 1473 Rising 3 +31479 1473 that would set it apart from other Deep South stories 3 +31480 1473 would set it apart from other Deep South stories 2 +31481 1473 set it apart from other Deep South stories 3 +31482 1473 set it apart 2 +31483 1473 set it 2 +31484 1473 from other Deep South stories 2 +31485 1473 other Deep South stories 2 +31486 1473 Deep South stories 2 +31487 1473 South stories 2 +31488 1474 Broomfield reveals an ironic manifestation of institutionalized slavery that ties a black-owned record label with a white-empowered police force . 2 +31489 1474 Broomfield 2 +31490 1474 reveals an ironic manifestation of institutionalized slavery that ties a black-owned record label with a white-empowered police force . 3 +31491 1474 reveals an ironic manifestation of institutionalized slavery that ties a black-owned record label with a white-empowered police force 2 +31492 1474 an ironic manifestation of institutionalized slavery that ties a black-owned record label with a white-empowered police force 2 +31493 1474 an ironic manifestation of institutionalized slavery 2 +31494 1474 an ironic manifestation 2 +31495 1474 ironic manifestation 2 +31496 1474 manifestation 2 +31497 1474 of institutionalized slavery 2 +31498 1474 institutionalized slavery 1 +31499 1474 institutionalized 2 +31500 1474 slavery 2 +31501 1474 that ties a black-owned record label with a white-empowered police force 2 +31502 1474 ties a black-owned record label with a white-empowered police force 2 +31503 1474 ties a black-owned record label 2 +31504 1474 a black-owned record label 2 +31505 1474 black-owned record label 2 +31506 1474 black-owned 2 +31507 1474 record label 2 +31508 1474 label 2 +31509 1474 with a white-empowered police force 1 +31510 1474 a white-empowered police force 1 +31511 1474 white-empowered police force 2 +31512 1474 white-empowered 2 +31513 1474 police force 2 +31514 1475 Ritchie 's film is easier to swallow than Wertmuller 's polemical allegory , but it 's self-defeatingly decorous . 1 +31515 1475 Ritchie 's film is easier to swallow than Wertmuller 's polemical allegory , but it 's self-defeatingly decorous 1 +31516 1475 Ritchie 's film is easier to swallow than Wertmuller 's polemical allegory , but 2 +31517 1475 Ritchie 's film is easier to swallow than Wertmuller 's polemical allegory , 2 +31518 1475 Ritchie 's film is easier to swallow than Wertmuller 's polemical allegory 2 +31519 1475 Ritchie 's film 2 +31520 1475 Ritchie 's 2 +31521 1475 is easier to swallow than Wertmuller 's polemical allegory 2 +31522 1475 to swallow than Wertmuller 's polemical allegory 2 +31523 1475 swallow than Wertmuller 's polemical allegory 2 +31524 1475 than Wertmuller 's polemical allegory 2 +31525 1475 Wertmuller 's polemical allegory 2 +31526 1475 Wertmuller 's 2 +31527 1475 Wertmuller 2 +31528 1475 polemical allegory 2 +31529 1475 it 's self-defeatingly decorous 1 +31530 1475 's self-defeatingly decorous 1 +31531 1475 self-defeatingly decorous 1 +31532 1475 self-defeatingly 2 +31533 1475 decorous 3 +31534 1476 The film is ultimately about as inspiring as a Hallmark card . 1 +31535 1476 is ultimately about as inspiring as a Hallmark card . 0 +31536 1476 is ultimately about as inspiring as a Hallmark card 1 +31537 1476 is ultimately about as inspiring 2 +31538 1476 is ultimately 3 +31539 1476 about as inspiring 1 +31540 1476 as inspiring 3 +31541 1476 as a Hallmark card 2 +31542 1476 a Hallmark card 2 +31543 1476 Hallmark card 2 +31544 1476 Hallmark 2 +31545 1477 With little visible talent and no energy , Colin Hanks is in bad need of major acting lessons and maybe a little coffee . 0 +31546 1477 With little visible talent and no energy 0 +31547 1477 little visible talent and no energy 0 +31548 1477 little visible talent and 1 +31549 1477 little visible talent 1 +31550 1477 little visible 2 +31551 1477 no energy 1 +31552 1477 , Colin Hanks is in bad need of major acting lessons and maybe a little coffee . 1 +31553 1477 Colin Hanks is in bad need of major acting lessons and maybe a little coffee . 0 +31554 1477 Colin Hanks 2 +31555 1477 Colin 2 +31556 1477 is in bad need of major acting lessons and maybe a little coffee . 0 +31557 1477 is in bad need of major acting lessons and maybe a little coffee 0 +31558 1477 in bad need of major acting lessons and maybe a little coffee 1 +31559 1477 bad need of major acting lessons and maybe a little coffee 1 +31560 1477 bad need 2 +31561 1477 of major acting lessons and maybe a little coffee 1 +31562 1477 major acting lessons and maybe a little coffee 1 +31563 1477 major acting lessons and 1 +31564 1477 major acting lessons 2 +31565 1477 acting lessons 2 +31566 1477 maybe a little coffee 2 +31567 1477 a little coffee 2 +31568 1477 little coffee 2 +31569 1477 coffee 3 +31570 1478 The film oozes craft . 3 +31571 1478 oozes craft . 3 +31572 1478 oozes craft 3 +31573 1478 oozes 2 +31574 1478 craft 2 +31575 1479 Stevens ' vibrant creative instincts are the difference between this and countless other flicks about guys and dolls . 3 +31576 1479 Stevens ' vibrant creative instincts 3 +31577 1479 Stevens ' 2 +31578 1479 Stevens 2 +31579 1479 vibrant creative instincts 3 +31580 1479 vibrant 3 +31581 1479 creative instincts 3 +31582 1479 are the difference between this and countless other flicks about guys and dolls . 2 +31583 1479 are the difference between this and countless other flicks about guys and dolls 3 +31584 1479 the difference between this and countless other flicks about guys and dolls 2 +31585 1479 the difference between this and 2 +31586 1479 the difference between this 2 +31587 1479 between this 2 +31588 1479 countless other flicks about guys and dolls 2 +31589 1479 countless other flicks 2 +31590 1479 countless 2 +31591 1479 other flicks 2 +31592 1479 about guys and dolls 3 +31593 1479 guys and dolls 2 +31594 1479 guys and 2 +31595 1480 Weighty and ponderous but every bit as filling as the treat of the title . 3 +31596 1480 Weighty and ponderous but every bit as filling as the treat of the title 3 +31597 1480 Weighty and ponderous 2 +31598 1480 Weighty and 2 +31599 1480 Weighty 2 +31600 1480 ponderous 2 +31601 1480 but every bit as filling as the treat of the title 3 +31602 1480 every bit as filling as the treat of the title 4 +31603 1480 every bit 2 +31604 1480 as filling as the treat of the title 3 +31605 1480 filling as the treat of the title 2 +31606 1480 filling 3 +31607 1480 as the treat of the title 3 +31608 1480 the treat of the title 3 +31609 1480 the treat 3 +31610 1480 of the title 2 +31611 1481 There 's an excellent 90-minute film here ; unfortunately , it runs for 170 . 1 +31612 1481 There 's an excellent 90-minute film here ; unfortunately , it runs for 170 2 +31613 1481 There 's an excellent 90-minute film here ; 4 +31614 1481 There 's an excellent 90-minute film here 3 +31615 1481 's an excellent 90-minute film here 4 +31616 1481 's an excellent 90-minute film 4 +31617 1481 an excellent 90-minute film 4 +31618 1481 excellent 90-minute film 4 +31619 1481 90-minute film 2 +31620 1481 unfortunately , it runs for 170 1 +31621 1481 , it runs for 170 1 +31622 1481 it runs for 170 2 +31623 1481 runs for 170 2 +31624 1481 for 170 2 +31625 1481 170 2 +31626 1482 But it does somehow manage to get you under its spell . 3 +31627 1482 it does somehow manage to get you under its spell . 3 +31628 1482 does somehow manage to get you under its spell . 3 +31629 1482 does somehow manage to get you under its spell 3 +31630 1482 does somehow 2 +31631 1482 manage to get you under its spell 3 +31632 1482 to get you under its spell 2 +31633 1482 get you under its spell 2 +31634 1482 get you 3 +31635 1482 under its spell 2 +31636 1482 its spell 2 +31637 1482 spell 2 +31638 1483 Brian Tufano 's handsome widescreen photography and Paul Grabowsky 's excellent music turn this fairly parochial melodrama into something really rather special . 4 +31639 1483 Brian Tufano 's handsome widescreen photography and Paul Grabowsky 's excellent music 3 +31640 1483 Brian Tufano 's handsome widescreen photography and 3 +31641 1483 Brian Tufano 's handsome widescreen photography 3 +31642 1483 Brian Tufano 's 2 +31643 1483 Tufano 's 2 +31644 1483 Tufano 2 +31645 1483 handsome widescreen photography 3 +31646 1483 widescreen photography 3 +31647 1483 widescreen 2 +31648 1483 photography 2 +31649 1483 Paul Grabowsky 's excellent music 4 +31650 1483 Paul Grabowsky 's 2 +31651 1483 Grabowsky 's 2 +31652 1483 Grabowsky 2 +31653 1483 excellent music 4 +31654 1483 turn this fairly parochial melodrama into something really rather special . 4 +31655 1483 turn this fairly parochial melodrama into something really rather special 3 +31656 1483 turn this fairly parochial melodrama into something 2 +31657 1483 this fairly parochial melodrama into something 2 +31658 1483 this fairly parochial melodrama 2 +31659 1483 fairly parochial melodrama 1 +31660 1483 fairly parochial 2 +31661 1483 parochial 2 +31662 1483 into something 2 +31663 1483 really rather special 4 +31664 1483 rather special 4 +31665 1484 Uplifting , funny and wise . 3 +31666 1484 Uplifting , funny and wise 3 +31667 1484 Uplifting , 3 +31668 1484 funny and wise 3 +31669 1485 Old people will love this movie , and I mean that in the nicest possible way : Last Orders will touch the heart of anyone old enough to have earned a 50-year friendship . 2 +31670 1485 Old people will love this movie , and I mean that in the nicest possible way : Last Orders will touch the heart of anyone old enough to have earned a 50-year friendship 4 +31671 1485 Old people will love this movie , and I mean that in the nicest possible way : 3 +31672 1485 Old people will love this movie , and I mean that in the nicest possible way 3 +31673 1485 Old people will love this movie , and 3 +31674 1485 Old people will love this movie , 3 +31675 1485 Old people will love this movie 3 +31676 1485 Old people 2 +31677 1485 will love this movie 4 +31678 1485 love this movie 3 +31679 1485 I mean that in the nicest possible way 3 +31680 1485 mean that in the nicest possible way 2 +31681 1485 mean 1 +31682 1485 that in the nicest possible way 3 +31683 1485 in the nicest possible way 3 +31684 1485 the nicest possible way 2 +31685 1485 nicest possible way 3 +31686 1485 nicest 4 +31687 1485 possible way 2 +31688 1485 Last Orders will touch the heart of anyone old enough to have earned a 50-year friendship 3 +31689 1485 Last Orders 2 +31690 1485 Orders 2 +31691 1485 will touch the heart of anyone old enough to have earned a 50-year friendship 4 +31692 1485 touch the heart of anyone old enough to have earned a 50-year friendship 3 +31693 1485 the heart of anyone old enough to have earned a 50-year friendship 3 +31694 1485 of anyone old enough to have earned a 50-year friendship 2 +31695 1485 anyone old enough to have earned a 50-year friendship 2 +31696 1485 old enough to have earned a 50-year friendship 3 +31697 1485 old enough 2 +31698 1485 to have earned a 50-year friendship 3 +31699 1485 have earned a 50-year friendship 3 +31700 1485 earned a 50-year friendship 2 +31701 1485 earned 2 +31702 1485 a 50-year friendship 2 +31703 1485 50-year friendship 3 +31704 1485 50-year 2 +31705 1486 A poky and pseudo-serious exercise in sham actor workshops and an affected malaise . 0 +31706 1486 A poky and pseudo-serious 2 +31707 1486 A poky and 2 +31708 1486 A poky 2 +31709 1486 poky 1 +31710 1486 pseudo-serious 2 +31711 1486 exercise in sham actor workshops and an affected malaise . 0 +31712 1486 exercise in sham actor workshops and an affected malaise 1 +31713 1486 in sham actor workshops and an affected malaise 1 +31714 1486 sham actor workshops and an affected malaise 1 +31715 1486 sham actor workshops and 1 +31716 1486 sham actor workshops 1 +31717 1486 actor workshops 2 +31718 1486 workshops 2 +31719 1486 an affected malaise 1 +31720 1486 affected malaise 2 +31721 1486 affected 2 +31722 1486 malaise 1 +31723 1487 These characters are so well established that the gang feels comfortable with taking insane liberties and doing the goofiest stuff out of left field , and I 'm all for that . 3 +31724 1487 These characters are so well established that the gang feels comfortable with taking insane liberties and doing the goofiest stuff out of left field , and I 'm all for that 4 +31725 1487 These characters are so well established that the gang feels comfortable with taking insane liberties and doing the goofiest stuff out of left field , and 3 +31726 1487 These characters are so well established that the gang feels comfortable with taking insane liberties and doing the goofiest stuff out of left field , 3 +31727 1487 These characters are so well established that the gang feels comfortable with taking insane liberties and doing the goofiest stuff out of left field 4 +31728 1487 These characters 2 +31729 1487 are so well established that the gang feels comfortable with taking insane liberties and doing the goofiest stuff out of left field 3 +31730 1487 are so well 3 +31731 1487 established that the gang feels comfortable with taking insane liberties and doing the goofiest stuff out of left field 2 +31732 1487 established 2 +31733 1487 that the gang feels comfortable with taking insane liberties and doing the goofiest stuff out of left field 3 +31734 1487 the gang feels comfortable with taking insane liberties and doing the goofiest stuff out of left field 2 +31735 1487 the gang 2 +31736 1487 feels comfortable with taking insane liberties and doing the goofiest stuff out of left field 3 +31737 1487 comfortable with taking insane liberties and doing the goofiest stuff out of left field 2 +31738 1487 comfortable 3 +31739 1487 with taking insane liberties and doing the goofiest stuff out of left field 3 +31740 1487 taking insane liberties and doing the goofiest stuff out of left field 2 +31741 1487 taking insane liberties and 2 +31742 1487 taking insane liberties 2 +31743 1487 insane liberties 1 +31744 1487 liberties 2 +31745 1487 doing the goofiest stuff out of left field 2 +31746 1487 the goofiest stuff out of left field 2 +31747 1487 the goofiest stuff 2 +31748 1487 goofiest stuff 3 +31749 1487 goofiest 3 +31750 1487 out of left field 2 +31751 1487 of left field 2 +31752 1487 left field 2 +31753 1487 I 'm all for that 3 +31754 1487 'm all for that 3 +31755 1487 all for that 2 +31756 1487 for that 2 +31757 1488 Just about the surest bet for an all-around good time at the movies this summer . 4 +31758 1488 Just about the surest bet for an all-around good time at the movies this summer 4 +31759 1488 Just about the surest bet 4 +31760 1488 about the surest bet 2 +31761 1488 the surest bet 3 +31762 1488 surest bet 2 +31763 1488 surest 2 +31764 1488 for an all-around good time at the movies this summer 3 +31765 1488 an all-around good time at the movies this summer 4 +31766 1488 an all-around good time at the movies 3 +31767 1488 an all-around good time 4 +31768 1488 all-around good time 4 +31769 1488 all-around 2 +31770 1489 It 's all about Anakin ... and the lustrous polished visuals rich in color and creativity and , of course , special effect . 4 +31771 1489 's all about Anakin ... and the lustrous polished visuals rich in color and creativity and , of course , special effect . 4 +31772 1489 's all about Anakin ... and the lustrous polished visuals rich in color and creativity and , of course , special effect 4 +31773 1489 all about Anakin ... and the lustrous polished visuals rich in color and creativity and , of course , special effect 4 +31774 1489 all about Anakin ... and 2 +31775 1489 all about Anakin ... 2 +31776 1489 all about Anakin 2 +31777 1489 about Anakin 2 +31778 1489 Anakin 2 +31779 1489 the lustrous polished visuals rich in color and creativity and , of course , special effect 4 +31780 1489 the lustrous polished visuals rich in color and creativity and , of course , 3 +31781 1489 the lustrous polished visuals rich in color and creativity and 3 +31782 1489 the lustrous polished visuals rich in color and creativity 4 +31783 1489 the lustrous polished visuals 3 +31784 1489 lustrous polished visuals 3 +31785 1489 lustrous polished 3 +31786 1489 lustrous 3 +31787 1489 polished 4 +31788 1489 rich in color and creativity 3 +31789 1489 in color and creativity 2 +31790 1489 color and creativity 3 +31791 1489 color and 2 +31792 1489 creativity 3 +31793 1489 , of course , 2 +31794 1489 of course , 2 +31795 1489 of course 2 +31796 1489 special effect 3 +31797 1490 ... the efforts of its star , Kline , to lend some dignity to a dumb story are for naught . 1 +31798 1490 the efforts of its star , Kline , to lend some dignity to a dumb story are for naught . 1 +31799 1490 the efforts of its star , Kline , to lend some dignity to a dumb story 1 +31800 1490 the efforts of its star , Kline , 2 +31801 1490 the efforts 2 +31802 1490 of its star , Kline , 2 +31803 1490 its star , Kline , 2 +31804 1490 its star , Kline 2 +31805 1490 Kline 2 +31806 1490 to lend some dignity to a dumb story 1 +31807 1490 lend some dignity to a dumb story 1 +31808 1490 lend some dignity 2 +31809 1490 lend 2 +31810 1490 some dignity 2 +31811 1490 to a dumb story 1 +31812 1490 a dumb story 2 +31813 1490 dumb story 1 +31814 1490 are for naught . 2 +31815 1490 are for naught 2 +31816 1490 for naught 2 +31817 1490 naught 2 +31818 1491 A sometimes incisive and sensitive portrait that is undercut by its awkward structure and a final veering toward melodrama . 1 +31819 1491 A sometimes incisive and sensitive portrait that is 2 +31820 1491 A sometimes incisive and sensitive portrait 3 +31821 1491 sometimes incisive and sensitive portrait 2 +31822 1491 sometimes incisive and sensitive 2 +31823 1491 incisive and sensitive 3 +31824 1491 incisive and 3 +31825 1491 undercut by its awkward structure and a final veering toward melodrama . 1 +31826 1491 undercut by its awkward structure and a final veering toward melodrama 1 +31827 1491 undercut by its awkward structure and a final veering 0 +31828 1491 undercut 1 +31829 1491 by its awkward structure and a final veering 1 +31830 1491 its awkward structure and a final veering 1 +31831 1491 its awkward structure and 1 +31832 1491 its awkward structure 1 +31833 1491 awkward structure 1 +31834 1491 a final veering 2 +31835 1491 final veering 2 +31836 1491 veering 2 +31837 1491 toward melodrama 2 +31838 1492 That ` Alabama ' manages to be pleasant in spite of its predictability and occasional slowness is due primarily to the perkiness of Witherspoon -LRB- who is always a joy to watch , even when her material is not first-rate -RRB- ... 3 +31839 1492 That ` Alabama ' manages to be pleasant in spite of its predictability and occasional slowness is due primarily to the perkiness of Witherspoon -LRB- who is always a joy to watch , even when her material is not first-rate -RRB- 3 +31840 1492 That ` Alabama ' manages to be pleasant in spite of its predictability and 3 +31841 1492 That ` Alabama ' manages to be pleasant in spite of its predictability 3 +31842 1492 That ` Alabama ' 2 +31843 1492 ` Alabama ' 2 +31844 1492 Alabama ' 2 +31845 1492 manages to be pleasant in spite of its predictability 3 +31846 1492 to be pleasant in spite of its predictability 3 +31847 1492 be pleasant in spite of its predictability 3 +31848 1492 pleasant in spite of its predictability 3 +31849 1492 in spite of its predictability 1 +31850 1492 spite of its predictability 2 +31851 1492 of its predictability 2 +31852 1492 occasional slowness is due primarily to the perkiness of Witherspoon -LRB- who is always a joy to watch , even when her material is not first-rate -RRB- 2 +31853 1492 occasional slowness 1 +31854 1492 slowness 2 +31855 1492 is due primarily to the perkiness of Witherspoon -LRB- who is always a joy to watch , even when her material is not first-rate -RRB- 3 +31856 1492 is due primarily 2 +31857 1492 is due 2 +31858 1492 primarily 2 +31859 1492 to the perkiness of Witherspoon -LRB- who is always a joy to watch , even when her material is not first-rate -RRB- 3 +31860 1492 the perkiness of Witherspoon -LRB- who is always a joy to watch , even when her material is not first-rate -RRB- 4 +31861 1492 the perkiness of Witherspoon 3 +31862 1492 the perkiness 3 +31863 1492 perkiness 2 +31864 1492 of Witherspoon 2 +31865 1492 -LRB- who is always a joy to watch , even when her material is not first-rate -RRB- 3 +31866 1492 who is always a joy to watch , even when her material is not first-rate -RRB- 3 +31867 1492 who is always a joy to watch , even when her material is not first-rate 3 +31868 1492 is always a joy to watch , even when her material is not first-rate 3 +31869 1492 is always 2 +31870 1492 a joy to watch , even when her material is not first-rate 3 +31871 1492 joy to watch , even when her material is not first-rate 3 +31872 1492 to watch , even when her material is not first-rate 2 +31873 1492 watch , even when her material is not first-rate 2 +31874 1492 watch , even 2 +31875 1492 watch , 2 +31876 1492 when her material is not first-rate 1 +31877 1492 her material is not first-rate 1 +31878 1492 her material 2 +31879 1492 is not first-rate 1 +31880 1492 first-rate 3 +31881 1493 Starts out strongly before quickly losing its focus , point and purpose in a mess of mixed messages , over-blown drama and Bruce Willis with a scar . 0 +31882 1493 Starts out strongly before quickly losing its focus , point and purpose in a mess of mixed messages , over-blown drama and Bruce Willis with a scar 1 +31883 1493 Starts out strongly 3 +31884 1493 out strongly 2 +31885 1493 strongly 3 +31886 1493 before quickly losing its focus , point and purpose in a mess of mixed messages , over-blown drama and Bruce Willis with a scar 1 +31887 1493 quickly losing its focus , point and purpose in a mess of mixed messages , over-blown drama and Bruce Willis with a scar 0 +31888 1493 losing its focus , point and purpose in a mess of mixed messages , over-blown drama and Bruce Willis with a scar 2 +31889 1493 losing its focus , point and purpose in a mess of mixed messages , over-blown drama and Bruce Willis 0 +31890 1493 its focus , point and purpose in a mess of mixed messages , over-blown drama and Bruce Willis 1 +31891 1493 its focus , point and purpose 2 +31892 1493 focus , point and purpose 3 +31893 1493 , point and purpose 3 +31894 1493 point and purpose 3 +31895 1493 point and 2 +31896 1493 in a mess of mixed messages , over-blown drama and Bruce Willis 1 +31897 1493 a mess of mixed messages , over-blown drama and Bruce Willis 1 +31898 1493 a mess 0 +31899 1493 of mixed messages , over-blown drama and Bruce Willis 1 +31900 1493 mixed messages , over-blown drama and Bruce Willis 1 +31901 1493 mixed messages , over-blown drama and 2 +31902 1493 mixed messages , over-blown drama 2 +31903 1493 mixed messages , 1 +31904 1493 mixed messages 2 +31905 1493 over-blown drama 1 +31906 1493 over-blown 1 +31907 1493 Bruce Willis 2 +31908 1493 Bruce 2 +31909 1493 Willis 2 +31910 1493 with a scar 2 +31911 1493 a scar 2 +31912 1493 scar 2 +31913 1494 World Traveler might not go anywhere new , or arrive anyplace special , but it 's certainly an honest attempt to get at something . 3 +31914 1494 World Traveler might not go anywhere new , or arrive anyplace special , but it 's certainly an honest attempt to get at something 3 +31915 1494 World Traveler might not go anywhere new , or arrive anyplace special , but 2 +31916 1494 World Traveler might not go anywhere new , or arrive anyplace special , 1 +31917 1494 World Traveler might not go anywhere new , or arrive anyplace special 2 +31918 1494 might not go anywhere new , or arrive anyplace special 2 +31919 1494 go anywhere new , or arrive anyplace special 2 +31920 1494 go anywhere new , or 2 +31921 1494 go anywhere new , 3 +31922 1494 go anywhere new 2 +31923 1494 anywhere new 2 +31924 1494 arrive anyplace special 2 +31925 1494 anyplace special 2 +31926 1494 anyplace 2 +31927 1494 it 's certainly an honest attempt to get at something 3 +31928 1494 's certainly an honest attempt to get at something 3 +31929 1494 an honest attempt to get at something 3 +31930 1494 honest attempt to get at something 3 +31931 1494 attempt to get at something 2 +31932 1494 to get at something 2 +31933 1494 get at something 3 +31934 1494 at something 2 +31935 1495 You would n't want to live waydowntown , but it is a hilarious place to visit . 3 +31936 1495 You would n't want to live waydowntown , but it is a hilarious place to visit 3 +31937 1495 You would n't want to live waydowntown , but 2 +31938 1495 You would n't want to live waydowntown , 1 +31939 1495 You would n't want to live waydowntown 1 +31940 1495 would n't want to live waydowntown 1 +31941 1495 would n't 2 +31942 1495 want to live waydowntown 2 +31943 1495 to live waydowntown 2 +31944 1495 live waydowntown 2 +31945 1495 it is a hilarious place to visit 3 +31946 1495 is a hilarious place to visit 3 +31947 1495 a hilarious place to visit 3 +31948 1495 hilarious place to visit 3 +31949 1495 place to visit 2 +31950 1495 to visit 2 +31951 1495 visit 2 +31952 1496 Too intensely focused on the travails of being Hal Hartley to function as pastiche , No Such Thing is Hartley 's least accessible screed yet . 1 +31953 1496 Too intensely focused on the travails of being Hal Hartley to function as pastiche 1 +31954 1496 Too intensely 2 +31955 1496 intensely 2 +31956 1496 focused on the travails of being Hal Hartley to function as pastiche 2 +31957 1496 focused 2 +31958 1496 on the travails of being Hal Hartley to function as pastiche 2 +31959 1496 the travails of being Hal Hartley to function as pastiche 2 +31960 1496 the travails 2 +31961 1496 travails 2 +31962 1496 of being Hal Hartley to function as pastiche 2 +31963 1496 being Hal Hartley to function as pastiche 2 +31964 1496 being Hal Hartley to function 2 +31965 1496 Hal Hartley to function 2 +31966 1496 Hal Hartley 2 +31967 1496 Hal 2 +31968 1496 to function 2 +31969 1496 function 2 +31970 1496 as pastiche 2 +31971 1496 , No Such Thing is Hartley 's least accessible screed yet . 1 +31972 1496 No Such Thing is Hartley 's least accessible screed yet . 1 +31973 1496 is Hartley 's least accessible screed yet . 1 +31974 1496 is Hartley 's least accessible screed yet 1 +31975 1496 is Hartley 's least accessible screed 1 +31976 1496 Hartley 's least accessible screed 2 +31977 1496 Hartley 's 2 +31978 1496 least accessible screed 2 +31979 1496 least accessible 1 +31980 1496 accessible 3 +31981 1496 screed 2 +31982 1497 A simple tale of an unlikely friendship , but thanks to the gorgeous locales and exceptional lead performances , it has considerable charm . 4 +31983 1497 A simple tale of an unlikely friendship , but thanks to the gorgeous locales and exceptional lead performances 4 +31984 1497 A simple tale of an unlikely friendship 2 +31985 1497 A simple tale 3 +31986 1497 simple tale 3 +31987 1497 of an unlikely friendship 2 +31988 1497 an unlikely friendship 2 +31989 1497 unlikely friendship 2 +31990 1497 , but thanks to the gorgeous locales and exceptional lead performances 3 +31991 1497 thanks to the gorgeous locales and exceptional lead performances 3 +31992 1497 to the gorgeous locales and exceptional lead performances 3 +31993 1497 the gorgeous locales and exceptional lead performances 4 +31994 1497 the gorgeous locales and 4 +31995 1497 the gorgeous locales 3 +31996 1497 gorgeous locales 3 +31997 1497 locales 1 +31998 1497 exceptional lead performances 4 +31999 1497 , it has considerable charm . 3 +32000 1497 it has considerable charm . 4 +32001 1497 has considerable charm . 4 +32002 1497 has considerable charm 3 +32003 1497 considerable charm 3 +32004 1498 Those who do n't entirely ` get ' Godard 's distinctive discourse will still come away with a sense of his reserved but existential poignancy . 3 +32005 1498 Those who do n't entirely ` get ' Godard 's distinctive discourse 2 +32006 1498 who do n't entirely ` get ' Godard 's distinctive discourse 2 +32007 1498 do n't entirely ` get ' Godard 's distinctive discourse 1 +32008 1498 do n't entirely ` get ' 2 +32009 1498 do n't entirely 2 +32010 1498 ` get ' 2 +32011 1498 get ' 2 +32012 1498 Godard 's distinctive discourse 2 +32013 1498 distinctive discourse 1 +32014 1498 distinctive 3 +32015 1498 discourse 2 +32016 1498 will still come away with a sense of his reserved but existential poignancy . 3 +32017 1498 will still come away with a sense of his reserved but existential poignancy 3 +32018 1498 will still 2 +32019 1498 come away with a sense of his reserved but existential poignancy 3 +32020 1498 come away 2 +32021 1498 with a sense of his reserved but existential poignancy 3 +32022 1498 a sense of his reserved but existential poignancy 2 +32023 1498 a sense 2 +32024 1498 of his reserved but existential poignancy 3 +32025 1498 his reserved but existential poignancy 3 +32026 1498 reserved but existential poignancy 2 +32027 1498 reserved but existential 3 +32028 1498 reserved but 2 +32029 1498 reserved 2 +32030 1499 Yes , soar . 3 +32031 1499 , soar . 3 +32032 1499 soar . 3 +32033 1499 soar 2 +32034 1500 A genuinely funny ensemble comedy that also asks its audience -- in a heartwarming , nonjudgmental kind of way -- to consider what we value in our daily lives . 4 +32035 1500 A genuinely funny ensemble comedy that also asks its audience -- in a heartwarming , nonjudgmental kind of way -- to consider what we value in our daily lives 4 +32036 1500 A genuinely funny ensemble 3 +32037 1500 genuinely funny ensemble 3 +32038 1500 genuinely funny 3 +32039 1500 comedy that also asks its audience -- in a heartwarming , nonjudgmental kind of way -- to consider what we value in our daily lives 3 +32040 1500 that also asks its audience -- in a heartwarming , nonjudgmental kind of way -- to consider what we value in our daily lives 3 +32041 1500 also asks its audience -- in a heartwarming , nonjudgmental kind of way -- to consider what we value in our daily lives 3 +32042 1500 asks its audience -- in a heartwarming , nonjudgmental kind of way -- to consider what we value in our daily lives 3 +32043 1500 its audience -- in a heartwarming , nonjudgmental kind of way -- to consider what we value in our daily lives 4 +32044 1500 its audience -- in a heartwarming , nonjudgmental kind of way -- 3 +32045 1500 -- in a heartwarming , nonjudgmental kind of way -- 3 +32046 1500 in a heartwarming , nonjudgmental kind of way -- 3 +32047 1500 in a heartwarming , nonjudgmental kind of way 3 +32048 1500 a heartwarming , nonjudgmental kind of way 3 +32049 1500 a heartwarming , nonjudgmental kind 4 +32050 1500 heartwarming , nonjudgmental kind 3 +32051 1500 , nonjudgmental kind 2 +32052 1500 nonjudgmental kind 3 +32053 1500 nonjudgmental 3 +32054 1500 to consider what we value in our daily lives 2 +32055 1500 consider what we value in our daily lives 2 +32056 1500 what we value in our daily lives 2 +32057 1500 we value in our daily lives 3 +32058 1500 value in our daily lives 2 +32059 1500 in our daily lives 2 +32060 1500 our daily lives 2 +32061 1500 daily lives 2 +32062 1501 Kirshner and Monroe seem to be in a contest to see who can out-bad-act the other . 0 +32063 1501 Kirshner and Monroe 2 +32064 1501 Kirshner and 2 +32065 1501 Monroe 2 +32066 1501 seem to be in a contest to see who can out-bad-act the other . 0 +32067 1501 seem to be in a contest to see who can out-bad-act the other 0 +32068 1501 to be in a contest to see who can out-bad-act the other 1 +32069 1501 be in a contest to see who can out-bad-act the other 0 +32070 1501 in a contest to see who can out-bad-act the other 0 +32071 1501 a contest to see who can out-bad-act the other 0 +32072 1501 contest to see who can out-bad-act the other 0 +32073 1501 to see who can out-bad-act the other 0 +32074 1501 see who can out-bad-act the other 0 +32075 1501 who can out-bad-act the other 1 +32076 1501 can out-bad-act the other 1 +32077 1501 out-bad-act the other 0 +32078 1501 out-bad-act 2 +32079 1502 Qutting may be a flawed film , but it is nothing if not sincere . 2 +32080 1502 Qutting may be a flawed film , but it is nothing if not sincere 3 +32081 1502 Qutting may be a flawed film , but 1 +32082 1502 Qutting may be a flawed film , 1 +32083 1502 Qutting may be a flawed film 1 +32084 1502 Qutting 2 +32085 1502 may be a flawed film 0 +32086 1502 be a flawed film 1 +32087 1502 a flawed film 0 +32088 1502 flawed film 1 +32089 1502 it is nothing if not sincere 2 +32090 1502 is nothing if not sincere 3 +32091 1502 is nothing if not 1 +32092 1502 is nothing if 2 +32093 1502 nothing if 2 +32094 1503 has far more energy , wit and warmth than should be expected from any movie with a `` 2 '' at the end of its title . 3 +32095 1503 has far more energy 3 +32096 1503 far more energy 3 +32097 1503 far more 2 +32098 1503 , wit and warmth than should be expected from any movie with a `` 2 '' at the end of its title . 3 +32099 1503 wit and warmth than should be expected from any movie with a `` 2 '' at the end of its title . 3 +32100 1503 wit and warmth 3 +32101 1503 than should be expected from any movie with a `` 2 '' at the end of its title . 2 +32102 1503 should be expected from any movie with a `` 2 '' at the end of its title . 1 +32103 1503 should be expected from any movie with a `` 2 '' at the end of its title 1 +32104 1503 be expected from any movie with a `` 2 '' at the end of its title 1 +32105 1503 expected from any movie with a `` 2 '' at the end of its title 2 +32106 1503 expected from any movie with a `` 2 '' 2 +32107 1503 from any movie with a `` 2 '' 1 +32108 1503 any movie with a `` 2 '' 2 +32109 1503 with a `` 2 '' 2 +32110 1503 a `` 2 '' 2 +32111 1503 `` 2 '' 2 +32112 1503 2 '' 2 +32113 1503 at the end of its title 2 +32114 1503 the end of its title 2 +32115 1503 of its title 2 +32116 1504 Throughout , Mr. Audiard 's direction is fluid and quick . 3 +32117 1504 , Mr. Audiard 's direction is fluid and quick . 3 +32118 1504 Mr. Audiard 's direction is fluid and quick . 4 +32119 1504 Mr. Audiard 's direction 2 +32120 1504 Mr. Audiard 's 2 +32121 1504 Audiard 's 2 +32122 1504 is fluid and quick . 2 +32123 1504 is fluid and quick 3 +32124 1504 fluid and quick 2 +32125 1504 fluid and 2 +32126 1504 fluid 3 +32127 1505 A painfully slow cliche-ridden film filled with more holes than Clyde Barrow 's car . 1 +32128 1505 A painfully slow cliche-ridden film 0 +32129 1505 painfully slow cliche-ridden film 0 +32130 1505 painfully slow 0 +32131 1505 cliche-ridden film 0 +32132 1505 filled with more holes than Clyde Barrow 's car . 1 +32133 1505 filled with more holes than Clyde Barrow 's car 1 +32134 1505 with more holes than Clyde Barrow 's car 0 +32135 1505 more holes than Clyde Barrow 's car 1 +32136 1505 more holes 1 +32137 1505 than Clyde Barrow 's car 2 +32138 1505 Clyde Barrow 's car 2 +32139 1505 Clyde Barrow 's 2 +32140 1505 Clyde 2 +32141 1505 Barrow 's 2 +32142 1505 Barrow 2 +32143 1506 A wishy-washy melodramatic movie that shows us plenty of sturm und drung , but explains its characters ' decisions only unsatisfactorily . 0 +32144 1506 A wishy-washy melodramatic movie that shows us plenty of sturm 2 +32145 1506 A wishy-washy melodramatic movie 1 +32146 1506 wishy-washy melodramatic movie 1 +32147 1506 wishy-washy 1 +32148 1506 melodramatic movie 3 +32149 1506 that shows us plenty of sturm 2 +32150 1506 shows us plenty of sturm 2 +32151 1506 us plenty of sturm 3 +32152 1506 plenty of sturm 2 +32153 1506 of sturm 2 +32154 1506 sturm 2 +32155 1506 und drung , but explains its characters ' decisions only unsatisfactorily . 1 +32156 1506 und drung , but explains its characters ' decisions only unsatisfactorily 1 +32157 1506 und drung , but 2 +32158 1506 und drung , 2 +32159 1506 und drung 2 +32160 1506 und 2 +32161 1506 drung 2 +32162 1506 explains its characters ' decisions only unsatisfactorily 1 +32163 1506 its characters ' decisions only unsatisfactorily 1 +32164 1506 its characters ' decisions 1 +32165 1506 decisions 2 +32166 1506 only unsatisfactorily 1 +32167 1506 unsatisfactorily 2 +32168 1507 One of the best looking and stylish animated movies in quite a while ... 4 +32169 1507 One of the best looking and stylish animated movies in quite a while 4 +32170 1507 One of the best looking and stylish 4 +32171 1507 of the best looking and stylish 3 +32172 1507 the best looking and stylish 3 +32173 1507 looking and stylish 3 +32174 1507 looking and 2 +32175 1507 animated movies in quite a while 1 +32176 1507 animated movies 2 +32177 1507 in quite a while 2 +32178 1507 quite a while 2 +32179 1508 Nicole Kidman evolved from star to superstar some time over the past year , which means that Birthday Girl is the kind of quirkily appealing minor movie she might not make for a while . 3 +32180 1508 Nicole Kidman 2 +32181 1508 Nicole 2 +32182 1508 Kidman 3 +32183 1508 evolved from star to superstar some time over the past year , which means that Birthday Girl is the kind of quirkily appealing minor movie she might not make for a while . 3 +32184 1508 evolved from star to superstar some time over the past year , which means that Birthday Girl is the kind of quirkily appealing minor movie she might not make for a while 2 +32185 1508 evolved from star to superstar some time 3 +32186 1508 evolved from star to superstar 3 +32187 1508 evolved from star 2 +32188 1508 evolved 2 +32189 1508 from star 2 +32190 1508 to superstar 2 +32191 1508 superstar 3 +32192 1508 over the past year , which means that Birthday Girl is the kind of quirkily appealing minor movie she might not make for a while 3 +32193 1508 the past year , which means that Birthday Girl is the kind of quirkily appealing minor movie she might not make for a while 3 +32194 1508 the past year , 2 +32195 1508 the past year 2 +32196 1508 past year 2 +32197 1508 which means that Birthday Girl is the kind of quirkily appealing minor movie she might not make for a while 3 +32198 1508 means that Birthday Girl is the kind of quirkily appealing minor movie she might not make for a while 2 +32199 1508 that Birthday Girl is the kind of quirkily appealing minor movie she might not make for a while 3 +32200 1508 Birthday Girl is the kind of quirkily appealing minor movie she might not make for a while 3 +32201 1508 is the kind of quirkily appealing minor movie she might not make for a while 3 +32202 1508 the kind of quirkily appealing minor movie she might not make for a while 3 +32203 1508 of quirkily appealing minor movie she might not make for a while 3 +32204 1508 quirkily appealing minor movie she might not make for a while 2 +32205 1508 quirkily appealing minor movie 3 +32206 1508 quirkily appealing 3 +32207 1508 quirkily 2 +32208 1508 minor movie 2 +32209 1508 she might not make for a while 1 +32210 1508 might not make for a while 2 +32211 1508 make for a while 2 +32212 1508 for a while 2 +32213 1509 It seems Grant does n't need the floppy hair and the self-deprecating stammers after all . 2 +32214 1509 seems Grant does n't need the floppy hair and the self-deprecating stammers after all . 2 +32215 1509 seems Grant does n't need the floppy hair and the self-deprecating stammers after all 3 +32216 1509 Grant does n't need the floppy hair and the self-deprecating stammers after all 2 +32217 1509 does n't need the floppy hair and the self-deprecating stammers after all 2 +32218 1509 need the floppy hair and the self-deprecating stammers after all 2 +32219 1509 need the floppy hair and the self-deprecating stammers 2 +32220 1509 the floppy hair and the self-deprecating stammers 2 +32221 1509 the floppy hair and 2 +32222 1509 the floppy hair 3 +32223 1509 floppy hair 1 +32224 1509 floppy 1 +32225 1509 the self-deprecating stammers 2 +32226 1509 self-deprecating stammers 1 +32227 1509 self-deprecating 1 +32228 1509 stammers 2 +32229 1510 Oops , she 's really done it this time . 2 +32230 1510 Oops 2 +32231 1510 , she 's really done it this time . 2 +32232 1510 she 's really done it this time . 3 +32233 1510 's really done it this time . 3 +32234 1510 's really done it this time 2 +32235 1510 done it this time 3 +32236 1510 done it 2 +32237 1511 The characters are complex and quirky , but entirely believable as the remarkable ensemble cast brings them to life . 4 +32238 1511 are complex and quirky , but entirely believable as the remarkable ensemble cast brings them to life . 4 +32239 1511 are complex and quirky , but entirely believable as the remarkable ensemble cast brings them to life 4 +32240 1511 are complex and quirky , but entirely believable 3 +32241 1511 complex and quirky , but entirely believable 3 +32242 1511 complex and quirky , but 3 +32243 1511 complex and quirky , 3 +32244 1511 complex and quirky 3 +32245 1511 complex and 2 +32246 1511 entirely believable 3 +32247 1511 as the remarkable ensemble cast brings them to life 3 +32248 1511 the remarkable ensemble cast brings them to life 3 +32249 1511 the remarkable ensemble cast 4 +32250 1511 remarkable ensemble cast 3 +32251 1511 brings them to life 3 +32252 1511 brings them 2 +32253 1511 to life 2 +32254 1512 Jackson is always watchable . 3 +32255 1512 is always watchable . 4 +32256 1512 is always watchable 3 +32257 1513 Deep intelligence and a warm , enveloping affection breathe out of every frame . 4 +32258 1513 Deep intelligence and a warm , enveloping affection 3 +32259 1513 Deep intelligence and 3 +32260 1513 Deep intelligence 3 +32261 1513 a warm , enveloping affection 3 +32262 1513 warm , enveloping affection 4 +32263 1513 , enveloping affection 3 +32264 1513 enveloping affection 3 +32265 1513 enveloping 2 +32266 1513 breathe out of every frame . 3 +32267 1513 breathe out of every frame 3 +32268 1513 breathe out 2 +32269 1513 breathe 2 +32270 1513 of every frame 2 +32271 1514 Terry is a sort of geriatric Dirty Harry , which will please Eastwood 's loyal fans -- and suits the story , wherein our hero must ride roughshod over incompetent cops to get his man . 3 +32272 1514 is a sort of geriatric Dirty Harry , which will please Eastwood 's loyal fans -- and suits the story , wherein our hero must ride roughshod over incompetent cops to get his man . 2 +32273 1514 is a sort of geriatric Dirty Harry , which will please Eastwood 's loyal fans -- and suits the story , wherein our hero must ride roughshod over incompetent cops to get his man 3 +32274 1514 a sort of geriatric Dirty Harry , which will please Eastwood 's loyal fans -- and suits the story , wherein our hero must ride roughshod over incompetent cops to get his man 3 +32275 1514 of geriatric Dirty Harry , which will please Eastwood 's loyal fans -- and suits the story , wherein our hero must ride roughshod over incompetent cops to get his man 3 +32276 1514 geriatric Dirty Harry , which will please Eastwood 's loyal fans -- and suits the story , wherein our hero must ride roughshod over incompetent cops to get his man 3 +32277 1514 geriatric Dirty Harry , 1 +32278 1514 geriatric Dirty Harry 1 +32279 1514 geriatric 2 +32280 1514 Dirty Harry 2 +32281 1514 Harry 2 +32282 1514 which will please Eastwood 's loyal fans -- and suits the story , wherein our hero must ride roughshod over incompetent cops to get his man 3 +32283 1514 will please Eastwood 's loyal fans -- and suits the story , wherein our hero must ride roughshod over incompetent cops to get his man 3 +32284 1514 will please Eastwood 's loyal fans -- and 3 +32285 1514 will please Eastwood 's loyal fans -- 4 +32286 1514 will please Eastwood 's loyal fans 3 +32287 1514 please Eastwood 's loyal fans 3 +32288 1514 Eastwood 's loyal fans 3 +32289 1514 loyal fans 3 +32290 1514 suits the story , wherein our hero must ride roughshod over incompetent cops to get his man 3 +32291 1514 the story , wherein our hero must ride roughshod over incompetent cops to get his man 2 +32292 1514 the story , 2 +32293 1514 wherein our hero must ride roughshod over incompetent cops to get his man 2 +32294 1514 wherein 2 +32295 1514 our hero must ride roughshod over incompetent cops to get his man 3 +32296 1514 our hero 2 +32297 1514 must ride roughshod over incompetent cops to get his man 2 +32298 1514 ride roughshod over incompetent cops to get his man 2 +32299 1514 roughshod over incompetent cops to get his man 2 +32300 1514 roughshod over incompetent cops 2 +32301 1514 over incompetent cops 2 +32302 1514 incompetent cops 1 +32303 1514 cops 2 +32304 1514 to get his man 2 +32305 1514 get his man 2 +32306 1514 his man 2 +32307 1515 -LRB- Soderbergh -RRB- tends to place most of the psychological and philosophical material in italics rather than trust an audience 's intelligence , and he creates an overall sense of brusqueness . 1 +32308 1515 -LRB- Soderbergh -RRB- tends to place most of the psychological and philosophical material in italics rather than trust an audience 's intelligence , and he creates an overall sense of brusqueness 1 +32309 1515 -LRB- Soderbergh -RRB- tends to place most of the psychological and philosophical material in italics rather than trust an audience 's intelligence , and 1 +32310 1515 -LRB- Soderbergh -RRB- tends to place most of the psychological and philosophical material in italics rather than trust an audience 's intelligence , 2 +32311 1515 -LRB- Soderbergh -RRB- tends to place most of the psychological and philosophical material in italics rather than trust an audience 's intelligence 1 +32312 1515 -LRB- Soderbergh -RRB- 2 +32313 1515 Soderbergh -RRB- 2 +32314 1515 tends to place most of the psychological and philosophical material in italics rather than trust an audience 's intelligence 1 +32315 1515 tends 2 +32316 1515 to place most of the psychological and philosophical material in italics rather than trust an audience 's intelligence 1 +32317 1515 place most of the psychological and philosophical material in italics rather than trust an audience 's intelligence 1 +32318 1515 place most of the psychological and philosophical material in italics rather than 2 +32319 1515 place most of the psychological and philosophical material in italics 1 +32320 1515 most of the psychological and philosophical material in italics 2 +32321 1515 of the psychological and philosophical material in italics 2 +32322 1515 the psychological and philosophical material in italics 2 +32323 1515 the psychological and philosophical material 2 +32324 1515 psychological and philosophical material 2 +32325 1515 psychological and philosophical 3 +32326 1515 psychological and 2 +32327 1515 psychological 3 +32328 1515 in italics 2 +32329 1515 italics 2 +32330 1515 trust an audience 's intelligence 3 +32331 1515 an audience 's intelligence 2 +32332 1515 an audience 's 3 +32333 1515 audience 's 2 +32334 1515 he creates an overall sense of brusqueness 2 +32335 1515 creates an overall sense of brusqueness 2 +32336 1515 an overall sense of brusqueness 1 +32337 1515 an overall sense 2 +32338 1515 overall sense 2 +32339 1515 of brusqueness 2 +32340 1515 brusqueness 2 +32341 1516 It 's fairly solid -- not to mention well edited so that it certainly does n't feel like a film that strays past the two and a half mark . 3 +32342 1516 's fairly solid -- not to mention well edited so that it certainly does n't feel like a film that strays past the two and a half mark . 4 +32343 1516 's fairly solid -- not to mention well edited so that it certainly does n't feel like a film that strays past the two and a half mark 4 +32344 1516 fairly solid -- not to mention well edited so that it certainly does n't feel like a film that strays past the two and a half mark 3 +32345 1516 fairly solid -- not to mention 3 +32346 1516 fairly solid -- 2 +32347 1516 fairly solid 3 +32348 1516 not to mention 2 +32349 1516 well edited so that it certainly does n't feel like a film that strays past the two and a half mark 4 +32350 1516 edited so that it certainly does n't feel like a film that strays past the two and a half mark 3 +32351 1516 so that it certainly does n't feel like a film that strays past the two and a half mark 3 +32352 1516 that it certainly does n't feel like a film that strays past the two and a half mark 1 +32353 1516 it certainly does n't feel like a film that strays past the two and a half mark 3 +32354 1516 certainly does n't feel like a film that strays past the two and a half mark 1 +32355 1516 does n't feel like a film that strays past the two and a half mark 1 +32356 1516 feel like a film that strays past the two and a half mark 2 +32357 1516 like a film that strays past the two and a half mark 1 +32358 1516 a film that strays past the two and a half mark 2 +32359 1516 that strays past the two and a half mark 2 +32360 1516 strays past the two and a half mark 1 +32361 1516 strays 1 +32362 1516 past the two and a half mark 2 +32363 1516 the two and a half mark 2 +32364 1516 the two and 3 +32365 1516 the two 2 +32366 1516 a half mark 2 +32367 1516 half mark 2 +32368 1517 Predecessors The Mummy and The Mummy Returns stand as intellectual masterpieces next to The Scorpion King . 1 +32369 1517 The Mummy and The Mummy Returns stand as intellectual masterpieces next to The Scorpion King . 2 +32370 1517 The Mummy and The Mummy Returns 2 +32371 1517 Mummy and The Mummy Returns 3 +32372 1517 Mummy 2 +32373 1517 and The Mummy Returns 2 +32374 1517 The Mummy Returns 2 +32375 1517 Mummy Returns 2 +32376 1517 stand as intellectual masterpieces next to The Scorpion King . 4 +32377 1517 stand as intellectual masterpieces next to The Scorpion King 3 +32378 1517 stand as intellectual masterpieces 3 +32379 1517 as intellectual masterpieces 3 +32380 1517 intellectual masterpieces 4 +32381 1517 masterpieces 3 +32382 1517 next to The Scorpion King 2 +32383 1517 to The Scorpion King 2 +32384 1518 A really good premise is frittered away in middle-of-the-road blandness . 1 +32385 1518 A really good premise 3 +32386 1518 really good premise 4 +32387 1518 really good 4 +32388 1518 is frittered away in middle-of-the-road blandness . 1 +32389 1518 is frittered away in middle-of-the-road blandness 1 +32390 1518 frittered away in middle-of-the-road blandness 1 +32391 1518 frittered away 1 +32392 1518 frittered 1 +32393 1518 in middle-of-the-road blandness 1 +32394 1518 middle-of-the-road blandness 1 +32395 1518 middle-of-the-road 2 +32396 1518 blandness 1 +32397 1519 Yet another entry in the sentimental oh-those-wacky-Brits genre that was ushered in by The Full Monty and is still straining to produce another smash hit . 1 +32398 1519 another entry in the sentimental oh-those-wacky-Brits genre that was ushered in by The Full Monty and is still straining to produce another smash hit . 2 +32399 1519 another entry in the sentimental oh-those-wacky-Brits genre that was ushered in by The Full Monty and is still straining to produce another smash 2 +32400 1519 another entry 2 +32401 1519 entry 2 +32402 1519 in the sentimental oh-those-wacky-Brits genre that was ushered in by The Full Monty and is still straining to produce another smash 2 +32403 1519 the sentimental oh-those-wacky-Brits genre that was ushered in by The Full Monty and is still straining to produce another smash 1 +32404 1519 the sentimental oh-those-wacky-Brits genre 3 +32405 1519 sentimental oh-those-wacky-Brits genre 2 +32406 1519 sentimental oh-those-wacky-Brits 2 +32407 1519 oh-those-wacky-Brits 2 +32408 1519 that was ushered in by The Full Monty and is still straining to produce another smash 1 +32409 1519 was ushered in by The Full Monty and is still straining to produce another smash 1 +32410 1519 was ushered in by The Full Monty and 2 +32411 1519 was ushered in by The Full Monty 2 +32412 1519 ushered in by The Full Monty 2 +32413 1519 ushered 2 +32414 1519 in by The Full Monty 2 +32415 1519 by The Full Monty 3 +32416 1519 is still straining to produce another smash 2 +32417 1519 straining to produce another smash 1 +32418 1519 straining 2 +32419 1519 to produce another smash 3 +32420 1519 produce another smash 3 +32421 1519 another smash 4 +32422 1519 smash 2 +32423 1519 hit . 3 +32424 1520 Time is a beautiful film to watch , an interesting and at times captivating take on loss and loneliness . 4 +32425 1520 Time is a beautiful film to watch 4 +32426 1520 is a beautiful film to watch 4 +32427 1520 a beautiful film to watch 4 +32428 1520 beautiful film to watch 4 +32429 1520 film to watch 3 +32430 1520 , an interesting and at times captivating take on loss and loneliness . 3 +32431 1520 an interesting and at times captivating take on loss and loneliness . 3 +32432 1520 an interesting and at times captivating 3 +32433 1520 interesting and at times captivating 4 +32434 1520 interesting and at times 3 +32435 1520 take on loss and loneliness . 1 +32436 1520 take on loss and loneliness 1 +32437 1520 on loss and loneliness 2 +32438 1520 loss and loneliness 1 +32439 1520 loss and 2 +32440 1521 In his role of observer of the scene , Lawrence sounds whiny and defensive , as if his life-altering experiences made him bitter and less mature . 1 +32441 1521 In his role of observer of the scene 2 +32442 1521 his role of observer of the scene 2 +32443 1521 his role 2 +32444 1521 of observer of the scene 2 +32445 1521 observer of the scene 2 +32446 1521 observer 2 +32447 1521 of the scene 2 +32448 1521 the scene 2 +32449 1521 , Lawrence sounds whiny and defensive , as if his life-altering experiences made him bitter and less mature . 0 +32450 1521 Lawrence sounds whiny and defensive , as if his life-altering experiences made him bitter and less mature . 1 +32451 1521 sounds whiny and defensive , as if his life-altering experiences made him bitter and less mature . 1 +32452 1521 sounds whiny and defensive , as if his life-altering experiences made him bitter and less mature 0 +32453 1521 sounds whiny and defensive , 1 +32454 1521 sounds whiny and defensive 1 +32455 1521 whiny and defensive 1 +32456 1521 whiny and 1 +32457 1521 whiny 1 +32458 1521 defensive 2 +32459 1521 as if his life-altering experiences made him bitter and less mature 2 +32460 1521 if his life-altering experiences made him bitter and less mature 2 +32461 1521 his life-altering experiences made him bitter and less mature 2 +32462 1521 his life-altering experiences 3 +32463 1521 life-altering experiences 2 +32464 1521 life-altering 3 +32465 1521 made him bitter and less mature 1 +32466 1521 him bitter and less mature 2 +32467 1521 bitter and less mature 1 +32468 1521 bitter and 2 +32469 1522 While Insomnia is in many ways a conventional , even predictable remake , Nolan 's penetrating undercurrent of cerebral and cinemantic flair lends -LRB- it -RRB- stimulating depth . 3 +32470 1522 While Insomnia is in many ways a conventional , even predictable remake 2 +32471 1522 Insomnia is in many ways a conventional , even predictable remake 2 +32472 1522 is in many ways a conventional , even predictable remake 1 +32473 1522 in many ways a conventional , even predictable remake 1 +32474 1522 many ways a conventional , even predictable remake 2 +32475 1522 many ways 2 +32476 1522 a conventional , even predictable remake 2 +32477 1522 conventional , even predictable remake 2 +32478 1522 , even predictable remake 2 +32479 1522 even predictable remake 1 +32480 1522 even predictable 2 +32481 1522 , Nolan 's penetrating undercurrent of cerebral and cinemantic flair lends -LRB- it -RRB- stimulating depth . 3 +32482 1522 Nolan 's penetrating undercurrent of cerebral and cinemantic flair lends -LRB- it -RRB- stimulating depth . 4 +32483 1522 Nolan 's penetrating undercurrent of cerebral and cinemantic flair 3 +32484 1522 Nolan 's penetrating undercurrent 3 +32485 1522 Nolan 's 2 +32486 1522 Nolan 2 +32487 1522 penetrating undercurrent 2 +32488 1522 penetrating 3 +32489 1522 of cerebral and cinemantic flair 4 +32490 1522 cerebral and cinemantic flair 4 +32491 1522 and cinemantic flair 3 +32492 1522 cinemantic flair 4 +32493 1522 cinemantic 2 +32494 1522 lends -LRB- it -RRB- stimulating depth . 2 +32495 1522 lends -LRB- it -RRB- stimulating depth 2 +32496 1522 lends -LRB- it -RRB- 2 +32497 1522 -LRB- it -RRB- 2 +32498 1522 it -RRB- 2 +32499 1522 stimulating depth 2 +32500 1522 stimulating 3 +32501 1523 The Pianist -LRB- is -RRB- a supremely hopeful cautionary tale of war 's madness remembered that we , today , can prevent its tragic waste of life . 4 +32502 1523 The Pianist -LRB- is -RRB- a supremely hopeful cautionary tale of war 's madness remembered that we , today , can prevent its tragic waste of life 4 +32503 1523 The Pianist -LRB- is -RRB- 2 +32504 1523 -LRB- is -RRB- 2 +32505 1523 a supremely hopeful cautionary tale of war 's madness remembered that we , today , can prevent its tragic waste of life 3 +32506 1523 a supremely hopeful cautionary tale 3 +32507 1523 supremely hopeful cautionary tale 3 +32508 1523 supremely hopeful 4 +32509 1523 supremely 3 +32510 1523 cautionary tale 2 +32511 1523 cautionary 2 +32512 1523 of war 's madness remembered that we , today , can prevent its tragic waste of life 2 +32513 1523 war 's madness remembered that we , today , can prevent its tragic waste of life 2 +32514 1523 war 's madness 2 +32515 1523 war 's 1 +32516 1523 remembered that we , today , can prevent its tragic waste of life 2 +32517 1523 that we , today , can prevent its tragic waste of life 2 +32518 1523 we , today , can prevent its tragic waste of life 1 +32519 1523 , today , can prevent its tragic waste of life 1 +32520 1523 today , can prevent its tragic waste of life 2 +32521 1523 , can prevent its tragic waste of life 1 +32522 1523 can prevent its tragic waste of life 1 +32523 1523 prevent its tragic waste of life 1 +32524 1523 its tragic waste of life 0 +32525 1523 its tragic waste 0 +32526 1523 tragic waste 1 +32527 1524 It does n't reach them , but the effort is gratefully received . 3 +32528 1524 It does n't reach them , but the effort is gratefully received 3 +32529 1524 It does n't reach them , but 2 +32530 1524 It does n't reach them , 2 +32531 1524 It does n't reach them 2 +32532 1524 does n't reach them 1 +32533 1524 reach them 2 +32534 1524 the effort is gratefully received 3 +32535 1524 the effort 2 +32536 1524 is gratefully received 3 +32537 1524 is gratefully 2 +32538 1524 gratefully 2 +32539 1524 received 2 +32540 1525 Jam-packed with literally bruising jokes . 2 +32541 1525 Jam-packed with literally bruising jokes 2 +32542 1525 Jam-packed 3 +32543 1525 with literally bruising jokes 2 +32544 1525 literally bruising jokes 1 +32545 1525 literally bruising 1 +32546 1525 literally 3 +32547 1525 bruising 1 +32548 1526 Seems like someone going through the motions . 1 +32549 1526 Seems like someone going through the motions 1 +32550 1526 like someone going through the motions 2 +32551 1526 someone going through the motions 1 +32552 1527 While I ca n't say it 's on par with the first one , Stuart Little 2 is a light , fun cheese puff of a movie . 3 +32553 1527 While I ca n't say it 's on par with the first one 1 +32554 1527 I ca n't say it 's on par with the first one 1 +32555 1527 ca n't say it 's on par with the first one 1 +32556 1527 say it 's on par with the first one 3 +32557 1527 it 's on par with the first one 3 +32558 1527 's on par with the first one 3 +32559 1527 on par with the first one 3 +32560 1527 par with the first one 3 +32561 1527 par 2 +32562 1527 with the first one 2 +32563 1527 , Stuart Little 2 is a light , fun cheese puff of a movie . 3 +32564 1527 Stuart Little 2 is a light , fun cheese puff of a movie . 3 +32565 1527 is a light , fun cheese puff of a movie . 4 +32566 1527 is a light , fun cheese puff of a movie 3 +32567 1527 a light , fun cheese puff of a movie 2 +32568 1527 a light , fun cheese puff 3 +32569 1527 light , fun cheese puff 3 +32570 1527 , fun cheese puff 3 +32571 1527 fun cheese puff 3 +32572 1527 cheese puff 2 +32573 1527 puff 2 +32574 1527 of a movie 2 +32575 1528 And he allows a gawky actor like Spall -- who could too easily become comic relief in any other film -- to reveal his impressively delicate range . 3 +32576 1528 he allows a gawky actor like Spall -- who could too easily become comic relief in any other film -- to reveal his impressively delicate range . 3 +32577 1528 allows a gawky actor like Spall -- who could too easily become comic relief in any other film -- to reveal his impressively delicate range . 3 +32578 1528 allows a gawky actor like Spall -- who could too easily become comic relief in any other film -- to reveal his impressively delicate range 3 +32579 1528 allows a gawky actor like Spall -- who could too easily become comic relief in any other film -- 3 +32580 1528 allows a gawky actor like Spall 2 +32581 1528 a gawky actor like Spall 2 +32582 1528 a gawky actor 1 +32583 1528 gawky actor 1 +32584 1528 gawky 1 +32585 1528 like Spall 2 +32586 1528 Spall 2 +32587 1528 -- who could too easily become comic relief in any other film -- 2 +32588 1528 who could too easily become comic relief in any other film -- 3 +32589 1528 who could too easily become comic relief in any other film 3 +32590 1528 could too easily become comic relief in any other film 2 +32591 1528 could too easily 2 +32592 1528 become comic relief in any other film 2 +32593 1528 become comic relief 2 +32594 1528 in any other film 2 +32595 1528 any other film 2 +32596 1528 to reveal his impressively delicate range 4 +32597 1528 reveal his impressively delicate range 3 +32598 1528 reveal 2 +32599 1528 his impressively delicate range 3 +32600 1528 impressively delicate range 3 +32601 1528 impressively 3 +32602 1528 delicate range 2 +32603 1528 range 2 +32604 1529 The Chateau belongs to Rudd , whose portrait of a therapy-dependent flakeball spouting French malapropisms ... is a nonstop hoot . 3 +32605 1529 The Chateau belongs to Rudd , whose portrait of a therapy-dependent flakeball spouting French malapropisms ... is a nonstop hoot 4 +32606 1529 The Chateau belongs to Rudd , whose portrait of a therapy-dependent flakeball spouting French malapropisms ... 1 +32607 1529 The Chateau belongs to Rudd , whose portrait of a therapy-dependent flakeball spouting French malapropisms 3 +32608 1529 The Chateau 2 +32609 1529 Chateau 2 +32610 1529 belongs to Rudd , whose portrait of a therapy-dependent flakeball spouting French malapropisms 2 +32611 1529 to Rudd , whose portrait of a therapy-dependent flakeball spouting French malapropisms 2 +32612 1529 Rudd , whose portrait of a therapy-dependent flakeball spouting French malapropisms 2 +32613 1529 Rudd , 2 +32614 1529 Rudd 2 +32615 1529 whose portrait of a therapy-dependent flakeball spouting French malapropisms 2 +32616 1529 whose portrait of a therapy-dependent flakeball 1 +32617 1529 whose portrait 2 +32618 1529 of a therapy-dependent flakeball 2 +32619 1529 a therapy-dependent flakeball 2 +32620 1529 therapy-dependent flakeball 1 +32621 1529 therapy-dependent 2 +32622 1529 flakeball 1 +32623 1529 spouting French malapropisms 2 +32624 1529 spouting 2 +32625 1529 French malapropisms 3 +32626 1529 malapropisms 2 +32627 1529 is a nonstop hoot 4 +32628 1529 a nonstop hoot 3 +32629 1529 nonstop hoot 4 +32630 1530 The film does n't have enough innovation or pizazz to attract teenagers , and it lacks the novel charm that made Spy Kids a surprising winner with both adults and younger audiences . 0 +32631 1530 The film does n't have enough innovation or pizazz to attract teenagers , and it lacks the novel charm that made Spy Kids a surprising winner with both adults and younger audiences 0 +32632 1530 The film does n't have enough innovation or pizazz to attract teenagers , and 0 +32633 1530 The film does n't have enough innovation or pizazz to attract teenagers , 1 +32634 1530 The film does n't have enough innovation or pizazz to attract teenagers 1 +32635 1530 does n't have enough innovation or pizazz to attract teenagers 1 +32636 1530 have enough innovation or pizazz to attract teenagers 2 +32637 1530 have enough innovation or pizazz 2 +32638 1530 enough innovation or pizazz 3 +32639 1530 innovation or pizazz 2 +32640 1530 innovation or 2 +32641 1530 pizazz 3 +32642 1530 to attract teenagers 2 +32643 1530 attract teenagers 2 +32644 1530 it lacks the novel charm that made Spy Kids a surprising winner with both adults and younger audiences 1 +32645 1530 lacks the novel charm that made Spy Kids a surprising winner with both adults and younger audiences 1 +32646 1530 the novel charm that made Spy Kids a surprising winner with both adults and younger audiences 3 +32647 1530 the novel charm 3 +32648 1530 novel charm 3 +32649 1530 that made Spy Kids a surprising winner with both adults and younger audiences 3 +32650 1530 made Spy Kids a surprising winner with both adults and younger audiences 3 +32651 1530 Spy Kids a surprising winner with both adults and younger audiences 4 +32652 1530 Spy Kids 2 +32653 1530 a surprising winner with both adults and younger audiences 3 +32654 1530 a surprising winner 4 +32655 1530 surprising winner 3 +32656 1530 with both adults and younger audiences 2 +32657 1530 both adults and younger audiences 2 +32658 1530 both adults and 2 +32659 1530 both adults 2 +32660 1530 adults 2 +32661 1531 At once overly old-fashioned in its sudsy plotting and heavy-handed in its effort to modernize it with encomia to diversity and tolerance . 1 +32662 1531 At once overly old-fashioned in its sudsy plotting and heavy-handed in its effort to modernize it with encomia to diversity and tolerance 1 +32663 1531 At once overly old-fashioned in its sudsy plotting and 1 +32664 1531 At once overly old-fashioned in its sudsy plotting 1 +32665 1531 once overly old-fashioned in its sudsy plotting 1 +32666 1531 once overly old-fashioned in its sudsy 1 +32667 1531 once overly old-fashioned 1 +32668 1531 overly old-fashioned 1 +32669 1531 in its sudsy 2 +32670 1531 its sudsy 2 +32671 1531 sudsy 1 +32672 1531 heavy-handed in its effort to modernize it with encomia to diversity and tolerance 2 +32673 1531 in its effort to modernize it with encomia to diversity and tolerance 1 +32674 1531 its effort to modernize it with encomia to diversity and tolerance 2 +32675 1531 effort to modernize it with encomia to diversity and tolerance 2 +32676 1531 to modernize it with encomia to diversity and tolerance 1 +32677 1531 modernize it with encomia to diversity and tolerance 1 +32678 1531 modernize it with encomia 3 +32679 1531 modernize it 2 +32680 1531 modernize 2 +32681 1531 with encomia 2 +32682 1531 encomia 2 +32683 1531 to diversity and tolerance 2 +32684 1531 diversity and tolerance 2 +32685 1531 diversity and 2 +32686 1531 diversity 2 +32687 1531 tolerance 2 +32688 1532 What is the filmmakers ' point ? 2 +32689 1532 is the filmmakers ' point ? 1 +32690 1532 is the filmmakers ' point 2 +32691 1532 the filmmakers ' point 2 +32692 1533 Maid in Manhattan proves that it 's easier to change the sheets than to change hackneyed concepts when it comes to dreaming up romantic comedies . 0 +32693 1533 Maid in Manhattan 2 +32694 1533 in Manhattan 2 +32695 1533 proves that it 's easier to change the sheets than to change hackneyed concepts when it comes to dreaming up romantic comedies . 1 +32696 1533 proves that it 's easier to change the sheets than to change hackneyed concepts when it comes to dreaming up romantic comedies 1 +32697 1533 that it 's easier to change the sheets than to change hackneyed concepts when it comes to dreaming up romantic comedies 2 +32698 1533 it 's easier to change the sheets than to change hackneyed concepts when it comes to dreaming up romantic comedies 1 +32699 1533 's easier to change the sheets than to change hackneyed concepts when it comes to dreaming up romantic comedies 1 +32700 1533 's easier to change the sheets 1 +32701 1533 's easier 2 +32702 1533 to change the sheets 2 +32703 1533 change the sheets 2 +32704 1533 the sheets 2 +32705 1533 sheets 2 +32706 1533 than to change hackneyed concepts when it comes to dreaming up romantic comedies 1 +32707 1533 to change hackneyed concepts when it comes to dreaming up romantic comedies 1 +32708 1533 change hackneyed concepts when it comes to dreaming up romantic comedies 1 +32709 1533 change hackneyed concepts 1 +32710 1533 hackneyed concepts 1 +32711 1533 hackneyed 1 +32712 1533 concepts 2 +32713 1533 when it comes to dreaming up romantic comedies 2 +32714 1533 it comes to dreaming up romantic comedies 2 +32715 1533 comes to dreaming up romantic comedies 3 +32716 1533 to dreaming up romantic comedies 2 +32717 1533 dreaming up romantic comedies 3 +32718 1533 dreaming up 2 +32719 1533 dreaming 2 +32720 1534 Wonderful fencing scenes and an exciting plot make this an eminently engrossing film . 3 +32721 1534 Wonderful fencing scenes and an exciting plot 3 +32722 1534 Wonderful fencing scenes and 3 +32723 1534 Wonderful fencing scenes 4 +32724 1534 fencing scenes 2 +32725 1534 fencing 2 +32726 1534 an exciting plot 4 +32727 1534 exciting plot 3 +32728 1534 exciting 4 +32729 1534 make this an eminently engrossing film . 4 +32730 1534 make this an eminently engrossing film 4 +32731 1534 this an eminently engrossing film 4 +32732 1534 an eminently engrossing film 4 +32733 1534 eminently engrossing film 3 +32734 1534 eminently 2 +32735 1534 engrossing film 3 +32736 1535 Another in a long line of ultra-violent war movies , this one is not quite what it could have been as a film , but the story and theme make up for it . 2 +32737 1535 Another in a long line of ultra-violent war movies , this one is not quite what it could have been as a film , but the story and theme make up for it 3 +32738 1535 Another in a long line of ultra-violent war movies , this one is not quite what it could have been as a film , but 1 +32739 1535 Another in a long line of ultra-violent war movies , this one is not quite what it could have been as a film , 1 +32740 1535 Another in a long line of ultra-violent war movies , this one is not quite what it could have been as a film 0 +32741 1535 Another in a long line of ultra-violent war movies , this one 2 +32742 1535 in a long line of ultra-violent war movies , this one 2 +32743 1535 a long line of ultra-violent war movies , this one 2 +32744 1535 a long line 2 +32745 1535 long line 2 +32746 1535 of ultra-violent war movies , this one 2 +32747 1535 ultra-violent war movies , this one 2 +32748 1535 ultra-violent war movies , 2 +32749 1535 ultra-violent war movies 2 +32750 1535 is not quite what it could have been as a film 1 +32751 1535 not quite what it could have been as a film 1 +32752 1535 not quite 1 +32753 1535 what it could have been as a film 2 +32754 1535 it could have been as a film 2 +32755 1535 could have been as a film 2 +32756 1535 have been as a film 2 +32757 1535 been as a film 2 +32758 1535 as a film 2 +32759 1535 the story and theme make up for it 3 +32760 1535 the story and theme 3 +32761 1535 story and theme 3 +32762 1535 story and 2 +32763 1535 make up for it 2 +32764 1536 The concert footage is stirring , the recording sessions are intriguing , and -- on the way to striking a blow for artistic integrity -- this quality band may pick up new admirers . 3 +32765 1536 The concert footage is stirring 3 +32766 1536 The concert footage 2 +32767 1536 concert footage 2 +32768 1536 concert 2 +32769 1536 is stirring 2 +32770 1536 , the recording sessions are intriguing , and -- on the way to striking a blow for artistic integrity -- this quality band may pick up new admirers . 3 +32771 1536 the recording sessions are intriguing , and -- on the way to striking a blow for artistic integrity -- this quality band may pick up new admirers . 4 +32772 1536 the recording sessions are intriguing , and -- on the way to striking a blow for artistic integrity -- this quality band may pick up new admirers 3 +32773 1536 the recording sessions are intriguing , and -- on the way to striking a blow for artistic integrity -- 3 +32774 1536 the recording sessions are intriguing , and 3 +32775 1536 the recording sessions are intriguing , 3 +32776 1536 the recording sessions are intriguing 3 +32777 1536 the recording sessions 3 +32778 1536 recording sessions 2 +32779 1536 recording 3 +32780 1536 sessions 2 +32781 1536 are intriguing 2 +32782 1536 -- on the way to striking a blow for artistic integrity -- 4 +32783 1536 on the way to striking a blow for artistic integrity -- 2 +32784 1536 on the way to striking a blow for artistic integrity 2 +32785 1536 the way to striking a blow for artistic integrity 3 +32786 1536 to striking a blow for artistic integrity 2 +32787 1536 striking a blow for artistic integrity 3 +32788 1536 striking a blow 2 +32789 1536 a blow 2 +32790 1536 for artistic integrity 2 +32791 1536 artistic integrity 2 +32792 1536 integrity 3 +32793 1536 this quality band may pick up new admirers 3 +32794 1536 this quality band 3 +32795 1536 quality band 3 +32796 1536 may pick up new admirers 3 +32797 1536 pick up new admirers 3 +32798 1536 pick up 2 +32799 1536 new admirers 2 +32800 1536 admirers 3 +32801 1537 Many of Benjamins ' elements feel like they 've been patched in from an episode of Miami Vice . 2 +32802 1537 Many of Benjamins ' elements 2 +32803 1537 of Benjamins ' elements 2 +32804 1537 Benjamins ' elements 2 +32805 1537 Benjamins ' 2 +32806 1537 feel like they 've been patched in from an episode of Miami Vice . 1 +32807 1537 feel like they 've been patched in from an episode of Miami Vice 2 +32808 1537 like they 've been patched in from an episode of Miami Vice 1 +32809 1537 they 've been patched in from an episode of Miami Vice 2 +32810 1537 've been patched in from an episode of Miami Vice 3 +32811 1537 been patched in from an episode of Miami Vice 2 +32812 1537 patched in from an episode of Miami Vice 1 +32813 1537 patched 2 +32814 1537 in from an episode of Miami Vice 2 +32815 1537 from an episode of Miami Vice 2 +32816 1537 an episode of Miami Vice 1 +32817 1537 of Miami Vice 2 +32818 1537 Miami Vice 2 +32819 1537 Miami 2 +32820 1537 Vice 2 +32821 1538 There are a couple of things that elevate `` Glory '' above most of its ilk , most notably the mere presence of Duvall . 3 +32822 1538 are a couple of things that elevate `` Glory '' above most of its ilk , most notably the mere presence of Duvall . 2 +32823 1538 are a couple of things that elevate `` Glory '' above most of its ilk , most notably the mere presence of Duvall 4 +32824 1538 a couple of things that elevate `` Glory '' above most of its ilk , most notably the mere presence of Duvall 3 +32825 1538 of things that elevate `` Glory '' above most of its ilk , most notably the mere presence of Duvall 3 +32826 1538 things that elevate `` Glory '' above most of its ilk , most notably the mere presence of Duvall 4 +32827 1538 things that elevate `` Glory '' above most of its ilk , most notably 3 +32828 1538 things that elevate `` Glory '' above most of its ilk , 3 +32829 1538 things that elevate `` Glory '' above most of its ilk 3 +32830 1538 that elevate `` Glory '' above most of its ilk 3 +32831 1538 elevate `` Glory '' above most of its ilk 3 +32832 1538 elevate `` Glory '' 3 +32833 1538 elevate 3 +32834 1538 `` Glory '' 2 +32835 1538 Glory '' 2 +32836 1538 above most of its ilk 4 +32837 1538 most of its ilk 1 +32838 1538 of its ilk 2 +32839 1538 its ilk 2 +32840 1538 ilk 2 +32841 1538 most notably 2 +32842 1538 notably 2 +32843 1538 the mere presence of Duvall 2 +32844 1538 the mere presence 2 +32845 1538 mere presence 2 +32846 1538 of Duvall 2 +32847 1539 The Way Home is an ode to unconditional love and compassion garnered from years of seeing it all , a condition only the old are privy to , and ... often misconstrued as weakness . 3 +32848 1539 is an ode to unconditional love and compassion garnered from years of seeing it all , a condition only the old are privy to , and ... often misconstrued as weakness . 3 +32849 1539 is an ode to unconditional love and compassion garnered from years of seeing it all , a condition only the old are privy to , and ... often misconstrued as weakness 3 +32850 1539 an ode to unconditional love and compassion garnered from years of seeing it all , a condition only the old are privy to , and ... often misconstrued as weakness 3 +32851 1539 ode to unconditional love and compassion garnered from years of seeing it all , a condition only the old are privy to , and ... often misconstrued as weakness 3 +32852 1539 to unconditional love and compassion garnered from years of seeing it all , a condition only the old are privy to , and ... often misconstrued as weakness 2 +32853 1539 unconditional love and compassion garnered from years of seeing it all , a condition only the old are privy to , and ... often misconstrued as weakness 3 +32854 1539 love and compassion garnered from years of seeing it all , a condition only the old are privy to , and ... often misconstrued as weakness 3 +32855 1539 love and compassion 3 +32856 1539 compassion 2 +32857 1539 garnered from years of seeing it all , a condition only the old are privy to , and ... often misconstrued as weakness 2 +32858 1539 garnered from years of seeing it all , a condition only the old are privy to , and ... 3 +32859 1539 garnered from years of seeing it all , a condition only the old are privy to , and 2 +32860 1539 garnered from years of seeing it all , a condition only the old are privy to , 2 +32861 1539 garnered 2 +32862 1539 from years of seeing it all , a condition only the old are privy to , 2 +32863 1539 years of seeing it all , a condition only the old are privy to , 2 +32864 1539 of seeing it all , a condition only the old are privy to , 2 +32865 1539 seeing it all , a condition only the old are privy to , 2 +32866 1539 seeing it 2 +32867 1539 all , a condition only the old are privy to , 2 +32868 1539 all , a condition only the old are privy to 1 +32869 1539 a condition only the old are privy to 3 +32870 1539 a condition only 2 +32871 1539 a condition 2 +32872 1539 the old are privy to 2 +32873 1539 the old 2 +32874 1539 are privy to 2 +32875 1539 privy to 3 +32876 1539 privy 2 +32877 1539 often misconstrued as weakness 2 +32878 1539 misconstrued as weakness 3 +32879 1539 misconstrued 1 +32880 1539 as weakness 2 +32881 1539 weakness 2 +32882 1540 An ugly , revolting movie . 1 +32883 1540 An ugly , revolting movie 0 +32884 1540 ugly , revolting movie 0 +32885 1540 ugly , revolting 0 +32886 1540 , revolting 1 +32887 1540 revolting 1 +32888 1541 It never quite makes it to the boiling point , but manages to sustain a good simmer for most of its running time . 3 +32889 1541 never quite makes it to the boiling point , but manages to sustain a good simmer for most of its running time . 3 +32890 1541 quite makes it to the boiling point , but manages to sustain a good simmer for most of its running time . 3 +32891 1541 quite makes it to the boiling point , but manages to sustain a good simmer for most of its running time 3 +32892 1541 quite makes it to the boiling point , but 2 +32893 1541 quite makes it to the boiling point , 2 +32894 1541 quite makes it to the boiling point 2 +32895 1541 makes it to the boiling point 3 +32896 1541 makes it 2 +32897 1541 to the boiling point 2 +32898 1541 the boiling point 2 +32899 1541 boiling point 1 +32900 1541 boiling 2 +32901 1541 manages to sustain a good simmer for most of its running time 3 +32902 1541 to sustain a good simmer for most of its running time 3 +32903 1541 sustain a good simmer for most of its running time 3 +32904 1541 sustain a good simmer 2 +32905 1541 a good simmer 3 +32906 1541 good simmer 3 +32907 1541 simmer 2 +32908 1541 for most of its running time 2 +32909 1541 most of its running time 2 +32910 1541 of its running time 2 +32911 1541 its running time 2 +32912 1542 Like Kissing Jessica Stein , Amy 's Orgasm has a key strength in its willingness to explore its principal characters with honesty , insight and humor . 3 +32913 1542 Like Kissing Jessica Stein 2 +32914 1542 , Amy 's Orgasm has a key strength in its willingness to explore its principal characters with honesty , insight and humor . 3 +32915 1542 Amy 's Orgasm has a key strength in its willingness to explore its principal characters with honesty , insight and humor . 4 +32916 1542 Amy 's Orgasm 2 +32917 1542 Amy 's 2 +32918 1542 Orgasm 4 +32919 1542 has a key strength in its willingness to explore its principal characters with honesty , insight and humor . 3 +32920 1542 has a key strength in its willingness to explore its principal characters with honesty , insight and humor 3 +32921 1542 a key strength in its willingness to explore its principal characters with honesty , insight and humor 3 +32922 1542 a key strength 3 +32923 1542 key strength 3 +32924 1542 in its willingness to explore its principal characters with honesty , insight and humor 3 +32925 1542 its willingness to explore its principal characters with honesty , insight and humor 4 +32926 1542 willingness to explore its principal characters with honesty , insight and humor 3 +32927 1542 to explore its principal characters with honesty , insight and humor 3 +32928 1542 explore its principal characters with honesty , insight and humor 3 +32929 1542 explore its principal characters 2 +32930 1542 its principal characters 2 +32931 1542 principal characters 2 +32932 1542 with honesty , insight and humor 3 +32933 1542 honesty , insight and humor 3 +32934 1542 , insight and humor 3 +32935 1542 insight and humor 4 +32936 1542 insight and 2 +32937 1543 The main problem being that it 's only a peek . 2 +32938 1543 The main problem 1 +32939 1543 main problem 2 +32940 1543 main 2 +32941 1543 being that it 's only a peek . 2 +32942 1543 being that it 's only a peek 2 +32943 1543 that it 's only a peek 2 +32944 1543 it 's only a peek 2 +32945 1543 's only a peek 2 +32946 1543 a peek 2 +32947 1544 As predictable as the outcome of a Globetrotters-Generals game , Juwanna Mann is even more ludicrous than you 'd expect from the guy-in-a-dress genre , and a personal low for everyone involved . 0 +32948 1544 As predictable as the outcome of a Globetrotters-Generals game , Juwanna Mann is even more ludicrous than you 'd expect from the guy-in-a-dress genre , and a personal low for everyone involved 1 +32949 1544 As predictable as the outcome of a Globetrotters-Generals game , Juwanna Mann is even more ludicrous than you 'd expect from the guy-in-a-dress genre , and 0 +32950 1544 As predictable as the outcome of a Globetrotters-Generals game , Juwanna Mann is even more ludicrous than you 'd expect from the guy-in-a-dress genre , 0 +32951 1544 As predictable as the outcome of a Globetrotters-Generals game , Juwanna Mann is even more ludicrous than you 'd expect from the guy-in-a-dress genre 1 +32952 1544 As predictable as the outcome of a Globetrotters-Generals game 0 +32953 1544 predictable as the outcome of a Globetrotters-Generals game 1 +32954 1544 as the outcome of a Globetrotters-Generals game 2 +32955 1544 the outcome of a Globetrotters-Generals game 2 +32956 1544 the outcome 2 +32957 1544 outcome 2 +32958 1544 of a Globetrotters-Generals game 2 +32959 1544 a Globetrotters-Generals game 2 +32960 1544 Globetrotters-Generals game 2 +32961 1544 Globetrotters-Generals 2 +32962 1544 , Juwanna Mann is even more ludicrous than you 'd expect from the guy-in-a-dress genre 1 +32963 1544 Juwanna Mann is even more ludicrous than you 'd expect from the guy-in-a-dress genre 1 +32964 1544 Juwanna Mann 3 +32965 1544 Juwanna 2 +32966 1544 is even more ludicrous than you 'd expect from the guy-in-a-dress genre 1 +32967 1544 is even more ludicrous 2 +32968 1544 even more ludicrous 0 +32969 1544 more ludicrous 2 +32970 1544 ludicrous 0 +32971 1544 than you 'd expect from the guy-in-a-dress genre 2 +32972 1544 you 'd expect from the guy-in-a-dress genre 2 +32973 1544 'd expect from the guy-in-a-dress genre 2 +32974 1544 expect from the guy-in-a-dress genre 1 +32975 1544 from the guy-in-a-dress genre 1 +32976 1544 the guy-in-a-dress genre 3 +32977 1544 guy-in-a-dress genre 2 +32978 1544 guy-in-a-dress 2 +32979 1544 a personal low for everyone involved 0 +32980 1544 a personal low for everyone 1 +32981 1544 a personal low 0 +32982 1544 personal low 1 +32983 1545 But it 's hard to imagine a more generic effort in the genre . 0 +32984 1545 it 's hard to imagine a more generic effort in the genre . 1 +32985 1545 's hard to imagine a more generic effort in the genre . 1 +32986 1545 's hard to imagine a more generic effort in the genre 1 +32987 1545 hard to imagine a more generic effort in the genre 0 +32988 1545 to imagine a more generic effort in the genre 2 +32989 1545 imagine a more generic effort in the genre 2 +32990 1545 a more generic effort in the genre 2 +32991 1545 a more generic effort 2 +32992 1545 more generic effort 2 +32993 1545 more generic 2 +32994 1545 in the genre 2 +32995 1545 the genre 2 +32996 1546 Jason Patric and Ray Liotta make for one splendidly cast pair . 4 +32997 1546 Jason Patric and Ray Liotta 2 +32998 1546 Patric and Ray Liotta 2 +32999 1546 Patric 2 +33000 1546 and Ray Liotta 2 +33001 1546 Ray Liotta 3 +33002 1546 Ray 2 +33003 1546 Liotta 2 +33004 1546 make for one splendidly cast pair . 3 +33005 1546 make for one splendidly cast pair 3 +33006 1546 for one splendidly cast pair 4 +33007 1546 one splendidly cast pair 4 +33008 1546 splendidly cast pair 3 +33009 1546 splendidly 2 +33010 1546 cast pair 2 +33011 1547 This often-hilarious farce manages to generate the belly laughs of lowbrow comedy without sacrificing its high-minded appeal . 4 +33012 1547 This often-hilarious farce 3 +33013 1547 often-hilarious farce 4 +33014 1547 often-hilarious 4 +33015 1547 farce 1 +33016 1547 manages to generate the belly laughs of lowbrow comedy without sacrificing its high-minded appeal . 3 +33017 1547 manages to generate the belly laughs of lowbrow comedy without sacrificing its high-minded appeal 4 +33018 1547 to generate the belly laughs of lowbrow comedy without sacrificing its high-minded appeal 3 +33019 1547 generate the belly laughs of lowbrow comedy without sacrificing its high-minded appeal 3 +33020 1547 generate the belly laughs of lowbrow comedy 2 +33021 1547 the belly laughs of lowbrow comedy 3 +33022 1547 the belly laughs 3 +33023 1547 belly laughs 3 +33024 1547 of lowbrow comedy 2 +33025 1547 lowbrow comedy 2 +33026 1547 without sacrificing its high-minded appeal 3 +33027 1547 sacrificing its high-minded appeal 1 +33028 1547 sacrificing 2 +33029 1547 its high-minded appeal 2 +33030 1547 high-minded appeal 3 +33031 1547 high-minded 3 +33032 1548 It 's simply stupid , irrelevant and deeply , truly , bottomlessly cynical . 0 +33033 1548 's simply stupid , irrelevant and deeply , truly , bottomlessly cynical . 0 +33034 1548 's simply stupid , irrelevant and deeply , truly , bottomlessly cynical 0 +33035 1548 's simply stupid , irrelevant and deeply , truly , 1 +33036 1548 's simply stupid , irrelevant and deeply , truly 1 +33037 1548 's simply stupid , irrelevant and deeply , 0 +33038 1548 's simply stupid , irrelevant and deeply 0 +33039 1548 simply stupid , irrelevant and deeply 0 +33040 1548 simply stupid , irrelevant and 1 +33041 1548 simply stupid , irrelevant 1 +33042 1548 simply stupid , 1 +33043 1548 simply stupid 2 +33044 1548 irrelevant 1 +33045 1548 bottomlessly cynical 1 +33046 1548 bottomlessly 1 +33047 1549 The actresses find their own rhythm and protect each other from the script 's bad ideas and awkwardness . 3 +33048 1549 The actresses 2 +33049 1549 find their own rhythm and protect each other from the script 's bad ideas and awkwardness . 1 +33050 1549 find their own rhythm and protect each other from the script 's bad ideas and awkwardness 2 +33051 1549 find their own rhythm and 2 +33052 1549 find their own rhythm 2 +33053 1549 their own rhythm 3 +33054 1549 own rhythm 2 +33055 1549 protect each other from the script 's bad ideas and awkwardness 2 +33056 1549 protect each other 2 +33057 1549 from the script 's bad ideas and awkwardness 1 +33058 1549 the script 's bad ideas and awkwardness 1 +33059 1549 bad ideas and awkwardness 0 +33060 1549 ideas and awkwardness 1 +33061 1549 ideas and 2 +33062 1550 It 's just hard to believe that a life like this can sound so dull . 1 +33063 1550 's just hard to believe that a life like this can sound so dull . 1 +33064 1550 's just hard to believe that a life like this can sound so dull 1 +33065 1550 hard to believe that a life like this can sound so dull 1 +33066 1550 to believe that a life like this can sound so dull 1 +33067 1550 believe that a life like this can sound so dull 0 +33068 1550 that a life like this can sound so dull 1 +33069 1550 a life like this can sound so dull 1 +33070 1550 a life like this 2 +33071 1550 a life 2 +33072 1550 can sound so dull 1 +33073 1550 sound so dull 0 +33074 1550 so dull 0 +33075 1551 If you 're not fans of the adventues of Steve and Terri , you should avoid this like the dreaded King Brown snake . 1 +33076 1551 If you 're not fans of the adventues of Steve and Terri 2 +33077 1551 you 're not fans of the adventues of Steve and Terri 1 +33078 1551 're not fans of the adventues of Steve and Terri 2 +33079 1551 fans of the adventues of Steve and Terri 2 +33080 1551 of the adventues of Steve and Terri 2 +33081 1551 the adventues of Steve and Terri 2 +33082 1551 the adventues 2 +33083 1551 adventues 2 +33084 1551 of Steve and Terri 2 +33085 1551 Steve and Terri 2 +33086 1551 Steve and 2 +33087 1551 Steve 2 +33088 1551 Terri 2 +33089 1551 , you should avoid this like the dreaded King Brown snake . 0 +33090 1551 you should avoid this like the dreaded King Brown snake . 0 +33091 1551 should avoid this like the dreaded King Brown snake . 0 +33092 1551 should avoid this like the dreaded King Brown snake 0 +33093 1551 avoid this like the dreaded King Brown snake 0 +33094 1551 this like the dreaded King Brown snake 1 +33095 1551 like the dreaded King Brown snake 2 +33096 1551 the dreaded King Brown snake 2 +33097 1551 dreaded King Brown snake 2 +33098 1551 dreaded 1 +33099 1551 King Brown snake 2 +33100 1551 Brown snake 2 +33101 1551 Brown 2 +33102 1551 snake 2 +33103 1552 Wait for pay per view or rental but do n't dismiss BarberShop out of hand . 2 +33104 1552 Wait for pay per view or rental but do n't dismiss BarberShop out of hand 2 +33105 1552 Wait for pay per view or rental but 1 +33106 1552 Wait for pay per view or rental 2 +33107 1552 for pay per view or rental 2 +33108 1552 pay per view or rental 2 +33109 1552 per view or rental 2 +33110 1552 per 2 +33111 1552 view or rental 2 +33112 1552 view or 2 +33113 1552 do n't dismiss BarberShop out of hand 2 +33114 1552 dismiss BarberShop out of hand 0 +33115 1552 dismiss BarberShop out 2 +33116 1552 dismiss BarberShop 2 +33117 1552 dismiss 1 +33118 1552 of hand 2 +33119 1553 All very stylish and beautifully photographed , but far more trouble than it 's worth , with fantasy mixing with reality and actors playing more than one role just to add to the confusion . 2 +33120 1553 All very stylish and beautifully photographed , but far more trouble than it 2 +33121 1553 All very stylish and beautifully photographed , but far more trouble 3 +33122 1553 very stylish and beautifully photographed , but far more trouble 3 +33123 1553 very stylish and beautifully photographed , but far more 4 +33124 1553 very stylish and beautifully photographed , but 3 +33125 1553 very stylish and beautifully photographed , 4 +33126 1553 very stylish and beautifully photographed 4 +33127 1553 very stylish and 3 +33128 1553 very stylish 3 +33129 1553 beautifully photographed 3 +33130 1553 than it 2 +33131 1553 's worth , with fantasy mixing with reality and actors playing more than one role just to add to the confusion . 2 +33132 1553 's worth , with fantasy mixing with reality and actors playing more than one role just to add to the confusion 1 +33133 1553 's worth , 3 +33134 1553 's worth 2 +33135 1553 with fantasy mixing with reality and actors playing more than one role just to add to the confusion 2 +33136 1553 fantasy mixing with reality and actors playing more than one role just to add to the confusion 2 +33137 1553 mixing with reality and actors playing more than one role just to add to the confusion 1 +33138 1553 mixing with reality and actors 2 +33139 1553 with reality and actors 2 +33140 1553 reality and actors 2 +33141 1553 reality and 2 +33142 1553 playing more than one role just to add to the confusion 1 +33143 1553 playing more than one role just 2 +33144 1553 more than one role just 2 +33145 1553 more than one role 2 +33146 1553 to add to the confusion 2 +33147 1553 add to the confusion 1 +33148 1553 to the confusion 2 +33149 1553 the confusion 2 +33150 1553 confusion 2 +33151 1554 `` The Dangerous Lives of Altar Boys '' has flaws , but it also has humor and heart and very talented young actors 3 +33152 1554 `` The Dangerous Lives of Altar Boys '' has flaws , but 1 +33153 1554 `` The Dangerous Lives of Altar Boys '' has flaws , 1 +33154 1554 `` The Dangerous Lives of Altar Boys '' has flaws 1 +33155 1554 `` The Dangerous Lives of Altar Boys '' 2 +33156 1554 The Dangerous Lives of Altar Boys '' 2 +33157 1554 The Dangerous Lives of Altar Boys 2 +33158 1554 The Dangerous Lives 2 +33159 1554 Dangerous Lives 2 +33160 1554 of Altar Boys 2 +33161 1554 Altar Boys 2 +33162 1554 Altar 2 +33163 1554 has flaws 2 +33164 1554 it also has humor and heart and very talented young actors 4 +33165 1554 also has humor and heart and very talented young actors 3 +33166 1554 has humor and heart and very talented young actors 4 +33167 1554 humor and heart and very talented young actors 3 +33168 1554 humor and heart and 3 +33169 1554 humor and heart 3 +33170 1554 very talented young actors 3 +33171 1554 very talented 3 +33172 1554 young actors 2 +33173 1555 This is not a classical dramatic animated feature , nor a hip , contemporary , in-jokey one . 1 +33174 1555 is not a classical dramatic animated feature , nor a hip , contemporary , in-jokey one . 1 +33175 1555 is not a classical dramatic animated feature , nor a hip , contemporary , in-jokey one 1 +33176 1555 a classical dramatic animated feature , nor a hip , contemporary , in-jokey one 2 +33177 1555 a classical dramatic animated feature , nor 2 +33178 1555 a classical dramatic animated feature , 3 +33179 1555 a classical dramatic animated feature 3 +33180 1555 classical dramatic animated feature 3 +33181 1555 dramatic animated feature 3 +33182 1555 animated feature 2 +33183 1555 a hip , contemporary , in-jokey one 2 +33184 1555 hip , contemporary , in-jokey one 3 +33185 1555 hip 3 +33186 1555 , contemporary , in-jokey one 2 +33187 1555 contemporary , in-jokey one 2 +33188 1555 , in-jokey one 2 +33189 1555 in-jokey one 2 +33190 1555 in-jokey 2 +33191 1556 A technically well-made suspenser ... but its abrupt drop in IQ points as it races to the finish line proves simply too discouraging to let slide . 2 +33192 1556 A technically well-made suspenser 4 +33193 1556 technically well-made suspenser 3 +33194 1556 technically well-made 3 +33195 1556 technically 3 +33196 1556 suspenser 2 +33197 1556 ... but its abrupt drop in IQ points as it races to the finish line proves simply too discouraging to let slide . 1 +33198 1556 but its abrupt drop in IQ points as it races to the finish line proves simply too discouraging to let slide . 0 +33199 1556 but its abrupt drop in IQ points as it races to the finish line proves simply too discouraging to let slide 1 +33200 1556 its abrupt drop in IQ points as it races to the finish line proves simply too discouraging to let slide 0 +33201 1556 its abrupt drop in IQ 1 +33202 1556 its abrupt drop 1 +33203 1556 abrupt drop 1 +33204 1556 abrupt 1 +33205 1556 in IQ 2 +33206 1556 IQ 2 +33207 1556 points as it races to the finish line proves simply too discouraging to let slide 1 +33208 1556 as it races to the finish line proves simply too discouraging to let slide 1 +33209 1556 it races to the finish line proves simply too discouraging to let slide 1 +33210 1556 it races to the finish line 4 +33211 1556 it races 3 +33212 1556 races 2 +33213 1556 to the finish line 3 +33214 1556 the finish line 3 +33215 1556 finish line 2 +33216 1556 proves simply too discouraging to let slide 0 +33217 1556 simply too discouraging to let slide 1 +33218 1556 too discouraging to let slide 1 +33219 1556 discouraging to let slide 2 +33220 1556 discouraging 1 +33221 1556 to let slide 2 +33222 1556 let slide 2 +33223 1556 slide 2 +33224 1557 A funny and well-contructed black comedy where the old adage `` be careful what you wish for '' is given a full workout . 4 +33225 1557 A funny and well-contructed black comedy where the old adage `` be careful what you wish for '' 3 +33226 1557 A funny and well-contructed black comedy 4 +33227 1557 funny and well-contructed black comedy 4 +33228 1557 funny and well-contructed 4 +33229 1557 well-contructed 3 +33230 1557 where the old adage `` be careful what you wish for '' 1 +33231 1557 the old adage `` be careful what you wish for '' 2 +33232 1557 the old adage 2 +33233 1557 old adage 2 +33234 1557 `` be careful what you wish for '' 2 +33235 1557 be careful what you wish for '' 1 +33236 1557 be careful what you wish for 1 +33237 1557 careful what you wish for 2 +33238 1557 careful 2 +33239 1557 what you wish for 3 +33240 1557 you wish for 2 +33241 1557 wish for 2 +33242 1557 is given a full workout . 2 +33243 1557 is given a full workout 2 +33244 1557 given a full workout 2 +33245 1557 a full workout 2 +33246 1557 full workout 2 +33247 1557 workout 2 +33248 1558 Ram Dass Fierce Grace moulds itself as an example to up-and-coming documentarians , of the overlooked pitfalls of such an endeavour . 2 +33249 1558 Ram Dass Fierce Grace 2 +33250 1558 Ram 2 +33251 1558 Dass Fierce Grace 2 +33252 1558 Dass 2 +33253 1558 Fierce Grace 3 +33254 1558 moulds itself as an example to up-and-coming documentarians , of the overlooked pitfalls of such an endeavour . 3 +33255 1558 moulds itself as an example to up-and-coming documentarians , of the overlooked pitfalls of such an endeavour 1 +33256 1558 moulds itself 2 +33257 1558 moulds 2 +33258 1558 as an example to up-and-coming documentarians , of the overlooked pitfalls of such an endeavour 2 +33259 1558 an example to up-and-coming documentarians , of the overlooked pitfalls of such an endeavour 1 +33260 1558 an example to up-and-coming documentarians , 2 +33261 1558 an example to up-and-coming documentarians 4 +33262 1558 to up-and-coming documentarians 2 +33263 1558 up-and-coming documentarians 2 +33264 1558 up-and-coming 2 +33265 1558 documentarians 2 +33266 1558 of the overlooked pitfalls of such an endeavour 2 +33267 1558 the overlooked pitfalls of such an endeavour 1 +33268 1558 the overlooked pitfalls 2 +33269 1558 overlooked pitfalls 1 +33270 1558 pitfalls 2 +33271 1558 of such an endeavour 2 +33272 1558 such an endeavour 2 +33273 1558 an endeavour 2 +33274 1558 endeavour 2 +33275 1559 A sun-drenched masterpiece , part parlor game , part psychological case study , part droll social satire . 4 +33276 1559 A sun-drenched masterpiece , part parlor game , part psychological case study , part droll social satire 3 +33277 1559 A sun-drenched masterpiece , part parlor game , part psychological case study , 3 +33278 1559 A sun-drenched masterpiece , part parlor game , part psychological case study 4 +33279 1559 A sun-drenched masterpiece , part parlor game , 4 +33280 1559 A sun-drenched masterpiece , part parlor game 4 +33281 1559 A sun-drenched masterpiece , 4 +33282 1559 A sun-drenched masterpiece 4 +33283 1559 sun-drenched masterpiece 4 +33284 1559 sun-drenched 2 +33285 1559 part parlor game 2 +33286 1559 parlor game 2 +33287 1559 parlor 2 +33288 1559 part psychological case study 2 +33289 1559 psychological case study 3 +33290 1559 part droll social satire 2 +33291 1559 droll social satire 2 +33292 1559 social satire 2 +33293 1560 So bland and utterly forgettable that it might as well have been titled Generic Jennifer Lopez Romantic Comedy . 0 +33294 1560 So bland and utterly forgettable 1 +33295 1560 So bland and 1 +33296 1560 So bland 0 +33297 1560 utterly forgettable 1 +33298 1560 that it might as well have been titled Generic Jennifer Lopez Romantic Comedy . 0 +33299 1560 that it might as well have been titled Generic Jennifer Lopez Romantic Comedy 0 +33300 1560 it might as well have been titled Generic Jennifer Lopez Romantic Comedy 0 +33301 1560 might as well have been titled Generic Jennifer Lopez Romantic Comedy 1 +33302 1560 might as well 2 +33303 1560 as well 2 +33304 1560 have been titled Generic Jennifer Lopez Romantic Comedy 1 +33305 1560 been titled Generic Jennifer Lopez Romantic Comedy 1 +33306 1560 titled Generic Jennifer Lopez Romantic Comedy 2 +33307 1560 titled 2 +33308 1560 Generic Jennifer Lopez Romantic Comedy 1 +33309 1560 Jennifer Lopez Romantic Comedy 2 +33310 1560 Lopez Romantic Comedy 3 +33311 1561 Cal is an unpleasantly shallow and immature character with whom to spend 110 claustrophobic minutes . 1 +33312 1561 is an unpleasantly shallow and immature character with whom to spend 110 claustrophobic minutes . 0 +33313 1561 is an unpleasantly shallow and immature character with whom to spend 110 claustrophobic minutes 1 +33314 1561 an unpleasantly shallow and immature character with whom to spend 110 claustrophobic minutes 2 +33315 1561 an unpleasantly 1 +33316 1561 unpleasantly 1 +33317 1561 shallow and immature character with whom to spend 110 claustrophobic minutes 1 +33318 1561 shallow and immature character with whom 2 +33319 1561 shallow and immature character 0 +33320 1561 and immature character 1 +33321 1561 immature character 1 +33322 1561 immature 2 +33323 1561 with whom 2 +33324 1561 to spend 110 claustrophobic minutes 1 +33325 1561 spend 110 claustrophobic minutes 0 +33326 1561 110 claustrophobic minutes 2 +33327 1561 110 claustrophobic 2 +33328 1561 110 2 +33329 1561 claustrophobic 1 +33330 1562 It lacks the compassion , good-natured humor and the level of insight that made -LRB- Eyre 's -RRB- first film something of a sleeper success . 1 +33331 1562 lacks the compassion , good-natured humor and the level of insight that made -LRB- Eyre 's -RRB- first film something of a sleeper success . 2 +33332 1562 lacks the compassion , good-natured humor and the level of insight that made -LRB- Eyre 's -RRB- first film something of a sleeper success 1 +33333 1562 the compassion , good-natured humor and the level of insight that made -LRB- Eyre 's -RRB- first film something of a sleeper success 4 +33334 1562 the compassion , good-natured humor and the level of insight that made -LRB- Eyre 's -RRB- 2 +33335 1562 the compassion , good-natured humor and 3 +33336 1562 the compassion , good-natured humor 3 +33337 1562 compassion , good-natured humor 4 +33338 1562 compassion , good-natured 3 +33339 1562 the level of insight that made -LRB- Eyre 's -RRB- 2 +33340 1562 the level of insight that made 2 +33341 1562 the level of insight 2 +33342 1562 of insight 2 +33343 1562 that made 2 +33344 1562 -LRB- Eyre 's -RRB- 2 +33345 1562 Eyre 's -RRB- 2 +33346 1562 Eyre 's 2 +33347 1562 first film something of a sleeper success 3 +33348 1562 first film something 2 +33349 1562 film something 2 +33350 1562 of a sleeper success 3 +33351 1562 a sleeper success 3 +33352 1562 sleeper success 2 +33353 1562 sleeper 3 +33354 1563 And thanks to Kline 's superbly nuanced performance , that pondering is highly pleasurable . 4 +33355 1563 thanks to Kline 's superbly nuanced performance , that pondering is highly pleasurable . 3 +33356 1563 thanks to Kline 's superbly nuanced performance , that pondering 3 +33357 1563 to Kline 's superbly nuanced performance , that pondering 4 +33358 1563 Kline 's superbly nuanced performance , that pondering 2 +33359 1563 Kline 's superbly nuanced performance , 4 +33360 1563 Kline 's superbly nuanced performance 3 +33361 1563 Kline 's 2 +33362 1563 superbly nuanced performance 2 +33363 1563 nuanced performance 3 +33364 1563 nuanced 2 +33365 1563 that pondering 2 +33366 1563 pondering 2 +33367 1563 is highly pleasurable . 4 +33368 1563 is highly pleasurable 4 +33369 1563 highly pleasurable 3 +33370 1563 pleasurable 3 +33371 1564 The film was n't preachy , but it was feminism by the book . 2 +33372 1564 The film was n't preachy , but it was feminism by the book 2 +33373 1564 The film was n't preachy , but 2 +33374 1564 The film was n't preachy , 3 +33375 1564 The film was n't preachy 3 +33376 1564 was n't preachy 2 +33377 1564 it was feminism by the book 2 +33378 1564 was feminism by the book 2 +33379 1564 feminism by the book 2 +33380 1564 feminism 2 +33381 1564 by the book 2 +33382 1565 A lot more dimensional and complex than its sunny disposition would lead you to believe . 3 +33383 1565 A lot more dimensional and complex than its sunny disposition 3 +33384 1565 more dimensional and complex than its sunny disposition 3 +33385 1565 more dimensional and 2 +33386 1565 more dimensional 2 +33387 1565 dimensional 2 +33388 1565 complex than its sunny disposition 3 +33389 1565 than its sunny disposition 3 +33390 1565 its sunny disposition 3 +33391 1565 sunny disposition 3 +33392 1565 sunny 2 +33393 1565 disposition 2 +33394 1565 would lead you to believe . 2 +33395 1565 would lead you to believe 2 +33396 1565 lead you to believe 2 +33397 1565 you to believe 2 +33398 1566 Miller comes at film with bracing intelligence and a vision both painterly and literary . 4 +33399 1566 comes at film with bracing intelligence and a vision both painterly and literary . 3 +33400 1566 comes at film with bracing intelligence and a vision both painterly and literary 4 +33401 1566 comes at film 2 +33402 1566 at film 2 +33403 1566 with bracing intelligence and a vision both painterly and literary 4 +33404 1566 bracing intelligence and a vision both painterly and literary 4 +33405 1566 intelligence and a vision both painterly and literary 3 +33406 1566 a vision both painterly and literary 3 +33407 1566 a vision 3 +33408 1566 both painterly and literary 2 +33409 1566 painterly and literary 2 +33410 1566 painterly and 2 +33411 1566 painterly 2 +33412 1567 Grenier is terrific , bringing an unforced , rapid-fire delivery to Toback 's Heidegger - and Nietzsche-referencing dialogue . 4 +33413 1567 Grenier 2 +33414 1567 is terrific , bringing an unforced , rapid-fire delivery to Toback 's Heidegger - and Nietzsche-referencing dialogue . 4 +33415 1567 is terrific , bringing an unforced , rapid-fire delivery to Toback 's Heidegger - and Nietzsche-referencing dialogue 3 +33416 1567 is terrific , 4 +33417 1567 is terrific 4 +33418 1567 bringing an unforced , rapid-fire delivery to Toback 's Heidegger - and Nietzsche-referencing dialogue 3 +33419 1567 bringing an unforced , rapid-fire delivery 3 +33420 1567 an unforced , rapid-fire delivery 3 +33421 1567 unforced , rapid-fire delivery 3 +33422 1567 , rapid-fire delivery 3 +33423 1567 rapid-fire delivery 3 +33424 1567 rapid-fire 2 +33425 1567 delivery 2 +33426 1567 to Toback 's Heidegger - and Nietzsche-referencing dialogue 2 +33427 1567 Toback 's Heidegger - and Nietzsche-referencing dialogue 2 +33428 1567 Toback 's Heidegger - and 2 +33429 1567 Toback 's Heidegger - 2 +33430 1567 Toback 's Heidegger 2 +33431 1567 Toback 's 2 +33432 1567 Toback 2 +33433 1567 Heidegger 2 +33434 1567 Nietzsche-referencing dialogue 2 +33435 1567 Nietzsche-referencing 2 +33436 1568 Rubbo runs through a remarkable amount of material in the film 's short 90 minutes . 3 +33437 1568 Rubbo 2 +33438 1568 runs through a remarkable amount of material in the film 's short 90 minutes . 2 +33439 1568 runs through a remarkable amount of material in the film 's short 90 minutes 3 +33440 1568 through a remarkable amount of material in the film 's short 90 minutes 3 +33441 1568 a remarkable amount of material in the film 's short 90 minutes 3 +33442 1568 a remarkable amount 3 +33443 1568 remarkable amount 3 +33444 1568 of material in the film 's short 90 minutes 2 +33445 1568 material in the film 's short 90 minutes 2 +33446 1568 in the film 's short 90 minutes 2 +33447 1568 the film 's short 90 minutes 2 +33448 1568 short 90 minutes 2 +33449 1568 90 minutes 2 +33450 1569 Deep down , I realized the harsh reality of my situation : I would leave the theater with a lower I.Q. than when I had entered . 0 +33451 1569 Deep down , I realized the harsh reality of my situation : I would leave the theater with a lower I.Q. than when I had entered 0 +33452 1569 Deep down , I realized the harsh reality of my situation : 2 +33453 1569 Deep down , I realized the harsh reality of my situation 1 +33454 1569 Deep down 2 +33455 1569 , I realized the harsh reality of my situation 2 +33456 1569 I realized the harsh reality of my situation 1 +33457 1569 realized the harsh reality of my situation 1 +33458 1569 the harsh reality of my situation 1 +33459 1569 the harsh reality 2 +33460 1569 harsh reality 1 +33461 1569 harsh 1 +33462 1569 of my situation 2 +33463 1569 my situation 2 +33464 1569 I would leave the theater with a lower I.Q. than when I had entered 0 +33465 1569 would leave the theater with a lower I.Q. than when I had entered 0 +33466 1569 leave the theater with a lower I.Q. than when I had entered 0 +33467 1569 leave the theater 1 +33468 1569 with a lower I.Q. than when I had entered 0 +33469 1569 a lower I.Q. than when I had entered 0 +33470 1569 a lower I.Q. 0 +33471 1569 lower I.Q. 1 +33472 1569 I.Q. 2 +33473 1569 than when I had entered 2 +33474 1569 when I had entered 2 +33475 1569 I had entered 2 +33476 1569 had entered 2 +33477 1569 entered 2 +33478 1570 A story which fails to rise above its disgusting source material . 0 +33479 1570 story which fails to rise above its disgusting source material . 0 +33480 1570 story which fails to rise above its disgusting source material 0 +33481 1570 which fails to rise above its disgusting source material 1 +33482 1570 fails to rise above its disgusting source material 0 +33483 1570 to rise above its disgusting source material 2 +33484 1570 rise above its disgusting source material 3 +33485 1570 above its disgusting source material 3 +33486 1570 its disgusting source material 0 +33487 1570 disgusting source material 0 +33488 1570 disgusting 0 +33489 1570 source material 2 +33490 1571 To Blandly Go Where We Went 8 Movies Ago ... 1 +33491 1571 To Blandly Go Where We Went 8 Movies Ago 2 +33492 1571 Blandly Go Where We Went 8 Movies Ago 0 +33493 1571 Blandly 1 +33494 1571 Go Where We Went 8 Movies Ago 3 +33495 1571 Where We Went 8 Movies Ago 2 +33496 1571 We Went 8 Movies Ago 2 +33497 1571 Went 8 Movies Ago 1 +33498 1571 8 Movies Ago 2 +33499 1571 8 2 +33500 1571 Movies Ago 2 +33501 1572 ... Liotta is put in an impossible spot because his character 's deceptions ultimately undo him and the believability of the entire scenario . 1 +33502 1572 Liotta is put in an impossible spot because his character 's deceptions ultimately undo him and the believability of the entire scenario . 1 +33503 1572 is put in an impossible spot because his character 's deceptions ultimately undo him and the believability of the entire scenario . 1 +33504 1572 is put in an impossible spot because his character 's deceptions ultimately undo him and the believability of the entire scenario 1 +33505 1572 put in an impossible spot because his character 's deceptions ultimately undo him and the believability of the entire scenario 0 +33506 1572 in an impossible spot because his character 's deceptions ultimately undo him and the believability of the entire scenario 1 +33507 1572 an impossible spot because his character 's deceptions ultimately undo him and the believability of the entire scenario 2 +33508 1572 an impossible spot because his character 's deceptions ultimately undo him and 1 +33509 1572 an impossible spot because his character 's deceptions ultimately undo him 2 +33510 1572 an impossible spot 3 +33511 1572 impossible spot 1 +33512 1572 because his character 's deceptions ultimately undo him 1 +33513 1572 his character 's deceptions ultimately undo him 1 +33514 1572 his character 's deceptions 2 +33515 1572 his character 's 2 +33516 1572 deceptions 1 +33517 1572 ultimately undo him 1 +33518 1572 undo him 2 +33519 1572 undo 2 +33520 1572 the believability of the entire scenario 3 +33521 1572 the believability 2 +33522 1572 believability 3 +33523 1572 of the entire scenario 2 +33524 1572 the entire scenario 2 +33525 1572 entire scenario 2 +33526 1572 entire 2 +33527 1573 Vividly demonstrates that the director of such Hollywood blockbusters as Patriot Games can still turn out a small , personal film with an emotional wallop . 4 +33528 1573 demonstrates that the director of such Hollywood blockbusters as Patriot Games can still turn out a small , personal film with an emotional wallop . 4 +33529 1573 demonstrates that the director of such Hollywood blockbusters as Patriot Games can still turn out a small , personal film with an emotional wallop 3 +33530 1573 demonstrates 2 +33531 1573 that the director of such Hollywood blockbusters as Patriot Games can still turn out a small , personal film with an emotional wallop 3 +33532 1573 the director of such Hollywood blockbusters as Patriot Games can still turn out a small , personal film with an emotional wallop 3 +33533 1573 the director of such Hollywood 2 +33534 1573 of such Hollywood 2 +33535 1573 such Hollywood 2 +33536 1573 blockbusters as Patriot Games can still turn out a small , personal film with an emotional wallop 3 +33537 1573 blockbusters 3 +33538 1573 as Patriot Games can still turn out a small , personal film with an emotional wallop 3 +33539 1573 Patriot Games can still turn out a small , personal film with an emotional wallop 3 +33540 1573 Patriot Games 2 +33541 1573 Patriot 3 +33542 1573 can still turn out a small , personal film with an emotional wallop 3 +33543 1573 can still 2 +33544 1573 turn out a small , personal film with an emotional wallop 3 +33545 1573 turn out a small , personal film 2 +33546 1573 turn out 2 +33547 1573 a small , personal film 3 +33548 1573 small , personal film 3 +33549 1573 , personal film 3 +33550 1573 personal film 2 +33551 1573 with an emotional wallop 2 +33552 1573 an emotional wallop 3 +33553 1573 emotional wallop 2 +33554 1573 wallop 2 +33555 1574 An overly familiar scenario is made fresh by an intelligent screenplay and gripping performances in this low-budget , video-shot , debut indie effort . 3 +33556 1574 An overly familiar scenario 1 +33557 1574 overly familiar scenario 1 +33558 1574 overly familiar 1 +33559 1574 is made fresh by an intelligent screenplay and gripping performances in this low-budget , video-shot , debut indie effort . 4 +33560 1574 is made fresh by an intelligent screenplay and gripping performances in this low-budget , video-shot , debut indie effort 3 +33561 1574 made fresh by an intelligent screenplay and gripping performances in this low-budget , video-shot , debut indie effort 3 +33562 1574 made fresh by an intelligent screenplay and gripping performances 4 +33563 1574 fresh by an intelligent screenplay and gripping performances 4 +33564 1574 by an intelligent screenplay and gripping performances 4 +33565 1574 an intelligent screenplay and gripping performances 4 +33566 1574 an intelligent screenplay and 4 +33567 1574 an intelligent screenplay 4 +33568 1574 intelligent screenplay 3 +33569 1574 gripping performances 3 +33570 1574 in this low-budget , video-shot , debut indie effort 2 +33571 1574 this low-budget , video-shot , debut indie effort 2 +33572 1574 low-budget , video-shot , debut indie effort 2 +33573 1574 low-budget , video-shot 1 +33574 1574 , video-shot 2 +33575 1574 video-shot 2 +33576 1574 , debut indie effort 2 +33577 1574 debut indie effort 2 +33578 1574 indie effort 2 +33579 1575 It 's still terrible ! 0 +33580 1575 's still terrible ! 0 +33581 1575 's still terrible 2 +33582 1576 Represents something very close to the nadir of the thriller\/horror genre . 2 +33583 1576 Represents something very close to the nadir of the thriller\/horror 2 +33584 1576 Represents something 2 +33585 1576 Represents 2 +33586 1576 very close to the nadir of the thriller\/horror 2 +33587 1576 close to the nadir of the thriller\/horror 2 +33588 1576 to the nadir of the thriller\/horror 1 +33589 1576 the nadir of the thriller\/horror 1 +33590 1576 the nadir 2 +33591 1576 nadir 1 +33592 1576 of the thriller\/horror 2 +33593 1576 the thriller\/horror 2 +33594 1576 thriller\/horror 2 +33595 1576 genre . 2 +33596 1577 Beautifully shot against the frozen winter landscapes of Grenoble and Geneva , the film unfolds with all the mounting tension of an expert thriller , until the tragedy beneath it all gradually reveals itself . 4 +33597 1577 Beautifully shot against the frozen winter landscapes of Grenoble and Geneva 4 +33598 1577 shot against the frozen winter landscapes of Grenoble and Geneva 2 +33599 1577 against the frozen winter landscapes of Grenoble and Geneva 3 +33600 1577 the frozen winter landscapes of Grenoble and Geneva 2 +33601 1577 the frozen winter landscapes 2 +33602 1577 frozen winter landscapes 2 +33603 1577 frozen 2 +33604 1577 winter landscapes 3 +33605 1577 winter 2 +33606 1577 landscapes 2 +33607 1577 of Grenoble and Geneva 2 +33608 1577 Grenoble and Geneva 2 +33609 1577 Grenoble and 2 +33610 1577 Grenoble 2 +33611 1577 Geneva 2 +33612 1577 , the film unfolds with all the mounting tension of an expert thriller , until the tragedy beneath it all gradually reveals itself . 3 +33613 1577 the film unfolds with all the mounting tension of an expert thriller , until the tragedy beneath it all gradually reveals itself . 3 +33614 1577 unfolds with all the mounting tension of an expert thriller , until the tragedy beneath it all gradually reveals itself . 3 +33615 1577 unfolds with all the mounting tension of an expert thriller , until the tragedy beneath it all gradually reveals itself 2 +33616 1577 unfolds with all the mounting tension of an expert thriller , 4 +33617 1577 unfolds with all the mounting tension of an expert thriller 4 +33618 1577 with all the mounting tension of an expert thriller 3 +33619 1577 all the mounting tension of an expert thriller 3 +33620 1577 all the mounting tension 2 +33621 1577 the mounting tension 2 +33622 1577 mounting tension 2 +33623 1577 mounting 2 +33624 1577 of an expert thriller 3 +33625 1577 an expert thriller 4 +33626 1577 expert thriller 4 +33627 1577 expert 2 +33628 1577 until the tragedy beneath it all gradually reveals itself 2 +33629 1577 the tragedy beneath it all gradually reveals itself 2 +33630 1577 the tragedy beneath it 3 +33631 1577 the tragedy 2 +33632 1577 beneath it 1 +33633 1577 all gradually reveals itself 2 +33634 1577 all gradually 2 +33635 1577 gradually 2 +33636 1577 reveals itself 3 +33637 1578 A man leaving the screening said the film was better than Saving Private Ryan . 4 +33638 1578 A man leaving the screening 2 +33639 1578 leaving the screening 2 +33640 1578 the screening 2 +33641 1578 screening 2 +33642 1578 said the film was better than Saving Private Ryan . 4 +33643 1578 said the film was better than Saving Private Ryan 3 +33644 1578 the film was better than Saving Private Ryan 4 +33645 1578 was better than Saving Private Ryan 3 +33646 1578 was better 3 +33647 1578 than Saving Private Ryan 2 +33648 1578 Saving Private Ryan 2 +33649 1578 Saving 2 +33650 1578 Private Ryan 2 +33651 1579 Oddly compelling . 3 +33652 1579 Oddly compelling 3 +33653 1580 A soul-stirring documentary about the Israeli\/Palestinian conflict as revealed through the eyes of some children who remain curious about each other against all odds . 4 +33654 1580 A soul-stirring documentary about the Israeli\/Palestinian conflict as 3 +33655 1580 A soul-stirring documentary 4 +33656 1580 soul-stirring documentary 3 +33657 1580 soul-stirring 3 +33658 1580 about the Israeli\/Palestinian conflict as 2 +33659 1580 the Israeli\/Palestinian conflict as 1 +33660 1580 Israeli\/Palestinian conflict as 3 +33661 1580 Israeli\/Palestinian 2 +33662 1580 conflict as 2 +33663 1580 revealed through the eyes of some children who remain curious about each other against all odds . 2 +33664 1580 revealed through the eyes of some children who remain curious about each other against all odds 2 +33665 1580 through the eyes of some children who remain curious about each other against all odds 2 +33666 1580 the eyes of some children who remain curious about each other against all odds 3 +33667 1580 of some children who remain curious about each other against all odds 3 +33668 1580 some children who remain curious about each other against all odds 2 +33669 1580 some children 2 +33670 1580 who remain curious about each other against all odds 2 +33671 1580 remain curious about each other against all odds 3 +33672 1580 curious about each other against all odds 3 +33673 1580 about each other against all odds 3 +33674 1580 each other against all odds 3 +33675 1580 against all odds 3 +33676 1580 all odds 2 +33677 1581 Certainly the performances are worthwhile . 3 +33678 1581 the performances are worthwhile . 4 +33679 1581 are worthwhile . 3 +33680 1581 are worthwhile 3 +33681 1581 worthwhile 3 +33682 1582 Apparently designed as a reverie about memory and regret , but the only thing you 'll regret is remembering the experience of sitting through it . 1 +33683 1582 Apparently 2 +33684 1582 designed as a reverie about memory and regret , but the only thing you 'll regret is remembering the experience of sitting through it . 0 +33685 1582 designed as a reverie about memory and regret , but the only thing you 'll regret is remembering the experience of sitting through it 1 +33686 1582 designed as a reverie about memory and regret , but the only thing you 'll regret is remembering 0 +33687 1582 designed as a reverie about memory and regret , but the only thing you 'll regret 2 +33688 1582 designed as a reverie about memory and regret , but 2 +33689 1582 designed as a reverie about memory and regret , 3 +33690 1582 designed as a reverie about memory and regret 2 +33691 1582 as a reverie about memory and regret 3 +33692 1582 a reverie about memory and regret 2 +33693 1582 a reverie 2 +33694 1582 reverie 3 +33695 1582 about memory and regret 3 +33696 1582 memory and regret 2 +33697 1582 memory and 2 +33698 1582 regret 1 +33699 1582 the only thing you 'll regret 2 +33700 1582 the only thing 2 +33701 1582 only thing 2 +33702 1582 you 'll regret 1 +33703 1582 'll regret 2 +33704 1582 is remembering 3 +33705 1582 remembering 2 +33706 1582 the experience of sitting through it 2 +33707 1582 of sitting through it 2 +33708 1583 It trusts the story it sets out to tell . 4 +33709 1583 trusts the story it sets out to tell . 3 +33710 1583 trusts the story it sets out to tell 3 +33711 1583 trusts 2 +33712 1583 the story it sets out to tell 2 +33713 1583 it sets out to tell 2 +33714 1583 sets out to tell 2 +33715 1583 sets out 3 +33716 1583 to tell 2 +33717 1584 Bad company . 1 +33718 1584 company . 2 +33719 1585 An engrossing and infectiously enthusiastic documentary . 4 +33720 1585 An engrossing and infectiously enthusiastic documentary 4 +33721 1585 engrossing and infectiously enthusiastic documentary 4 +33722 1585 engrossing and infectiously enthusiastic 4 +33723 1585 infectiously enthusiastic 4 +33724 1585 infectiously 3 +33725 1586 A memorable experience that , like many of his works , presents weighty issues colorfully wrapped up in his own idiosyncratic strain of kitschy goodwill . 3 +33726 1586 A memorable experience that , like many of his works , presents weighty issues 3 +33727 1586 A memorable experience 3 +33728 1586 memorable experience 3 +33729 1586 that , like many of his works , presents weighty issues 2 +33730 1586 , like many of his works , presents weighty issues 2 +33731 1586 like many of his works , presents weighty issues 2 +33732 1586 like many of his works 3 +33733 1586 many of his works 2 +33734 1586 of his works 2 +33735 1586 his works 2 +33736 1586 , presents weighty issues 2 +33737 1586 presents weighty issues 2 +33738 1586 presents 2 +33739 1586 weighty issues 2 +33740 1586 colorfully wrapped up in his own idiosyncratic strain of kitschy goodwill . 3 +33741 1586 colorfully 3 +33742 1586 wrapped up in his own idiosyncratic strain of kitschy goodwill . 2 +33743 1586 wrapped up in his own idiosyncratic strain of kitschy goodwill 2 +33744 1586 wrapped up 2 +33745 1586 wrapped 2 +33746 1586 in his own idiosyncratic strain of kitschy goodwill 2 +33747 1586 his own idiosyncratic strain of kitschy goodwill 2 +33748 1586 his own idiosyncratic strain 1 +33749 1586 own idiosyncratic strain 2 +33750 1586 idiosyncratic strain 2 +33751 1586 of kitschy goodwill 2 +33752 1586 kitschy goodwill 3 +33753 1586 goodwill 3 +33754 1587 Its gentle , touching story creeps into your heart . 4 +33755 1587 Its gentle , touching story 3 +33756 1587 gentle , touching story 3 +33757 1587 gentle , touching 3 +33758 1587 , touching 3 +33759 1587 creeps into your heart . 3 +33760 1587 creeps into your heart 3 +33761 1587 creeps 1 +33762 1587 into your heart 3 +33763 1588 ... has about 3\/4th the fun of its spry 2001 predecessor -- but it 's a rushed , slapdash , sequel-for-the-sake - of-a-sequel with less than half the plot and ingenuity . 0 +33764 1588 has about 3\/4th the fun of its spry 2001 predecessor -- but it 's a rushed , slapdash , sequel-for-the-sake - of-a-sequel with less than half the plot and ingenuity . 0 +33765 1588 has about 3\/4th the fun of its spry 2001 predecessor -- but it 's a rushed , slapdash , sequel-for-the-sake - of-a-sequel with less than half the plot and ingenuity 0 +33766 1588 about 3\/4th the fun of its spry 2001 predecessor -- but it 's a rushed , slapdash , sequel-for-the-sake - of-a-sequel with less than half the plot and ingenuity 1 +33767 1588 about 3\/4th the fun 2 +33768 1588 about 3\/4th 2 +33769 1588 3\/4th 2 +33770 1588 of its spry 2001 predecessor -- but it 's a rushed , slapdash , sequel-for-the-sake - of-a-sequel with less than half the plot and ingenuity 0 +33771 1588 its spry 2001 predecessor -- but it 's a rushed , slapdash , sequel-for-the-sake - of-a-sequel with less than half the plot and ingenuity 0 +33772 1588 its spry 2001 predecessor 2 +33773 1588 spry 2001 predecessor 2 +33774 1588 spry 2001 2 +33775 1588 spry 2 +33776 1588 2001 2 +33777 1588 -- but it 's a rushed , slapdash , sequel-for-the-sake - of-a-sequel with less than half the plot and ingenuity 0 +33778 1588 but it 's a rushed , slapdash , sequel-for-the-sake - of-a-sequel with less than half the plot and ingenuity 0 +33779 1588 but it 's a rushed , slapdash , sequel-for-the-sake - of-a-sequel with less than half 0 +33780 1588 it 's a rushed , slapdash , sequel-for-the-sake - of-a-sequel with less than half 1 +33781 1588 it 's 2 +33782 1588 a rushed , slapdash , sequel-for-the-sake - of-a-sequel with less than half 0 +33783 1588 a rushed , slapdash , sequel-for-the-sake - of-a-sequel 0 +33784 1588 rushed , slapdash , sequel-for-the-sake - of-a-sequel 1 +33785 1588 rushed , slapdash , sequel-for-the-sake - 1 +33786 1588 rushed , slapdash , sequel-for-the-sake 0 +33787 1588 rushed , slapdash , 1 +33788 1588 rushed , slapdash 1 +33789 1588 rushed , 1 +33790 1588 rushed 1 +33791 1588 sequel-for-the-sake 1 +33792 1588 of-a-sequel 2 +33793 1588 with less than half 2 +33794 1588 less than half 2 +33795 1588 than half 2 +33796 1588 the plot and ingenuity 2 +33797 1588 the plot and 2 +33798 1588 ingenuity 3 +33799 1589 Alain Choquart 's camera barely stops moving , portraying both the turmoil of the time and giving Conduct a perpetual sense of urgency , which , for a film that takes nearly three hours to unspool , is both funny and irritating . 2 +33800 1589 Alain Choquart 's camera 2 +33801 1589 Alain Choquart 's 2 +33802 1589 Alain 2 +33803 1589 Choquart 's 2 +33804 1589 Choquart 2 +33805 1589 barely stops moving , portraying both the turmoil of the time and giving Conduct a perpetual sense of urgency , which , for a film that takes nearly three hours to unspool , is both funny and irritating . 3 +33806 1589 stops moving , portraying both the turmoil of the time and giving Conduct a perpetual sense of urgency , which , for a film that takes nearly three hours to unspool , is both funny and irritating . 3 +33807 1589 stops moving , portraying both the turmoil of the time and giving Conduct a perpetual sense of urgency , which , for a film that takes nearly three hours to unspool , is both funny and irritating 2 +33808 1589 moving , portraying both the turmoil of the time and giving Conduct a perpetual sense of urgency , which , for a film that takes nearly three hours to unspool , is both funny and irritating 2 +33809 1589 moving , portraying both the turmoil of the time and 3 +33810 1589 moving , portraying both the turmoil of the time 3 +33811 1589 moving , 2 +33812 1589 portraying both the turmoil of the time 2 +33813 1589 portraying 2 +33814 1589 both the turmoil of the time 2 +33815 1589 both the turmoil 2 +33816 1589 the turmoil 1 +33817 1589 turmoil 1 +33818 1589 of the time 2 +33819 1589 giving Conduct a perpetual sense of urgency , which , for a film that takes nearly three hours to unspool , is both funny and irritating 2 +33820 1589 giving Conduct 2 +33821 1589 Conduct 2 +33822 1589 a perpetual sense of urgency , which , for a film that takes nearly three hours to unspool , is both funny and irritating 3 +33823 1589 a perpetual sense 2 +33824 1589 perpetual sense 3 +33825 1589 perpetual 2 +33826 1589 of urgency , which , for a film that takes nearly three hours to unspool , is both funny and irritating 2 +33827 1589 urgency , which , for a film that takes nearly three hours to unspool , is both funny and irritating 2 +33828 1589 urgency , 2 +33829 1589 urgency 2 +33830 1589 which , for a film that takes nearly three hours to unspool , is both funny and irritating 2 +33831 1589 , for a film that takes nearly three hours to unspool , is both funny and irritating 2 +33832 1589 for a film that takes nearly three hours to unspool , is both funny and irritating 2 +33833 1589 for a film that takes nearly three hours to unspool 1 +33834 1589 a film that takes nearly three hours to unspool 1 +33835 1589 that takes nearly three hours to unspool 1 +33836 1589 takes nearly three hours to unspool 1 +33837 1589 takes nearly three hours 2 +33838 1589 nearly three hours 2 +33839 1589 nearly three 2 +33840 1589 to unspool 2 +33841 1589 unspool 2 +33842 1589 , is both funny and irritating 3 +33843 1589 is both funny and irritating 2 +33844 1589 both funny and irritating 3 +33845 1589 funny and irritating 2 +33846 1590 The kind of sense of humor that derives from a workman 's grasp of pun and entendre and its attendant need to constantly draw attention to itself . 2 +33847 1590 The kind of sense of humor that derives from a workman 's grasp of pun and entendre and its attendant 3 +33848 1590 of sense of humor that derives from a workman 's grasp of pun and entendre and its attendant 3 +33849 1590 sense of humor that derives from a workman 's grasp of pun and entendre and its attendant 2 +33850 1590 sense of humor 3 +33851 1590 that derives from a workman 's grasp of pun and entendre and its attendant 3 +33852 1590 derives from a workman 's grasp of pun and entendre and its attendant 2 +33853 1590 derives 2 +33854 1590 from a workman 's grasp of pun and entendre and its attendant 2 +33855 1590 a workman 's grasp of pun and entendre and its attendant 2 +33856 1590 a workman 's grasp 2 +33857 1590 a workman 's 2 +33858 1590 workman 's 1 +33859 1590 workman 2 +33860 1590 grasp 2 +33861 1590 of pun and entendre and its attendant 3 +33862 1590 pun and entendre and its attendant 2 +33863 1590 pun and entendre and 2 +33864 1590 pun and entendre 2 +33865 1590 pun and 2 +33866 1590 pun 2 +33867 1590 entendre 2 +33868 1590 its attendant 2 +33869 1590 attendant 2 +33870 1590 need to constantly draw attention to itself . 3 +33871 1590 need to constantly draw attention to itself 2 +33872 1590 to constantly draw attention to itself 2 +33873 1590 constantly draw attention to itself 2 +33874 1590 constantly 2 +33875 1590 draw attention to itself 3 +33876 1590 draw attention 3 +33877 1590 attention 2 +33878 1590 to itself 2 +33879 1591 A cellophane-pop remake of the punk classic Ladies and Gentlemen , The Fabulous Stains ... Crossroads is never much worse than bland or better than inconsequential . 0 +33880 1591 A cellophane-pop remake of the punk classic Ladies and Gentlemen , The Fabulous Stains ... Crossroads is never much worse than bland or better than inconsequential 0 +33881 1591 A cellophane-pop remake of the punk classic Ladies and Gentlemen , The Fabulous Stains ... 1 +33882 1591 A cellophane-pop remake of the punk classic Ladies and Gentlemen , The Fabulous Stains 1 +33883 1591 A cellophane-pop remake of the punk 1 +33884 1591 A cellophane-pop remake 1 +33885 1591 cellophane-pop remake 1 +33886 1591 cellophane-pop 2 +33887 1591 of the punk 2 +33888 1591 the punk 2 +33889 1591 punk 2 +33890 1591 classic Ladies and Gentlemen , The Fabulous Stains 3 +33891 1591 Ladies and Gentlemen , The Fabulous Stains 2 +33892 1591 Ladies and Gentlemen , 2 +33893 1591 Ladies and Gentlemen 2 +33894 1591 Ladies and 2 +33895 1591 Gentlemen 3 +33896 1591 The Fabulous Stains 2 +33897 1591 Fabulous Stains 2 +33898 1591 Fabulous 4 +33899 1591 Stains 1 +33900 1591 Crossroads is never much worse than bland or better than inconsequential 2 +33901 1591 Crossroads 2 +33902 1591 is never much worse than bland or better than inconsequential 1 +33903 1591 much worse than bland or better than inconsequential 1 +33904 1591 much worse than bland or 1 +33905 1591 much worse than bland 0 +33906 1591 worse than bland 0 +33907 1591 than bland 1 +33908 1591 better than inconsequential 3 +33909 1591 better than 3 +33910 1591 inconsequential 1 +33911 1592 The Fast Runner ' transports the viewer into an unusual space 2 +33912 1592 The Fast Runner ' 2 +33913 1592 Fast Runner ' 2 +33914 1592 Runner ' 2 +33915 1592 Runner 2 +33916 1592 transports the viewer into an unusual space 3 +33917 1592 transports the viewer 3 +33918 1592 transports 2 +33919 1592 into an unusual space 2 +33920 1592 an unusual space 2 +33921 1592 unusual space 2 +33922 1593 Every joke is repeated at least four times . 1 +33923 1593 Every joke 2 +33924 1593 is repeated at least four times . 1 +33925 1593 is repeated at least four times 2 +33926 1593 repeated at least four times 1 +33927 1593 repeated 1 +33928 1593 at least four times 2 +33929 1593 four times 2 +33930 1594 What you end up getting is the Vertical Limit of surfing movies - memorable stunts with lots of downtime in between . 2 +33931 1594 What you end up getting 2 +33932 1594 you end up getting 2 +33933 1594 end up getting 2 +33934 1594 is the Vertical Limit of surfing movies - memorable stunts with lots of downtime in between . 3 +33935 1594 is the Vertical Limit of surfing movies - memorable stunts with lots of downtime in between 2 +33936 1594 the Vertical Limit of surfing movies - memorable stunts with lots of downtime in between 3 +33937 1594 the Vertical Limit of surfing movies - 3 +33938 1594 the Vertical Limit of surfing movies 3 +33939 1594 the Vertical Limit 2 +33940 1594 Vertical Limit 2 +33941 1594 Vertical 2 +33942 1594 Limit 2 +33943 1594 of surfing movies 2 +33944 1594 surfing movies 2 +33945 1594 surfing 2 +33946 1594 memorable stunts with lots of downtime in between 2 +33947 1594 memorable stunts 3 +33948 1594 with lots of downtime in between 1 +33949 1594 lots of downtime in between 2 +33950 1594 of downtime in between 2 +33951 1594 downtime in between 2 +33952 1594 downtime 2 +33953 1594 in between 2 +33954 1595 Should be required viewing for civics classes and would-be public servants alike . 3 +33955 1595 Should be required viewing for civics classes and would-be public servants alike 3 +33956 1595 be required viewing for civics classes and would-be public servants alike 3 +33957 1595 required viewing for civics classes and would-be public servants alike 3 +33958 1595 viewing for civics classes and would-be public servants alike 3 +33959 1595 viewing for civics classes and would-be public servants 2 +33960 1595 for civics classes and would-be public servants 2 +33961 1595 civics classes and would-be public servants 2 +33962 1595 civics classes and 2 +33963 1595 civics classes 2 +33964 1595 civics 2 +33965 1595 classes 2 +33966 1595 would-be public servants 2 +33967 1595 would-be 2 +33968 1595 public servants 2 +33969 1595 servants 2 +33970 1596 Noyce has worked wonders with the material . 4 +33971 1596 has worked wonders with the material . 3 +33972 1596 has worked wonders with the material 3 +33973 1596 worked wonders with the material 4 +33974 1596 worked wonders 4 +33975 1596 with the material 2 +33976 1597 Wes Craven 's presence is felt ; not the Craven of ' A Nightmare on Elm Street ' or ` The Hills Have Eyes , ' but the sad schlock merchant of ` Deadly Friend . ' 1 +33977 1597 Wes Craven 's presence 2 +33978 1597 Wes Craven 's 2 +33979 1597 Wes 2 +33980 1597 Craven 's 2 +33981 1597 Craven 2 +33982 1597 is felt ; not the Craven of ' A Nightmare on Elm Street ' or ` The Hills Have Eyes , ' but the sad schlock merchant of ` Deadly Friend . ' 1 +33983 1597 is felt ; not the Craven of ' A Nightmare on Elm Street ' or ` The Hills Have Eyes , ' but the sad schlock merchant of ` Deadly Friend . 1 +33984 1597 is felt ; not the Craven of ' A Nightmare on Elm Street ' or ` The Hills Have Eyes , ' but the sad schlock merchant of ` Deadly Friend 1 +33985 1597 felt ; not the Craven of ' A Nightmare on Elm Street ' or ` The Hills Have Eyes , ' but the sad schlock merchant of ` Deadly Friend 1 +33986 1597 ; not the Craven of ' A Nightmare on Elm Street ' or ` The Hills Have Eyes , ' but the sad schlock merchant of ` Deadly Friend 1 +33987 1597 ; not the Craven of ' A Nightmare on Elm Street ' or ` The Hills Have Eyes , ' but 2 +33988 1597 ; not the Craven of ' A Nightmare on Elm Street ' or ` The Hills Have Eyes , ' 1 +33989 1597 ; not the Craven of ' A Nightmare on Elm Street ' or ` The Hills Have Eyes , 2 +33990 1597 ; not the Craven of ' A Nightmare on Elm Street ' or ` The Hills Have Eyes 2 +33991 1597 not the Craven of ' A Nightmare on Elm Street ' or ` The Hills Have Eyes 2 +33992 1597 not the Craven of ' A Nightmare on Elm Street ' or ` 2 +33993 1597 not the Craven of ' A Nightmare on Elm Street ' or 2 +33994 1597 not the Craven of ' A Nightmare on Elm Street ' 2 +33995 1597 not the Craven of ' A Nightmare on Elm Street 2 +33996 1597 not the Craven of ' A Nightmare 1 +33997 1597 not the Craven 2 +33998 1597 the Craven 2 +33999 1597 of ' A Nightmare 1 +34000 1597 of ' 2 +34001 1597 A Nightmare 0 +34002 1597 on Elm Street 2 +34003 1597 Elm Street 2 +34004 1597 Elm 2 +34005 1597 Street 2 +34006 1597 The Hills Have Eyes 2 +34007 1597 The Hills Have 2 +34008 1597 Hills Have 2 +34009 1597 Hills 2 +34010 1597 the sad schlock merchant of ` Deadly Friend 1 +34011 1597 the sad schlock merchant 0 +34012 1597 sad schlock merchant 1 +34013 1597 schlock merchant 2 +34014 1597 schlock 2 +34015 1597 of ` Deadly Friend 2 +34016 1597 Deadly Friend 2 +34017 1598 , is a temporal inquiry that shoulders its philosophical burden lightly . 3 +34018 1598 is a temporal inquiry that shoulders its philosophical burden lightly . 1 +34019 1598 a temporal inquiry that shoulders its philosophical burden lightly . 2 +34020 1598 a temporal inquiry 3 +34021 1598 temporal inquiry 2 +34022 1598 temporal 2 +34023 1598 inquiry 2 +34024 1598 that shoulders its philosophical burden lightly . 2 +34025 1598 shoulders its philosophical burden lightly . 2 +34026 1598 shoulders its philosophical burden 2 +34027 1598 its philosophical burden 2 +34028 1598 philosophical burden 2 +34029 1598 burden 2 +34030 1598 lightly . 2 +34031 1598 lightly 2 +34032 1599 You may feel compelled to watch the film twice or pick up a book on the subject . 3 +34033 1599 may feel compelled to watch the film twice or pick up a book on the subject . 2 +34034 1599 may feel compelled to watch the film twice or pick up a book on the subject 2 +34035 1599 feel compelled to watch the film twice or pick up a book on the subject 3 +34036 1599 compelled to watch the film twice or pick up a book on the subject 3 +34037 1599 compelled 2 +34038 1599 to watch the film twice or pick up a book on the subject 2 +34039 1599 watch the film twice or pick up a book on the subject 2 +34040 1599 watch the film twice or 2 +34041 1599 watch the film twice 3 +34042 1599 watch the film 3 +34043 1599 twice 2 +34044 1599 pick up a book on the subject 2 +34045 1599 a book on the subject 2 +34046 1599 a book 2 +34047 1599 on the subject 2 +34048 1599 the subject 2 +34049 1600 Loosely speaking , we 're in All of Me territory again , and , strictly speaking , Schneider is no Steve Martin . 0 +34050 1600 Loosely speaking , we 're in All of Me territory again , and , strictly speaking , Schneider is no Steve Martin 1 +34051 1600 Loosely speaking , we 're in All of Me territory again , and , 2 +34052 1600 Loosely speaking , we 're in All of Me territory again , and 1 +34053 1600 Loosely speaking , we 're in All of Me territory again , 1 +34054 1600 Loosely speaking , we 're in All of Me territory again 2 +34055 1600 Loosely speaking 2 +34056 1600 Loosely 2 +34057 1600 , we 're in All of Me territory again 2 +34058 1600 we 're in All of Me territory again 2 +34059 1600 're in All of Me territory again 2 +34060 1600 're in All of Me territory 2 +34061 1600 in All of Me territory 2 +34062 1600 All of Me territory 2 +34063 1600 of Me territory 2 +34064 1600 Me territory 2 +34065 1600 strictly speaking , Schneider is no Steve Martin 1 +34066 1600 , Schneider is no Steve Martin 2 +34067 1600 Schneider is no Steve Martin 1 +34068 1600 is no Steve Martin 2 +34069 1600 no Steve Martin 1 +34070 1600 Steve Martin 3 +34071 1601 On a certain base level , Blue Crush delivers what it promises , just not well enough to recommend it . 2 +34072 1601 On a certain base level 3 +34073 1601 a certain base level 2 +34074 1601 certain base level 2 +34075 1601 base level 2 +34076 1601 , Blue Crush delivers what it promises , just not well enough to recommend it . 2 +34077 1601 Blue Crush delivers what it promises , just not well enough to recommend it . 1 +34078 1601 delivers what it promises , just not well enough to recommend it . 2 +34079 1601 delivers what it promises , just not well enough to recommend it 2 +34080 1601 what it promises , just not well enough to recommend it 1 +34081 1601 it promises , just not well enough to recommend it 1 +34082 1601 promises , just not well enough to recommend it 1 +34083 1601 promises , just not well enough 1 +34084 1601 promises , 2 +34085 1601 promises 2 +34086 1601 just not well enough 1 +34087 1601 not well enough 1 +34088 1601 well enough 3 +34089 1601 to recommend it 3 +34090 1602 Gussied up with so many distracting special effects and visual party tricks that it 's not clear whether we 're supposed to shriek or laugh . 1 +34091 1602 Gussied up with so many distracting special effects and visual party tricks that it 's not clear whether we 're supposed to shriek or laugh 2 +34092 1602 Gussied up with so many distracting special effects and visual party tricks that it 's not clear whether we 're supposed to shriek or 1 +34093 1602 Gussied up with so many distracting special effects and visual party tricks that it 's not clear whether we 're supposed to shriek 1 +34094 1602 Gussied up with so many distracting special effects and visual party tricks 2 +34095 1602 Gussied up 3 +34096 1602 Gussied 2 +34097 1602 with so many distracting special effects and visual party tricks 1 +34098 1602 so many distracting special effects and visual party tricks 0 +34099 1602 distracting special effects and visual party tricks 1 +34100 1602 distracting 1 +34101 1602 special effects and visual party tricks 2 +34102 1602 effects and visual party tricks 2 +34103 1602 and visual party tricks 2 +34104 1602 visual party tricks 2 +34105 1602 party tricks 2 +34106 1602 tricks 2 +34107 1602 that it 's not clear whether we 're supposed to shriek 1 +34108 1602 it 's not clear whether we 're supposed to shriek 1 +34109 1602 's not clear whether we 're supposed to shriek 1 +34110 1602 's not clear 1 +34111 1602 whether we 're supposed to shriek 1 +34112 1602 we 're supposed to shriek 2 +34113 1602 're supposed to shriek 3 +34114 1602 supposed to shriek 2 +34115 1602 to shriek 2 +34116 1602 shriek 2 +34117 1603 The screenplay , co-written by director Imogen Kimmel , lacks the wit necessary to fully exploit the comic elements of the premise , making the proceedings more bizarre than actually amusing . 1 +34118 1603 The screenplay , co-written by director Imogen Kimmel , 2 +34119 1603 The screenplay , co-written by director Imogen Kimmel 2 +34120 1603 The screenplay , 2 +34121 1603 co-written by director Imogen Kimmel 2 +34122 1603 by director Imogen Kimmel 2 +34123 1603 director Imogen Kimmel 2 +34124 1603 Imogen Kimmel 2 +34125 1603 Imogen 2 +34126 1603 Kimmel 2 +34127 1603 lacks the wit necessary to fully exploit the comic elements of the premise , making the proceedings more bizarre than actually amusing . 1 +34128 1603 lacks the wit necessary to fully exploit the comic elements of the premise , making the proceedings more bizarre than actually amusing 1 +34129 1603 the wit necessary to fully exploit the comic elements of the premise , making the proceedings more bizarre than actually amusing 2 +34130 1603 the wit 3 +34131 1603 necessary to fully exploit the comic elements of the premise , making the proceedings more bizarre than actually amusing 2 +34132 1603 to fully exploit the comic elements of the premise , making the proceedings more bizarre than actually amusing 2 +34133 1603 fully exploit the comic elements of the premise , making the proceedings more bizarre than actually amusing 1 +34134 1603 exploit the comic elements of the premise , making the proceedings more bizarre than actually amusing 1 +34135 1603 exploit 2 +34136 1603 the comic elements of the premise , making the proceedings more bizarre than actually amusing 1 +34137 1603 the comic elements of the premise , 3 +34138 1603 the comic elements of the premise 3 +34139 1603 the comic elements 2 +34140 1603 comic elements 3 +34141 1603 of the premise 2 +34142 1603 making the proceedings more bizarre than actually amusing 1 +34143 1603 the proceedings more bizarre than actually amusing 1 +34144 1603 more bizarre than actually amusing 1 +34145 1603 more bizarre than 1 +34146 1603 more bizarre 1 +34147 1603 actually amusing 3 +34148 1604 That 's because relatively nothing happens . 1 +34149 1604 's because relatively nothing happens . 0 +34150 1604 's because relatively nothing happens 1 +34151 1604 because relatively nothing happens 1 +34152 1604 relatively nothing happens 0 +34153 1604 relatively nothing 1 +34154 1605 ` Snow Dogs ' has both . 2 +34155 1605 Snow Dogs ' has both . 2 +34156 1605 ' has both . 2 +34157 1605 has both . 2 +34158 1605 has both 2 +34159 1606 A decent-enough nail-biter that stands a good chance of being the big hit Franklin needs to stay afloat in Hollywood . 3 +34160 1606 A decent-enough nail-biter that stands a good chance of being the big 3 +34161 1606 A decent-enough nail-biter 3 +34162 1606 decent-enough nail-biter 3 +34163 1606 decent-enough 2 +34164 1606 nail-biter 2 +34165 1606 that stands a good chance of being the big 3 +34166 1606 stands a good chance of being the big 3 +34167 1606 stands 2 +34168 1606 a good chance of being the big 4 +34169 1606 a good chance 3 +34170 1606 good chance 3 +34171 1606 of being the big 1 +34172 1606 being the big 2 +34173 1606 the big 2 +34174 1606 hit Franklin needs to stay afloat in Hollywood . 2 +34175 1606 hit Franklin needs to stay afloat in Hollywood 2 +34176 1606 Franklin needs to stay afloat in Hollywood 2 +34177 1606 Franklin 2 +34178 1606 needs to stay afloat in Hollywood 1 +34179 1606 to stay afloat in Hollywood 2 +34180 1606 stay afloat in Hollywood 2 +34181 1606 stay afloat 3 +34182 1606 afloat 2 +34183 1606 in Hollywood 2 +34184 1607 The movie is concocted and carried out by folks worthy of scorn , and the nicest thing I can say is that I ca n't remember a single name responsible for it . 0 +34185 1607 The movie is concocted and carried out by folks worthy of scorn , and the nicest thing I can say is that I ca n't remember a single name responsible for it 0 +34186 1607 The movie is concocted and carried out by folks worthy of scorn , and 1 +34187 1607 The movie is concocted and carried out by folks worthy of scorn , 1 +34188 1607 The movie is concocted and carried out by folks worthy of scorn 1 +34189 1607 is concocted and carried out by folks worthy of scorn 0 +34190 1607 is concocted and 2 +34191 1607 is concocted 2 +34192 1607 concocted 1 +34193 1607 carried out by folks worthy of scorn 2 +34194 1607 carried out 3 +34195 1607 carried 2 +34196 1607 by folks worthy of scorn 1 +34197 1607 folks worthy of scorn 2 +34198 1607 folks worthy 2 +34199 1607 folks 2 +34200 1607 of scorn 1 +34201 1607 scorn 2 +34202 1607 the nicest thing I can say is that I ca n't remember a single name responsible for it 1 +34203 1607 the nicest thing I can say 2 +34204 1607 the nicest thing 2 +34205 1607 nicest thing 2 +34206 1607 I can say 2 +34207 1607 can say 1 +34208 1607 is that I ca n't remember a single name responsible for it 1 +34209 1607 that I ca n't remember a single name responsible for it 1 +34210 1607 I ca n't remember a single name responsible for it 2 +34211 1607 ca n't remember a single name responsible for it 1 +34212 1607 remember a single name responsible for it 2 +34213 1607 a single name responsible for it 2 +34214 1607 a single name 2 +34215 1607 single name 2 +34216 1607 name 2 +34217 1607 responsible for it 2 +34218 1608 The impulses that produced this project ... are commendable , but the results are uneven . 2 +34219 1608 The impulses that produced this project ... are commendable , but the results are uneven 1 +34220 1608 The impulses that produced this project ... are commendable , but 3 +34221 1608 The impulses that produced this project ... are commendable , 2 +34222 1608 The impulses that produced this project ... are commendable 3 +34223 1608 The impulses that produced this project ... 2 +34224 1608 The impulses 2 +34225 1608 impulses 2 +34226 1608 that produced this project ... 2 +34227 1608 produced this project ... 2 +34228 1608 produced this project 2 +34229 1608 are commendable 2 +34230 1608 commendable 3 +34231 1608 the results are uneven 2 +34232 1608 the results 2 +34233 1608 are uneven 2 +34234 1609 Watching Harris ham it up while physically and emotionally disintegrating over the course of the movie has a certain poignancy in light of his recent death , but Boyd 's film offers little else of consequence . 2 +34235 1609 Watching Harris ham it up while physically and emotionally disintegrating over the course of the movie has a certain poignancy in light of his recent death , but Boyd 's film offers little else of consequence 1 +34236 1609 Watching Harris ham it up while physically and emotionally disintegrating over the course of the movie has a certain poignancy in light of his recent death , but 2 +34237 1609 Watching Harris ham it up while physically and emotionally disintegrating over the course of the movie has a certain poignancy in light of his recent death , 2 +34238 1609 Watching Harris ham it up while physically and emotionally disintegrating over the course of the movie has a certain poignancy in light of his recent death 3 +34239 1609 Watching Harris 2 +34240 1609 Harris 2 +34241 1609 ham it up while physically and emotionally disintegrating over the course of the movie has a certain poignancy in light of his recent death 2 +34242 1609 ham it up 3 +34243 1609 ham it 2 +34244 1609 while physically and emotionally disintegrating over the course of the movie has a certain poignancy in light of his recent death 1 +34245 1609 physically and emotionally disintegrating over the course of the movie has a certain poignancy in light of his recent death 3 +34246 1609 physically and emotionally disintegrating over the course of the movie 1 +34247 1609 physically and emotionally 2 +34248 1609 physically and 2 +34249 1609 physically 2 +34250 1609 disintegrating over the course of the movie 1 +34251 1609 disintegrating over 2 +34252 1609 disintegrating 2 +34253 1609 the course of the movie 2 +34254 1609 the course 2 +34255 1609 has a certain poignancy in light of his recent death 2 +34256 1609 a certain poignancy in light of his recent death 2 +34257 1609 a certain poignancy 3 +34258 1609 certain poignancy 2 +34259 1609 in light of his recent death 2 +34260 1609 light of his recent death 2 +34261 1609 of his recent death 1 +34262 1609 his recent death 2 +34263 1609 recent death 2 +34264 1609 Boyd 's film offers little else of consequence 2 +34265 1609 Boyd 's film 2 +34266 1609 Boyd 's 2 +34267 1609 Boyd 2 +34268 1609 offers little else of consequence 1 +34269 1609 little else of consequence 1 +34270 1609 little else 1 +34271 1609 of consequence 2 +34272 1609 consequence 2 +34273 1610 As quiet , patient and tenacious as Mr. Lopez himself , who approaches his difficult , endless work with remarkable serenity and discipline . 4 +34274 1610 As quiet , patient and tenacious as Mr. Lopez himself 3 +34275 1610 quiet , patient and tenacious as Mr. Lopez himself 3 +34276 1610 quiet , patient and tenacious 2 +34277 1610 , patient and tenacious 2 +34278 1610 patient and tenacious 3 +34279 1610 patient and 2 +34280 1610 patient 2 +34281 1610 as Mr. Lopez himself 2 +34282 1610 Mr. Lopez himself 2 +34283 1610 Lopez himself 2 +34284 1610 , who approaches his difficult , endless work with remarkable serenity and discipline . 4 +34285 1610 who approaches his difficult , endless work with remarkable serenity and discipline . 3 +34286 1610 approaches his difficult , endless work with remarkable serenity and discipline . 3 +34287 1610 approaches his difficult , endless work with remarkable serenity and discipline 3 +34288 1610 his difficult , endless work with remarkable serenity and discipline 3 +34289 1610 his difficult , endless work 1 +34290 1610 difficult , endless work 1 +34291 1610 difficult , endless 0 +34292 1610 , endless 2 +34293 1610 with remarkable serenity and discipline 3 +34294 1610 remarkable serenity and discipline 4 +34295 1610 serenity and discipline 3 +34296 1610 serenity and 2 +34297 1610 serenity 3 +34298 1610 discipline 2 +34299 1611 Hugely entertaining from start to finish , featuring a fall from grace that still leaves shockwaves , it will gratify anyone who has ever suspected Hollywood of being overrun by corrupt and hedonistic weasels . 4 +34300 1611 Hugely entertaining from start to finish , featuring a fall from grace that still leaves shockwaves 4 +34301 1611 entertaining from start to finish , featuring a fall from grace that still leaves shockwaves 4 +34302 1611 from start to finish , featuring a fall from grace that still leaves shockwaves 3 +34303 1611 start to finish , featuring a fall from grace that still leaves shockwaves 3 +34304 1611 to finish , featuring a fall from grace that still leaves shockwaves 3 +34305 1611 finish , featuring a fall from grace that still leaves shockwaves 2 +34306 1611 finish , 2 +34307 1611 featuring a fall from grace that still leaves shockwaves 2 +34308 1611 featuring a fall 2 +34309 1611 featuring 2 +34310 1611 a fall 1 +34311 1611 from grace that still leaves shockwaves 3 +34312 1611 grace that still leaves shockwaves 3 +34313 1611 that still leaves shockwaves 2 +34314 1611 still leaves shockwaves 3 +34315 1611 leaves shockwaves 3 +34316 1611 shockwaves 2 +34317 1611 , it will gratify anyone who has ever suspected Hollywood of being overrun by corrupt and hedonistic weasels . 2 +34318 1611 it will gratify anyone who has ever suspected Hollywood of being overrun by corrupt and hedonistic weasels . 3 +34319 1611 will gratify anyone who has ever suspected Hollywood of being overrun by corrupt and hedonistic weasels . 3 +34320 1611 will gratify anyone who has ever suspected Hollywood of being overrun by corrupt and hedonistic weasels 2 +34321 1611 gratify anyone who has ever suspected Hollywood of being overrun by corrupt and hedonistic weasels 3 +34322 1611 gratify 2 +34323 1611 anyone who has ever suspected Hollywood of being overrun by corrupt and hedonistic weasels 1 +34324 1611 who has ever suspected Hollywood of being overrun by corrupt and hedonistic weasels 2 +34325 1611 has ever suspected Hollywood of being overrun by corrupt and hedonistic weasels 1 +34326 1611 suspected Hollywood of being overrun by corrupt and hedonistic weasels 2 +34327 1611 suspected 2 +34328 1611 Hollywood of being overrun by corrupt and hedonistic weasels 2 +34329 1611 of being overrun by corrupt and hedonistic weasels 0 +34330 1611 being overrun by corrupt and hedonistic weasels 2 +34331 1611 overrun by corrupt and hedonistic weasels 1 +34332 1611 overrun 1 +34333 1611 by corrupt and hedonistic weasels 1 +34334 1611 corrupt and hedonistic weasels 1 +34335 1611 corrupt and hedonistic 2 +34336 1611 corrupt and 2 +34337 1611 corrupt 1 +34338 1611 weasels 2 +34339 1612 Squandering his opportunity to make absurdist observations , Burns gets caught up in the rush of slapstick thoroughfare . 1 +34340 1612 Squandering his opportunity to make absurdist observations 1 +34341 1612 his opportunity to make absurdist observations 2 +34342 1612 opportunity to make absurdist observations 3 +34343 1612 opportunity 2 +34344 1612 to make absurdist observations 1 +34345 1612 make absurdist observations 2 +34346 1612 absurdist observations 2 +34347 1612 absurdist 1 +34348 1612 , Burns gets caught up in the rush of slapstick thoroughfare . 2 +34349 1612 Burns gets caught up in the rush of slapstick thoroughfare . 1 +34350 1612 Burns 2 +34351 1612 gets caught up in the rush of slapstick thoroughfare . 1 +34352 1612 gets caught up in the rush of slapstick thoroughfare 2 +34353 1612 caught up in the rush of slapstick thoroughfare 1 +34354 1612 in the rush of slapstick thoroughfare 1 +34355 1612 the rush of slapstick thoroughfare 2 +34356 1612 the rush 2 +34357 1612 of slapstick thoroughfare 2 +34358 1612 slapstick thoroughfare 2 +34359 1612 thoroughfare 2 +34360 1613 Topics that could make a sailor blush - but lots of laughs . 4 +34361 1613 Topics that could make a sailor blush - but lots of laughs 3 +34362 1613 Topics that could make a sailor blush - but 2 +34363 1613 Topics that could make a sailor blush - 2 +34364 1613 Topics that could make a sailor blush 1 +34365 1613 Topics that could make a sailor 2 +34366 1613 that could make a sailor 2 +34367 1613 could make a sailor 2 +34368 1613 make a sailor 2 +34369 1613 a sailor 2 +34370 1613 sailor 2 +34371 1613 blush 2 +34372 1613 lots of laughs 3 +34373 1613 lots of 2 +34374 1614 It 's so laddish and juvenile , only teenage boys could possibly find it funny . 2 +34375 1614 It 's so laddish and juvenile 0 +34376 1614 's so laddish and juvenile 1 +34377 1614 so laddish and juvenile 2 +34378 1614 laddish and juvenile 1 +34379 1614 laddish and 2 +34380 1614 laddish 2 +34381 1614 juvenile 1 +34382 1614 , only teenage boys could possibly find it funny . 2 +34383 1614 only teenage boys could possibly find it funny . 1 +34384 1614 only teenage boys 2 +34385 1614 teenage boys 2 +34386 1614 could possibly find it funny . 2 +34387 1614 could possibly find it funny 2 +34388 1614 find it funny 3 +34389 1614 it funny 3 +34390 1615 One of those movies that make us pause and think of what we have given up to acquire the fast-paced contemporary society . 3 +34391 1615 One of those movies that make us 2 +34392 1615 of those movies that make us 2 +34393 1615 those movies that make us 2 +34394 1615 those movies 2 +34395 1615 that make us 2 +34396 1615 make us 2 +34397 1615 pause and think of what we have given up to acquire the fast-paced contemporary society . 2 +34398 1615 pause and think of what we have given up to acquire the fast-paced contemporary society 3 +34399 1615 pause and think 2 +34400 1615 pause and 2 +34401 1615 pause 2 +34402 1615 of what we have given up to acquire the fast-paced contemporary society 2 +34403 1615 what we have given up to acquire the fast-paced contemporary society 2 +34404 1615 we have given up to acquire the fast-paced contemporary society 3 +34405 1615 have given up to acquire the fast-paced contemporary society 2 +34406 1615 given up to acquire the fast-paced contemporary society 2 +34407 1615 given up 1 +34408 1615 to acquire the fast-paced contemporary society 3 +34409 1615 acquire the fast-paced contemporary society 3 +34410 1615 acquire 2 +34411 1615 the fast-paced contemporary society 2 +34412 1615 fast-paced contemporary society 3 +34413 1615 contemporary society 2 +34414 1616 A loud , brash and mainly unfunny high school comedy . 0 +34415 1616 A loud , brash and mainly unfunny high school comedy 1 +34416 1616 A loud , brash and mainly unfunny 0 +34417 1616 loud , brash and mainly unfunny 1 +34418 1616 , brash and mainly unfunny 1 +34419 1616 brash and mainly unfunny 1 +34420 1616 brash 2 +34421 1616 and mainly unfunny 1 +34422 1616 mainly unfunny 1 +34423 1617 ... one of the most entertaining monster movies in ages ... 4 +34424 1617 ... one of the most entertaining monster movies in ages 4 +34425 1617 one of the most entertaining monster movies in ages 4 +34426 1617 of the most entertaining monster movies in ages 3 +34427 1617 the most entertaining monster movies in ages 4 +34428 1617 the most entertaining monster movies 3 +34429 1617 most entertaining monster movies 2 +34430 1617 most entertaining 4 +34431 1617 monster movies 2 +34432 1617 in ages 2 +34433 1618 The movie 's something-borrowed construction feels less the product of loving , well integrated homage and more like a mere excuse for the wan , thinly sketched story . 1 +34434 1618 The movie 's something-borrowed construction 2 +34435 1618 something-borrowed construction 2 +34436 1618 something-borrowed 2 +34437 1618 construction 2 +34438 1618 feels less the product of loving , well integrated homage and more like a mere excuse for the wan , thinly sketched story . 1 +34439 1618 feels less the product of loving , well integrated homage and more like a mere excuse for the wan , thinly sketched story 1 +34440 1618 less the product of loving , well integrated homage and more like a mere excuse for the wan , thinly sketched story 1 +34441 1618 the product of loving , well integrated homage and more like a mere excuse for the wan , thinly sketched story 2 +34442 1618 the product of loving , well integrated homage and 2 +34443 1618 the product of loving , well integrated homage 3 +34444 1618 the product of loving , 2 +34445 1618 the product of loving 2 +34446 1618 the product 3 +34447 1618 of loving 3 +34448 1618 loving 2 +34449 1618 well integrated homage 2 +34450 1618 well integrated 3 +34451 1618 more like a mere excuse for the wan , thinly sketched story 0 +34452 1618 like a mere excuse for the wan , thinly sketched story 1 +34453 1618 a mere excuse for the wan , thinly sketched story 0 +34454 1618 a mere excuse 1 +34455 1618 mere excuse 2 +34456 1618 excuse 2 +34457 1618 for the wan , thinly sketched story 1 +34458 1618 the wan , thinly sketched story 1 +34459 1618 the wan , 2 +34460 1618 the wan 2 +34461 1618 wan 1 +34462 1618 thinly sketched story 1 +34463 1618 thinly sketched 2 +34464 1618 sketched 2 +34465 1619 With tiny little jokes and nary an original idea , this sappy ethnic sleeper proves that not only blockbusters pollute the summer movie pool . 1 +34466 1619 With tiny little jokes and nary an original idea 1 +34467 1619 tiny little jokes and nary an original idea 1 +34468 1619 tiny little jokes and 2 +34469 1619 tiny little jokes 2 +34470 1619 little jokes 3 +34471 1619 nary an original idea 0 +34472 1619 nary 2 +34473 1619 an original idea 3 +34474 1619 original idea 2 +34475 1619 , this sappy ethnic sleeper proves that not only blockbusters pollute the summer movie pool . 2 +34476 1619 this sappy ethnic sleeper proves that not only blockbusters pollute the summer movie pool . 1 +34477 1619 this sappy ethnic sleeper 2 +34478 1619 sappy ethnic sleeper 1 +34479 1619 ethnic sleeper 3 +34480 1619 proves that not only blockbusters pollute the summer movie pool . 1 +34481 1619 proves that not only blockbusters pollute the summer movie pool 1 +34482 1619 that not only blockbusters pollute the summer movie pool 1 +34483 1619 not only blockbusters pollute the summer movie pool 2 +34484 1619 not only blockbusters 2 +34485 1619 only blockbusters 2 +34486 1619 pollute the summer movie pool 1 +34487 1619 pollute 2 +34488 1619 the summer movie pool 2 +34489 1619 summer movie pool 2 +34490 1619 movie pool 2 +34491 1620 The movie keeps coming back to the achingly unfunny Phonce and his several silly subplots . 1 +34492 1620 keeps coming back to the achingly unfunny Phonce and his several silly subplots . 1 +34493 1620 keeps coming back to the achingly unfunny Phonce and his several silly subplots 2 +34494 1620 coming back to the achingly unfunny Phonce and his several silly subplots 1 +34495 1620 coming back 2 +34496 1620 to the achingly unfunny Phonce and his several silly subplots 2 +34497 1620 the achingly unfunny Phonce and his several silly subplots 1 +34498 1620 the achingly unfunny Phonce and 2 +34499 1620 the achingly unfunny Phonce 0 +34500 1620 achingly unfunny Phonce 1 +34501 1620 achingly 2 +34502 1620 unfunny Phonce 1 +34503 1620 Phonce 2 +34504 1620 his several silly subplots 1 +34505 1620 several silly subplots 2 +34506 1620 silly subplots 1 +34507 1620 subplots 2 +34508 1621 ... a mostly boring affair with a confusing sudden finale that 's likely to irk viewers . 2 +34509 1621 a mostly boring affair with a confusing sudden finale that 's likely to irk viewers . 0 +34510 1621 a mostly boring affair with a confusing sudden finale that 's likely to irk viewers 1 +34511 1621 a mostly boring affair 1 +34512 1621 mostly boring affair 1 +34513 1621 mostly boring 1 +34514 1621 with a confusing sudden finale that 's likely to irk viewers 1 +34515 1621 a confusing sudden finale that 's likely to irk viewers 2 +34516 1621 a confusing sudden finale 1 +34517 1621 confusing sudden finale 2 +34518 1621 sudden finale 2 +34519 1621 that 's likely to irk viewers 1 +34520 1621 's likely to irk viewers 1 +34521 1621 likely to irk viewers 2 +34522 1621 to irk viewers 2 +34523 1621 irk viewers 1 +34524 1621 irk 1 +34525 1622 A reality-snubbing hodgepodge . 1 +34526 1622 reality-snubbing hodgepodge . 2 +34527 1622 reality-snubbing 1 +34528 1622 hodgepodge . 1 +34529 1622 hodgepodge 1 +34530 1623 ... grows decidedly flimsier with its many out-sized , out of character and logically porous action set pieces . 0 +34531 1623 grows decidedly flimsier with its many out-sized , out of character and logically porous action set pieces . 1 +34532 1623 grows decidedly flimsier with its many out-sized , out of character and logically porous action set pieces 0 +34533 1623 grows 3 +34534 1623 decidedly flimsier with its many out-sized , out of character and logically porous action set pieces 1 +34535 1623 decidedly flimsier with its many out-sized , out of character and logically porous action set 1 +34536 1623 decidedly 2 +34537 1623 flimsier with its many out-sized , out of character and logically porous action set 1 +34538 1623 flimsier 2 +34539 1623 with its many out-sized , out of character and logically porous action set 0 +34540 1623 its many out-sized , out of character and logically porous action set 2 +34541 1623 its many out-sized , 1 +34542 1623 its many out-sized 2 +34543 1623 many out-sized 2 +34544 1623 out-sized 1 +34545 1623 out of character and logically porous action set 1 +34546 1623 out of character and logically 1 +34547 1623 out of character and 2 +34548 1623 out of character 2 +34549 1623 of character 2 +34550 1623 logically 2 +34551 1623 porous action set 2 +34552 1623 porous 2 +34553 1623 action set 2 +34554 1624 The humor and humanity of Monsoon Wedding are in perfect balance . 3 +34555 1624 The humor and humanity of Monsoon Wedding 3 +34556 1624 The humor and humanity 3 +34557 1624 humor and humanity 4 +34558 1624 of Monsoon Wedding 2 +34559 1624 Monsoon Wedding 3 +34560 1624 Monsoon 2 +34561 1624 are in perfect balance . 4 +34562 1624 are in perfect balance 4 +34563 1624 in perfect balance 3 +34564 1624 perfect balance 3 +34565 1625 There are things to like about Murder By Numbers -- but , in the end , the disparate elements do n't gel . 2 +34566 1625 There are things to like about Murder By Numbers -- but , in the end , the disparate elements do n't gel 2 +34567 1625 There are things to like about Murder By Numbers -- but , 2 +34568 1625 There are things to like about Murder By Numbers -- but 2 +34569 1625 There are things to like about Murder By Numbers -- 3 +34570 1625 There are things to like about Murder By Numbers 3 +34571 1625 are things to like about Murder By Numbers 3 +34572 1625 things to like about Murder By Numbers 3 +34573 1625 to like about Murder By Numbers 2 +34574 1625 like about Murder By Numbers 2 +34575 1625 about Murder By Numbers 2 +34576 1625 about Murder 2 +34577 1625 in the end , the disparate elements do n't gel 2 +34578 1625 , the disparate elements do n't gel 0 +34579 1625 the disparate elements do n't gel 1 +34580 1625 the disparate elements 2 +34581 1625 disparate elements 1 +34582 1625 do n't gel 1 +34583 1625 gel 2 +34584 1626 Quaid is utterly fearless as the tortured husband living a painful lie , and Moore wonderfully underplays the long-suffering heroine with an unflappable '50s dignity somewhere between Jane Wyman and June Cleaver . 3 +34585 1626 Quaid is utterly fearless as the tortured husband living a painful lie , and Moore wonderfully underplays the long-suffering heroine with an unflappable '50s dignity somewhere between Jane Wyman and June Cleaver 2 +34586 1626 Quaid is utterly fearless as the tortured husband living a painful lie , and 3 +34587 1626 Quaid is utterly fearless as the tortured husband living a painful lie , 4 +34588 1626 Quaid is utterly fearless as the tortured husband living a painful lie 4 +34589 1626 Quaid 2 +34590 1626 is utterly fearless as the tortured husband living a painful lie 2 +34591 1626 is utterly fearless as the tortured husband 3 +34592 1626 utterly fearless as the tortured husband 2 +34593 1626 fearless as the tortured husband 2 +34594 1626 fearless 3 +34595 1626 as the tortured husband 2 +34596 1626 the tortured husband 1 +34597 1626 tortured husband 1 +34598 1626 living a painful lie 2 +34599 1626 a painful lie 1 +34600 1626 painful lie 1 +34601 1626 Moore wonderfully underplays the long-suffering heroine with an unflappable '50s dignity somewhere between Jane Wyman and June Cleaver 3 +34602 1626 Moore wonderfully 3 +34603 1626 Moore 2 +34604 1626 underplays the long-suffering heroine with an unflappable '50s dignity somewhere between Jane Wyman and June Cleaver 2 +34605 1626 underplays the long-suffering heroine 2 +34606 1626 underplays 2 +34607 1626 the long-suffering heroine 2 +34608 1626 long-suffering heroine 2 +34609 1626 long-suffering 1 +34610 1626 heroine 3 +34611 1626 with an unflappable '50s dignity somewhere between Jane Wyman and June Cleaver 3 +34612 1626 an unflappable '50s dignity somewhere between Jane Wyman and June Cleaver 2 +34613 1626 an unflappable '50s dignity 2 +34614 1626 unflappable '50s dignity 2 +34615 1626 unflappable 3 +34616 1626 '50s dignity 2 +34617 1626 somewhere between Jane Wyman and June Cleaver 2 +34618 1626 between Jane Wyman and June Cleaver 2 +34619 1626 Jane Wyman and June Cleaver 2 +34620 1626 Jane Wyman and 3 +34621 1626 Jane Wyman 2 +34622 1626 Jane 2 +34623 1626 Wyman 2 +34624 1626 June Cleaver 2 +34625 1626 June 2 +34626 1626 Cleaver 3 +34627 1627 What begins as a film in the tradition of The Graduate quickly switches into something more recyclable than significant . 2 +34628 1627 begins as a film in the tradition of The Graduate quickly switches into something more recyclable than significant . 2 +34629 1627 begins as a film in the tradition of The Graduate quickly switches into something more recyclable than significant 2 +34630 1627 as a film in the tradition of The Graduate quickly switches into something more recyclable than significant 1 +34631 1627 a film in the tradition of The Graduate quickly switches into something more recyclable than significant 1 +34632 1627 a film in the tradition of The Graduate 2 +34633 1627 in the tradition of The Graduate 2 +34634 1627 the tradition of The Graduate 2 +34635 1627 the tradition 2 +34636 1627 tradition 2 +34637 1627 of The Graduate 2 +34638 1627 The Graduate 2 +34639 1627 Graduate 3 +34640 1627 quickly switches into something more recyclable than significant 1 +34641 1627 switches into something more recyclable than significant 2 +34642 1627 switches 2 +34643 1627 into something more recyclable than significant 1 +34644 1627 something more recyclable than significant 1 +34645 1627 more recyclable than significant 1 +34646 1627 more recyclable than 1 +34647 1627 more recyclable 1 +34648 1627 recyclable 2 +34649 1627 significant 2 +34650 1628 Apparently reassembled from the cutting-room floor of any given daytime soap . 1 +34651 1628 Apparently reassembled from the cutting-room floor of any given daytime soap 1 +34652 1628 reassembled from the cutting-room floor of any given daytime soap 1 +34653 1628 reassembled 2 +34654 1628 from the cutting-room floor of any given daytime soap 1 +34655 1628 the cutting-room floor of any given daytime soap 1 +34656 1628 the cutting-room floor 2 +34657 1628 cutting-room floor 2 +34658 1628 cutting-room 2 +34659 1628 floor 2 +34660 1628 of any given daytime soap 2 +34661 1628 any given daytime soap 2 +34662 1628 given daytime soap 2 +34663 1628 daytime soap 2 +34664 1628 daytime 3 +34665 1629 A brisk , reverent , and subtly different sequel . 4 +34666 1629 A brisk , reverent , and subtly different sequel 3 +34667 1629 brisk , reverent , and subtly different sequel 3 +34668 1629 brisk , reverent , and subtly different 3 +34669 1629 brisk 3 +34670 1629 , reverent , and subtly different 3 +34671 1629 reverent , and subtly different 3 +34672 1629 reverent 3 +34673 1629 , and subtly different 2 +34674 1629 and subtly different 2 +34675 1629 subtly different 3 +34676 1630 The story , once it gets rolling , is nothing short of a great one . 4 +34677 1630 The story , once it gets rolling , 2 +34678 1630 The story , once it gets rolling 2 +34679 1630 once it gets rolling 2 +34680 1630 it gets rolling 2 +34681 1630 gets rolling 2 +34682 1630 rolling 2 +34683 1630 is nothing short of a great one . 4 +34684 1630 is nothing short of a great one 4 +34685 1630 nothing short of a great one 4 +34686 1630 short of a great one 2 +34687 1630 of a great one 4 +34688 1630 a great one 3 +34689 1630 great one 3 +34690 1631 It 's not the worst comedy of the year , but it certainly wo n't win any honors . 2 +34691 1631 It 's not the worst comedy of the year , but it certainly wo n't win any honors 1 +34692 1631 It 's not the worst comedy of the year , but 1 +34693 1631 It 's not the worst comedy of the year , 2 +34694 1631 It 's not the worst comedy of the year 1 +34695 1631 's not the worst comedy of the year 3 +34696 1631 the worst comedy of the year 0 +34697 1631 the worst comedy 0 +34698 1631 worst comedy 0 +34699 1631 it certainly wo n't win any honors 1 +34700 1631 certainly wo n't win any honors 1 +34701 1631 wo n't win any honors 2 +34702 1631 win any honors 2 +34703 1631 any honors 2 +34704 1631 honors 2 +34705 1632 Some people want the ol' ball-and-chain and then there are those who just want the Ball and Chain . 2 +34706 1632 Some people want the ol' ball-and-chain and then there are those who just want the Ball and Chain 2 +34707 1632 Some people want the ol' ball-and-chain and then 2 +34708 1632 Some people want the ol' ball-and-chain and 2 +34709 1632 Some people want the ol' ball-and-chain 2 +34710 1632 Some people 2 +34711 1632 want the ol' ball-and-chain 2 +34712 1632 the ol' ball-and-chain 1 +34713 1632 ol' ball-and-chain 2 +34714 1632 ol' 3 +34715 1632 ball-and-chain 2 +34716 1632 there are those who just want the Ball and Chain 3 +34717 1632 are those who just want the Ball and Chain 1 +34718 1632 those who just want the Ball and Chain 2 +34719 1632 who just want the Ball and Chain 2 +34720 1632 just want the Ball and Chain 2 +34721 1632 want the Ball and Chain 2 +34722 1632 the Ball and Chain 1 +34723 1632 Ball and Chain 2 +34724 1632 Ball and 2 +34725 1632 Ball 2 +34726 1633 One of the funnier movies in town . 4 +34727 1633 One of the funnier movies in town 4 +34728 1633 One of the funnier movies 4 +34729 1633 of the funnier movies 2 +34730 1633 the funnier movies 3 +34731 1633 funnier movies 2 +34732 1633 in town 2 +34733 1634 The universal theme of becoming a better person through love has never been filmed more irresistibly than in ` Baran . ' 4 +34734 1634 The universal theme of becoming a better person through love 2 +34735 1634 The universal theme 3 +34736 1634 universal theme 2 +34737 1634 of becoming a better person through love 3 +34738 1634 becoming a better person through love 3 +34739 1634 becoming a better person 2 +34740 1634 becoming 3 +34741 1634 a better person 3 +34742 1634 better person 3 +34743 1634 through love 3 +34744 1634 has never been filmed more irresistibly than in ` Baran . ' 3 +34745 1634 has never been filmed more irresistibly than in ` Baran . 4 +34746 1634 has never been filmed more irresistibly than in ` Baran 3 +34747 1634 been filmed more irresistibly than in ` Baran 3 +34748 1634 filmed more irresistibly than in ` Baran 3 +34749 1634 more irresistibly than in ` Baran 3 +34750 1634 irresistibly than in ` Baran 3 +34751 1634 irresistibly 3 +34752 1634 than in ` Baran 2 +34753 1634 in ` Baran 2 +34754 1634 Baran 2 +34755 1635 American and European cinema has amassed a vast Holocaust literature , but it is impossible to think of any film more challenging or depressing than The Grey Zone . 1 +34756 1635 American and European cinema has amassed a vast Holocaust literature , but it is impossible to think of any film more challenging or depressing than The Grey Zone 2 +34757 1635 American and European cinema has amassed a vast Holocaust literature , but 2 +34758 1635 American and European cinema has amassed a vast Holocaust literature , 3 +34759 1635 American and European cinema has amassed a vast Holocaust literature 2 +34760 1635 American and European cinema 2 +34761 1635 American and 1 +34762 1635 European cinema 2 +34763 1635 has amassed a vast Holocaust literature 2 +34764 1635 amassed a vast Holocaust literature 2 +34765 1635 amassed 2 +34766 1635 a vast Holocaust literature 2 +34767 1635 vast Holocaust literature 2 +34768 1635 Holocaust literature 1 +34769 1635 it is impossible to think of any film more challenging or depressing than The Grey Zone 1 +34770 1635 is impossible to think of any film more challenging or depressing than The Grey Zone 1 +34771 1635 impossible to think of any film more challenging or depressing than The Grey Zone 2 +34772 1635 to think of any film more challenging or depressing than The Grey Zone 1 +34773 1635 think of any film more challenging or depressing than The Grey Zone 2 +34774 1635 think of any film more challenging or depressing 2 +34775 1635 of any film more challenging or depressing 1 +34776 1635 any film more challenging or depressing 1 +34777 1635 any film 2 +34778 1635 more challenging or depressing 1 +34779 1635 challenging or depressing 1 +34780 1635 challenging or 2 +34781 1635 than The Grey Zone 2 +34782 1636 An elegant film 2 +34783 1636 elegant film 4 +34784 1636 elegant 4 +34785 1636 often surprising twists and 3 +34786 1636 often surprising twists 3 +34787 1636 an intermingling 2 +34788 1636 intermingling 2 +34789 1636 sophistication 2 +34790 1637 An example of quiet , confident craftsmanship that tells a sweet , charming tale of intergalactic friendship . 4 +34791 1637 An example of quiet , confident craftsmanship that tells a sweet , charming tale of intergalactic friendship 3 +34792 1637 of quiet , confident craftsmanship that tells a sweet , charming tale of intergalactic friendship 4 +34793 1637 quiet , confident craftsmanship that tells a sweet , charming tale of intergalactic friendship 4 +34794 1637 quiet , confident craftsmanship 3 +34795 1637 quiet , confident 3 +34796 1637 , confident 3 +34797 1637 craftsmanship 2 +34798 1637 that tells a sweet , charming tale of intergalactic friendship 3 +34799 1637 tells a sweet , charming tale of intergalactic friendship 4 +34800 1637 a sweet , charming tale of intergalactic friendship 4 +34801 1637 a sweet , charming tale 4 +34802 1637 sweet , charming tale 3 +34803 1637 sweet , charming 4 +34804 1637 , charming 3 +34805 1637 of intergalactic friendship 3 +34806 1637 intergalactic friendship 2 +34807 1637 intergalactic 2 +34808 1638 A plodding teen remake that 's so mechanical you can smell the grease on the plot twists . 0 +34809 1638 A plodding teen remake that 's so mechanical you can smell the grease on the plot 0 +34810 1638 A plodding teen remake 1 +34811 1638 plodding teen remake 1 +34812 1638 teen remake 2 +34813 1638 that 's so mechanical you can smell the grease on the plot 0 +34814 1638 's so mechanical you can smell the grease on the plot 2 +34815 1638 so mechanical you can smell the grease on the plot 2 +34816 1638 mechanical you can smell the grease on the plot 1 +34817 1638 you can smell the grease on the plot 1 +34818 1638 can smell the grease on the plot 1 +34819 1638 smell the grease on the plot 3 +34820 1638 smell the grease 2 +34821 1638 smell 2 +34822 1638 the grease 1 +34823 1638 grease 2 +34824 1638 on the plot 2 +34825 1638 twists . 2 +34826 1639 A stylistic romp that 's always fun to watch . 4 +34827 1639 A stylistic 3 +34828 1639 romp that 's always fun to watch . 3 +34829 1639 romp that 's always fun to watch 3 +34830 1639 that 's always fun to watch 3 +34831 1639 's always fun to watch 3 +34832 1639 's always 2 +34833 1639 fun to watch 3 +34834 1640 Like its title character , this Nicholas Nickleby finds itself in reduced circumstances -- and , also like its hero , it remains brightly optimistic , coming through in the end . 3 +34835 1640 Like its title character 2 +34836 1640 its title character 2 +34837 1640 , this Nicholas Nickleby finds itself in reduced circumstances -- and , also like its hero , it remains brightly optimistic , coming through in the end . 3 +34838 1640 this Nicholas Nickleby finds itself in reduced circumstances -- and , also like its hero , it remains brightly optimistic , coming through in the end . 3 +34839 1640 this Nicholas Nickleby finds itself in reduced circumstances -- and , also like its hero , it remains brightly optimistic , coming through in the end 3 +34840 1640 this Nicholas Nickleby finds itself in reduced circumstances -- and 1 +34841 1640 this Nicholas Nickleby finds itself in reduced circumstances -- 2 +34842 1640 this Nicholas Nickleby finds itself in reduced circumstances 2 +34843 1640 this Nicholas Nickleby 2 +34844 1640 Nicholas Nickleby 2 +34845 1640 Nicholas 2 +34846 1640 Nickleby 2 +34847 1640 finds itself in reduced circumstances 1 +34848 1640 finds itself 2 +34849 1640 in reduced circumstances 2 +34850 1640 reduced circumstances 2 +34851 1640 , also like its hero , it remains brightly optimistic , coming through in the end 4 +34852 1640 also like its hero , it remains brightly optimistic , coming through in the end 3 +34853 1640 also like its hero 2 +34854 1640 like its hero 3 +34855 1640 its hero 3 +34856 1640 , it remains brightly optimistic , coming through in the end 3 +34857 1640 it remains brightly optimistic , coming through in the end 3 +34858 1640 remains brightly optimistic , coming through in the end 4 +34859 1640 remains brightly optimistic , 4 +34860 1640 remains brightly optimistic 3 +34861 1640 brightly optimistic 3 +34862 1640 brightly 3 +34863 1640 coming through in the end 3 +34864 1640 coming through 2 +34865 1641 Although mainstream American movies tend to exploit the familiar , every once in a while a film arrives from the margin that gives viewers a chance to learn , to grow , to travel . 3 +34866 1641 Although mainstream American movies tend to exploit the familiar 2 +34867 1641 mainstream American movies tend to exploit the familiar 1 +34868 1641 mainstream American movies 2 +34869 1641 mainstream American 2 +34870 1641 tend to exploit the familiar 2 +34871 1641 tend 2 +34872 1641 to exploit the familiar 2 +34873 1641 exploit the familiar 1 +34874 1641 the familiar 2 +34875 1641 , every once in a while a film arrives from the margin that gives viewers a chance to learn , to grow , to travel . 3 +34876 1641 every once in a while a film arrives from the margin that gives viewers a chance to learn , to grow , to travel . 3 +34877 1641 every once in a while a film 3 +34878 1641 once in a while a film 3 +34879 1641 once in a while a 2 +34880 1641 once in a while 2 +34881 1641 arrives from the margin that gives viewers a chance to learn , to grow , to travel . 3 +34882 1641 arrives from the margin that gives viewers a chance to learn , to grow , to travel 4 +34883 1641 from the margin that gives viewers a chance to learn , to grow , to travel 3 +34884 1641 the margin that gives viewers a chance to learn , to grow , to travel 3 +34885 1641 the margin 2 +34886 1641 margin 2 +34887 1641 that gives viewers a chance to learn , to grow , to travel 4 +34888 1641 gives viewers a chance to learn , to grow , to travel 3 +34889 1641 gives viewers 2 +34890 1641 a chance to learn , to grow , to travel 3 +34891 1641 chance to learn , to grow , to travel 3 +34892 1641 to learn , to grow , to travel 2 +34893 1641 to learn , to grow , 3 +34894 1641 to learn , to grow 3 +34895 1641 to learn , 2 +34896 1641 to grow 2 +34897 1641 grow 2 +34898 1641 to travel 2 +34899 1642 Film ca n't quite maintain its initial momentum , but remains sporadically funny throughout . 2 +34900 1642 ca n't quite maintain its initial momentum , but remains sporadically funny throughout . 3 +34901 1642 ca n't quite maintain its initial momentum , but remains sporadically funny throughout 2 +34902 1642 ca n't quite maintain its initial momentum , but 2 +34903 1642 ca n't quite maintain its initial momentum , 1 +34904 1642 ca n't quite maintain its initial momentum 1 +34905 1642 ca n't quite 2 +34906 1642 maintain its initial momentum 2 +34907 1642 its initial momentum 2 +34908 1642 initial momentum 2 +34909 1642 remains sporadically funny throughout 3 +34910 1642 remains sporadically funny 3 +34911 1642 sporadically funny 3 +34912 1642 sporadically 2 +34913 1643 It seems impossible that an epic four-hour Indian musical about a cricket game could be this good , but it is . 3 +34914 1643 It seems impossible that an epic four-hour Indian musical about a cricket game could be this good , but it is 3 +34915 1643 It seems impossible that an epic four-hour Indian musical about a cricket game could be this good , but 3 +34916 1643 It seems impossible that an epic four-hour Indian musical about a cricket game could be this good , 3 +34917 1643 It seems impossible that an epic four-hour Indian musical about a cricket game could be this good 4 +34918 1643 seems impossible that an epic four-hour Indian musical about a cricket game could be this good 4 +34919 1643 seems impossible 2 +34920 1643 that an epic four-hour Indian musical about a cricket game could be this good 3 +34921 1643 an epic four-hour Indian musical about a cricket game could be this good 2 +34922 1643 an epic four-hour Indian musical about a cricket game 3 +34923 1643 an epic four-hour Indian musical 3 +34924 1643 epic four-hour Indian musical 3 +34925 1643 epic four-hour 2 +34926 1643 four-hour 2 +34927 1643 Indian musical 2 +34928 1643 about a cricket game 2 +34929 1643 a cricket game 2 +34930 1643 cricket game 2 +34931 1643 cricket 2 +34932 1643 could be this good 3 +34933 1643 be this good 4 +34934 1643 this good 3 +34935 1644 A zinger-filled crowd-pleaser that open-minded Elvis fans -LRB- but by no means all -RRB- will have fun with . 4 +34936 1644 A zinger-filled crowd-pleaser that open-minded Elvis fans -LRB- but by no means all -RRB- 3 +34937 1644 A zinger-filled crowd-pleaser that open-minded Elvis fans 4 +34938 1644 A zinger-filled crowd-pleaser 2 +34939 1644 zinger-filled crowd-pleaser 3 +34940 1644 zinger-filled 3 +34941 1644 that open-minded Elvis fans 2 +34942 1644 open-minded Elvis fans 2 +34943 1644 open-minded 2 +34944 1644 Elvis fans 2 +34945 1644 Elvis 2 +34946 1644 -LRB- but by no means all -RRB- 2 +34947 1644 but by no means all -RRB- 2 +34948 1644 by no means all -RRB- 2 +34949 1644 means all -RRB- 2 +34950 1644 means all 2 +34951 1644 will have fun with . 2 +34952 1644 will have fun with 3 +34953 1644 have fun with 2 +34954 1644 have fun 3 +34955 1645 Kicks off with an inauspicious premise , mopes through a dreary tract of virtually plotless meanderings and then ends with a whimper . 1 +34956 1645 off with an inauspicious premise , mopes through a dreary tract of virtually plotless meanderings and then ends with a whimper . 0 +34957 1645 off with an inauspicious 2 +34958 1645 with an inauspicious 1 +34959 1645 an inauspicious 2 +34960 1645 inauspicious 2 +34961 1645 premise , mopes through a dreary tract of virtually plotless meanderings and then ends with a whimper . 0 +34962 1645 premise , mopes through a dreary tract of virtually plotless meanderings and then ends with a whimper 1 +34963 1645 premise , mopes through a dreary tract of virtually plotless meanderings and 0 +34964 1645 premise , mopes through a dreary tract of virtually plotless meanderings 1 +34965 1645 premise , 2 +34966 1645 mopes through a dreary tract of virtually plotless meanderings 0 +34967 1645 mopes 1 +34968 1645 through a dreary tract of virtually plotless meanderings 1 +34969 1645 a dreary tract of virtually plotless meanderings 0 +34970 1645 a dreary tract 1 +34971 1645 dreary tract 1 +34972 1645 of virtually plotless meanderings 0 +34973 1645 virtually plotless meanderings 2 +34974 1645 virtually plotless 1 +34975 1645 plotless 1 +34976 1645 meanderings 2 +34977 1645 then ends with a whimper 1 +34978 1645 ends with a whimper 1 +34979 1645 with a whimper 2 +34980 1645 a whimper 1 +34981 1645 whimper 1 +34982 1646 Most of the problems with the film do n't derive from the screenplay , but rather the mediocre performances by most of the actors involved 0 +34983 1646 Most of the problems with the film 1 +34984 1646 of the problems with the film 1 +34985 1646 the problems with the film 1 +34986 1646 the problems 1 +34987 1646 problems 2 +34988 1646 with the film 2 +34989 1646 do n't derive from the screenplay , but rather the mediocre performances by most of the actors involved 1 +34990 1646 derive from the screenplay , but rather the mediocre performances by most of the actors involved 1 +34991 1646 derive from the screenplay , but rather the mediocre performances 2 +34992 1646 derive 2 +34993 1646 from the screenplay , but rather the mediocre performances 1 +34994 1646 the screenplay , but rather the mediocre performances 2 +34995 1646 the screenplay , but rather 3 +34996 1646 the mediocre performances 2 +34997 1646 mediocre performances 2 +34998 1646 by most of the actors involved 2 +34999 1646 most of the actors involved 2 +35000 1646 of the actors involved 2 +35001 1646 the actors involved 2 +35002 1647 There 's no conversion effort , much of the writing is genuinely witty and both stars are appealing enough to probably have a good shot at a Hollywood career , if they want one . 3 +35003 1647 There 's no conversion effort , much of the writing is genuinely witty and both stars are appealing enough to probably have a good shot at a Hollywood career , if they want one 4 +35004 1647 There 's no conversion effort , much of the writing is genuinely witty and 3 +35005 1647 There 's no conversion effort , much of the writing is genuinely witty 3 +35006 1647 There 's no conversion effort , 1 +35007 1647 There 's no conversion effort 1 +35008 1647 's no conversion effort 1 +35009 1647 no conversion effort 1 +35010 1647 conversion effort 2 +35011 1647 conversion 2 +35012 1647 much of the writing is genuinely witty 3 +35013 1647 much of the writing 2 +35014 1647 of the writing 2 +35015 1647 the writing 2 +35016 1647 is genuinely witty 3 +35017 1647 genuinely witty 4 +35018 1647 both stars are appealing enough to probably have a good shot at a Hollywood career , if they want one 3 +35019 1647 both stars 2 +35020 1647 are appealing enough to probably have a good shot at a Hollywood career , if they want one 3 +35021 1647 appealing enough to probably have a good shot at a Hollywood career , if they want one 3 +35022 1647 appealing enough 3 +35023 1647 to probably have a good shot at a Hollywood career , if they want one 2 +35024 1647 to probably 2 +35025 1647 have a good shot at a Hollywood career , if they want one 3 +35026 1647 have a good shot at a Hollywood career , 3 +35027 1647 have a good shot at a Hollywood career 3 +35028 1647 have a good shot 3 +35029 1647 a good shot 4 +35030 1647 good shot 2 +35031 1647 at a Hollywood career 2 +35032 1647 a Hollywood career 2 +35033 1647 Hollywood career 2 +35034 1647 if they want one 2 +35035 1647 they want one 2 +35036 1647 want one 2 +35037 1648 The movie turns out to be -LRB- Assayas ' -RRB- homage to the Gallic ` tradition of quality , ' in all its fusty squareness . 1 +35038 1648 turns out to be -LRB- Assayas ' -RRB- homage to the Gallic ` tradition of quality , ' in all its fusty squareness . 2 +35039 1648 turns out to be -LRB- Assayas ' -RRB- homage to the Gallic ` tradition of quality , ' in all its fusty squareness 3 +35040 1648 turns out 2 +35041 1648 to be -LRB- Assayas ' -RRB- homage to the Gallic ` tradition of quality , ' in all its fusty squareness 2 +35042 1648 be -LRB- Assayas ' -RRB- homage to the Gallic ` tradition of quality , ' in all its fusty squareness 3 +35043 1648 be -LRB- Assayas ' -RRB- homage to the Gallic ` tradition of quality , ' 2 +35044 1648 be -LRB- Assayas ' -RRB- homage to the Gallic ` tradition of quality , 3 +35045 1648 be -LRB- Assayas ' -RRB- homage to the Gallic ` tradition of quality 3 +35046 1648 -LRB- Assayas ' -RRB- homage to the Gallic ` tradition of quality 3 +35047 1648 -LRB- Assayas ' -RRB- homage 2 +35048 1648 Assayas ' -RRB- homage 2 +35049 1648 Assayas ' 2 +35050 1648 Assayas 2 +35051 1648 -RRB- homage 3 +35052 1648 to the Gallic ` tradition of quality 3 +35053 1648 the Gallic ` tradition of quality 3 +35054 1648 the Gallic ` tradition 2 +35055 1648 Gallic ` tradition 2 +35056 1648 Gallic 2 +35057 1648 ` tradition 2 +35058 1648 of quality 3 +35059 1648 in all its fusty squareness 2 +35060 1648 all its fusty squareness 1 +35061 1648 its fusty squareness 1 +35062 1648 fusty squareness 1 +35063 1648 fusty 2 +35064 1648 squareness 2 +35065 1649 Mattei so completely loses himself to the film 's circular structure to ever offer any insightful discourse on , well , Love in the Time of Money . 1 +35066 1649 so completely loses himself to the film 's circular structure to ever offer any insightful discourse on , well , Love in the Time of Money . 1 +35067 1649 so completely 2 +35068 1649 loses himself to the film 's circular structure to ever offer any insightful discourse on , well , Love in the Time of Money . 1 +35069 1649 loses himself to the film 's circular structure to ever offer any insightful discourse on , well , Love in the Time of Money 1 +35070 1649 loses himself to the film 's circular structure 1 +35071 1649 loses himself 2 +35072 1649 to the film 's circular structure 2 +35073 1649 the film 's circular structure 2 +35074 1649 circular structure 2 +35075 1649 circular 2 +35076 1649 to ever offer any insightful discourse on , well , Love in the Time of Money 2 +35077 1649 ever offer any insightful discourse on , well , Love in the Time of Money 2 +35078 1649 offer any insightful discourse on , well , Love in the Time of Money 2 +35079 1649 offer any insightful discourse 2 +35080 1649 any insightful discourse 2 +35081 1649 insightful discourse 3 +35082 1649 on , well , Love in the Time of Money 3 +35083 1649 on , well , 2 +35084 1649 on , well 2 +35085 1649 on , 2 +35086 1649 Love in the Time of Money 3 +35087 1650 Returning director Rob Minkoff ... and screenwriter Bruce Joel Rubin ... have done a fine job of updating White 's dry wit to a new age . 4 +35088 1650 Returning director Rob Minkoff ... and screenwriter Bruce Joel Rubin ... 2 +35089 1650 Returning director Rob Minkoff ... and screenwriter Bruce Joel Rubin 3 +35090 1650 Returning director Rob Minkoff ... and 2 +35091 1650 Returning director Rob Minkoff ... 2 +35092 1650 Returning director Rob Minkoff 2 +35093 1650 Returning 2 +35094 1650 director Rob Minkoff 2 +35095 1650 Rob Minkoff 2 +35096 1650 Minkoff 2 +35097 1650 screenwriter Bruce Joel Rubin 2 +35098 1650 Bruce Joel Rubin 2 +35099 1650 Joel Rubin 2 +35100 1650 Rubin 2 +35101 1650 have done a fine job of updating White 's dry wit to a new age . 4 +35102 1650 have done a fine job of updating White 's dry wit to a new age 3 +35103 1650 done a fine job of updating White 's dry wit to a new age 4 +35104 1650 a fine job of updating White 's dry wit to a new age 4 +35105 1650 a fine job 3 +35106 1650 fine job 3 +35107 1650 of updating White 's dry wit to a new age 3 +35108 1650 updating White 's dry wit to a new age 3 +35109 1650 updating White 's dry wit 2 +35110 1650 updating 2 +35111 1650 White 's dry wit 3 +35112 1650 White 's 2 +35113 1650 dry wit 2 +35114 1650 to a new age 2 +35115 1650 a new age 2 +35116 1650 new age 3 +35117 1651 The film has a laundry list of minor shortcomings , but the numerous scenes of gory mayhem are worth the price of admission ... if `` gory mayhem '' is your idea of a good time . 3 +35118 1651 The film has a laundry list of minor shortcomings , but the numerous scenes of gory mayhem are worth the price of admission ... if `` gory mayhem '' is your idea of a good time 3 +35119 1651 The film has a laundry list of minor shortcomings , but 1 +35120 1651 The film has a laundry list of minor shortcomings , 1 +35121 1651 The film has a laundry list of minor shortcomings 1 +35122 1651 has a laundry list of minor shortcomings 1 +35123 1651 a laundry list of minor shortcomings 1 +35124 1651 a laundry list 2 +35125 1651 laundry list 2 +35126 1651 laundry 2 +35127 1651 of minor shortcomings 1 +35128 1651 minor shortcomings 2 +35129 1651 shortcomings 1 +35130 1651 the numerous scenes of gory mayhem are worth the price of admission ... if `` gory mayhem '' is your idea of a good time 3 +35131 1651 the numerous scenes of gory mayhem 1 +35132 1651 the numerous scenes 3 +35133 1651 numerous scenes 2 +35134 1651 numerous 2 +35135 1651 of gory mayhem 2 +35136 1651 gory mayhem 2 +35137 1651 are worth the price of admission ... if `` gory mayhem '' is your idea of a good time 3 +35138 1651 are worth the price of admission ... 3 +35139 1651 are worth the price of admission 3 +35140 1651 worth the price of admission 4 +35141 1651 the price of admission 2 +35142 1651 of admission 2 +35143 1651 admission 2 +35144 1651 if `` gory mayhem '' is your idea of a good time 1 +35145 1651 `` gory mayhem '' is your idea of a good time 3 +35146 1651 `` gory mayhem '' 2 +35147 1651 gory mayhem '' 1 +35148 1651 mayhem '' 2 +35149 1651 is your idea of a good time 2 +35150 1651 your idea of a good time 3 +35151 1651 your idea 2 +35152 1652 That is because - damn it ! 2 +35153 1652 is because - damn it ! 2 +35154 1652 is because - damn it 2 +35155 1652 is because - damn 2 +35156 1652 because - damn 2 +35157 1652 - damn 2 +35158 1653 It would be great to see this turd squashed under a truck , preferably a semi . 0 +35159 1653 would be great to see this turd squashed under a truck , preferably a semi . 0 +35160 1653 would be great to see this turd squashed under a truck , preferably a semi 0 +35161 1653 be great to see this turd squashed under a truck , preferably a semi 0 +35162 1653 great to see this turd squashed under a truck , preferably a semi 1 +35163 1653 to see this turd squashed under a truck , preferably a semi 0 +35164 1653 see this turd squashed under a truck , preferably a semi 0 +35165 1653 see this turd squashed 1 +35166 1653 this turd squashed 0 +35167 1653 turd squashed 1 +35168 1653 turd 0 +35169 1653 squashed 1 +35170 1653 under a truck , preferably a semi 2 +35171 1653 a truck , preferably a semi 2 +35172 1653 a truck , preferably 2 +35173 1653 a truck , 2 +35174 1653 a truck 2 +35175 1653 truck 2 +35176 1653 preferably 2 +35177 1653 a semi 2 +35178 1653 semi 2 +35179 1654 What a vast enterprise has been marshaled in the service of such a minute idea . 2 +35180 1654 What a vast enterprise has been marshaled in the service of such a minute idea 1 +35181 1654 a vast enterprise has been marshaled in the service of such a minute idea 2 +35182 1654 a vast enterprise 2 +35183 1654 vast enterprise 2 +35184 1654 has been marshaled in the service of such a minute idea 1 +35185 1654 been marshaled in the service of such a minute idea 2 +35186 1654 marshaled in the service of such a minute idea 1 +35187 1654 marshaled 2 +35188 1654 in the service of such a minute idea 2 +35189 1654 the service of such a minute idea 2 +35190 1654 the service 2 +35191 1654 service 2 +35192 1654 of such a minute idea 3 +35193 1654 such a minute idea 1 +35194 1654 a minute idea 2 +35195 1654 minute idea 1 +35196 1655 This may be Burns 's strongest film since The Brothers McMullen . 4 +35197 1655 may be Burns 's strongest film since The Brothers McMullen . 4 +35198 1655 may be Burns 's strongest film since The Brothers McMullen 4 +35199 1655 be Burns 's strongest film since The Brothers McMullen 3 +35200 1655 Burns 's strongest film since The Brothers McMullen 4 +35201 1655 Burns 's strongest film 3 +35202 1655 Burns 's 2 +35203 1655 strongest film 3 +35204 1655 strongest 3 +35205 1655 since The Brothers McMullen 2 +35206 1655 The Brothers McMullen 2 +35207 1655 Brothers McMullen 2 +35208 1655 McMullen 2 +35209 1656 No better or worse than ` Truth or Consequences , N.M. ' or any other interchangeable actioner with imbecilic Mafia toolbags botching a routine assignment in a Western backwater . 1 +35210 1656 No better or worse than ` Truth or Consequences , N.M. ' or any other interchangeable actioner with imbecilic Mafia 1 +35211 1656 No better or worse than ` Truth or Consequences , N.M. ' or any other interchangeable actioner 2 +35212 1656 better or worse than ` Truth or Consequences , N.M. ' or any other interchangeable actioner 2 +35213 1656 better or worse than ` Truth or Consequences , N.M. ' or any other interchangeable 2 +35214 1656 better or worse 2 +35215 1656 better or 2 +35216 1656 than ` Truth or Consequences , N.M. ' or any other interchangeable 2 +35217 1656 ` Truth or Consequences , N.M. ' or any other interchangeable 2 +35218 1656 Truth or Consequences , N.M. ' or any other interchangeable 2 +35219 1656 Truth or Consequences , N.M. ' or 2 +35220 1656 Truth or Consequences , N.M. ' 2 +35221 1656 Truth or Consequences , 2 +35222 1656 Truth or Consequences 2 +35223 1656 Truth or 2 +35224 1656 N.M. ' 2 +35225 1656 N.M. 2 +35226 1656 any other interchangeable 2 +35227 1656 other interchangeable 2 +35228 1656 interchangeable 2 +35229 1656 actioner 2 +35230 1656 with imbecilic Mafia 1 +35231 1656 imbecilic Mafia 2 +35232 1656 imbecilic 1 +35233 1656 Mafia 2 +35234 1656 toolbags botching a routine assignment in a Western backwater . 2 +35235 1656 toolbags botching a routine assignment in a Western backwater 1 +35236 1656 toolbags 1 +35237 1656 botching a routine assignment in a Western backwater 2 +35238 1656 botching a routine assignment 1 +35239 1656 botching 1 +35240 1656 a routine assignment 2 +35241 1656 routine assignment 2 +35242 1656 assignment 2 +35243 1656 in a Western backwater 2 +35244 1656 a Western backwater 2 +35245 1656 Western backwater 2 +35246 1656 backwater 3 +35247 1657 Deliciously mean-spirited and wryly observant . 3 +35248 1657 Deliciously 3 +35249 1657 mean-spirited and wryly observant . 1 +35250 1657 mean-spirited and wryly 1 +35251 1657 mean-spirited and 1 +35252 1657 wryly 3 +35253 1657 observant . 3 +35254 1657 observant 2 +35255 1658 When twentysomething hotsies make movies about their lives , hard-driving narcissism is a given , but what a world we 'd live in if Argento 's Hollywood counterparts ... had this much imagination and nerve . 3 +35256 1658 When twentysomething hotsies make movies about their lives , hard-driving narcissism is a given , but what a world we 'd live in if Argento 's Hollywood counterparts ... had this much imagination and nerve 3 +35257 1658 When twentysomething hotsies make movies about their lives , hard-driving narcissism is a given , but 1 +35258 1658 When twentysomething hotsies make movies about their lives , hard-driving narcissism is a given , 2 +35259 1658 When twentysomething hotsies make movies about their lives , hard-driving narcissism is a given 1 +35260 1658 When twentysomething hotsies make movies about their lives 2 +35261 1658 twentysomething hotsies make movies about their lives 2 +35262 1658 twentysomething hotsies 2 +35263 1658 twentysomething 2 +35264 1658 hotsies 2 +35265 1658 make movies about their lives 2 +35266 1658 movies about their lives 2 +35267 1658 about their lives 2 +35268 1658 their lives 2 +35269 1658 , hard-driving narcissism is a given 2 +35270 1658 hard-driving narcissism is a given 1 +35271 1658 hard-driving narcissism 2 +35272 1658 hard-driving 3 +35273 1658 narcissism 1 +35274 1658 is a given 2 +35275 1658 a given 2 +35276 1658 what a world we 'd live in if Argento 's Hollywood counterparts ... had this much imagination and nerve 3 +35277 1658 what a world 2 +35278 1658 we 'd live in if Argento 's Hollywood counterparts ... had this much imagination and nerve 3 +35279 1658 'd live in if Argento 's Hollywood counterparts ... had this much imagination and nerve 3 +35280 1658 live in if Argento 's Hollywood counterparts ... had this much imagination and nerve 3 +35281 1658 in if Argento 's Hollywood counterparts ... had this much imagination and nerve 3 +35282 1658 if Argento 's Hollywood counterparts ... had this much imagination and nerve 3 +35283 1658 if Argento 's Hollywood counterparts 2 +35284 1658 Argento 's Hollywood counterparts 2 +35285 1658 Argento 3 +35286 1658 's Hollywood counterparts 2 +35287 1658 ... had this much imagination and nerve 3 +35288 1658 had this much imagination and nerve 3 +35289 1658 this much imagination and nerve 3 +35290 1658 this much imagination and 3 +35291 1658 this much imagination 3 +35292 1658 much imagination 4 +35293 1658 nerve 2 +35294 1659 But it 's worth the concentration . 3 +35295 1659 it 's worth the concentration . 3 +35296 1659 's worth the concentration . 3 +35297 1659 's worth the concentration 3 +35298 1659 worth the concentration 4 +35299 1659 the concentration 3 +35300 1659 concentration 3 +35301 1660 Despite its promising cast of characters , Big Trouble remains a loosely tied series of vignettes which only prove that ` zany ' does n't necessarily mean ` funny . ' 1 +35302 1660 Despite its promising cast of characters 1 +35303 1660 its promising cast of characters 3 +35304 1660 its promising cast 3 +35305 1660 promising cast 3 +35306 1660 , Big Trouble remains a loosely tied series of vignettes which only prove that ` zany ' does n't necessarily mean ` funny . ' 1 +35307 1660 Big Trouble remains a loosely tied series of vignettes which only prove that ` zany ' does n't necessarily mean ` funny . ' 0 +35308 1660 Big Trouble 2 +35309 1660 remains a loosely tied series of vignettes which only prove that ` zany ' does n't necessarily mean ` funny . ' 0 +35310 1660 remains a loosely tied series of vignettes which only prove that ` zany ' does n't necessarily mean ` funny . 1 +35311 1660 remains a loosely tied series of vignettes which only prove that ` zany ' does n't necessarily mean ` funny 2 +35312 1660 a loosely tied series of vignettes which only prove that ` zany ' does n't necessarily mean ` funny 0 +35313 1660 a loosely tied series 2 +35314 1660 loosely tied series 1 +35315 1660 loosely tied 1 +35316 1660 tied 2 +35317 1660 of vignettes which only prove that ` zany ' does n't necessarily mean ` funny 1 +35318 1660 vignettes which only prove that ` zany ' does n't necessarily mean ` funny 0 +35319 1660 which only prove that ` zany ' does n't necessarily mean ` funny 2 +35320 1660 only prove that ` zany ' does n't necessarily mean ` funny 1 +35321 1660 prove that ` zany ' does n't necessarily mean ` funny 1 +35322 1660 that ` zany ' does n't necessarily mean ` funny 2 +35323 1660 ` zany ' does n't necessarily mean ` funny 1 +35324 1660 ` zany ' 2 +35325 1660 zany ' 3 +35326 1660 zany 2 +35327 1660 does n't necessarily mean ` funny 2 +35328 1660 mean ` funny 2 +35329 1660 ` funny 3 +35330 1661 But the second half of the movie really goes downhill . 0 +35331 1661 the second half of the movie really goes downhill . 1 +35332 1661 the second half of the movie 2 +35333 1661 really goes downhill . 0 +35334 1661 goes downhill . 1 +35335 1661 goes downhill 1 +35336 1661 downhill 1 +35337 1662 It is supremely unfunny and unentertaining to watch middle-age and older men drink to excess , piss on trees , b.s. one another and put on a show in drag . 0 +35338 1662 It is supremely unfunny and unentertaining to watch middle-age and older men drink to excess , piss on trees , b.s. one another and put on a show in drag 0 +35339 1662 It is supremely unfunny and unentertaining to watch middle-age and 0 +35340 1662 It is supremely unfunny and unentertaining to watch middle-age 0 +35341 1662 is supremely unfunny and unentertaining to watch middle-age 0 +35342 1662 is supremely unfunny and unentertaining 1 +35343 1662 supremely unfunny and unentertaining 0 +35344 1662 unfunny and unentertaining 1 +35345 1662 unfunny and 0 +35346 1662 unentertaining 1 +35347 1662 to watch middle-age 2 +35348 1662 watch middle-age 2 +35349 1662 middle-age 2 +35350 1662 older men drink to excess , piss on trees , b.s. one another and put on a show in drag 1 +35351 1662 older men 2 +35352 1662 drink to excess , piss on trees , b.s. one another and put on a show in drag 2 +35353 1662 drink to excess , piss on trees , b.s. one another and 2 +35354 1662 drink to excess , piss on trees , b.s. one another 0 +35355 1662 drink to excess , 2 +35356 1662 drink to excess 2 +35357 1662 drink 2 +35358 1662 to excess 2 +35359 1662 piss on trees , b.s. one another 1 +35360 1662 piss 2 +35361 1662 on trees , b.s. one another 2 +35362 1662 trees , b.s. one another 2 +35363 1662 trees , 2 +35364 1662 trees 2 +35365 1662 b.s. one another 1 +35366 1662 b.s. one 2 +35367 1662 b.s. 1 +35368 1662 put on a show in drag 2 +35369 1662 put on a show 3 +35370 1662 on a show 2 +35371 1662 a show 2 +35372 1662 in drag 2 +35373 1663 The big finish is a bit like getting all excited about a chocolate eclair and then biting into it and finding the filling missing . 1 +35374 1663 The big finish 2 +35375 1663 big finish 2 +35376 1663 is a bit like getting all excited about a chocolate eclair and then biting into it and finding the filling missing . 1 +35377 1663 is a bit like getting all excited about a chocolate eclair and then biting into it and finding the filling missing 0 +35378 1663 a bit like getting all excited about a chocolate eclair and then biting into it and finding the filling missing 1 +35379 1663 like getting all excited about a chocolate eclair and then biting into it and finding the filling missing 0 +35380 1663 getting all excited about a chocolate eclair and then biting into it and finding the filling missing 0 +35381 1663 getting all excited about a chocolate eclair and 2 +35382 1663 getting all excited about a chocolate eclair 2 +35383 1663 all excited about a chocolate eclair 3 +35384 1663 excited about a chocolate eclair 2 +35385 1663 excited about a chocolate 2 +35386 1663 excited 3 +35387 1663 about a chocolate 2 +35388 1663 a chocolate 3 +35389 1663 chocolate 2 +35390 1663 eclair 2 +35391 1663 then biting into it and finding the filling missing 1 +35392 1663 then biting into it and 2 +35393 1663 then biting into it 2 +35394 1663 biting into it 2 +35395 1663 into it 2 +35396 1663 finding the filling missing 2 +35397 1663 the filling missing 2 +35398 1663 the filling 3 +35399 1664 A good music documentary , probably one of the best since The Last Waltz . 4 +35400 1664 A good music documentary , probably one of the best since The Last Waltz 4 +35401 1664 A good music documentary , 4 +35402 1664 A good music documentary 4 +35403 1664 good music documentary 3 +35404 1664 music documentary 2 +35405 1664 probably one of the best since The Last Waltz 4 +35406 1664 probably one 2 +35407 1664 of the best since The Last Waltz 3 +35408 1664 the best since The Last Waltz 3 +35409 1664 since The Last Waltz 2 +35410 1664 The Last Waltz 2 +35411 1664 Last Waltz 2 +35412 1664 Waltz 2 +35413 1665 It is a movie about passion . 2 +35414 1665 is a movie about passion . 3 +35415 1665 is a movie about passion 2 +35416 1665 a movie about passion 2 +35417 1665 about passion 3 +35418 1666 Certainly . 2 +35419 1667 But what 's nice is that there 's a casual intelligence that permeates the script . 4 +35420 1667 what 's nice is that there 's a casual intelligence that permeates the script . 3 +35421 1667 what 's nice 2 +35422 1667 's nice 3 +35423 1667 is that there 's a casual intelligence that permeates the script . 3 +35424 1667 is that there 's a casual intelligence that permeates the script 3 +35425 1667 that there 's a casual intelligence that permeates the script 3 +35426 1667 there 's a casual intelligence that permeates the script 3 +35427 1667 's a casual intelligence that permeates the script 2 +35428 1667 a casual intelligence that permeates the script 3 +35429 1667 a casual intelligence 3 +35430 1667 casual intelligence 2 +35431 1667 that permeates the script 2 +35432 1667 permeates the script 2 +35433 1668 Lush and beautifully photographed -LRB- somebody suggested the stills might make a nice coffee table book -RRB- , but ultimately you 'll leave the theater wondering why these people mattered . 1 +35434 1668 Lush and beautifully photographed -LRB- somebody suggested the stills might make a nice coffee table book -RRB- , but ultimately you 'll leave the theater wondering why these people mattered 3 +35435 1668 Lush and beautifully photographed -LRB- somebody suggested the stills might make a nice coffee table book -RRB- , but 3 +35436 1668 Lush and beautifully photographed -LRB- somebody suggested the stills might make a nice coffee table book -RRB- , 4 +35437 1668 Lush and beautifully photographed -LRB- somebody suggested the stills might make a nice coffee table book -RRB- 3 +35438 1668 Lush and beautifully 3 +35439 1668 Lush and 2 +35440 1668 photographed -LRB- somebody suggested the stills might make a nice coffee table book -RRB- 2 +35441 1668 -LRB- somebody suggested the stills might make a nice coffee table book -RRB- 1 +35442 1668 somebody suggested the stills might make a nice coffee table book -RRB- 2 +35443 1668 somebody suggested the stills might make a nice coffee table book 2 +35444 1668 somebody 2 +35445 1668 suggested the stills might make a nice coffee table book 2 +35446 1668 suggested 2 +35447 1668 the stills might make a nice coffee table book 1 +35448 1668 the stills 2 +35449 1668 stills 2 +35450 1668 might make a nice coffee table book 2 +35451 1668 make a nice coffee table book 3 +35452 1668 a nice coffee table book 3 +35453 1668 nice coffee table book 2 +35454 1668 coffee table book 2 +35455 1668 table book 2 +35456 1668 table 2 +35457 1668 ultimately you 'll leave the theater wondering why these people mattered 0 +35458 1668 you 'll leave the theater wondering why these people mattered 0 +35459 1668 'll leave the theater wondering why these people mattered 2 +35460 1668 leave the theater wondering why these people mattered 2 +35461 1668 the theater wondering why these people mattered 1 +35462 1668 wondering why these people mattered 1 +35463 1668 why these people mattered 2 +35464 1668 these people mattered 3 +35465 1668 mattered 2 +35466 1669 ... another example of how Sandler is losing his touch . 1 +35467 1669 another example of how Sandler is losing his touch . 2 +35468 1669 another example of how Sandler is losing his touch 1 +35469 1669 another example 2 +35470 1669 of how Sandler is losing his touch 1 +35471 1669 how Sandler is losing his touch 1 +35472 1669 Sandler is losing his touch 1 +35473 1669 is losing his touch 1 +35474 1669 losing his touch 1 +35475 1669 his touch 2 +35476 1670 This is an undeniably intriguing film from an adventurous young talent who finds his inspiration on the fringes of the American underground . 4 +35477 1670 is an undeniably intriguing film from an adventurous young talent who finds his inspiration on the fringes of the American underground . 3 +35478 1670 is an undeniably intriguing film from an adventurous young talent who finds his inspiration on the fringes of the American underground 3 +35479 1670 an undeniably intriguing film from an adventurous young talent who finds his inspiration on the fringes of the American underground 4 +35480 1670 an undeniably intriguing film 3 +35481 1670 undeniably intriguing film 4 +35482 1670 undeniably intriguing 4 +35483 1670 from an adventurous young talent who finds his inspiration on the fringes of the American underground 3 +35484 1670 an adventurous young talent who finds his inspiration on the fringes of the American underground 3 +35485 1670 an adventurous young talent 3 +35486 1670 adventurous young talent 4 +35487 1670 adventurous 3 +35488 1670 young talent 3 +35489 1670 who finds his inspiration on the fringes of the American underground 3 +35490 1670 finds his inspiration on the fringes of the American underground 3 +35491 1670 finds his inspiration 3 +35492 1670 his inspiration 3 +35493 1670 inspiration 4 +35494 1670 on the fringes of the American underground 2 +35495 1670 the fringes of the American underground 2 +35496 1670 the fringes 2 +35497 1670 fringes 2 +35498 1670 of the American underground 2 +35499 1670 the American underground 2 +35500 1670 American underground 2 +35501 1670 underground 2 +35502 1671 A fleet-footed and pleasingly upbeat family diversion . 3 +35503 1671 A fleet-footed and pleasingly upbeat family 3 +35504 1671 fleet-footed and pleasingly upbeat family 2 +35505 1671 fleet-footed and pleasingly upbeat 4 +35506 1671 fleet-footed and 2 +35507 1671 fleet-footed 2 +35508 1671 pleasingly upbeat 3 +35509 1671 pleasingly 3 +35510 1671 upbeat 3 +35511 1671 diversion . 2 +35512 1672 Efficient , suitably anonymous chiller . 3 +35513 1672 Efficient , suitably anonymous chiller 3 +35514 1672 Efficient , 3 +35515 1672 Efficient 3 +35516 1672 suitably anonymous chiller 3 +35517 1672 suitably 2 +35518 1672 anonymous chiller 3 +35519 1672 anonymous 2 +35520 1672 chiller 2 +35521 1673 This follow-up seems so similar to the 1953 Disney classic that it makes one long for a geriatric Peter . 2 +35522 1673 This follow-up 2 +35523 1673 follow-up 2 +35524 1673 seems so similar to the 1953 Disney classic that it makes one long for a geriatric Peter . 0 +35525 1673 seems so similar to the 1953 Disney classic that it makes one long for a geriatric Peter 1 +35526 1673 seems so similar to the 1953 Disney classic 2 +35527 1673 so similar to the 1953 Disney classic 3 +35528 1673 similar to the 1953 Disney classic 3 +35529 1673 to the 1953 Disney classic 2 +35530 1673 the 1953 Disney classic 2 +35531 1673 1953 Disney classic 2 +35532 1673 1953 2 +35533 1673 Disney classic 3 +35534 1673 that it makes one long for a geriatric Peter 2 +35535 1673 it makes one long for a geriatric Peter 1 +35536 1673 makes one long for a geriatric Peter 2 +35537 1673 makes one long 2 +35538 1673 one long 2 +35539 1673 for a geriatric Peter 2 +35540 1673 a geriatric Peter 1 +35541 1673 geriatric Peter 1 +35542 1674 The movie 's plot is almost entirely witless and inane , carrying every gag two or three times beyond its limit to sustain a laugh . 0 +35543 1674 The movie 's plot 2 +35544 1674 is almost entirely witless and inane , carrying every gag two or three times beyond its limit to sustain a laugh . 0 +35545 1674 is almost entirely witless and inane , carrying every gag two or three times beyond its limit to sustain a laugh 0 +35546 1674 is almost entirely witless and inane , 0 +35547 1674 almost entirely witless and inane , 0 +35548 1674 entirely witless and inane , 0 +35549 1674 entirely witless and inane 0 +35550 1674 entirely witless and 0 +35551 1674 entirely witless 0 +35552 1674 carrying every gag two or three times beyond its limit to sustain a laugh 2 +35553 1674 carrying every gag two or three times 2 +35554 1674 every gag two or three times 1 +35555 1674 gag two or three times 1 +35556 1674 two or three times 2 +35557 1674 or three times 2 +35558 1674 three times 2 +35559 1674 beyond its limit to sustain a laugh 1 +35560 1674 its limit to sustain a laugh 1 +35561 1674 limit to sustain a laugh 2 +35562 1674 to sustain a laugh 3 +35563 1674 sustain a laugh 2 +35564 1675 This movie is so bad , that it 's almost worth seeing because it 's so bad . 1 +35565 1675 is so bad , that it 's almost worth seeing because it 's so bad . 0 +35566 1675 is so bad , that it 's almost worth seeing because it 's so bad 0 +35567 1675 is so bad , 1 +35568 1675 is so bad 0 +35569 1675 so bad 1 +35570 1675 that it 's almost worth seeing because it 's so bad 1 +35571 1675 it 's almost worth seeing because it 's so bad 1 +35572 1675 's almost worth seeing because it 's so bad 1 +35573 1675 's almost worth 2 +35574 1675 almost worth 2 +35575 1675 seeing because it 's so bad 0 +35576 1675 because it 's so bad 0 +35577 1675 it 's so bad 1 +35578 1675 's so bad 1 +35579 1676 Gently humorous and touching . 3 +35580 1676 humorous and touching . 3 +35581 1676 humorous and touching 3 +35582 1677 At its worst , the movie is pretty diverting ; the pity is that it rarely achieves its best . 2 +35583 1677 At its worst , the movie is pretty diverting ; the pity is that it rarely achieves its best 2 +35584 1677 At its worst , the movie is pretty diverting ; 1 +35585 1677 At its worst , the movie is pretty diverting 1 +35586 1677 At its worst 0 +35587 1677 its worst 0 +35588 1677 , the movie is pretty diverting 3 +35589 1677 the movie is pretty diverting 2 +35590 1677 is pretty diverting 2 +35591 1677 pretty diverting 3 +35592 1677 the pity is that it rarely achieves its best 1 +35593 1677 the pity 1 +35594 1677 is that it rarely achieves its best 1 +35595 1677 that it rarely achieves its best 1 +35596 1677 it rarely achieves its best 1 +35597 1677 rarely achieves its best 1 +35598 1677 achieves its best 3 +35599 1678 It cuts to the core of what it actually means to face your fears , to be a girl in a world of boys , to be a boy truly in love with a girl , and to ride the big metaphorical wave that is life -- wherever it takes you . 4 +35600 1678 cuts to the core of what it actually means to face your fears , to be a girl in a world of boys , to be a boy truly in love with a girl , and to ride the big metaphorical wave that is life -- wherever it takes you . 4 +35601 1678 cuts to the core of what it actually means to face your fears , to be a girl in a world of boys , to be a boy truly in love with a girl , and to ride the big metaphorical wave that is life -- wherever it takes you 3 +35602 1678 to the core of what it actually means to face your fears , to be a girl in a world of boys , to be a boy truly in love with a girl , and to ride the big metaphorical wave that is life -- wherever it takes you 3 +35603 1678 to the core of what it actually means to face your fears , to be a girl in a world of boys , to be a boy truly in love with a girl , and 3 +35604 1678 to the core of what it actually means to face your fears , to be a girl in a world of boys , to be a boy truly in love with a girl , 3 +35605 1678 to the core of what it actually means to face your fears , to be a girl in a world of boys , to be a boy truly in love with a girl 3 +35606 1678 to the core of what it actually means to face your fears , to be a girl in a world of boys , 2 +35607 1678 to the core of what it actually means to face your fears , to be a girl in a world of boys 3 +35608 1678 to the core of what it actually means to face your fears 2 +35609 1678 the core of what it actually means to face your fears 2 +35610 1678 of what it actually means to face your fears 3 +35611 1678 what it actually means to face your fears 2 +35612 1678 it actually means to face your fears 2 +35613 1678 actually means to face your fears 3 +35614 1678 means to face your fears 3 +35615 1678 to face your fears 2 +35616 1678 face your fears 2 +35617 1678 your fears 2 +35618 1678 , to be a girl in a world of boys 2 +35619 1678 to be a girl in a world of boys 2 +35620 1678 be a girl in a world of boys 2 +35621 1678 a girl in a world of boys 2 +35622 1678 a girl 2 +35623 1678 in a world of boys 2 +35624 1678 a world of boys 2 +35625 1678 of boys 2 +35626 1678 to be a boy truly in love with a girl 3 +35627 1678 be a boy truly in love with a girl 2 +35628 1678 be a boy 2 +35629 1678 truly in love with a girl 3 +35630 1678 in love with a girl 3 +35631 1678 love with a girl 2 +35632 1678 with a girl 2 +35633 1678 to ride the big metaphorical wave that is life -- wherever it takes you 3 +35634 1678 ride the big metaphorical wave that is life -- wherever it takes you 3 +35635 1678 the big metaphorical wave that is life -- wherever it takes you 3 +35636 1678 the big metaphorical wave 2 +35637 1678 big metaphorical wave 2 +35638 1678 metaphorical wave 2 +35639 1678 metaphorical 2 +35640 1678 that is life -- wherever it takes you 2 +35641 1678 is life -- wherever it takes you 2 +35642 1678 is life -- 2 +35643 1678 is life 2 +35644 1678 wherever it takes you 2 +35645 1678 wherever 2 +35646 1678 it takes you 2 +35647 1679 Spider-Man is in the same category as X-Men - occasionally brilliant but mostly average , showing signs of potential for the sequels , but not giving us much this time around . 2 +35648 1679 is in the same category as X-Men - occasionally brilliant but mostly average , showing signs of potential for the sequels , but not giving us much this time around . 1 +35649 1679 is in the same category as X-Men - occasionally brilliant but mostly average , showing signs of potential for the sequels , but not giving us much this time around 3 +35650 1679 is in the same category 3 +35651 1679 in the same category 2 +35652 1679 the same category 2 +35653 1679 same category 2 +35654 1679 as X-Men - occasionally brilliant but mostly average , showing signs of potential for the sequels , but not giving us much this time around 1 +35655 1679 X-Men - occasionally brilliant but mostly average , showing signs of potential for the sequels , but not giving us much this time around 2 +35656 1679 X-Men - occasionally brilliant but mostly average , 3 +35657 1679 X-Men - occasionally brilliant but mostly average 2 +35658 1679 X-Men - 2 +35659 1679 X-Men 2 +35660 1679 occasionally brilliant but mostly average 3 +35661 1679 occasionally brilliant but 3 +35662 1679 occasionally brilliant 3 +35663 1679 mostly average 2 +35664 1679 showing signs of potential for the sequels , but not giving us much this time around 2 +35665 1679 showing signs of potential for the sequels , but not 3 +35666 1679 showing signs of potential for the sequels , 3 +35667 1679 showing signs of potential for the sequels 2 +35668 1679 signs of potential for the sequels 2 +35669 1679 of potential for the sequels 2 +35670 1679 potential for the sequels 3 +35671 1679 for the sequels 2 +35672 1679 the sequels 2 +35673 1679 giving us much this time around 2 +35674 1679 giving us much this time 3 +35675 1679 giving us 2 +35676 1679 much this time 2 +35677 1680 When the twist endings were actually surprising ? 2 +35678 1680 the twist endings were actually surprising ? 2 +35679 1680 the twist endings were actually surprising 4 +35680 1680 the twist endings 3 +35681 1680 twist endings 3 +35682 1680 were actually surprising 3 +35683 1680 were actually 2 +35684 1681 Much of the cast is stiff or just plain bad . 1 +35685 1681 Much of the cast 2 +35686 1681 is stiff or just plain bad . 1 +35687 1681 is stiff or just plain bad 0 +35688 1681 stiff or just plain bad 0 +35689 1681 stiff or 2 +35690 1681 stiff 1 +35691 1681 just plain bad 0 +35692 1681 plain bad 1 +35693 1682 The last three narcissists left on earth compete for each others ' affections . 2 +35694 1682 The last three narcissists left on earth 2 +35695 1682 The last three narcissists 1 +35696 1682 last three narcissists 2 +35697 1682 three narcissists 1 +35698 1682 narcissists 2 +35699 1682 left on earth 2 +35700 1682 compete for each others ' affections . 2 +35701 1682 compete for each others ' affections 2 +35702 1682 compete 2 +35703 1682 for each others ' affections 3 +35704 1682 each others ' affections 2 +35705 1682 each others ' 2 +35706 1682 others ' 2 +35707 1682 others 2 +35708 1682 affections 2 +35709 1683 Represents a worthy departure from the culture clash comedies that have marked an emerging Indian American cinema . 3 +35710 1683 Represents a worthy departure from the culture clash comedies that have marked an emerging Indian American cinema 3 +35711 1683 Represents a worthy departure 2 +35712 1683 a worthy departure 2 +35713 1683 worthy departure 2 +35714 1683 departure 2 +35715 1683 from the culture clash comedies that have marked an emerging Indian American cinema 2 +35716 1683 the culture clash comedies that have marked an emerging Indian American cinema 2 +35717 1683 the culture clash comedies 4 +35718 1683 culture clash comedies 2 +35719 1683 clash comedies 2 +35720 1683 that have marked an emerging Indian American cinema 2 +35721 1683 have marked an emerging Indian American cinema 3 +35722 1683 marked an emerging Indian American cinema 3 +35723 1683 marked 2 +35724 1683 an emerging Indian American cinema 2 +35725 1683 emerging Indian American cinema 2 +35726 1683 Indian American cinema 2 +35727 1683 American cinema 2 +35728 1684 A compelling film . 4 +35729 1684 compelling film . 4 +35730 1685 The movie is well done , but slow . 1 +35731 1685 is well done , but slow . 2 +35732 1685 is well done , but slow 2 +35733 1685 well done , but slow 3 +35734 1685 done , but slow 1 +35735 1685 , but slow 1 +35736 1686 It is up to you to decide if you need to see it . 2 +35737 1686 is up to you to decide if you need to see it . 2 +35738 1686 is up to you to decide if you need to see it 2 +35739 1686 is up to you 2 +35740 1686 up to you 2 +35741 1686 to decide if you need to see it 2 +35742 1686 decide if you need to see it 1 +35743 1686 decide 2 +35744 1686 if you need to see it 2 +35745 1686 you need to see it 3 +35746 1686 need to see it 3 +35747 1687 Yet in its own aloof , unreachable way it 's so fascinating you wo n't be able to look away for a second . 3 +35748 1687 in its own aloof , unreachable way it 's so fascinating you wo n't be able to look away for a second . 4 +35749 1687 in its own aloof , unreachable way 2 +35750 1687 its own aloof , unreachable way 2 +35751 1687 its own aloof , 2 +35752 1687 its own aloof 2 +35753 1687 own aloof 2 +35754 1687 unreachable way 2 +35755 1687 unreachable 1 +35756 1687 it 's so fascinating you wo n't be able to look away for a second . 4 +35757 1687 's so fascinating you wo n't be able to look away for a second . 4 +35758 1687 's so fascinating you wo n't be able to look away for a second 4 +35759 1687 so fascinating you wo n't be able to look away for a second 4 +35760 1687 fascinating you wo n't be able to look away for a second 4 +35761 1687 you wo n't be able to look away for a second 4 +35762 1687 wo n't be able to look away for a second 4 +35763 1687 be able to look away for a second 3 +35764 1687 able to look away for a second 2 +35765 1687 to look away for a second 2 +35766 1687 look away for a second 2 +35767 1687 look away 2 +35768 1687 for a second 2 +35769 1687 a second 2 +35770 1688 `` Bad '' is the operative word for `` Bad Company , '' and I do n't mean that in a good way . 0 +35771 1688 `` Bad '' is the operative word for `` Bad Company , '' and I do n't mean that in a good way 0 +35772 1688 `` Bad '' is the operative word for `` Bad Company , '' and 0 +35773 1688 `` Bad '' is the operative word for `` Bad Company , '' 1 +35774 1688 `` Bad '' is the operative word for `` Bad Company , 0 +35775 1688 `` Bad '' is the operative word for `` Bad Company 0 +35776 1688 Bad '' is the operative word for `` Bad Company 0 +35777 1688 '' is the operative word for `` Bad Company 1 +35778 1688 is the operative word for `` Bad Company 2 +35779 1688 the operative word for `` Bad Company 1 +35780 1688 the operative word 2 +35781 1688 operative word 2 +35782 1688 operative 2 +35783 1688 word 2 +35784 1688 for `` Bad Company 2 +35785 1688 for `` 2 +35786 1688 I do n't mean that in a good way 1 +35787 1688 do n't mean that in a good way 2 +35788 1688 mean that in a good way 2 +35789 1688 that in a good way 3 +35790 1688 in a good way 3 +35791 1688 a good way 3 +35792 1688 good way 2 +35793 1689 I 'm not a fan of the phrase ` life affirming ' because it usually means ` schmaltzy , ' but Real Women Have Curves truly is life affirming . 3 +35794 1689 I 'm not a fan of the phrase ` life affirming ' because it usually means ` schmaltzy , ' but Real Women Have Curves truly is life affirming 4 +35795 1689 I 'm not a fan of the phrase ` life affirming ' because it usually means ` schmaltzy , ' but 2 +35796 1689 I 'm not a fan of the phrase ` life affirming ' because it usually means ` schmaltzy , ' 1 +35797 1689 I 'm not a fan of the phrase ` life affirming ' because it usually means ` schmaltzy , 2 +35798 1689 I 'm not a fan of the phrase ` life affirming ' because it usually means ` schmaltzy 2 +35799 1689 'm not a fan of the phrase ` life affirming ' because it usually means ` schmaltzy 2 +35800 1689 a fan of the phrase ` life affirming ' because it usually means ` schmaltzy 1 +35801 1689 of the phrase ` life affirming ' because it usually means ` schmaltzy 2 +35802 1689 the phrase ` life affirming ' because it usually means ` schmaltzy 2 +35803 1689 the phrase ` life affirming ' 2 +35804 1689 phrase ` life affirming ' 3 +35805 1689 ` life affirming ' 3 +35806 1689 life affirming ' 3 +35807 1689 affirming ' 3 +35808 1689 affirming 3 +35809 1689 because it usually means ` schmaltzy 2 +35810 1689 it usually means ` schmaltzy 2 +35811 1689 usually means ` schmaltzy 2 +35812 1689 means ` schmaltzy 2 +35813 1689 means ` 2 +35814 1689 schmaltzy 1 +35815 1689 Real Women Have Curves truly is life affirming 3 +35816 1689 truly is life affirming 4 +35817 1689 is life affirming 2 +35818 1689 life affirming 3 +35819 1690 No one can doubt the filmmakers ' motives , but The Guys still feels counterproductive . 1 +35820 1690 No one can doubt the filmmakers ' motives , but The Guys still feels counterproductive 1 +35821 1690 No one can doubt the filmmakers ' motives , but 2 +35822 1690 No one can doubt the filmmakers ' motives , 2 +35823 1690 No one can doubt the filmmakers ' motives 2 +35824 1690 No one 2 +35825 1690 can doubt the filmmakers ' motives 2 +35826 1690 doubt the filmmakers ' motives 1 +35827 1690 the filmmakers ' motives 2 +35828 1690 motives 2 +35829 1690 The Guys still feels counterproductive 1 +35830 1690 still feels counterproductive 1 +35831 1690 feels counterproductive 1 +35832 1690 counterproductive 2 +35833 1691 Offers a clear-eyed chronicle of a female friendship that is more complex and honest than anything represented in a Hollywood film . 4 +35834 1691 Offers a clear-eyed chronicle of a female friendship that is more complex and honest than anything represented in a Hollywood film 4 +35835 1691 a clear-eyed chronicle of a female friendship that is more complex and honest than anything represented in a Hollywood film 3 +35836 1691 a clear-eyed chronicle 3 +35837 1691 clear-eyed chronicle 3 +35838 1691 clear-eyed 2 +35839 1691 of a female friendship that is more complex and honest than anything represented in a Hollywood film 4 +35840 1691 a female friendship that is more complex and honest than anything represented in a Hollywood film 4 +35841 1691 a female friendship 2 +35842 1691 female friendship 2 +35843 1691 that is more complex and honest than anything represented in a Hollywood film 3 +35844 1691 is more complex and honest than anything represented in a Hollywood film 3 +35845 1691 is more complex and honest 3 +35846 1691 more complex and honest 4 +35847 1691 complex and honest 4 +35848 1691 than anything represented in a Hollywood film 2 +35849 1691 anything represented in a Hollywood film 2 +35850 1691 represented in a Hollywood film 2 +35851 1691 represented 2 +35852 1691 in a Hollywood film 2 +35853 1691 a Hollywood film 3 +35854 1691 Hollywood film 2 +35855 1692 The worst film of the year . 0 +35856 1692 The worst film of the year 0 +35857 1693 ` Christian Bale 's Quinn -LRB- is -RRB- a leather clad grunge-pirate with a hairdo like Gandalf in a wind-tunnel and a simply astounding cor-blimey-luv-a-duck cockney accent . ' 1 +35858 1693 Christian Bale 's Quinn -LRB- is -RRB- a leather clad grunge-pirate with a hairdo like Gandalf in a wind-tunnel and a simply astounding cor-blimey-luv-a-duck cockney accent . ' 2 +35859 1693 Christian Bale 2 +35860 1693 Christian 3 +35861 1693 's Quinn -LRB- is -RRB- a leather clad grunge-pirate with a hairdo like Gandalf in a wind-tunnel and a simply astounding cor-blimey-luv-a-duck cockney accent . ' 3 +35862 1693 's Quinn -LRB- is -RRB- a leather clad grunge-pirate with a hairdo like Gandalf in a wind-tunnel and a simply astounding cor-blimey-luv-a-duck cockney accent . 1 +35863 1693 's Quinn -LRB- is -RRB- a leather clad grunge-pirate with a hairdo like Gandalf in a wind-tunnel and a simply astounding cor-blimey-luv-a-duck cockney accent 2 +35864 1693 Quinn -LRB- is -RRB- a leather clad grunge-pirate with a hairdo like Gandalf in a wind-tunnel and a simply astounding cor-blimey-luv-a-duck cockney accent 2 +35865 1693 Quinn -LRB- is -RRB- 2 +35866 1693 Quinn 2 +35867 1693 a leather clad grunge-pirate with a hairdo like Gandalf in a wind-tunnel and a simply astounding cor-blimey-luv-a-duck cockney accent 2 +35868 1693 a leather 2 +35869 1693 leather 2 +35870 1693 clad grunge-pirate with a hairdo like Gandalf in a wind-tunnel and a simply astounding cor-blimey-luv-a-duck cockney accent 2 +35871 1693 clad grunge-pirate with a hairdo like Gandalf 2 +35872 1693 grunge-pirate with a hairdo like Gandalf 2 +35873 1693 grunge-pirate 2 +35874 1693 with a hairdo like Gandalf 2 +35875 1693 a hairdo like Gandalf 2 +35876 1693 a hairdo 2 +35877 1693 hairdo 2 +35878 1693 like Gandalf 2 +35879 1693 Gandalf 2 +35880 1693 in a wind-tunnel and a simply astounding cor-blimey-luv-a-duck cockney accent 3 +35881 1693 a wind-tunnel and a simply astounding cor-blimey-luv-a-duck cockney accent 3 +35882 1693 a wind-tunnel and 2 +35883 1693 a wind-tunnel 2 +35884 1693 wind-tunnel 2 +35885 1693 a simply astounding cor-blimey-luv-a-duck cockney accent 4 +35886 1693 simply astounding cor-blimey-luv-a-duck cockney accent 2 +35887 1693 simply astounding 4 +35888 1693 astounding 3 +35889 1693 cor-blimey-luv-a-duck cockney accent 2 +35890 1693 cor-blimey-luv-a-duck 2 +35891 1693 cockney accent 2 +35892 1693 cockney 2 +35893 1694 The only thing scary about feardotcom is that the filmmakers and studio are brazen enough to attempt to pass this stinker off as a scary movie . 0 +35894 1694 The only thing scary about feardotcom 1 +35895 1694 scary about feardotcom 2 +35896 1694 about feardotcom 2 +35897 1694 is that the filmmakers and studio are brazen enough to attempt to pass this stinker off as a scary movie . 2 +35898 1694 is that the filmmakers and studio are brazen enough to attempt to pass this stinker off as a scary movie 0 +35899 1694 that the filmmakers and studio are brazen enough to attempt to pass this stinker off as a scary movie 1 +35900 1694 the filmmakers and studio are brazen enough to attempt to pass this stinker off as a scary movie 0 +35901 1694 the filmmakers and studio 2 +35902 1694 filmmakers and studio 2 +35903 1694 filmmakers and 2 +35904 1694 are brazen enough to attempt to pass this stinker off as a scary movie 0 +35905 1694 brazen enough to attempt to pass this stinker off as a scary movie 1 +35906 1694 brazen enough 2 +35907 1694 brazen 2 +35908 1694 to attempt to pass this stinker off as a scary movie 0 +35909 1694 attempt to pass this stinker off as a scary movie 0 +35910 1694 to pass this stinker off as a scary movie 1 +35911 1694 pass this stinker off as a scary movie 1 +35912 1694 pass this stinker off 0 +35913 1694 pass this stinker 1 +35914 1694 this stinker 0 +35915 1694 stinker 2 +35916 1694 as a scary movie 2 +35917 1694 a scary movie 2 +35918 1694 scary movie 2 +35919 1695 Throwing it all away for the fleeting joys of love 's brief moment . 2 +35920 1695 Throwing it all away for the fleeting joys of love 's brief moment 2 +35921 1695 Throwing it all away 1 +35922 1695 Throwing it 1 +35923 1695 all away 2 +35924 1695 for the fleeting joys of love 's brief moment 3 +35925 1695 the fleeting joys of love 's brief moment 3 +35926 1695 the fleeting joys 2 +35927 1695 fleeting joys 3 +35928 1695 fleeting 2 +35929 1695 joys 3 +35930 1695 of love 's brief moment 2 +35931 1695 love 's brief moment 2 +35932 1695 love 's 3 +35933 1695 brief moment 2 +35934 1696 Take away the controversy , and it 's not much more watchable than a Mexican soap opera . 0 +35935 1696 Take away the controversy , and it 's not much more watchable than a Mexican soap opera 0 +35936 1696 Take away the controversy , and 2 +35937 1696 Take away the controversy , 2 +35938 1696 Take away the controversy 3 +35939 1696 it 's not much more watchable than a Mexican soap opera 1 +35940 1696 's not much more watchable than a Mexican soap opera 0 +35941 1696 much more watchable than a Mexican soap opera 2 +35942 1696 much more watchable 3 +35943 1696 more watchable 3 +35944 1696 than a Mexican soap opera 2 +35945 1696 a Mexican soap opera 1 +35946 1696 Mexican soap opera 2 +35947 1697 A raunchy and frequently hilarious follow-up to the gifted Korean American stand-up 's I 'm the One That I Want . 3 +35948 1697 A raunchy and frequently hilarious follow-up to the gifted Korean American stand-up 3 +35949 1697 A raunchy and frequently hilarious follow-up 4 +35950 1697 raunchy and frequently hilarious follow-up 4 +35951 1697 raunchy and frequently hilarious 3 +35952 1697 raunchy and 1 +35953 1697 frequently hilarious 4 +35954 1697 to the gifted Korean American stand-up 3 +35955 1697 the gifted Korean American stand-up 3 +35956 1697 gifted Korean American stand-up 3 +35957 1697 Korean American stand-up 2 +35958 1697 American stand-up 2 +35959 1697 's I 'm the One That I Want . 2 +35960 1697 's I 'm the One That I Want 2 +35961 1697 I 'm the One That I Want 2 +35962 1697 'm the One That I Want 2 +35963 1697 the One That I Want 3 +35964 1697 One That I Want 2 +35965 1697 That I Want 2 +35966 1697 I Want 2 +35967 1698 Painful , horrifying and oppressively tragic , this film should not be missed . 4 +35968 1698 Painful , horrifying and oppressively tragic 0 +35969 1698 , horrifying and oppressively tragic 2 +35970 1698 horrifying and oppressively tragic 1 +35971 1698 horrifying and 2 +35972 1698 oppressively tragic 2 +35973 1698 oppressively 1 +35974 1698 , this film should not be missed . 3 +35975 1698 this film should not be missed . 4 +35976 1698 should not be missed . 4 +35977 1698 should not be missed 3 +35978 1698 should not 1 +35979 1698 be missed 2 +35980 1698 missed 2 +35981 1699 The most brilliant and brutal UK crime film since Jack Carter went back to Newcastle , the first half of Gangster No. 1 drips with style and , at times , blood . 4 +35982 1699 The most brilliant and brutal UK crime film since Jack Carter 4 +35983 1699 The most brilliant and brutal UK crime film 3 +35984 1699 most brilliant and brutal UK crime film 4 +35985 1699 most brilliant and brutal 3 +35986 1699 brilliant and brutal 4 +35987 1699 UK crime film 2 +35988 1699 UK 2 +35989 1699 crime film 2 +35990 1699 since Jack Carter 2 +35991 1699 Jack Carter 2 +35992 1699 Carter 2 +35993 1699 went back to Newcastle , the first half of Gangster No. 1 drips with style and , at times , blood . 3 +35994 1699 went back to Newcastle , the first half of Gangster No. 1 drips with style and , at times , blood 3 +35995 1699 to Newcastle , the first half of Gangster No. 1 drips with style and , at times , blood 3 +35996 1699 Newcastle , the first half of Gangster No. 1 drips with style and , at times , blood 4 +35997 1699 Newcastle , the first half of Gangster No. 1 drips with style and , at times , 4 +35998 1699 Newcastle , the first half of Gangster No. 1 drips with style and 3 +35999 1699 Newcastle , the first half of Gangster No. 1 drips with style 3 +36000 1699 Newcastle , 2 +36001 1699 Newcastle 2 +36002 1699 the first half of Gangster No. 1 drips with style 3 +36003 1699 the first half of Gangster No. 1 drips 2 +36004 1699 the first half 2 +36005 1699 first half 2 +36006 1699 of Gangster No. 1 drips 2 +36007 1699 Gangster No. 1 drips 1 +36008 1699 No. 1 drips 2 +36009 1699 1 drips 2 +36010 1699 drips 2 +36011 1699 with style 3 +36012 1699 , at times , 2 +36013 1699 at times , 2 +36014 1699 blood 1 +36015 1700 Yes , I suppose it 's lovely that Cal works out his issues with his dad and comes to terms with his picture-perfect life -- but World Traveler gave me no reason to care , so I did n't . 0 +36016 1700 Yes , I suppose it 's lovely that Cal works out his issues with his dad and comes to terms with his picture-perfect life -- but World Traveler gave me no reason to care , so I did n't 0 +36017 1700 Yes , I suppose it 's lovely that Cal works out his issues with his dad and comes to terms with his picture-perfect life -- but World Traveler gave me no reason to care , so 1 +36018 1700 Yes , I suppose it 's lovely that Cal works out his issues with his dad and comes to terms with his picture-perfect life -- but World Traveler gave me no reason to care , 1 +36019 1700 Yes , I suppose it 's lovely that Cal works out his issues with his dad and comes to terms with his picture-perfect life -- but World Traveler gave me no reason to care 2 +36020 1700 , I suppose it 's lovely that Cal works out his issues with his dad and comes to terms with his picture-perfect life -- but World Traveler gave me no reason to care 2 +36021 1700 I suppose it 's lovely that Cal works out his issues with his dad and comes to terms with his picture-perfect life -- but World Traveler gave me no reason to care 1 +36022 1700 I suppose it 's lovely that Cal works out his issues with his dad and comes to terms with his picture-perfect life -- but 2 +36023 1700 I suppose it 's lovely that Cal works out his issues with his dad and comes to terms with his picture-perfect life -- 3 +36024 1700 I suppose it 's lovely that Cal works out his issues with his dad and comes to terms with his picture-perfect life 2 +36025 1700 suppose it 's lovely that Cal works out his issues with his dad and comes to terms with his picture-perfect life 3 +36026 1700 suppose 2 +36027 1700 it 's lovely that Cal works out his issues with his dad and comes to terms with his picture-perfect life 3 +36028 1700 's lovely that Cal works out his issues with his dad and comes to terms with his picture-perfect life 2 +36029 1700 's lovely 3 +36030 1700 that Cal works out his issues with his dad and comes to terms with his picture-perfect life 3 +36031 1700 Cal works out his issues with his dad and comes to terms with his picture-perfect life 2 +36032 1700 works out his issues with his dad and comes to terms with his picture-perfect life 3 +36033 1700 works out his issues with his dad and 2 +36034 1700 works out his issues with his dad 2 +36035 1700 works out his issues 2 +36036 1700 works out 3 +36037 1700 his issues 2 +36038 1700 with his dad 2 +36039 1700 his dad 2 +36040 1700 dad 2 +36041 1700 comes to terms with his picture-perfect life 2 +36042 1700 to terms with his picture-perfect life 2 +36043 1700 terms with his picture-perfect life 3 +36044 1700 with his picture-perfect life 3 +36045 1700 his picture-perfect life 2 +36046 1700 picture-perfect life 3 +36047 1700 picture-perfect 4 +36048 1700 World Traveler gave me no reason to care 1 +36049 1700 gave me no reason to care 1 +36050 1700 gave me 2 +36051 1700 gave 2 +36052 1700 no reason to care 2 +36053 1700 reason to care 2 +36054 1700 to care 2 +36055 1700 I did n't 2 +36056 1701 Broomfield is energized by Volletta Wallace 's maternal fury , her fearlessness , and because of that , his film crackles . 4 +36057 1701 Broomfield is energized by Volletta Wallace 's maternal fury , her fearlessness , and because of that , his film crackles 3 +36058 1701 Broomfield is energized by Volletta Wallace 's maternal fury , her fearlessness , and 4 +36059 1701 Broomfield is energized by Volletta Wallace 's maternal fury , her fearlessness , 3 +36060 1701 Broomfield is energized by Volletta Wallace 's maternal fury , her fearlessness 3 +36061 1701 is energized by Volletta Wallace 's maternal fury , her fearlessness 3 +36062 1701 energized by Volletta Wallace 's maternal fury , her fearlessness 2 +36063 1701 energized 3 +36064 1701 by Volletta Wallace 's maternal fury , her fearlessness 3 +36065 1701 Volletta Wallace 's maternal fury , her fearlessness 3 +36066 1701 Volletta Wallace 's maternal fury , 2 +36067 1701 Volletta Wallace 's maternal fury 1 +36068 1701 Volletta Wallace 's 2 +36069 1701 Volletta 2 +36070 1701 Wallace 's 2 +36071 1701 maternal fury 2 +36072 1701 maternal 2 +36073 1701 fury 2 +36074 1701 her fearlessness 3 +36075 1701 fearlessness 3 +36076 1701 because of that , his film crackles 2 +36077 1701 because of that 2 +36078 1701 of that 3 +36079 1701 , his film crackles 2 +36080 1701 his film crackles 3 +36081 1701 crackles 3 +36082 1702 Yet the act is still charming here . 3 +36083 1702 the act is still charming here . 3 +36084 1702 the act 2 +36085 1702 is still charming here . 3 +36086 1702 is still charming here 4 +36087 1702 is still charming 3 +36088 1702 still charming 3 +36089 1703 The plot 's contrivances are uncomfortably strained . 1 +36090 1703 The plot 's contrivances 2 +36091 1703 The plot 's 2 +36092 1703 plot 's 2 +36093 1703 are uncomfortably strained . 1 +36094 1703 are uncomfortably strained 1 +36095 1703 uncomfortably strained 1 +36096 1704 It has that rare quality of being able to creep the living hell out of you ... 4 +36097 1704 has that rare quality of being able to creep the living hell out of you ... 3 +36098 1704 has that rare quality of being able to creep the living hell out of you 3 +36099 1704 that rare quality of being able to creep the living hell out of you 4 +36100 1704 that rare quality 3 +36101 1704 rare quality 4 +36102 1704 of being able to creep the living hell out of you 2 +36103 1704 being able to creep the living hell out of you 3 +36104 1704 able to creep the living hell out of you 2 +36105 1704 to creep the living hell out of you 1 +36106 1704 creep the living hell out of you 3 +36107 1704 creep 1 +36108 1704 the living hell out of you 2 +36109 1704 the living hell 1 +36110 1704 living hell 1 +36111 1704 out of you 2 +36112 1704 of you 2 +36113 1705 He drags it back , single-handed . 3 +36114 1705 He drags it back , single-handed 2 +36115 1705 He drags it back , 2 +36116 1705 He drags it back 2 +36117 1705 drags it back 1 +36118 1705 drags it 1 +36119 1705 single-handed 2 +36120 1706 It may not be `` Last Tango in Paris '' but ... 2 +36121 1706 may not be `` Last Tango in Paris '' but ... 2 +36122 1706 may not be `` Last Tango in Paris '' but 2 +36123 1706 be `` Last Tango in Paris '' but 2 +36124 1706 `` Last Tango in Paris '' but 2 +36125 1706 `` Last Tango in Paris '' 2 +36126 1706 Last Tango in Paris '' 2 +36127 1706 Last Tango in Paris 2 +36128 1706 Last Tango 2 +36129 1706 Tango 2 +36130 1706 in Paris 2 +36131 1706 Paris 2 +36132 1707 A `` Home Alone '' film that is staged like `` Rosemary 's Baby , '' but is not as well-conceived as either of those films . 1 +36133 1707 A `` Home Alone '' film that is 2 +36134 1707 A `` Home Alone '' film 2 +36135 1707 `` Home Alone '' film 2 +36136 1707 Home Alone '' film 2 +36137 1707 Alone '' film 2 +36138 1707 '' film 2 +36139 1707 staged like `` Rosemary 's Baby , '' but is not as well-conceived as either of those films . 1 +36140 1707 staged like `` Rosemary 's Baby , '' but is not as well-conceived as either of those films 1 +36141 1707 staged like `` Rosemary 's Baby , '' but 2 +36142 1707 staged like `` Rosemary 's Baby , '' 2 +36143 1707 staged like `` Rosemary 's Baby , 2 +36144 1707 staged like `` Rosemary 's Baby 2 +36145 1707 like `` Rosemary 's Baby 2 +36146 1707 Rosemary 's Baby 2 +36147 1707 Rosemary 's 2 +36148 1707 Rosemary 2 +36149 1707 Baby 2 +36150 1707 is not as well-conceived as either of those films 1 +36151 1707 as well-conceived as either of those films 3 +36152 1707 well-conceived as either of those films 2 +36153 1707 well-conceived 4 +36154 1707 as either of those films 2 +36155 1707 either of those films 2 +36156 1707 of those films 2 +36157 1708 A rather average action film that benefits from several funny moments supplied by Epps . 2 +36158 1708 A rather average action film that benefits from several funny moments 3 +36159 1708 A rather average action film 1 +36160 1708 rather average action film 2 +36161 1708 average action film 2 +36162 1708 that benefits from several funny moments 3 +36163 1708 benefits from several funny moments 3 +36164 1708 benefits 3 +36165 1708 from several funny moments 3 +36166 1708 several funny moments 3 +36167 1708 supplied by Epps . 2 +36168 1708 supplied by Epps 2 +36169 1708 supplied 3 +36170 1708 by Epps 2 +36171 1708 Epps 2 +36172 1709 of whimsicality , narrative discipline and serious improvisation 3 +36173 1709 whimsicality , narrative discipline and serious improvisation 4 +36174 1709 whimsicality , narrative discipline and 3 +36175 1709 whimsicality , narrative discipline 4 +36176 1709 whimsicality , 3 +36177 1709 whimsicality 3 +36178 1709 narrative discipline 3 +36179 1709 serious improvisation 2 +36180 1709 improvisation 2 +36181 1709 , almost every relationship and personality in the film yields surprises . 3 +36182 1709 almost every relationship and personality in the film yields surprises . 3 +36183 1709 almost every relationship and personality in the film 2 +36184 1709 almost every relationship and personality 2 +36185 1709 every relationship and personality 2 +36186 1709 relationship and personality 2 +36187 1709 relationship and 3 +36188 1709 in the film 2 +36189 1709 yields surprises . 3 +36190 1709 yields surprises 3 +36191 1709 yields 2 +36192 1710 Often hilarious . 3 +36193 1711 I 'm convinced I could keep a family of five blind , crippled , Amish people alive in this situation better than these British soldiers do at keeping themselves kicking . 1 +36194 1711 'm convinced I could keep a family of five blind , crippled , Amish people alive in this situation better than these British soldiers do at keeping themselves kicking . 0 +36195 1711 'm convinced I could keep a family of five blind , crippled , Amish people alive in this situation better than these British soldiers do at keeping themselves kicking 0 +36196 1711 convinced I could keep a family of five blind , crippled , Amish people alive in this situation better than these British soldiers do at keeping themselves kicking 0 +36197 1711 I could keep a family of five blind , crippled , Amish people alive in this situation better than these British soldiers do at keeping themselves kicking 1 +36198 1711 could keep a family of five blind , crippled , Amish people alive in this situation better than these British soldiers do at keeping themselves kicking 1 +36199 1711 keep a family of five blind , crippled , Amish people alive in this situation better than these British soldiers do at keeping themselves kicking 2 +36200 1711 keep a family of five blind , crippled , Amish people alive in this situation 1 +36201 1711 a family of five blind , crippled , Amish people alive in this situation 1 +36202 1711 a family 2 +36203 1711 of five blind , crippled , Amish people alive in this situation 1 +36204 1711 five blind , crippled , Amish people alive in this situation 2 +36205 1711 five blind , crippled , Amish people 2 +36206 1711 blind , crippled , Amish people 1 +36207 1711 blind , crippled , 2 +36208 1711 blind , crippled 2 +36209 1711 blind , 2 +36210 1711 blind 2 +36211 1711 crippled 0 +36212 1711 Amish people 2 +36213 1711 Amish 2 +36214 1711 alive in this situation 2 +36215 1711 in this situation 2 +36216 1711 this situation 2 +36217 1711 better than these British soldiers do at keeping themselves kicking 2 +36218 1711 than these British soldiers do at keeping themselves kicking 2 +36219 1711 these British soldiers do at keeping themselves kicking 2 +36220 1711 these British soldiers 2 +36221 1711 British soldiers 2 +36222 1711 soldiers 2 +36223 1711 do at keeping themselves kicking 2 +36224 1711 at keeping themselves kicking 3 +36225 1711 keeping themselves kicking 3 +36226 1711 themselves kicking 2 +36227 1711 kicking 2 +36228 1712 An elegant work , Food of Love is as consistently engaging as it is revealing . 3 +36229 1712 An elegant work , Food of Love 4 +36230 1712 An elegant work , 3 +36231 1712 An elegant work 4 +36232 1712 elegant work 3 +36233 1712 Food of Love 2 +36234 1712 Food 3 +36235 1712 is as consistently engaging as it is revealing . 4 +36236 1712 is as consistently engaging as it is revealing 4 +36237 1712 is as consistently 2 +36238 1712 as consistently 2 +36239 1712 engaging as it is revealing 3 +36240 1712 as it is revealing 2 +36241 1712 it is revealing 2 +36242 1712 is revealing 2 +36243 1713 The jokes are telegraphed so far in advance they must have been lost in the mail . 1 +36244 1713 The jokes are telegraphed so far in advance 1 +36245 1713 are telegraphed so far in advance 2 +36246 1713 telegraphed so far in advance 2 +36247 1713 telegraphed so far 2 +36248 1713 in advance 2 +36249 1713 advance 2 +36250 1713 they must have been lost in the mail . 2 +36251 1713 must have been lost in the mail . 2 +36252 1713 must have been lost in the mail 1 +36253 1713 have been lost in the mail 2 +36254 1713 been lost in the mail 1 +36255 1713 lost in the mail 2 +36256 1713 in the mail 2 +36257 1713 the mail 2 +36258 1713 mail 2 +36259 1714 Give Shapiro , Goldman , and Bolado credit for good intentions , but there 's nothing here that they could n't have done in half an hour . 1 +36260 1714 Give Shapiro , Goldman , and Bolado credit for good intentions , but there 's nothing here that they could n't have done in half an hour 1 +36261 1714 Give Shapiro , Goldman , and Bolado credit for good intentions , but 3 +36262 1714 Give Shapiro , Goldman , and Bolado credit for good intentions , 3 +36263 1714 Give Shapiro , Goldman , and Bolado credit for good intentions 3 +36264 1714 Give Shapiro , Goldman , and 2 +36265 1714 Give Shapiro , Goldman , 2 +36266 1714 Give Shapiro , Goldman 2 +36267 1714 Give Shapiro , 2 +36268 1714 Give Shapiro 2 +36269 1714 Shapiro 2 +36270 1714 Goldman 2 +36271 1714 Bolado credit for good intentions 3 +36272 1714 Bolado credit 2 +36273 1714 Bolado 2 +36274 1714 for good intentions 2 +36275 1714 there 's nothing here that they could n't have done in half an hour 1 +36276 1714 's nothing here that they could n't have done in half an hour 1 +36277 1714 's nothing here 2 +36278 1714 that they could n't have done in half an hour 2 +36279 1714 they could n't have done in half an hour 1 +36280 1714 could n't have done in half an hour 2 +36281 1714 have done in half an hour 1 +36282 1714 done in half an hour 2 +36283 1714 in half an hour 2 +36284 1714 half an hour 2 +36285 1715 ... this is n't even a movie we can enjoy as mild escapism ; it is one in which fear and frustration are provoked to intolerable levels . 0 +36286 1715 this is n't even a movie we can enjoy as mild escapism ; it is one in which fear and frustration are provoked to intolerable levels . 0 +36287 1715 this is n't even a movie we can enjoy as mild escapism ; it is one in which fear and frustration are provoked to intolerable levels 2 +36288 1715 this is n't even a movie we can enjoy as mild escapism ; 1 +36289 1715 this is n't even a movie we can enjoy as mild escapism 1 +36290 1715 is n't even a movie we can enjoy as mild escapism 2 +36291 1715 is n't even a movie 0 +36292 1715 even a movie 2 +36293 1715 we can enjoy as mild escapism 3 +36294 1715 can enjoy as mild escapism 3 +36295 1715 enjoy as mild escapism 3 +36296 1715 as mild escapism 2 +36297 1715 mild escapism 2 +36298 1715 it is one in which fear and frustration are provoked to intolerable levels 1 +36299 1715 is one in which fear and frustration are provoked to intolerable levels 2 +36300 1715 one in which fear and frustration are provoked to intolerable levels 1 +36301 1715 in which fear and frustration are provoked to intolerable levels 3 +36302 1715 fear and frustration are provoked to intolerable levels 1 +36303 1715 fear and frustration 2 +36304 1715 fear and 2 +36305 1715 are provoked to intolerable levels 2 +36306 1715 provoked to intolerable levels 1 +36307 1715 provoked 2 +36308 1715 to intolerable levels 1 +36309 1715 intolerable levels 1 +36310 1715 intolerable 1 +36311 1716 It 's good , hard-edged stuff , violent and a bit exploitative but also nicely done , morally alert and street-smart . 3 +36312 1716 's good , hard-edged stuff , violent and a bit exploitative but also nicely done , morally alert and street-smart . 3 +36313 1716 's good , hard-edged stuff , violent and a bit exploitative but also nicely done , morally alert and street-smart 4 +36314 1716 good , hard-edged stuff , violent and a bit exploitative but also nicely done , morally alert and street-smart 4 +36315 1716 good , hard-edged stuff 3 +36316 1716 , hard-edged stuff 2 +36317 1716 hard-edged stuff 3 +36318 1716 hard-edged 2 +36319 1716 , violent and a bit exploitative but also nicely done , morally alert and street-smart 3 +36320 1716 violent and a bit exploitative but also nicely done , morally alert and street-smart 3 +36321 1716 a bit exploitative but also nicely done , morally alert and street-smart 3 +36322 1716 a bit exploitative but also nicely done , morally alert and 3 +36323 1716 a bit exploitative but also nicely done , morally alert 3 +36324 1716 a bit exploitative but also nicely done , 4 +36325 1716 a bit exploitative but also nicely done 3 +36326 1716 a bit exploitative 1 +36327 1716 exploitative 0 +36328 1716 but also nicely done 3 +36329 1716 also nicely done 3 +36330 1716 nicely done 3 +36331 1716 morally alert 3 +36332 1716 morally 3 +36333 1716 street-smart 3 +36334 1717 I like it . 3 +36335 1717 like it . 2 +36336 1718 On its own , Big Trouble could be considered a funny little film . 3 +36337 1718 , Big Trouble could be considered a funny little film . 3 +36338 1718 Big Trouble could be considered a funny little film . 3 +36339 1718 could be considered a funny little film . 2 +36340 1718 could be considered a funny little film 3 +36341 1718 be considered a funny little film 3 +36342 1718 considered a funny little film 3 +36343 1718 a funny little film 3 +36344 1718 funny little film 3 +36345 1718 little film 2 +36346 1719 It 's not nearly as fresh or enjoyable as its predecessor , but there are enough high points to keep this from being a complete waste of time . 3 +36347 1719 It 's not nearly as fresh or enjoyable as its predecessor , but there are enough high points to keep this from being a complete waste of time 3 +36348 1719 It 's not nearly as fresh or enjoyable as its predecessor , but 1 +36349 1719 It 's not nearly as fresh or enjoyable as its predecessor , 1 +36350 1719 It 's not nearly as fresh or enjoyable as its predecessor 1 +36351 1719 's not nearly as fresh or enjoyable as its predecessor 1 +36352 1719 nearly as fresh or enjoyable as its predecessor 3 +36353 1719 nearly as fresh or enjoyable 3 +36354 1719 as fresh or enjoyable 3 +36355 1719 fresh or enjoyable 3 +36356 1719 fresh or 2 +36357 1719 as its predecessor 2 +36358 1719 there are enough high points to keep this from being a complete waste of time 3 +36359 1719 are enough high points to keep this from being a complete waste of time 2 +36360 1719 enough high points to keep this from being a complete waste of time 2 +36361 1719 high points to keep this from being a complete waste of time 1 +36362 1719 points to keep this from being a complete waste of time 2 +36363 1719 to keep this from being a complete waste of time 1 +36364 1719 keep this from being a complete waste of time 1 +36365 1719 keep this 3 +36366 1719 from being a complete waste of time 1 +36367 1719 being a complete waste of time 1 +36368 1719 a complete waste of time 0 +36369 1719 a complete waste 0 +36370 1719 complete waste 0 +36371 1719 complete 3 +36372 1720 This tale has been told and retold ; the races and rackets change , but the song remains the same . 1 +36373 1720 This tale has been told and retold ; the races and rackets change , but the song remains the same 2 +36374 1720 This tale has been told and retold ; 1 +36375 1720 This tale has been told and retold 1 +36376 1720 has been told and retold 2 +36377 1720 been told and retold 0 +36378 1720 told and retold 1 +36379 1720 told and 2 +36380 1720 retold 2 +36381 1720 the races and rackets change , but the song remains the same 2 +36382 1720 the races and rackets change , but 2 +36383 1720 the races and rackets change , 2 +36384 1720 the races and rackets change 2 +36385 1720 the races and rackets 2 +36386 1720 races and rackets 3 +36387 1720 races and 2 +36388 1720 rackets 2 +36389 1720 the song remains the same 2 +36390 1720 the song 2 +36391 1720 remains the same 2 +36392 1720 the same 2 +36393 1721 Worthless , from its pseudo-rock-video opening to the idiocy of its last frames . 0 +36394 1721 Worthless , from its pseudo-rock-video opening to the idiocy of its last frames 0 +36395 1721 Worthless , from its pseudo-rock-video opening 0 +36396 1721 Worthless , 1 +36397 1721 from its pseudo-rock-video opening 2 +36398 1721 its pseudo-rock-video opening 2 +36399 1721 pseudo-rock-video opening 2 +36400 1721 pseudo-rock-video 2 +36401 1721 to the idiocy of its last frames 1 +36402 1721 the idiocy of its last frames 1 +36403 1721 the idiocy 1 +36404 1721 idiocy 1 +36405 1721 of its last frames 2 +36406 1721 its last frames 2 +36407 1721 last frames 2 +36408 1722 Makes a joke out of car chases for an hour and then gives us half an hour of car chases . 0 +36409 1722 Makes a joke out of car 2 +36410 1722 a joke out of car 2 +36411 1722 a joke out 2 +36412 1722 a joke 2 +36413 1722 of car 2 +36414 1722 chases for an hour and then gives us half an hour of car chases . 2 +36415 1722 chases for an hour and then gives us half an hour of car chases 2 +36416 1722 chases for an hour and then 3 +36417 1722 chases for an hour and 2 +36418 1722 chases for an hour 2 +36419 1722 for an hour 2 +36420 1722 gives us half an hour of car chases 2 +36421 1722 half an hour of car chases 2 +36422 1722 of car chases 2 +36423 1722 car chases 2 +36424 1723 A knowing sense of humor and a lot of warmth ignite Son of the Bride . 4 +36425 1723 A knowing sense of humor and a lot of warmth 4 +36426 1723 A knowing sense of humor and 2 +36427 1723 A knowing sense of humor 3 +36428 1723 A knowing sense 2 +36429 1723 knowing sense 2 +36430 1723 a lot of warmth 3 +36431 1723 of warmth 3 +36432 1723 ignite Son of the Bride . 2 +36433 1723 ignite Son of the Bride 2 +36434 1723 ignite 3 +36435 1724 Though there are entertaining and audacious moments , the movie 's wildly careening tone and an extremely flat lead performance do little to salvage this filmmaker 's flailing reputation . 1 +36436 1724 Though there are entertaining and audacious moments 2 +36437 1724 there are entertaining and audacious moments 3 +36438 1724 are entertaining and audacious moments 4 +36439 1724 entertaining and audacious moments 4 +36440 1724 and audacious moments 2 +36441 1724 audacious moments 2 +36442 1724 , the movie 's wildly careening tone and an extremely flat lead performance do little to salvage this filmmaker 's flailing reputation . 1 +36443 1724 the movie 's wildly careening tone and an extremely flat lead performance do little to salvage this filmmaker 's flailing reputation . 1 +36444 1724 the movie 's wildly careening tone and an extremely flat lead performance 1 +36445 1724 the movie 's wildly careening tone and 2 +36446 1724 the movie 's wildly careening tone 1 +36447 1724 wildly careening tone 1 +36448 1724 wildly careening 2 +36449 1724 wildly 2 +36450 1724 careening 2 +36451 1724 an extremely flat lead performance 0 +36452 1724 extremely flat lead performance 1 +36453 1724 extremely flat 1 +36454 1724 lead performance 2 +36455 1724 do little to salvage this filmmaker 's flailing reputation . 1 +36456 1724 do little to salvage this filmmaker 's flailing reputation 0 +36457 1724 little to salvage this filmmaker 's flailing reputation 1 +36458 1724 to salvage this filmmaker 's flailing reputation 2 +36459 1724 salvage this filmmaker 's flailing reputation 1 +36460 1724 salvage 2 +36461 1724 this filmmaker 's flailing reputation 0 +36462 1724 this filmmaker 's 2 +36463 1724 flailing reputation 1 +36464 1724 reputation 2 +36465 1725 The Son Of The Bride 's humour is born out of an engaging storyline , which also is n't embarrassed to make you reach for the tissues . 4 +36466 1725 Of The Bride 's humour is born out of an engaging storyline , which also is n't embarrassed to make you reach for the tissues . 4 +36467 1725 Of The Bride 's humour 2 +36468 1725 The Bride 's humour 2 +36469 1725 The Bride 's 2 +36470 1725 Bride 's 2 +36471 1725 is born out of an engaging storyline , which also is n't embarrassed to make you reach for the tissues . 3 +36472 1725 is born out of an engaging storyline , which also is n't embarrassed to make you reach for the tissues 3 +36473 1725 born out of an engaging storyline , which also is n't embarrassed to make you reach for the tissues 3 +36474 1725 born out 2 +36475 1725 of an engaging storyline , which also is n't embarrassed to make you reach for the tissues 3 +36476 1725 an engaging storyline , which also is n't embarrassed to make you reach for the tissues 4 +36477 1725 an engaging storyline , 4 +36478 1725 an engaging storyline 3 +36479 1725 engaging storyline 4 +36480 1725 which also is n't embarrassed to make you reach for the tissues 3 +36481 1725 also is n't embarrassed to make you reach for the tissues 3 +36482 1725 is n't embarrassed to make you reach for the tissues 3 +36483 1725 embarrassed to make you reach for the tissues 2 +36484 1725 embarrassed 1 +36485 1725 to make you reach for the tissues 2 +36486 1725 make you reach for the tissues 3 +36487 1725 you reach for the tissues 2 +36488 1725 reach for the tissues 2 +36489 1725 for the tissues 2 +36490 1725 the tissues 2 +36491 1725 tissues 2 +36492 1726 Even if the Naipaul original remains the real masterpiece , the movie possesses its own languorous charm . 4 +36493 1726 Even if the Naipaul original remains the real masterpiece 3 +36494 1726 if the Naipaul original remains the real masterpiece 2 +36495 1726 the Naipaul original remains the real masterpiece 2 +36496 1726 the Naipaul original 2 +36497 1726 Naipaul original 3 +36498 1726 Naipaul 2 +36499 1726 remains the real masterpiece 4 +36500 1726 the real masterpiece 4 +36501 1726 real masterpiece 4 +36502 1726 , the movie possesses its own languorous charm . 3 +36503 1726 the movie possesses its own languorous charm . 3 +36504 1726 possesses its own languorous charm . 3 +36505 1726 possesses its own languorous charm 2 +36506 1726 possesses 2 +36507 1726 its own languorous charm 3 +36508 1726 own languorous charm 3 +36509 1726 languorous charm 3 +36510 1726 languorous 2 +36511 1727 Ambitious , unsettling psychodrama that takes full , chilling advantage of its rough-around-the-edges , low-budget constraints . 3 +36512 1727 Ambitious , unsettling psychodrama that takes full , chilling advantage of its rough-around-the-edges , low-budget constraints 3 +36513 1727 Ambitious , 2 +36514 1727 unsettling psychodrama that takes full , chilling advantage of its rough-around-the-edges , low-budget constraints 3 +36515 1727 unsettling psychodrama 2 +36516 1727 psychodrama 2 +36517 1727 that takes full , chilling advantage of its rough-around-the-edges , low-budget constraints 4 +36518 1727 takes full , chilling advantage of its rough-around-the-edges , low-budget constraints 3 +36519 1727 full , chilling advantage of its rough-around-the-edges , low-budget constraints 2 +36520 1727 full , chilling advantage 3 +36521 1727 , chilling advantage 2 +36522 1727 chilling advantage 3 +36523 1727 chilling 3 +36524 1727 advantage 3 +36525 1727 of its rough-around-the-edges , low-budget constraints 1 +36526 1727 its rough-around-the-edges , low-budget constraints 1 +36527 1727 rough-around-the-edges , low-budget constraints 1 +36528 1727 rough-around-the-edges 2 +36529 1727 , low-budget constraints 1 +36530 1727 low-budget constraints 1 +36531 1727 constraints 2 +36532 1728 Most of the things that made the original Men in Black such a pleasure are still there . 3 +36533 1728 Most of the things that made the original Men in Black such a pleasure 3 +36534 1728 of the things that made the original Men in Black such a pleasure 3 +36535 1728 the things that made the original Men in Black such a pleasure 3 +36536 1728 that made the original Men in Black such a pleasure 3 +36537 1728 made the original Men in Black such a pleasure 3 +36538 1728 made the original Men in Black 2 +36539 1728 made the original Men 2 +36540 1728 the original Men 2 +36541 1728 original Men 2 +36542 1728 in Black 2 +36543 1728 such a pleasure 3 +36544 1728 a pleasure 3 +36545 1728 are still there . 2 +36546 1728 are still there 2 +36547 1729 At times a bit melodramatic and even a little dated -LRB- depending upon where you live -RRB- , Ignorant Fairies is still quite good-natured and not a bad way to spend an hour or two . 3 +36548 1729 At times a bit melodramatic and even a little dated -LRB- depending upon where you live -RRB- 1 +36549 1729 times a bit melodramatic and even a little dated -LRB- depending upon where you live -RRB- 2 +36550 1729 times a bit melodramatic and even a little dated 1 +36551 1729 a bit melodramatic and even a little dated 1 +36552 1729 a bit melodramatic and 2 +36553 1729 a bit melodramatic 2 +36554 1729 even a little dated 1 +36555 1729 even a little 2 +36556 1729 -LRB- depending upon where you live -RRB- 3 +36557 1729 depending upon where you live -RRB- 2 +36558 1729 depending upon where you live 2 +36559 1729 depending 2 +36560 1729 upon where you live 2 +36561 1729 where you live 2 +36562 1729 you live 2 +36563 1729 , Ignorant Fairies is still quite good-natured and not a bad way to spend an hour or two . 3 +36564 1729 Ignorant Fairies is still quite good-natured and not a bad way to spend an hour or two . 3 +36565 1729 Ignorant Fairies 2 +36566 1729 Ignorant 1 +36567 1729 Fairies 2 +36568 1729 is still quite good-natured and not a bad way to spend an hour or two . 3 +36569 1729 is still quite good-natured and not a bad way to spend an hour or two 3 +36570 1729 is still quite good-natured and 3 +36571 1729 is still quite good-natured 3 +36572 1729 quite good-natured 3 +36573 1729 not a bad way to spend an hour or two 3 +36574 1729 not a bad way 3 +36575 1729 a bad way 1 +36576 1729 bad way 1 +36577 1729 to spend an hour or two 2 +36578 1729 spend an hour or two 2 +36579 1729 an hour or two 2 +36580 1729 an hour or 2 +36581 1730 Or for the year , for that matter . 2 +36582 1730 for the year , for that matter . 2 +36583 1730 for the year 2 +36584 1730 , for that matter . 2 +36585 1730 for that matter . 2 +36586 1731 I had more fun watching Spy than I had with most of the big summer movies . 4 +36587 1731 had more fun watching Spy than I had with most of the big summer movies . 4 +36588 1731 had more fun watching Spy than I had with most of the big summer movies 4 +36589 1731 more fun watching Spy than I had with most of the big summer movies 4 +36590 1731 watching Spy than I had with most of the big summer movies 2 +36591 1731 watching Spy 3 +36592 1731 than I had with most of the big summer movies 2 +36593 1731 I had with most of the big summer movies 2 +36594 1731 had with most of the big summer movies 2 +36595 1731 with most of the big summer movies 3 +36596 1731 most of the big summer movies 2 +36597 1731 of the big summer movies 3 +36598 1731 the big summer movies 3 +36599 1731 big summer movies 3 +36600 1731 summer movies 2 +36601 1732 It 's just merely very bad . 0 +36602 1732 's just merely very bad . 0 +36603 1732 's just merely very bad 0 +36604 1732 merely very bad 0 +36605 1733 the shackles 2 +36606 1733 shackles 2 +36607 1733 to be the best espionage picture to come out in weeks 3 +36608 1733 be the best espionage picture to come out in weeks 2 +36609 1733 the best espionage picture to come out in weeks 4 +36610 1733 the best espionage picture 4 +36611 1733 best espionage picture 4 +36612 1733 espionage picture 2 +36613 1733 espionage 2 +36614 1733 to come out in weeks 2 +36615 1733 come out in weeks 2 +36616 1733 come out 2 +36617 1733 in weeks 2 +36618 1733 weeks 2 +36619 1734 Watching this gentle , mesmerizing portrait of a man coming to terms with time , you barely realize your mind is being blown . 3 +36620 1734 Watching this gentle , mesmerizing portrait of a man coming to terms with time 3 +36621 1734 this gentle , mesmerizing portrait of a man coming to terms with time 4 +36622 1734 this gentle , mesmerizing portrait 3 +36623 1734 gentle , mesmerizing portrait 3 +36624 1734 gentle , mesmerizing 3 +36625 1734 , mesmerizing 4 +36626 1734 of a man coming to terms with time 2 +36627 1734 a man coming to terms with time 2 +36628 1734 coming to terms with time 2 +36629 1734 to terms with time 2 +36630 1734 terms with time 2 +36631 1734 with time 2 +36632 1734 , you barely realize your mind is being blown . 3 +36633 1734 you barely realize your mind is being blown . 3 +36634 1734 barely realize your mind is being blown . 3 +36635 1734 realize your mind is being blown . 3 +36636 1734 realize your mind is being blown 3 +36637 1734 your mind is being blown 3 +36638 1734 your mind 2 +36639 1734 is being blown 2 +36640 1734 being blown 2 +36641 1735 You can watch , giggle and get an adrenaline boost without feeling like you 've completely lowered your entertainment standards . 3 +36642 1735 can watch , giggle and get an adrenaline boost without feeling like you 've completely lowered your entertainment standards . 4 +36643 1735 can watch , giggle and get an adrenaline boost without feeling like you 've completely lowered your entertainment standards 4 +36644 1735 watch , giggle and get an adrenaline boost without feeling like you 've completely lowered your entertainment standards 4 +36645 1735 watch , giggle and get an adrenaline boost 4 +36646 1735 watch , giggle and get 3 +36647 1735 watch , giggle and 3 +36648 1735 watch , giggle 3 +36649 1735 giggle 2 +36650 1735 an adrenaline boost 3 +36651 1735 adrenaline boost 3 +36652 1735 boost 2 +36653 1735 without feeling like you 've completely lowered your entertainment standards 2 +36654 1735 feeling like you 've completely lowered your entertainment standards 1 +36655 1735 like you 've completely lowered your entertainment standards 2 +36656 1735 you 've completely lowered your entertainment standards 0 +36657 1735 've completely lowered your entertainment standards 1 +36658 1735 've completely 3 +36659 1735 lowered your entertainment standards 0 +36660 1735 lowered 2 +36661 1735 your entertainment standards 3 +36662 1735 entertainment standards 2 +36663 1736 Some movies blend together as they become distant memories . 2 +36664 1736 blend together as they become distant memories . 3 +36665 1736 blend together as they become distant memories 2 +36666 1736 blend together 2 +36667 1736 as they become distant memories 2 +36668 1736 they become distant memories 2 +36669 1736 become distant memories 2 +36670 1736 distant memories 2 +36671 1736 distant 1 +36672 1737 Nair just does n't have the necessary self-control to guide a loose , poorly structured film through the pitfalls of incoherence and redundancy . 0 +36673 1737 just does n't have the necessary self-control to guide a loose , poorly structured film through the pitfalls of incoherence and redundancy . 0 +36674 1737 does n't have the necessary self-control to guide a loose , poorly structured film through the pitfalls of incoherence and redundancy . 0 +36675 1737 does n't have the necessary self-control to guide a loose , poorly structured film through the pitfalls of incoherence and redundancy 0 +36676 1737 have the necessary self-control to guide a loose , poorly structured film through the pitfalls of incoherence and redundancy 1 +36677 1737 the necessary self-control to guide a loose , poorly structured film through the pitfalls of incoherence and redundancy 1 +36678 1737 necessary self-control to guide a loose , poorly structured film through the pitfalls of incoherence and redundancy 0 +36679 1737 self-control to guide a loose , poorly structured film through the pitfalls of incoherence and redundancy 0 +36680 1737 self-control 2 +36681 1737 to guide a loose , poorly structured film through the pitfalls of incoherence and redundancy 0 +36682 1737 guide a loose , poorly structured film through the pitfalls of incoherence and redundancy 0 +36683 1737 guide a loose , poorly structured film 1 +36684 1737 a loose , poorly structured film 1 +36685 1737 loose , poorly structured film 1 +36686 1737 loose , poorly structured 1 +36687 1737 , poorly structured 1 +36688 1737 poorly structured 1 +36689 1737 through the pitfalls of incoherence and redundancy 1 +36690 1737 the pitfalls of incoherence and redundancy 1 +36691 1737 the pitfalls 3 +36692 1737 of incoherence and redundancy 2 +36693 1737 incoherence and redundancy 0 +36694 1737 redundancy 1 +36695 1738 Chouraqui brings documentary-like credibility to the horrors of the killing field and the barbarism of ` ethnic cleansing . ' 3 +36696 1738 Chouraqui 2 +36697 1738 brings documentary-like credibility to the horrors of the killing field and the barbarism of ` ethnic cleansing . ' 2 +36698 1738 brings documentary-like credibility to the horrors of the killing field and the barbarism of ` ethnic cleansing . 2 +36699 1738 brings documentary-like credibility to the horrors of the killing field and the barbarism of ` ethnic cleansing 2 +36700 1738 brings documentary-like credibility 3 +36701 1738 documentary-like credibility 3 +36702 1738 documentary-like 2 +36703 1738 credibility 2 +36704 1738 to the horrors of the killing field and the barbarism of ` ethnic cleansing 1 +36705 1738 the horrors of the killing field and the barbarism of ` ethnic cleansing 1 +36706 1738 the horrors 1 +36707 1738 of the killing field and the barbarism of ` ethnic cleansing 1 +36708 1738 the killing field and the barbarism of ` ethnic cleansing 1 +36709 1738 the killing field and 1 +36710 1738 the killing field 2 +36711 1738 killing field 2 +36712 1738 the barbarism of ` ethnic cleansing 0 +36713 1738 the barbarism 2 +36714 1738 barbarism 1 +36715 1738 of ` ethnic cleansing 1 +36716 1738 ethnic cleansing 1 +36717 1738 cleansing 3 +36718 1739 Woody Allen used to ridicule movies like Hollywood Ending . 1 +36719 1739 used to ridicule movies like Hollywood Ending . 2 +36720 1739 used to ridicule movies like Hollywood Ending 1 +36721 1739 used to ridicule movies 2 +36722 1739 to ridicule movies 2 +36723 1739 ridicule movies 2 +36724 1739 ridicule 2 +36725 1739 like Hollywood Ending 2 +36726 1740 It 's mildly amusing , but I certainly ca n't recommend it . 1 +36727 1740 It 's mildly amusing , but I certainly ca n't recommend it 2 +36728 1740 It 's mildly amusing , but 2 +36729 1740 It 's mildly amusing , 2 +36730 1740 It 's mildly amusing 2 +36731 1740 's mildly amusing 2 +36732 1740 mildly amusing 3 +36733 1740 I certainly ca n't recommend it 1 +36734 1740 certainly ca n't recommend it 0 +36735 1740 ca n't recommend it 0 +36736 1741 And it 's not that funny -- which is just generally insulting . 0 +36737 1741 it 's not that funny -- which is just generally insulting . 1 +36738 1741 's not that funny -- which is just generally insulting . 1 +36739 1741 's not that funny -- which is just generally insulting 1 +36740 1741 's not that funny -- 1 +36741 1741 's not that funny 1 +36742 1741 not that funny 1 +36743 1741 which is just generally insulting 2 +36744 1741 is just generally insulting 1 +36745 1741 generally insulting 1 +36746 1741 generally 2 +36747 1742 As David Letterman and The Onion have proven , the worst of tragedies can be fertile sources of humor , but Lawrence has only a fleeting grasp of how to develop them . 0 +36748 1742 As David Letterman and The Onion have proven , the worst of tragedies can be fertile sources of humor , but Lawrence has only a fleeting grasp of how to develop them 2 +36749 1742 As David Letterman and The Onion have proven , the worst of tragedies can be fertile sources of humor , but 2 +36750 1742 As David Letterman and The Onion have proven , the worst of tragedies can be fertile sources of humor , 3 +36751 1742 As David Letterman and The Onion have proven , the worst of tragedies can be fertile sources of humor 2 +36752 1742 As David Letterman and The Onion have proven 2 +36753 1742 David Letterman and The Onion have proven 2 +36754 1742 David Letterman and The Onion 3 +36755 1742 David Letterman and 2 +36756 1742 David Letterman 2 +36757 1742 Letterman 2 +36758 1742 The Onion 2 +36759 1742 Onion 2 +36760 1742 have proven 2 +36761 1742 proven 2 +36762 1742 , the worst of tragedies can be fertile sources of humor 3 +36763 1742 the worst of tragedies can be fertile sources of humor 2 +36764 1742 the worst of tragedies 1 +36765 1742 the worst 0 +36766 1742 of tragedies 2 +36767 1742 can be fertile sources of humor 3 +36768 1742 be fertile sources of humor 3 +36769 1742 be fertile 2 +36770 1742 fertile 3 +36771 1742 sources of humor 2 +36772 1742 sources 2 +36773 1742 Lawrence has only a fleeting grasp of how to develop them 1 +36774 1742 has only a fleeting grasp of how to develop them 1 +36775 1742 only a fleeting grasp of how to develop them 1 +36776 1742 only a fleeting grasp 2 +36777 1742 a fleeting grasp 1 +36778 1742 fleeting grasp 2 +36779 1742 of how to develop them 2 +36780 1742 how to develop them 2 +36781 1742 to develop them 2 +36782 1742 develop them 2 +36783 1742 develop 2 +36784 1743 They just have problems , which are neither original nor are presented in convincing way . 1 +36785 1743 just have problems , which are neither original nor are presented in convincing way . 1 +36786 1743 have problems , which are neither original nor are presented in convincing way . 1 +36787 1743 have problems , which are neither original nor are presented in convincing way 0 +36788 1743 problems , which are neither original nor are presented in convincing way 2 +36789 1743 problems , 2 +36790 1743 which are neither original nor are presented in convincing way 1 +36791 1743 are neither original nor are presented in convincing way 0 +36792 1743 are neither original nor 2 +36793 1743 are neither original 1 +36794 1743 neither original 1 +36795 1743 are presented in convincing way 3 +36796 1743 presented in convincing way 3 +36797 1743 in convincing way 2 +36798 1743 convincing way 3 +36799 1744 For all the dolorous trim , Secretary is a genial romance that maintains a surprisingly buoyant tone throughout , notwithstanding some of the writers ' sporadic dips into pop Freudianism . 3 +36800 1744 For all the dolorous trim 3 +36801 1744 all the dolorous trim 2 +36802 1744 all the dolorous 2 +36803 1744 the dolorous 2 +36804 1744 dolorous 2 +36805 1744 trim 2 +36806 1744 , Secretary is a genial romance that maintains a surprisingly buoyant tone throughout , notwithstanding some of the writers ' sporadic dips into pop Freudianism . 4 +36807 1744 Secretary is a genial romance that maintains a surprisingly buoyant tone throughout , notwithstanding some of the writers ' sporadic dips into pop Freudianism . 3 +36808 1744 is a genial romance that maintains a surprisingly buoyant tone throughout , notwithstanding some of the writers ' sporadic dips into pop Freudianism . 3 +36809 1744 is a genial romance that maintains a surprisingly buoyant tone throughout , notwithstanding some of the writers ' sporadic dips into pop Freudianism 3 +36810 1744 a genial romance that maintains a surprisingly buoyant tone throughout , notwithstanding some of the writers ' sporadic dips into pop Freudianism 3 +36811 1744 a genial romance 3 +36812 1744 genial romance 3 +36813 1744 that maintains a surprisingly buoyant tone throughout , notwithstanding some of the writers ' sporadic dips into pop Freudianism 2 +36814 1744 maintains a surprisingly buoyant tone throughout , notwithstanding some of the writers ' sporadic dips into pop Freudianism 2 +36815 1744 maintains a surprisingly buoyant tone throughout , notwithstanding some of the writers ' sporadic dips 3 +36816 1744 maintains a surprisingly buoyant tone throughout , 3 +36817 1744 maintains a surprisingly buoyant tone throughout 3 +36818 1744 maintains a surprisingly buoyant tone 4 +36819 1744 a surprisingly buoyant tone 2 +36820 1744 surprisingly buoyant tone 2 +36821 1744 surprisingly buoyant 3 +36822 1744 notwithstanding some of the writers ' sporadic dips 1 +36823 1744 some of the writers ' sporadic dips 2 +36824 1744 of the writers ' sporadic dips 2 +36825 1744 the writers ' sporadic dips 2 +36826 1744 the writers ' 2 +36827 1744 writers ' 2 +36828 1744 sporadic dips 3 +36829 1744 sporadic 2 +36830 1744 dips 2 +36831 1744 into pop Freudianism 2 +36832 1744 pop Freudianism 2 +36833 1744 Freudianism 2 +36834 1745 Like the original , this version is raised a few notches above kiddie fantasy pablum by Allen 's astringent wit . 3 +36835 1745 Like the original 3 +36836 1745 , this version is raised a few notches above kiddie fantasy pablum by Allen 's astringent wit . 3 +36837 1745 this version is raised a few notches above kiddie fantasy pablum by Allen 's astringent wit . 3 +36838 1745 is raised a few notches above kiddie fantasy pablum by Allen 's astringent wit . 3 +36839 1745 is raised a few notches above kiddie fantasy pablum by Allen 's astringent wit 3 +36840 1745 raised a few notches above kiddie fantasy pablum by Allen 's astringent wit 3 +36841 1745 raised a few notches above kiddie fantasy pablum 2 +36842 1745 raised 2 +36843 1745 a few notches above kiddie fantasy pablum 2 +36844 1745 a few notches 2 +36845 1745 few notches 2 +36846 1745 notches 2 +36847 1745 above kiddie fantasy pablum 2 +36848 1745 kiddie fantasy pablum 0 +36849 1745 kiddie 2 +36850 1745 fantasy pablum 1 +36851 1745 pablum 2 +36852 1745 by Allen 's astringent wit 2 +36853 1745 Allen 's astringent wit 2 +36854 1745 astringent wit 3 +36855 1745 astringent 2 +36856 1746 A taut , sobering film . 4 +36857 1746 A taut , sobering film 4 +36858 1746 A taut , 2 +36859 1746 A taut 2 +36860 1746 taut 2 +36861 1746 sobering film 2 +36862 1746 sobering 2 +36863 1747 Far-fetched premise , convoluted plot , and thematic mumbo jumbo about destiny and redemptive love . 2 +36864 1747 Far-fetched premise , convoluted plot , and thematic mumbo jumbo about destiny and redemptive 0 +36865 1747 Far-fetched premise , convoluted plot , and 1 +36866 1747 Far-fetched premise , convoluted plot , 0 +36867 1747 Far-fetched premise , convoluted plot 1 +36868 1747 Far-fetched premise , 1 +36869 1747 Far-fetched premise 1 +36870 1747 Far-fetched 1 +36871 1747 convoluted plot 1 +36872 1747 thematic mumbo jumbo about destiny and redemptive 2 +36873 1747 thematic mumbo jumbo 1 +36874 1747 thematic 2 +36875 1747 mumbo jumbo 1 +36876 1747 mumbo 2 +36877 1747 jumbo 2 +36878 1747 about destiny and redemptive 2 +36879 1747 destiny and redemptive 2 +36880 1747 destiny and 2 +36881 1747 redemptive 3 +36882 1747 love . 3 +36883 1748 A muddle splashed with bloody beauty as vivid as any Scorsese has ever given us . 3 +36884 1748 A muddle 1 +36885 1748 muddle 2 +36886 1748 splashed with bloody beauty as vivid as any Scorsese has ever given us . 3 +36887 1748 splashed with bloody beauty as vivid as any Scorsese has ever given us 4 +36888 1748 splashed with bloody beauty as vivid 3 +36889 1748 splashed 2 +36890 1748 with bloody beauty as vivid 3 +36891 1748 bloody beauty as vivid 3 +36892 1748 bloody beauty 3 +36893 1748 as vivid 2 +36894 1748 as any Scorsese has ever given us 2 +36895 1748 any Scorsese has ever given us 3 +36896 1748 any Scorsese 1 +36897 1748 has ever given us 2 +36898 1748 given us 2 +36899 1749 The way the roundelay of partners functions , and the interplay within partnerships and among partnerships and the general air of Gator-bashing are consistently delightful . 4 +36900 1749 the roundelay of partners functions , and the interplay within partnerships and among partnerships and the general air of Gator-bashing are consistently delightful . 3 +36901 1749 the roundelay of partners functions , and the interplay within partnerships and among partnerships and the general air of Gator-bashing 2 +36902 1749 the roundelay of partners functions , and the interplay within partnerships and among partnerships and 2 +36903 1749 the roundelay of partners functions , and the interplay within partnerships and among partnerships 2 +36904 1749 the roundelay of partners functions , and 2 +36905 1749 the roundelay of partners functions , 2 +36906 1749 the roundelay of partners functions 2 +36907 1749 the roundelay 2 +36908 1749 roundelay 2 +36909 1749 of partners functions 2 +36910 1749 partners functions 2 +36911 1749 partners 2 +36912 1749 functions 2 +36913 1749 the interplay within partnerships and among partnerships 2 +36914 1749 the interplay 2 +36915 1749 within partnerships and among partnerships 2 +36916 1749 within partnerships and 2 +36917 1749 within partnerships 2 +36918 1749 partnerships 2 +36919 1749 among partnerships 2 +36920 1749 the general air of Gator-bashing 2 +36921 1749 the general air 2 +36922 1749 general air 2 +36923 1749 of Gator-bashing 2 +36924 1749 Gator-bashing 2 +36925 1749 are consistently delightful . 3 +36926 1749 are consistently delightful 4 +36927 1749 are consistently 2 +36928 1749 delightful 4 +36929 1750 But while the highly predictable narrative falls short , Treasure Planet is truly gorgeous to behold . 4 +36930 1750 while the highly predictable narrative falls short , Treasure Planet is truly gorgeous to behold . 3 +36931 1750 while the highly predictable narrative falls short 1 +36932 1750 the highly predictable narrative falls short 1 +36933 1750 the highly predictable narrative 1 +36934 1750 highly predictable narrative 1 +36935 1750 highly predictable 1 +36936 1750 falls short 1 +36937 1750 , Treasure Planet is truly gorgeous to behold . 4 +36938 1750 Treasure Planet is truly gorgeous to behold . 4 +36939 1750 is truly gorgeous to behold . 4 +36940 1750 is truly gorgeous to behold 3 +36941 1750 is truly gorgeous 4 +36942 1750 truly gorgeous 4 +36943 1750 to behold 2 +36944 1750 behold 2 +36945 1751 Directed with purpose and finesse by England 's Roger Mitchell , who handily makes the move from pleasing , relatively lightweight commercial fare such as Notting Hill to commercial fare with real thematic heft . 4 +36946 1751 Directed with purpose and finesse by England 's Roger Mitchell , who handily makes the move from pleasing 4 +36947 1751 Directed with purpose and finesse 3 +36948 1751 with purpose and finesse 3 +36949 1751 purpose and finesse 3 +36950 1751 purpose and 2 +36951 1751 finesse 3 +36952 1751 by England 's Roger Mitchell , who handily makes the move from pleasing 3 +36953 1751 England 's Roger Mitchell , who handily makes the move from pleasing 3 +36954 1751 England 's Roger Mitchell , 2 +36955 1751 England 's Roger Mitchell 2 +36956 1751 England 's 2 +36957 1751 England 2 +36958 1751 Roger Mitchell 2 +36959 1751 Mitchell 2 +36960 1751 who handily makes the move from pleasing 3 +36961 1751 handily makes the move from pleasing 2 +36962 1751 handily 3 +36963 1751 makes the move from pleasing 3 +36964 1751 makes the move 2 +36965 1751 the move 2 +36966 1751 from pleasing 3 +36967 1751 pleasing 4 +36968 1751 , relatively lightweight commercial fare such as Notting Hill to commercial fare with real thematic heft . 3 +36969 1751 relatively lightweight commercial fare such as Notting Hill to commercial fare with real thematic heft . 3 +36970 1751 relatively lightweight commercial fare such as Notting Hill to commercial 3 +36971 1751 relatively lightweight commercial fare 2 +36972 1751 relatively lightweight 2 +36973 1751 commercial fare 2 +36974 1751 such as Notting Hill to commercial 2 +36975 1751 as Notting Hill to commercial 2 +36976 1751 Notting Hill to commercial 2 +36977 1751 Notting Hill 2 +36978 1751 Notting 2 +36979 1751 to commercial 2 +36980 1751 fare with real thematic heft . 3 +36981 1751 fare with real thematic heft 4 +36982 1751 with real thematic heft 3 +36983 1751 real thematic heft 2 +36984 1751 thematic heft 2 +36985 1751 heft 2 +36986 1752 One of these days Hollywood will come up with an original idea for a teen movie , but until then there 's always these rehashes to feed to the younger generations . 1 +36987 1752 One of these days Hollywood will come up with an original idea for a teen movie , but until then there 's always these rehashes to feed to the younger generations 1 +36988 1752 One of these days Hollywood will come up with an original idea for a teen movie , but 1 +36989 1752 One of these days Hollywood will come up with an original idea for a teen movie , 1 +36990 1752 One of these days Hollywood will come up with an original idea for a teen movie 1 +36991 1752 One of these days 2 +36992 1752 of these days 2 +36993 1752 Hollywood will come up with an original idea for a teen movie 2 +36994 1752 will come up with an original idea for a teen movie 2 +36995 1752 come up with an original idea for a teen movie 1 +36996 1752 with an original idea for a teen movie 3 +36997 1752 an original idea for a teen movie 3 +36998 1752 for a teen movie 2 +36999 1752 a teen movie 2 +37000 1752 teen movie 2 +37001 1752 until then there 's always these rehashes to feed to the younger generations 1 +37002 1752 until then 2 +37003 1752 there 's always these rehashes to feed to the younger generations 1 +37004 1752 's always these rehashes to feed to the younger generations 3 +37005 1752 these rehashes to feed to the younger generations 2 +37006 1752 rehashes to feed to the younger generations 1 +37007 1752 to feed to the younger generations 3 +37008 1752 feed to the younger generations 2 +37009 1752 feed 2 +37010 1752 to the younger generations 2 +37011 1752 the younger generations 2 +37012 1752 younger generations 3 +37013 1753 A wild ride juiced with enough energy and excitement for at least three films . 3 +37014 1753 juiced with enough energy and excitement for at least three films . 4 +37015 1753 juiced with enough energy and excitement for at least three films 4 +37016 1753 juiced with enough energy and excitement 3 +37017 1753 juiced 3 +37018 1753 with enough energy and excitement 3 +37019 1753 enough energy and excitement 3 +37020 1753 energy and excitement 4 +37021 1753 energy and 2 +37022 1753 for at least three films 2 +37023 1753 at least three films 3 +37024 1753 at least three 2 +37025 1754 Nemesis suffers from a paunchy midsection , several plodding action sequences and a wickedly undramatic central theme . 1 +37026 1754 Nemesis 1 +37027 1754 suffers from a paunchy midsection , several plodding action sequences and a wickedly undramatic central theme . 1 +37028 1754 suffers from a paunchy midsection , several plodding action sequences and a wickedly undramatic central theme 1 +37029 1754 from a paunchy midsection , several plodding action sequences and a wickedly undramatic central theme 2 +37030 1754 a paunchy midsection , several plodding action sequences and a wickedly undramatic central theme 1 +37031 1754 a paunchy midsection , several plodding action sequences and 1 +37032 1754 a paunchy midsection , several plodding action sequences 1 +37033 1754 a paunchy midsection , 1 +37034 1754 a paunchy midsection 2 +37035 1754 paunchy midsection 2 +37036 1754 paunchy 2 +37037 1754 midsection 2 +37038 1754 several plodding action sequences 1 +37039 1754 plodding action sequences 1 +37040 1754 a wickedly undramatic central theme 1 +37041 1754 wickedly undramatic central theme 1 +37042 1754 wickedly undramatic 1 +37043 1754 wickedly 2 +37044 1754 undramatic 1 +37045 1754 central theme 2 +37046 1755 Lucky Break is perfectly inoffensive and harmless , but it 's also drab and inert . 2 +37047 1755 Lucky Break is perfectly inoffensive and harmless , but it 's also drab and inert 2 +37048 1755 Lucky Break is perfectly inoffensive and harmless , but 2 +37049 1755 Lucky Break is perfectly inoffensive and harmless , 3 +37050 1755 Lucky Break is perfectly inoffensive and harmless 3 +37051 1755 Lucky Break 2 +37052 1755 Lucky 2 +37053 1755 is perfectly inoffensive and harmless 3 +37054 1755 perfectly inoffensive and harmless 3 +37055 1755 inoffensive and harmless 3 +37056 1755 it 's also drab and inert 1 +37057 1755 's also drab and inert 1 +37058 1755 drab and inert 0 +37059 1755 drab and 1 +37060 1755 drab 0 +37061 1755 inert 2 +37062 1756 Elvira fans could hardly ask for more . 4 +37063 1756 Elvira fans 3 +37064 1756 Elvira 2 +37065 1756 could hardly ask for more . 4 +37066 1756 could hardly ask for more 3 +37067 1756 could hardly 1 +37068 1756 ask for more 2 +37069 1757 Exactly what you 'd expect from a guy named Kaos . 2 +37070 1757 Exactly what you 'd expect from a guy 2 +37071 1757 what you 'd expect from a guy 3 +37072 1757 you 'd expect from a guy 3 +37073 1757 'd expect from a guy 2 +37074 1757 expect from a guy 2 +37075 1757 from a guy 2 +37076 1757 a guy 2 +37077 1757 named Kaos . 2 +37078 1757 named Kaos 2 +37079 1757 Kaos 2 +37080 1758 Like all great films about a life you never knew existed , it offers much to absorb and even more to think about after the final frame . 4 +37081 1758 Like all great films about a life you never knew existed 2 +37082 1758 all great films about a life you never knew existed 4 +37083 1758 all great films 2 +37084 1758 about a life you never knew existed 2 +37085 1758 a life you never knew existed 2 +37086 1758 you never knew existed 2 +37087 1758 never knew existed 2 +37088 1758 knew existed 2 +37089 1758 , it offers much to absorb and even more to think about after the final frame . 3 +37090 1758 it offers much to absorb and even more to think about after the final frame . 3 +37091 1758 offers much to absorb and even more to think about after the final frame . 3 +37092 1758 offers much to absorb and even more to think about after the final frame 3 +37093 1758 much to absorb and even more to think about after the final frame 3 +37094 1758 much to absorb and 2 +37095 1758 much to absorb 2 +37096 1758 to absorb 2 +37097 1758 absorb 2 +37098 1758 even more to think about after the final frame 3 +37099 1758 more to think about after the final frame 3 +37100 1758 to think about after the final frame 2 +37101 1758 think about after the final frame 2 +37102 1758 think about 2 +37103 1758 after the final frame 2 +37104 1758 the final frame 2 +37105 1758 final frame 2 +37106 1759 It 's pretentious in a way that verges on the amateurish . 0 +37107 1759 's pretentious in a way that verges on the amateurish . 1 +37108 1759 's pretentious in a way that verges on the amateurish 1 +37109 1759 pretentious in a way that verges on the amateurish 0 +37110 1759 in a way that verges on the amateurish 1 +37111 1759 a way that verges on the amateurish 1 +37112 1759 that verges on the amateurish 1 +37113 1759 verges on the amateurish 1 +37114 1759 verges 2 +37115 1759 on the amateurish 1 +37116 1759 the amateurish 1 +37117 1760 ... unlike -LRB- Scorsese 's Mean Streets -RRB- , Ash Wednesday is essentially devoid of interesting characters or even a halfway intriguing plot . 0 +37118 1760 unlike -LRB- Scorsese 's Mean Streets -RRB- , Ash Wednesday is essentially devoid of interesting characters or even a halfway intriguing plot . 1 +37119 1760 unlike -LRB- Scorsese 's Mean Streets -RRB- 2 +37120 1760 -LRB- Scorsese 's Mean Streets -RRB- 2 +37121 1760 Scorsese 's Mean Streets -RRB- 2 +37122 1760 Scorsese 's Mean Streets 2 +37123 1760 Mean Streets 2 +37124 1760 Streets 2 +37125 1760 , Ash Wednesday is essentially devoid of interesting characters or even a halfway intriguing plot . 1 +37126 1760 Ash Wednesday is essentially devoid of interesting characters or even a halfway intriguing plot . 1 +37127 1760 Ash Wednesday 2 +37128 1760 Ash 2 +37129 1760 Wednesday 2 +37130 1760 is essentially devoid of interesting characters or even a halfway intriguing plot . 2 +37131 1760 is essentially devoid of interesting characters or even a halfway intriguing plot 0 +37132 1760 essentially devoid of interesting characters or even a halfway intriguing plot 2 +37133 1760 devoid of interesting characters or even a halfway intriguing plot 0 +37134 1760 of interesting characters or even a halfway intriguing plot 2 +37135 1760 interesting characters or even a halfway intriguing plot 3 +37136 1760 interesting characters or 2 +37137 1760 interesting characters 3 +37138 1760 even a halfway intriguing plot 2 +37139 1760 a halfway intriguing plot 3 +37140 1760 halfway intriguing plot 3 +37141 1760 intriguing plot 3 +37142 1761 Only two-fifths of a satisfying movie experience . 2 +37143 1761 Only two-fifths of a satisfying movie experience 0 +37144 1761 Only two-fifths 2 +37145 1761 two-fifths 2 +37146 1761 of a satisfying movie experience 3 +37147 1761 a satisfying movie experience 4 +37148 1761 satisfying movie experience 3 +37149 1762 ... the good and different idea -LRB- of middle-aged romance -RRB- is not handled well and , except for the fine star performances , there is little else to recommend `` Never Again . '' 1 +37150 1762 the good and different idea -LRB- of middle-aged romance -RRB- is not handled well and , except for the fine star performances , there is little else to recommend `` Never Again . '' 1 +37151 1762 the good and different idea -LRB- of middle-aged romance -RRB- is not handled well and , except for the fine star performances 1 +37152 1762 the good and different 3 +37153 1762 good and different 3 +37154 1762 idea -LRB- of middle-aged romance -RRB- is not handled well and , except for the fine star performances 1 +37155 1762 idea -LRB- of middle-aged romance -RRB- is not handled well and , 1 +37156 1762 idea -LRB- of middle-aged romance -RRB- is not handled well and 1 +37157 1762 idea -LRB- of middle-aged romance -RRB- is not handled well 1 +37158 1762 idea -LRB- of middle-aged romance -RRB- 2 +37159 1762 -LRB- of middle-aged romance -RRB- 2 +37160 1762 of middle-aged romance -RRB- 2 +37161 1762 of middle-aged romance 2 +37162 1762 is not handled well 1 +37163 1762 handled well 3 +37164 1762 except for the fine star performances 3 +37165 1762 for the fine star performances 3 +37166 1762 the fine star performances 4 +37167 1762 fine star performances 4 +37168 1762 star performances 3 +37169 1762 , there is little else to recommend `` Never Again . '' 1 +37170 1762 there is little else to recommend `` Never Again . '' 1 +37171 1762 is little else to recommend `` Never Again . '' 1 +37172 1762 is little else to recommend `` Never Again . 1 +37173 1762 is little else to recommend `` Never Again 1 +37174 1762 is little else 1 +37175 1762 to recommend `` Never Again 2 +37176 1762 recommend `` Never Again 3 +37177 1762 recommend `` 3 +37178 1763 Murder by Numbers ' is n't a great movie , but it 's a perfectly acceptable widget . 2 +37179 1763 Murder by Numbers ' is n't a great movie , but it 's a perfectly acceptable widget 2 +37180 1763 Murder by Numbers ' is n't a great movie , but 1 +37181 1763 Murder by Numbers ' is n't a great movie , 0 +37182 1763 Murder by Numbers ' is n't a great movie 0 +37183 1763 Murder by Numbers ' 2 +37184 1763 by Numbers ' 2 +37185 1763 Numbers ' 2 +37186 1763 is n't a great movie 1 +37187 1763 it 's a perfectly acceptable widget 3 +37188 1763 's a perfectly acceptable widget 3 +37189 1763 a perfectly acceptable widget 3 +37190 1763 perfectly acceptable widget 3 +37191 1763 widget 2 +37192 1764 It may as well be called `` Jar-Jar Binks : The Movie . '' 0 +37193 1764 may as well be called `` Jar-Jar Binks : The Movie . '' 0 +37194 1764 may as well be called `` Jar-Jar Binks : The Movie . 1 +37195 1764 may as well be called `` Jar-Jar Binks : The Movie 0 +37196 1764 may as well 2 +37197 1764 be called `` Jar-Jar Binks : The Movie 1 +37198 1764 called `` Jar-Jar Binks : The Movie 1 +37199 1764 `` Jar-Jar Binks : The Movie 2 +37200 1764 Jar-Jar Binks : The Movie 1 +37201 1764 Jar-Jar Binks : 2 +37202 1764 Jar-Jar Binks 2 +37203 1764 Jar-Jar 2 +37204 1764 Binks 3 +37205 1765 But it would be better to wait for the video . 1 +37206 1765 it would be better to wait for the video . 1 +37207 1765 would be better to wait for the video . 2 +37208 1765 would be better to wait for the video 2 +37209 1765 be better to wait for the video 1 +37210 1765 be better 2 +37211 1765 to wait for the video 1 +37212 1765 wait for the video 1 +37213 1765 for the video 2 +37214 1765 the video 2 +37215 1766 Delirious fun . 4 +37216 1766 Delirious 2 +37217 1766 fun . 3 +37218 1767 There are some fairly unsettling scenes , but they never succeed in really rattling the viewer . 1 +37219 1767 There are some fairly unsettling scenes , but they never succeed in really rattling the viewer 1 +37220 1767 There are some fairly unsettling scenes , but 1 +37221 1767 There are some fairly unsettling scenes , 1 +37222 1767 There are some fairly unsettling scenes 1 +37223 1767 are some fairly unsettling scenes 1 +37224 1767 some fairly unsettling scenes 1 +37225 1767 fairly unsettling scenes 1 +37226 1767 fairly unsettling 2 +37227 1767 they never succeed in really rattling the viewer 1 +37228 1767 never succeed in really rattling the viewer 1 +37229 1767 succeed in really rattling the viewer 3 +37230 1767 in really rattling the viewer 2 +37231 1767 really rattling the viewer 1 +37232 1767 rattling the viewer 3 +37233 1767 rattling 2 +37234 1768 Special P.O.V. camera mounts on bikes , skateboards , and motorcycles provide an intense experience when splashed across the immense IMAX screen . 4 +37235 1768 Special P.O.V. camera mounts on bikes , skateboards , and motorcycles 2 +37236 1768 Special P.O.V. camera mounts 2 +37237 1768 P.O.V. camera mounts 2 +37238 1768 P.O.V. 2 +37239 1768 camera mounts 2 +37240 1768 mounts 2 +37241 1768 on bikes , skateboards , and motorcycles 2 +37242 1768 bikes , skateboards , and motorcycles 2 +37243 1768 bikes 2 +37244 1768 , skateboards , and motorcycles 2 +37245 1768 skateboards , and motorcycles 2 +37246 1768 skateboards 2 +37247 1768 , and motorcycles 3 +37248 1768 motorcycles 2 +37249 1768 provide an intense experience when splashed across the immense IMAX screen . 4 +37250 1768 provide an intense experience when splashed across the immense IMAX screen 3 +37251 1768 provide an intense experience 3 +37252 1768 an intense experience 3 +37253 1768 intense experience 3 +37254 1768 when splashed across the immense IMAX screen 2 +37255 1768 splashed across the immense IMAX screen 2 +37256 1768 across the immense IMAX screen 2 +37257 1768 the immense IMAX screen 2 +37258 1768 immense IMAX screen 3 +37259 1768 immense 3 +37260 1769 There are scenes of cinematic perfection that steal your heart away . 4 +37261 1769 are scenes of cinematic perfection that steal your heart away . 4 +37262 1769 are scenes of cinematic perfection that steal your heart away 4 +37263 1769 scenes of cinematic perfection that steal your heart away 4 +37264 1769 scenes of cinematic perfection 4 +37265 1769 of cinematic perfection 4 +37266 1769 cinematic perfection 4 +37267 1769 perfection 4 +37268 1769 that steal your heart away 3 +37269 1769 steal your heart away 3 +37270 1769 steal your heart 3 +37271 1769 steal 1 +37272 1770 A fantastic premise anchors this movie , but what it needs is either a more rigid , Blair Witch-style commitment to its mockumentary format , or a more straightforward , dramatic treatment , with all the grandiosity that that implies . 2 +37273 1770 A fantastic premise anchors this movie , but what it needs 3 +37274 1770 A fantastic premise anchors 4 +37275 1770 fantastic premise anchors 4 +37276 1770 premise anchors 2 +37277 1770 anchors 2 +37278 1770 this movie , but what it needs 1 +37279 1770 , but what it needs 2 +37280 1770 what it needs 2 +37281 1770 it needs 1 +37282 1770 is either a more rigid , Blair Witch-style commitment to its mockumentary format , or a more straightforward , dramatic treatment , with all the grandiosity that that implies . 2 +37283 1770 is either a more rigid , Blair Witch-style commitment to its mockumentary format , or a more straightforward , dramatic treatment , with all the grandiosity that that implies 3 +37284 1770 is either a more rigid , Blair Witch-style commitment to its mockumentary format , or a more straightforward , dramatic treatment , with all the grandiosity 2 +37285 1770 is either 2 +37286 1770 a more rigid , Blair Witch-style commitment to its mockumentary format , or a more straightforward , dramatic treatment , with all the grandiosity 3 +37287 1770 a more rigid , Blair Witch-style commitment to its mockumentary format , or 1 +37288 1770 a more rigid , Blair Witch-style commitment to its mockumentary format , 2 +37289 1770 a more rigid , Blair Witch-style commitment to its mockumentary format 2 +37290 1770 a more rigid , Blair Witch-style commitment 2 +37291 1770 more rigid , Blair Witch-style commitment 2 +37292 1770 more rigid 2 +37293 1770 rigid 1 +37294 1770 , Blair Witch-style commitment 3 +37295 1770 Blair Witch-style commitment 3 +37296 1770 Witch-style commitment 2 +37297 1770 Witch-style 2 +37298 1770 commitment 2 +37299 1770 to its mockumentary format 2 +37300 1770 its mockumentary format 2 +37301 1770 mockumentary format 2 +37302 1770 format 2 +37303 1770 a more straightforward , dramatic treatment , with all the grandiosity 3 +37304 1770 a more straightforward , dramatic treatment , 3 +37305 1770 a more straightforward , dramatic treatment 2 +37306 1770 more straightforward , dramatic treatment 3 +37307 1770 more straightforward 3 +37308 1770 , dramatic treatment 3 +37309 1770 dramatic treatment 3 +37310 1770 with all the grandiosity 1 +37311 1770 all the grandiosity 2 +37312 1770 the grandiosity 2 +37313 1770 grandiosity 3 +37314 1770 that that implies 2 +37315 1770 that implies 2 +37316 1771 `` Interview '' loses its overall sense of mystery and becomes a TV episode rather than a documentary that you actually buy into . 0 +37317 1771 Interview '' loses its overall sense of mystery and becomes a TV episode rather than a documentary that you actually buy into . 1 +37318 1771 '' loses its overall sense of mystery and becomes a TV episode rather than a documentary that you actually buy into . 0 +37319 1771 loses its overall sense of mystery and becomes a TV episode rather than a documentary that you actually buy into . 0 +37320 1771 loses its overall sense of mystery and becomes a TV episode rather than a documentary that you actually buy into 0 +37321 1771 loses its overall sense of mystery and becomes a TV episode rather than a documentary 2 +37322 1771 loses its overall sense of mystery and 1 +37323 1771 loses its overall sense of mystery 1 +37324 1771 its overall sense of mystery 3 +37325 1771 its overall sense 2 +37326 1771 of mystery 2 +37327 1771 becomes a TV episode rather than a documentary 1 +37328 1771 a TV episode rather than a documentary 1 +37329 1771 a TV episode rather than 2 +37330 1771 a TV episode 2 +37331 1771 TV episode 2 +37332 1771 that you actually buy into 2 +37333 1771 you actually buy into 3 +37334 1771 actually buy into 2 +37335 1771 buy into 2 +37336 1772 ... the first 2\/3 of the film are incredibly captivating and insanely funny , thanks in part to interesting cinematic devices -LRB- cool visual backmasking -RRB- , a solid cast , and some wickedly sick and twisted humor ... 4 +37337 1772 the first 2\/3 of the film are incredibly captivating and insanely funny , thanks in part to interesting cinematic devices -LRB- cool visual backmasking -RRB- , a solid cast , and some wickedly sick and twisted humor ... 4 +37338 1772 the first 2\/3 of the film 2 +37339 1772 the first 2\/3 2 +37340 1772 first 2\/3 2 +37341 1772 2\/3 2 +37342 1772 are incredibly captivating and insanely funny , thanks in part to interesting cinematic devices -LRB- cool visual backmasking -RRB- , a solid cast , and some wickedly sick and twisted humor ... 4 +37343 1772 are incredibly captivating and insanely funny , thanks in part to interesting cinematic devices -LRB- cool visual backmasking -RRB- , a solid cast , and some wickedly sick and twisted humor 4 +37344 1772 are incredibly captivating and insanely funny , 4 +37345 1772 are incredibly captivating and insanely funny 4 +37346 1772 incredibly captivating and insanely funny 4 +37347 1772 incredibly captivating and 4 +37348 1772 incredibly captivating 4 +37349 1772 insanely funny 4 +37350 1772 thanks in part to interesting cinematic devices -LRB- cool visual backmasking -RRB- , a solid cast , and some wickedly sick and twisted humor 4 +37351 1772 in part to interesting cinematic devices -LRB- cool visual backmasking -RRB- , a solid cast , and some wickedly sick and twisted humor 4 +37352 1772 in part 2 +37353 1772 to interesting cinematic devices -LRB- cool visual backmasking -RRB- , a solid cast , and some wickedly sick and twisted humor 4 +37354 1772 interesting cinematic devices -LRB- cool visual backmasking -RRB- , a solid cast , and some wickedly sick and twisted humor 4 +37355 1772 interesting cinematic devices -LRB- cool visual backmasking -RRB- , a solid cast , and 4 +37356 1772 interesting cinematic devices -LRB- cool visual backmasking -RRB- , a solid cast , 4 +37357 1772 interesting cinematic devices -LRB- cool visual backmasking -RRB- , a solid cast 4 +37358 1772 interesting cinematic devices -LRB- cool visual backmasking -RRB- , 3 +37359 1772 interesting cinematic devices -LRB- cool visual backmasking -RRB- 3 +37360 1772 interesting cinematic devices 3 +37361 1772 cinematic devices 2 +37362 1772 -LRB- cool visual backmasking -RRB- 3 +37363 1772 cool visual backmasking -RRB- 3 +37364 1772 cool visual backmasking 3 +37365 1772 visual backmasking 2 +37366 1772 backmasking 2 +37367 1772 a solid cast 4 +37368 1772 solid cast 3 +37369 1772 some wickedly sick and twisted humor 3 +37370 1772 wickedly sick and twisted humor 3 +37371 1772 wickedly sick and twisted 2 +37372 1772 sick and twisted 1 +37373 1772 sick and 1 +37374 1773 This is the best Star Trek movie in a long time . 4 +37375 1773 is the best Star Trek movie in a long time . 4 +37376 1773 is the best Star Trek movie in a long time 4 +37377 1773 the best Star Trek movie in a long time 4 +37378 1773 the best Star Trek movie 4 +37379 1773 best Star Trek movie 3 +37380 1773 Star Trek movie 2 +37381 1773 Trek movie 2 +37382 1774 Auto Focus is not your standard Hollywood bio-pic . 2 +37383 1774 is not your standard Hollywood bio-pic . 2 +37384 1774 is not your standard Hollywood bio-pic 2 +37385 1774 your standard Hollywood bio-pic 1 +37386 1774 standard Hollywood bio-pic 2 +37387 1774 Hollywood bio-pic 2 +37388 1774 bio-pic 2 +37389 1775 `` Not really as bad as you might think ! '' 2 +37390 1775 Not really as bad as you might think ! '' 3 +37391 1775 Not really as bad as you might think ! 3 +37392 1775 Not really as bad as you might think 2 +37393 1775 really as bad as you might think 0 +37394 1775 as bad as you might think 1 +37395 1775 as bad 1 +37396 1775 as you might think 2 +37397 1775 you might think 2 +37398 1775 might think 2 +37399 1776 Beautifully filmed and well acted ... but admittedly problematic in its narrative specifics . 3 +37400 1776 Beautifully filmed 4 +37401 1776 and well acted ... but admittedly problematic in its narrative specifics . 2 +37402 1776 and well acted ... but admittedly problematic in its narrative specifics 3 +37403 1776 and well 2 +37404 1776 acted ... but admittedly problematic in its narrative specifics 2 +37405 1776 acted ... but 1 +37406 1776 acted ... 2 +37407 1776 admittedly problematic in its narrative specifics 1 +37408 1776 problematic in its narrative specifics 2 +37409 1776 problematic 1 +37410 1776 in its narrative specifics 2 +37411 1776 its narrative specifics 2 +37412 1776 narrative specifics 2 +37413 1776 specifics 2 +37414 1777 Brainless , but enjoyably over-the-top , the retro gang melodrama , Deuces Wild represents fifties teen-gang machismo in a way that borders on rough-trade homo-eroticism . 1 +37415 1777 Brainless , but enjoyably over-the-top , the retro gang melodrama , Deuces Wild represents 3 +37416 1777 Brainless , but enjoyably over-the-top , the retro gang melodrama , 2 +37417 1777 Brainless , but enjoyably over-the-top , the retro gang melodrama 3 +37418 1777 Brainless , but enjoyably over-the-top , 3 +37419 1777 Brainless , but enjoyably over-the-top 2 +37420 1777 Brainless , but 1 +37421 1777 Brainless , 1 +37422 1777 Brainless 1 +37423 1777 enjoyably over-the-top 4 +37424 1777 enjoyably 4 +37425 1777 the retro gang melodrama 1 +37426 1777 retro gang melodrama 2 +37427 1777 gang melodrama 2 +37428 1777 Deuces Wild represents 2 +37429 1777 Deuces Wild 2 +37430 1777 Deuces 2 +37431 1777 fifties teen-gang machismo in a way that borders on rough-trade homo-eroticism . 2 +37432 1777 fifties teen-gang machismo in a way that borders on rough-trade homo-eroticism 2 +37433 1777 fifties teen-gang machismo 2 +37434 1777 fifties 2 +37435 1777 teen-gang machismo 2 +37436 1777 teen-gang 2 +37437 1777 machismo 2 +37438 1777 in a way that borders on rough-trade homo-eroticism 2 +37439 1777 a way that borders on rough-trade homo-eroticism 2 +37440 1777 that borders on rough-trade homo-eroticism 1 +37441 1777 borders on rough-trade homo-eroticism 3 +37442 1777 on rough-trade homo-eroticism 2 +37443 1777 rough-trade homo-eroticism 1 +37444 1777 rough-trade 2 +37445 1777 homo-eroticism 2 +37446 1778 One of the best films of the year with its exquisite acting , inventive screenplay , mesmerizing music , and many inimitable scenes of tenderness , loss , discontent , and yearning . 4 +37447 1778 One of the best films of the year with its exquisite acting , inventive screenplay , mesmerizing music , and many inimitable scenes of tenderness , loss , discontent , and yearning 4 +37448 1778 One of the best films of the year with its exquisite acting , inventive screenplay , mesmerizing music , and many inimitable scenes 4 +37449 1778 of the best films of the year with its exquisite acting , inventive screenplay , mesmerizing music , and many inimitable scenes 4 +37450 1778 the best films of the year with its exquisite acting , inventive screenplay , mesmerizing music , and many inimitable scenes 4 +37451 1778 of the year with its exquisite acting , inventive screenplay , mesmerizing music , and many inimitable scenes 4 +37452 1778 the year with its exquisite acting , inventive screenplay , mesmerizing music , and many inimitable scenes 4 +37453 1778 with its exquisite acting , inventive screenplay , mesmerizing music , and many inimitable scenes 4 +37454 1778 its exquisite acting , inventive screenplay , mesmerizing music , and many inimitable scenes 4 +37455 1778 its exquisite acting , inventive screenplay , mesmerizing music , and 4 +37456 1778 its exquisite acting , inventive screenplay , mesmerizing music , 4 +37457 1778 its exquisite acting , inventive screenplay , mesmerizing music 4 +37458 1778 its exquisite acting , inventive screenplay , 4 +37459 1778 its exquisite acting , inventive screenplay 4 +37460 1778 its exquisite acting , 4 +37461 1778 its exquisite acting 3 +37462 1778 exquisite acting 4 +37463 1778 inventive screenplay 3 +37464 1778 mesmerizing music 4 +37465 1778 many inimitable scenes 3 +37466 1778 inimitable scenes 3 +37467 1778 inimitable 3 +37468 1778 of tenderness , loss , discontent , and yearning 2 +37469 1778 tenderness , loss , discontent , and yearning 2 +37470 1778 tenderness , 2 +37471 1778 loss , discontent , and yearning 2 +37472 1778 , discontent , and yearning 1 +37473 1778 discontent , and yearning 2 +37474 1778 discontent 2 +37475 1778 , and yearning 2 +37476 1779 I saw Juwanna Mann so you do n't have to . 2 +37477 1779 saw Juwanna Mann so you do n't have to . 0 +37478 1779 saw Juwanna Mann so you do n't have to 1 +37479 1779 saw Juwanna Mann 2 +37480 1779 so you do n't have to 2 +37481 1779 you do n't have to 2 +37482 1779 do n't have to 2 +37483 1779 have to 2 +37484 1780 Why anyone who is not a character in this movie should care is beyond me . 0 +37485 1780 Why anyone who is not a character in this movie should care 2 +37486 1780 anyone who is not a character in this movie should care 2 +37487 1780 anyone who is not a character in this movie 2 +37488 1780 who is not a character in this movie 3 +37489 1780 is not a character in this movie 2 +37490 1780 a character in this movie 2 +37491 1780 should care 2 +37492 1780 is beyond me . 1 +37493 1780 is beyond me 2 +37494 1780 beyond me 2 +37495 1781 What starts off as a potentially incredibly twisting mystery becomes simply a monster chase film . 1 +37496 1781 What starts off as a potentially incredibly twisting mystery 2 +37497 1781 starts off as a potentially incredibly twisting mystery 3 +37498 1781 as a potentially incredibly twisting mystery 3 +37499 1781 a potentially incredibly twisting mystery 4 +37500 1781 potentially incredibly twisting mystery 3 +37501 1781 potentially incredibly 3 +37502 1781 twisting mystery 2 +37503 1781 twisting 2 +37504 1781 becomes simply a monster chase film . 2 +37505 1781 becomes simply a monster chase film 1 +37506 1781 becomes simply 2 +37507 1781 a monster chase film 2 +37508 1781 monster chase film 2 +37509 1781 chase film 2 +37510 1782 ... they missed the boat . 2 +37511 1782 they missed the boat . 1 +37512 1782 missed the boat . 1 +37513 1782 missed the boat 1 +37514 1782 the boat 2 +37515 1782 boat 2 +37516 1783 Characterisation has been sacrificed for the sake of spectacle . 0 +37517 1783 Characterisation 2 +37518 1783 has been sacrificed for the sake of spectacle . 2 +37519 1783 has been sacrificed for the sake of spectacle 1 +37520 1783 been sacrificed for the sake of spectacle 0 +37521 1783 sacrificed for the sake of spectacle 1 +37522 1783 for the sake of spectacle 2 +37523 1783 the sake of spectacle 2 +37524 1783 of spectacle 2 +37525 1784 As an introduction to the man 's theories and influence , Derrida is all but useless ; as a portrait of the artist as an endlessly inquisitive old man , however , it 's invaluable . 3 +37526 1784 As an introduction to the man 's theories and influence , Derrida is all but useless ; as a portrait of the artist as an endlessly inquisitive old man , however , it 's invaluable 3 +37527 1784 As an introduction to the man 's theories and influence , Derrida is all but useless ; 1 +37528 1784 As an introduction to the man 's theories and influence , Derrida is all but useless 1 +37529 1784 As an introduction to the man 's theories and influence 2 +37530 1784 an introduction to the man 's theories and influence 2 +37531 1784 an introduction to the man 's theories and 2 +37532 1784 an introduction to the man 's theories 2 +37533 1784 an introduction 2 +37534 1784 introduction 2 +37535 1784 to the man 's theories 2 +37536 1784 the man 's theories 2 +37537 1784 the man 's 2 +37538 1784 theories 3 +37539 1784 influence 3 +37540 1784 , Derrida is all but useless 0 +37541 1784 Derrida is all but useless 1 +37542 1784 Derrida 2 +37543 1784 is all but useless 1 +37544 1784 all but useless 2 +37545 1784 as a portrait of the artist as an endlessly inquisitive old man , however , it 's invaluable 3 +37546 1784 as a portrait of the artist as an endlessly inquisitive old man 2 +37547 1784 a portrait of the artist as an endlessly inquisitive old man 2 +37548 1784 of the artist as an endlessly inquisitive old man 2 +37549 1784 the artist as an endlessly inquisitive old man 3 +37550 1784 as an endlessly inquisitive old man 2 +37551 1784 an endlessly inquisitive old man 2 +37552 1784 endlessly inquisitive old man 2 +37553 1784 endlessly inquisitive 2 +37554 1784 inquisitive 3 +37555 1784 old man 2 +37556 1784 , however , it 's invaluable 2 +37557 1784 however , it 's invaluable 3 +37558 1784 , it 's invaluable 2 +37559 1784 it 's invaluable 2 +37560 1784 's invaluable 2 +37561 1784 invaluable 2 +37562 1785 A delightful , if minor , pastry of a movie . 4 +37563 1785 A delightful , if minor , pastry of a movie 3 +37564 1785 A delightful , if minor , pastry 3 +37565 1785 delightful , if minor , pastry 3 +37566 1785 delightful , if minor , 3 +37567 1785 , if minor , 2 +37568 1785 if minor , 2 +37569 1785 pastry 2 +37570 1786 ... Despite lagging near the finish line , the movie runs a good race , one that will have you at the edge of your seat for long stretches . ' 3 +37571 1786 Despite lagging near the finish line , the movie runs a good race , one that will have you at the edge of your seat for long stretches . ' 3 +37572 1786 Despite lagging near the finish line 1 +37573 1786 lagging near the finish line 1 +37574 1786 lagging 1 +37575 1786 near the finish line 2 +37576 1786 , the movie runs a good race , one that will have you at the edge of your seat for long stretches . ' 4 +37577 1786 the movie runs a good race , one that will have you at the edge of your seat for long stretches . ' 3 +37578 1786 runs a good race , one that will have you at the edge of your seat for long stretches . ' 4 +37579 1786 runs a good race , one that will have you at the edge of your seat for long stretches . 4 +37580 1786 runs a good race , one that will have you at the edge of your seat for long stretches 4 +37581 1786 a good race , one that will have you at the edge of your seat for long stretches 4 +37582 1786 a good race , 3 +37583 1786 a good race 3 +37584 1786 good race 3 +37585 1786 race 2 +37586 1786 one that will have you at the edge of your seat for long stretches 4 +37587 1786 that will have you at the edge of your seat for long stretches 4 +37588 1786 will have you at the edge of your seat for long stretches 3 +37589 1786 have you at the edge of your seat for long stretches 4 +37590 1786 have you 2 +37591 1786 at the edge of your seat for long stretches 3 +37592 1786 the edge of your seat for long stretches 3 +37593 1786 of your seat for long stretches 2 +37594 1786 your seat for long stretches 1 +37595 1786 for long stretches 2 +37596 1786 long stretches 2 +37597 1787 Clockstoppers is one of those crazy , mixed-up films that does n't know what it wants to be when it grows up . 1 +37598 1787 Clockstoppers 2 +37599 1787 is one of those crazy , mixed-up films that does n't know what it wants to be when it grows up . 1 +37600 1787 is one of those crazy , mixed-up films that does n't know what it wants to be when it grows up 1 +37601 1787 one of those crazy , mixed-up films that does n't know what it wants to be when it grows up 1 +37602 1787 of those crazy , mixed-up films that does n't know what it wants to be when it grows up 1 +37603 1787 those crazy , mixed-up films that does n't know what it wants to be when it grows up 2 +37604 1787 those crazy , mixed-up films 2 +37605 1787 crazy , mixed-up films 1 +37606 1787 crazy 2 +37607 1787 , mixed-up films 2 +37608 1787 mixed-up films 1 +37609 1787 mixed-up 3 +37610 1787 that does n't know what it wants to be when it grows up 2 +37611 1787 does n't know what it wants to be when it grows up 2 +37612 1787 know what it wants to be when it grows up 3 +37613 1787 what it wants to be when it grows up 2 +37614 1787 it wants to be when it grows up 2 +37615 1787 wants to be when it grows up 2 +37616 1787 to be when it grows up 2 +37617 1787 be when it grows up 2 +37618 1787 when it grows up 2 +37619 1787 it grows up 2 +37620 1787 grows up 3 +37621 1788 Fear Dot Com is more frustrating than a modem that disconnects every 10 seconds . 1 +37622 1788 Fear Dot Com 2 +37623 1788 Dot Com 2 +37624 1788 Dot 2 +37625 1788 Com 2 +37626 1788 is more frustrating than a modem that disconnects every 10 seconds . 0 +37627 1788 is more frustrating than a modem that disconnects every 10 seconds 0 +37628 1788 more frustrating than a modem that disconnects every 10 seconds 0 +37629 1788 frustrating than a modem that disconnects every 10 seconds 0 +37630 1788 than a modem that disconnects every 10 seconds 1 +37631 1788 a modem that disconnects every 10 seconds 1 +37632 1788 a modem 2 +37633 1788 modem 2 +37634 1788 that disconnects every 10 seconds 1 +37635 1788 disconnects every 10 seconds 1 +37636 1788 disconnects 1 +37637 1788 every 10 seconds 2 +37638 1788 10 seconds 2 +37639 1789 And Vin Diesel is the man . 3 +37640 1789 Vin Diesel is the man . 4 +37641 1789 is the man . 2 +37642 1789 is the man 2 +37643 1790 Nights feels more like a quickie TV special than a feature film ... It 's not even a TV special you 'd bother watching past the second commercial break . 1 +37644 1790 Nights feels more like a quickie TV special than a feature film ... It 's not even a TV special you 'd bother watching past the second commercial break 1 +37645 1790 Nights feels more like a quickie TV special than a feature film ... 1 +37646 1790 Nights feels more like a quickie TV special than a feature film 1 +37647 1790 Nights 2 +37648 1790 feels more like a quickie TV special than a feature film 1 +37649 1790 like a quickie TV special than a feature film 1 +37650 1790 a quickie TV special than a feature film 2 +37651 1790 a quickie TV special 2 +37652 1790 quickie TV special 1 +37653 1790 than a feature film 2 +37654 1790 a feature film 2 +37655 1790 It 's not even a TV special you 'd bother watching past the second commercial break 0 +37656 1790 's not even a TV special you 'd bother watching past the second commercial break 1 +37657 1790 's not even a TV 2 +37658 1790 even a TV 2 +37659 1790 a TV 2 +37660 1790 special you 'd bother watching past the second commercial break 2 +37661 1790 you 'd bother watching past the second commercial break 2 +37662 1790 'd bother watching past the second commercial break 1 +37663 1790 bother watching past the second commercial break 1 +37664 1790 watching past the second commercial break 2 +37665 1790 past the second commercial break 2 +37666 1790 the second commercial break 2 +37667 1790 second commercial break 2 +37668 1790 commercial break 2 +37669 1791 While there are times when the film 's reach exceeds its grasp , the production works more often than it does n't . 3 +37670 1791 While there are times when the film 's reach exceeds its grasp 2 +37671 1791 there are times when the film 's reach exceeds its grasp 1 +37672 1791 are times when the film 's reach exceeds its grasp 1 +37673 1791 times when the film 's reach exceeds its grasp 1 +37674 1791 when the film 's reach exceeds its grasp 2 +37675 1791 the film 's reach exceeds its grasp 3 +37676 1791 the film 's reach 2 +37677 1791 exceeds its grasp 2 +37678 1791 exceeds 3 +37679 1791 its grasp 2 +37680 1791 , the production works more often than it does n't . 3 +37681 1791 the production works more often than it does n't . 2 +37682 1791 the production 2 +37683 1791 works more often than it does n't . 3 +37684 1791 works more often than it does n't 3 +37685 1791 more often than it does n't 2 +37686 1791 more often 2 +37687 1791 than it does n't 2 +37688 1791 it does n't 2 +37689 1792 Richly entertaining and suggestive of any number of metaphorical readings . 4 +37690 1792 Richly entertaining and suggestive of any number of metaphorical readings 3 +37691 1792 Richly entertaining and suggestive 4 +37692 1792 entertaining and suggestive 4 +37693 1792 entertaining and 3 +37694 1792 suggestive 2 +37695 1792 of any number of metaphorical readings 2 +37696 1792 any number of metaphorical readings 3 +37697 1792 any number 2 +37698 1792 of metaphorical readings 2 +37699 1792 metaphorical readings 2 +37700 1792 readings 2 +37701 1793 It 's a day at the beach -- with air conditioning and popcorn . 3 +37702 1793 's a day at the beach -- with air conditioning and popcorn . 3 +37703 1793 's a day at the beach -- with air conditioning and popcorn 3 +37704 1793 a day at the beach -- with air conditioning and popcorn 3 +37705 1793 a day at the beach -- 2 +37706 1793 a day at the beach 3 +37707 1793 a day 2 +37708 1793 at the beach 2 +37709 1793 the beach 3 +37710 1793 with air conditioning and popcorn 2 +37711 1793 air conditioning and popcorn 3 +37712 1793 conditioning and popcorn 2 +37713 1793 conditioning and 2 +37714 1793 conditioning 2 +37715 1794 ... a bland , pretentious mess . 1 +37716 1794 a bland , pretentious mess . 0 +37717 1794 a bland 1 +37718 1794 , pretentious mess . 0 +37719 1794 pretentious mess . 0 +37720 1794 pretentious mess 1 +37721 1795 The actors try hard but come off too amateurish and awkward . 0 +37722 1795 try hard but come off too amateurish and awkward . 0 +37723 1795 try hard but come off too amateurish and awkward 1 +37724 1795 try hard but 1 +37725 1795 try hard 1 +37726 1795 come off too amateurish and awkward 1 +37727 1795 too amateurish and awkward 1 +37728 1795 too amateurish and 1 +37729 1795 too amateurish 1 +37730 1796 Goldbacher draws on an elegant visual sense and a talent for easy , seductive pacing ... but she and writing partner Laurence Coriat do n't manage an equally assured narrative coinage . 3 +37731 1796 Goldbacher draws on an elegant visual sense and a talent for easy , seductive pacing ... but she and writing partner Laurence Coriat do n't manage an equally assured narrative coinage 3 +37732 1796 Goldbacher draws on an elegant visual sense and a talent for easy , seductive pacing ... but 3 +37733 1796 Goldbacher draws on an elegant visual sense and a talent for easy , seductive pacing ... 3 +37734 1796 Goldbacher draws on an elegant visual sense and a talent for easy , seductive pacing 3 +37735 1796 Goldbacher 1 +37736 1796 draws on an elegant visual sense and a talent for easy , seductive pacing 4 +37737 1796 draws on an elegant visual sense and a talent 4 +37738 1796 on an elegant visual sense and a talent 4 +37739 1796 an elegant visual sense and a talent 3 +37740 1796 an elegant visual sense and 3 +37741 1796 an elegant visual sense 4 +37742 1796 elegant visual sense 3 +37743 1796 visual sense 2 +37744 1796 a talent 3 +37745 1796 for easy , seductive pacing 3 +37746 1796 easy , seductive pacing 3 +37747 1796 easy , seductive 3 +37748 1796 , seductive 2 +37749 1796 she and writing partner Laurence Coriat do n't manage an equally assured narrative coinage 2 +37750 1796 she and writing partner Laurence Coriat 2 +37751 1796 she and 2 +37752 1796 writing partner Laurence Coriat 2 +37753 1796 partner Laurence Coriat 2 +37754 1796 partner 2 +37755 1796 Laurence Coriat 2 +37756 1796 Laurence 2 +37757 1796 Coriat 2 +37758 1796 do n't manage an equally assured narrative coinage 1 +37759 1796 manage an equally assured narrative coinage 2 +37760 1796 an equally assured narrative coinage 3 +37761 1796 equally assured narrative coinage 2 +37762 1796 equally assured 3 +37763 1796 narrative coinage 2 +37764 1796 coinage 2 +37765 1797 The film would have been more enjoyable had the balance shifted in favor of water-bound action over the land-based ` drama , ' but the emphasis on the latter leaves Blue Crush waterlogged . 1 +37766 1797 The film would have been more enjoyable had the balance shifted in favor of water-bound action over the land-based ` drama , ' but the emphasis on the latter leaves Blue Crush waterlogged 1 +37767 1797 The film would have been more enjoyable had the balance shifted in favor of water-bound action over the land-based ` drama , ' but 1 +37768 1797 The film would have been more enjoyable had the balance shifted in favor of water-bound action over the land-based ` drama , ' 1 +37769 1797 The film would have been more enjoyable had the balance shifted in favor of water-bound action over the land-based ` drama , 1 +37770 1797 The film would have been more enjoyable had the balance shifted in favor of water-bound action over the land-based ` drama 2 +37771 1797 would have been more enjoyable had the balance shifted in favor of water-bound action over the land-based ` drama 2 +37772 1797 have been more enjoyable had the balance shifted in favor of water-bound action over the land-based ` drama 1 +37773 1797 been more enjoyable had the balance shifted in favor of water-bound action over the land-based ` drama 2 +37774 1797 more enjoyable had the balance shifted in favor of water-bound action over the land-based ` drama 2 +37775 1797 had the balance shifted in favor of water-bound action over the land-based ` drama 1 +37776 1797 the balance shifted in favor of water-bound action over the land-based ` drama 2 +37777 1797 the balance 2 +37778 1797 shifted in favor of water-bound action over the land-based ` drama 2 +37779 1797 shifted in favor of water-bound action 2 +37780 1797 shifted 2 +37781 1797 in favor of water-bound action 2 +37782 1797 favor of water-bound action 2 +37783 1797 of water-bound action 2 +37784 1797 water-bound action 2 +37785 1797 water-bound 2 +37786 1797 over the land-based ` drama 2 +37787 1797 the land-based ` drama 2 +37788 1797 land-based ` drama 2 +37789 1797 land-based 2 +37790 1797 ` drama 2 +37791 1797 the emphasis on the latter leaves Blue Crush waterlogged 1 +37792 1797 the emphasis on the latter 2 +37793 1797 the emphasis 2 +37794 1797 on the latter 2 +37795 1797 the latter 2 +37796 1797 leaves Blue Crush waterlogged 1 +37797 1797 Blue Crush waterlogged 2 +37798 1798 Becomes a fascinating study of isolation and frustration that successfully recreates both the physical setting and emotional tensions of the Papin sisters . 3 +37799 1798 Becomes a fascinating study of isolation and frustration that successfully recreates both the physical setting and emotional tensions of the Papin sisters 3 +37800 1798 a fascinating study of isolation and frustration that successfully recreates both the physical setting and emotional tensions of the Papin sisters 4 +37801 1798 a fascinating study of isolation and frustration 4 +37802 1798 a fascinating study 3 +37803 1798 fascinating study 4 +37804 1798 of isolation and frustration 1 +37805 1798 isolation and frustration 2 +37806 1798 isolation and 2 +37807 1798 that successfully recreates both the physical setting and emotional tensions of the Papin sisters 3 +37808 1798 successfully recreates both the physical setting and emotional tensions of the Papin sisters 3 +37809 1798 recreates both the physical setting and emotional tensions of the Papin sisters 3 +37810 1798 recreates 2 +37811 1798 both the physical setting and emotional tensions of the Papin sisters 2 +37812 1798 both the physical setting and 2 +37813 1798 both the physical setting 2 +37814 1798 the physical setting 2 +37815 1798 physical setting 2 +37816 1798 physical 2 +37817 1798 emotional tensions of the Papin sisters 2 +37818 1798 emotional tensions 2 +37819 1798 of the Papin sisters 2 +37820 1798 the Papin sisters 2 +37821 1798 Papin sisters 2 +37822 1798 Papin 2 +37823 1799 Though Harris is affecting at times , he can not overcome the sense that Pumpkin is a mere plot pawn for two directors with far less endearing disabilities . 1 +37824 1799 Though Harris is affecting at times 2 +37825 1799 Harris is affecting at times 3 +37826 1799 is affecting at times 2 +37827 1799 affecting at times 2 +37828 1799 , he can not overcome the sense that Pumpkin is a mere plot pawn for two directors with far less endearing disabilities . 1 +37829 1799 he can not overcome the sense that Pumpkin is a mere plot pawn for two directors with far less endearing disabilities . 0 +37830 1799 can not overcome the sense that Pumpkin is a mere plot pawn for two directors with far less endearing disabilities . 1 +37831 1799 can not overcome the sense that Pumpkin is a mere plot pawn for two directors with far less endearing disabilities 1 +37832 1799 overcome the sense that Pumpkin is a mere plot pawn for two directors with far less endearing disabilities 1 +37833 1799 overcome the sense 2 +37834 1799 that Pumpkin is a mere plot pawn for two directors with far less endearing disabilities 2 +37835 1799 Pumpkin is a mere plot pawn for two directors with far less endearing disabilities 1 +37836 1799 Pumpkin 2 +37837 1799 is a mere plot pawn for two directors with far less endearing disabilities 1 +37838 1799 a mere plot pawn for two directors with far less endearing disabilities 1 +37839 1799 a mere plot pawn 1 +37840 1799 mere plot pawn 1 +37841 1799 plot pawn 2 +37842 1799 pawn 2 +37843 1799 for two directors with far less endearing disabilities 1 +37844 1799 two directors with far less endearing disabilities 1 +37845 1799 two directors 2 +37846 1799 with far less endearing disabilities 2 +37847 1799 far less endearing disabilities 0 +37848 1799 far less endearing 1 +37849 1799 less endearing 2 +37850 1799 disabilities 2 +37851 1800 The overall result is an intelligent , realistic portrayal of testing boundaries . 4 +37852 1800 The overall result 2 +37853 1800 overall result 2 +37854 1800 is an intelligent , realistic portrayal of testing boundaries . 3 +37855 1800 is an intelligent , realistic portrayal of testing boundaries 3 +37856 1800 an intelligent , realistic portrayal of testing boundaries 4 +37857 1800 an intelligent , realistic portrayal 4 +37858 1800 intelligent , realistic portrayal 4 +37859 1800 , realistic portrayal 3 +37860 1800 realistic portrayal 3 +37861 1800 of testing boundaries 3 +37862 1800 testing boundaries 2 +37863 1800 testing 2 +37864 1801 Never decides whether it wants to be a black comedy , drama , melodrama or some combination of the three . 1 +37865 1801 decides whether it wants to be a black comedy , drama , melodrama or some combination of the three . 1 +37866 1801 decides whether it wants to be a black comedy , drama , melodrama or some combination of the three 2 +37867 1801 decides 3 +37868 1801 whether it wants to be a black comedy , drama , melodrama or some combination of the three 1 +37869 1801 it wants to be a black comedy , drama , melodrama or some combination of the three 1 +37870 1801 wants to be a black comedy , drama , melodrama or some combination of the three 2 +37871 1801 to be a black comedy , drama , melodrama or some combination of the three 2 +37872 1801 be a black comedy , drama , melodrama or some combination of the three 2 +37873 1801 a black comedy , drama , melodrama or some combination of the three 2 +37874 1801 a black comedy , drama , melodrama or 2 +37875 1801 a black comedy , drama , melodrama 2 +37876 1801 a black comedy , drama , 2 +37877 1801 a black comedy , drama 2 +37878 1801 a black comedy , 3 +37879 1801 a black comedy 2 +37880 1801 some combination of the three 2 +37881 1801 some combination 2 +37882 1801 of the three 2 +37883 1801 the three 2 +37884 1802 An authentically vague , but ultimately purposeless , study in total pandemonium . 1 +37885 1802 An authentically vague , but ultimately purposeless , study in total 1 +37886 1802 An authentically vague , but ultimately purposeless , study 1 +37887 1802 authentically vague , but ultimately purposeless , study 1 +37888 1802 authentically vague , but ultimately purposeless , 1 +37889 1802 authentically vague , but ultimately purposeless 1 +37890 1802 authentically vague , but 2 +37891 1802 authentically vague , 2 +37892 1802 authentically vague 1 +37893 1802 authentically 3 +37894 1802 ultimately purposeless 1 +37895 1802 purposeless 1 +37896 1802 in total 2 +37897 1802 pandemonium . 2 +37898 1802 pandemonium 2 +37899 1803 ` Tadpole ' was one of the films so declared this year , but it 's really more of The Next Pretty Good Thing . 2 +37900 1803 Tadpole ' was one of the films so declared this year , but it 's really more of The Next Pretty Good Thing . 2 +37901 1803 Tadpole ' was one of the films so declared this year , but it 's really more of The Next Pretty Good Thing 2 +37902 1803 Tadpole ' was one of the films so declared this year , but 2 +37903 1803 Tadpole ' was one of the films so declared this year , 2 +37904 1803 Tadpole ' was one of the films so declared this year 2 +37905 1803 Tadpole ' 2 +37906 1803 Tadpole 2 +37907 1803 was one of the films so declared this year 2 +37908 1803 one of the films so declared this year 2 +37909 1803 of the films so declared this year 2 +37910 1803 the films so declared this year 2 +37911 1803 the films 2 +37912 1803 so declared this year 2 +37913 1803 declared this year 2 +37914 1803 declared 2 +37915 1803 this year 2 +37916 1803 it 's really more of The Next Pretty Good Thing 2 +37917 1803 's really more of The Next Pretty Good Thing 2 +37918 1803 really more of The Next Pretty Good Thing 2 +37919 1803 really more 2 +37920 1803 of The Next Pretty Good Thing 2 +37921 1803 The Next Pretty Good Thing 2 +37922 1803 Next Pretty Good Thing 3 +37923 1803 Pretty Good Thing 3 +37924 1803 Good Thing 3 +37925 1804 Those prone to indignation need not apply ; those susceptible to blue hilarity , step right up . 3 +37926 1804 Those prone to indignation need not apply ; those susceptible to blue hilarity , step right up 3 +37927 1804 Those prone to indignation need not apply ; 1 +37928 1804 Those prone to indignation need not apply 1 +37929 1804 Those prone to indignation 2 +37930 1804 prone to indignation 2 +37931 1804 prone to 2 +37932 1804 prone 2 +37933 1804 indignation 1 +37934 1804 need not apply 1 +37935 1804 need not 2 +37936 1804 apply 2 +37937 1804 those susceptible to blue hilarity , step right up 2 +37938 1804 susceptible to blue hilarity , step right up 3 +37939 1804 susceptible to blue hilarity , 3 +37940 1804 susceptible to blue hilarity 2 +37941 1804 susceptible 2 +37942 1804 to blue hilarity 3 +37943 1804 blue hilarity 3 +37944 1804 step right up 2 +37945 1804 right up 2 +37946 1805 She 's as rude and profane as ever , always hilarious and , most of the time , absolutely right in her stinging social observations . 4 +37947 1805 's as rude and profane as ever , always hilarious and , most of the time , absolutely right in her stinging social observations . 4 +37948 1805 's as rude and profane as ever , always hilarious and , most of the time , absolutely right in her stinging social observations 3 +37949 1805 's as rude and profane as ever , always hilarious and , most of the time , absolutely right 4 +37950 1805 's as rude and profane as ever , always hilarious and , most of the time , absolutely 3 +37951 1805 as rude and profane as ever , always hilarious and , most of the time , absolutely 3 +37952 1805 as rude and profane as ever , always hilarious and , most of the time , 3 +37953 1805 as rude and profane as ever , always hilarious and 3 +37954 1805 as rude and profane as ever , always hilarious 2 +37955 1805 as rude and profane as ever , 0 +37956 1805 as rude and profane as ever 2 +37957 1805 as rude and profane 1 +37958 1805 rude and profane 0 +37959 1805 rude and 1 +37960 1805 profane 1 +37961 1805 as ever 2 +37962 1805 always hilarious 4 +37963 1805 , most of the time , 2 +37964 1805 most of the time , 2 +37965 1805 most of the time 2 +37966 1805 in her stinging social observations 2 +37967 1805 her stinging social observations 2 +37968 1805 stinging social observations 2 +37969 1805 stinging 2 +37970 1805 social observations 2 +37971 1806 Even as I valiantly struggled to remain interested , or at least conscious , I could feel my eyelids ... getting ... very ... heavy ... 0 +37972 1806 Even as I valiantly struggled to remain interested , or at least conscious 0 +37973 1806 as I valiantly struggled to remain interested , or at least conscious 1 +37974 1806 I valiantly struggled to remain interested , or at least conscious 0 +37975 1806 valiantly struggled to remain interested , or at least conscious 1 +37976 1806 valiantly 3 +37977 1806 struggled to remain interested , or at least conscious 0 +37978 1806 to remain interested , or at least conscious 2 +37979 1806 remain interested , or at least conscious 1 +37980 1806 interested , or at least conscious 2 +37981 1806 interested , or 2 +37982 1806 interested , 2 +37983 1806 at least conscious 2 +37984 1806 conscious 2 +37985 1806 , I could feel my eyelids ... getting ... very ... heavy ... 0 +37986 1806 I could feel my eyelids ... getting ... very ... heavy ... 0 +37987 1806 could feel my eyelids ... getting ... very ... heavy ... 2 +37988 1806 could feel my eyelids ... getting ... very ... heavy 1 +37989 1806 feel my eyelids ... getting ... very ... heavy 0 +37990 1806 feel my eyelids ... getting ... very ... 0 +37991 1806 feel my eyelids ... getting ... very 1 +37992 1806 feel my eyelids ... getting ... 2 +37993 1806 feel my eyelids ... getting 2 +37994 1806 my eyelids ... getting 1 +37995 1806 my eyelids ... 2 +37996 1806 my eyelids 2 +37997 1807 It may not be particularly innovative , but the film 's crisp , unaffected style and air of gentle longing make it unexpectedly rewarding . 3 +37998 1807 It may not be particularly innovative , but the film 's crisp , unaffected style and air of gentle longing make it unexpectedly rewarding 3 +37999 1807 It may not be particularly innovative , but 2 +38000 1807 It may not be particularly innovative , 1 +38001 1807 It may not be particularly innovative 1 +38002 1807 may not be particularly innovative 1 +38003 1807 be particularly innovative 3 +38004 1807 particularly innovative 4 +38005 1807 the film 's crisp , unaffected style and air of gentle longing make it unexpectedly rewarding 4 +38006 1807 the film 's crisp , unaffected style and air of gentle longing 4 +38007 1807 the film 's crisp , unaffected style and 3 +38008 1807 the film 's crisp , unaffected style 3 +38009 1807 crisp , unaffected style 3 +38010 1807 crisp 2 +38011 1807 , unaffected style 2 +38012 1807 unaffected style 3 +38013 1807 unaffected 2 +38014 1807 air of gentle longing 3 +38015 1807 of gentle longing 3 +38016 1807 gentle longing 3 +38017 1807 make it unexpectedly rewarding 3 +38018 1807 it unexpectedly rewarding 3 +38019 1807 unexpectedly rewarding 3 +38020 1808 At its best ... Festival in Cannes bubbles with the excitement of the festival in Cannes . 2 +38021 1808 ... Festival in Cannes bubbles with the excitement of the festival in Cannes . 3 +38022 1808 Festival in Cannes bubbles with the excitement of the festival in Cannes . 3 +38023 1808 Festival in Cannes 2 +38024 1808 in Cannes 2 +38025 1808 Cannes 2 +38026 1808 bubbles with the excitement of the festival in Cannes . 3 +38027 1808 bubbles with the excitement of the festival in Cannes 3 +38028 1808 bubbles 2 +38029 1808 with the excitement of the festival in Cannes 3 +38030 1808 the excitement of the festival in Cannes 2 +38031 1808 the excitement 3 +38032 1808 of the festival in Cannes 3 +38033 1808 the festival in Cannes 2 +38034 1808 the festival 2 +38035 1809 Bill Morrison 's Decasia is uncompromising , difficult and unbearably beautiful . 4 +38036 1809 Bill Morrison 's Decasia 3 +38037 1809 Bill Morrison 's 2 +38038 1809 Morrison 's 2 +38039 1809 Morrison 2 +38040 1809 is uncompromising , difficult and unbearably beautiful . 3 +38041 1809 is uncompromising , difficult and unbearably beautiful 3 +38042 1809 uncompromising , difficult and unbearably beautiful 3 +38043 1809 uncompromising , difficult and 1 +38044 1809 uncompromising , difficult 1 +38045 1809 uncompromising , 2 +38046 1809 uncompromising 3 +38047 1809 unbearably beautiful 4 +38048 1809 unbearably 1 +38049 1810 -LRB- Shyamalan -RRB- turns the goose-pimple genre on its empty head and fills it with spirit , purpose and emotionally bruised characters who add up to more than body count . 3 +38050 1810 -LRB- Shyamalan -RRB- 2 +38051 1810 Shyamalan -RRB- 2 +38052 1810 turns the goose-pimple genre on its empty head and fills it with spirit , purpose and emotionally bruised characters who add up to more than body count . 4 +38053 1810 turns the goose-pimple genre on its empty head and fills it with spirit , purpose and emotionally bruised characters who add up to more than body count 3 +38054 1810 turns the goose-pimple genre on its empty head and 2 +38055 1810 turns the goose-pimple genre on its empty head 2 +38056 1810 turns the goose-pimple genre 2 +38057 1810 the goose-pimple genre 2 +38058 1810 goose-pimple genre 2 +38059 1810 goose-pimple 3 +38060 1810 on its empty head 1 +38061 1810 its empty head 1 +38062 1810 empty head 1 +38063 1810 fills it with spirit , purpose and emotionally bruised characters who add up to more than body count 3 +38064 1810 fills it 2 +38065 1810 with spirit , purpose and emotionally bruised characters who add up to more than body count 3 +38066 1810 spirit , purpose and emotionally bruised characters who add up to more than body count 2 +38067 1810 spirit , purpose and emotionally bruised characters 2 +38068 1810 , purpose and emotionally bruised characters 3 +38069 1810 purpose and emotionally bruised characters 2 +38070 1810 and emotionally bruised characters 2 +38071 1810 emotionally bruised characters 1 +38072 1810 bruised characters 2 +38073 1810 bruised 0 +38074 1810 who add up to more than body count 2 +38075 1810 add up to more than body count 1 +38076 1810 to more than body count 2 +38077 1810 more than body count 2 +38078 1810 than body count 2 +38079 1810 body count 2 +38080 1811 I 'd be hard pressed to think of a film more cloyingly sappy than Evelyn this year . 1 +38081 1811 'd be hard pressed to think of a film more cloyingly sappy than Evelyn this year . 1 +38082 1811 'd be hard pressed to think of a film more cloyingly sappy than Evelyn this year 1 +38083 1811 be hard pressed to think of a film more cloyingly sappy than Evelyn this year 0 +38084 1811 hard pressed to think of a film more cloyingly sappy than Evelyn this year 2 +38085 1811 pressed to think of a film more cloyingly sappy than Evelyn this year 1 +38086 1811 to think of a film more cloyingly sappy than Evelyn this year 1 +38087 1811 think of a film more cloyingly sappy than Evelyn this year 2 +38088 1811 think of a film more cloyingly sappy than Evelyn 1 +38089 1811 think of a film more cloyingly 3 +38090 1811 of a film more cloyingly 2 +38091 1811 a film more cloyingly 2 +38092 1811 more cloyingly 2 +38093 1811 cloyingly 2 +38094 1811 sappy than Evelyn 2 +38095 1811 than Evelyn 2 +38096 1811 Evelyn 2 +38097 1812 I know that I 'll never listen to Marvin Gaye or the Supremes the same way again 3 +38098 1812 know that I 'll never listen to Marvin Gaye or the Supremes the same way again 3 +38099 1812 that I 'll never listen to Marvin Gaye or the Supremes the same way again 3 +38100 1812 I 'll never listen to Marvin Gaye or the Supremes the same way again 2 +38101 1812 'll never listen to Marvin Gaye or the Supremes the same way again 2 +38102 1812 'll never 2 +38103 1812 listen to Marvin Gaye or the Supremes the same way again 3 +38104 1812 listen to Marvin Gaye or the Supremes the same way 2 +38105 1812 to Marvin Gaye or the Supremes the same way 2 +38106 1812 Marvin Gaye or the Supremes the same way 2 +38107 1812 Marvin Gaye or 2 +38108 1812 Marvin Gaye 2 +38109 1812 Marvin 2 +38110 1812 Gaye 2 +38111 1812 the Supremes the same way 2 +38112 1812 the Supremes 2 +38113 1812 Supremes 2 +38114 1812 the same way 2 +38115 1812 same way 2 +38116 1813 Like Shrek , Spirit 's visual imagination reminds you of why animation is such a perfect medium for children , because of the way it allows the mind to enter and accept another world . 4 +38117 1813 Like Shrek 2 +38118 1813 , Spirit 's visual imagination reminds you of why animation is such a perfect medium for children , because of the way it allows the mind to enter and accept another world . 4 +38119 1813 Spirit 's visual imagination reminds you of why animation is such a perfect medium for children , because of the way it allows the mind to enter and accept another world . 4 +38120 1813 Spirit 's visual imagination 3 +38121 1813 Spirit 's 2 +38122 1813 visual imagination 2 +38123 1813 reminds you of why animation is such a perfect medium for children , because of the way it allows the mind to enter and accept another world . 4 +38124 1813 reminds you of why animation is such a perfect medium for children , because of the way it allows the mind to enter and accept another world 4 +38125 1813 you of why animation is such a perfect medium for children , because of the way it allows the mind to enter and accept another world 3 +38126 1813 of why animation is such a perfect medium for children , because of the way it allows the mind to enter and accept another world 4 +38127 1813 why animation is such a perfect medium for children , because of the way it allows the mind to enter and accept another world 3 +38128 1813 animation is such a perfect medium for children , because of the way it allows the mind to enter and accept another world 3 +38129 1813 is such a perfect medium for children , because of the way it allows the mind to enter and accept another world 3 +38130 1813 is such a perfect medium for children , 3 +38131 1813 is such a perfect medium for children 3 +38132 1813 such a perfect medium for children 4 +38133 1813 such a perfect medium 4 +38134 1813 a perfect medium 4 +38135 1813 perfect medium 4 +38136 1813 medium 2 +38137 1813 for children 3 +38138 1813 because of the way it allows the mind to enter and accept another world 3 +38139 1813 of the way it allows the mind to enter and accept another world 4 +38140 1813 of the way 2 +38141 1813 it allows the mind to enter and accept another world 4 +38142 1813 allows the mind to enter and accept another world 3 +38143 1813 the mind to enter and accept another world 3 +38144 1813 mind to enter and accept another world 2 +38145 1813 to enter and accept another world 3 +38146 1813 enter and accept another world 3 +38147 1813 enter and accept 2 +38148 1813 enter and 2 +38149 1813 enter 3 +38150 1813 accept 2 +38151 1813 another world 2 +38152 1814 Saddled with an unwieldy cast of characters and angles , but the payoff is powerful and revelatory . 3 +38153 1814 Saddled with an unwieldy cast of characters and angles , but the payoff is powerful and revelatory 3 +38154 1814 Saddled with an unwieldy cast of characters and angles , but 2 +38155 1814 Saddled with an unwieldy cast of characters and angles , 1 +38156 1814 Saddled with an unwieldy cast of characters and angles 1 +38157 1814 Saddled 1 +38158 1814 with an unwieldy cast of characters and angles 2 +38159 1814 an unwieldy cast of characters and angles 2 +38160 1814 an unwieldy cast 1 +38161 1814 unwieldy cast 1 +38162 1814 unwieldy 2 +38163 1814 of characters and angles 2 +38164 1814 characters and angles 2 +38165 1814 characters and 2 +38166 1814 angles 2 +38167 1814 the payoff is powerful and revelatory 3 +38168 1814 is powerful and revelatory 4 +38169 1814 powerful and revelatory 4 +38170 1815 I 'll stay with the stage versions , however , which bite cleaner , and deeper . 1 +38171 1815 'll stay with the stage versions , however , which bite cleaner , and deeper . 1 +38172 1815 'll stay with the stage versions , however , which bite cleaner , and deeper 1 +38173 1815 stay with the stage versions , however , which bite cleaner , and deeper 1 +38174 1815 stay with the stage versions , however , 1 +38175 1815 stay with the stage versions , however 2 +38176 1815 stay with the stage versions , 2 +38177 1815 stay with the stage versions 1 +38178 1815 with the stage versions 2 +38179 1815 the stage versions 2 +38180 1815 stage versions 2 +38181 1815 which bite cleaner , and deeper 2 +38182 1815 bite cleaner , and deeper 2 +38183 1815 cleaner , and deeper 3 +38184 1815 cleaner 3 +38185 1815 , and deeper 2 +38186 1816 Tsai convincingly paints a specifically urban sense of disassociation here . 3 +38187 1816 convincingly paints a specifically urban sense of disassociation here . 3 +38188 1816 convincingly 2 +38189 1816 paints a specifically urban sense of disassociation here . 2 +38190 1816 paints a specifically urban sense of disassociation here 3 +38191 1816 paints a specifically urban sense of disassociation 2 +38192 1816 paints 2 +38193 1816 a specifically urban sense of disassociation 2 +38194 1816 a specifically urban sense 2 +38195 1816 specifically urban sense 2 +38196 1816 specifically 2 +38197 1816 urban sense 2 +38198 1816 of disassociation 2 +38199 1816 disassociation 2 +38200 1817 Despite the opulent lushness of every scene , the characters never seem to match the power of their surroundings . 1 +38201 1817 Despite the opulent lushness of every scene 3 +38202 1817 the opulent lushness of every scene 4 +38203 1817 the opulent lushness 3 +38204 1817 opulent lushness 2 +38205 1817 opulent 3 +38206 1817 lushness 3 +38207 1817 of every scene 2 +38208 1817 , the characters never seem to match the power of their surroundings . 2 +38209 1817 the characters never seem to match the power of their surroundings . 1 +38210 1817 never seem to match the power of their surroundings . 2 +38211 1817 seem to match the power of their surroundings . 4 +38212 1817 seem to match the power of their surroundings 3 +38213 1817 to match the power of their surroundings 3 +38214 1817 match the power of their surroundings 2 +38215 1817 match 2 +38216 1817 the power of their surroundings 3 +38217 1817 of their surroundings 2 +38218 1817 their surroundings 3 +38219 1817 surroundings 2 +38220 1818 And people make fun of me for liking Showgirls . 1 +38221 1818 people make fun of me for liking Showgirls . 2 +38222 1818 make fun of me for liking Showgirls . 2 +38223 1818 make fun of me for liking Showgirls 1 +38224 1818 make fun of me 2 +38225 1818 fun of me 3 +38226 1818 of me 2 +38227 1818 for liking Showgirls 2 +38228 1818 liking Showgirls 3 +38229 1818 Showgirls 2 +38230 1819 You just know something terrible is going to happen . 2 +38231 1819 just know something terrible is going to happen . 2 +38232 1819 know something terrible is going to happen . 2 +38233 1819 know something terrible is going to happen 2 +38234 1819 something terrible is going to happen 2 +38235 1819 something terrible 2 +38236 1819 is going to happen 2 +38237 1819 going to happen 2 +38238 1820 Much of what we see is horrible but it 's also undeniably exceedingly clever . 3 +38239 1820 Much of what we see is horrible but it 's also undeniably exceedingly clever 3 +38240 1820 Much of what we see is horrible but 1 +38241 1820 Much of what we see is horrible 1 +38242 1820 Much of what we see 2 +38243 1820 of what we see 2 +38244 1820 what we see 2 +38245 1820 we see 2 +38246 1820 is horrible 0 +38247 1820 it 's also undeniably exceedingly clever 3 +38248 1820 's also undeniably exceedingly clever 3 +38249 1820 undeniably exceedingly clever 3 +38250 1820 exceedingly clever 4 +38251 1820 exceedingly 3 +38252 1821 Writer \/ director M. Night Shyamalan 's ability to pull together easily accessible stories that resonate with profundity is undeniable . 3 +38253 1821 Writer \/ director M. Night Shyamalan 's ability to pull together easily accessible stories that resonate with profundity 3 +38254 1821 Writer \/ director M. Night Shyamalan 's 2 +38255 1821 \/ director M. Night Shyamalan 's 2 +38256 1821 \/ 2 +38257 1821 director M. Night Shyamalan 's 2 +38258 1821 ability to pull together easily accessible stories that resonate with profundity 4 +38259 1821 to pull together easily accessible stories that resonate with profundity 3 +38260 1821 pull together easily accessible stories that resonate with profundity 3 +38261 1821 pull together 2 +38262 1821 easily accessible stories that resonate with profundity 3 +38263 1821 easily accessible stories 3 +38264 1821 easily accessible 2 +38265 1821 that resonate with profundity 3 +38266 1821 resonate with profundity 2 +38267 1821 resonate 2 +38268 1821 with profundity 2 +38269 1821 profundity 3 +38270 1821 is undeniable . 2 +38271 1821 is undeniable 2 +38272 1821 undeniable 2 +38273 1822 Not once in the rush to save the day did I become very involved in the proceedings ; to me , it was just a matter of ` eh . ' 1 +38274 1822 Not once in the rush to save the day did I become very involved in the proceedings ; to me 1 +38275 1822 once in the rush to save the day did I become very involved in the proceedings ; to me 3 +38276 1822 in the rush to save the day did I become very involved in the proceedings ; to me 2 +38277 1822 the rush to save the day did I become very involved in the proceedings ; to me 2 +38278 1822 rush to save the day did I become very involved in the proceedings ; to me 2 +38279 1822 to save the day did I become very involved in the proceedings ; to me 2 +38280 1822 save the day did I become very involved in the proceedings ; to me 2 +38281 1822 the day did I become very involved in the proceedings ; to me 2 +38282 1822 the day 2 +38283 1822 did I become very involved in the proceedings ; to me 2 +38284 1822 I become very involved in the proceedings ; to me 3 +38285 1822 become very involved in the proceedings ; to me 2 +38286 1822 become very involved in the proceedings ; 2 +38287 1822 become very involved in the proceedings 2 +38288 1822 become very involved 3 +38289 1822 very involved 2 +38290 1822 in the proceedings 2 +38291 1822 , it was just a matter of ` eh . ' 2 +38292 1822 it was just a matter of ` eh . ' 1 +38293 1822 was just a matter of ` eh . ' 1 +38294 1822 was just a matter of ` eh . 2 +38295 1822 was just a matter of ` eh 1 +38296 1822 was just 2 +38297 1822 a matter of ` eh 2 +38298 1822 a matter 2 +38299 1822 of ` eh 3 +38300 1823 This 10th film in the series looks and feels tired . 1 +38301 1823 This 10th film in the series 2 +38302 1823 This 10th film 2 +38303 1823 10th film 2 +38304 1823 10th 2 +38305 1823 in the series 3 +38306 1823 the series 2 +38307 1823 looks and feels tired . 1 +38308 1823 looks and feels tired 0 +38309 1823 looks and feels 2 +38310 1823 looks and 2 +38311 1824 A long , dull procession of despair , set to cello music culled from a minimalist funeral . 0 +38312 1824 A long , dull procession of despair , set to cello music 0 +38313 1824 A long , dull procession of despair , 0 +38314 1824 A long , dull procession of despair 0 +38315 1824 A long , dull procession 2 +38316 1824 long , dull procession 1 +38317 1824 , dull procession 1 +38318 1824 dull procession 1 +38319 1824 procession 2 +38320 1824 set to cello music 2 +38321 1824 to cello music 2 +38322 1824 cello music 2 +38323 1824 cello 2 +38324 1824 culled from a minimalist funeral . 2 +38325 1824 culled from a minimalist funeral 2 +38326 1824 culled 2 +38327 1824 from a minimalist funeral 2 +38328 1824 a minimalist funeral 2 +38329 1824 minimalist funeral 2 +38330 1824 funeral 1 +38331 1825 Cherish is a dud -- a romantic comedy that 's not the least bit romantic and only mildly funny . 1 +38332 1825 Cherish 3 +38333 1825 is a dud -- a romantic comedy that 's not the least bit romantic and only mildly funny . 1 +38334 1825 is a dud -- a romantic comedy that 's not the least bit romantic and only mildly funny 1 +38335 1825 a dud -- a romantic comedy that 's not the least bit romantic and only mildly funny 0 +38336 1825 a dud -- 0 +38337 1825 a dud 0 +38338 1825 dud 1 +38339 1825 a romantic comedy that 's not the least bit romantic and only mildly funny 1 +38340 1825 that 's not the least bit romantic and only mildly funny 0 +38341 1825 's not the least bit romantic and only mildly funny 2 +38342 1825 the least bit romantic and only mildly funny 2 +38343 1825 romantic and only mildly funny 2 +38344 1825 romantic and 3 +38345 1825 only mildly funny 3 +38346 1825 mildly funny 2 +38347 1826 is now stretched to barely feature length , with a little more attention paid to the animation . 2 +38348 1826 is now stretched to barely feature length , with a little more attention paid to the animation 1 +38349 1826 is now 2 +38350 1826 stretched to barely feature length , with a little more attention paid to the animation 1 +38351 1826 stretched to barely feature length , 1 +38352 1826 stretched to barely feature length 1 +38353 1826 to barely feature length 1 +38354 1826 barely feature length 1 +38355 1826 feature length 2 +38356 1826 length 2 +38357 1826 with a little more attention paid to the animation 2 +38358 1826 a little more attention paid to the animation 3 +38359 1826 a little more attention 2 +38360 1826 little more attention 2 +38361 1826 paid to the animation 2 +38362 1826 to the animation 2 +38363 1826 the animation 2 +38364 1827 For most movies , 84 minutes is short , but this one feels like a life sentence . 0 +38365 1827 For most movies , 84 minutes is short , but this one feels like a life sentence 0 +38366 1827 For most movies , 84 minutes is short , but 1 +38367 1827 For most movies , 84 minutes is short , 1 +38368 1827 For most movies , 84 minutes is short 1 +38369 1827 For most movies 2 +38370 1827 most movies 2 +38371 1827 , 84 minutes is short 3 +38372 1827 84 minutes is short 3 +38373 1827 84 minutes 2 +38374 1827 84 2 +38375 1827 is short 2 +38376 1827 this one feels like a life sentence 0 +38377 1827 feels like a life sentence 2 +38378 1827 like a life sentence 2 +38379 1827 a life sentence 2 +38380 1827 life sentence 2 +38381 1827 sentence 2 +38382 1828 The movie 's major and most devastating flaw is its reliance on formula , though , and it 's quite enough to lessen the overall impact the movie could have had . 1 +38383 1828 The movie 's major and most devastating flaw is its reliance on formula , though , and it 's quite enough to lessen the overall impact the movie could have had 2 +38384 1828 The movie 's major and most devastating flaw is its reliance on formula , though , and 1 +38385 1828 The movie 's major and most devastating flaw is its reliance on formula , though , 1 +38386 1828 The movie 's major and most devastating flaw is its reliance on formula , though 1 +38387 1828 The movie 's major and most devastating flaw 1 +38388 1828 The movie 's major and 2 +38389 1828 The movie 's major 2 +38390 1828 most devastating flaw 0 +38391 1828 most devastating 1 +38392 1828 devastating 0 +38393 1828 flaw 2 +38394 1828 is its reliance on formula , though 1 +38395 1828 is its reliance on formula , 2 +38396 1828 is its reliance on formula 1 +38397 1828 its reliance on formula 2 +38398 1828 its reliance 2 +38399 1828 reliance 2 +38400 1828 on formula 2 +38401 1828 it 's quite enough to lessen the overall impact the movie could have had 1 +38402 1828 's quite enough to lessen the overall impact the movie could have had 2 +38403 1828 's quite enough 2 +38404 1828 to lessen the overall impact the movie could have had 1 +38405 1828 lessen the overall impact the movie could have had 1 +38406 1828 the overall impact the movie could have had 2 +38407 1828 the movie could have had 2 +38408 1828 could have had 2 +38409 1828 have had 2 +38410 1829 For a movie about the power of poetry and passion , there is precious little of either . 1 +38411 1829 For a movie about the power of poetry and passion 2 +38412 1829 a movie about the power of poetry and passion 3 +38413 1829 about the power of poetry and passion 2 +38414 1829 the power of poetry and passion 3 +38415 1829 of poetry and passion 3 +38416 1829 poetry and passion 3 +38417 1829 , there is precious little of either . 2 +38418 1829 there is precious little of either . 1 +38419 1829 is precious little of either . 0 +38420 1829 is precious little of either 2 +38421 1829 precious little of either 1 +38422 1829 precious little 2 +38423 1829 of either 2 +38424 1830 Not to mention a sharper , cleaner camera lens . 2 +38425 1830 to mention a sharper , cleaner camera lens . 2 +38426 1830 to mention a sharper , cleaner camera lens 2 +38427 1830 mention a sharper , cleaner camera lens 2 +38428 1830 a sharper , cleaner camera lens 2 +38429 1830 sharper , cleaner camera lens 3 +38430 1830 sharper , cleaner 3 +38431 1830 sharper 3 +38432 1830 , cleaner 2 +38433 1830 camera lens 2 +38434 1830 lens 2 +38435 1831 would have been benefited from a sharper , cleaner script before it went in front of the camera . 2 +38436 1831 would have been benefited from a sharper , cleaner script before it went in front of the camera 1 +38437 1831 have been benefited from a sharper , cleaner script before it went in front of the camera 3 +38438 1831 been benefited from a sharper , cleaner script before it went in front of the camera 1 +38439 1831 benefited from a sharper , cleaner script before it went in front of the camera 2 +38440 1831 benefited from a sharper , cleaner script 3 +38441 1831 benefited 2 +38442 1831 from a sharper , cleaner script 3 +38443 1831 a sharper , cleaner script 3 +38444 1831 sharper , cleaner script 3 +38445 1831 before it went in front of the camera 2 +38446 1831 it went in front of the camera 2 +38447 1831 went in front of the camera 2 +38448 1831 in front of the camera 2 +38449 1831 front of the camera 2 +38450 1832 This Tuxedo ... should have been sent back to the tailor for some major alterations . 0 +38451 1832 This Tuxedo 2 +38452 1832 Tuxedo 2 +38453 1832 ... should have been sent back to the tailor for some major alterations . 1 +38454 1832 should have been sent back to the tailor for some major alterations . 2 +38455 1832 should have been sent back to the tailor for some major alterations 1 +38456 1832 have been sent back to the tailor for some major alterations 2 +38457 1832 been sent back to the tailor for some major alterations 1 +38458 1832 sent back to the tailor for some major alterations 1 +38459 1832 sent back 1 +38460 1832 to the tailor for some major alterations 1 +38461 1832 the tailor for some major alterations 2 +38462 1832 the tailor 2 +38463 1832 tailor 2 +38464 1832 for some major alterations 3 +38465 1832 some major alterations 3 +38466 1832 major alterations 2 +38467 1832 alterations 2 +38468 1833 If you 're as happy listening to movies as you are watching them , and the slow parade of human frailty fascinates you , then you 're at the right film . 3 +38469 1833 If you 're as happy listening to movies as you are watching them , and the slow parade of human frailty fascinates you 3 +38470 1833 you 're as happy listening to movies as you are watching them , and the slow parade of human frailty fascinates you 4 +38471 1833 're as happy listening to movies as you are watching them , and the slow parade of human frailty fascinates you 3 +38472 1833 're as happy listening to movies 2 +38473 1833 as happy listening to movies 3 +38474 1833 happy listening to movies 3 +38475 1833 listening to movies 2 +38476 1833 listening 2 +38477 1833 to movies 2 +38478 1833 as you are watching them , and the slow parade of human frailty fascinates you 3 +38479 1833 you are watching them , and the slow parade of human frailty fascinates you 3 +38480 1833 you are watching them , and 2 +38481 1833 you are watching them , 2 +38482 1833 you are watching them 2 +38483 1833 are watching them 2 +38484 1833 watching them 2 +38485 1833 the slow parade of human frailty fascinates you 3 +38486 1833 the slow parade of human frailty fascinates 4 +38487 1833 the slow parade 1 +38488 1833 slow parade 2 +38489 1833 of human frailty fascinates 3 +38490 1833 human frailty fascinates 2 +38491 1833 frailty fascinates 3 +38492 1833 fascinates 3 +38493 1833 , then you 're at the right film . 3 +38494 1833 then you 're at the right film . 3 +38495 1833 you 're at the right film . 2 +38496 1833 're at the right film . 3 +38497 1833 're at the right film 3 +38498 1833 at the right film 3 +38499 1833 the right film 3 +38500 1833 right film 3 +38501 1834 Poignant and delicately complex . 3 +38502 1834 Poignant and delicately 4 +38503 1834 Poignant and 3 +38504 1834 complex . 2 +38505 1835 Intriguing and stylish . 4 +38506 1835 Intriguing and stylish 4 +38507 1835 Intriguing and 2 +38508 1836 It was filled with shootings , beatings , and more cussing than you could shake a stick at . 2 +38509 1836 was filled with shootings , beatings , and more cussing than you could shake a stick at . 1 +38510 1836 was filled with shootings , beatings , and more cussing than you could shake a stick at 1 +38511 1836 filled with shootings , beatings , and more cussing than you could shake a stick at 1 +38512 1836 filled with shootings , beatings , and more cussing 2 +38513 1836 with shootings , beatings , and more cussing 1 +38514 1836 shootings , beatings , and more cussing 2 +38515 1836 shootings , beatings , and 2 +38516 1836 shootings , beatings , 2 +38517 1836 shootings , beatings 1 +38518 1836 shootings , 2 +38519 1836 shootings 2 +38520 1836 beatings 3 +38521 1836 more cussing 2 +38522 1836 than you could shake a stick at 2 +38523 1836 you could shake a stick at 3 +38524 1836 could shake a stick at 2 +38525 1836 shake a stick at 2 +38526 1836 shake a stick 2 +38527 1836 shake 2 +38528 1836 a stick 3 +38529 1836 stick 2 +38530 1837 It 's a mindless action flick with a twist -- far better suited to video-viewing than the multiplex . 1 +38531 1837 's a mindless action flick with a twist -- far better suited to video-viewing than the multiplex . 2 +38532 1837 's a mindless action flick with a twist -- far better suited to video-viewing than the multiplex 1 +38533 1837 a mindless action flick with a twist -- far better suited to video-viewing than the multiplex 1 +38534 1837 a mindless action flick 1 +38535 1837 mindless action flick 1 +38536 1837 action flick 2 +38537 1837 with a twist -- far better suited to video-viewing than the multiplex 2 +38538 1837 a twist -- far better suited to video-viewing than the multiplex 2 +38539 1837 a twist -- far better 3 +38540 1837 a twist -- 2 +38541 1837 a twist 3 +38542 1837 far better 3 +38543 1837 suited to video-viewing than the multiplex 2 +38544 1837 suited to video-viewing 2 +38545 1837 to video-viewing 2 +38546 1837 video-viewing 2 +38547 1837 than the multiplex 2 +38548 1838 The trick when watching Godard is to catch the pitch of his poetics , savor the pleasure of his sounds and images , and ponder the historical , philosophical , and ethical issues that intersect with them . 3 +38549 1838 The trick when watching Godard 2 +38550 1838 The trick 2 +38551 1838 when watching Godard 2 +38552 1838 watching Godard 2 +38553 1838 is to catch the pitch of his poetics , savor the pleasure of his sounds and images , and ponder the historical , philosophical , and ethical issues that intersect with them . 3 +38554 1838 is to catch the pitch of his poetics , savor the pleasure of his sounds and images , and ponder the historical , philosophical , and ethical issues that intersect with them 3 +38555 1838 to catch the pitch of his poetics , savor the pleasure of his sounds and images , and ponder the historical , philosophical , and ethical issues that intersect with them 3 +38556 1838 catch the pitch of his poetics , savor the pleasure of his sounds and images , and ponder the historical , philosophical , and ethical issues that intersect with them 3 +38557 1838 catch the pitch of his poetics , savor the pleasure of his sounds and images , and 3 +38558 1838 catch the pitch of his poetics , savor the pleasure of his sounds and images , 4 +38559 1838 catch the pitch of his poetics , savor the pleasure of his sounds and images 3 +38560 1838 catch the pitch of his poetics , 2 +38561 1838 catch the pitch of his poetics 2 +38562 1838 the pitch of his poetics 2 +38563 1838 the pitch 2 +38564 1838 pitch 2 +38565 1838 of his poetics 2 +38566 1838 his poetics 2 +38567 1838 poetics 2 +38568 1838 savor the pleasure of his sounds and images 3 +38569 1838 savor 3 +38570 1838 the pleasure of his sounds and images 3 +38571 1838 the pleasure 3 +38572 1838 of his sounds and images 2 +38573 1838 his sounds and images 2 +38574 1838 sounds and images 2 +38575 1838 sounds and 2 +38576 1838 ponder the historical , philosophical , and ethical issues that intersect with them 2 +38577 1838 the historical , philosophical , and ethical issues that intersect with them 2 +38578 1838 the historical , philosophical , and 3 +38579 1838 the historical , philosophical , 2 +38580 1838 the historical , philosophical 3 +38581 1838 the historical , 2 +38582 1838 the historical 2 +38583 1838 ethical issues that intersect with them 2 +38584 1838 ethical issues 2 +38585 1838 that intersect with them 2 +38586 1838 intersect with them 2 +38587 1838 intersect 2 +38588 1838 with them 2 +38589 1839 A biopic about Crane 's life in the classic tradition but evolves into what has become of us all in the era of video . 2 +38590 1839 A biopic about Crane 's life in the classic tradition 2 +38591 1839 A biopic 2 +38592 1839 biopic 2 +38593 1839 about Crane 's life in the classic tradition 2 +38594 1839 Crane 's life in the classic tradition 2 +38595 1839 Crane 's life 2 +38596 1839 Crane 's 2 +38597 1839 Crane 2 +38598 1839 in the classic tradition 2 +38599 1839 the classic tradition 3 +38600 1839 classic tradition 2 +38601 1839 but evolves into what has become of us all in the era of video . 2 +38602 1839 evolves into what has become of us all in the era of video . 3 +38603 1839 evolves into what has become of us all in the era of video 2 +38604 1839 into what has become of us all in the era of video 2 +38605 1839 what has become of us all in the era of video 2 +38606 1839 has become of us all in the era of video 2 +38607 1839 become of us all in the era of video 2 +38608 1839 become of us 2 +38609 1839 all in the era of video 2 +38610 1839 in the era of video 2 +38611 1839 the era of video 2 +38612 1839 of video 2 +38613 1840 With exquisite craftsmanship ... Olivier Assayas has fashioned an absorbing look at provincial bourgeois French society . 3 +38614 1840 With exquisite craftsmanship 4 +38615 1840 exquisite craftsmanship 3 +38616 1840 ... Olivier Assayas has fashioned an absorbing look at provincial bourgeois French society . 3 +38617 1840 Olivier Assayas has fashioned an absorbing look at provincial bourgeois French society . 3 +38618 1840 Olivier Assayas 2 +38619 1840 Olivier 2 +38620 1840 has fashioned an absorbing look at provincial bourgeois French society . 3 +38621 1840 has fashioned an absorbing look at provincial bourgeois French society 3 +38622 1840 fashioned an absorbing look at provincial bourgeois French society 3 +38623 1840 fashioned an absorbing look 3 +38624 1840 fashioned 2 +38625 1840 an absorbing look 3 +38626 1840 absorbing look 3 +38627 1840 at provincial bourgeois French society 2 +38628 1840 provincial bourgeois French society 2 +38629 1840 provincial 2 +38630 1840 bourgeois French society 3 +38631 1840 bourgeois 2 +38632 1840 French society 2 +38633 1841 However sincere it may be , The Rising Place never quite justifies its own existence . 1 +38634 1841 However sincere it may be 2 +38635 1841 However sincere 2 +38636 1841 it may be 2 +38637 1841 may be 2 +38638 1841 , The Rising Place never quite justifies its own existence . 1 +38639 1841 The Rising Place never quite justifies its own existence . 2 +38640 1841 never quite justifies its own existence . 1 +38641 1841 never quite justifies its own existence 2 +38642 1841 justifies its own existence 3 +38643 1841 justifies 3 +38644 1841 its own existence 3 +38645 1841 own existence 2 +38646 1842 The central character is n't complex enough to hold our interest . 2 +38647 1842 The central character 2 +38648 1842 central character 2 +38649 1842 is n't complex enough to hold our interest . 1 +38650 1842 is n't complex enough to hold our interest 1 +38651 1842 complex enough to hold our interest 3 +38652 1842 complex enough 3 +38653 1842 to hold our interest 2 +38654 1842 hold our interest 2 +38655 1843 What could have been right at home as a nifty plot line in Steven Soderbergh 's Traffic fails to arrive at any satisfying destination . 1 +38656 1843 could have been right at home as a nifty plot line in Steven Soderbergh 's Traffic fails to arrive at any satisfying destination . 2 +38657 1843 could have been right at home as a nifty plot line in Steven Soderbergh 's Traffic fails to arrive at any satisfying destination 1 +38658 1843 have been right at home as a nifty plot line in Steven Soderbergh 's Traffic fails to arrive at any satisfying destination 1 +38659 1843 been right at home as a nifty plot line in Steven Soderbergh 's Traffic fails to arrive at any satisfying destination 2 +38660 1843 right at home as a nifty plot line in Steven Soderbergh 's Traffic fails to arrive at any satisfying destination 1 +38661 1843 as a nifty plot line in Steven Soderbergh 's Traffic fails to arrive at any satisfying destination 1 +38662 1843 a nifty plot line in Steven Soderbergh 's Traffic fails to arrive at any satisfying destination 1 +38663 1843 a nifty plot line in Steven Soderbergh 's Traffic 3 +38664 1843 a nifty plot line 3 +38665 1843 nifty plot line 3 +38666 1843 nifty 3 +38667 1843 plot line 2 +38668 1843 in Steven Soderbergh 's Traffic 2 +38669 1843 Steven Soderbergh 's Traffic 2 +38670 1843 Steven Soderbergh 's 2 +38671 1843 Soderbergh 's 2 +38672 1843 Traffic 3 +38673 1843 fails to arrive at any satisfying destination 1 +38674 1843 to arrive at any satisfying destination 2 +38675 1843 arrive at any satisfying destination 2 +38676 1843 at any satisfying destination 2 +38677 1843 any satisfying destination 2 +38678 1843 satisfying destination 3 +38679 1844 Tykwer 's surface flash is n't just a poor fit with Kieslowski 's lyrical pessimism ; it completely contradicts everything Kieslowski 's work aspired to , including the condition of art . 0 +38680 1844 Tykwer 's surface flash is n't just a poor fit with Kieslowski 's lyrical pessimism ; it completely contradicts everything Kieslowski 's work aspired to , including the condition of art 1 +38681 1844 Tykwer 's surface flash is n't just a poor fit with Kieslowski 's lyrical pessimism ; 1 +38682 1844 Tykwer 's surface flash is n't just a poor fit with Kieslowski 's lyrical pessimism 1 +38683 1844 Tykwer 's surface flash 2 +38684 1844 Tykwer 's 2 +38685 1844 Tykwer 2 +38686 1844 surface flash 2 +38687 1844 is n't just a poor fit with Kieslowski 's lyrical pessimism 1 +38688 1844 is n't just 1 +38689 1844 a poor fit with Kieslowski 's lyrical pessimism 1 +38690 1844 a poor fit 1 +38691 1844 poor fit 1 +38692 1844 with Kieslowski 's lyrical pessimism 2 +38693 1844 Kieslowski 's lyrical pessimism 2 +38694 1844 Kieslowski 's 2 +38695 1844 Kieslowski 2 +38696 1844 lyrical pessimism 2 +38697 1844 pessimism 1 +38698 1844 it completely contradicts everything Kieslowski 's work aspired to , including the condition of art 0 +38699 1844 completely contradicts everything Kieslowski 's work aspired to , including the condition of art 0 +38700 1844 contradicts everything Kieslowski 's work aspired to , including the condition of art 1 +38701 1844 contradicts 2 +38702 1844 everything Kieslowski 's work aspired to , including the condition of art 3 +38703 1844 Kieslowski 's work aspired to , including the condition of art 2 +38704 1844 Kieslowski 's work 2 +38705 1844 aspired to , including the condition of art 2 +38706 1844 aspired to , 2 +38707 1844 aspired to 2 +38708 1844 aspired 3 +38709 1844 including the condition of art 2 +38710 1844 the condition of art 3 +38711 1844 the condition 2 +38712 1844 of art 2 +38713 1845 Skip this turd and pick your nose instead because you 're sure to get more out of the latter experience . 0 +38714 1845 Skip this turd and pick your nose instead because you 're sure to get more out of the latter experience 0 +38715 1845 Skip this turd and 0 +38716 1845 Skip this turd 0 +38717 1845 this turd 0 +38718 1845 pick your nose instead because you 're sure to get more out of the latter experience 0 +38719 1845 pick your nose instead 0 +38720 1845 pick your nose 2 +38721 1845 your nose 3 +38722 1845 because you 're sure to get more out of the latter experience 1 +38723 1845 you 're sure to get more out of the latter experience 2 +38724 1845 're sure to get more out of the latter experience 2 +38725 1845 sure to get more out of the latter experience 2 +38726 1845 to get more out of the latter experience 2 +38727 1845 get more out of the latter experience 3 +38728 1845 get more out 2 +38729 1845 more out 2 +38730 1845 of the latter experience 2 +38731 1845 the latter experience 2 +38732 1845 latter experience 2 +38733 1846 You get the idea , though , that Kapur intended the film to be more than that . 2 +38734 1846 get the idea , though , that Kapur intended the film to be more than that . 2 +38735 1846 get the idea , though , that Kapur intended the film to be more than that 2 +38736 1846 get the idea , though , 2 +38737 1846 get the idea , though 3 +38738 1846 get the idea , 2 +38739 1846 get the idea 2 +38740 1846 that Kapur intended the film to be more than that 2 +38741 1846 Kapur intended the film to be more than that 2 +38742 1846 Kapur 2 +38743 1846 intended the film to be more than that 1 +38744 1846 the film to be more than that 2 +38745 1846 film to be more than that 2 +38746 1846 to be more than that 2 +38747 1846 be more than that 2 +38748 1846 than that 2 +38749 1847 O.K. , not really . 2 +38750 1847 O.K. , not really 2 +38751 1847 O.K. , 2 +38752 1847 O.K. 2 +38753 1847 not really 2 +38754 1848 Both deserve better . 1 +38755 1848 deserve better . 1 +38756 1848 deserve better 1 +38757 1848 deserve 2 +38758 1849 Parents may even find that it goes by quickly , because it has some of the funniest jokes of any movie this year , including those intended for adults . 4 +38759 1849 may even find that it goes by quickly , because it has some of the funniest jokes of any movie this year , including those intended for adults . 4 +38760 1849 may even find that it goes by quickly , because it has some of the funniest jokes of any movie this year , including those intended for adults 3 +38761 1849 may even 2 +38762 1849 find that it goes by quickly , because it has some of the funniest jokes of any movie this year , including those intended for adults 4 +38763 1849 that it goes by quickly , because it has some of the funniest jokes of any movie this year , including those intended for adults 4 +38764 1849 it goes by quickly , because it has some of the funniest jokes of any movie this year , including those intended for adults 3 +38765 1849 goes by quickly , because it has some of the funniest jokes of any movie this year , including those intended for adults 4 +38766 1849 goes by quickly , 2 +38767 1849 goes by quickly 3 +38768 1849 by quickly 2 +38769 1849 because it has some of the funniest jokes of any movie this year , including those intended for adults 4 +38770 1849 it has some of the funniest jokes of any movie this year , including those intended for adults 4 +38771 1849 has some of the funniest jokes of any movie this year , including those intended for adults 3 +38772 1849 has some of the funniest jokes of any movie this year , 4 +38773 1849 has some of the funniest jokes of any movie this year 4 +38774 1849 has some of the funniest jokes of any movie 4 +38775 1849 some of the funniest jokes of any movie 4 +38776 1849 of the funniest jokes of any movie 4 +38777 1849 the funniest jokes of any movie 4 +38778 1849 the funniest jokes 4 +38779 1849 funniest jokes 3 +38780 1849 of any movie 2 +38781 1849 including those intended for adults 2 +38782 1849 those intended for adults 2 +38783 1849 intended for adults 2 +38784 1849 for adults 2 +38785 1850 A tasty appetizer that leaves you wanting more . 3 +38786 1850 A tasty 2 +38787 1850 appetizer that leaves you wanting more . 3 +38788 1850 appetizer that leaves you wanting more 4 +38789 1850 appetizer 2 +38790 1850 that leaves you wanting more 3 +38791 1850 leaves you wanting more 3 +38792 1850 you wanting more 3 +38793 1850 wanting more 3 +38794 1851 The film has too many spots where it 's on slippery footing , but is acceptable entertainment for the entire family and one that 's especially fit for the kiddies . 2 +38795 1851 has too many spots where it 's on slippery footing , but is acceptable entertainment for the entire family and one that 's especially fit for the kiddies . 3 +38796 1851 has too many spots where it 's on slippery footing , but is acceptable entertainment for the entire family and one that 's especially fit for the kiddies 3 +38797 1851 has too many spots where it 's on slippery footing , but 1 +38798 1851 has too many spots where it 's on slippery footing , 1 +38799 1851 has too many spots where it 's on slippery footing 1 +38800 1851 too many spots where it 's on slippery footing 1 +38801 1851 too many spots 2 +38802 1851 many spots 2 +38803 1851 spots 2 +38804 1851 where it 's on slippery footing 1 +38805 1851 it 's on slippery footing 2 +38806 1851 's on slippery footing 1 +38807 1851 on slippery footing 1 +38808 1851 slippery footing 1 +38809 1851 slippery 2 +38810 1851 footing 2 +38811 1851 is acceptable entertainment for the entire family and one that 's especially fit for the kiddies 4 +38812 1851 acceptable entertainment for the entire family and one that 's especially fit for the kiddies 3 +38813 1851 acceptable entertainment for the entire family and one 4 +38814 1851 acceptable entertainment 2 +38815 1851 for the entire family and one 3 +38816 1851 the entire family and one 2 +38817 1851 the entire family and 2 +38818 1851 the entire family 2 +38819 1851 entire family 2 +38820 1851 that 's especially fit for the kiddies 2 +38821 1851 's especially fit for the kiddies 3 +38822 1851 especially fit for the kiddies 3 +38823 1851 fit for the kiddies 3 +38824 1851 for the kiddies 3 +38825 1851 the kiddies 2 +38826 1851 kiddies 2 +38827 1852 Two hours of sepia-tinted heavy metal images and surround sound effects of people moaning . 2 +38828 1852 Two hours of sepia-tinted heavy metal 2 +38829 1852 of sepia-tinted heavy metal 2 +38830 1852 sepia-tinted heavy metal 2 +38831 1852 sepia-tinted 2 +38832 1852 heavy metal 2 +38833 1852 metal 2 +38834 1852 images and surround sound effects of people moaning . 2 +38835 1852 images and surround sound effects of people moaning 2 +38836 1852 images and surround sound effects of people 2 +38837 1852 images and surround 2 +38838 1852 surround 2 +38839 1852 sound effects of people 2 +38840 1852 sound effects 3 +38841 1852 of people 2 +38842 1852 moaning 2 +38843 1853 Even kids deserve better . 1 +38844 1853 Even kids 2 +38845 1854 That the real Antwone Fisher was able to overcome his personal obstacles and become a good man is a wonderful thing ; that he has been able to share his story so compellingly with us is a minor miracle . 4 +38846 1854 That the real Antwone Fisher was able to overcome his personal obstacles and become a good man 3 +38847 1854 the real Antwone Fisher was able to overcome his personal obstacles and become a good man 3 +38848 1854 the real Antwone Fisher 2 +38849 1854 real Antwone Fisher 2 +38850 1854 Antwone Fisher 2 +38851 1854 Antwone 2 +38852 1854 was able to overcome his personal obstacles and become a good man 3 +38853 1854 able to overcome his personal obstacles and become a good man 4 +38854 1854 to overcome his personal obstacles and become a good man 3 +38855 1854 overcome his personal obstacles and become a good man 3 +38856 1854 overcome his personal obstacles and 3 +38857 1854 overcome his personal obstacles 2 +38858 1854 his personal obstacles 3 +38859 1854 personal obstacles 2 +38860 1854 obstacles 1 +38861 1854 become a good man 2 +38862 1854 a good man 2 +38863 1854 good man 3 +38864 1854 is a wonderful thing ; that he has been able to share his story so compellingly with us is a minor miracle . 3 +38865 1854 is a wonderful thing ; that he has been able to share his story so compellingly with us is a minor miracle 3 +38866 1854 is a wonderful thing ; 3 +38867 1854 is a wonderful thing 3 +38868 1854 a wonderful thing 4 +38869 1854 wonderful thing 4 +38870 1854 that he has been able to share his story so compellingly with us is a minor miracle 4 +38871 1854 he has been able to share his story so compellingly with us is a minor miracle 4 +38872 1854 has been able to share his story so compellingly with us is a minor miracle 2 +38873 1854 been able to share his story so compellingly with us is a minor miracle 3 +38874 1854 able to share his story so compellingly with us is a minor miracle 4 +38875 1854 to share his story so compellingly with us is a minor miracle 3 +38876 1854 share his story so compellingly with us is a minor miracle 3 +38877 1854 share 3 +38878 1854 his story so compellingly with us is a minor miracle 3 +38879 1854 his story 2 +38880 1854 so compellingly with us is a minor miracle 3 +38881 1854 so compellingly 3 +38882 1854 with us is a minor miracle 3 +38883 1854 us is a minor miracle 3 +38884 1854 is a minor miracle 2 +38885 1855 Meticulously mounted , exasperatingly well-behaved film , which ticks off Kahlo 's lifetime milestones with the dutiful precision of a tax accountant . 3 +38886 1855 mounted , exasperatingly well-behaved film , which ticks off Kahlo 's lifetime milestones with the dutiful precision of a tax accountant . 3 +38887 1855 mounted , exasperatingly well-behaved film , which ticks off Kahlo 's lifetime milestones with the dutiful precision of a tax accountant 3 +38888 1855 mounted , exasperatingly 1 +38889 1855 mounted , 2 +38890 1855 mounted 2 +38891 1855 exasperatingly 1 +38892 1855 well-behaved film , which ticks off Kahlo 's lifetime milestones with the dutiful precision of a tax accountant 3 +38893 1855 well-behaved film , 2 +38894 1855 well-behaved film 3 +38895 1855 well-behaved 2 +38896 1855 which ticks off Kahlo 's lifetime milestones with the dutiful precision of a tax accountant 1 +38897 1855 ticks off Kahlo 's lifetime milestones with the dutiful precision of a tax accountant 1 +38898 1855 ticks off 2 +38899 1855 ticks 2 +38900 1855 Kahlo 's lifetime milestones with the dutiful precision of a tax accountant 2 +38901 1855 Kahlo 's lifetime milestones 2 +38902 1855 Kahlo 's 2 +38903 1855 Kahlo 2 +38904 1855 lifetime milestones 3 +38905 1855 lifetime 2 +38906 1855 with the dutiful precision of a tax accountant 2 +38907 1855 the dutiful precision of a tax accountant 1 +38908 1855 the dutiful precision 2 +38909 1855 dutiful precision 3 +38910 1855 of a tax accountant 2 +38911 1855 a tax accountant 2 +38912 1855 tax accountant 2 +38913 1855 accountant 2 +38914 1856 Men in Black II achieves ultimate insignificance -- it 's the sci-fi comedy spectacle as Whiffle-Ball epic . 0 +38915 1856 Men in Black II achieves ultimate insignificance -- it 's the sci-fi comedy spectacle as Whiffle-Ball epic 0 +38916 1856 Men in Black II achieves ultimate insignificance -- 0 +38917 1856 Men in Black II achieves ultimate insignificance 0 +38918 1856 Men in Black II 2 +38919 1856 in Black II 2 +38920 1856 Black II 2 +38921 1856 achieves ultimate insignificance 0 +38922 1856 ultimate insignificance 1 +38923 1856 insignificance 1 +38924 1856 it 's the sci-fi comedy spectacle as Whiffle-Ball epic 2 +38925 1856 's the sci-fi comedy spectacle as Whiffle-Ball epic 2 +38926 1856 the sci-fi comedy spectacle as Whiffle-Ball epic 1 +38927 1856 the sci-fi comedy spectacle 2 +38928 1856 sci-fi comedy spectacle 2 +38929 1856 comedy spectacle 3 +38930 1856 as Whiffle-Ball epic 2 +38931 1856 Whiffle-Ball epic 2 +38932 1856 Whiffle-Ball 2 +38933 1857 Those unfamiliar with Mormon traditions may find The Singles Ward occasionally bewildering . 2 +38934 1857 Those unfamiliar with Mormon traditions 2 +38935 1857 Those unfamiliar 2 +38936 1857 unfamiliar 1 +38937 1857 with Mormon traditions 2 +38938 1857 Mormon traditions 2 +38939 1857 Mormon 2 +38940 1857 may find The Singles Ward occasionally bewildering . 1 +38941 1857 may find The Singles Ward occasionally bewildering 2 +38942 1857 find The Singles Ward occasionally bewildering 1 +38943 1857 The Singles Ward occasionally bewildering 2 +38944 1857 The Singles Ward 2 +38945 1857 Singles Ward 2 +38946 1857 Singles 2 +38947 1857 Ward 2 +38948 1857 occasionally bewildering 2 +38949 1857 bewildering 1 +38950 1858 Stiff and schmaltzy and clumsily directed . 0 +38951 1858 Stiff and schmaltzy and clumsily 1 +38952 1858 Stiff and 1 +38953 1858 schmaltzy and clumsily 0 +38954 1858 schmaltzy and 2 +38955 1858 clumsily 1 +38956 1858 directed . 2 +38957 1859 If The Last Man were the last movie left on earth , there would be a toss-up between presiding over the end of cinema as we know it and another night of delightful hand shadows . 1 +38958 1859 If The Last Man were the last movie left on earth 2 +38959 1859 The Last Man were the last movie left on earth 2 +38960 1859 The Last Man 2 +38961 1859 Last Man 2 +38962 1859 were the last movie left on earth 2 +38963 1859 the last movie left on earth 2 +38964 1859 the last movie 2 +38965 1859 last movie 2 +38966 1859 , there would be a toss-up between presiding over the end of cinema as we know it and another night of delightful hand shadows . 1 +38967 1859 there would be a toss-up between presiding over the end of cinema as we know it and another night of delightful hand shadows . 0 +38968 1859 would be a toss-up between presiding over the end of cinema as we know it and another night of delightful hand shadows . 1 +38969 1859 would be a toss-up between presiding over the end of cinema as we know it and another night of delightful hand shadows 0 +38970 1859 be a toss-up between presiding over the end of cinema as we know it and another night of delightful hand shadows 1 +38971 1859 a toss-up between presiding over the end of cinema as we know it and another night of delightful hand shadows 2 +38972 1859 a toss-up 2 +38973 1859 toss-up 3 +38974 1859 between presiding over the end of cinema as we know it and another night of delightful hand shadows 0 +38975 1859 presiding over the end of cinema as we know it and another night of delightful hand shadows 2 +38976 1859 presiding over the end of cinema as we know it and 1 +38977 1859 presiding over the end of cinema as we know it 2 +38978 1859 presiding over the end of cinema 2 +38979 1859 presiding 2 +38980 1859 over the end of cinema 3 +38981 1859 the end of cinema 2 +38982 1859 as we know it 2 +38983 1859 we know it 2 +38984 1859 know it 2 +38985 1859 another night of delightful hand shadows 2 +38986 1859 another night 3 +38987 1859 of delightful hand shadows 3 +38988 1859 delightful hand shadows 3 +38989 1859 hand shadows 2 +38990 1860 `` I blame all men for war , '' -LRB- the warden 's daughter -RRB- tells her father . 2 +38991 1860 I blame all men for war , '' -LRB- the warden 's daughter -RRB- tells her father . 2 +38992 1860 blame all men for war , '' -LRB- the warden 's daughter -RRB- tells her father . 2 +38993 1860 blame all men for war , '' -LRB- the warden 's daughter -RRB- tells her father 2 +38994 1860 all men for war , '' -LRB- the warden 's daughter -RRB- tells her father 2 +38995 1860 all men for war , '' -LRB- the warden 's daughter -RRB- 2 +38996 1860 all men for war , '' 2 +38997 1860 all men for war , 2 +38998 1860 all men for war 2 +38999 1860 all men 2 +39000 1860 for war 2 +39001 1860 -LRB- the warden 's daughter -RRB- 2 +39002 1860 the warden 's daughter -RRB- 2 +39003 1860 the warden 's daughter 2 +39004 1860 the warden 's 2 +39005 1860 warden 's 2 +39006 1860 warden 2 +39007 1860 tells her father 2 +39008 1860 her father 2 +39009 1861 If you do n't laugh , flee . 2 +39010 1861 If you do n't laugh 3 +39011 1861 you do n't laugh 2 +39012 1861 do n't laugh 2 +39013 1861 , flee . 1 +39014 1861 flee . 2 +39015 1861 flee 1 +39016 1862 that it 'll probably be the best and most mature comedy of the 2002 summer season speaks more of the season than the picture 3 +39017 1862 it 'll probably be the best and most mature comedy of the 2002 summer season speaks more of the season than the picture 2 +39018 1862 'll probably be the best and most mature comedy of the 2002 summer season speaks more of the season than the picture 3 +39019 1862 'll probably 2 +39020 1862 be the best and most mature comedy of the 2002 summer season speaks more of the season than the picture 3 +39021 1862 the best and most mature comedy of the 2002 summer season speaks more of the season than the picture 4 +39022 1862 the best and most mature comedy of the 2002 summer season 4 +39023 1862 the best and most mature comedy 4 +39024 1862 best and most mature comedy 3 +39025 1862 best and most mature 4 +39026 1862 best and 4 +39027 1862 most mature 2 +39028 1862 of the 2002 summer season 2 +39029 1862 the 2002 summer season 2 +39030 1862 2002 summer season 2 +39031 1862 summer season 3 +39032 1862 speaks more of the season than the picture 1 +39033 1862 speaks 2 +39034 1862 more of the season than the picture 2 +39035 1862 of the season than the picture 2 +39036 1862 the season than the picture 2 +39037 1862 the season 2 +39038 1862 than the picture 2 +39039 1863 On its own , it 's not very interesting . 1 +39040 1863 , it 's not very interesting . 1 +39041 1863 it 's not very interesting . 1 +39042 1863 's not very interesting . 1 +39043 1863 's not very interesting 1 +39044 1863 very interesting 3 +39045 1864 Leigh is n't breaking new ground , but he knows how a daily grind can kill love . 3 +39046 1864 Leigh is n't breaking new ground , but he knows how a daily grind can kill love 3 +39047 1864 Leigh is n't breaking new ground , but 2 +39048 1864 Leigh is n't breaking new ground , 2 +39049 1864 Leigh is n't breaking new ground 2 +39050 1864 is n't breaking new ground 1 +39051 1864 breaking new ground 3 +39052 1864 he knows how a daily grind can kill love 2 +39053 1864 knows how a daily grind can kill love 3 +39054 1864 how a daily grind can kill love 2 +39055 1864 a daily grind can kill love 2 +39056 1864 a daily grind 2 +39057 1864 daily grind 2 +39058 1864 can kill love 2 +39059 1864 kill love 2 +39060 1864 kill 2 +39061 1865 The rich performances by Friel -- and especially Williams , an American actress who becomes fully English -- round out the square edges . 3 +39062 1865 The rich performances by Friel -- and especially Williams , an American actress who becomes fully English -- 3 +39063 1865 The rich performances by Friel 3 +39064 1865 The rich performances 3 +39065 1865 rich performances 4 +39066 1865 by Friel 2 +39067 1865 Friel 2 +39068 1865 -- and especially Williams , an American actress who becomes fully English -- 3 +39069 1865 -- and especially Williams , an American actress who becomes fully English 3 +39070 1865 especially Williams , an American actress who becomes fully English 3 +39071 1865 especially Williams , 2 +39072 1865 especially Williams 2 +39073 1865 an American actress who becomes fully English 3 +39074 1865 an American actress 2 +39075 1865 American actress 2 +39076 1865 who becomes fully English 2 +39077 1865 becomes fully English 2 +39078 1865 fully English 2 +39079 1865 English 2 +39080 1865 round out the square edges . 3 +39081 1865 round out the square edges 2 +39082 1865 round out 2 +39083 1865 round 2 +39084 1865 the square edges 2 +39085 1865 square edges 2 +39086 1865 edges 2 +39087 1866 The appeal of the vulgar , sexist , racist humour went over my head or -- considering just how low brow it is -- perhaps it snuck under my feet . 0 +39088 1866 The appeal of the vulgar , sexist , racist humour went over my head or -- considering just how low brow it is -- perhaps it snuck under my feet 0 +39089 1866 The appeal of the vulgar , sexist , racist humour went over my head or -- considering just how low brow it is -- 0 +39090 1866 The appeal of the vulgar , sexist , racist humour went over my head or -- considering just how low brow it is 0 +39091 1866 The appeal of the vulgar , sexist , racist humour 2 +39092 1866 The appeal 2 +39093 1866 of the vulgar , sexist , racist humour 0 +39094 1866 the vulgar , sexist , racist humour 1 +39095 1866 vulgar , sexist , racist humour 0 +39096 1866 vulgar , sexist 0 +39097 1866 , sexist 1 +39098 1866 sexist 1 +39099 1866 , racist humour 1 +39100 1866 racist humour 1 +39101 1866 racist 0 +39102 1866 went over my head or -- considering just how low brow it is 1 +39103 1866 went over my head or -- considering just 1 +39104 1866 went over my head or 1 +39105 1866 went over my head 1 +39106 1866 went over 2 +39107 1866 my head 2 +39108 1866 -- considering just 2 +39109 1866 considering just 2 +39110 1866 how low brow it is 0 +39111 1866 how low brow 1 +39112 1866 low brow 2 +39113 1866 brow 3 +39114 1866 perhaps it snuck under my feet 2 +39115 1866 it snuck under my feet 2 +39116 1866 snuck under my feet 2 +39117 1866 snuck 2 +39118 1866 under my feet 2 +39119 1866 my feet 2 +39120 1867 The movie itself is far from disappointing , offering an original take on courtroom movies , a few nifty twists that are so crucial to the genre and another first-rate performance by top-billed star Bruce Willis . 3 +39121 1867 The movie itself is far from disappointing , offering an original 3 +39122 1867 itself is far from disappointing , offering an original 3 +39123 1867 is far from disappointing , offering an original 3 +39124 1867 is far from disappointing , 3 +39125 1867 is far from disappointing 3 +39126 1867 far from disappointing 3 +39127 1867 from disappointing 1 +39128 1867 offering an original 3 +39129 1867 an original 4 +39130 1867 take on courtroom movies , a few nifty twists that are so crucial to the genre and another first-rate performance by top-billed star Bruce Willis . 3 +39131 1867 take on courtroom movies , a few nifty twists that are so crucial to the genre and another first-rate performance by top-billed star Bruce Willis 3 +39132 1867 on courtroom movies , a few nifty twists that are so crucial to the genre and another first-rate performance by top-billed star Bruce Willis 3 +39133 1867 courtroom movies , a few nifty twists that are so crucial to the genre and another first-rate performance by top-billed star Bruce Willis 4 +39134 1867 courtroom movies , 2 +39135 1867 courtroom movies 2 +39136 1867 courtroom 2 +39137 1867 a few nifty twists that are so crucial to the genre and another first-rate performance by top-billed star Bruce Willis 4 +39138 1867 a few nifty twists 2 +39139 1867 few nifty twists 2 +39140 1867 nifty twists 3 +39141 1867 that are so crucial to the genre and another first-rate performance by top-billed star Bruce Willis 4 +39142 1867 are so crucial to the genre and another first-rate performance by top-billed star Bruce Willis 4 +39143 1867 are so crucial to the genre and another first-rate performance 4 +39144 1867 so crucial to the genre and another first-rate performance 4 +39145 1867 crucial to the genre and another first-rate performance 4 +39146 1867 to the genre and another first-rate performance 4 +39147 1867 the genre and another first-rate performance 4 +39148 1867 the genre and 2 +39149 1867 another first-rate performance 4 +39150 1867 first-rate performance 4 +39151 1867 by top-billed star Bruce Willis 3 +39152 1867 top-billed star Bruce Willis 3 +39153 1867 top-billed 2 +39154 1867 star Bruce Willis 3 +39155 1868 Five screenwriters 2 +39156 1868 credited 2 +39157 1868 it seems as if each watered down the version of the one before 1 +39158 1868 seems as if each watered down the version of the one before 1 +39159 1868 as if each watered down the version of the one before 2 +39160 1868 if each watered down the version of the one before 1 +39161 1868 each watered down the version of the one before 1 +39162 1868 watered down the version of the one before 1 +39163 1868 watered down the version of the one 1 +39164 1868 watered down 1 +39165 1868 watered 2 +39166 1868 the version of the one 2 +39167 1868 the version 2 +39168 1868 of the one 2 +39169 1868 the one 2 +39170 1869 About half of them are funny , a few are sexy and none are useful in telling the story , which is paper-thin and decidedly unoriginal . 1 +39171 1869 About half of them are funny , a few are sexy and none are useful in telling the story , which is paper-thin and decidedly unoriginal 2 +39172 1869 About half of them are funny , a few are sexy and 3 +39173 1869 About half of them are funny , a few are sexy 2 +39174 1869 About half of them are funny , 2 +39175 1869 About half of them are funny 2 +39176 1869 About half of them 2 +39177 1869 About half 2 +39178 1869 are funny 3 +39179 1869 a few are sexy 3 +39180 1869 a few 2 +39181 1869 are sexy 3 +39182 1869 none are useful in telling the story , which is paper-thin and decidedly unoriginal 0 +39183 1869 are useful in telling the story , which is paper-thin and decidedly unoriginal 1 +39184 1869 useful in telling the story , which is paper-thin and decidedly unoriginal 1 +39185 1869 useful 2 +39186 1869 in telling the story , which is paper-thin and decidedly unoriginal 0 +39187 1869 telling the story , which is paper-thin and decidedly unoriginal 1 +39188 1869 the story , which is paper-thin and decidedly unoriginal 2 +39189 1869 which is paper-thin and decidedly unoriginal 0 +39190 1869 is paper-thin and decidedly unoriginal 1 +39191 1869 paper-thin and decidedly unoriginal 0 +39192 1869 paper-thin and 1 +39193 1869 decidedly unoriginal 0 +39194 1869 unoriginal 1 +39195 1870 Its one-sidedness ... flirts with propaganda . 1 +39196 1870 Its one-sidedness ... flirts with propaganda 1 +39197 1870 Its one-sidedness ... 2 +39198 1870 Its one-sidedness 1 +39199 1870 one-sidedness 1 +39200 1870 flirts with propaganda 1 +39201 1870 flirts 2 +39202 1870 with propaganda 2 +39203 1871 Final verdict : You 've seen it all before . 0 +39204 1871 Final verdict : You 've seen it all before 2 +39205 1871 Final verdict : 2 +39206 1871 Final verdict 3 +39207 1871 verdict 2 +39208 1871 You 've seen it all before 1 +39209 1871 've seen it all before 1 +39210 1871 seen it all before 1 +39211 1871 seen it 2 +39212 1871 all before 2 +39213 1872 Nicole Holofcenter , the insightful writer\/director responsible for this illuminating comedy does n't wrap the proceedings up neatly but the ideas tie together beautifully . 3 +39214 1872 Nicole Holofcenter , the insightful writer\/director responsible for this illuminating comedy does n't wrap the proceedings up neatly but the ideas tie together beautifully 3 +39215 1872 Nicole Holofcenter , the insightful writer\/director responsible for this illuminating comedy does n't wrap the proceedings up neatly but 2 +39216 1872 Nicole Holofcenter , the insightful writer\/director responsible for this illuminating comedy does n't wrap the proceedings up neatly 3 +39217 1872 Nicole Holofcenter , the insightful writer\/director responsible for this illuminating comedy 4 +39218 1872 Nicole Holofcenter , 2 +39219 1872 Nicole Holofcenter 2 +39220 1872 Holofcenter 2 +39221 1872 the insightful writer\/director responsible for this illuminating comedy 3 +39222 1872 the insightful writer\/director 3 +39223 1872 insightful writer\/director 3 +39224 1872 responsible for this illuminating comedy 3 +39225 1872 for this illuminating comedy 3 +39226 1872 this illuminating comedy 3 +39227 1872 illuminating comedy 3 +39228 1872 illuminating 3 +39229 1872 does n't wrap the proceedings up neatly 1 +39230 1872 wrap the proceedings up neatly 3 +39231 1872 wrap the proceedings up 2 +39232 1872 wrap the proceedings 2 +39233 1872 wrap 2 +39234 1872 neatly 3 +39235 1872 the ideas tie together beautifully 4 +39236 1872 the ideas 2 +39237 1872 tie together beautifully 4 +39238 1872 tie together 2 +39239 1872 tie 2 +39240 1873 One of those staggeringly well-produced , joylessly extravagant pictures that keep whooshing you from one visual marvel to the next , hastily , emptily . 2 +39241 1873 One of those staggeringly well-produced , joylessly extravagant pictures that keep whooshing you from one visual marvel to the next , hastily , emptily 2 +39242 1873 One of those staggeringly well-produced , 4 +39243 1873 One of those staggeringly well-produced 4 +39244 1873 of those staggeringly well-produced 3 +39245 1873 those staggeringly well-produced 3 +39246 1873 staggeringly well-produced 4 +39247 1873 staggeringly 2 +39248 1873 well-produced 4 +39249 1873 joylessly extravagant pictures that keep whooshing you from one visual marvel to the next , hastily , emptily 0 +39250 1873 joylessly extravagant pictures 1 +39251 1873 joylessly 1 +39252 1873 extravagant pictures 2 +39253 1873 that keep whooshing you from one visual marvel to the next , hastily , emptily 1 +39254 1873 keep whooshing you from one visual marvel to the next , hastily , emptily 1 +39255 1873 whooshing you from one visual marvel to the next , hastily , emptily 1 +39256 1873 whooshing you from one visual marvel 3 +39257 1873 whooshing you 2 +39258 1873 whooshing 2 +39259 1873 from one visual marvel 3 +39260 1873 one visual marvel 3 +39261 1873 visual marvel 3 +39262 1873 marvel 3 +39263 1873 to the next , hastily , emptily 1 +39264 1873 the next , hastily , emptily 1 +39265 1873 next , hastily , emptily 2 +39266 1873 , hastily , emptily 1 +39267 1873 , hastily , 2 +39268 1873 hastily , 2 +39269 1873 emptily 2 +39270 1874 Even as the hero of the story rediscovers his passion in life , the mood remains oddly detached . 1 +39271 1874 Even as the hero of the story rediscovers his passion in life 2 +39272 1874 as the hero of the story rediscovers his passion in life 2 +39273 1874 the hero of the story rediscovers his passion in life 2 +39274 1874 the hero of the story 2 +39275 1874 the hero 2 +39276 1874 rediscovers his passion in life 3 +39277 1874 rediscovers his passion 2 +39278 1874 rediscovers 3 +39279 1874 his passion 3 +39280 1874 , the mood remains oddly detached . 2 +39281 1874 the mood remains oddly detached . 2 +39282 1874 remains oddly detached . 2 +39283 1874 remains oddly detached 1 +39284 1874 oddly detached 1 +39285 1874 detached 1 +39286 1875 Boring and meandering . 0 +39287 1875 Boring and meandering 1 +39288 1875 Boring and 0 +39289 1876 No matter how much he runs around and acts like a doofus , accepting a 50-year-old in the role is creepy in a Michael Jackson sort of way . 1 +39290 1876 No matter how much he runs around and acts like a doofus 2 +39291 1876 matter how much he runs around and acts like a doofus 1 +39292 1876 how much he runs around and acts like a doofus 0 +39293 1876 he runs around and acts like a doofus 0 +39294 1876 runs around and acts like a doofus 1 +39295 1876 runs around and 3 +39296 1876 runs around 2 +39297 1876 acts like a doofus 1 +39298 1876 like a doofus 2 +39299 1876 a doofus 2 +39300 1876 doofus 1 +39301 1876 , accepting a 50-year-old in the role is creepy in a Michael Jackson sort of way . 1 +39302 1876 accepting a 50-year-old in the role is creepy in a Michael Jackson sort of way . 1 +39303 1876 accepting a 50-year-old in the role 2 +39304 1876 accepting a 50-year-old 2 +39305 1876 a 50-year-old 2 +39306 1876 is creepy in a Michael Jackson sort of way . 2 +39307 1876 is creepy in a Michael Jackson sort of way 1 +39308 1876 is creepy 1 +39309 1876 in a Michael Jackson sort of way 2 +39310 1876 a Michael Jackson sort of way 2 +39311 1876 a Michael Jackson sort 2 +39312 1876 Michael Jackson sort 2 +39313 1876 Jackson sort 2 +39314 1877 The emotion is impressively true for being so hot-blooded , and both leads are up to the task . 4 +39315 1877 The emotion is impressively true for being so hot-blooded , and both leads are up to the task 4 +39316 1877 The emotion is impressively true for being so hot-blooded , and 3 +39317 1877 The emotion is impressively true for being so hot-blooded , 3 +39318 1877 The emotion is impressively true for being so hot-blooded 3 +39319 1877 The emotion 2 +39320 1877 is impressively true for being so hot-blooded 4 +39321 1877 impressively true for being so hot-blooded 3 +39322 1877 true for being so hot-blooded 3 +39323 1877 for being so hot-blooded 2 +39324 1877 being so hot-blooded 2 +39325 1877 so hot-blooded 3 +39326 1877 hot-blooded 2 +39327 1877 both leads are up to the task 3 +39328 1877 both leads 2 +39329 1877 are up to the task 3 +39330 1877 are up 2 +39331 1877 to the task 2 +39332 1877 the task 2 +39333 1877 task 2 +39334 1878 Gooding and Coburn are both Oscar winners , a fact which , as you watch them clumsily mugging their way through Snow Dogs , seems inconceivable . 1 +39335 1878 Gooding and Coburn 2 +39336 1878 Gooding and 2 +39337 1878 Coburn 2 +39338 1878 are both Oscar winners , a fact which , as you watch them clumsily mugging their way through Snow Dogs , seems inconceivable . 2 +39339 1878 are both Oscar winners , a fact which , as you watch them clumsily mugging their way through Snow Dogs , seems inconceivable 1 +39340 1878 both Oscar winners , a fact which , as you watch them clumsily mugging their way through Snow Dogs , seems inconceivable 1 +39341 1878 both Oscar winners , 3 +39342 1878 both Oscar winners 3 +39343 1878 Oscar winners 3 +39344 1878 winners 2 +39345 1878 a fact which , as you watch them clumsily mugging their way through Snow Dogs , seems inconceivable 1 +39346 1878 a fact 2 +39347 1878 which , as you watch them clumsily mugging their way through Snow Dogs , seems inconceivable 1 +39348 1878 , as you watch them clumsily mugging their way through Snow Dogs , seems inconceivable 1 +39349 1878 , as you watch them clumsily mugging their way through Snow Dogs , 1 +39350 1878 as you watch them clumsily mugging their way through Snow Dogs , 1 +39351 1878 as you watch them clumsily mugging their way through Snow Dogs 1 +39352 1878 you watch them clumsily mugging their way through Snow Dogs 1 +39353 1878 watch them clumsily mugging their way through Snow Dogs 1 +39354 1878 them clumsily mugging their way through Snow Dogs 2 +39355 1878 clumsily mugging their way through Snow Dogs 1 +39356 1878 mugging their way through Snow Dogs 1 +39357 1878 mugging their way 2 +39358 1878 through Snow Dogs 2 +39359 1878 seems inconceivable 1 +39360 1878 inconceivable 1 +39361 1879 Why ? 1 +39362 1880 Brosnan 's finest non-Bondish performance yet fails to overcome the film 's manipulative sentimentality and annoying stereotypes . 1 +39363 1880 Brosnan 's finest non-Bondish performance 4 +39364 1880 Brosnan 's 2 +39365 1880 Brosnan 2 +39366 1880 finest non-Bondish performance 4 +39367 1880 finest 3 +39368 1880 non-Bondish performance 2 +39369 1880 non-Bondish 2 +39370 1880 yet fails to overcome the film 's manipulative sentimentality and annoying stereotypes . 1 +39371 1880 fails to overcome the film 's manipulative sentimentality and annoying stereotypes . 0 +39372 1880 fails to overcome the film 's manipulative sentimentality and annoying stereotypes 0 +39373 1880 to overcome the film 's manipulative sentimentality and annoying stereotypes 2 +39374 1880 overcome the film 's manipulative sentimentality and annoying stereotypes 1 +39375 1880 the film 's manipulative sentimentality and annoying stereotypes 1 +39376 1880 manipulative sentimentality and annoying stereotypes 1 +39377 1880 sentimentality and annoying stereotypes 1 +39378 1880 sentimentality and annoying 1 +39379 1880 sentimentality and 2 +39380 1881 It leers , offering next to little insight into its intriguing subject . 1 +39381 1881 leers , offering next to little insight into its intriguing subject . 2 +39382 1881 leers , offering next to little insight into its intriguing subject 1 +39383 1881 leers , 1 +39384 1881 leers 2 +39385 1881 offering next to little insight into its intriguing subject 1 +39386 1881 offering next to little insight 1 +39387 1881 next to little insight 1 +39388 1881 to little insight 2 +39389 1881 little insight 2 +39390 1881 into its intriguing subject 3 +39391 1881 its intriguing subject 3 +39392 1881 intriguing subject 3 +39393 1882 A 75-minute sample of puerile rubbish that is listless , witless , and devoid of anything resembling humor . 0 +39394 1882 A 75-minute sample of puerile 1 +39395 1882 A 75-minute sample 2 +39396 1882 75-minute sample 2 +39397 1882 75-minute 2 +39398 1882 sample 2 +39399 1882 of puerile 1 +39400 1882 puerile 1 +39401 1882 rubbish that is listless , witless , and devoid of anything resembling humor . 0 +39402 1882 rubbish that is listless , witless , and devoid of anything resembling humor 1 +39403 1882 rubbish 0 +39404 1882 that is listless , witless , and devoid of anything resembling humor 1 +39405 1882 is listless , witless , and devoid of anything resembling humor 0 +39406 1882 is listless , witless , and devoid of anything 0 +39407 1882 listless , witless , and devoid of anything 0 +39408 1882 listless , witless , and 0 +39409 1882 listless , witless , 0 +39410 1882 listless , witless 1 +39411 1882 listless , 2 +39412 1882 devoid of anything 2 +39413 1882 of anything 2 +39414 1882 resembling humor 3 +39415 1882 resembling 2 +39416 1883 Throwing in everything except someone pulling the pin from a grenade with his teeth , Windtalkers seems to have ransacked every old World War II movie for overly familiar material . 1 +39417 1883 Throwing in everything except someone pulling the pin from a grenade with his teeth 2 +39418 1883 in everything except someone pulling the pin from a grenade with his teeth 2 +39419 1883 everything except someone pulling the pin from a grenade with his teeth 1 +39420 1883 everything except someone 2 +39421 1883 except someone 2 +39422 1883 pulling the pin from a grenade with his teeth 2 +39423 1883 pulling the pin 2 +39424 1883 pulling 2 +39425 1883 the pin 2 +39426 1883 pin 2 +39427 1883 from a grenade with his teeth 2 +39428 1883 a grenade with his teeth 1 +39429 1883 a grenade 1 +39430 1883 with his teeth 2 +39431 1883 his teeth 2 +39432 1883 , Windtalkers seems to have ransacked every old World War II movie for overly familiar material . 0 +39433 1883 Windtalkers seems to have ransacked every old World War II movie for overly familiar material . 1 +39434 1883 seems to have ransacked every old World War II movie for overly familiar material . 0 +39435 1883 seems to have ransacked every old World War II movie for overly familiar material 0 +39436 1883 to have ransacked every old World War II movie for overly familiar material 1 +39437 1883 have ransacked every old World War II movie for overly familiar material 1 +39438 1883 ransacked every old World War II movie for overly familiar material 1 +39439 1883 ransacked 2 +39440 1883 every old World War II movie for overly familiar material 2 +39441 1883 every old World War II movie 2 +39442 1883 old World War II movie 2 +39443 1883 old World War II 2 +39444 1883 old World War 3 +39445 1883 old World 2 +39446 1883 for overly familiar material 2 +39447 1883 overly familiar material 2 +39448 1884 A reworking of Die Hard and Cliffhanger but it 's nowhere near as exciting as either . 1 +39449 1884 A reworking of Die Hard and Cliffhanger but it 2 +39450 1884 A reworking of Die Hard and Cliffhanger 1 +39451 1884 A reworking 2 +39452 1884 reworking 2 +39453 1884 of Die Hard and Cliffhanger 2 +39454 1884 Die Hard and Cliffhanger 2 +39455 1884 Die 1 +39456 1884 Hard and Cliffhanger 2 +39457 1884 Hard and 2 +39458 1884 Cliffhanger 3 +39459 1884 but it 2 +39460 1884 's nowhere near as exciting as either . 1 +39461 1884 's nowhere near as exciting as either 1 +39462 1884 's nowhere near 1 +39463 1884 nowhere near 2 +39464 1884 as exciting as either 2 +39465 1884 exciting as either 2 +39466 1884 as either 2 +39467 1885 -LRB- The kid 's -RRB- just too bratty for sympathy , and as the film grows to its finale , his little changes ring hollow . 1 +39468 1885 -LRB- The kid 's -RRB- just too bratty for sympathy , and as the film grows to its finale , his little changes ring hollow 0 +39469 1885 -LRB- The kid 's -RRB- just too bratty for sympathy , and 1 +39470 1885 -LRB- The kid 's -RRB- just too bratty for sympathy , 1 +39471 1885 -LRB- The kid 's -RRB- just too bratty for sympathy 1 +39472 1885 The kid 's -RRB- just too bratty for sympathy 1 +39473 1885 The kid 's 2 +39474 1885 -RRB- just too bratty for sympathy 1 +39475 1885 just too bratty for sympathy 1 +39476 1885 just too 2 +39477 1885 bratty for sympathy 1 +39478 1885 bratty 1 +39479 1885 for sympathy 2 +39480 1885 as the film grows to its finale , his little changes ring hollow 2 +39481 1885 as the film grows to its finale 2 +39482 1885 the film grows to its finale 2 +39483 1885 grows to its finale 2 +39484 1885 to its finale 2 +39485 1885 its finale 2 +39486 1885 , his little changes ring hollow 1 +39487 1885 his little changes ring hollow 2 +39488 1885 his little changes 2 +39489 1885 little changes 2 +39490 1885 ring hollow 1 +39491 1886 Texan director George Ratliff had unlimited access to families and church meetings , and he delivers fascinating psychological fare . 4 +39492 1886 Texan director George Ratliff had unlimited access to families and church meetings , and he delivers fascinating psychological fare 3 +39493 1886 Texan director George Ratliff had unlimited access to families and church meetings , and 2 +39494 1886 Texan director George Ratliff had unlimited access to families and church meetings , 3 +39495 1886 Texan director George Ratliff had unlimited access to families and church meetings 2 +39496 1886 Texan director George Ratliff 2 +39497 1886 Texan 2 +39498 1886 director George Ratliff 2 +39499 1886 George Ratliff 2 +39500 1886 had unlimited access to families and church meetings 2 +39501 1886 unlimited access to families and church meetings 3 +39502 1886 unlimited access 3 +39503 1886 unlimited 2 +39504 1886 access 2 +39505 1886 to families and church meetings 2 +39506 1886 families and church meetings 3 +39507 1886 and church meetings 3 +39508 1886 church meetings 2 +39509 1886 church 2 +39510 1886 meetings 2 +39511 1886 he delivers fascinating psychological fare 4 +39512 1886 delivers fascinating psychological fare 3 +39513 1886 fascinating psychological fare 4 +39514 1886 psychological fare 2 +39515 1887 The trouble with making this queen a thoroughly modern maiden is that it also makes her appear foolish and shallow rather than , as was more likely , a victim of mental illness . 1 +39516 1887 The trouble with making this queen a thoroughly modern maiden 2 +39517 1887 The trouble 2 +39518 1887 with making this queen a thoroughly modern maiden 2 +39519 1887 making this queen a thoroughly modern maiden 3 +39520 1887 this queen a thoroughly modern maiden 2 +39521 1887 this queen 2 +39522 1887 a thoroughly modern maiden 3 +39523 1887 thoroughly modern maiden 2 +39524 1887 thoroughly modern 2 +39525 1887 maiden 2 +39526 1887 is that it also makes her appear foolish and shallow rather than , as was more likely , a victim of mental illness . 1 +39527 1887 is that it also makes her appear foolish and shallow rather than , as was more likely , a victim of mental illness 1 +39528 1887 that it also makes her appear foolish and shallow rather than , as was more likely , a victim of mental illness 1 +39529 1887 that it also makes her appear foolish and shallow rather than , as was more likely , 1 +39530 1887 it also makes her appear foolish and shallow rather than , as was more likely , 1 +39531 1887 also makes her appear foolish and shallow rather than , as was more likely , 2 +39532 1887 makes her appear foolish and shallow rather than , as was more likely , 2 +39533 1887 her appear foolish and shallow rather than , as was more likely , 1 +39534 1887 appear foolish and shallow rather than , as was more likely , 1 +39535 1887 appear foolish and shallow 1 +39536 1887 foolish and shallow 0 +39537 1887 foolish and 2 +39538 1887 foolish 1 +39539 1887 rather than , as was more likely , 2 +39540 1887 than , as was more likely , 2 +39541 1887 , as was more likely , 2 +39542 1887 as was more likely , 2 +39543 1887 as was more likely 2 +39544 1887 was more likely 2 +39545 1887 more likely 2 +39546 1887 a victim of mental illness 2 +39547 1887 a victim 2 +39548 1887 of mental illness 2 +39549 1887 mental illness 1 +39550 1888 Star Trek was kind of terrific once , but now it is a copy of a copy of a copy . 1 +39551 1888 Star Trek was kind of terrific once , but now it is a copy of a copy of a copy 2 +39552 1888 Star Trek was kind of terrific once , but 2 +39553 1888 Star Trek was kind of terrific once , 3 +39554 1888 Star Trek was kind of terrific once 2 +39555 1888 was kind of terrific once 3 +39556 1888 was kind of terrific 4 +39557 1888 kind of terrific 3 +39558 1888 of terrific 3 +39559 1888 now it is a copy of a copy of a copy 1 +39560 1888 it is a copy of a copy of a copy 1 +39561 1888 is a copy of a copy of a copy 1 +39562 1888 a copy of a copy of a copy 1 +39563 1888 a copy 2 +39564 1888 of a copy of a copy 2 +39565 1888 a copy of a copy 1 +39566 1888 of a copy 2 +39567 1889 Ms. Phoenix is completely lacking in charm and charisma , and is unable to project either Esther 's initial anomie or her eventual awakening . 0 +39568 1889 Ms. Phoenix 2 +39569 1889 Phoenix 2 +39570 1889 is completely lacking in charm and charisma , and is unable to project either Esther 's initial anomie or her eventual awakening . 0 +39571 1889 is completely lacking in charm and charisma , and is unable to project either Esther 's initial anomie or her eventual awakening 0 +39572 1889 is completely lacking in charm and charisma , and 1 +39573 1889 is completely lacking in charm and charisma , 1 +39574 1889 is completely lacking in charm and charisma 0 +39575 1889 is completely 3 +39576 1889 lacking in charm and charisma 1 +39577 1889 lacking 1 +39578 1889 in charm and charisma 2 +39579 1889 charm and charisma 3 +39580 1889 charm and 2 +39581 1889 charisma 3 +39582 1889 is unable to project either Esther 's initial anomie or her eventual awakening 1 +39583 1889 unable to project either Esther 's initial anomie or her eventual awakening 2 +39584 1889 to project either Esther 's initial anomie or her eventual awakening 2 +39585 1889 project either Esther 's initial anomie or her eventual awakening 2 +39586 1889 either Esther 's initial anomie or her eventual awakening 2 +39587 1889 either Esther 's initial anomie or 2 +39588 1889 either Esther 's initial anomie 2 +39589 1889 either Esther 's 2 +39590 1889 Esther 's 2 +39591 1889 Esther 2 +39592 1889 initial anomie 2 +39593 1889 her eventual awakening 2 +39594 1889 eventual awakening 2 +39595 1889 awakening 2 +39596 1890 The Wild Thornberrys Movie is pleasant enough and the message of our close ties with animals can certainly not be emphasized enough . 3 +39597 1890 The Wild Thornberrys Movie is pleasant enough and the message of our close ties with animals can certainly not be emphasized enough 3 +39598 1890 The Wild Thornberrys Movie is pleasant enough and 3 +39599 1890 The Wild Thornberrys Movie is pleasant enough 3 +39600 1890 is pleasant enough 3 +39601 1890 pleasant enough 3 +39602 1890 the message of our close ties with animals can certainly not be emphasized enough 3 +39603 1890 the message of our close ties with animals 2 +39604 1890 of our close ties with animals 2 +39605 1890 our close ties with animals 3 +39606 1890 our close ties 2 +39607 1890 close ties 2 +39608 1890 with animals 2 +39609 1890 can certainly not be emphasized enough 2 +39610 1890 can certainly not 2 +39611 1890 can certainly 2 +39612 1890 be emphasized enough 2 +39613 1890 emphasized enough 2 +39614 1890 emphasized 3 +39615 1891 The audacity to view one of Shakespeare 's better known tragedies as a dark comedy is , by itself , deserving of discussion . 1 +39616 1891 The audacity to view one of Shakespeare 's better known tragedies as a dark comedy 2 +39617 1891 audacity to view one of Shakespeare 's better known tragedies as a dark comedy 1 +39618 1891 audacity 1 +39619 1891 to view one of Shakespeare 's better known tragedies as a dark comedy 3 +39620 1891 view one of Shakespeare 's better known tragedies as a dark comedy 2 +39621 1891 view one of Shakespeare 's better known tragedies 2 +39622 1891 one of Shakespeare 's better known tragedies 3 +39623 1891 of Shakespeare 's better known tragedies 3 +39624 1891 Shakespeare 's better known tragedies 3 +39625 1891 better known tragedies 2 +39626 1891 better known 2 +39627 1891 as a dark comedy 2 +39628 1891 a dark comedy 2 +39629 1891 dark comedy 3 +39630 1891 is , by itself , deserving of discussion . 3 +39631 1891 is , by itself , deserving of discussion 3 +39632 1891 is , by itself , 2 +39633 1891 is , by itself 2 +39634 1891 is , 2 +39635 1891 by itself 2 +39636 1891 deserving of discussion 3 +39637 1891 deserving 2 +39638 1891 of discussion 2 +39639 1891 discussion 2 +39640 1892 Throw Smoochy from the train ! 1 +39641 1892 Throw Smoochy from the train 2 +39642 1892 Throw Smoochy 2 +39643 1892 Smoochy 3 +39644 1892 from the train 2 +39645 1892 the train 2 +39646 1892 train 2 +39647 1893 If you 're looking for something new and hoping for something entertaining , you 're in luck . 4 +39648 1893 If you 're looking for something new and hoping for something entertaining 3 +39649 1893 you 're looking for something new and hoping for something entertaining 2 +39650 1893 're looking for something new and hoping for something entertaining 3 +39651 1893 looking for something new and hoping for something entertaining 3 +39652 1893 looking for something new and 2 +39653 1893 looking for something new 1 +39654 1893 for something new 3 +39655 1893 something new 3 +39656 1893 hoping for something entertaining 2 +39657 1893 hoping 2 +39658 1893 for something entertaining 3 +39659 1893 something entertaining 3 +39660 1893 , you 're in luck . 3 +39661 1893 you 're in luck . 3 +39662 1893 're in luck . 3 +39663 1893 're in luck 3 +39664 1893 in luck 3 +39665 1893 luck 2 +39666 1894 De Ayala is required to supply too much of the energy in a film that is , overall , far too staid for its subject matter . 2 +39667 1894 De Ayala 2 +39668 1894 Ayala 2 +39669 1894 is required to supply too much of the energy in a film that is , overall , far too staid for its subject matter . 1 +39670 1894 is required to supply too much of the energy in a film that is , overall , far too staid for its subject matter 0 +39671 1894 required to supply too much of the energy in a film that is , overall , far too staid for its subject matter 1 +39672 1894 to supply too much of the energy in a film that is , overall , far too staid for its subject matter 1 +39673 1894 supply too much of the energy in a film that is , overall , far too staid for its subject matter 1 +39674 1894 supply too much of the energy 2 +39675 1894 supply 2 +39676 1894 too much of the energy 1 +39677 1894 of the energy 2 +39678 1894 the energy 2 +39679 1894 in a film that is , overall , far too staid for its subject matter 1 +39680 1894 a film that is , overall , far too staid for its subject matter 1 +39681 1894 that is , overall , far too staid for its subject matter 1 +39682 1894 is , overall , far too staid for its subject matter 2 +39683 1894 is , overall , far too staid 1 +39684 1894 is , overall , 2 +39685 1894 is , overall 2 +39686 1894 far too staid 1 +39687 1894 too staid 2 +39688 1894 staid 1 +39689 1894 for its subject matter 2 +39690 1894 its subject matter 2 +39691 1895 Cold , Sterile And Lacking Any Color Or Warmth . 0 +39692 1895 Cold , Sterile And Lacking Any Color Or Warmth 1 +39693 1895 Cold , Sterile And Lacking 0 +39694 1895 , Sterile And Lacking 1 +39695 1895 Sterile And Lacking 2 +39696 1895 Sterile And 1 +39697 1895 Sterile 1 +39698 1895 Any Color Or Warmth 2 +39699 1895 Color Or Warmth 2 +39700 1895 Color Or 2 +39701 1896 Mindless and boring martial arts and gunplay with too little excitement and zero compelling storyline . 1 +39702 1896 Mindless and boring 0 +39703 1896 Mindless and 1 +39704 1896 martial arts and gunplay with too little excitement and zero compelling storyline . 1 +39705 1896 martial arts and gunplay with too little excitement and zero compelling storyline 1 +39706 1896 martial arts and gunplay 2 +39707 1896 martial 2 +39708 1896 arts and gunplay 2 +39709 1896 arts and 2 +39710 1896 arts 2 +39711 1896 gunplay 2 +39712 1896 with too little excitement and zero compelling storyline 0 +39713 1896 too little excitement and zero compelling storyline 0 +39714 1896 too little excitement and 1 +39715 1896 too little excitement 1 +39716 1896 little excitement 1 +39717 1896 zero compelling storyline 0 +39718 1896 zero 1 +39719 1896 compelling storyline 4 +39720 1897 A puppy dog so desperate for attention it nearly breaks its little neck trying to perform entertaining tricks . 1 +39721 1897 A puppy dog so desperate for attention it nearly breaks its little neck trying to perform entertaining tricks 1 +39722 1897 A puppy dog 2 +39723 1897 puppy dog 2 +39724 1897 puppy 2 +39725 1897 so desperate for attention it nearly breaks its little neck trying to perform entertaining tricks 0 +39726 1897 desperate for attention it nearly breaks its little neck trying to perform entertaining tricks 1 +39727 1897 for attention it nearly breaks its little neck trying to perform entertaining tricks 1 +39728 1897 attention it nearly breaks its little neck trying to perform entertaining tricks 2 +39729 1897 it nearly breaks its little neck trying to perform entertaining tricks 2 +39730 1897 nearly breaks its little neck trying to perform entertaining tricks 1 +39731 1897 breaks its little neck trying to perform entertaining tricks 0 +39732 1897 its little neck trying to perform entertaining tricks 2 +39733 1897 its little neck 2 +39734 1897 little neck 2 +39735 1897 neck 2 +39736 1897 trying to perform entertaining tricks 2 +39737 1897 to perform entertaining tricks 3 +39738 1897 perform entertaining tricks 3 +39739 1897 perform 3 +39740 1897 entertaining tricks 3 +39741 1898 In the end there is one word that best describes this film : honest . 3 +39742 1898 there is one word that best describes this film : honest . 4 +39743 1898 is one word that best describes this film : honest . 3 +39744 1898 is one word that best describes this film : honest 3 +39745 1898 one word that best describes this film : honest 3 +39746 1898 one word 2 +39747 1898 that best describes this film : honest 3 +39748 1898 best describes this film : honest 3 +39749 1898 describes this film : honest 3 +39750 1898 describes 2 +39751 1898 this film : honest 3 +39752 1898 film : honest 3 +39753 1898 film : 2 +39754 1899 It 's the funniest American comedy since Graffiti Bridge . 4 +39755 1899 's the funniest American comedy since Graffiti Bridge . 4 +39756 1899 's the funniest American comedy since Graffiti Bridge 4 +39757 1899 the funniest American comedy since Graffiti Bridge 4 +39758 1899 the funniest American comedy 4 +39759 1899 funniest American comedy 4 +39760 1899 American comedy 2 +39761 1899 since Graffiti Bridge 2 +39762 1899 Graffiti Bridge 2 +39763 1899 Graffiti 2 +39764 1900 Secretary is not a movie about fetishism . 2 +39765 1900 is not a movie about fetishism . 2 +39766 1900 is not a movie about fetishism 2 +39767 1900 a movie about fetishism 2 +39768 1900 about fetishism 2 +39769 1900 fetishism 2 +39770 1901 ` Film aficionados can not help but love Cinema Paradiso , whether the original version or new Director 's Cut . ' 3 +39771 1901 Film aficionados can not help but love Cinema Paradiso , whether the original version or new Director 's Cut . ' 3 +39772 1901 Film aficionados 2 +39773 1901 can not help but love Cinema Paradiso , whether the original version or new Director 's Cut . ' 4 +39774 1901 can not help but love Cinema Paradiso , whether the original version or new Director 's Cut . 3 +39775 1901 can not help but love Cinema Paradiso , whether the original version or new Director 's Cut 4 +39776 1901 love Cinema Paradiso , whether the original version or new Director 's Cut 4 +39777 1901 Cinema Paradiso , whether the original version or new Director 's Cut 2 +39778 1901 Cinema Paradiso , whether the original version or 2 +39779 1901 Cinema Paradiso , whether the original version 2 +39780 1901 Cinema Paradiso , 2 +39781 1901 whether the original version 2 +39782 1901 the original version 2 +39783 1901 original version 2 +39784 1901 new Director 's Cut 2 +39785 1901 new Director 's 2 +39786 1902 A rip-off twice removed , modeled after -LRB- Seagal 's -RRB- earlier copycat Under Siege , sometimes referred to as Die Hard on a boat . 0 +39787 1902 A rip-off twice removed , modeled after -LRB- Seagal 's -RRB- earlier copycat Under Siege , 2 +39788 1902 A rip-off twice removed , modeled after -LRB- Seagal 's -RRB- earlier copycat Under Siege 0 +39789 1902 A rip-off twice removed , 2 +39790 1902 A rip-off twice removed 1 +39791 1902 A rip-off 1 +39792 1902 twice removed 3 +39793 1902 removed 2 +39794 1902 modeled after -LRB- Seagal 's -RRB- earlier copycat Under Siege 2 +39795 1902 after -LRB- Seagal 's -RRB- earlier copycat Under Siege 1 +39796 1902 -LRB- Seagal 's -RRB- earlier copycat Under Siege 2 +39797 1902 -LRB- Seagal 's -RRB- 3 +39798 1902 Seagal 's -RRB- 2 +39799 1902 Seagal 's 2 +39800 1902 earlier copycat Under Siege 1 +39801 1902 earlier copycat 2 +39802 1902 copycat 1 +39803 1902 Under Siege 2 +39804 1902 Siege 2 +39805 1902 sometimes referred to as Die Hard on a boat . 2 +39806 1902 referred to as Die Hard on a boat . 2 +39807 1902 referred to as Die Hard on a boat 2 +39808 1902 referred 2 +39809 1902 to as Die Hard on a boat 2 +39810 1902 as Die Hard on a boat 2 +39811 1902 Die Hard on a boat 2 +39812 1902 Hard on a boat 2 +39813 1902 on a boat 2 +39814 1902 a boat 2 +39815 1903 More dutiful than enchanting ... terribly episodic and lacking the spark of imagination that might have made it an exhilarating treat . 1 +39816 1903 More dutiful than enchanting ... terribly episodic and lacking the spark of imagination that might have made it an exhilarating 0 +39817 1903 More dutiful 2 +39818 1903 than enchanting ... terribly episodic and lacking the spark of imagination that might have made it an exhilarating 1 +39819 1903 enchanting ... terribly episodic and lacking the spark of imagination that might have made it an exhilarating 1 +39820 1903 enchanting ... 4 +39821 1903 enchanting 3 +39822 1903 terribly episodic and lacking the spark of imagination that might have made it an exhilarating 1 +39823 1903 terribly episodic and 1 +39824 1903 terribly episodic 1 +39825 1903 episodic 2 +39826 1903 lacking the spark of imagination that might have made it an exhilarating 1 +39827 1903 the spark of imagination that might have made it an exhilarating 3 +39828 1903 the spark of imagination 2 +39829 1903 the spark 2 +39830 1903 of imagination 2 +39831 1903 that might have made it an exhilarating 3 +39832 1903 might have made it an exhilarating 2 +39833 1903 have made it an exhilarating 4 +39834 1903 made it an exhilarating 2 +39835 1903 it an exhilarating 3 +39836 1903 it an 2 +39837 1903 exhilarating 4 +39838 1903 treat . 3 +39839 1904 The only upside to all of this unpleasantness is , given its Labor Day weekend upload , FearDotCom should log a minimal number of hits . 2 +39840 1904 The only upside to all of this unpleasantness 1 +39841 1904 The only upside 2 +39842 1904 only upside 2 +39843 1904 upside 2 +39844 1904 to all of this unpleasantness 1 +39845 1904 all of this unpleasantness 1 +39846 1904 of this unpleasantness 1 +39847 1904 this unpleasantness 1 +39848 1904 unpleasantness 2 +39849 1904 is , given its Labor Day weekend upload , FearDotCom should log a minimal number of hits . 2 +39850 1904 is , given its Labor Day weekend upload , FearDotCom should log a minimal number of hits 2 +39851 1904 given its Labor Day weekend upload , FearDotCom should log a minimal number of hits 1 +39852 1904 given its Labor Day weekend upload 3 +39853 1904 its Labor Day weekend upload 3 +39854 1904 Labor Day weekend upload 2 +39855 1904 Labor 2 +39856 1904 Day weekend upload 2 +39857 1904 weekend upload 2 +39858 1904 weekend 2 +39859 1904 upload 2 +39860 1904 , FearDotCom should log a minimal number of hits 1 +39861 1904 FearDotCom should log a minimal number of hits 2 +39862 1904 should log a minimal number of hits 2 +39863 1904 log a minimal number of hits 3 +39864 1904 a minimal number of hits 2 +39865 1904 a minimal number 1 +39866 1904 minimal number 2 +39867 1904 minimal 2 +39868 1904 of hits 2 +39869 1905 What the movie lacks in action it more than makes up for in drama , suspense , revenge , and romance . 3 +39870 1905 What the movie lacks in action 1 +39871 1905 the movie lacks in action 1 +39872 1905 lacks in action 1 +39873 1905 in action 3 +39874 1905 it more than makes up for in drama , suspense , revenge , and romance . 4 +39875 1905 more than makes up for in drama , suspense , revenge , and romance . 3 +39876 1905 more than makes up for in drama , suspense , revenge , and romance 3 +39877 1905 makes up for in drama , suspense , revenge , and romance 3 +39878 1905 makes up 2 +39879 1905 for in drama , suspense , revenge , and romance 3 +39880 1905 in drama , suspense , revenge , and romance 2 +39881 1905 drama , suspense , revenge , and romance 3 +39882 1905 drama , 1 +39883 1905 suspense , revenge , and romance 2 +39884 1905 , revenge , and romance 2 +39885 1905 revenge , and romance 3 +39886 1905 , and romance 2 +39887 1906 The type of dumbed-down exercise in stereotypes that gives the -LRB- teen comedy -RRB- genre a bad name . 1 +39888 1906 The type of dumbed-down exercise in stereotypes that gives the -LRB- teen comedy -RRB- 1 +39889 1906 The type 2 +39890 1906 type 2 +39891 1906 of dumbed-down exercise in stereotypes that gives the -LRB- teen comedy -RRB- 1 +39892 1906 dumbed-down exercise in stereotypes that gives the -LRB- teen comedy -RRB- 2 +39893 1906 dumbed-down exercise 2 +39894 1906 in stereotypes that gives the -LRB- teen comedy -RRB- 2 +39895 1906 stereotypes that gives the -LRB- teen comedy -RRB- 1 +39896 1906 that gives the -LRB- teen comedy -RRB- 2 +39897 1906 gives the -LRB- teen comedy -RRB- 2 +39898 1906 the -LRB- teen comedy -RRB- 2 +39899 1906 -LRB- teen comedy -RRB- 2 +39900 1906 teen comedy -RRB- 2 +39901 1906 teen comedy 2 +39902 1906 genre a bad name . 1 +39903 1906 genre a bad name 0 +39904 1906 a bad name 1 +39905 1906 bad name 1 +39906 1907 an `` O Bruin , Where Art Thou ? '' 2 +39907 1907 an `` O Bruin , Where Art Thou ? 2 +39908 1907 an `` O Bruin , Where Art Thou 2 +39909 1907 an `` O Bruin , 2 +39910 1907 an `` O Bruin 2 +39911 1907 `` O Bruin 2 +39912 1907 O Bruin 2 +39913 1907 O 2 +39914 1907 Bruin 2 +39915 1907 Where Art Thou 2 +39916 1907 Art Thou 2 +39917 1907 Thou 2 +39918 1908 ... no charm , no laughs , no fun , no reason to watch . 0 +39919 1908 no charm , no laughs , no fun , no reason to watch . 0 +39920 1908 no charm , no laughs , no fun , no reason to watch 1 +39921 1908 no charm , no laughs , no fun , 0 +39922 1908 no charm , no laughs , no fun 0 +39923 1908 no charm , no laughs , 0 +39924 1908 no charm , no laughs 0 +39925 1908 no charm , 1 +39926 1908 no charm 1 +39927 1908 no laughs 1 +39928 1908 no fun 1 +39929 1908 no reason to watch 0 +39930 1908 reason to watch 2 +39931 1909 A deft , delightful mix of sulky teen drama and overcoming-obstacles sports-movie triumph . 3 +39932 1909 A deft , delightful mix of sulky teen drama and overcoming-obstacles sports-movie triumph 4 +39933 1909 A deft , 2 +39934 1909 A deft 3 +39935 1909 delightful mix of sulky teen drama and overcoming-obstacles sports-movie triumph 3 +39936 1909 delightful mix 3 +39937 1909 of sulky teen drama and overcoming-obstacles sports-movie triumph 3 +39938 1909 sulky teen drama and overcoming-obstacles sports-movie triumph 2 +39939 1909 sulky teen drama and 1 +39940 1909 sulky teen drama 1 +39941 1909 sulky 1 +39942 1909 overcoming-obstacles sports-movie triumph 3 +39943 1909 overcoming-obstacles 2 +39944 1909 sports-movie triumph 3 +39945 1909 sports-movie 2 +39946 1910 ... there 's a choppy , surface-effect feeling to the whole enterprise . 1 +39947 1910 there 's a choppy , surface-effect feeling to the whole enterprise . 2 +39948 1910 's a choppy , surface-effect feeling to the whole enterprise . 2 +39949 1910 's a choppy , surface-effect feeling to the whole enterprise 1 +39950 1910 a choppy , surface-effect feeling to the whole enterprise 1 +39951 1910 a choppy , surface-effect feeling 1 +39952 1910 choppy , surface-effect feeling 1 +39953 1910 choppy 0 +39954 1910 , surface-effect feeling 2 +39955 1910 surface-effect feeling 2 +39956 1910 surface-effect 2 +39957 1910 to the whole enterprise 2 +39958 1910 the whole enterprise 3 +39959 1910 whole enterprise 2 +39960 1911 Predictable storyline and by-the-book scripting is all but washed away by sumptuous ocean visuals and the cinematic stylings of director John Stockwell . 3 +39961 1911 Predictable storyline and by-the-book scripting 1 +39962 1911 Predictable storyline and 1 +39963 1911 Predictable storyline 1 +39964 1911 by-the-book scripting 2 +39965 1911 by-the-book 2 +39966 1911 is all but washed away by sumptuous ocean visuals and the cinematic stylings of director John Stockwell . 3 +39967 1911 is all but washed away by sumptuous ocean visuals and the cinematic stylings of director John Stockwell 3 +39968 1911 is all but 2 +39969 1911 washed away by sumptuous ocean visuals and the cinematic stylings of director John Stockwell 3 +39970 1911 washed away 1 +39971 1911 washed 2 +39972 1911 by sumptuous ocean visuals and the cinematic stylings of director John Stockwell 2 +39973 1911 sumptuous ocean visuals and the cinematic stylings of director John Stockwell 3 +39974 1911 sumptuous ocean visuals and 3 +39975 1911 sumptuous ocean visuals 3 +39976 1911 ocean visuals 3 +39977 1911 ocean 2 +39978 1911 the cinematic stylings of director John Stockwell 3 +39979 1911 the cinematic stylings 2 +39980 1911 cinematic stylings 2 +39981 1911 stylings 2 +39982 1911 of director John Stockwell 3 +39983 1911 director John Stockwell 2 +39984 1911 John Stockwell 2 +39985 1911 Stockwell 2 +39986 1912 At times , the movie looks genuinely pretty . 4 +39987 1912 , the movie looks genuinely pretty . 3 +39988 1912 the movie looks genuinely pretty . 4 +39989 1912 looks genuinely pretty . 3 +39990 1912 looks genuinely pretty 3 +39991 1912 genuinely pretty 3 +39992 1913 Warmed-over hash . 2 +39993 1913 Warmed-over 2 +39994 1913 hash . 2 +39995 1913 hash 1 +39996 1914 It was a dark and stormy night ... 2 +39997 1914 was a dark and stormy night ... 2 +39998 1914 was a dark and stormy night 1 +39999 1914 a dark and stormy night 2 +40000 1914 dark and stormy night 2 +40001 1914 dark and stormy 2 +40002 1914 dark and 2 +40003 1914 stormy 2 +40004 1915 Drowning 's too good for this sucker . 1 +40005 1915 Drowning 2 +40006 1915 's too good for this sucker . 2 +40007 1915 's too good for this sucker 2 +40008 1915 too good for this sucker 2 +40009 1915 good for this sucker 3 +40010 1915 for this sucker 2 +40011 1915 this sucker 1 +40012 1915 sucker 0 +40013 1916 A full experience , a love story and a murder mystery that expands into a meditation on the deep deceptions of innocence . 3 +40014 1916 A full experience , a love story and a murder mystery that expands into a meditation on the deep deceptions of innocence 3 +40015 1916 A full experience , 3 +40016 1916 A full experience 3 +40017 1916 full experience 2 +40018 1916 a love story and a murder mystery that expands into a meditation on the deep deceptions of innocence 3 +40019 1916 a love story and 3 +40020 1916 a murder mystery that expands into a meditation on the deep deceptions of innocence 3 +40021 1916 a murder mystery 2 +40022 1916 that expands into a meditation on the deep deceptions of innocence 3 +40023 1916 expands into a meditation on the deep deceptions of innocence 3 +40024 1916 expands 2 +40025 1916 into a meditation on the deep deceptions of innocence 2 +40026 1916 a meditation on the deep deceptions of innocence 3 +40027 1916 a meditation 2 +40028 1916 on the deep deceptions of innocence 3 +40029 1916 the deep deceptions of innocence 2 +40030 1916 the deep deceptions 2 +40031 1916 deep deceptions 1 +40032 1916 of innocence 2 +40033 1917 At times Auto Focus feels so distant you might as well be watching it through a telescope . 1 +40034 1917 Auto Focus feels so distant you might as well be watching it through a telescope . 1 +40035 1917 feels so distant you might as well be watching it through a telescope . 2 +40036 1917 feels so distant you might as well be watching it through a telescope 0 +40037 1917 so distant you might as well be watching it through a telescope 1 +40038 1917 so distant 1 +40039 1917 you might as well be watching it through a telescope 1 +40040 1917 might as well be watching it through a telescope 1 +40041 1917 be watching it through a telescope 2 +40042 1917 watching it through a telescope 2 +40043 1917 through a telescope 2 +40044 1917 a telescope 2 +40045 1917 telescope 2 +40046 1918 Rarely does such high-profile talent serve such literate material . 3 +40047 1918 does such high-profile talent serve such literate material . 2 +40048 1918 does such high-profile talent serve such literate material 3 +40049 1918 such high-profile talent serve such literate material 3 +40050 1918 such high-profile talent 4 +40051 1918 high-profile talent 4 +40052 1918 high-profile 3 +40053 1918 serve such literate material 2 +40054 1918 such literate material 2 +40055 1918 literate material 3 +40056 1919 For all its shoot-outs , fistfights , and car chases , this movie is a phlegmatic bore , so tedious it makes the silly spy vs. spy film The Sum of All Fears , starring Ben Affleck , seem downright Hitchcockian . 1 +40057 1919 For all its shoot-outs , fistfights , and car chases 2 +40058 1919 For all its shoot-outs 3 +40059 1919 all its shoot-outs 2 +40060 1919 its shoot-outs 2 +40061 1919 shoot-outs 2 +40062 1919 , fistfights , and car chases 2 +40063 1919 fistfights , and car chases 2 +40064 1919 fistfights , and car 2 +40065 1919 fistfights , and 2 +40066 1919 fistfights , 2 +40067 1919 fistfights 2 +40068 1919 , this movie is a phlegmatic bore , so tedious it makes the silly spy vs. spy film The Sum of All Fears , starring Ben Affleck , seem downright Hitchcockian . 0 +40069 1919 this movie is a phlegmatic bore , so tedious it makes the silly spy vs. spy film The Sum of All Fears , starring Ben Affleck , seem downright Hitchcockian . 0 +40070 1919 is a phlegmatic bore , so tedious it makes the silly spy vs. spy film The Sum of All Fears , starring Ben Affleck , seem downright Hitchcockian . 0 +40071 1919 is a phlegmatic bore , so tedious it makes the silly spy vs. spy film The Sum of All Fears , starring Ben Affleck , seem downright Hitchcockian 0 +40072 1919 a phlegmatic bore , so tedious it makes the silly spy vs. spy film The Sum of All Fears , starring Ben Affleck , seem downright Hitchcockian 0 +40073 1919 a phlegmatic bore , 0 +40074 1919 a phlegmatic bore 1 +40075 1919 phlegmatic bore 0 +40076 1919 phlegmatic 1 +40077 1919 so tedious it makes the silly spy vs. spy film The Sum of All Fears , starring Ben Affleck , seem downright Hitchcockian 0 +40078 1919 tedious it makes the silly spy vs. spy film The Sum of All Fears , starring Ben Affleck , seem downright Hitchcockian 1 +40079 1919 it makes the silly spy vs. spy film The Sum of All Fears , starring Ben Affleck , seem downright Hitchcockian 1 +40080 1919 makes the silly spy vs. spy film The Sum of All Fears , starring Ben Affleck , seem downright Hitchcockian 1 +40081 1919 the silly spy vs. spy film The Sum of All Fears , starring Ben Affleck , seem downright Hitchcockian 3 +40082 1919 the silly spy vs. spy film 2 +40083 1919 the silly spy 2 +40084 1919 silly spy 2 +40085 1919 vs. spy film 2 +40086 1919 vs. 2 +40087 1919 spy film 2 +40088 1919 The Sum of All Fears , starring Ben Affleck , seem downright Hitchcockian 2 +40089 1919 , starring Ben Affleck , seem downright Hitchcockian 3 +40090 1919 starring Ben Affleck , seem downright Hitchcockian 2 +40091 1919 starring Ben Affleck 2 +40092 1919 Ben Affleck 3 +40093 1919 Ben 2 +40094 1919 Affleck 2 +40095 1919 , seem downright Hitchcockian 2 +40096 1919 seem downright Hitchcockian 3 +40097 1919 downright Hitchcockian 3 +40098 1920 A true-blue delight . 4 +40099 1920 true-blue delight . 4 +40100 1920 true-blue 3 +40101 1920 delight . 3 +40102 1921 Kinnear 's performance is a career-defining revelation . 4 +40103 1921 Kinnear 's performance 2 +40104 1921 Kinnear 's 2 +40105 1921 is a career-defining revelation . 3 +40106 1921 is a career-defining revelation 4 +40107 1921 a career-defining revelation 4 +40108 1921 career-defining revelation 4 +40109 1921 career-defining 4 +40110 1922 Less about Shakespeare than the spawn of fools who saw Quentin Tarantino 's handful of raucous gangster films and branched out into their own pseudo-witty copycat interpretations . 2 +40111 1922 Less about Shakespeare than the spawn of fools who saw Quentin Tarantino 's handful of raucous gangster films and branched out into their own pseudo-witty copycat interpretations 0 +40112 1922 Less about Shakespeare than the spawn 2 +40113 1922 Less about Shakespeare 2 +40114 1922 about Shakespeare 2 +40115 1922 than the spawn 2 +40116 1922 the spawn 2 +40117 1922 spawn 2 +40118 1922 of fools who saw Quentin Tarantino 's handful of raucous gangster films and branched out into their own pseudo-witty copycat interpretations 0 +40119 1922 fools who saw Quentin Tarantino 's handful of raucous gangster films and branched out into their own pseudo-witty copycat interpretations 1 +40120 1922 fools 2 +40121 1922 who saw Quentin Tarantino 's handful of raucous gangster films and branched out into their own pseudo-witty copycat interpretations 2 +40122 1922 saw Quentin Tarantino 's handful of raucous gangster films and branched out into their own pseudo-witty copycat interpretations 1 +40123 1922 saw Quentin Tarantino 's handful of raucous gangster films and 2 +40124 1922 saw Quentin Tarantino 's handful of raucous gangster films 2 +40125 1922 Quentin Tarantino 's handful of raucous gangster films 2 +40126 1922 Quentin Tarantino 's handful 2 +40127 1922 handful 2 +40128 1922 of raucous gangster films 2 +40129 1922 raucous gangster films 2 +40130 1922 gangster films 2 +40131 1922 branched out into their own pseudo-witty copycat interpretations 1 +40132 1922 branched out 2 +40133 1922 branched 2 +40134 1922 into their own pseudo-witty copycat interpretations 2 +40135 1922 their own pseudo-witty copycat interpretations 1 +40136 1922 own pseudo-witty copycat interpretations 2 +40137 1922 pseudo-witty copycat interpretations 1 +40138 1922 pseudo-witty 2 +40139 1922 copycat interpretations 1 +40140 1922 interpretations 2 +40141 1923 Leaves us wondering less about its ideas and more about its characterization of Hitler and the contrived nature of its provocative conclusion . 1 +40142 1923 Leaves us wondering less about its ideas and more about its characterization of Hitler and the contrived nature of its provocative conclusion 1 +40143 1923 us wondering less about its ideas and more about its characterization of Hitler and the contrived nature of its provocative conclusion 2 +40144 1923 wondering less about its ideas and more about its characterization of Hitler and the contrived nature of its provocative conclusion 1 +40145 1923 less about its ideas and more about its characterization of Hitler and the contrived nature of its provocative conclusion 2 +40146 1923 about its ideas and more about its characterization of Hitler and the contrived nature of its provocative conclusion 2 +40147 1923 about its ideas and 1 +40148 1923 about its ideas 2 +40149 1923 its ideas 2 +40150 1923 more about its characterization of Hitler and the contrived nature of its provocative conclusion 2 +40151 1923 about its characterization of Hitler and the contrived nature of its provocative conclusion 2 +40152 1923 its characterization of Hitler and the contrived nature of its provocative conclusion 3 +40153 1923 its characterization of Hitler and 1 +40154 1923 its characterization of Hitler 2 +40155 1923 its characterization 2 +40156 1923 characterization 2 +40157 1923 of Hitler 2 +40158 1923 Hitler 1 +40159 1923 the contrived nature of its provocative conclusion 2 +40160 1923 the contrived nature 2 +40161 1923 contrived nature 2 +40162 1923 of its provocative conclusion 3 +40163 1923 its provocative conclusion 3 +40164 1923 provocative conclusion 2 +40165 1924 Far more enjoyable than its predecessor . 4 +40166 1924 more enjoyable than its predecessor . 3 +40167 1924 more enjoyable than its predecessor 3 +40168 1924 enjoyable than its predecessor 2 +40169 1925 It 's hard to fairly judge a film like RINGU when you 've seen the remake first . 2 +40170 1925 's hard to fairly judge a film like RINGU when you 've seen the remake first . 2 +40171 1925 's hard to fairly judge a film like RINGU when you 've seen the remake first 2 +40172 1925 hard to fairly judge a film like RINGU when you 've seen the remake first 2 +40173 1925 to fairly judge a film like RINGU when you 've seen the remake first 2 +40174 1925 fairly judge a film like RINGU when you 've seen the remake first 2 +40175 1925 judge a film like RINGU when you 've seen the remake first 2 +40176 1925 a film like RINGU when you 've seen the remake first 2 +40177 1925 a film like RINGU 2 +40178 1925 like RINGU 2 +40179 1925 RINGU 1 +40180 1925 when you 've seen the remake first 2 +40181 1925 you 've seen the remake first 2 +40182 1925 've seen the remake first 2 +40183 1925 seen the remake first 2 +40184 1925 seen the remake 2 +40185 1925 the remake 2 +40186 1926 It 's not hateful . 2 +40187 1926 's not hateful . 2 +40188 1926 's not hateful 2 +40189 1926 hateful 1 +40190 1927 The delicious trimmings ... arrive early and stay late , filling nearly every minute ... with a lighthearted glow , some impudent snickers , and a glorious dose of humankind 's liberating ability to triumph over a Scrooge or two . 4 +40191 1927 The delicious trimmings ... arrive early and stay late , filling nearly every minute ... with a lighthearted glow , some impudent snickers , and a glorious dose of humankind 's liberating ability to triumph over a Scrooge or two 4 +40192 1927 The delicious trimmings ... 3 +40193 1927 The delicious trimmings 3 +40194 1927 The delicious 3 +40195 1927 arrive early and stay late , filling nearly every minute ... with a lighthearted glow , some impudent snickers , and a glorious dose of humankind 's liberating ability to triumph over a Scrooge or two 3 +40196 1927 arrive early and stay late , 3 +40197 1927 arrive early and stay late 3 +40198 1927 arrive early and 2 +40199 1927 arrive early 3 +40200 1927 stay late 2 +40201 1927 filling nearly every minute ... with a lighthearted glow , some impudent snickers , and a glorious dose of humankind 's liberating ability to triumph over a Scrooge or two 3 +40202 1927 filling nearly every minute ... with a lighthearted glow , some impudent snickers , and a glorious dose of humankind 's liberating ability 3 +40203 1927 filling nearly every minute ... 3 +40204 1927 filling nearly every minute 2 +40205 1927 nearly every minute 2 +40206 1927 every minute 2 +40207 1927 with a lighthearted glow , some impudent snickers , and a glorious dose of humankind 's liberating ability 3 +40208 1927 a lighthearted glow , some impudent snickers , and a glorious dose of humankind 's liberating ability 3 +40209 1927 a lighthearted glow , some impudent snickers , and 2 +40210 1927 a lighthearted glow , some impudent snickers , 2 +40211 1927 a lighthearted glow , some impudent snickers 2 +40212 1927 a lighthearted glow , 3 +40213 1927 a lighthearted glow 3 +40214 1927 lighthearted glow 3 +40215 1927 lighthearted 3 +40216 1927 glow 3 +40217 1927 some impudent snickers 2 +40218 1927 impudent snickers 2 +40219 1927 impudent 1 +40220 1927 snickers 2 +40221 1927 a glorious dose of humankind 's liberating ability 3 +40222 1927 a glorious dose 4 +40223 1927 glorious dose 2 +40224 1927 of humankind 's liberating ability 3 +40225 1927 humankind 's liberating ability 3 +40226 1927 humankind 's 2 +40227 1927 humankind 2 +40228 1927 liberating ability 3 +40229 1927 to triumph over a Scrooge or two 3 +40230 1927 triumph over a Scrooge or two 3 +40231 1927 over a Scrooge or two 2 +40232 1927 a Scrooge or two 1 +40233 1927 Scrooge or two 2 +40234 1927 Scrooge or 2 +40235 1928 Needs more impressionistic cinematography and exhilarating point-of-view shots and fewer slow-motion ` grandeur ' shots and quick-cut edits that often detract from the athleticism . 1 +40236 1928 Needs more impressionistic cinematography and exhilarating point-of-view shots and fewer slow-motion ` grandeur ' shots and quick-cut edits that often detract from the athleticism 1 +40237 1928 Needs more impressionistic 1 +40238 1928 more impressionistic 2 +40239 1928 impressionistic 3 +40240 1928 cinematography and exhilarating point-of-view shots and fewer slow-motion ` grandeur ' shots and quick-cut edits that often detract from the athleticism 2 +40241 1928 cinematography and exhilarating point-of-view shots and fewer slow-motion ` grandeur ' shots and 3 +40242 1928 cinematography and exhilarating point-of-view shots and fewer slow-motion ` grandeur ' shots 3 +40243 1928 cinematography and exhilarating point-of-view shots and 3 +40244 1928 cinematography and exhilarating point-of-view shots 3 +40245 1928 cinematography and exhilarating 3 +40246 1928 cinematography and 2 +40247 1928 cinematography 2 +40248 1928 point-of-view shots 2 +40249 1928 point-of-view 2 +40250 1928 fewer slow-motion ` grandeur ' shots 2 +40251 1928 fewer 2 +40252 1928 slow-motion ` grandeur ' shots 2 +40253 1928 slow-motion 2 +40254 1928 ` grandeur ' shots 3 +40255 1928 grandeur ' shots 3 +40256 1928 ' shots 2 +40257 1928 quick-cut edits that often detract from the athleticism 1 +40258 1928 quick-cut edits 1 +40259 1928 quick-cut 2 +40260 1928 edits 3 +40261 1928 that often detract from the athleticism 2 +40262 1928 often detract from the athleticism 2 +40263 1928 detract from the athleticism 1 +40264 1928 detract 2 +40265 1928 from the athleticism 2 +40266 1928 the athleticism 2 +40267 1928 athleticism 2 +40268 1929 With a large cast representing a broad cross-section , Tavernier 's film bounds along with the rat-a-tat energy of `` His Girl Friday , '' maintaining a light touch while tackling serious themes . 3 +40269 1929 With a large cast representing a broad cross-section 2 +40270 1929 a large cast representing a broad cross-section 2 +40271 1929 a large cast 2 +40272 1929 large cast 3 +40273 1929 large 2 +40274 1929 representing a broad cross-section 2 +40275 1929 representing 2 +40276 1929 a broad cross-section 2 +40277 1929 broad cross-section 3 +40278 1929 cross-section 2 +40279 1929 , Tavernier 's film bounds along with the rat-a-tat energy of `` His Girl Friday , '' maintaining a light touch while tackling serious themes . 3 +40280 1929 Tavernier 's film bounds along with the rat-a-tat energy of `` His Girl Friday , '' maintaining a light touch while tackling serious themes . 4 +40281 1929 Tavernier 's film 2 +40282 1929 Tavernier 's 2 +40283 1929 Tavernier 2 +40284 1929 bounds along with the rat-a-tat energy of `` His Girl Friday , '' maintaining a light touch while tackling serious themes . 3 +40285 1929 bounds along with the rat-a-tat energy of `` His Girl Friday , '' maintaining a light touch while tackling serious themes 4 +40286 1929 bounds along 2 +40287 1929 bounds 2 +40288 1929 with the rat-a-tat energy of `` His Girl Friday , '' maintaining a light touch while tackling serious themes 3 +40289 1929 the rat-a-tat energy of `` His Girl Friday , '' maintaining a light touch while tackling serious themes 3 +40290 1929 the rat-a-tat energy 3 +40291 1929 rat-a-tat energy 2 +40292 1929 rat-a-tat 2 +40293 1929 of `` His Girl Friday , '' maintaining a light touch while tackling serious themes 3 +40294 1929 `` His Girl Friday , '' maintaining a light touch while tackling serious themes 2 +40295 1929 His Girl Friday , '' maintaining a light touch while tackling serious themes 3 +40296 1929 His Girl Friday , '' 2 +40297 1929 His Girl Friday , 2 +40298 1929 His Girl Friday 2 +40299 1929 Girl Friday 2 +40300 1929 maintaining a light touch while tackling serious themes 2 +40301 1929 maintaining a light touch 3 +40302 1929 a light touch 3 +40303 1929 light touch 2 +40304 1929 while tackling serious themes 2 +40305 1929 tackling serious themes 3 +40306 1929 serious themes 2 +40307 1930 One of the most gloriously unsubtle and adrenalized extreme shockers since The Evil Dead . 3 +40308 1930 One of the most gloriously unsubtle and adrenalized extreme 3 +40309 1930 of the most gloriously unsubtle and adrenalized extreme 3 +40310 1930 the most gloriously unsubtle and adrenalized extreme 4 +40311 1930 most gloriously unsubtle and adrenalized extreme 3 +40312 1930 most gloriously unsubtle and adrenalized 2 +40313 1930 most gloriously unsubtle and 2 +40314 1930 most gloriously unsubtle 2 +40315 1930 gloriously unsubtle 3 +40316 1930 gloriously 3 +40317 1930 unsubtle 1 +40318 1930 adrenalized 3 +40319 1930 shockers since The Evil Dead . 2 +40320 1930 shockers since The Evil Dead 3 +40321 1930 shockers 2 +40322 1930 since The Evil Dead 1 +40323 1930 The Evil Dead 2 +40324 1930 Evil Dead 2 +40325 1931 Lisa Rinzler 's cinematography may be lovely , but Love Liza 's tale itself virtually collapses into an inhalant blackout , maintaining consciousness just long enough to achieve callow pretension . 1 +40326 1931 Lisa Rinzler 's cinematography may be lovely , but Love Liza 's tale itself virtually collapses into an inhalant blackout , maintaining consciousness just long enough to achieve callow pretension 1 +40327 1931 Lisa Rinzler 's cinematography may be lovely , but 2 +40328 1931 Lisa Rinzler 's cinematography may be lovely , 3 +40329 1931 Lisa Rinzler 's cinematography may be lovely 3 +40330 1931 Lisa Rinzler 's cinematography 2 +40331 1931 Lisa Rinzler 's 2 +40332 1931 Lisa 2 +40333 1931 Rinzler 's 2 +40334 1931 Rinzler 2 +40335 1931 may be lovely 3 +40336 1931 be lovely 3 +40337 1931 Love Liza 's tale itself virtually collapses into an inhalant blackout , maintaining consciousness just long enough to achieve callow pretension 2 +40338 1931 Love Liza 's tale 3 +40339 1931 Love Liza 's 3 +40340 1931 Liza 's 2 +40341 1931 Liza 2 +40342 1931 itself virtually collapses into an inhalant blackout , maintaining consciousness just long enough to achieve callow pretension 1 +40343 1931 virtually collapses into an inhalant blackout , maintaining consciousness just long enough to achieve callow pretension 1 +40344 1931 collapses into an inhalant blackout , maintaining consciousness just long enough to achieve callow pretension 1 +40345 1931 collapses into an inhalant blackout , 2 +40346 1931 collapses into an inhalant blackout 0 +40347 1931 collapses 1 +40348 1931 into an inhalant blackout 1 +40349 1931 an inhalant blackout 1 +40350 1931 inhalant blackout 2 +40351 1931 inhalant 2 +40352 1931 blackout 2 +40353 1931 maintaining consciousness just long enough to achieve callow pretension 1 +40354 1931 maintaining consciousness just long enough 1 +40355 1931 maintaining consciousness just 2 +40356 1931 maintaining consciousness 2 +40357 1931 long enough 2 +40358 1931 to achieve callow pretension 2 +40359 1931 achieve callow pretension 2 +40360 1931 achieve 3 +40361 1931 callow pretension 1 +40362 1931 callow 1 +40363 1931 pretension 2 +40364 1932 It 's provocative stuff , but the speculative effort is hampered by Taylor 's cartoonish performance and the film 's ill-considered notion that Hitler 's destiny was shaped by the most random of chances . 1 +40365 1932 It 's provocative stuff , but the speculative effort is hampered by Taylor 's cartoonish performance and the film 's ill-considered notion that Hitler 's destiny was shaped by the most random of chances 1 +40366 1932 It 's provocative stuff , but 2 +40367 1932 It 's provocative stuff , 3 +40368 1932 It 's provocative stuff 3 +40369 1932 's provocative stuff 3 +40370 1932 provocative stuff 3 +40371 1932 the speculative effort is hampered by Taylor 's cartoonish performance and the film 's ill-considered notion that Hitler 's destiny was shaped by the most random of chances 1 +40372 1932 the speculative effort 2 +40373 1932 speculative effort 3 +40374 1932 speculative 2 +40375 1932 is hampered by Taylor 's cartoonish performance and the film 's ill-considered notion that Hitler 's destiny was shaped by the most random of chances 1 +40376 1932 hampered by Taylor 's cartoonish performance and the film 's ill-considered notion that Hitler 's destiny was shaped by the most random of chances 1 +40377 1932 hampered by Taylor 's cartoonish performance and the film 's ill-considered notion 0 +40378 1932 by Taylor 's cartoonish performance and the film 's ill-considered notion 1 +40379 1932 Taylor 's cartoonish performance and the film 's ill-considered notion 1 +40380 1932 Taylor 's cartoonish performance and 1 +40381 1932 Taylor 's cartoonish performance 1 +40382 1932 Taylor 's 2 +40383 1932 Taylor 2 +40384 1932 cartoonish performance 1 +40385 1932 the film 's ill-considered notion 1 +40386 1932 ill-considered notion 1 +40387 1932 ill-considered 1 +40388 1932 that Hitler 's destiny was shaped by the most random of chances 1 +40389 1932 Hitler 's destiny was shaped by the most random of chances 2 +40390 1932 Hitler 's destiny 1 +40391 1932 Hitler 's 1 +40392 1932 was shaped by the most random of chances 2 +40393 1932 shaped by the most random of chances 2 +40394 1932 by the most random of chances 1 +40395 1932 the most random of chances 2 +40396 1932 the most random 2 +40397 1932 most random 2 +40398 1932 of chances 2 +40399 1932 chances 2 +40400 1933 The Bourne Identity should n't be half as entertaining as it is , but director Doug Liman and his colleagues have managed to pack it with enough action to satisfy the boom-bam crowd without a huge sacrifice of character and mood . 3 +40401 1933 The Bourne Identity should n't be half as entertaining as it is , but director Doug Liman and his colleagues have managed to pack it with enough action to satisfy the boom-bam crowd without a huge sacrifice of character and mood 3 +40402 1933 The Bourne Identity should n't be half as entertaining as it is , but 3 +40403 1933 The Bourne Identity should n't be half as entertaining as it is , 3 +40404 1933 The Bourne Identity should n't be half as entertaining as it is 3 +40405 1933 The Bourne Identity 2 +40406 1933 Bourne Identity 2 +40407 1933 should n't be half as entertaining as it is 2 +40408 1933 should n't 2 +40409 1933 be half as entertaining as it is 3 +40410 1933 half as entertaining as it is 2 +40411 1933 half as entertaining 2 +40412 1933 as entertaining 2 +40413 1933 director Doug Liman and his colleagues have managed to pack it with enough action to satisfy the boom-bam crowd without a huge sacrifice of character and mood 3 +40414 1933 director Doug Liman and his colleagues 2 +40415 1933 director Doug Liman and 2 +40416 1933 director Doug Liman 2 +40417 1933 Doug Liman 2 +40418 1933 Doug 2 +40419 1933 Liman 2 +40420 1933 his colleagues 2 +40421 1933 colleagues 2 +40422 1933 have managed to pack it with enough action to satisfy the boom-bam crowd without a huge sacrifice of character and mood 3 +40423 1933 managed to pack it with enough action to satisfy the boom-bam crowd without a huge sacrifice of character and mood 3 +40424 1933 managed 2 +40425 1933 to pack it with enough action to satisfy the boom-bam crowd without a huge sacrifice of character and mood 2 +40426 1933 pack it with enough action to satisfy the boom-bam crowd without a huge sacrifice of character and mood 3 +40427 1933 pack it with enough action 2 +40428 1933 pack it 2 +40429 1933 with enough action 3 +40430 1933 enough action 2 +40431 1933 to satisfy the boom-bam crowd without a huge sacrifice of character and mood 3 +40432 1933 satisfy the boom-bam crowd without a huge sacrifice of character and mood 3 +40433 1933 satisfy the boom-bam crowd 3 +40434 1933 satisfy 4 +40435 1933 the boom-bam crowd 2 +40436 1933 boom-bam crowd 2 +40437 1933 boom-bam 2 +40438 1933 without a huge sacrifice of character and mood 2 +40439 1933 a huge sacrifice of character and mood 1 +40440 1933 a huge sacrifice 3 +40441 1933 huge sacrifice 1 +40442 1933 sacrifice 2 +40443 1933 of character and mood 2 +40444 1933 character and mood 2 +40445 1934 In -LRB- screenwriter -RRB- Charlie Kaufman 's world , truth and fiction are equally strange , and his for the taking . 2 +40446 1934 In -LRB- screenwriter -RRB- Charlie Kaufman 's world 2 +40447 1934 -LRB- screenwriter -RRB- Charlie Kaufman 's world 2 +40448 1934 screenwriter -RRB- Charlie Kaufman 's world 2 +40449 1934 -RRB- Charlie Kaufman 's world 2 +40450 1934 Charlie Kaufman 's world 2 +40451 1934 Kaufman 's world 2 +40452 1934 Kaufman 's 2 +40453 1934 , truth and fiction are equally strange , and his for the taking . 2 +40454 1934 truth and fiction are equally strange , and his for the taking . 3 +40455 1934 truth and fiction 2 +40456 1934 truth and 2 +40457 1934 are equally strange , and his for the taking . 2 +40458 1934 are equally strange , and his for the taking 2 +40459 1934 are equally strange , and 2 +40460 1934 are equally strange , 2 +40461 1934 are equally strange 1 +40462 1934 equally strange 2 +40463 1934 his for the taking 2 +40464 1934 for the taking 2 +40465 1934 the taking 2 +40466 1935 ... a pretentious mess ... 0 +40467 1935 a pretentious mess ... 0 +40468 1935 a pretentious 2 +40469 1935 mess ... 1 +40470 1936 -LRB- Gulpilil -RRB- is a commanding screen presence , and his character 's abundant humanism makes him the film 's moral compass . 3 +40471 1936 -LRB- Gulpilil -RRB- is a commanding screen presence , and his character 's abundant humanism makes him the film 's moral compass 3 +40472 1936 -LRB- Gulpilil -RRB- is a commanding screen presence , and 3 +40473 1936 -LRB- Gulpilil -RRB- is a commanding screen presence , 3 +40474 1936 -LRB- Gulpilil -RRB- is a commanding screen presence 3 +40475 1936 -LRB- Gulpilil -RRB- 2 +40476 1936 Gulpilil -RRB- 2 +40477 1936 Gulpilil 2 +40478 1936 is a commanding screen presence 3 +40479 1936 a commanding screen presence 4 +40480 1936 commanding screen presence 3 +40481 1936 commanding 3 +40482 1936 screen presence 3 +40483 1936 his character 's abundant humanism makes him the film 's moral compass 3 +40484 1936 his character 's abundant humanism 2 +40485 1936 abundant humanism 3 +40486 1936 abundant 3 +40487 1936 humanism 3 +40488 1936 makes him the film 's moral compass 3 +40489 1936 him the film 's moral compass 2 +40490 1936 the film 's moral compass 2 +40491 1936 moral compass 2 +40492 1936 compass 2 +40493 1937 The modern-day characters are nowhere near as vivid as the 19th-century ones . 1 +40494 1937 The modern-day characters 2 +40495 1937 modern-day characters 2 +40496 1937 modern-day 2 +40497 1937 are nowhere near as vivid as the 19th-century ones . 2 +40498 1937 are nowhere near as vivid as the 19th-century ones 1 +40499 1937 are nowhere near 1 +40500 1937 as vivid as the 19th-century ones 2 +40501 1937 vivid as the 19th-century ones 3 +40502 1937 as the 19th-century ones 2 +40503 1937 the 19th-century ones 2 +40504 1937 19th-century ones 2 +40505 1937 19th-century 2 +40506 1938 -LRB- At least -RRB- Moore is a real charmer . 3 +40507 1938 -LRB- At least -RRB- Moore 2 +40508 1938 -LRB- At least -RRB- 2 +40509 1938 At least -RRB- 2 +40510 1938 is a real charmer . 3 +40511 1938 is a real charmer 3 +40512 1938 a real charmer 4 +40513 1938 real charmer 2 +40514 1939 ... there 's enough cool fun here to warm the hearts of animation enthusiasts of all ages . 3 +40515 1939 there 's enough cool fun here to warm the hearts of animation enthusiasts of all ages . 3 +40516 1939 's enough cool fun here to warm the hearts of animation enthusiasts of all ages . 4 +40517 1939 's enough cool fun here to warm the hearts of animation enthusiasts of all ages 4 +40518 1939 enough cool fun here to warm the hearts of animation enthusiasts of all ages 3 +40519 1939 enough cool fun here 3 +40520 1939 enough cool fun 4 +40521 1939 enough cool 3 +40522 1939 to warm the hearts of animation enthusiasts of all ages 4 +40523 1939 warm the hearts of animation enthusiasts of all ages 3 +40524 1939 the hearts of animation enthusiasts of all ages 3 +40525 1939 the hearts 2 +40526 1939 of animation enthusiasts of all ages 3 +40527 1939 animation enthusiasts of all ages 3 +40528 1939 animation enthusiasts 3 +40529 1939 enthusiasts 2 +40530 1939 of all ages 3 +40531 1939 all ages 2 +40532 1940 All Analyze That proves is that there is really only one movie 's worth of decent gags to be gleaned from the premise . 2 +40533 1940 All Analyze That proves 2 +40534 1940 All Analyze 2 +40535 1940 That proves 2 +40536 1940 is that there is really only one movie 's worth of decent gags to be gleaned from the premise . 1 +40537 1940 is that there is really only one movie 's worth of decent gags to be gleaned from the premise 2 +40538 1940 that there is really only one movie 's worth of decent gags to be gleaned from the premise 2 +40539 1940 there is really only one movie 's worth of decent gags to be gleaned from the premise 1 +40540 1940 is really only one movie 's worth of decent gags to be gleaned from the premise 1 +40541 1940 is really only one movie 's worth of decent gags 3 +40542 1940 only one movie 's worth of decent gags 2 +40543 1940 only one movie 's worth 2 +40544 1940 only one movie 's 2 +40545 1940 one movie 's 2 +40546 1940 of decent gags 3 +40547 1940 decent gags 3 +40548 1940 to be gleaned from the premise 2 +40549 1940 be gleaned from the premise 2 +40550 1940 gleaned from the premise 2 +40551 1940 gleaned 2 +40552 1940 from the premise 2 +40553 1941 A thriller without a lot of thrills . 0 +40554 1941 A thriller without a lot of thrills 1 +40555 1941 A thriller without a lot 2 +40556 1941 without a lot 2 +40557 1941 of thrills 2 +40558 1942 Adaptation 's success in engaging the audience in the travails of creating a screenplay is extraordinary . 4 +40559 1942 Adaptation 's success in engaging the audience in the travails of creating a screenplay 3 +40560 1942 Adaptation 's success 3 +40561 1942 Adaptation 's 2 +40562 1942 in engaging the audience in the travails of creating a screenplay 3 +40563 1942 engaging the audience in the travails of creating a screenplay 3 +40564 1942 the audience in the travails of creating a screenplay 3 +40565 1942 in the travails of creating a screenplay 1 +40566 1942 the travails of creating a screenplay 2 +40567 1942 of creating a screenplay 2 +40568 1942 creating a screenplay 2 +40569 1942 is extraordinary . 4 +40570 1942 is extraordinary 4 +40571 1943 You never know where Changing Lanes is going to take you but it 's a heck of a ride . 3 +40572 1943 You never know where Changing Lanes is going to take you but it 's a heck of a ride 3 +40573 1943 You never know where Changing Lanes is going to take you but 2 +40574 1943 You never know where Changing Lanes is going to take you 4 +40575 1943 never know where Changing Lanes is going to take you 2 +40576 1943 know where Changing Lanes is going to take you 2 +40577 1943 where Changing Lanes is going to take you 2 +40578 1943 Changing Lanes is going to take you 2 +40579 1943 is going to take you 2 +40580 1943 going to take you 3 +40581 1943 to take you 2 +40582 1943 take you 2 +40583 1943 it 's a heck of a ride 4 +40584 1943 's a heck of a ride 4 +40585 1943 a heck of a ride 3 +40586 1943 a heck 2 +40587 1943 heck 2 +40588 1943 of a ride 2 +40589 1944 It is sentimental but feels free to offend , is analytical and then surrenders to the illogic of its characters , is about grief and yet permits laughter . 4 +40590 1944 is sentimental but feels free to offend , is analytical and then surrenders to the illogic of its characters , is about grief and yet permits laughter . 3 +40591 1944 is sentimental but feels free to offend , is analytical and then surrenders to the illogic of its characters , is about grief and yet permits laughter 3 +40592 1944 is sentimental but feels free to offend , is analytical and then surrenders to the illogic of its characters , is about grief and 3 +40593 1944 is sentimental but feels free to offend , is analytical and then surrenders to the illogic of its characters , is about grief 2 +40594 1944 is sentimental but feels free to offend , is analytical and then surrenders to the illogic of its characters , 2 +40595 1944 is sentimental but feels free to offend , is analytical and then surrenders to the illogic of its characters 1 +40596 1944 is sentimental but feels free to offend , is analytical and 2 +40597 1944 is sentimental but feels free to offend , is analytical 2 +40598 1944 is sentimental but feels free to offend , 2 +40599 1944 is sentimental but feels free to offend 2 +40600 1944 is sentimental but 2 +40601 1944 is sentimental 3 +40602 1944 feels free to offend 1 +40603 1944 free to offend 2 +40604 1944 to offend 1 +40605 1944 offend 1 +40606 1944 is analytical 3 +40607 1944 analytical 2 +40608 1944 then surrenders to the illogic of its characters 2 +40609 1944 surrenders to the illogic of its characters 2 +40610 1944 surrenders 2 +40611 1944 to the illogic of its characters 1 +40612 1944 the illogic of its characters 1 +40613 1944 the illogic 2 +40614 1944 illogic 1 +40615 1944 of its characters 2 +40616 1944 is about grief 1 +40617 1944 about grief 2 +40618 1944 yet permits laughter 3 +40619 1944 permits laughter 3 +40620 1944 permits 2 +40621 1945 As Antonia is assimilated into this newfangled community , the film settles in and becomes compulsively watchable in a guilty-pleasure , daytime-drama sort of fashion . 3 +40622 1945 As Antonia is assimilated into this newfangled community 2 +40623 1945 Antonia is assimilated into this newfangled community 2 +40624 1945 Antonia 2 +40625 1945 is assimilated into this newfangled community 2 +40626 1945 assimilated into this newfangled community 2 +40627 1945 assimilated 2 +40628 1945 into this newfangled community 2 +40629 1945 this newfangled community 2 +40630 1945 newfangled community 2 +40631 1945 newfangled 2 +40632 1945 , the film settles in and becomes compulsively watchable in a guilty-pleasure , daytime-drama sort of fashion . 3 +40633 1945 the film settles in and becomes compulsively watchable in a guilty-pleasure , daytime-drama sort of fashion . 3 +40634 1945 settles in and becomes compulsively watchable in a guilty-pleasure , daytime-drama sort of fashion . 3 +40635 1945 settles in and becomes compulsively watchable in a guilty-pleasure , daytime-drama sort of fashion 4 +40636 1945 settles in and 2 +40637 1945 settles in 2 +40638 1945 becomes compulsively watchable in a guilty-pleasure , daytime-drama sort of fashion 4 +40639 1945 becomes compulsively watchable 4 +40640 1945 compulsively watchable 3 +40641 1945 compulsively 2 +40642 1945 in a guilty-pleasure , daytime-drama sort of fashion 3 +40643 1945 a guilty-pleasure , daytime-drama sort of fashion 3 +40644 1945 a guilty-pleasure , daytime-drama sort 3 +40645 1945 guilty-pleasure , daytime-drama sort 3 +40646 1945 guilty-pleasure 3 +40647 1945 , daytime-drama sort 2 +40648 1945 daytime-drama sort 2 +40649 1945 daytime-drama 2 +40650 1945 of fashion 2 +40651 1945 fashion 2 +40652 1946 Enigma lacks it . 1 +40653 1946 Enigma 2 +40654 1946 lacks it . 1 +40655 1946 lacks it 1 +40656 1947 Poetic , heartbreaking . 3 +40657 1947 Poetic , heartbreaking 4 +40658 1947 Poetic , 3 +40659 1947 heartbreaking 2 +40660 1948 Real Women may have many agendas , but it also will win you over , in a big way . 4 +40661 1948 Real Women may have many agendas , but it also will win you over , in a big way 4 +40662 1948 Real Women may have many agendas , but 2 +40663 1948 Real Women may have many agendas , 2 +40664 1948 Real Women may have many agendas 2 +40665 1948 Real Women 2 +40666 1948 may have many agendas 3 +40667 1948 have many agendas 2 +40668 1948 many agendas 2 +40669 1948 agendas 2 +40670 1948 it also will win you over , in a big way 4 +40671 1948 also will win you over , in a big way 3 +40672 1948 will win you over , in a big way 3 +40673 1948 win you over , in a big way 4 +40674 1948 win you over , 3 +40675 1948 win you over 3 +40676 1948 win you 2 +40677 1948 in a big way 3 +40678 1948 a big way 2 +40679 1948 big way 2 +40680 1949 And it is . 3 +40681 1949 it is . 2 +40682 1950 In his determination to lighten the heavy subject matter , Silberling also , to a certain extent , trivializes the movie with too many nervous gags and pratfalls . 2 +40683 1950 In his determination to lighten the heavy subject matter 3 +40684 1950 his determination to lighten the heavy subject matter 2 +40685 1950 determination to lighten the heavy subject matter 2 +40686 1950 determination 2 +40687 1950 to lighten the heavy subject matter 2 +40688 1950 lighten the heavy subject matter 2 +40689 1950 lighten 2 +40690 1950 the heavy subject matter 2 +40691 1950 heavy subject matter 2 +40692 1950 , Silberling also , to a certain extent , trivializes the movie with too many nervous gags and pratfalls . 1 +40693 1950 Silberling also , to a certain extent , trivializes the movie with too many nervous gags and pratfalls . 1 +40694 1950 Silberling also , to a certain extent 2 +40695 1950 Silberling also , 2 +40696 1950 Silberling also 2 +40697 1950 Silberling 2 +40698 1950 to a certain extent 2 +40699 1950 a certain extent 2 +40700 1950 certain extent 2 +40701 1950 , trivializes the movie with too many nervous gags and pratfalls . 1 +40702 1950 trivializes the movie with too many nervous gags and pratfalls . 1 +40703 1950 trivializes the movie with too many nervous gags and pratfalls 2 +40704 1950 trivializes the movie with too many nervous gags and 1 +40705 1950 trivializes the movie with too many nervous gags 1 +40706 1950 trivializes the movie 2 +40707 1950 trivializes 2 +40708 1950 with too many nervous gags 2 +40709 1950 too many nervous gags 1 +40710 1950 nervous gags 1 +40711 1950 pratfalls 2 +40712 1951 Astonishing is n't the word -- neither is incompetent , incoherent or just plain crap . 0 +40713 1951 Astonishing is n't the word -- neither is incompetent , incoherent or just plain crap 0 +40714 1951 Astonishing is n't the word -- 3 +40715 1951 Astonishing is n't the word 2 +40716 1951 is n't the word 2 +40717 1951 the word 2 +40718 1951 neither is incompetent , incoherent or just plain crap 1 +40719 1951 is incompetent , incoherent or just plain crap 1 +40720 1951 incompetent , incoherent or just plain crap 0 +40721 1951 incompetent , incoherent or 1 +40722 1951 incompetent , incoherent 2 +40723 1951 incompetent , 1 +40724 1951 just plain crap 0 +40725 1951 plain crap 0 +40726 1952 The film did n't convince me that Calvin Jr. 's Barbershop represents some sort of beacon of hope in the middle of Chicago 's South Side . 1 +40727 1952 did n't convince me that Calvin Jr. 's Barbershop represents some sort of beacon of hope in the middle of Chicago 's South Side . 1 +40728 1952 did n't convince me that Calvin Jr. 's Barbershop represents some sort of beacon of hope in the middle of Chicago 's South Side 1 +40729 1952 convince me that Calvin Jr. 's Barbershop represents some sort of beacon of hope in the middle of Chicago 's South Side 2 +40730 1952 convince me 2 +40731 1952 convince 2 +40732 1952 that Calvin Jr. 's Barbershop represents some sort of beacon of hope in the middle of Chicago 's South Side 3 +40733 1952 Calvin Jr. 's Barbershop represents some sort of beacon of hope in the middle of Chicago 's South Side 3 +40734 1952 Calvin Jr. 's Barbershop 2 +40735 1952 Calvin Jr. 's 2 +40736 1952 Calvin 2 +40737 1952 Jr. 's 2 +40738 1952 Jr. 2 +40739 1952 represents some sort of beacon of hope in the middle of Chicago 's South Side 3 +40740 1952 represents some sort of beacon of hope 2 +40741 1952 some sort of beacon of hope 3 +40742 1952 of beacon of hope 2 +40743 1952 beacon of hope 3 +40744 1952 of hope 3 +40745 1952 in the middle of Chicago 's South Side 2 +40746 1952 the middle of Chicago 's South Side 2 +40747 1952 of Chicago 's South Side 2 +40748 1952 Chicago 's South Side 2 +40749 1952 Chicago 's 2 +40750 1952 South Side 2 +40751 1953 Anyone else who may , for whatever reason , be thinking about going to see this movie is hereby given fair warning . 1 +40752 1953 Anyone else who may , for whatever reason , be thinking about going to see this movie 0 +40753 1953 else who may , for whatever reason , be thinking about going to see this movie 1 +40754 1953 else who 2 +40755 1953 may , for whatever reason , be thinking about going to see this movie 2 +40756 1953 may , for whatever reason , 2 +40757 1953 may , for whatever reason 2 +40758 1953 may , 2 +40759 1953 for whatever reason 2 +40760 1953 whatever reason 2 +40761 1953 be thinking about going to see this movie 3 +40762 1953 thinking about going to see this movie 3 +40763 1953 about going to see this movie 2 +40764 1953 going to see this movie 2 +40765 1953 to see this movie 2 +40766 1953 is hereby given fair warning . 1 +40767 1953 is hereby given fair warning 2 +40768 1953 is hereby 2 +40769 1953 hereby 2 +40770 1953 given fair warning 1 +40771 1953 fair warning 2 +40772 1953 warning 2 +40773 1954 An edifying glimpse into the wit and revolutionary spirit of these performers and their era . 3 +40774 1954 An edifying glimpse into the wit and revolutionary spirit of these performers and their era 3 +40775 1954 An edifying glimpse 2 +40776 1954 edifying glimpse 2 +40777 1954 edifying 2 +40778 1954 glimpse 2 +40779 1954 into the wit and revolutionary spirit of these performers and their era 2 +40780 1954 the wit and revolutionary spirit of these performers and their era 2 +40781 1954 the wit and revolutionary spirit 3 +40782 1954 wit and revolutionary spirit 2 +40783 1954 and revolutionary spirit 3 +40784 1954 revolutionary spirit 3 +40785 1954 of these performers and their era 2 +40786 1954 these performers and their era 2 +40787 1954 these performers and 2 +40788 1954 these performers 2 +40789 1954 their era 2 +40790 1955 ... about as exciting to watch as two last-place basketball teams playing one another on the final day of the season . 0 +40791 1955 about as exciting to watch as two last-place basketball teams playing one another on the final day of the season . 0 +40792 1955 about as exciting to watch as two last-place basketball teams playing one another on the final day of the season 0 +40793 1955 about as exciting to watch as two last-place basketball teams 0 +40794 1955 as exciting to watch as two last-place basketball teams 0 +40795 1955 as exciting to watch as two last-place basketball 1 +40796 1955 exciting to watch as two last-place basketball 1 +40797 1955 to watch as two last-place basketball 2 +40798 1955 watch as two last-place basketball 2 +40799 1955 as two last-place basketball 2 +40800 1955 two last-place basketball 2 +40801 1955 last-place basketball 1 +40802 1955 last-place 2 +40803 1955 basketball 2 +40804 1955 teams 2 +40805 1955 playing one another on the final day of the season 2 +40806 1955 playing one another 2 +40807 1955 on the final day of the season 2 +40808 1955 the final day of the season 3 +40809 1955 the final day 2 +40810 1955 final day 2 +40811 1955 of the season 2 +40812 1956 Both Grant and Hoult carry the movie because they are believable as people -- flawed , assured of the wrong things , and scared to admit how much they may really need the company of others . 3 +40813 1956 Both Grant and Hoult 2 +40814 1956 Grant and Hoult 2 +40815 1956 Grant and 2 +40816 1956 Hoult 2 +40817 1956 carry the movie because they are believable as people -- flawed , assured of the wrong things , and scared to admit how much they may really need the company of others . 3 +40818 1956 carry the movie because they are believable as people -- flawed , assured of the wrong things , and scared to admit how much they may really need the company of others 4 +40819 1956 carry the movie 3 +40820 1956 because they are believable as people -- flawed , assured of the wrong things , and scared to admit how much they may really need the company of others 2 +40821 1956 they are believable as people -- flawed , assured of the wrong things , and scared to admit how much they may really need the company of others 3 +40822 1956 are believable as people -- flawed , assured of the wrong things , and scared to admit how much they may really need the company of others 2 +40823 1956 are believable as people -- 2 +40824 1956 are believable as people 3 +40825 1956 believable as people 2 +40826 1956 as people 2 +40827 1956 flawed , assured of the wrong things , and scared to admit how much they may really need the company of others 2 +40828 1956 , assured of the wrong things , and scared to admit how much they may really need the company of others 1 +40829 1956 assured of the wrong things , and scared to admit how much they may really need the company of others 2 +40830 1956 assured of the wrong things 3 +40831 1956 of the wrong things 2 +40832 1956 the wrong things 1 +40833 1956 wrong things 1 +40834 1956 , and scared to admit how much they may really need the company of others 2 +40835 1956 scared to admit how much they may really need the company of others 2 +40836 1956 scared 2 +40837 1956 to admit how much they may really need the company of others 2 +40838 1956 admit how much they may really need the company of others 2 +40839 1956 how much they may really need the company of others 2 +40840 1956 they may really need the company of others 2 +40841 1956 may really need the company of others 1 +40842 1956 may really 2 +40843 1956 need the company of others 2 +40844 1956 the company of others 2 +40845 1956 the company 2 +40846 1956 of others 2 +40847 1957 Busy urban comedy is clearly not Zhang 's forte , his directorial touch is neither light nor magical enough to bring off this kind of whimsy . 1 +40848 1957 Busy urban comedy is clearly not Zhang 's forte 0 +40849 1957 urban comedy is clearly not Zhang 's forte 1 +40850 1957 urban comedy 3 +40851 1957 is clearly not Zhang 's forte 1 +40852 1957 is clearly 2 +40853 1957 not Zhang 's forte 1 +40854 1957 Zhang 's forte 2 +40855 1957 Zhang 's 2 +40856 1957 Zhang 2 +40857 1957 forte 2 +40858 1957 , his directorial touch is neither light nor magical enough to bring off this kind of whimsy . 1 +40859 1957 his directorial touch is neither light nor magical enough to bring off this kind of whimsy . 2 +40860 1957 his directorial touch 2 +40861 1957 directorial touch 3 +40862 1957 is neither light nor magical enough to bring off this kind of whimsy . 1 +40863 1957 is neither light nor magical enough to bring off this kind of whimsy 2 +40864 1957 neither light nor magical enough to bring off this kind of whimsy 1 +40865 1957 light nor magical enough to bring off this kind of whimsy 1 +40866 1957 light nor 2 +40867 1957 magical enough to bring off this kind of whimsy 3 +40868 1957 magical enough 3 +40869 1957 to bring off this kind of whimsy 2 +40870 1957 bring off this kind of whimsy 3 +40871 1957 this kind of whimsy 2 +40872 1957 of whimsy 3 +40873 1958 Famuyiwa 's feature 2 +40874 1958 Famuyiwa 's 2 +40875 1958 Famuyiwa 2 +40876 1958 with its subject matter in a tasteful , intelligent manner 4 +40877 1958 its subject matter in a tasteful , intelligent manner 4 +40878 1958 in a tasteful , intelligent manner 3 +40879 1958 a tasteful , intelligent manner 3 +40880 1958 tasteful , intelligent manner 4 +40881 1958 , intelligent manner 2 +40882 1958 intelligent manner 3 +40883 1958 forcing 1 +40884 1958 endure every plot contrivance 2 +40885 1958 every plot contrivance 2 +40886 1958 plot contrivance 2 +40887 1958 contrivance 2 +40888 1959 Ruh-roh ! 2 +40889 1959 Ruh-roh 2 +40890 1960 A beyond-lame satire , Teddy Bears ' Picnic ranks among the most pitiful directing debuts by an esteemed writer-actor . 1 +40891 1960 A beyond-lame satire , Teddy Bears ' Picnic ranks among the most pitiful directing 1 +40892 1960 A beyond-lame satire , 0 +40893 1960 A beyond-lame satire 0 +40894 1960 beyond-lame satire 1 +40895 1960 beyond-lame 1 +40896 1960 Teddy Bears ' Picnic ranks among the most pitiful directing 0 +40897 1960 Teddy Bears ' Picnic ranks 3 +40898 1960 Teddy Bears ' 3 +40899 1960 Teddy 2 +40900 1960 Bears ' 2 +40901 1960 Picnic ranks 2 +40902 1960 Picnic 2 +40903 1960 among the most pitiful directing 1 +40904 1960 the most pitiful directing 0 +40905 1960 most pitiful directing 1 +40906 1960 most pitiful 1 +40907 1960 debuts by an esteemed writer-actor . 3 +40908 1960 debuts by an esteemed writer-actor 3 +40909 1960 debuts 2 +40910 1960 by an esteemed writer-actor 3 +40911 1960 an esteemed writer-actor 3 +40912 1960 esteemed writer-actor 3 +40913 1960 esteemed 4 +40914 1960 writer-actor 2 +40915 1961 directed in a flashy , empty sub-music video style by a director so self-possessed he actually adds a period to his first name 2 +40916 1961 directed in a flashy , empty sub-music video style 1 +40917 1961 in a flashy , empty sub-music video style 1 +40918 1961 a flashy , empty sub-music video style 2 +40919 1961 flashy , empty sub-music video style 1 +40920 1961 , empty sub-music video style 0 +40921 1961 empty sub-music video style 1 +40922 1961 sub-music video style 2 +40923 1961 sub-music 2 +40924 1961 video style 2 +40925 1961 by a director so self-possessed he actually adds a period to his first name 1 +40926 1961 a director so self-possessed he actually adds a period to his first name 2 +40927 1961 a director so self-possessed 1 +40928 1961 so self-possessed 1 +40929 1961 self-possessed 2 +40930 1961 he actually adds a period to his first name 2 +40931 1961 actually adds a period to his first name 2 +40932 1961 adds a period to his first name 2 +40933 1961 adds a period 2 +40934 1961 a period 2 +40935 1961 to his first name 2 +40936 1961 his first name 2 +40937 1961 first name 2 +40938 1962 A dreary indulgence . 2 +40939 1962 dreary indulgence . 1 +40940 1962 indulgence . 2 +40941 1962 indulgence 1 +40942 1963 A gushy episode of `` M \* A \* S \* H '' only this time from an Asian perspective . 1 +40943 1963 A gushy episode of `` M 2 +40944 1963 A gushy episode 2 +40945 1963 gushy episode 2 +40946 1963 gushy 2 +40947 1963 of `` M 2 +40948 1963 M 2 +40949 1963 \* A \* S \* H '' only this time from an Asian perspective . 2 +40950 1963 \* A \* S \* H '' only this time from an Asian perspective 2 +40951 1963 \* A \* S \* H '' only this time 2 +40952 1963 \* A \* S \* H '' 2 +40953 1963 \* 2 +40954 1963 A \* S \* H '' 2 +40955 1963 \* S \* H '' 2 +40956 1963 S \* H '' 2 +40957 1963 S 2 +40958 1963 \* H '' 2 +40959 1963 H '' 2 +40960 1963 H 2 +40961 1963 only this time 2 +40962 1963 from an Asian perspective 2 +40963 1963 an Asian perspective 2 +40964 1963 Asian perspective 2 +40965 1964 As literary desecrations go , this makes for perfectly acceptable , occasionally very enjoyable children 's entertainment . 3 +40966 1964 As literary desecrations go 1 +40967 1964 literary desecrations go 2 +40968 1964 literary desecrations 1 +40969 1964 desecrations 2 +40970 1964 , this makes for perfectly acceptable , occasionally very enjoyable children 's entertainment . 3 +40971 1964 this makes for perfectly acceptable , occasionally very enjoyable children 's entertainment . 4 +40972 1964 makes for perfectly acceptable , occasionally very enjoyable children 's entertainment . 3 +40973 1964 makes for perfectly acceptable , occasionally very enjoyable children 's entertainment 3 +40974 1964 for perfectly acceptable , occasionally very enjoyable children 's entertainment 3 +40975 1964 perfectly acceptable , occasionally very enjoyable children 's entertainment 3 +40976 1964 perfectly acceptable , occasionally very enjoyable children 's 4 +40977 1964 perfectly acceptable , occasionally very enjoyable 3 +40978 1964 acceptable , occasionally very enjoyable 3 +40979 1964 acceptable , 3 +40980 1964 occasionally very enjoyable 3 +40981 1964 very enjoyable 4 +40982 1965 I ca n't remember the last time I saw worse stunt editing or cheaper action movie production values than in Extreme Ops . 1 +40983 1965 ca n't remember the last time I saw worse stunt editing or cheaper action movie production values than in Extreme Ops . 0 +40984 1965 ca n't remember the last time I saw worse stunt editing or cheaper action movie production values than in Extreme Ops 0 +40985 1965 remember the last time I saw worse stunt editing or cheaper action movie production values than in Extreme Ops 0 +40986 1965 the last time I saw worse stunt editing or cheaper action movie production values than in Extreme Ops 1 +40987 1965 I saw worse stunt editing or cheaper action movie production values than in Extreme Ops 0 +40988 1965 saw worse stunt editing or cheaper action movie production values than in Extreme Ops 0 +40989 1965 worse stunt editing or cheaper action movie production values than in Extreme Ops 0 +40990 1965 worse stunt editing or cheaper action movie production 0 +40991 1965 worse stunt editing or 1 +40992 1965 worse stunt editing 1 +40993 1965 stunt editing 2 +40994 1965 cheaper action movie production 2 +40995 1965 cheaper 2 +40996 1965 action movie production 2 +40997 1965 movie production 2 +40998 1965 values than in Extreme Ops 2 +40999 1965 than in Extreme Ops 2 +41000 1965 in Extreme Ops 2 +41001 1965 Extreme Ops 2 +41002 1965 Ops 2 +41003 1966 It 's a lovely , sad dance highlighted by Kwan 's unique directing style . 4 +41004 1966 's a lovely , sad dance highlighted by Kwan 's unique directing style . 3 +41005 1966 's a lovely , sad dance highlighted by Kwan 's unique directing style 3 +41006 1966 a lovely , sad dance highlighted by Kwan 's unique directing style 3 +41007 1966 a lovely , sad dance 3 +41008 1966 lovely , sad dance 3 +41009 1966 , sad dance 1 +41010 1966 sad dance 2 +41011 1966 highlighted by Kwan 's unique directing style 3 +41012 1966 highlighted 2 +41013 1966 by Kwan 's unique directing style 2 +41014 1966 Kwan 's unique directing style 3 +41015 1966 Kwan 's 2 +41016 1966 Kwan 2 +41017 1966 unique directing style 3 +41018 1966 directing style 2 +41019 1967 Though it never rises to its full potential as a film , still offers a great deal of insight into the female condition and the timeless danger of emotions repressed . 2 +41020 1967 Though it never rises to its full potential as a film 1 +41021 1967 it never rises to its full potential as a film 2 +41022 1967 never rises to its full potential as a film 1 +41023 1967 rises to its full potential as a film 4 +41024 1967 rises to its full potential 3 +41025 1967 to its full potential 3 +41026 1967 its full potential 4 +41027 1967 full potential 3 +41028 1967 , still offers a great deal of insight into the female condition and the timeless danger of emotions repressed . 4 +41029 1967 still offers a great deal of insight into the female condition and the timeless danger of emotions repressed . 3 +41030 1967 offers a great deal of insight into the female condition and the timeless danger of emotions repressed . 4 +41031 1967 offers a great deal of insight into the female condition and the timeless danger of emotions repressed 3 +41032 1967 offers a great deal of insight into the female condition and 3 +41033 1967 offers a great deal of insight into the female condition 3 +41034 1967 offers a great deal of insight 3 +41035 1967 a great deal of insight 4 +41036 1967 into the female condition 2 +41037 1967 the female condition 2 +41038 1967 female condition 2 +41039 1967 the timeless danger of emotions repressed 1 +41040 1967 the timeless danger of emotions 2 +41041 1967 the timeless danger 2 +41042 1967 timeless danger 2 +41043 1967 timeless 4 +41044 1967 danger 2 +41045 1967 of emotions 2 +41046 1968 When the precise nature of Matthew 's predicament finally comes into sharp focus , the revelation fails to justify the build-up . 2 +41047 1968 When the precise nature of Matthew 's predicament finally comes into sharp focus 2 +41048 1968 the precise nature of Matthew 's predicament finally comes into sharp focus 2 +41049 1968 the precise nature of Matthew 's predicament 2 +41050 1968 the precise nature 2 +41051 1968 precise nature 2 +41052 1968 precise 3 +41053 1968 of Matthew 's predicament 2 +41054 1968 Matthew 's predicament 3 +41055 1968 Matthew 's 2 +41056 1968 predicament 1 +41057 1968 finally comes into sharp focus 3 +41058 1968 comes into sharp focus 3 +41059 1968 into sharp focus 2 +41060 1968 sharp focus 3 +41061 1968 , the revelation fails to justify the build-up . 2 +41062 1968 the revelation fails to justify the build-up . 1 +41063 1968 the revelation 2 +41064 1968 fails to justify the build-up . 1 +41065 1968 fails to justify the build-up 1 +41066 1968 to justify the build-up 2 +41067 1968 justify the build-up 3 +41068 1968 the build-up 2 +41069 1969 Unless you 're a fanatic , the best advice is : ` Scooby ' do n't . 1 +41070 1969 Unless you 're a fanatic 2 +41071 1969 you 're a fanatic 2 +41072 1969 're a fanatic 2 +41073 1969 a fanatic 2 +41074 1969 fanatic 2 +41075 1969 , the best advice is : ` Scooby ' do n't . 2 +41076 1969 the best advice is : ` Scooby ' do n't . 1 +41077 1969 the best advice 3 +41078 1969 best advice 2 +41079 1969 advice 2 +41080 1969 is : ` Scooby ' do n't . 0 +41081 1969 is : ` Scooby ' do n't 1 +41082 1969 is : ` 2 +41083 1969 is : 2 +41084 1969 Scooby ' do n't 2 +41085 1969 Scooby ' 2 +41086 1969 Scooby 2 +41087 1970 The search for redemption makes for a touching love story , mainly because Blanchett and Ribisi compellingly tap into a spiritual aspect of their characters ' suffering . 4 +41088 1970 The search for redemption 2 +41089 1970 The search 2 +41090 1970 for redemption 2 +41091 1970 redemption 3 +41092 1970 makes for a touching love story , mainly because Blanchett and Ribisi compellingly tap into a spiritual aspect of their characters ' suffering . 3 +41093 1970 makes for a touching love story , mainly because Blanchett and Ribisi compellingly tap into a spiritual aspect of their characters ' suffering 3 +41094 1970 makes for a touching love story , 3 +41095 1970 makes for a touching love story 4 +41096 1970 for a touching love story 3 +41097 1970 a touching love story 3 +41098 1970 touching love story 4 +41099 1970 mainly because Blanchett and Ribisi compellingly tap into a spiritual aspect of their characters ' suffering 3 +41100 1970 because Blanchett and Ribisi compellingly tap into a spiritual aspect of their characters ' suffering 2 +41101 1970 Blanchett and Ribisi compellingly tap into a spiritual aspect of their characters ' suffering 4 +41102 1970 Blanchett and Ribisi 2 +41103 1970 Blanchett and 2 +41104 1970 Blanchett 2 +41105 1970 Ribisi 2 +41106 1970 compellingly tap into a spiritual aspect of their characters ' suffering 3 +41107 1970 tap into a spiritual aspect of their characters ' suffering 2 +41108 1970 tap 2 +41109 1970 into a spiritual aspect of their characters ' suffering 2 +41110 1970 a spiritual aspect of their characters ' suffering 2 +41111 1970 a spiritual aspect 3 +41112 1970 spiritual aspect 2 +41113 1970 aspect 2 +41114 1970 of their characters ' suffering 2 +41115 1970 their characters ' suffering 2 +41116 1970 their characters ' 2 +41117 1971 One suspects that Craven endorses They simply because this movie makes his own look much better by comparison . 1 +41118 1971 suspects that Craven endorses They simply because this movie makes his own look much better by comparison . 2 +41119 1971 suspects that Craven endorses They simply because this movie makes his own look much better by comparison 1 +41120 1971 suspects 2 +41121 1971 that Craven endorses They simply because this movie makes his own look much better by comparison 1 +41122 1971 Craven endorses They simply because this movie makes his own look much better by comparison 1 +41123 1971 endorses They simply because this movie makes his own look much better by comparison 1 +41124 1971 endorses They simply 2 +41125 1971 endorses They 2 +41126 1971 endorses 3 +41127 1971 because this movie makes his own look much better by comparison 1 +41128 1971 this movie makes his own look much better by comparison 2 +41129 1971 makes his own look much better by comparison 2 +41130 1971 makes his own look much better 2 +41131 1971 his own look much better 2 +41132 1971 his own look 2 +41133 1971 own look 2 +41134 1971 by comparison 2 +41135 1972 Hill looks to be going through the motions , beginning with the pale script . 1 +41136 1972 looks to be going through the motions , beginning with the pale script . 1 +41137 1972 looks to be going through the motions , beginning with the pale script 1 +41138 1972 to be going through the motions , beginning with the pale script 1 +41139 1972 be going through the motions , beginning with the pale script 1 +41140 1972 going through the motions , beginning with the pale script 2 +41141 1972 going through the motions , 2 +41142 1972 beginning with the pale script 1 +41143 1972 beginning 2 +41144 1972 with the pale script 1 +41145 1972 the pale script 1 +41146 1972 pale script 1 +41147 1972 pale 1 +41148 1973 is significantly less charming than listening to a four-year-old with a taste for exaggeration recount his Halloween trip to the Haunted House . 0 +41149 1973 is significantly less charming than listening to a four-year-old with a taste for exaggeration 0 +41150 1973 significantly less charming than listening to a four-year-old with a taste for exaggeration 0 +41151 1973 significantly less charming than listening to a four-year-old 0 +41152 1973 significantly 2 +41153 1973 less charming than listening to a four-year-old 1 +41154 1973 charming than listening to a four-year-old 2 +41155 1973 than listening to a four-year-old 2 +41156 1973 listening to a four-year-old 2 +41157 1973 to a four-year-old 2 +41158 1973 a four-year-old 2 +41159 1973 four-year-old 2 +41160 1973 with a taste for exaggeration 1 +41161 1973 a taste for exaggeration 2 +41162 1973 a taste 2 +41163 1973 for exaggeration 2 +41164 1973 exaggeration 2 +41165 1973 recount his Halloween trip to the Haunted House . 2 +41166 1973 recount his Halloween trip to the Haunted House 2 +41167 1973 recount his Halloween trip 2 +41168 1973 recount 2 +41169 1973 his Halloween trip 2 +41170 1973 Halloween trip 2 +41171 1973 to the Haunted House 1 +41172 1973 the Haunted House 2 +41173 1973 Haunted House 2 +41174 1973 Haunted 2 +41175 1974 It 's nice to see Piscopo again after all these years , and Chaykin and Headly are priceless . 3 +41176 1974 It 's nice to see Piscopo again after all these years , and Chaykin and Headly are priceless 3 +41177 1974 It 's nice to see Piscopo again after all these years , and 3 +41178 1974 It 's nice to see Piscopo again after all these years , 3 +41179 1974 It 's nice to see Piscopo again after all these years 4 +41180 1974 's nice to see Piscopo again after all these years 3 +41181 1974 nice to see Piscopo again after all these years 3 +41182 1974 to see Piscopo again after all these years 2 +41183 1974 see Piscopo again after all these years 2 +41184 1974 see Piscopo again 2 +41185 1974 see Piscopo 2 +41186 1974 Piscopo 2 +41187 1974 after all these years 2 +41188 1974 all these years 2 +41189 1974 these years 2 +41190 1974 Chaykin and Headly are priceless 2 +41191 1974 Chaykin and Headly 2 +41192 1974 Chaykin and 2 +41193 1974 Chaykin 2 +41194 1974 Headly 2 +41195 1974 are priceless 3 +41196 1974 priceless 4 +41197 1975 For a long time the film succeeds with its dark , delicate treatment of these characters and its unerring respect for them . 3 +41198 1975 For a long time 2 +41199 1975 the film succeeds with its dark , delicate treatment of these characters and its unerring respect for them . 3 +41200 1975 succeeds with its dark , delicate treatment of these characters and its unerring respect for them . 3 +41201 1975 succeeds with its dark , delicate treatment of these characters and its unerring respect for them 3 +41202 1975 with its dark , delicate treatment of these characters and its unerring respect for them 2 +41203 1975 its dark , delicate treatment of these characters and its unerring respect for them 2 +41204 1975 its dark , delicate treatment of these characters and 2 +41205 1975 its dark , delicate treatment of these characters 3 +41206 1975 its dark , delicate treatment 3 +41207 1975 dark , delicate treatment 2 +41208 1975 , delicate treatment 3 +41209 1975 delicate treatment 3 +41210 1975 of these characters 2 +41211 1975 its unerring respect for them 3 +41212 1975 its unerring respect 3 +41213 1975 unerring respect 3 +41214 1975 unerring 3 +41215 1975 for them 2 +41216 1976 Enigma looks great , has solid acting and a neat premise . 3 +41217 1976 looks great , has solid acting and a neat premise . 4 +41218 1976 looks great , has solid acting and a neat premise 3 +41219 1976 great , has solid acting and a neat premise 4 +41220 1976 , has solid acting and a neat premise 3 +41221 1976 has solid acting and a neat premise 3 +41222 1976 solid acting and a neat premise 4 +41223 1976 solid acting and 3 +41224 1976 solid acting 3 +41225 1976 a neat premise 3 +41226 1976 neat premise 3 +41227 1977 Manages to be wholesome and subversive at the same time . 3 +41228 1977 to be wholesome and subversive at the same time . 3 +41229 1977 to be wholesome and subversive at the same time 3 +41230 1977 be wholesome and subversive at the same time 3 +41231 1977 be wholesome and subversive 2 +41232 1977 wholesome and subversive 3 +41233 1977 wholesome and 3 +41234 1977 wholesome 3 +41235 1978 Sweet gentle Jesus , did the screenwriters just do a cut-and-paste of every bad action-movie line in history ? 1 +41236 1978 Sweet gentle Jesus 3 +41237 1978 gentle Jesus 3 +41238 1978 Jesus 2 +41239 1978 , did the screenwriters just do a cut-and-paste of every bad action-movie line in history ? 1 +41240 1978 did the screenwriters just do a cut-and-paste of every bad action-movie line in history ? 0 +41241 1978 did the screenwriters just do a cut-and-paste of every bad action-movie line in history 2 +41242 1978 did the screenwriters just 1 +41243 1978 the screenwriters just 2 +41244 1978 screenwriters just 2 +41245 1978 do a cut-and-paste of every bad action-movie line in history 2 +41246 1978 a cut-and-paste of every bad action-movie line in history 1 +41247 1978 a cut-and-paste 1 +41248 1978 cut-and-paste 2 +41249 1978 of every bad action-movie line in history 1 +41250 1978 every bad action-movie line in history 0 +41251 1978 every bad action-movie line 1 +41252 1978 bad action-movie line 1 +41253 1978 action-movie line 2 +41254 1978 action-movie 2 +41255 1979 The touch is generally light enough and the performances , for the most part , credible . 3 +41256 1979 The touch is generally light enough and the performances , for the most part , credible 3 +41257 1979 The touch is generally light enough and 3 +41258 1979 The touch is generally light enough 3 +41259 1979 The touch 3 +41260 1979 is generally light enough 3 +41261 1979 generally light enough 3 +41262 1979 light enough 3 +41263 1979 the performances , for the most part , credible 3 +41264 1979 , for the most part , credible 3 +41265 1979 for the most part , credible 3 +41266 1979 for the most part 2 +41267 1979 the most part 2 +41268 1979 most part 2 +41269 1979 , credible 3 +41270 1980 An enjoyable above average summer diversion . 3 +41271 1980 An enjoyable above average summer diversion 3 +41272 1980 enjoyable above average summer diversion 3 +41273 1980 enjoyable above average summer 2 +41274 1980 above average summer 2 +41275 1980 average summer 2 +41276 1981 So muddled , repetitive and ragged that it says far less about the horrifying historical reality than about the filmmaker 's characteristic style . 0 +41277 1981 So muddled , repetitive and ragged that it says far less about the horrifying historical reality than about the filmmaker 's characteristic style 1 +41278 1981 So muddled , repetitive and ragged 1 +41279 1981 muddled , repetitive and ragged 1 +41280 1981 , repetitive and ragged 1 +41281 1981 repetitive and ragged 1 +41282 1981 repetitive and 1 +41283 1981 repetitive 1 +41284 1981 ragged 2 +41285 1981 that it says far less about the horrifying historical reality than about the filmmaker 's characteristic style 2 +41286 1981 it says far less about the horrifying historical reality than about the filmmaker 's characteristic style 1 +41287 1981 says far less about the horrifying historical reality than about the filmmaker 's characteristic style 1 +41288 1981 says 2 +41289 1981 far less about the horrifying historical reality than about the filmmaker 's characteristic style 2 +41290 1981 far less about the horrifying historical reality 2 +41291 1981 less about the horrifying historical reality 2 +41292 1981 about the horrifying historical reality 2 +41293 1981 the horrifying historical reality 1 +41294 1981 horrifying historical reality 2 +41295 1981 historical reality 2 +41296 1981 than about the filmmaker 's characteristic style 2 +41297 1981 about the filmmaker 's characteristic style 3 +41298 1981 the filmmaker 's characteristic style 3 +41299 1981 characteristic style 3 +41300 1981 characteristic 2 +41301 1982 The pace of the film is very slow -LRB- for obvious reasons -RRB- and that too becomes off-putting . 2 +41302 1982 The pace of the film is very slow -LRB- for obvious reasons -RRB- and that too becomes off-putting 1 +41303 1982 The pace of the film is very slow -LRB- for obvious reasons -RRB- and 1 +41304 1982 The pace of the film is very slow -LRB- for obvious reasons -RRB- 1 +41305 1982 The pace of the film 2 +41306 1982 The pace 2 +41307 1982 is very slow -LRB- for obvious reasons -RRB- 1 +41308 1982 is very slow 1 +41309 1982 very slow 1 +41310 1982 -LRB- for obvious reasons -RRB- 2 +41311 1982 for obvious reasons -RRB- 2 +41312 1982 for obvious reasons 2 +41313 1982 obvious reasons 2 +41314 1982 reasons 2 +41315 1982 that too becomes off-putting 2 +41316 1982 too becomes off-putting 1 +41317 1982 becomes off-putting 1 +41318 1983 It 's an 88-minute highlight reel that 's 86 minutes too long . 0 +41319 1983 's an 88-minute highlight reel that 's 86 minutes too long . 0 +41320 1983 's an 88-minute highlight reel that 's 86 minutes too long 0 +41321 1983 an 88-minute highlight reel that 's 86 minutes too long 0 +41322 1983 an 88-minute highlight reel 3 +41323 1983 88-minute highlight reel 1 +41324 1983 highlight reel 3 +41325 1983 that 's 86 minutes too long 0 +41326 1983 's 86 minutes too long 1 +41327 1983 86 minutes too long 0 +41328 1984 Laughably , irredeemably awful . 0 +41329 1984 , irredeemably awful . 0 +41330 1984 irredeemably awful . 0 +41331 1984 irredeemably awful 0 +41332 1984 irredeemably 2 +41333 1985 Twohy 's a good yarn-spinner , and ultimately the story compels . 3 +41334 1985 Twohy 's a good yarn-spinner , and ultimately the story compels 3 +41335 1985 Twohy 's a good yarn-spinner , and 2 +41336 1985 Twohy 's a good yarn-spinner , 3 +41337 1985 Twohy 's a good yarn-spinner 3 +41338 1985 Twohy 2 +41339 1985 's a good yarn-spinner 3 +41340 1985 a good yarn-spinner 2 +41341 1985 good yarn-spinner 3 +41342 1985 yarn-spinner 1 +41343 1985 ultimately the story compels 3 +41344 1985 the story compels 3 +41345 1986 Steve Oedekerk is , alas , no Woody Allen . 1 +41346 1986 Steve Oedekerk 2 +41347 1986 is , alas , no Woody Allen . 1 +41348 1986 is , alas , no Woody Allen 2 +41349 1986 alas , no Woody Allen 2 +41350 1986 alas , no 2 +41351 1987 The whole thing comes off like a particularly amateurish episode of Bewitched that takes place during Spring Break . 1 +41352 1987 comes off like a particularly amateurish episode of Bewitched that takes place during Spring Break . 0 +41353 1987 comes off like a particularly amateurish episode of Bewitched that takes place during Spring Break 0 +41354 1987 comes off 2 +41355 1987 like a particularly amateurish episode of Bewitched that takes place during Spring Break 1 +41356 1987 a particularly amateurish episode of Bewitched that takes place during Spring Break 1 +41357 1987 a particularly amateurish episode 1 +41358 1987 particularly amateurish episode 1 +41359 1987 particularly amateurish 1 +41360 1987 of Bewitched that takes place during Spring Break 3 +41361 1987 Bewitched that takes place during Spring Break 2 +41362 1987 Bewitched 2 +41363 1987 that takes place during Spring Break 2 +41364 1987 takes place during Spring Break 2 +41365 1987 takes place 2 +41366 1987 during Spring Break 2 +41367 1988 Clooney directs this film always keeping the balance between the fantastic and the believable ... 3 +41368 1988 Clooney 2 +41369 1988 directs this film always keeping the balance between the fantastic and the believable ... 4 +41370 1988 directs this film always keeping the balance between the fantastic and the believable 4 +41371 1988 this film always keeping the balance between the fantastic and the believable 4 +41372 1988 always keeping the balance between the fantastic and the believable 3 +41373 1988 keeping the balance between the fantastic and the believable 3 +41374 1988 the balance between the fantastic and the believable 3 +41375 1988 between the fantastic and the believable 3 +41376 1988 the fantastic and the believable 3 +41377 1988 the fantastic and 3 +41378 1988 the fantastic 3 +41379 1988 the believable 2 +41380 1989 Handled correctly , Wilde 's play is a masterpiece of elegant wit and artifice . 4 +41381 1989 Handled correctly 3 +41382 1989 correctly 3 +41383 1989 , Wilde 's play is a masterpiece of elegant wit and artifice . 4 +41384 1989 Wilde 's play is a masterpiece of elegant wit and artifice . 4 +41385 1989 Wilde 's play 2 +41386 1989 is a masterpiece of elegant wit and artifice . 4 +41387 1989 is a masterpiece of elegant wit and artifice 4 +41388 1989 a masterpiece of elegant wit and artifice 4 +41389 1989 a masterpiece 4 +41390 1989 of elegant wit and artifice 3 +41391 1989 elegant wit and artifice 3 +41392 1989 wit and artifice 2 +41393 1990 I liked About Schmidt a lot , but I have a feeling that I would have liked it much more if Harry & Tonto never existed . 3 +41394 1990 I liked About Schmidt a lot , but I have a feeling that I would have liked it much more if Harry & Tonto never existed 3 +41395 1990 I liked About Schmidt a lot , but 2 +41396 1990 I liked About Schmidt a lot , 4 +41397 1990 I liked About Schmidt a lot 3 +41398 1990 liked About Schmidt a lot 3 +41399 1990 About Schmidt a lot 2 +41400 1990 I have a feeling that I would have liked it much more if Harry & Tonto never existed 1 +41401 1990 have a feeling that I would have liked it much more if Harry & Tonto never existed 1 +41402 1990 a feeling that I would have liked it much more if Harry & Tonto never existed 2 +41403 1990 a feeling 2 +41404 1990 that I would have liked it much more if Harry & Tonto never existed 1 +41405 1990 I would have liked it much more if Harry & Tonto never existed 0 +41406 1990 would have liked it much more if Harry & Tonto never existed 1 +41407 1990 have liked it much more if Harry & Tonto never existed 2 +41408 1990 liked it much more if Harry & Tonto never existed 1 +41409 1990 it much more if Harry & Tonto never existed 2 +41410 1990 much more if Harry & Tonto never existed 2 +41411 1990 if Harry & Tonto never existed 2 +41412 1990 Harry & Tonto never existed 2 +41413 1990 Harry & Tonto 2 +41414 1990 Harry & 2 +41415 1990 Tonto 2 +41416 1991 What 's not to like about a movie with a ` children 's ' song that includes the line ` My stepdad 's not mean , he 's just adjusting ' ? 3 +41417 1991 's not to like about a movie with a ` children 's ' song that includes the line ` My stepdad 's not mean , he 's just adjusting ' ? 3 +41418 1991 's not to like about a movie with a ` children 's ' song that includes the line ` My stepdad 's not mean , he 's just adjusting ' 3 +41419 1991 not to like about a movie with a ` children 's ' song that includes the line ` My stepdad 's not mean , he 's just adjusting ' 3 +41420 1991 to like about a movie with a ` children 's ' song that includes the line ` My stepdad 's not mean , he 's just adjusting ' 2 +41421 1991 like about a movie with a ` children 's ' song that includes the line ` My stepdad 's not mean , he 's just adjusting ' 2 +41422 1991 about a movie with a ` children 's ' song that includes the line ` My stepdad 's not mean , he 's just adjusting ' 2 +41423 1991 a movie with a ` children 's ' song that includes the line ` My stepdad 's not mean , he 's just adjusting ' 1 +41424 1991 a movie with a ` children 's ' song 2 +41425 1991 with a ` children 's ' song 2 +41426 1991 a ` children 's ' song 2 +41427 1991 ` children 's ' song 2 +41428 1991 children 's ' song 3 +41429 1991 ' song 2 +41430 1991 that includes the line ` My stepdad 's not mean , he 's just adjusting ' 2 +41431 1991 includes the line ` My stepdad 's not mean , he 's just adjusting ' 3 +41432 1991 includes the line ` My stepdad 's not mean , he 's just adjusting 2 +41433 1991 includes the line ` 2 +41434 1991 includes the line 2 +41435 1991 My stepdad 's not mean , he 's just adjusting 2 +41436 1991 My stepdad 's not mean , 2 +41437 1991 My stepdad 's not mean 2 +41438 1991 My stepdad 2 +41439 1991 stepdad 2 +41440 1991 's not mean 2 +41441 1991 he 's just adjusting 1 +41442 1991 's just adjusting 2 +41443 1991 adjusting 2 +41444 1992 A quaint , romanticized rendering . 3 +41445 1992 A quaint , romanticized rendering 4 +41446 1992 A quaint , 3 +41447 1992 A quaint 3 +41448 1992 quaint 2 +41449 1992 romanticized rendering 3 +41450 1992 romanticized 2 +41451 1992 rendering 2 +41452 1993 The dominant feeling is something like nostalgia . ' 2 +41453 1993 The dominant feeling 2 +41454 1993 dominant feeling 2 +41455 1993 dominant 3 +41456 1993 is something like nostalgia . ' 2 +41457 1993 is something like nostalgia . 2 +41458 1993 is something like nostalgia 2 +41459 1993 something like nostalgia 2 +41460 1993 like nostalgia 3 +41461 1994 A loud , witless mess that has none of the charm and little of the intrigue from the TV series . 0 +41462 1994 A loud , witless mess that 1 +41463 1994 A loud , witless mess 0 +41464 1994 loud , witless mess 1 +41465 1994 , witless mess 1 +41466 1994 witless mess 0 +41467 1994 has none of the charm and little of the intrigue from the TV series . 0 +41468 1994 has none of the charm and little of the intrigue from the TV series 0 +41469 1994 none of the charm and little of the intrigue from the TV series 2 +41470 1994 none of the charm and little 1 +41471 1994 of the charm and little 3 +41472 1994 the charm and little 3 +41473 1994 charm and little 2 +41474 1994 of the intrigue from the TV series 2 +41475 1994 the intrigue from the TV series 3 +41476 1994 the intrigue 2 +41477 1994 from the TV series 2 +41478 1994 the TV series 2 +41479 1994 TV series 2 +41480 1995 An empty , purposeless exercise . 0 +41481 1995 An empty , purposeless 0 +41482 1995 empty , purposeless 1 +41483 1995 , purposeless 1 +41484 1995 exercise . 2 +41485 1996 Offers big , fat , dumb laughs that may make you hate yourself for giving in . 1 +41486 1996 Offers big , fat , dumb 1 +41487 1996 big , fat , dumb 1 +41488 1996 , fat , dumb 1 +41489 1996 fat , dumb 0 +41490 1996 , dumb 0 +41491 1996 laughs that may make you hate yourself for giving in . 2 +41492 1996 laughs that may make you hate yourself for giving in 3 +41493 1996 that may make you hate yourself for giving in 1 +41494 1996 may make you hate yourself for giving in 2 +41495 1996 make you hate yourself for giving in 2 +41496 1996 you hate yourself for giving in 2 +41497 1996 hate yourself for giving in 1 +41498 1996 hate yourself 0 +41499 1996 for giving in 2 +41500 1996 giving in 2 +41501 1997 A lot smarter than your average Bond . 3 +41502 1997 smarter than your average Bond . 3 +41503 1997 smarter than your average Bond 3 +41504 1997 smarter 3 +41505 1997 than your average Bond 2 +41506 1997 your average Bond 2 +41507 1997 average Bond 1 +41508 1998 Deadly dull , pointless meditation on losers in a gone-to-seed hotel . 1 +41509 1998 Deadly dull 0 +41510 1998 , pointless meditation on losers in a gone-to-seed hotel . 1 +41511 1998 pointless meditation on losers in a gone-to-seed hotel . 1 +41512 1998 pointless meditation on losers in a gone-to-seed hotel 1 +41513 1998 pointless meditation 1 +41514 1998 on losers in a gone-to-seed hotel 1 +41515 1998 losers in a gone-to-seed hotel 2 +41516 1998 in a gone-to-seed hotel 2 +41517 1998 a gone-to-seed hotel 2 +41518 1998 gone-to-seed hotel 2 +41519 1998 gone-to-seed 2 +41520 1998 hotel 2 +41521 1999 A French film with a more down-home flavor . 3 +41522 1999 A French film with a more down-home flavor 3 +41523 1999 A French film 2 +41524 1999 French film 2 +41525 1999 with a more down-home flavor 2 +41526 1999 a more down-home flavor 3 +41527 1999 more down-home flavor 3 +41528 1999 more down-home 2 +41529 1999 down-home 2 +41530 1999 flavor 2 +41531 2000 The kind of movie that comes along only occasionally , one so unconventional , gutsy and perfectly executed it takes your breath away . 4 +41532 2000 The kind of movie that comes along only occasionally , one so unconventional , gutsy and perfectly 4 +41533 2000 of movie that comes along only occasionally , one so unconventional , gutsy and perfectly 3 +41534 2000 movie that comes along only occasionally , one so unconventional , gutsy and perfectly 4 +41535 2000 that comes along only occasionally , one so unconventional , gutsy and perfectly 3 +41536 2000 comes along only occasionally , one so unconventional , gutsy and perfectly 4 +41537 2000 comes along only occasionally , one so unconventional , 3 +41538 2000 comes along only occasionally , one so unconventional 3 +41539 2000 comes along only occasionally , 2 +41540 2000 comes along only occasionally 3 +41541 2000 comes along only 2 +41542 2000 along only 2 +41543 2000 one so unconventional 2 +41544 2000 so unconventional 2 +41545 2000 gutsy and perfectly 3 +41546 2000 gutsy and 3 +41547 2000 gutsy 3 +41548 2000 executed it takes your breath away . 4 +41549 2000 executed it takes your breath away 3 +41550 2000 executed 2 +41551 2000 it takes your breath away 4 +41552 2000 takes your breath away 4 +41553 2000 takes your breath 3 +41554 2000 your breath 2 +41555 2000 breath 2 +41556 2001 It 's just too bad the screenwriters eventually shoot themselves in the feet with cop flick cliches like an oily arms dealer , squad car pile-ups and the requisite screaming captain . 0 +41557 2001 's just too bad the screenwriters eventually shoot themselves in the feet with cop flick cliches like an oily arms dealer , squad car pile-ups and the requisite screaming captain . 1 +41558 2001 's just too bad the screenwriters eventually shoot themselves in the feet with cop flick cliches like an oily arms dealer , squad car pile-ups and the requisite screaming captain 1 +41559 2001 just too bad the screenwriters eventually shoot themselves in the feet with cop flick cliches like an oily arms dealer , squad car pile-ups and the requisite screaming captain 1 +41560 2001 too bad the screenwriters eventually shoot themselves in the feet with cop flick cliches like an oily arms dealer , squad car pile-ups and the requisite screaming captain 0 +41561 2001 bad the screenwriters eventually shoot themselves in the feet with cop flick cliches like an oily arms dealer , squad car pile-ups and the requisite screaming captain 1 +41562 2001 the screenwriters eventually shoot themselves in the feet with cop flick cliches like an oily arms dealer , squad car pile-ups and the requisite screaming captain 1 +41563 2001 eventually shoot themselves in the feet with cop flick cliches like an oily arms dealer , squad car pile-ups and the requisite screaming captain 2 +41564 2001 shoot themselves in the feet with cop flick cliches like an oily arms dealer , squad car pile-ups and the requisite screaming captain 1 +41565 2001 shoot themselves 1 +41566 2001 in the feet with cop flick cliches like an oily arms dealer , squad car pile-ups and the requisite screaming captain 1 +41567 2001 the feet with cop flick cliches like an oily arms dealer , squad car pile-ups and the requisite screaming captain 2 +41568 2001 with cop flick cliches like an oily arms dealer , squad car pile-ups and the requisite screaming captain 2 +41569 2001 cop flick cliches like an oily arms dealer , squad car pile-ups and the requisite screaming captain 2 +41570 2001 cop flick cliches 1 +41571 2001 flick cliches 1 +41572 2001 like an oily arms dealer , squad car pile-ups and the requisite screaming captain 1 +41573 2001 an oily arms dealer , squad car pile-ups and the requisite screaming captain 1 +41574 2001 an oily arms dealer , squad car pile-ups and 2 +41575 2001 an oily arms dealer , squad car pile-ups 2 +41576 2001 an oily arms dealer , 2 +41577 2001 an oily arms dealer 2 +41578 2001 oily arms dealer 2 +41579 2001 oily 2 +41580 2001 arms dealer 2 +41581 2001 arms 2 +41582 2001 dealer 2 +41583 2001 squad car pile-ups 2 +41584 2001 squad 2 +41585 2001 car pile-ups 2 +41586 2001 pile-ups 2 +41587 2001 the requisite screaming captain 2 +41588 2001 requisite screaming captain 2 +41589 2001 requisite 2 +41590 2001 screaming captain 2 +41591 2001 captain 3 +41592 2002 Is it really an advantage to invest such subtlety and warmth in an animatronic bear when the humans are acting like puppets ? 1 +41593 2002 Is it really an advantage to invest such subtlety and warmth in an animatronic bear when the humans are acting like puppets 2 +41594 2002 really an advantage to invest such subtlety and warmth in an animatronic bear when the humans are acting like puppets 1 +41595 2002 really an advantage 2 +41596 2002 an advantage 3 +41597 2002 to invest such subtlety and warmth in an animatronic bear when the humans are acting like puppets 1 +41598 2002 invest such subtlety and warmth in an animatronic bear when the humans are acting like puppets 1 +41599 2002 invest such subtlety and warmth in an animatronic bear 2 +41600 2002 invest such subtlety and warmth 2 +41601 2002 invest 2 +41602 2002 such subtlety and warmth 3 +41603 2002 subtlety and warmth 3 +41604 2002 in an animatronic bear 2 +41605 2002 an animatronic bear 2 +41606 2002 animatronic bear 2 +41607 2002 animatronic 2 +41608 2002 when the humans are acting like puppets 2 +41609 2002 the humans are acting like puppets 1 +41610 2002 the humans 2 +41611 2002 are acting like puppets 1 +41612 2002 acting like puppets 1 +41613 2002 like puppets 2 +41614 2002 puppets 2 +41615 2003 His best film remains his shortest , The Hole , which makes many of the points that this film does but feels less repetitive . 2 +41616 2003 His best film 4 +41617 2003 remains his shortest , The Hole , which makes many of the points that this film does but feels less repetitive . 2 +41618 2003 remains his shortest , The Hole , which makes many of the points that this film does but feels less repetitive 2 +41619 2003 his shortest , The Hole , which makes many of the points that this film does but feels less repetitive 1 +41620 2003 his shortest , The Hole , 2 +41621 2003 his shortest , The Hole 2 +41622 2003 his shortest , 2 +41623 2003 his shortest 2 +41624 2003 shortest 2 +41625 2003 The Hole 2 +41626 2003 which makes many of the points that this film does but feels less repetitive 2 +41627 2003 makes many of the points that this film does but feels less repetitive 2 +41628 2003 makes many of the points 2 +41629 2003 many of the points 2 +41630 2003 of the points 2 +41631 2003 the points 2 +41632 2003 that this film does but feels less repetitive 1 +41633 2003 this film does but feels less repetitive 3 +41634 2003 does but feels less repetitive 2 +41635 2003 does but 2 +41636 2003 feels less repetitive 2 +41637 2003 less repetitive 2 +41638 2004 Director David Jacobson gives Dahmer a consideration that the murderer never game his victims . 2 +41639 2004 Director David Jacobson 2 +41640 2004 David Jacobson 2 +41641 2004 Jacobson 2 +41642 2004 gives Dahmer a consideration that the murderer never game his victims . 2 +41643 2004 gives Dahmer a consideration that the murderer never game his victims 1 +41644 2004 gives Dahmer 2 +41645 2004 Dahmer 1 +41646 2004 a consideration that the murderer never game his victims 2 +41647 2004 a consideration 2 +41648 2004 consideration 2 +41649 2004 that the murderer never game his victims 2 +41650 2004 the murderer never game his victims 2 +41651 2004 the murderer 2 +41652 2004 murderer 1 +41653 2004 never game his victims 2 +41654 2004 game his victims 2 +41655 2004 his victims 1 +41656 2004 victims 1 +41657 2005 Captures all the longing , anguish and ache , the confusing sexual messages and the wish to be a part of that elusive adult world . 3 +41658 2005 Captures all the longing , anguish and ache , the confusing sexual messages and the wish to be a part of that elusive adult world 4 +41659 2005 Captures all the longing , anguish and ache , the confusing sexual messages and the wish 3 +41660 2005 all the longing , anguish and ache , the confusing sexual messages and the wish 2 +41661 2005 all the longing , anguish and ache , the confusing sexual messages and 2 +41662 2005 all the longing , anguish and ache , the confusing sexual messages 2 +41663 2005 all the longing , anguish and ache , 2 +41664 2005 all the longing , anguish and ache 2 +41665 2005 all the longing , 2 +41666 2005 all the longing 2 +41667 2005 the longing 2 +41668 2005 anguish and ache 2 +41669 2005 anguish and 2 +41670 2005 anguish 1 +41671 2005 the confusing sexual messages 1 +41672 2005 confusing sexual messages 1 +41673 2005 sexual messages 2 +41674 2005 the wish 2 +41675 2005 to be a part of that elusive adult world 3 +41676 2005 be a part of that elusive adult world 2 +41677 2005 a part of that elusive adult world 2 +41678 2005 of that elusive adult world 2 +41679 2005 that elusive adult world 2 +41680 2005 elusive adult world 2 +41681 2005 elusive 2 +41682 2005 adult world 3 +41683 2005 adult 2 +41684 2006 Empire ca n't make up its mind whether it wants to be a gangster flick or an art film . 1 +41685 2006 ca n't make up its mind whether it wants to be a gangster flick or an art film . 2 +41686 2006 ca n't make up its mind whether it wants to be a gangster flick or an art film 1 +41687 2006 make up its mind whether it wants to be a gangster flick or an art film 1 +41688 2006 make up its mind 2 +41689 2006 its mind 3 +41690 2006 whether it wants to be a gangster flick or an art film 2 +41691 2006 it wants to be a gangster flick or an art film 2 +41692 2006 wants to be a gangster flick or an art film 2 +41693 2006 to be a gangster flick or an art film 2 +41694 2006 be a gangster flick or an art film 2 +41695 2006 a gangster flick or an art film 2 +41696 2006 a gangster flick or 2 +41697 2006 a gangster flick 2 +41698 2006 gangster flick 2 +41699 2007 The sequel is everything the original was not : contrived , overblown and tie-in ready . 2 +41700 2007 The sequel is everything the original was not : contrived , overblown and tie-in ready 2 +41701 2007 The sequel is everything the original was not : 3 +41702 2007 The sequel is everything the original was not 2 +41703 2007 The sequel 3 +41704 2007 is everything the original was not 3 +41705 2007 everything the original was not 2 +41706 2007 the original was not 2 +41707 2007 was not 2 +41708 2007 contrived , overblown and tie-in ready 0 +41709 2007 contrived , overblown and tie-in 0 +41710 2007 , overblown and tie-in 1 +41711 2007 overblown and tie-in 1 +41712 2007 overblown and 1 +41713 2007 overblown 1 +41714 2007 tie-in 2 +41715 2008 What happens when something goes bump in the night and nobody cares ? 1 +41716 2008 happens when something goes bump in the night and nobody cares ? 1 +41717 2008 happens when something goes bump in the night and nobody cares 1 +41718 2008 when something goes bump in the night and nobody cares 1 +41719 2008 something goes bump in the night and nobody cares 1 +41720 2008 goes bump in the night and nobody cares 1 +41721 2008 bump in the night and nobody cares 1 +41722 2008 bump in the night and nobody 1 +41723 2008 bump 2 +41724 2008 in the night and nobody 2 +41725 2008 the night and nobody 2 +41726 2008 night and nobody 2 +41727 2008 night and 2 +41728 2008 nobody 2 +41729 2009 Slack and uninspired , and peopled mainly by characters so unsympathetic that you 're left with a sour taste in your mouth . 0 +41730 2009 Slack and uninspired , and peopled mainly by characters so unsympathetic that you 're left with a sour taste in your mouth 0 +41731 2009 Slack and 1 +41732 2009 uninspired , and peopled mainly by characters so unsympathetic that you 're left with a sour taste in your mouth 0 +41733 2009 , and peopled mainly by characters so unsympathetic that you 're left with a sour taste in your mouth 0 +41734 2009 peopled mainly by characters so unsympathetic that you 're left with a sour taste in your mouth 0 +41735 2009 peopled mainly by characters so unsympathetic 2 +41736 2009 peopled mainly 2 +41737 2009 peopled 2 +41738 2009 by characters so unsympathetic 1 +41739 2009 characters so unsympathetic 1 +41740 2009 so unsympathetic 1 +41741 2009 that you 're left with a sour taste in your mouth 2 +41742 2009 you 're left with a sour taste in your mouth 1 +41743 2009 're left with a sour taste in your mouth 0 +41744 2009 left with a sour taste in your mouth 1 +41745 2009 with a sour taste in your mouth 2 +41746 2009 a sour taste in your mouth 1 +41747 2009 a sour taste 1 +41748 2009 sour taste 1 +41749 2009 in your mouth 2 +41750 2010 underventilated 2 +41751 2011 Smith examines the intimate , unguarded moments of folks who live in unusual homes -- which pop up in nearly every corner of the country . 3 +41752 2011 examines the intimate , unguarded moments of folks who live in unusual homes -- which pop up in nearly every corner of the country . 2 +41753 2011 examines the intimate , unguarded moments of folks who live in unusual homes -- which pop up in nearly every corner of the country 3 +41754 2011 examines 2 +41755 2011 the intimate , unguarded moments of folks who live in unusual homes -- which pop up in nearly every corner of the country 3 +41756 2011 the intimate , unguarded moments of folks who live in unusual homes -- 1 +41757 2011 the intimate , unguarded moments of folks who live in unusual homes 3 +41758 2011 the intimate , unguarded moments 2 +41759 2011 intimate , unguarded moments 3 +41760 2011 , unguarded moments 2 +41761 2011 unguarded moments 2 +41762 2011 unguarded 2 +41763 2011 of folks who live in unusual homes 2 +41764 2011 folks who live in unusual homes 2 +41765 2011 who live in unusual homes 2 +41766 2011 live in unusual homes 2 +41767 2011 in unusual homes 2 +41768 2011 unusual homes 3 +41769 2011 which pop up in nearly every corner of the country 2 +41770 2011 pop up in nearly every corner of the country 3 +41771 2011 pop up 2 +41772 2011 in nearly every corner of the country 2 +41773 2011 nearly every corner of the country 2 +41774 2011 nearly every corner 2 +41775 2011 every corner 2 +41776 2011 corner 2 +41777 2011 of the country 2 +41778 2011 the country 2 +41779 2012 For 95 often hilarious minutes 3 +41780 2012 95 often hilarious minutes 4 +41781 2012 95 2 +41782 2012 often hilarious minutes 3 +41783 2012 -LRB- Cho -RRB- 2 +41784 2012 Cho -RRB- 2 +41785 2012 riffs on the diciness of colonics , 2 +41786 2012 riffs on the diciness of colonics 2 +41787 2012 riffs 2 +41788 2012 on the diciness of colonics 2 +41789 2012 the diciness of colonics 2 +41790 2012 the diciness 2 +41791 2012 diciness 2 +41792 2012 of colonics 2 +41793 2012 colonics 2 +41794 2012 straight versus gay personal ads , 2 +41795 2012 straight versus gay personal ads 2 +41796 2012 versus gay personal ads 2 +41797 2012 versus 2 +41798 2012 gay personal ads 1 +41799 2012 personal ads 2 +41800 2012 ads 2 +41801 2012 on how men would act if they had periods 2 +41802 2012 how men would act if they had periods 2 +41803 2012 men would act if they had periods 2 +41804 2012 would act if they had periods 2 +41805 2012 act if they had periods 2 +41806 2012 if they had periods 3 +41807 2012 they had periods 2 +41808 2012 had periods 2 +41809 2012 periods 2 +41810 2012 the perils 2 +41811 2012 sexual practice 2 +41812 2013 It picked me up , swung me around , and dropped me back in my seat with more emotional force than any other recent film . 4 +41813 2013 picked me up , swung me around , and dropped me back in my seat with more emotional force than any other recent film . 4 +41814 2013 picked me up , swung me around , and dropped me back in my seat with more emotional force than any other recent film 3 +41815 2013 picked me up , swung me around , and 2 +41816 2013 picked me up , swung me around , 3 +41817 2013 picked me up , swung me around 3 +41818 2013 picked me up , 2 +41819 2013 picked me up 4 +41820 2013 picked me 2 +41821 2013 picked 2 +41822 2013 swung me around 3 +41823 2013 swung me 2 +41824 2013 swung 2 +41825 2013 dropped me back in my seat with more emotional force than any other recent film 4 +41826 2013 dropped me back in my seat 2 +41827 2013 dropped me back 2 +41828 2013 dropped me 2 +41829 2013 dropped 3 +41830 2013 in my seat 2 +41831 2013 my seat 2 +41832 2013 with more emotional force than any other recent film 4 +41833 2013 more emotional force than any other recent film 4 +41834 2013 more emotional force 3 +41835 2013 emotional force 3 +41836 2013 than any other recent film 2 +41837 2013 any other recent film 2 +41838 2013 other recent film 2 +41839 2013 recent film 2 +41840 2014 The script by Vincent R. Nebrida ... tries to cram too many ingredients into one small pot . 1 +41841 2014 The script by Vincent R. Nebrida 2 +41842 2014 ... tries to cram too many ingredients into one small pot . 1 +41843 2014 tries to cram too many ingredients into one small pot . 1 +41844 2014 tries to cram too many ingredients into one small pot 1 +41845 2014 to cram too many ingredients into one small pot 1 +41846 2014 cram too many ingredients into one small pot 1 +41847 2014 cram too many ingredients 1 +41848 2014 cram 2 +41849 2014 too many ingredients 2 +41850 2014 ingredients 2 +41851 2014 into one small pot 2 +41852 2014 one small pot 2 +41853 2014 small pot 2 +41854 2014 pot 3 +41855 2015 Birthday Girl lucks out with Chaplin and Kidman , who are capable of anteing up some movie star charisma when they need it to sell us on this twisted love story , but who can also negotiate the movie 's darker turns . 3 +41856 2015 lucks out with Chaplin and Kidman , who are capable of anteing up some movie star charisma when they need it to sell us on this twisted love story , but who can also negotiate the movie 's darker turns . 2 +41857 2015 lucks out with Chaplin and Kidman , who are capable of anteing up some movie star charisma when they need it to sell us on this twisted love story , but who can also negotiate the movie 's darker turns 3 +41858 2015 lucks out 2 +41859 2015 lucks 3 +41860 2015 with Chaplin and Kidman , who are capable of anteing up some movie star charisma when they need it to sell us on this twisted love story , but who can also negotiate the movie 's darker turns 3 +41861 2015 Chaplin and Kidman , who are capable of anteing up some movie star charisma when they need it to sell us on this twisted love story , but who can also negotiate the movie 's darker turns 3 +41862 2015 Chaplin and Kidman , 2 +41863 2015 Chaplin and Kidman 2 +41864 2015 Chaplin and 2 +41865 2015 Chaplin 2 +41866 2015 who are capable of anteing up some movie star charisma when they need it to sell us on this twisted love story , but who can also negotiate the movie 's darker turns 4 +41867 2015 are capable of anteing up some movie star charisma when they need it to sell us on this twisted love story , but who can also negotiate the movie 's darker turns 3 +41868 2015 are capable of anteing up some movie star charisma 3 +41869 2015 capable of anteing up some movie star charisma 3 +41870 2015 of anteing up some movie star charisma 2 +41871 2015 anteing up some movie star charisma 3 +41872 2015 anteing up 2 +41873 2015 anteing 2 +41874 2015 some movie star charisma 3 +41875 2015 movie star charisma 3 +41876 2015 star charisma 4 +41877 2015 when they need it to sell us on this twisted love story , but who can also negotiate the movie 's darker turns 3 +41878 2015 when they need it to sell us on this twisted love story , but 2 +41879 2015 when they need it to sell us on this twisted love story , 2 +41880 2015 when they need it to sell us on this twisted love story 2 +41881 2015 they need it to sell us on this twisted love story 1 +41882 2015 need it to sell us on this twisted love story 2 +41883 2015 it to sell us on this twisted love story 2 +41884 2015 to sell us on this twisted love story 3 +41885 2015 sell us on this twisted love story 3 +41886 2015 sell us 2 +41887 2015 on this twisted love story 2 +41888 2015 this twisted love story 2 +41889 2015 twisted love story 2 +41890 2015 who can also negotiate the movie 's darker turns 2 +41891 2015 can also negotiate the movie 's darker turns 1 +41892 2015 can also 2 +41893 2015 negotiate the movie 's darker turns 2 +41894 2015 negotiate 2 +41895 2015 the movie 's darker turns 2 +41896 2015 darker turns 1 +41897 2016 Suffers from its timid parsing of the barn-side target of sons trying to breach gaps in their relationships with their fathers . 1 +41898 2016 Suffers from its timid parsing of the barn-side target of sons trying to breach gaps in their relationships with their fathers 2 +41899 2016 Suffers from its timid parsing of the barn-side target of sons 2 +41900 2016 from its timid parsing of the barn-side target of sons 2 +41901 2016 its timid parsing of the barn-side target of sons 2 +41902 2016 its timid parsing 2 +41903 2016 timid parsing 1 +41904 2016 parsing 2 +41905 2016 of the barn-side target of sons 2 +41906 2016 the barn-side target of sons 2 +41907 2016 the barn-side target 2 +41908 2016 barn-side target 2 +41909 2016 barn-side 2 +41910 2016 of sons 2 +41911 2016 sons 2 +41912 2016 trying to breach gaps in their relationships with their fathers 2 +41913 2016 to breach gaps in their relationships with their fathers 2 +41914 2016 breach gaps in their relationships with their fathers 3 +41915 2016 breach gaps in their relationships 2 +41916 2016 breach 2 +41917 2016 gaps in their relationships 1 +41918 2016 gaps 2 +41919 2016 in their relationships 2 +41920 2016 their relationships 2 +41921 2016 with their fathers 3 +41922 2016 their fathers 2 +41923 2017 ... you can be forgiven for realizing that you 've spent the past 20 minutes looking at your watch and waiting for Frida to just die already . 0 +41924 2017 you can be forgiven for realizing that you 've spent the past 20 minutes looking at your watch and waiting for Frida to just die already . 0 +41925 2017 can be forgiven for realizing that you 've spent the past 20 minutes looking at your watch and waiting for Frida to just die already . 1 +41926 2017 can be forgiven for realizing that you 've spent the past 20 minutes looking at your watch and waiting for Frida to just die already 0 +41927 2017 be forgiven for realizing that you 've spent the past 20 minutes looking at your watch and waiting for Frida to just die already 0 +41928 2017 forgiven for realizing that you 've spent the past 20 minutes looking at your watch and waiting for Frida to just die already 0 +41929 2017 forgiven 2 +41930 2017 for realizing that you 've spent the past 20 minutes looking at your watch and waiting for Frida to just die already 0 +41931 2017 realizing that you 've spent the past 20 minutes looking at your watch and waiting for Frida to just die already 0 +41932 2017 realizing that you 've spent the past 20 minutes looking at your watch and 0 +41933 2017 realizing that you 've spent the past 20 minutes looking at your watch 1 +41934 2017 realizing 2 +41935 2017 that you 've spent the past 20 minutes looking at your watch 1 +41936 2017 you 've spent the past 20 minutes looking at your watch 1 +41937 2017 've spent the past 20 minutes looking at your watch 1 +41938 2017 spent the past 20 minutes looking at your watch 0 +41939 2017 spent 2 +41940 2017 the past 20 minutes looking at your watch 1 +41941 2017 the past 20 minutes 2 +41942 2017 past 20 minutes 2 +41943 2017 20 minutes 2 +41944 2017 looking at your watch 2 +41945 2017 at your watch 2 +41946 2017 your watch 2 +41947 2017 waiting for Frida to just die already 1 +41948 2017 waiting for Frida 2 +41949 2017 for Frida 2 +41950 2017 to just die already 1 +41951 2017 just die already 0 +41952 2017 die already 2 +41953 2018 Although devoid of objectivity and full of nostalgic comments from the now middle-aged participants , Dogtown and Z-Boys has a compelling story to tell . 3 +41954 2018 Although devoid of objectivity and full of nostalgic comments from the now middle-aged participants 1 +41955 2018 devoid of objectivity and full of nostalgic comments from the now middle-aged participants 1 +41956 2018 devoid of objectivity and 2 +41957 2018 devoid of objectivity 2 +41958 2018 of objectivity 2 +41959 2018 full of nostalgic comments from the now middle-aged participants 2 +41960 2018 of nostalgic comments from the now middle-aged participants 3 +41961 2018 nostalgic comments from the now middle-aged participants 3 +41962 2018 nostalgic comments 3 +41963 2018 comments 2 +41964 2018 from the now middle-aged participants 2 +41965 2018 the now middle-aged participants 2 +41966 2018 now middle-aged participants 2 +41967 2018 middle-aged participants 2 +41968 2018 participants 2 +41969 2018 , Dogtown and Z-Boys has a compelling story to tell . 3 +41970 2018 Dogtown and Z-Boys has a compelling story to tell . 3 +41971 2018 Dogtown and Z-Boys 2 +41972 2018 Dogtown and 2 +41973 2018 Z-Boys 2 +41974 2018 has a compelling story to tell . 4 +41975 2018 has a compelling story to tell 3 +41976 2018 a compelling story to tell 3 +41977 2018 compelling story to tell 4 +41978 2018 story to tell 2 +41979 2019 fast , frantic and fun , but also soon forgotten 2 +41980 2019 , frantic and fun , but also soon forgotten 2 +41981 2019 frantic and fun , but also soon forgotten 3 +41982 2019 frantic and fun 3 +41983 2019 frantic and 2 +41984 2019 frantic 1 +41985 2019 , but also soon forgotten 1 +41986 2019 , but also 2 +41987 2019 soon forgotten 1 +41988 2020 Deliciously slow . 3 +41989 2020 slow . 1 +41990 2021 To build a feel-good fantasy around a vain dictator-madman is off-putting , to say the least , not to mention inappropriate and wildly undeserved . 0 +41991 2021 To build a feel-good fantasy around a vain dictator-madman 1 +41992 2021 build a feel-good fantasy around a vain dictator-madman 3 +41993 2021 build a feel-good fantasy 4 +41994 2021 a feel-good fantasy 3 +41995 2021 feel-good fantasy 2 +41996 2021 around a vain dictator-madman 2 +41997 2021 a vain dictator-madman 2 +41998 2021 vain dictator-madman 2 +41999 2021 dictator-madman 2 +42000 2021 is off-putting , to say the least , not to mention inappropriate and wildly undeserved . 0 +42001 2021 is off-putting , to say the least , not to mention inappropriate and wildly undeserved 2 +42002 2021 is off-putting , 1 +42003 2021 is off-putting 1 +42004 2021 to say the least , not to mention inappropriate and wildly undeserved 1 +42005 2021 say the least , not to mention inappropriate and wildly undeserved 1 +42006 2021 say the least , 2 +42007 2021 say the least 2 +42008 2021 not to mention inappropriate and wildly undeserved 0 +42009 2021 to mention inappropriate and wildly undeserved 1 +42010 2021 mention inappropriate and wildly undeserved 1 +42011 2021 inappropriate and wildly undeserved 1 +42012 2021 inappropriate and 2 +42013 2021 wildly undeserved 2 +42014 2021 undeserved 2 +42015 2022 Suffice to say its total promise is left slightly unfulfilled . 1 +42016 2022 Suffice to say its total promise 2 +42017 2022 Suffice 2 +42018 2022 to say its total promise 2 +42019 2022 say its total promise 2 +42020 2022 its total promise 3 +42021 2022 total promise 2 +42022 2022 is left slightly unfulfilled . 1 +42023 2022 is left slightly unfulfilled 1 +42024 2022 left slightly unfulfilled 1 +42025 2022 slightly unfulfilled 1 +42026 2022 unfulfilled 1 +42027 2023 Those who want to be jolted out of their gourd should drop everything and run to Ichi . 3 +42028 2023 Those who want to be jolted out of their gourd 2 +42029 2023 who want to be jolted out of their gourd 2 +42030 2023 want to be jolted out of their gourd 3 +42031 2023 to be jolted out of their gourd 2 +42032 2023 be jolted out of their gourd 2 +42033 2023 jolted out of their gourd 2 +42034 2023 jolted out 2 +42035 2023 jolted 2 +42036 2023 of their gourd 2 +42037 2023 their gourd 2 +42038 2023 gourd 2 +42039 2023 should drop everything and run to Ichi . 3 +42040 2023 should drop everything and run to Ichi 3 +42041 2023 drop everything and run to Ichi 3 +42042 2023 drop everything and 2 +42043 2023 drop everything 2 +42044 2023 run to Ichi 2 +42045 2023 to Ichi 2 +42046 2024 An energetic and engaging film that never pretends to be something it is n't . 3 +42047 2024 An energetic and engaging film that never pretends to be something 3 +42048 2024 An energetic and engaging film 4 +42049 2024 energetic and engaging film 3 +42050 2024 energetic 3 +42051 2024 and engaging film 4 +42052 2024 engaging film 4 +42053 2024 that never pretends to be something 2 +42054 2024 never pretends to be something 2 +42055 2024 pretends to be something 2 +42056 2024 pretends 2 +42057 2024 to be something 2 +42058 2024 be something 2 +42059 2024 it is n't . 2 +42060 2024 is n't . 1 +42061 2025 An enormously entertaining movie , like nothing we 've ever seen before , and yet completely familiar . 4 +42062 2025 An enormously entertaining movie 3 +42063 2025 enormously entertaining movie 4 +42064 2025 enormously entertaining 4 +42065 2025 enormously 2 +42066 2025 , like nothing we 've ever seen before , and yet completely familiar . 3 +42067 2025 like nothing we 've ever seen before , and yet completely familiar . 2 +42068 2025 like nothing 2 +42069 2025 we 've ever seen before , and yet completely familiar . 2 +42070 2025 've ever seen before , and yet completely familiar . 3 +42071 2025 've ever seen before , and yet completely familiar 2 +42072 2025 ever seen before , and yet completely familiar 2 +42073 2025 seen before , and yet completely familiar 2 +42074 2025 before , and yet completely familiar 2 +42075 2025 , and yet completely familiar 2 +42076 2025 and yet completely familiar 3 +42077 2025 yet completely familiar 2 +42078 2025 completely familiar 3 +42079 2026 An odd drama set in the world of lingerie models and bar dancers in the Midwest that held my interest precisely because it did n't try to . 4 +42080 2026 An odd drama 1 +42081 2026 odd drama 1 +42082 2026 set in the world of lingerie models and bar dancers in the Midwest that held my interest precisely because it did n't try to . 3 +42083 2026 set in the world of lingerie models and bar dancers in the Midwest that held my interest precisely because it did n't try to 4 +42084 2026 set in the world of lingerie models and bar dancers 3 +42085 2026 in the world of lingerie models and bar dancers 2 +42086 2026 the world of lingerie models and bar dancers 2 +42087 2026 of lingerie models and bar dancers 3 +42088 2026 lingerie models and bar dancers 1 +42089 2026 lingerie 2 +42090 2026 models and bar dancers 2 +42091 2026 models 2 +42092 2026 and bar dancers 2 +42093 2026 bar dancers 2 +42094 2026 bar 2 +42095 2026 dancers 2 +42096 2026 in the Midwest that held my interest precisely because it did n't try to 3 +42097 2026 the Midwest that held my interest precisely because it did n't try to 2 +42098 2026 the Midwest 2 +42099 2026 Midwest 2 +42100 2026 that held my interest precisely because it did n't try to 3 +42101 2026 held my interest precisely because it did n't try to 3 +42102 2026 held my interest precisely 3 +42103 2026 held my interest 3 +42104 2026 my interest 2 +42105 2026 precisely 3 +42106 2026 because it did n't try to 2 +42107 2026 it did n't try to 2 +42108 2026 did n't try to 2 +42109 2026 try to 2 +42110 2027 Australian actor\/director John Polson and award-winning English cinematographer Giles Nuttgens make a terrific effort at disguising the obvious with energy and innovation . 3 +42111 2027 Australian actor\/director John Polson and award-winning English cinematographer Giles Nuttgens 2 +42112 2027 Australian actor\/director John Polson and 2 +42113 2027 Australian actor\/director John Polson 2 +42114 2027 Australian 2 +42115 2027 actor\/director John Polson 2 +42116 2027 actor\/director 2 +42117 2027 John Polson 2 +42118 2027 Polson 2 +42119 2027 award-winning English cinematographer Giles Nuttgens 3 +42120 2027 award-winning 4 +42121 2027 English cinematographer Giles Nuttgens 2 +42122 2027 cinematographer Giles Nuttgens 2 +42123 2027 Giles Nuttgens 2 +42124 2027 Giles 2 +42125 2027 Nuttgens 2 +42126 2027 make a terrific effort at disguising the obvious with energy and innovation . 2 +42127 2027 make a terrific effort at disguising the obvious with energy and innovation 3 +42128 2027 make a terrific effort 3 +42129 2027 a terrific effort 4 +42130 2027 terrific effort 4 +42131 2027 at disguising the obvious with energy and innovation 2 +42132 2027 disguising the obvious with energy and innovation 3 +42133 2027 disguising the obvious 2 +42134 2027 disguising 2 +42135 2027 the obvious 2 +42136 2027 with energy and innovation 3 +42137 2027 energy and innovation 3 +42138 2028 Belongs in the too-hot-for-TV direct-to-video\/DVD category , and this is why I have given it a one-star rating . 1 +42139 2028 Belongs in the too-hot-for-TV direct-to-video\/DVD category , and this 2 +42140 2028 in the too-hot-for-TV direct-to-video\/DVD category , and this 2 +42141 2028 the too-hot-for-TV direct-to-video\/DVD category , and this 2 +42142 2028 the too-hot-for-TV direct-to-video\/DVD category , and 1 +42143 2028 the too-hot-for-TV direct-to-video\/DVD category , 1 +42144 2028 the too-hot-for-TV direct-to-video\/DVD category 2 +42145 2028 too-hot-for-TV direct-to-video\/DVD category 1 +42146 2028 too-hot-for-TV 2 +42147 2028 direct-to-video\/DVD category 1 +42148 2028 direct-to-video\/DVD 1 +42149 2028 is why I have given it a one-star rating . 0 +42150 2028 is why I have given it a one-star rating 0 +42151 2028 why I have given it a one-star rating 0 +42152 2028 I have given it a one-star rating 1 +42153 2028 have given it a one-star rating 0 +42154 2028 given it a one-star rating 0 +42155 2028 given it 2 +42156 2028 a one-star rating 0 +42157 2028 one-star rating 0 +42158 2028 one-star 0 +42159 2029 Ultimately feels like just one more in the long line of films this year about the business of making movies . 2 +42160 2029 feels like just one more in the long line of films this year about the business of making movies . 2 +42161 2029 feels like just one more in the long line of films this year about the business of making movies 1 +42162 2029 feels like just one more in the long line of films 1 +42163 2029 feels like just one more 3 +42164 2029 like just one more 2 +42165 2029 just one more 2 +42166 2029 just one 2 +42167 2029 in the long line of films 2 +42168 2029 the long line of films 2 +42169 2029 the long line 2 +42170 2029 of films 2 +42171 2029 this year about the business of making movies 2 +42172 2029 about the business of making movies 2 +42173 2029 the business of making movies 2 +42174 2029 the business 2 +42175 2029 of making movies 2 +42176 2030 A wordy wisp of a comedy . 2 +42177 2030 A wordy wisp of a comedy 1 +42178 2030 A wordy wisp 2 +42179 2030 wordy wisp 2 +42180 2030 wordy 1 +42181 2030 wisp 2 +42182 2030 of a comedy 2 +42183 2031 A punch line without a premise , a joke built entirely from musty memories of half-dimensional characters . 2 +42184 2031 A punch line without a premise , a joke 1 +42185 2031 A punch line 2 +42186 2031 punch line 3 +42187 2031 without a premise , a joke 2 +42188 2031 a premise , a joke 2 +42189 2031 a premise , 2 +42190 2031 a premise 2 +42191 2031 built entirely from musty memories of half-dimensional characters . 1 +42192 2031 built entirely from musty memories of half-dimensional characters 2 +42193 2031 built entirely 2 +42194 2031 from musty memories of half-dimensional characters 2 +42195 2031 musty memories of half-dimensional characters 1 +42196 2031 musty memories 2 +42197 2031 of half-dimensional characters 1 +42198 2031 half-dimensional characters 1 +42199 2031 half-dimensional 2 +42200 2032 Nachtwey clears the cynicism right out of you . 2 +42201 2032 clears the cynicism right out of you . 3 +42202 2032 clears the cynicism right out of you 3 +42203 2032 clears 2 +42204 2032 the cynicism right out of you 3 +42205 2032 the cynicism 2 +42206 2032 cynicism 1 +42207 2032 right out of you 2 +42208 2033 she of the impossibly long limbs and sweetly conspiratorial smile 3 +42209 2033 of the impossibly long limbs and sweetly conspiratorial smile 3 +42210 2033 the impossibly long limbs and sweetly conspiratorial smile 3 +42211 2033 impossibly long limbs and sweetly conspiratorial smile 2 +42212 2033 impossibly long limbs and sweetly conspiratorial 3 +42213 2033 impossibly long limbs and 2 +42214 2033 impossibly long limbs 3 +42215 2033 long limbs 2 +42216 2033 limbs 2 +42217 2033 sweetly conspiratorial 3 +42218 2033 conspiratorial 2 +42219 2033 is a towering siren . 3 +42220 2033 is a towering siren 2 +42221 2033 a towering siren 2 +42222 2033 towering siren 2 +42223 2033 towering 2 +42224 2033 siren 1 +42225 2034 The film delivers what it promises : A look at the `` wild ride '' that ensues when brash young men set out to conquer the online world with laptops , cell phones and sketchy business plans . 3 +42226 2034 delivers what it promises : A look at the `` wild ride '' that ensues when brash young men set out to conquer the online world with laptops , cell phones and sketchy business plans . 3 +42227 2034 delivers what it promises : A look at the `` wild ride '' that ensues when brash young men set out to conquer the online world with laptops , cell phones and sketchy business plans 3 +42228 2034 what it promises : A look at the `` wild ride '' that ensues when brash young men set out to conquer the online world with laptops , cell phones and sketchy business plans 2 +42229 2034 it promises : A look at the `` wild ride '' that ensues when brash young men set out to conquer the online world with laptops , cell phones and sketchy business plans 2 +42230 2034 promises : A look at the `` wild ride '' that ensues when brash young men set out to conquer the online world with laptops , cell phones and sketchy business plans 2 +42231 2034 promises : 2 +42232 2034 A look at the `` wild ride '' that ensues when brash young men set out to conquer the online world with laptops , cell phones and sketchy business plans 3 +42233 2034 A look 3 +42234 2034 at the `` wild ride '' that ensues when brash young men set out to conquer the online world with laptops , cell phones and sketchy business plans 2 +42235 2034 the `` wild ride '' that ensues when brash young men set out to conquer the online world with laptops , cell phones and sketchy business plans 2 +42236 2034 the `` wild ride '' 2 +42237 2034 `` wild ride '' 3 +42238 2034 wild ride '' 3 +42239 2034 ride '' 2 +42240 2034 that ensues when brash young men set out to conquer the online world with laptops , cell phones and sketchy business plans 2 +42241 2034 ensues when brash young men set out to conquer the online world with laptops , cell phones and sketchy business plans 1 +42242 2034 ensues 2 +42243 2034 when brash young men set out to conquer the online world with laptops , cell phones and sketchy business plans 2 +42244 2034 brash young men set out to conquer the online world with laptops , cell phones and sketchy business plans 3 +42245 2034 brash young men 2 +42246 2034 young men 2 +42247 2034 set out to conquer the online world with laptops , cell phones and sketchy business plans 2 +42248 2034 set out 2 +42249 2034 to conquer the online world with laptops , cell phones and sketchy business plans 2 +42250 2034 conquer the online world with laptops , cell phones and sketchy business plans 2 +42251 2034 conquer the online world 2 +42252 2034 conquer 2 +42253 2034 the online world 2 +42254 2034 online world 2 +42255 2034 online 2 +42256 2034 with laptops , cell phones and sketchy business plans 1 +42257 2034 laptops , cell phones and sketchy business plans 2 +42258 2034 laptops , cell phones and 2 +42259 2034 laptops , cell phones 2 +42260 2034 laptops , 2 +42261 2034 laptops 2 +42262 2034 sketchy business plans 2 +42263 2034 sketchy 1 +42264 2034 business plans 3 +42265 2034 plans 2 +42266 2035 Bring on the sequel . 3 +42267 2035 Bring on the sequel 3 +42268 2035 on the sequel 2 +42269 2036 -LRB- It -RRB- highlights not so much the crime lord 's messianic bent , but Spacey 's . 2 +42270 2036 -LRB- It -RRB- highlights not so much the crime lord 's messianic bent , but Spacey 's 2 +42271 2036 -LRB- It -RRB- highlights not so much the crime lord 's messianic bent , but 2 +42272 2036 -LRB- It -RRB- highlights not so much the crime lord 's messianic bent , 3 +42273 2036 -LRB- It -RRB- highlights not so much the crime lord 's messianic bent 2 +42274 2036 It -RRB- highlights not so much the crime lord 's messianic bent 2 +42275 2036 -RRB- highlights not so much the crime lord 's messianic bent 2 +42276 2036 highlights not so much the crime lord 's messianic bent 2 +42277 2036 highlights not so much 2 +42278 2036 highlights 2 +42279 2036 not so much 2 +42280 2036 the crime lord 's messianic bent 2 +42281 2036 the crime lord 's 2 +42282 2036 crime lord 's 2 +42283 2036 lord 's 2 +42284 2036 lord 2 +42285 2036 messianic bent 2 +42286 2036 messianic 2 +42287 2036 Spacey 's 2 +42288 2036 Spacey 2 +42289 2037 The date movie that Franz Kafka would have made . 2 +42290 2037 The date 2 +42291 2037 movie that Franz Kafka would have made . 2 +42292 2037 movie that Franz Kafka would have made 2 +42293 2037 that Franz Kafka would have made 2 +42294 2037 Franz Kafka would have made 2 +42295 2037 Franz Kafka 2 +42296 2037 Franz 2 +42297 2037 would have made 2 +42298 2037 have made 2 +42299 2038 This charming , thought-provoking New York fest of life and love has its rewards . 4 +42300 2038 This charming , thought-provoking New York fest of life and love 3 +42301 2038 This charming , thought-provoking New York fest 4 +42302 2038 charming , thought-provoking New York fest 3 +42303 2038 , thought-provoking New York fest 3 +42304 2038 thought-provoking New York fest 3 +42305 2038 New York fest 2 +42306 2038 York fest 2 +42307 2038 of life and love 2 +42308 2038 life and love 3 +42309 2038 has its rewards . 3 +42310 2038 has its rewards 4 +42311 2038 its rewards 2 +42312 2039 Frida is certainly no disaster , but neither is it the Kahlo movie Frida fans have been looking for . 2 +42313 2039 Frida is certainly no disaster , but neither is it the Kahlo movie Frida fans have been looking for 2 +42314 2039 Frida is certainly no disaster , but 2 +42315 2039 Frida is certainly no disaster , 2 +42316 2039 Frida is certainly no disaster 2 +42317 2039 is certainly no disaster 3 +42318 2039 no disaster 2 +42319 2039 neither is it the Kahlo movie Frida fans have been looking for 1 +42320 2039 is it the Kahlo movie Frida fans have been looking for 3 +42321 2039 it the Kahlo movie Frida fans have been looking for 3 +42322 2039 the Kahlo movie Frida fans have been looking for 3 +42323 2039 the Kahlo movie Frida fans 2 +42324 2039 Kahlo movie Frida fans 2 +42325 2039 movie Frida fans 2 +42326 2039 Frida fans 2 +42327 2039 have been looking for 2 +42328 2039 been looking for 2 +42329 2039 looking for 2 +42330 2040 We 've seen the hippie-turned-yuppie plot before , but there 's an enthusiastic charm in Fire that makes the formula fresh again . 3 +42331 2040 We 've seen the hippie-turned-yuppie plot before , but there 's an enthusiastic charm in Fire that makes the formula fresh again 4 +42332 2040 We 've seen the hippie-turned-yuppie plot before , but 1 +42333 2040 We 've seen the hippie-turned-yuppie plot before , 1 +42334 2040 We 've seen the hippie-turned-yuppie plot before 1 +42335 2040 've seen the hippie-turned-yuppie plot before 1 +42336 2040 seen the hippie-turned-yuppie plot before 2 +42337 2040 seen the hippie-turned-yuppie plot 2 +42338 2040 the hippie-turned-yuppie plot 2 +42339 2040 hippie-turned-yuppie plot 2 +42340 2040 hippie-turned-yuppie 2 +42341 2040 there 's an enthusiastic charm in Fire that makes the formula fresh again 4 +42342 2040 's an enthusiastic charm in Fire that makes the formula fresh again 3 +42343 2040 an enthusiastic charm in Fire that makes the formula fresh again 4 +42344 2040 an enthusiastic charm in Fire 4 +42345 2040 an enthusiastic charm 3 +42346 2040 enthusiastic charm 3 +42347 2040 in Fire 2 +42348 2040 that makes the formula fresh again 4 +42349 2040 makes the formula fresh again 4 +42350 2040 the formula fresh again 3 +42351 2040 fresh again 3 +42352 2041 Neither the funniest film that Eddie Murphy nor Robert De Niro has ever made , Showtime is nevertheless efficiently amusing for a good while . 3 +42353 2041 Neither the funniest film that Eddie Murphy nor Robert De Niro has ever made 1 +42354 2041 Neither the funniest film 2 +42355 2041 the funniest film 4 +42356 2041 funniest film 4 +42357 2041 that Eddie Murphy nor Robert De Niro has ever made 2 +42358 2041 Eddie Murphy nor Robert De Niro has ever made 1 +42359 2041 Eddie Murphy nor Robert De Niro 2 +42360 2041 Eddie 2 +42361 2041 Murphy nor Robert De Niro 2 +42362 2041 nor Robert De Niro 2 +42363 2041 Robert De Niro 2 +42364 2041 has ever made 2 +42365 2041 , Showtime is nevertheless efficiently amusing for a good while . 2 +42366 2041 Showtime is nevertheless efficiently amusing for a good while . 3 +42367 2041 is nevertheless efficiently amusing for a good while . 3 +42368 2041 is nevertheless efficiently amusing for a good while 3 +42369 2041 nevertheless efficiently amusing for a good while 3 +42370 2041 nevertheless efficiently 3 +42371 2041 nevertheless 2 +42372 2041 amusing for a good while 3 +42373 2041 for a good while 2 +42374 2041 a good while 2 +42375 2041 good while 2 +42376 2042 Mild , meandering teen flick . 2 +42377 2042 , meandering teen flick . 2 +42378 2042 meandering teen flick . 2 +42379 2042 meandering teen flick 1 +42380 2042 teen flick 2 +42381 2043 Viewed as a comedy , a romance , a fairy tale , or a drama , there 's nothing remotely triumphant about this motion picture . 2 +42382 2043 Viewed as a comedy , a romance , a fairy tale , or a drama 3 +42383 2043 as a comedy , a romance , a fairy tale , or a drama 3 +42384 2043 a comedy , a romance , a fairy tale , or a drama 2 +42385 2043 a comedy , a romance , a fairy tale , or 2 +42386 2043 a comedy , a romance , a fairy tale , 3 +42387 2043 a comedy , a romance , a fairy tale 3 +42388 2043 a comedy , a romance , 3 +42389 2043 a comedy , a romance 3 +42390 2043 a comedy , 2 +42391 2043 a romance 2 +42392 2043 , there 's nothing remotely triumphant about this motion picture . 0 +42393 2043 there 's nothing remotely triumphant about this motion picture . 0 +42394 2043 's nothing remotely triumphant about this motion picture . 0 +42395 2043 's nothing remotely triumphant about this motion picture 2 +42396 2043 remotely triumphant about this motion picture 3 +42397 2043 triumphant about this motion picture 3 +42398 2043 triumphant 3 +42399 2043 about this motion picture 2 +42400 2043 this motion picture 2 +42401 2044 An intriguing look at the French film industry during the German occupation ; its most delightful moments come when various characters express their quirky inner selves . 3 +42402 2044 An intriguing look at the French film industry during the German occupation ; its most delightful moments come when various characters express their quirky inner selves 3 +42403 2044 An intriguing look at the French film industry during the German occupation ; 3 +42404 2044 An intriguing look at the French film industry during the German occupation 3 +42405 2044 An intriguing look 3 +42406 2044 intriguing look 3 +42407 2044 at the French film industry during the German occupation 2 +42408 2044 the French film industry during the German occupation 2 +42409 2044 the French film industry 2 +42410 2044 French film industry 2 +42411 2044 film industry 2 +42412 2044 during the German occupation 2 +42413 2044 the German occupation 1 +42414 2044 German occupation 2 +42415 2044 German 2 +42416 2044 occupation 2 +42417 2044 its most delightful moments come when various characters express their quirky inner selves 3 +42418 2044 its most delightful moments 3 +42419 2044 most delightful moments 3 +42420 2044 most delightful 4 +42421 2044 come when various characters express their quirky inner selves 3 +42422 2044 when various characters express their quirky inner selves 3 +42423 2044 various characters express their quirky inner selves 3 +42424 2044 various characters 2 +42425 2044 express their quirky inner selves 2 +42426 2044 their quirky inner selves 3 +42427 2044 quirky inner selves 2 +42428 2044 inner selves 2 +42429 2044 selves 2 +42430 2045 A special kind of movie , this melancholic film noir reminded me a lot of Memento ... 4 +42431 2045 A special kind of movie 3 +42432 2045 A special kind 3 +42433 2045 special kind 2 +42434 2045 , this melancholic film noir reminded me a lot of Memento ... 3 +42435 2045 this melancholic film noir reminded me a lot of Memento ... 2 +42436 2045 this melancholic film noir 2 +42437 2045 melancholic film noir 2 +42438 2045 melancholic 1 +42439 2045 film noir 2 +42440 2045 noir 2 +42441 2045 reminded me a lot of Memento ... 2 +42442 2045 reminded me a lot of Memento 2 +42443 2045 reminded 2 +42444 2045 me a lot of Memento 3 +42445 2045 a lot of Memento 2 +42446 2045 of Memento 2 +42447 2046 ... hopefully it 'll be at the dollar theatres by the time Christmas rolls around . 2 +42448 2046 hopefully it 'll be at the dollar theatres by the time Christmas rolls around . 2 +42449 2046 hopefully it 'll be at the dollar theatres by the time Christmas rolls around 1 +42450 2046 it 'll be at the dollar theatres by the time Christmas rolls around 0 +42451 2046 'll be at the dollar theatres by the time Christmas rolls around 1 +42452 2046 be at the dollar theatres by the time Christmas rolls around 0 +42453 2046 be at the dollar theatres 2 +42454 2046 at the dollar theatres 2 +42455 2046 the dollar theatres 2 +42456 2046 dollar theatres 2 +42457 2046 dollar 2 +42458 2046 by the time Christmas rolls around 2 +42459 2046 the time Christmas rolls around 2 +42460 2046 Christmas rolls around 2 +42461 2046 Christmas 2 +42462 2046 rolls around 2 +42463 2046 rolls 2 +42464 2047 Exposing the ways we fool ourselves is One Hour Photo 's real strength . 2 +42465 2047 Exposing the ways 2 +42466 2047 Exposing 2 +42467 2047 we fool ourselves is One Hour Photo 's real strength . 2 +42468 2047 fool ourselves is One Hour Photo 's real strength . 2 +42469 2047 fool ourselves is One Hour Photo 's real strength 2 +42470 2047 ourselves is One Hour Photo 's real strength 3 +42471 2047 ourselves 2 +42472 2047 is One Hour Photo 's real strength 3 +42473 2047 One Hour Photo 's real strength 2 +42474 2047 One Hour Photo 's 2 +42475 2047 Hour Photo 's 2 +42476 2047 Photo 's 2 +42477 2047 real strength 4 +42478 2048 Just another combination of bad animation and mindless violence ... lacking the slightest bit of wit or charm . 0 +42479 2048 Just another combination of bad animation and mindless violence ... lacking the slightest bit of wit or charm 0 +42480 2048 Just another combination of bad animation and mindless violence ... lacking the slightest bit 0 +42481 2048 Just another combination of bad animation and mindless violence ... 1 +42482 2048 Just another combination of bad animation and mindless violence 0 +42483 2048 Just another combination 2 +42484 2048 another combination 2 +42485 2048 of bad animation and mindless violence 0 +42486 2048 bad animation and mindless violence 1 +42487 2048 bad animation and 1 +42488 2048 bad animation 1 +42489 2048 mindless violence 2 +42490 2048 lacking the slightest bit 1 +42491 2048 the slightest bit 2 +42492 2048 slightest bit 2 +42493 2048 of wit or charm 3 +42494 2048 wit or charm 2 +42495 2049 Proof once again that if the filmmakers just follow the books , they ca n't go wrong . 4 +42496 2049 Proof once again that if the filmmakers just follow the books 1 +42497 2049 Proof once again 2 +42498 2049 Proof 2 +42499 2049 that if the filmmakers just follow the books 1 +42500 2049 that if 2 +42501 2049 the filmmakers just follow the books 1 +42502 2049 just follow the books 2 +42503 2049 follow the books 2 +42504 2049 the books 2 +42505 2049 books 2 +42506 2049 , they ca n't go wrong . 3 +42507 2049 they ca n't go wrong . 3 +42508 2049 ca n't go wrong . 4 +42509 2049 ca n't go wrong 3 +42510 2049 go wrong 1 +42511 2050 A strong script , powerful direction and splendid production design allows us to be transported into the life of Wladyslaw Szpilman , who is not only a pianist , but a good human being . 4 +42512 2050 A strong script , powerful direction and splendid production design 3 +42513 2050 A strong script , powerful direction and 3 +42514 2050 A strong script , powerful direction 4 +42515 2050 A strong script , 3 +42516 2050 A strong script 3 +42517 2050 strong script 3 +42518 2050 powerful direction 4 +42519 2050 splendid production design 4 +42520 2050 splendid 4 +42521 2050 production design 2 +42522 2050 allows us to be transported into the life of Wladyslaw Szpilman , who is not only a pianist , but a good human being . 3 +42523 2050 allows us to be transported into the life of Wladyslaw Szpilman , who is not only a pianist , but a good human being 3 +42524 2050 us to be transported into the life of Wladyslaw Szpilman , who is not only a pianist , but a good human being 2 +42525 2050 to be transported into the life of Wladyslaw Szpilman , who is not only a pianist , but a good human being 3 +42526 2050 be transported into the life of Wladyslaw Szpilman , who is not only a pianist , but a good human being 3 +42527 2050 transported into the life of Wladyslaw Szpilman , who is not only a pianist , but a good human being 3 +42528 2050 transported 2 +42529 2050 into the life of Wladyslaw Szpilman , who is not only a pianist , but a good human being 3 +42530 2050 the life of Wladyslaw Szpilman , who is not only a pianist , but a good human being 3 +42531 2050 of Wladyslaw Szpilman , who is not only a pianist , but a good human being 3 +42532 2050 Wladyslaw Szpilman , who is not only a pianist , but a good human being 2 +42533 2050 Wladyslaw Szpilman , 2 +42534 2050 Wladyslaw Szpilman 2 +42535 2050 Wladyslaw 2 +42536 2050 Szpilman 2 +42537 2050 who is not only a pianist , but a good human being 3 +42538 2050 is not only a pianist , but a good human being 4 +42539 2050 not only a pianist , but a good human being 4 +42540 2050 a pianist , but a good human being 3 +42541 2050 a pianist , but 2 +42542 2050 a pianist , 2 +42543 2050 a pianist 2 +42544 2050 a good human being 4 +42545 2050 a good human 3 +42546 2050 good human 3 +42547 2051 Basically , it 's pretty but dumb . 2 +42548 2051 , it 's pretty but dumb . 1 +42549 2051 it 's pretty but dumb . 2 +42550 2051 's pretty but dumb . 1 +42551 2051 's pretty but dumb 1 +42552 2051 pretty but dumb 1 +42553 2051 pretty but 3 +42554 2052 -LRB- A -RRB- soulless , stupid sequel ... 0 +42555 2052 -LRB- A -RRB- soulless , stupid sequel 0 +42556 2052 -LRB- A -RRB- soulless , 0 +42557 2052 -LRB- A -RRB- soulless 1 +42558 2052 A -RRB- soulless 1 +42559 2052 -RRB- soulless 1 +42560 2052 stupid sequel 0 +42561 2053 The low-key direction is pleasingly emphatic in this properly intense , claustrophobic tale of obsessive love . 3 +42562 2053 The low-key direction 2 +42563 2053 low-key direction 2 +42564 2053 is pleasingly emphatic in this properly intense , claustrophobic tale of obsessive love . 3 +42565 2053 is pleasingly emphatic in this properly intense , claustrophobic tale of obsessive love 3 +42566 2053 pleasingly emphatic in this properly intense , claustrophobic tale of obsessive love 4 +42567 2053 emphatic in this properly intense , claustrophobic tale of obsessive love 2 +42568 2053 emphatic 3 +42569 2053 in this properly intense , claustrophobic tale of obsessive love 3 +42570 2053 this properly intense , claustrophobic tale of obsessive love 4 +42571 2053 this properly intense , claustrophobic tale 2 +42572 2053 properly intense , claustrophobic tale 3 +42573 2053 properly intense , claustrophobic 2 +42574 2053 properly 2 +42575 2053 intense , claustrophobic 1 +42576 2053 , claustrophobic 1 +42577 2053 of obsessive love 2 +42578 2053 obsessive love 3 +42579 2053 obsessive 1 +42580 2054 The art direction and costumes are gorgeous and finely detailed , and Kurys ' direction is clever and insightful . 4 +42581 2054 The art direction and costumes are gorgeous and finely detailed , and Kurys ' direction is clever and insightful 4 +42582 2054 The art direction and costumes are gorgeous and finely detailed , and 3 +42583 2054 The art direction and costumes are gorgeous and finely detailed , 3 +42584 2054 The art direction and costumes are gorgeous and finely detailed 4 +42585 2054 The art direction and costumes 2 +42586 2054 The art direction and 2 +42587 2054 costumes 2 +42588 2054 are gorgeous and finely detailed 4 +42589 2054 gorgeous and finely detailed 4 +42590 2054 gorgeous and 3 +42591 2054 finely detailed 3 +42592 2054 Kurys ' direction is clever and insightful 3 +42593 2054 Kurys ' direction 2 +42594 2054 Kurys ' 2 +42595 2054 Kurys 2 +42596 2054 is clever and insightful 4 +42597 2054 clever and insightful 4 +42598 2055 It sticks rigidly to the paradigm , rarely permitting its characters more than two obvious dimensions and repeatedly placing them in contrived , well-worn situations . 1 +42599 2055 sticks rigidly to the paradigm , rarely permitting its characters more than two obvious dimensions and repeatedly placing them in contrived , well-worn situations . 0 +42600 2055 sticks rigidly to the paradigm , rarely permitting its characters more than two obvious dimensions and repeatedly placing them in contrived , well-worn situations 1 +42601 2055 sticks rigidly to the paradigm , 1 +42602 2055 sticks rigidly to the paradigm 2 +42603 2055 sticks rigidly 2 +42604 2055 rigidly 2 +42605 2055 to the paradigm 2 +42606 2055 the paradigm 2 +42607 2055 paradigm 2 +42608 2055 rarely permitting its characters more than two obvious dimensions and repeatedly placing them in contrived , well-worn situations 1 +42609 2055 permitting its characters more than two obvious dimensions and repeatedly placing them in contrived , well-worn situations 1 +42610 2055 permitting its characters more than two obvious dimensions and repeatedly 2 +42611 2055 permitting its characters more than two obvious dimensions and 2 +42612 2055 permitting its characters more than two obvious dimensions 2 +42613 2055 permitting its characters more 2 +42614 2055 permitting its characters 2 +42615 2055 permitting 2 +42616 2055 than two obvious dimensions 2 +42617 2055 two obvious dimensions 2 +42618 2055 obvious dimensions 2 +42619 2055 repeatedly 2 +42620 2055 placing them in contrived , well-worn situations 2 +42621 2055 placing them 2 +42622 2055 in contrived , well-worn situations 2 +42623 2055 contrived , well-worn situations 1 +42624 2055 , well-worn situations 2 +42625 2055 well-worn situations 1 +42626 2055 well-worn 2 +42627 2056 They crush each other under cars , throw each other out windows , electrocute and dismember their victims in full consciousness . 1 +42628 2056 crush each other under cars , throw each other out windows , electrocute and dismember their victims in full consciousness . 1 +42629 2056 crush each other under cars , throw each other out windows , electrocute and dismember their victims in full consciousness 2 +42630 2056 crush each other under cars , throw each other out windows , 2 +42631 2056 crush each other under cars , throw each other out windows 2 +42632 2056 crush each other under cars , 2 +42633 2056 crush each other under cars 2 +42634 2056 crush each other 1 +42635 2056 under cars 3 +42636 2056 throw each other out windows 1 +42637 2056 throw each other 2 +42638 2056 out windows 2 +42639 2056 windows 2 +42640 2056 electrocute and dismember their victims in full consciousness 0 +42641 2056 electrocute and dismember their victims 2 +42642 2056 electrocute and dismember 1 +42643 2056 electrocute and 2 +42644 2056 electrocute 2 +42645 2056 dismember 1 +42646 2056 their victims 2 +42647 2056 in full consciousness 3 +42648 2056 full consciousness 2 +42649 2057 He seems to want both , but succeeds in making neither . 1 +42650 2057 seems to want both , but succeeds in making neither . 1 +42651 2057 seems to want both , but succeeds in making neither 1 +42652 2057 seems to want both , but 2 +42653 2057 seems to want both , 2 +42654 2057 seems to want both 2 +42655 2057 to want both 2 +42656 2057 want both 2 +42657 2057 succeeds in making neither 1 +42658 2057 in making neither 2 +42659 2057 making neither 2 +42660 2058 Full of surprises . 3 +42661 2058 Full of surprises 3 +42662 2058 of surprises 3 +42663 2059 Forgettable , if good-hearted , movie . 1 +42664 2059 , if good-hearted , movie . 3 +42665 2059 if good-hearted , movie . 3 +42666 2059 if good-hearted 3 +42667 2059 , movie . 2 +42668 2060 Just as the lousy Tarantino imitations have subsided , here comes the first lousy Guy Ritchie imitation . 1 +42669 2060 Just as the lousy Tarantino imitations have subsided 1 +42670 2060 as the lousy Tarantino imitations have subsided 1 +42671 2060 the lousy Tarantino imitations have subsided 2 +42672 2060 the lousy Tarantino imitations 1 +42673 2060 lousy Tarantino imitations 0 +42674 2060 Tarantino imitations 2 +42675 2060 imitations 1 +42676 2060 have subsided 2 +42677 2060 subsided 2 +42678 2060 , here comes the first lousy Guy Ritchie imitation . 0 +42679 2060 here comes the first lousy Guy Ritchie imitation . 2 +42680 2060 comes the first lousy Guy Ritchie imitation . 1 +42681 2060 comes the first lousy Guy Ritchie imitation 1 +42682 2060 the first lousy Guy Ritchie imitation 1 +42683 2060 first lousy Guy Ritchie imitation 1 +42684 2060 lousy Guy Ritchie imitation 1 +42685 2060 Guy Ritchie imitation 2 +42686 2060 Ritchie imitation 2 +42687 2060 imitation 1 +42688 2061 Not even Felinni would know what to make of this Italian freakshow . 0 +42689 2061 even Felinni would know what to make of this Italian freakshow . 1 +42690 2061 Felinni would know what to make of this Italian freakshow . 2 +42691 2061 Felinni 2 +42692 2061 would know what to make of this Italian freakshow . 1 +42693 2061 would know what to make of this Italian freakshow 1 +42694 2061 know what to make of this Italian freakshow 1 +42695 2061 what to make of this Italian freakshow 1 +42696 2061 to make of this Italian freakshow 1 +42697 2061 make of this Italian freakshow 2 +42698 2061 of this Italian freakshow 2 +42699 2061 this Italian freakshow 1 +42700 2061 Italian freakshow 1 +42701 2061 freakshow 0 +42702 2062 About Amy 's cuteness , Amy 's career success -LRB- she 's a best-selling writer of self-help books who ca n't help herself -RRB- , and Amy 's neuroses when it comes to men . 2 +42703 2062 About Amy 2 +42704 2062 's cuteness , Amy 's career success -LRB- she 's a best-selling writer of self-help books who ca n't help herself -RRB- , and Amy 's neuroses when it comes to men . 2 +42705 2062 's cuteness , Amy 's career success -LRB- she 's a best-selling writer of self-help books who ca n't help herself -RRB- , and Amy 's neuroses when it comes to men 2 +42706 2062 cuteness , Amy 's career success -LRB- she 's a best-selling writer of self-help books who ca n't help herself -RRB- , and Amy 's neuroses when it comes to men 2 +42707 2062 cuteness , Amy 's career success -LRB- she 's a best-selling writer of self-help books who ca n't help herself -RRB- , and 3 +42708 2062 cuteness , Amy 's career success -LRB- she 's a best-selling writer of self-help books who ca n't help herself -RRB- , 2 +42709 2062 cuteness , Amy 's career success -LRB- she 's a best-selling writer of self-help books who ca n't help herself -RRB- 3 +42710 2062 cuteness , Amy 's career success 3 +42711 2062 cuteness , 2 +42712 2062 Amy 's career success 3 +42713 2062 career success 3 +42714 2062 -LRB- she 's a best-selling writer of self-help books who ca n't help herself -RRB- 1 +42715 2062 she 's a best-selling writer of self-help books who ca n't help herself -RRB- 2 +42716 2062 she 's a best-selling writer of self-help books who ca n't help herself 1 +42717 2062 's a best-selling writer of self-help books who ca n't help herself 2 +42718 2062 a best-selling writer of self-help books who ca n't help herself 1 +42719 2062 a best-selling writer of self-help books 2 +42720 2062 a best-selling writer 3 +42721 2062 best-selling writer 2 +42722 2062 best-selling 3 +42723 2062 of self-help books 2 +42724 2062 self-help books 2 +42725 2062 self-help 2 +42726 2062 who ca n't help herself 2 +42727 2062 ca n't help herself 3 +42728 2062 help herself 2 +42729 2062 Amy 's neuroses when it comes to men 2 +42730 2062 Amy 's neuroses 1 +42731 2062 neuroses 2 +42732 2062 when it comes to men 2 +42733 2062 it comes to men 2 +42734 2062 comes to men 2 +42735 2062 to men 2 +42736 2063 Fails as a dystopian movie , as a retooling of Fahrenheit 451 , and even as a rip-off of The Matrix . 0 +42737 2063 Fails as a dystopian movie , as a retooling of Fahrenheit 451 , and even as a rip-off of The Matrix 0 +42738 2063 Fails as a dystopian movie , 1 +42739 2063 Fails as a dystopian movie 2 +42740 2063 as a dystopian movie 1 +42741 2063 a dystopian movie 2 +42742 2063 dystopian movie 2 +42743 2063 dystopian 3 +42744 2063 as a retooling of Fahrenheit 451 , and even as a rip-off of The Matrix 1 +42745 2063 a retooling of Fahrenheit 451 , and even as a rip-off of The Matrix 1 +42746 2063 a retooling of Fahrenheit 451 , and even as 2 +42747 2063 a retooling of Fahrenheit 451 , and even 2 +42748 2063 a retooling of Fahrenheit 451 , and 1 +42749 2063 a retooling of Fahrenheit 451 , 2 +42750 2063 a retooling of Fahrenheit 451 2 +42751 2063 a retooling 2 +42752 2063 of Fahrenheit 451 2 +42753 2063 Fahrenheit 451 3 +42754 2063 Fahrenheit 2 +42755 2063 451 2 +42756 2063 a rip-off of The Matrix 1 +42757 2063 of The Matrix 2 +42758 2063 The Matrix 2 +42759 2064 Tunney , brimming with coltish , neurotic energy , holds the screen like a true star . 4 +42760 2064 Tunney 2 +42761 2064 , brimming with coltish , neurotic energy , holds the screen like a true star . 3 +42762 2064 brimming with coltish , neurotic energy , holds the screen like a true star . 4 +42763 2064 brimming with coltish , neurotic energy 3 +42764 2064 brimming 3 +42765 2064 with coltish , neurotic energy 2 +42766 2064 coltish , neurotic energy 2 +42767 2064 coltish 2 +42768 2064 , neurotic energy 2 +42769 2064 neurotic energy 2 +42770 2064 neurotic 2 +42771 2064 , holds the screen like a true star . 3 +42772 2064 holds the screen like a true star . 3 +42773 2064 holds the screen like a true star 3 +42774 2064 holds 2 +42775 2064 the screen like a true star 3 +42776 2064 like a true star 3 +42777 2064 a true star 3 +42778 2064 true star 3 +42779 2065 Beautiful , cold , oddly colorful and just plain otherworldly , a freaky bit of art that 's there to scare while we delight in the images . 3 +42780 2065 Beautiful , cold , oddly colorful and just plain otherworldly , a freaky bit of art that 's there to scare while we delight in the images 3 +42781 2065 Beautiful , 4 +42782 2065 cold , oddly colorful and just plain otherworldly , a freaky bit of art that 's there to scare while we delight in the images 3 +42783 2065 cold , oddly colorful and just plain otherworldly , 2 +42784 2065 cold , oddly colorful and just plain otherworldly 3 +42785 2065 , oddly colorful and just plain otherworldly 3 +42786 2065 oddly colorful and just plain otherworldly 2 +42787 2065 oddly colorful and just plain 2 +42788 2065 oddly colorful and 3 +42789 2065 oddly colorful 3 +42790 2065 colorful 3 +42791 2065 just plain 1 +42792 2065 a freaky bit of art that 's there to scare while we delight in the images 3 +42793 2065 a freaky bit of art 2 +42794 2065 a freaky bit 2 +42795 2065 freaky bit 2 +42796 2065 freaky 2 +42797 2065 that 's there to scare while we delight in the images 3 +42798 2065 's there to scare while we delight in the images 3 +42799 2065 there to scare while we delight in the images 3 +42800 2065 to scare while we delight in the images 2 +42801 2065 scare while we delight in the images 3 +42802 2065 scare 1 +42803 2065 while we delight in the images 3 +42804 2065 we delight in the images 3 +42805 2065 delight in the images 3 +42806 2065 in the images 2 +42807 2065 the images 2 +42808 2066 A wild , endearing , masterful documentary . 4 +42809 2066 A wild , endearing , masterful documentary 4 +42810 2066 wild , endearing , masterful documentary 4 +42811 2066 wild , endearing , masterful 4 +42812 2066 , endearing , masterful 4 +42813 2066 endearing , masterful 4 +42814 2066 , masterful 3 +42815 2067 Cool gadgets and creatures keep this fresh . 4 +42816 2067 Cool gadgets and creatures 3 +42817 2067 gadgets and creatures 2 +42818 2067 gadgets and 2 +42819 2067 gadgets 3 +42820 2067 keep this fresh . 3 +42821 2067 keep this fresh 3 +42822 2067 this fresh 2 +42823 2068 LaBute was more fun when his characters were torturing each other psychologically and talking about their genitals in public . 2 +42824 2068 was more fun when his characters were torturing each other psychologically and talking about their genitals in public . 2 +42825 2068 was more fun when his characters were torturing each other psychologically and talking about their genitals in public 1 +42826 2068 was more fun 2 +42827 2068 when his characters were torturing each other psychologically and talking about their genitals in public 2 +42828 2068 his characters were torturing each other psychologically and talking about their genitals in public 1 +42829 2068 were torturing each other psychologically and talking about their genitals in public 2 +42830 2068 torturing each other psychologically and talking about their genitals in public 1 +42831 2068 torturing each other psychologically and 1 +42832 2068 torturing each other psychologically 1 +42833 2068 torturing 1 +42834 2068 each other psychologically 3 +42835 2068 other psychologically 2 +42836 2068 talking about their genitals in public 2 +42837 2068 talking about their genitals 2 +42838 2068 about their genitals 2 +42839 2068 their genitals 2 +42840 2068 genitals 3 +42841 2069 A charmer from Belgium . 3 +42842 2069 A charmer from Belgium 3 +42843 2069 A charmer 3 +42844 2069 from Belgium 2 +42845 2070 I 've never bought from telemarketers , but I bought this movie . 3 +42846 2070 I 've never bought from telemarketers , but I bought this movie 3 +42847 2070 I 've never bought from telemarketers , but 2 +42848 2070 I 've never bought from telemarketers , 2 +42849 2070 I 've never bought from telemarketers 2 +42850 2070 've never bought from telemarketers 2 +42851 2070 've never 2 +42852 2070 bought from telemarketers 2 +42853 2070 bought 2 +42854 2070 from telemarketers 2 +42855 2070 telemarketers 2 +42856 2070 I bought this movie 3 +42857 2070 bought this movie 2 +42858 2071 Executed with such gentle but insistent sincerity , with such good humor and appreciation of the daily grind that only the most hardhearted Scrooge could fail to respond . 4 +42859 2071 Executed with such gentle but insistent sincerity , with such good humor and appreciation of the daily grind that only the most hardhearted Scrooge could fail to respond 3 +42860 2071 Executed with such gentle but insistent sincerity , with such good humor and 4 +42861 2071 Executed with such gentle but insistent sincerity , with such good humor 4 +42862 2071 Executed with such gentle but insistent sincerity , 4 +42863 2071 Executed with such gentle but insistent sincerity 3 +42864 2071 with such gentle but insistent sincerity 2 +42865 2071 such gentle but insistent sincerity 2 +42866 2071 gentle but insistent sincerity 3 +42867 2071 gentle but insistent 3 +42868 2071 gentle but 3 +42869 2071 insistent 2 +42870 2071 sincerity 3 +42871 2071 with such good humor 3 +42872 2071 such good humor 3 +42873 2071 good humor 4 +42874 2071 appreciation of the daily grind that only the most hardhearted Scrooge could fail to respond 3 +42875 2071 appreciation of the daily 3 +42876 2071 appreciation 3 +42877 2071 of the daily 2 +42878 2071 the daily 2 +42879 2071 grind that only the most hardhearted Scrooge could fail to respond 3 +42880 2071 that only the most hardhearted Scrooge could fail to respond 2 +42881 2071 only the most hardhearted Scrooge could fail to respond 3 +42882 2071 only the most hardhearted Scrooge 2 +42883 2071 the most hardhearted Scrooge 2 +42884 2071 most hardhearted Scrooge 2 +42885 2071 hardhearted Scrooge 1 +42886 2071 hardhearted 2 +42887 2071 could fail to respond 1 +42888 2071 fail to respond 2 +42889 2071 to respond 2 +42890 2071 respond 2 +42891 2072 Appropriately cynical social commentary aside , # 9 never quite ignites . 1 +42892 2072 Appropriately cynical social commentary aside , # 9 2 +42893 2072 Appropriately cynical social commentary aside , 1 +42894 2072 Appropriately cynical social commentary aside 3 +42895 2072 Appropriately cynical social commentary 3 +42896 2072 Appropriately cynical 2 +42897 2072 Appropriately 3 +42898 2072 social commentary 2 +42899 2072 # 9 2 +42900 2072 # 2 +42901 2072 never quite ignites . 1 +42902 2072 ignites . 2 +42903 2072 ignites 3 +42904 2073 Gorgeous scenes , masterful performances , but the sickly sweet gender normative narrative left an acrid test in this gourmet 's mouth . 2 +42905 2073 Gorgeous scenes , masterful performances , but the sickly sweet gender normative narrative 3 +42906 2073 Gorgeous scenes , masterful performances , 4 +42907 2073 Gorgeous scenes , masterful performances 4 +42908 2073 Gorgeous scenes , 4 +42909 2073 Gorgeous scenes 4 +42910 2073 masterful performances 4 +42911 2073 but the sickly sweet gender normative narrative 2 +42912 2073 the sickly sweet gender normative narrative 1 +42913 2073 sickly sweet gender normative narrative 3 +42914 2073 sickly sweet 0 +42915 2073 sickly 1 +42916 2073 gender normative narrative 2 +42917 2073 normative narrative 2 +42918 2073 normative 2 +42919 2073 left an acrid test in this gourmet 's mouth . 0 +42920 2073 left an acrid test in this gourmet 's mouth 0 +42921 2073 left an acrid test 1 +42922 2073 an acrid test 1 +42923 2073 acrid test 2 +42924 2073 acrid 1 +42925 2073 in this gourmet 's mouth 2 +42926 2073 this gourmet 's mouth 2 +42927 2073 this gourmet 's 2 +42928 2073 gourmet 's 2 +42929 2073 gourmet 3 +42930 2074 Stuffed to the brim with ideas , American instigator Michael Moore 's film is a rambling examination of American gun culture that uses his usual modus operandi of crucifixion through juxtaposition . 3 +42931 2074 Stuffed to the brim with ideas 3 +42932 2074 Stuffed 2 +42933 2074 to the brim with ideas 3 +42934 2074 the brim with ideas 3 +42935 2074 the brim 2 +42936 2074 brim 2 +42937 2074 , American instigator Michael Moore 's film is a rambling examination of American gun culture that uses his usual modus operandi of crucifixion through juxtaposition . 2 +42938 2074 American instigator Michael Moore 's film is a rambling examination of American gun culture that uses his usual modus operandi of crucifixion through juxtaposition . 1 +42939 2074 American instigator Michael Moore 's film 2 +42940 2074 American instigator Michael Moore 's 2 +42941 2074 instigator Michael Moore 's 2 +42942 2074 instigator 2 +42943 2074 Michael Moore 's 2 +42944 2074 Moore 's 2 +42945 2074 is a rambling examination of American gun culture that uses his usual modus operandi of crucifixion through juxtaposition . 1 +42946 2074 is a rambling examination of American gun culture that uses his usual modus operandi of crucifixion through juxtaposition 1 +42947 2074 a rambling examination of American gun culture that uses his usual modus operandi of crucifixion through juxtaposition 1 +42948 2074 a rambling examination of American gun culture 2 +42949 2074 a rambling examination 2 +42950 2074 rambling examination 1 +42951 2074 of American gun culture 2 +42952 2074 American gun culture 2 +42953 2074 gun culture 2 +42954 2074 that uses his usual modus operandi of crucifixion through juxtaposition 2 +42955 2074 uses his usual modus operandi of crucifixion through juxtaposition 2 +42956 2074 uses his usual modus operandi of crucifixion 1 +42957 2074 his usual modus operandi of crucifixion 2 +42958 2074 his usual modus operandi 2 +42959 2074 usual modus operandi 2 +42960 2074 modus operandi 2 +42961 2074 modus 3 +42962 2074 operandi 2 +42963 2074 of crucifixion 1 +42964 2074 crucifixion 1 +42965 2074 through juxtaposition 2 +42966 2074 juxtaposition 2 +42967 2075 At its best , it 's Black Hawk Down with more heart . 3 +42968 2075 , it 's Black Hawk Down with more heart . 3 +42969 2075 it 's Black Hawk Down with more heart . 3 +42970 2075 's Black Hawk Down with more heart . 3 +42971 2075 's Black Hawk Down with more heart 3 +42972 2075 Black Hawk Down with more heart 3 +42973 2075 Black Hawk Down 2 +42974 2075 Hawk Down 2 +42975 2075 Hawk 2 +42976 2075 with more heart 2 +42977 2075 more heart 2 +42978 2076 Although Barbershop boasts some of today 's hottest and hippest acts from the world of television , music and stand-up comedy , this movie strangely enough has the outdated swagger of a shameless ` 70s blaxploitation shuck-and-jive sitcom . 2 +42979 2076 Although Barbershop boasts some of today 's hottest and hippest acts from the world of television , music and stand-up comedy 2 +42980 2076 Barbershop boasts some of today 's hottest and hippest acts from the world of television , music and stand-up comedy 4 +42981 2076 boasts some of today 's hottest and hippest acts from the world of television , music and stand-up comedy 3 +42982 2076 some of today 's hottest and hippest acts from the world of television , music and stand-up comedy 3 +42983 2076 of today 's hottest and hippest acts from the world of television , music and stand-up comedy 3 +42984 2076 today 's hottest and hippest acts from the world of television , music and stand-up comedy 3 +42985 2076 today 's hottest and 3 +42986 2076 today 's hottest 3 +42987 2076 today 's 2 +42988 2076 hottest 2 +42989 2076 hippest acts from the world of television , music and stand-up comedy 2 +42990 2076 hippest acts 2 +42991 2076 hippest 3 +42992 2076 from the world of television , music and stand-up comedy 3 +42993 2076 the world of television , music and stand-up comedy 2 +42994 2076 of television , music and stand-up comedy 2 +42995 2076 television , music and stand-up comedy 2 +42996 2076 television , music and 2 +42997 2076 television , music 2 +42998 2076 television , 2 +42999 2076 stand-up comedy 2 +43000 2076 , this movie strangely enough has the outdated swagger of a shameless ` 70s blaxploitation shuck-and-jive sitcom . 1 +43001 2076 this movie strangely enough has the outdated swagger of a shameless ` 70s blaxploitation shuck-and-jive sitcom . 1 +43002 2076 this movie strangely enough 2 +43003 2076 strangely enough 2 +43004 2076 has the outdated swagger of a shameless ` 70s blaxploitation shuck-and-jive sitcom . 1 +43005 2076 has the outdated swagger of a shameless ` 70s blaxploitation shuck-and-jive sitcom 0 +43006 2076 the outdated swagger of a shameless ` 70s blaxploitation shuck-and-jive sitcom 1 +43007 2076 the outdated swagger 1 +43008 2076 outdated swagger 1 +43009 2076 outdated 1 +43010 2076 swagger 2 +43011 2076 of a shameless ` 70s blaxploitation shuck-and-jive sitcom 1 +43012 2076 a shameless ` 70s blaxploitation shuck-and-jive sitcom 0 +43013 2076 shameless ` 70s blaxploitation shuck-and-jive sitcom 1 +43014 2076 shameless 1 +43015 2076 ` 70s blaxploitation shuck-and-jive sitcom 2 +43016 2076 70s blaxploitation shuck-and-jive sitcom 2 +43017 2076 blaxploitation shuck-and-jive sitcom 1 +43018 2076 shuck-and-jive sitcom 2 +43019 2076 shuck-and-jive 2 +43020 2077 If you 're looking for a smart , nuanced look at de Sade and what might have happened at Picpus , Sade is your film . 3 +43021 2077 If you 're looking for a smart , nuanced look at de Sade and what might have happened at Picpus 3 +43022 2077 you 're looking for a smart , nuanced look at de Sade and what might have happened at Picpus 3 +43023 2077 're looking for a smart , nuanced look at de Sade and what might have happened at Picpus 2 +43024 2077 looking for a smart , nuanced look at de Sade and what might have happened at Picpus 3 +43025 2077 for a smart , nuanced look at de Sade and what might have happened at Picpus 3 +43026 2077 a smart , nuanced look at de Sade and what might have happened at Picpus 3 +43027 2077 a smart , nuanced look at de Sade and 3 +43028 2077 a smart , nuanced look at de Sade 3 +43029 2077 a smart , nuanced look 3 +43030 2077 smart , nuanced look 3 +43031 2077 , nuanced look 2 +43032 2077 nuanced look 3 +43033 2077 at de Sade 2 +43034 2077 de Sade 2 +43035 2077 what might have happened at Picpus 2 +43036 2077 might have happened at Picpus 2 +43037 2077 have happened at Picpus 2 +43038 2077 happened at Picpus 2 +43039 2077 at Picpus 2 +43040 2077 Picpus 2 +43041 2077 , Sade is your film . 2 +43042 2077 Sade is your film . 2 +43043 2077 is your film . 3 +43044 2077 is your film 2 +43045 2077 your film 2 +43046 2078 To me , it sounds like a cruel deception carried out by men of marginal intelligence , with reactionary ideas about women and a total lack of empathy . 1 +43047 2078 , it sounds like a cruel deception carried out by men of marginal intelligence , with reactionary ideas about women and a total lack of empathy . 1 +43048 2078 it sounds like a cruel deception carried out by men of marginal intelligence , with reactionary ideas about women and a total lack of empathy . 1 +43049 2078 sounds like a cruel deception carried out by men of marginal intelligence , with reactionary ideas about women and a total lack of empathy . 0 +43050 2078 sounds like a cruel deception carried out by men of marginal intelligence , with reactionary ideas about women and a total lack of empathy 1 +43051 2078 like a cruel deception carried out by men of marginal intelligence , with reactionary ideas about women and a total lack of empathy 1 +43052 2078 a cruel deception carried out by men of marginal intelligence , with reactionary ideas about women and a total lack of empathy 0 +43053 2078 a cruel deception 1 +43054 2078 cruel deception 2 +43055 2078 carried out by men of marginal intelligence , with reactionary ideas about women and a total lack of empathy 0 +43056 2078 carried out by men of marginal intelligence , 1 +43057 2078 carried out by men of marginal intelligence 2 +43058 2078 by men of marginal intelligence 1 +43059 2078 men of marginal intelligence 1 +43060 2078 of marginal intelligence 2 +43061 2078 marginal intelligence 1 +43062 2078 with reactionary ideas about women and a total lack of empathy 2 +43063 2078 reactionary ideas about women and a total lack of empathy 1 +43064 2078 reactionary ideas about women and 2 +43065 2078 reactionary ideas about women 1 +43066 2078 reactionary ideas 2 +43067 2078 reactionary 2 +43068 2078 about women 2 +43069 2078 a total lack of empathy 1 +43070 2078 a total lack 1 +43071 2078 total lack 2 +43072 2078 of empathy 1 +43073 2079 Arnold ! 2 +43074 2080 Far more successful , if considerably less ambitious , than last year 's Kubrick-meets-Spielberg exercise . 3 +43075 2080 Far more successful , if considerably less ambitious , than last year 's Kubrick-meets-Spielberg exercise 3 +43076 2080 Far more successful , if considerably less ambitious , 3 +43077 2080 Far more successful 3 +43078 2080 more successful 3 +43079 2080 , if considerably less ambitious , 2 +43080 2080 if considerably less ambitious , 1 +43081 2080 if considerably less ambitious 1 +43082 2080 considerably less ambitious 1 +43083 2080 considerably 2 +43084 2080 less ambitious 1 +43085 2080 than last year 's Kubrick-meets-Spielberg exercise 2 +43086 2080 last year 's Kubrick-meets-Spielberg exercise 3 +43087 2080 last year 's 2 +43088 2080 Kubrick-meets-Spielberg exercise 2 +43089 2080 Kubrick-meets-Spielberg 2 +43090 2081 There are plenty of scenes in Frida that do work , but rarely do they involve the title character herself . 3 +43091 2081 are plenty of scenes in Frida that do work , but rarely do they involve the title character herself . 2 +43092 2081 are plenty of scenes in Frida that do work , but rarely do they involve the title character herself 2 +43093 2081 plenty of scenes in Frida that do work , but rarely do they involve the title character herself 2 +43094 2081 plenty of scenes in Frida 2 +43095 2081 of scenes in Frida 2 +43096 2081 scenes in Frida 2 +43097 2081 in Frida 2 +43098 2081 that do work , but rarely do they involve the title character herself 2 +43099 2081 do work , but rarely do they involve the title character herself 2 +43100 2081 do work , but rarely 2 +43101 2081 do work , but 2 +43102 2081 do work , 2 +43103 2081 do work 2 +43104 2081 do they involve the title character herself 2 +43105 2081 they involve the title character herself 2 +43106 2081 involve the title character herself 2 +43107 2081 the title character herself 2 +43108 2082 Elling builds gradually until you feel fully embraced by this gentle comedy . 3 +43109 2082 builds gradually until you feel fully embraced by this gentle comedy . 3 +43110 2082 builds gradually until you feel fully embraced by this gentle comedy 4 +43111 2082 builds gradually 2 +43112 2082 until you feel fully embraced by this gentle comedy 3 +43113 2082 you feel fully embraced by this gentle comedy 3 +43114 2082 feel fully embraced by this gentle comedy 4 +43115 2082 feel fully 3 +43116 2082 embraced by this gentle comedy 4 +43117 2082 embraced 3 +43118 2082 by this gentle comedy 3 +43119 2082 this gentle comedy 3 +43120 2082 gentle comedy 3 +43121 2083 It bites hard . 2 +43122 2083 bites hard . 1 +43123 2083 bites hard 2 +43124 2084 If the film has a problem , its shortness disappoints : You want the story to go on and on . 3 +43125 2084 If the film has a problem , its shortness disappoints : You want the story to go on and on 3 +43126 2084 If the film has a problem , its shortness disappoints : 0 +43127 2084 If the film has a problem , its shortness disappoints 2 +43128 2084 If the film has a problem 1 +43129 2084 the film has a problem 1 +43130 2084 has a problem 2 +43131 2084 a problem 2 +43132 2084 , its shortness disappoints 1 +43133 2084 its shortness disappoints 0 +43134 2084 its shortness 2 +43135 2084 shortness 2 +43136 2084 disappoints 0 +43137 2084 You want the story to go on and on 4 +43138 2084 want the story to go on and on 4 +43139 2084 the story to go on and on 2 +43140 2084 to go on and on 2 +43141 2084 go on and on 2 +43142 2085 Cut through the layers of soap-opera emotion and you find a scathing portrayal of a powerful entity strangling the life out of the people who want to believe in it the most . 3 +43143 2085 Cut through the layers of soap-opera emotion and you find a scathing portrayal of a powerful entity strangling the life out of the people who want to believe in it the most 3 +43144 2085 Cut through the layers of soap-opera emotion and 2 +43145 2085 Cut through the layers of soap-opera emotion 3 +43146 2085 through the layers of soap-opera emotion 2 +43147 2085 the layers of soap-opera emotion 1 +43148 2085 the layers 2 +43149 2085 of soap-opera emotion 2 +43150 2085 soap-opera emotion 1 +43151 2085 soap-opera 1 +43152 2085 you find a scathing portrayal of a powerful entity strangling the life out of the people who want to believe in it the most 2 +43153 2085 find a scathing portrayal of a powerful entity strangling the life out of the people who want to believe in it the most 3 +43154 2085 a scathing portrayal of a powerful entity strangling the life out of the people who want to believe in it the most 3 +43155 2085 a scathing portrayal of a powerful entity strangling the life out 3 +43156 2085 a scathing portrayal 2 +43157 2085 scathing portrayal 2 +43158 2085 scathing 1 +43159 2085 of a powerful entity strangling the life out 2 +43160 2085 a powerful entity strangling the life out 2 +43161 2085 a powerful entity 3 +43162 2085 powerful entity 3 +43163 2085 entity 2 +43164 2085 strangling the life out 1 +43165 2085 strangling the life 2 +43166 2085 strangling 2 +43167 2085 of the people who want to believe in it the most 2 +43168 2085 the people who want to believe in it the most 2 +43169 2085 the people 2 +43170 2085 who want to believe in it the most 2 +43171 2085 want to believe in it the most 2 +43172 2085 to believe in it the most 3 +43173 2085 believe in it the most 2 +43174 2085 in it the most 2 +43175 2085 it the most 3 +43176 2086 This is a harrowing movie about how parents know where all the buttons are , and how to push them . 2 +43177 2086 is a harrowing movie about how parents know where all the buttons are , and how to push them . 2 +43178 2086 is a harrowing movie about how parents know where all the buttons are , and how to push them 3 +43179 2086 a harrowing movie about how parents know where all the buttons are , and how to push them 4 +43180 2086 a harrowing movie 3 +43181 2086 harrowing movie 2 +43182 2086 about how parents know where all the buttons are , and how to push them 2 +43183 2086 how parents know where all the buttons are , and how to push them 2 +43184 2086 parents know where all the buttons are , and how to push them 2 +43185 2086 know where all the buttons are , and how to push them 1 +43186 2086 where all the buttons are , and how to push them 2 +43187 2086 where all the buttons are , and 2 +43188 2086 where all the buttons are , 2 +43189 2086 where all the buttons are 2 +43190 2086 all the buttons are 2 +43191 2086 all the buttons 2 +43192 2086 the buttons 3 +43193 2086 buttons 2 +43194 2086 how to push them 2 +43195 2086 to push them 2 +43196 2086 push them 2 +43197 2086 push 2 +43198 2087 It understands , in a way that speaks forcefully enough about the mechanisms of poverty to transcend the rather simplistic filmmaking . 2 +43199 2087 understands , in a way that speaks forcefully enough about the mechanisms of poverty to transcend the rather simplistic filmmaking . 3 +43200 2087 understands , in a way that speaks forcefully enough about the mechanisms of poverty to transcend the rather simplistic filmmaking 2 +43201 2087 understands , 2 +43202 2087 understands 2 +43203 2087 in a way that speaks forcefully enough about the mechanisms of poverty to transcend the rather simplistic filmmaking 3 +43204 2087 a way that speaks forcefully enough about the mechanisms of poverty to transcend the rather simplistic filmmaking 3 +43205 2087 that speaks forcefully enough about the mechanisms of poverty to transcend the rather simplistic filmmaking 3 +43206 2087 speaks forcefully enough about the mechanisms of poverty to transcend the rather simplistic filmmaking 2 +43207 2087 speaks forcefully enough about the mechanisms of poverty 2 +43208 2087 speaks forcefully enough 2 +43209 2087 forcefully enough 2 +43210 2087 about the mechanisms of poverty 1 +43211 2087 the mechanisms of poverty 2 +43212 2087 the mechanisms 2 +43213 2087 mechanisms 2 +43214 2087 of poverty 1 +43215 2087 poverty 1 +43216 2087 to transcend the rather simplistic filmmaking 3 +43217 2087 transcend the rather simplistic filmmaking 2 +43218 2087 the rather simplistic filmmaking 1 +43219 2087 rather simplistic filmmaking 2 +43220 2087 rather simplistic 1 +43221 2088 It 's a smartly directed , grown-up film of ideas . 4 +43222 2088 's a smartly directed , grown-up film of ideas . 4 +43223 2088 's a smartly directed , grown-up film of ideas 3 +43224 2088 a smartly directed , grown-up film of ideas 4 +43225 2088 a smartly directed , grown-up film 4 +43226 2088 smartly directed , grown-up film 4 +43227 2088 directed , grown-up film 2 +43228 2088 , grown-up film 2 +43229 2088 grown-up film 3 +43230 2088 of ideas 2 +43231 2089 ... strips Bible stores of the potential for sanctimoniousness , making them meaningful for both kids and church-wary adults . 3 +43232 2089 strips Bible stores of the potential for sanctimoniousness , making them meaningful for both kids and church-wary adults . 3 +43233 2089 strips 2 +43234 2089 Bible stores of the potential for sanctimoniousness , making them meaningful for both kids and church-wary adults . 3 +43235 2089 Bible stores of the potential for sanctimoniousness , making them meaningful for both kids and church-wary adults 3 +43236 2089 Bible stores of the potential for sanctimoniousness , 2 +43237 2089 Bible stores of the potential for sanctimoniousness 1 +43238 2089 stores of the potential for sanctimoniousness 2 +43239 2089 stores 2 +43240 2089 of the potential for sanctimoniousness 1 +43241 2089 the potential for sanctimoniousness 2 +43242 2089 the potential 2 +43243 2089 for sanctimoniousness 2 +43244 2089 sanctimoniousness 2 +43245 2089 making them meaningful for both kids and church-wary adults 2 +43246 2089 them meaningful for both kids and church-wary adults 2 +43247 2089 meaningful for both kids and church-wary adults 4 +43248 2089 for both kids and church-wary adults 2 +43249 2089 both kids and church-wary adults 2 +43250 2089 both kids and 2 +43251 2089 both kids 2 +43252 2089 church-wary adults 2 +43253 2089 church-wary 2 +43254 2090 Spider-Man is about growing strange hairs , getting a more mature body , and finding it necessary to hide new secretions from the parental units . 1 +43255 2090 is about growing strange hairs , getting a more mature body , and finding it necessary to hide new secretions from the parental units . 2 +43256 2090 is about growing strange hairs , getting a more mature body , and finding it necessary to hide new secretions from the parental units 2 +43257 2090 about growing strange hairs , getting a more mature body , and finding it necessary to hide new secretions from the parental units 2 +43258 2090 growing strange hairs , getting a more mature body , and finding it necessary to hide new secretions from the parental units 2 +43259 2090 growing strange hairs , getting a more mature body , and 3 +43260 2090 growing strange hairs , getting a more mature body , 2 +43261 2090 growing strange hairs , getting a more mature body 3 +43262 2090 growing strange hairs , 2 +43263 2090 growing strange hairs 2 +43264 2090 strange hairs 2 +43265 2090 getting a more mature body 3 +43266 2090 a more mature body 2 +43267 2090 more mature body 2 +43268 2090 more mature 3 +43269 2090 finding it necessary to hide new secretions from the parental units 2 +43270 2090 it necessary to hide new secretions from the parental units 2 +43271 2090 necessary to hide new secretions from the parental units 2 +43272 2090 to hide new secretions from the parental units 2 +43273 2090 hide new secretions from the parental units 1 +43274 2090 hide new secretions 1 +43275 2090 hide 2 +43276 2090 new secretions 2 +43277 2090 secretions 2 +43278 2090 from the parental units 2 +43279 2090 the parental units 2 +43280 2090 parental units 3 +43281 2090 parental 2 +43282 2090 units 2 +43283 2091 while -LRB- Roman Coppola -RRB- scores points for style , he staggers in terms of story . 2 +43284 2091 while -LRB- Roman Coppola -RRB- scores points for style 3 +43285 2091 while -LRB- Roman Coppola -RRB- 2 +43286 2091 -LRB- Roman Coppola -RRB- 2 +43287 2091 Roman Coppola -RRB- 2 +43288 2091 Roman Coppola 2 +43289 2091 Coppola 2 +43290 2091 scores points for style 3 +43291 2091 points for style 3 +43292 2091 for style 2 +43293 2091 , he staggers in terms of story . 1 +43294 2091 he staggers in terms of story . 2 +43295 2091 staggers in terms of story . 1 +43296 2091 staggers in terms of story 1 +43297 2091 staggers 1 +43298 2091 in terms of story 2 +43299 2091 terms of story 2 +43300 2091 of story 2 +43301 2092 is one of this year 's very best pictures . 4 +43302 2092 is one of this year 's very best pictures 4 +43303 2092 one of this year 's very best pictures 4 +43304 2092 of this year 's very best pictures 4 +43305 2092 this year 's very best pictures 4 +43306 2092 very best pictures 4 +43307 2092 very best 4 +43308 2093 Too daft by half ... but supremely good natured . 3 +43309 2093 daft by half ... but supremely good natured . 3 +43310 2093 daft by half ... but supremely good natured 3 +43311 2093 daft by half ... but 3 +43312 2093 daft by half ... 1 +43313 2093 daft by half 2 +43314 2093 daft 1 +43315 2093 by half 2 +43316 2093 supremely good natured 3 +43317 2093 supremely good 4 +43318 2093 natured 3 +43319 2094 Mostly , -LRB- Goldbacher -RRB- just lets her complicated characters be unruly , confusing and , through it all , human . 3 +43320 2094 , -LRB- Goldbacher -RRB- just lets her complicated characters be unruly , confusing and , through it all , human . 3 +43321 2094 -LRB- Goldbacher -RRB- just lets her complicated characters be unruly , confusing and , through it all , human . 2 +43322 2094 -LRB- Goldbacher -RRB- 2 +43323 2094 Goldbacher -RRB- 2 +43324 2094 just lets her complicated characters be unruly , confusing and , through it all , human . 2 +43325 2094 lets her complicated characters be unruly , confusing and , through it all , human . 2 +43326 2094 lets her complicated characters be unruly , confusing and , through it all , human 3 +43327 2094 her complicated characters be unruly , confusing and , through it all , human 3 +43328 2094 her complicated characters 2 +43329 2094 complicated characters 3 +43330 2094 be unruly , confusing and , through it all , human 2 +43331 2094 unruly , confusing and , through it all , human 2 +43332 2094 unruly 2 +43333 2094 , confusing and , through it all , human 2 +43334 2094 confusing and , through it all , human 2 +43335 2094 and , through it all , human 3 +43336 2094 , through it all , human 2 +43337 2094 , through it all , 2 +43338 2094 through it all , 2 +43339 2094 through it all 2 +43340 2095 jumps around with little logic or continuity , 1 +43341 2095 jumps around with little logic or continuity 1 +43342 2095 jumps around 1 +43343 2095 jumps 2 +43344 2095 with little logic or continuity 1 +43345 2095 little logic or continuity 2 +43346 2095 logic or continuity 2 +43347 2095 continuity 2 +43348 2095 presenting 2 +43349 2095 backstage bytes of information 2 +43350 2095 backstage bytes 2 +43351 2095 backstage 2 +43352 2095 bytes 2 +43353 2095 of information 2 +43354 2095 a satisfying complete picture 3 +43355 2095 satisfying complete picture 3 +43356 2095 satisfying complete 3 +43357 2095 anciently 2 +43358 2096 A static and sugary little half-hour , after-school special about interfaith understanding , stretched out to 90 minutes . 2 +43359 2096 A static and sugary little half-hour , after-school special about interfaith understanding , 2 +43360 2096 A static and sugary little half-hour , after-school special about interfaith understanding 2 +43361 2096 A static and sugary little half-hour , 2 +43362 2096 A static and sugary little half-hour 2 +43363 2096 static and sugary little half-hour 2 +43364 2096 and sugary little half-hour 2 +43365 2096 sugary little half-hour 2 +43366 2096 sugary 2 +43367 2096 little half-hour 2 +43368 2096 after-school special about interfaith understanding 2 +43369 2096 after-school special 2 +43370 2096 after-school 2 +43371 2096 about interfaith understanding 1 +43372 2096 interfaith understanding 2 +43373 2096 interfaith 2 +43374 2096 stretched out to 90 minutes . 2 +43375 2096 stretched out to 90 minutes 1 +43376 2096 stretched out 2 +43377 2096 to 90 minutes 2 +43378 2097 Visually striking and viscerally repellent . 3 +43379 2097 Visually striking and viscerally repellent 3 +43380 2097 Visually striking and 3 +43381 2097 Visually striking 3 +43382 2097 viscerally repellent 1 +43383 2097 viscerally 2 +43384 2098 Too slow for a younger crowd , too shallow for an older one . 1 +43385 2098 Too slow for a younger crowd 1 +43386 2098 slow for a younger crowd 1 +43387 2098 for a younger crowd 2 +43388 2098 a younger crowd 2 +43389 2098 younger crowd 2 +43390 2098 , too shallow for an older one . 2 +43391 2098 too shallow for an older one . 1 +43392 2098 too shallow for an older one 1 +43393 2098 shallow for an older one 2 +43394 2098 for an older one 3 +43395 2098 an older one 2 +43396 2098 older one 2 +43397 2099 The fact that the ` best part ' of the movie comes from a 60-second homage to one of Demme 's good films does n't bode well for the rest of it . 1 +43398 2099 The fact that the ` best part ' of the movie comes from a 60-second homage to one of Demme 's good films 1 +43399 2099 that the ` best part ' of the movie comes from a 60-second homage to one of Demme 's good films 2 +43400 2099 the ` best part ' of the movie comes from a 60-second homage to one of Demme 's good films 2 +43401 2099 the ` best part ' of the movie 2 +43402 2099 ` best part ' of the movie 3 +43403 2099 best part ' of the movie 3 +43404 2099 best part ' 3 +43405 2099 comes from a 60-second homage to one of Demme 's good films 2 +43406 2099 comes from a 60-second homage 2 +43407 2099 from a 60-second homage 2 +43408 2099 a 60-second homage 3 +43409 2099 60-second homage 2 +43410 2099 60-second 2 +43411 2099 to one of Demme 's good films 3 +43412 2099 one of Demme 's good films 4 +43413 2099 of Demme 's good films 3 +43414 2099 Demme 's good films 2 +43415 2099 Demme 's 2 +43416 2099 good films 3 +43417 2099 does n't bode well for the rest of it . 2 +43418 2099 does n't bode well for the rest of it 1 +43419 2099 bode well for the rest of it 2 +43420 2099 bode well 2 +43421 2099 bode 2 +43422 2099 for the rest of it 2 +43423 2099 the rest of it 2 +43424 2100 The tone errs on the shrill side , tempered by a soft southern gentility that speaks of beauty , grace and a closet full of skeletons . 2 +43425 2100 errs on the shrill side , tempered by a soft southern gentility that speaks of beauty , grace and a closet full of skeletons . 3 +43426 2100 errs on the shrill side , tempered by a soft southern gentility that speaks of beauty , grace and a closet full of skeletons 2 +43427 2100 errs 2 +43428 2100 on the shrill side , tempered by a soft southern gentility that speaks of beauty , grace and a closet full of skeletons 3 +43429 2100 the shrill side , tempered by a soft southern gentility that speaks of beauty , grace and a closet full of skeletons 2 +43430 2100 the shrill side , 1 +43431 2100 the shrill side 2 +43432 2100 shrill side 2 +43433 2100 shrill 2 +43434 2100 tempered by a soft southern gentility that speaks of beauty , grace and a closet full of skeletons 3 +43435 2100 tempered 2 +43436 2100 by a soft southern gentility that speaks of beauty , grace and a closet full of skeletons 3 +43437 2100 a soft southern gentility that speaks of beauty , grace and a closet full of skeletons 2 +43438 2100 a soft southern gentility 2 +43439 2100 soft southern gentility 2 +43440 2100 soft 2 +43441 2100 southern gentility 2 +43442 2100 that speaks of beauty , grace and a closet full of skeletons 3 +43443 2100 speaks of beauty , grace and a closet full of skeletons 3 +43444 2100 of beauty , grace and a closet full of skeletons 3 +43445 2100 beauty , grace and a closet full of skeletons 2 +43446 2100 beauty , grace and 4 +43447 2100 beauty , grace 3 +43448 2100 beauty , 3 +43449 2100 a closet full of skeletons 2 +43450 2100 a closet 2 +43451 2100 closet 2 +43452 2100 full of skeletons 2 +43453 2100 of skeletons 2 +43454 2100 skeletons 2 +43455 2101 But even with the two-wrongs-make-a-right chemistry between Jolie and Burns ... this otherwise appealing picture loses its soul to Screenwriting For Dummies conformity . 2 +43456 2101 But even with the two-wrongs-make-a-right chemistry between Jolie and Burns 1 +43457 2101 even with the two-wrongs-make-a-right chemistry between Jolie and Burns 3 +43458 2101 with the two-wrongs-make-a-right chemistry between Jolie and Burns 3 +43459 2101 the two-wrongs-make-a-right chemistry between Jolie and Burns 3 +43460 2101 the two-wrongs-make-a-right chemistry 2 +43461 2101 two-wrongs-make-a-right chemistry 2 +43462 2101 two-wrongs-make-a-right 2 +43463 2101 between Jolie and Burns 2 +43464 2101 Jolie and Burns 2 +43465 2101 Jolie and 2 +43466 2101 Jolie 2 +43467 2101 ... this otherwise appealing picture loses its soul to Screenwriting For Dummies conformity . 1 +43468 2101 this otherwise appealing picture loses its soul to Screenwriting For Dummies conformity . 0 +43469 2101 this otherwise appealing picture loses its soul to Screenwriting For Dummies conformity 2 +43470 2101 this otherwise appealing picture 2 +43471 2101 otherwise appealing picture 3 +43472 2101 otherwise appealing 3 +43473 2101 loses its soul to Screenwriting For Dummies conformity 0 +43474 2101 its soul to Screenwriting For Dummies conformity 2 +43475 2101 its soul to Screenwriting 3 +43476 2101 to Screenwriting 2 +43477 2101 For Dummies conformity 2 +43478 2101 Dummies conformity 1 +43479 2101 conformity 2 +43480 2102 Benigni 's Pinocchio is extremely straight and mind-numbingly stilted , its episodic pacing keeping the film from developing any storytelling flow . 2 +43481 2102 Benigni 's Pinocchio 2 +43482 2102 Benigni 's 2 +43483 2102 Benigni 2 +43484 2102 is extremely straight and mind-numbingly stilted , its episodic pacing keeping the film from developing any storytelling flow . 1 +43485 2102 is extremely straight and mind-numbingly stilted , its episodic pacing keeping the film from developing any storytelling flow 0 +43486 2102 is extremely straight and mind-numbingly stilted , 1 +43487 2102 is extremely straight and mind-numbingly stilted 1 +43488 2102 extremely straight and mind-numbingly stilted 2 +43489 2102 extremely straight and 2 +43490 2102 extremely straight 2 +43491 2102 mind-numbingly stilted 0 +43492 2102 mind-numbingly 1 +43493 2102 its episodic pacing keeping the film from developing any storytelling flow 1 +43494 2102 its episodic pacing 2 +43495 2102 episodic pacing 3 +43496 2102 keeping the film from developing any storytelling flow 2 +43497 2102 keeping the film 2 +43498 2102 from developing any storytelling flow 1 +43499 2102 developing any storytelling flow 2 +43500 2102 developing 2 +43501 2102 any storytelling flow 1 +43502 2102 storytelling flow 2 +43503 2103 A pale Xerox of other , better crime movies . 1 +43504 2103 pale Xerox of other , better crime movies . 0 +43505 2103 pale Xerox of other , better crime movies 1 +43506 2103 Xerox of other , better crime movies 3 +43507 2103 Xerox 2 +43508 2103 of other , better crime movies 2 +43509 2103 other , better crime movies 1 +43510 2103 other , 2 +43511 2103 better crime movies 2 +43512 2103 crime movies 2 +43513 2104 It 's a visual Rorschach test and I must have failed . 0 +43514 2104 It 's a visual Rorschach test and I must have failed 1 +43515 2104 It 's a visual Rorschach test and 2 +43516 2104 It 's a visual Rorschach test 2 +43517 2104 's a visual Rorschach test 2 +43518 2104 a visual Rorschach test 2 +43519 2104 visual Rorschach test 2 +43520 2104 Rorschach test 2 +43521 2104 Rorschach 2 +43522 2104 I must have failed 1 +43523 2104 must have failed 1 +43524 2104 have failed 1 +43525 2105 Great dragons ! 3 +43526 2105 dragons ! 3 +43527 2106 A small movie with a big impact . 4 +43528 2106 A small movie with a big impact 4 +43529 2106 with a big impact 3 +43530 2106 a big impact 2 +43531 2106 big impact 2 +43532 2107 Daughter From Danang sticks with its subjects a little longer and tells a deeper story 3 +43533 2107 Daughter From Danang 2 +43534 2107 sticks with its subjects a little longer and tells a deeper story 3 +43535 2107 sticks with its subjects a little longer and 2 +43536 2107 sticks with its subjects a little longer 3 +43537 2107 with its subjects a little longer 2 +43538 2107 with its subjects 3 +43539 2107 a little longer 2 +43540 2107 tells a deeper story 3 +43541 2107 a deeper story 3 +43542 2107 deeper story 2 +43543 2108 Sodden and glum , even in those moments where it 's supposed to feel funny and light . 1 +43544 2108 Sodden and glum 1 +43545 2108 Sodden and 2 +43546 2108 Sodden 1 +43547 2108 glum 1 +43548 2108 , even in those moments where it 's supposed to feel funny and light . 2 +43549 2108 even in those moments where it 's supposed to feel funny and light . 2 +43550 2108 even in those moments where it 's supposed to feel funny and light 1 +43551 2108 in those moments where it 's supposed to feel funny and light 2 +43552 2108 those moments where it 's supposed to feel funny and light 2 +43553 2108 those moments 2 +43554 2108 where it 's supposed to feel funny and light 2 +43555 2108 it 's supposed to feel funny and light 1 +43556 2108 's supposed to feel funny and light 2 +43557 2108 supposed to feel funny and light 1 +43558 2108 to feel funny and light 3 +43559 2108 feel funny and light 3 +43560 2108 funny and light 3 +43561 2109 -- but certainly hard to hate . 3 +43562 2109 but certainly hard to hate . 2 +43563 2109 but certainly hard to hate 3 +43564 2109 certainly hard to hate 3 +43565 2109 certainly hard 2 +43566 2109 to hate 1 +43567 2110 In the disturbingly involving family dysfunctional drama How I Killed My Father , French director Anne Fontaine delivers an inspired portrait of male-ridden angst and the emotional blockage that accompanies this human condition 3 +43568 2110 In the disturbingly involving family dysfunctional drama How I Killed My Father 2 +43569 2110 the disturbingly involving family dysfunctional drama How I Killed My Father 2 +43570 2110 the disturbingly 2 +43571 2110 disturbingly 1 +43572 2110 involving family dysfunctional drama How I Killed My Father 2 +43573 2110 family dysfunctional drama How I Killed My Father 2 +43574 2110 family dysfunctional drama 2 +43575 2110 dysfunctional drama 1 +43576 2110 How I Killed My Father 2 +43577 2110 I Killed My Father 1 +43578 2110 Killed My Father 0 +43579 2110 Killed 2 +43580 2110 My Father 2 +43581 2110 , French director Anne Fontaine delivers an inspired portrait of male-ridden angst and the emotional blockage that accompanies this human condition 4 +43582 2110 French director Anne Fontaine delivers an inspired portrait of male-ridden angst and the emotional blockage that accompanies this human condition 3 +43583 2110 French director Anne Fontaine 2 +43584 2110 director Anne Fontaine 3 +43585 2110 Anne Fontaine 2 +43586 2110 Fontaine 2 +43587 2110 delivers an inspired portrait of male-ridden angst and the emotional blockage that accompanies this human condition 3 +43588 2110 an inspired portrait of male-ridden angst and the emotional blockage that accompanies this human condition 3 +43589 2110 an inspired portrait of male-ridden angst and 3 +43590 2110 an inspired portrait of male-ridden angst 3 +43591 2110 an inspired portrait 4 +43592 2110 inspired portrait 3 +43593 2110 of male-ridden angst 1 +43594 2110 male-ridden angst 2 +43595 2110 male-ridden 2 +43596 2110 the emotional blockage that accompanies this human condition 2 +43597 2110 the emotional blockage 2 +43598 2110 emotional blockage 2 +43599 2110 blockage 2 +43600 2110 that accompanies this human condition 2 +43601 2110 accompanies this human condition 2 +43602 2110 accompanies 2 +43603 2110 this human condition 2 +43604 2111 The film feels uncomfortably real , its language and locations bearing the unmistakable stamp of authority . 3 +43605 2111 feels uncomfortably real , its language and locations bearing the unmistakable stamp of authority . 3 +43606 2111 feels uncomfortably real , its language and locations bearing the unmistakable stamp of authority 3 +43607 2111 feels uncomfortably real , 3 +43608 2111 feels uncomfortably real 3 +43609 2111 uncomfortably real 3 +43610 2111 its language and locations bearing the unmistakable stamp of authority 2 +43611 2111 its language and locations 2 +43612 2111 language and locations 3 +43613 2111 language and 2 +43614 2111 bearing the unmistakable stamp of authority 3 +43615 2111 bearing 2 +43616 2111 the unmistakable stamp of authority 3 +43617 2111 the unmistakable stamp 2 +43618 2111 unmistakable stamp 2 +43619 2111 unmistakable 2 +43620 2111 of authority 2 +43621 2111 authority 2 +43622 2112 Good performances and a realistic , non-exploitive approach make Paid in Full worth seeing . 4 +43623 2112 Good performances and a realistic , non-exploitive approach 3 +43624 2112 Good performances and 4 +43625 2112 Good performances 4 +43626 2112 a realistic , non-exploitive approach 3 +43627 2112 realistic , non-exploitive approach 3 +43628 2112 , non-exploitive approach 3 +43629 2112 non-exploitive approach 3 +43630 2112 non-exploitive 2 +43631 2112 make Paid in Full worth seeing . 4 +43632 2112 make Paid in Full worth seeing 3 +43633 2112 make Paid in Full 2 +43634 2112 worth seeing 3 +43635 2113 An honest , sensitive story from a Vietnamese point of view . 4 +43636 2113 An honest , sensitive story from a Vietnamese point of view 3 +43637 2113 An honest , sensitive story from a Vietnamese point 3 +43638 2113 An honest , sensitive story 3 +43639 2113 honest , sensitive story 3 +43640 2113 , sensitive story 2 +43641 2113 sensitive story 3 +43642 2113 from a Vietnamese point 2 +43643 2113 a Vietnamese point 2 +43644 2113 Vietnamese point 2 +43645 2113 Vietnamese 2 +43646 2114 Who knew ... 2 +43647 2115 Beautifully produced . 4 +43648 2115 produced . 2 +43649 2116 Those eternally devoted to the insanity of Black will have an intermittently good time . 3 +43650 2116 Those eternally devoted to the insanity of Black 2 +43651 2116 Those eternally 2 +43652 2116 eternally 2 +43653 2116 devoted to the insanity of Black 1 +43654 2116 devoted 2 +43655 2116 to the insanity of Black 2 +43656 2116 the insanity of Black 2 +43657 2116 the insanity 1 +43658 2116 insanity 2 +43659 2116 of Black 2 +43660 2116 will have an intermittently good time . 3 +43661 2116 will have an intermittently good time 3 +43662 2116 have an intermittently good time 3 +43663 2116 an intermittently good time 3 +43664 2116 intermittently good time 3 +43665 2116 intermittently good 3 +43666 2116 intermittently 2 +43667 2117 A film with almost as many delights for adults as there are for children and dog lovers . 4 +43668 2117 A film with almost as many 3 +43669 2117 with almost as many 2 +43670 2117 almost as many 2 +43671 2117 as many 2 +43672 2117 delights for adults as there are for children and dog lovers . 2 +43673 2117 delights for adults as there are for children and dog lovers 3 +43674 2117 delights for adults 3 +43675 2117 as there are for children and dog lovers 2 +43676 2117 there are for children and dog lovers 3 +43677 2117 are for children and dog lovers 3 +43678 2117 for children and dog lovers 2 +43679 2117 children and dog lovers 2 +43680 2117 and dog lovers 3 +43681 2117 dog lovers 2 +43682 2118 It 's rare to find a film to which the adjective ` gentle ' applies , but the word perfectly describes Pauline & Paulette . 3 +43683 2118 It 's rare to find a film to which the adjective ` gentle ' applies , but the word perfectly describes Pauline & Paulette 3 +43684 2118 It 's rare to find a film to which the adjective ` gentle ' applies , but 3 +43685 2118 It 's rare to find a film to which the adjective ` gentle ' applies , 3 +43686 2118 It 's rare to find a film to which the adjective ` gentle ' applies 3 +43687 2118 's rare to find a film to which the adjective ` gentle ' applies 3 +43688 2118 rare to find a film to which the adjective ` gentle ' applies 3 +43689 2118 to find a film to which the adjective ` gentle ' applies 3 +43690 2118 find a film to which the adjective ` gentle ' applies 2 +43691 2118 a film to which the adjective ` gentle ' applies 3 +43692 2118 to which the adjective ` gentle ' applies 2 +43693 2118 the adjective ` gentle ' applies 3 +43694 2118 the adjective ` gentle ' 3 +43695 2118 adjective ` gentle ' 2 +43696 2118 adjective 2 +43697 2118 ` gentle ' 3 +43698 2118 gentle ' 2 +43699 2118 applies 2 +43700 2118 the word perfectly describes Pauline & Paulette 2 +43701 2118 perfectly describes Pauline & Paulette 3 +43702 2118 describes Pauline & Paulette 2 +43703 2119 Grainy photography mars an otherwise delightful comedy of errors . 2 +43704 2119 Grainy photography 1 +43705 2119 Grainy 2 +43706 2119 mars an otherwise delightful comedy of errors . 2 +43707 2119 mars an otherwise delightful comedy of errors 1 +43708 2119 an otherwise delightful comedy of errors 3 +43709 2119 an otherwise delightful comedy 3 +43710 2119 otherwise delightful comedy 3 +43711 2119 otherwise delightful 3 +43712 2119 of errors 2 +43713 2119 errors 0 +43714 2120 Guilty of the worst sin of attributable to a movie like this : it 's not scary in the slightest . 0 +43715 2120 Guilty of the worst sin of attributable to a movie like this 0 +43716 2120 of the worst sin of attributable to a movie like this 1 +43717 2120 the worst sin of attributable to a movie like this 0 +43718 2120 the worst sin 1 +43719 2120 worst sin 1 +43720 2120 sin 1 +43721 2120 of attributable to a movie like this 2 +43722 2120 attributable to a movie like this 3 +43723 2120 attributable 2 +43724 2120 to a movie like this 2 +43725 2120 a movie like this 2 +43726 2120 : it 's not scary in the slightest . 0 +43727 2120 it 's not scary in the slightest . 1 +43728 2120 it 's not scary in the slightest 1 +43729 2120 's not scary in the slightest 1 +43730 2120 scary in the slightest 2 +43731 2120 in the slightest 2 +43732 2120 the slightest 2 +43733 2121 One of those films where the characters inhabit that special annex of hell where adults behave like kids , children behave like adults and everyone screams at the top of their lungs no matter what the situation . 1 +43734 2121 One of those films where the characters inhabit that special annex of hell where adults behave like kids , children behave like adults and everyone 2 +43735 2121 of those films where the characters inhabit that special annex of hell where adults behave like kids , children behave like adults and everyone 1 +43736 2121 those films where the characters inhabit that special annex of hell where adults behave like kids , children behave like adults and everyone 2 +43737 2121 where the characters inhabit that special annex of hell where adults behave like kids , children behave like adults and everyone 1 +43738 2121 the characters inhabit that special annex of hell where adults behave like kids , children behave like adults and everyone 0 +43739 2121 inhabit that special annex of hell where adults behave like kids , children behave like adults and everyone 2 +43740 2121 inhabit that special annex of hell where adults behave like kids , 1 +43741 2121 inhabit that special annex of hell where adults behave like kids 1 +43742 2121 inhabit that special annex of hell 1 +43743 2121 that special annex of hell 0 +43744 2121 that special annex 2 +43745 2121 special annex 2 +43746 2121 annex 2 +43747 2121 of hell 1 +43748 2121 where adults behave like kids 2 +43749 2121 adults behave like kids 1 +43750 2121 behave like kids 1 +43751 2121 behave 2 +43752 2121 like kids 2 +43753 2121 children behave like adults and everyone 1 +43754 2121 behave like adults and everyone 2 +43755 2121 like adults and everyone 2 +43756 2121 adults and everyone 2 +43757 2121 adults and 2 +43758 2121 screams at the top of their lungs no matter what the situation . 1 +43759 2121 screams at the top of their lungs no matter what the situation 1 +43760 2121 at the top of their lungs no matter what the situation 2 +43761 2121 the top of their lungs no matter what the situation 2 +43762 2121 the top of their lungs 3 +43763 2121 the top 2 +43764 2121 of their lungs 2 +43765 2121 their lungs 2 +43766 2121 lungs 2 +43767 2121 no matter what the situation 2 +43768 2121 no matter what 2 +43769 2121 the situation 2 +43770 2122 A sloppy slapstick throwback to long gone bottom-of-the-bill fare like The Ghost and Mr. Chicken . 1 +43771 2122 A sloppy slapstick 1 +43772 2122 sloppy slapstick 1 +43773 2122 throwback to long gone bottom-of-the-bill fare like The Ghost and Mr. Chicken . 1 +43774 2122 throwback to long gone bottom-of-the-bill fare like The Ghost and Mr. Chicken 2 +43775 2122 throwback 2 +43776 2122 to long gone bottom-of-the-bill fare like The Ghost and Mr. Chicken 2 +43777 2122 long gone bottom-of-the-bill fare like The Ghost and Mr. Chicken 1 +43778 2122 long gone bottom-of-the-bill fare 1 +43779 2122 bottom-of-the-bill fare 1 +43780 2122 bottom-of-the-bill 0 +43781 2122 like The Ghost and Mr. Chicken 2 +43782 2122 The Ghost and Mr. Chicken 2 +43783 2122 The Ghost and 2 +43784 2122 The Ghost 2 +43785 2122 Mr. Chicken 2 +43786 2122 Chicken 2 +43787 2123 The script is a tired one , with few moments of joy rising above the stale material . 1 +43788 2123 is a tired one , with few moments of joy rising above the stale material . 1 +43789 2123 is a tired one , with few moments of joy rising above the stale material 2 +43790 2123 is a tired one , 1 +43791 2123 is a tired one 1 +43792 2123 a tired one 1 +43793 2123 tired one 1 +43794 2123 with few moments of joy rising above the stale material 1 +43795 2123 few moments of joy rising above the stale material 2 +43796 2123 few moments 2 +43797 2123 of joy rising above the stale material 2 +43798 2123 joy rising above the stale material 2 +43799 2123 rising above the stale material 2 +43800 2123 above the stale material 2 +43801 2123 the stale material 1 +43802 2123 stale material 1 +43803 2124 -LRB- City -RRB- reminds us how realistically nuanced a Robert De Niro performance can be when he is not more lucratively engaged in the shameless self-caricature of ` Analyze This ' -LRB- 1999 -RRB- and ` Analyze That , ' promised -LRB- or threatened -RRB- for later this year . 3 +43804 2124 -LRB- City -RRB- 2 +43805 2124 City -RRB- 2 +43806 2124 reminds us how realistically nuanced a Robert De Niro performance can be when he is not more lucratively engaged in the shameless self-caricature of ` Analyze This ' -LRB- 1999 -RRB- and ` Analyze That , ' promised -LRB- or threatened -RRB- for later this year . 2 +43807 2124 reminds us how realistically nuanced a Robert De Niro performance can be when he is not more lucratively engaged in the shameless self-caricature of ` Analyze This ' -LRB- 1999 -RRB- and ` Analyze That , ' promised -LRB- or threatened -RRB- for later this year 3 +43808 2124 reminds us 2 +43809 2124 how realistically nuanced a Robert De Niro performance can be when he is not more lucratively engaged in the shameless self-caricature of ` Analyze This ' -LRB- 1999 -RRB- and ` Analyze That , ' promised -LRB- or threatened -RRB- for later this year 2 +43810 2124 realistically nuanced a Robert De Niro performance can be when he is not more lucratively engaged in the shameless self-caricature of ` Analyze This ' -LRB- 1999 -RRB- and ` Analyze That , ' promised -LRB- or threatened -RRB- for later this year 1 +43811 2124 realistically 3 +43812 2124 nuanced a Robert De Niro performance can be when he is not more lucratively engaged in the shameless self-caricature of ` Analyze This ' -LRB- 1999 -RRB- and ` Analyze That , ' promised -LRB- or threatened -RRB- for later this year 1 +43813 2124 a Robert De Niro performance can be when he is not more lucratively engaged in the shameless self-caricature of ` Analyze This ' -LRB- 1999 -RRB- and ` Analyze That , ' promised -LRB- or threatened -RRB- for later this year 2 +43814 2124 a Robert De Niro performance 2 +43815 2124 Robert De Niro performance 3 +43816 2124 De Niro performance 2 +43817 2124 Niro performance 3 +43818 2124 can be when he is not more lucratively engaged in the shameless self-caricature of ` Analyze This ' -LRB- 1999 -RRB- and ` Analyze That , ' promised -LRB- or threatened -RRB- for later this year 2 +43819 2124 be when he is not more lucratively engaged in the shameless self-caricature of ` Analyze This ' -LRB- 1999 -RRB- and ` Analyze That , ' promised -LRB- or threatened -RRB- for later this year 1 +43820 2124 when he is not more lucratively engaged in the shameless self-caricature of ` Analyze This ' -LRB- 1999 -RRB- and ` Analyze That , ' promised -LRB- or threatened -RRB- for later this year 1 +43821 2124 he is not more lucratively engaged in the shameless self-caricature of ` Analyze This ' -LRB- 1999 -RRB- and ` Analyze That , ' promised -LRB- or threatened -RRB- for later this year 1 +43822 2124 is not more lucratively engaged in the shameless self-caricature of ` Analyze This ' -LRB- 1999 -RRB- and ` Analyze That , ' promised -LRB- or threatened -RRB- for later this year 1 +43823 2124 is not more 2 +43824 2124 lucratively engaged in the shameless self-caricature of ` Analyze This ' -LRB- 1999 -RRB- and ` Analyze That , ' promised -LRB- or threatened -RRB- for later this year 1 +43825 2124 lucratively 3 +43826 2124 engaged in the shameless self-caricature of ` Analyze This ' -LRB- 1999 -RRB- and ` Analyze That , ' promised -LRB- or threatened -RRB- for later this year 2 +43827 2124 engaged 3 +43828 2124 in the shameless self-caricature of ` Analyze This ' -LRB- 1999 -RRB- and ` Analyze That , ' promised -LRB- or threatened -RRB- for later this year 1 +43829 2124 the shameless self-caricature of ` Analyze This ' -LRB- 1999 -RRB- and ` Analyze That , ' promised -LRB- or threatened -RRB- for later this year 1 +43830 2124 the shameless self-caricature of ` Analyze This ' -LRB- 1999 -RRB- and 1 +43831 2124 the shameless self-caricature of ` Analyze This ' -LRB- 1999 -RRB- 1 +43832 2124 the shameless self-caricature 1 +43833 2124 shameless self-caricature 1 +43834 2124 self-caricature 1 +43835 2124 of ` Analyze This ' -LRB- 1999 -RRB- 2 +43836 2124 ` Analyze This ' -LRB- 1999 -RRB- 2 +43837 2124 Analyze This ' -LRB- 1999 -RRB- 2 +43838 2124 ' -LRB- 1999 -RRB- 2 +43839 2124 -LRB- 1999 -RRB- 2 +43840 2124 1999 -RRB- 2 +43841 2124 1999 2 +43842 2124 ` Analyze That , ' promised -LRB- or threatened -RRB- for later this year 2 +43843 2124 Analyze That , ' promised -LRB- or threatened -RRB- for later this year 2 +43844 2124 Analyze That , ' 2 +43845 2124 Analyze That , 2 +43846 2124 promised -LRB- or threatened -RRB- for later this year 1 +43847 2124 promised -LRB- or threatened -RRB- for 2 +43848 2124 promised -LRB- or threatened -RRB- 2 +43849 2124 promised 2 +43850 2124 -LRB- or threatened -RRB- 2 +43851 2124 -LRB- or threatened 2 +43852 2124 -LRB- or 2 +43853 2124 threatened 2 +43854 2124 later this year 2 +43855 2124 later 2 +43856 2125 would make an excellent companion piece to the similarly themed ` The French Lieutenant 's Woman . ' 3 +43857 2125 would make an excellent companion piece to the similarly themed ` The French Lieutenant 's Woman . 3 +43858 2125 would make an excellent companion piece to the similarly themed ` The French Lieutenant 's Woman 3 +43859 2125 make an excellent companion piece to the similarly themed ` The French Lieutenant 's Woman 3 +43860 2125 make an excellent companion piece 3 +43861 2125 an excellent companion piece 4 +43862 2125 excellent companion piece 3 +43863 2125 companion piece 3 +43864 2125 to the similarly themed ` The French Lieutenant 's Woman 2 +43865 2125 the similarly themed ` The French Lieutenant 's Woman 2 +43866 2125 the similarly themed ` 2 +43867 2125 the similarly themed 2 +43868 2125 similarly themed 3 +43869 2125 themed 2 +43870 2125 The French Lieutenant 's Woman 3 +43871 2125 French Lieutenant 's Woman 2 +43872 2125 Lieutenant 's Woman 2 +43873 2125 Lieutenant 's 2 +43874 2125 Lieutenant 2 +43875 2126 Harmless fun . 3 +43876 2127 Infidelity drama is nicely shot , well-edited and features a standout performance by Diane Lane . 4 +43877 2127 Infidelity drama 2 +43878 2127 Infidelity 1 +43879 2127 is nicely shot , well-edited and features a standout performance by Diane Lane . 4 +43880 2127 is nicely shot , well-edited and features a standout performance by Diane Lane 4 +43881 2127 is nicely shot , well-edited and 3 +43882 2127 is nicely shot , well-edited 4 +43883 2127 is nicely shot , 3 +43884 2127 is nicely shot 3 +43885 2127 nicely shot 3 +43886 2127 well-edited 3 +43887 2127 features a standout performance by Diane Lane 4 +43888 2127 features a standout performance 4 +43889 2127 a standout performance 4 +43890 2127 standout performance 4 +43891 2127 standout 4 +43892 2127 by Diane Lane 2 +43893 2127 Diane Lane 2 +43894 2127 Diane 2 +43895 2127 Lane 2 +43896 2128 The filmmakers needed more emphasis on the storytelling and less on the glamorous machine that thrusts the audience into a future they wo n't much care about . 1 +43897 2128 needed more emphasis on the storytelling and less on the glamorous machine that thrusts the audience into a future they wo n't much care about . 2 +43898 2128 needed more emphasis on the storytelling and less on the glamorous machine that thrusts the audience into a future they wo n't much care about 1 +43899 2128 needed more emphasis on the storytelling and less 2 +43900 2128 needed more emphasis 1 +43901 2128 more emphasis 2 +43902 2128 on the storytelling and less 2 +43903 2128 the storytelling and less 2 +43904 2128 the storytelling and 3 +43905 2128 the storytelling 2 +43906 2128 on the glamorous machine that thrusts the audience into a future they wo n't much care about 1 +43907 2128 the glamorous machine that thrusts the audience into a future they wo n't much care about 1 +43908 2128 the glamorous machine 2 +43909 2128 glamorous machine 3 +43910 2128 glamorous 3 +43911 2128 that thrusts the audience into a future they wo n't much care about 1 +43912 2128 thrusts the audience into a future they wo n't much care about 1 +43913 2128 thrusts the audience 3 +43914 2128 thrusts 2 +43915 2128 into a future they wo n't much care about 1 +43916 2128 a future they wo n't much care about 1 +43917 2128 a future 2 +43918 2128 they wo n't much care about 1 +43919 2128 wo n't much care about 1 +43920 2128 wo n't much 2 +43921 2129 ... a fascinating curiosity piece -- fascinating , that is , for about ten minutes . 1 +43922 2129 a fascinating curiosity piece -- fascinating , that is , for about ten minutes . 1 +43923 2129 a fascinating curiosity piece -- fascinating , that is , for about ten minutes 1 +43924 2129 a fascinating curiosity piece -- fascinating , that is , 3 +43925 2129 a fascinating curiosity piece -- fascinating , that is 3 +43926 2129 a fascinating curiosity piece -- fascinating , 3 +43927 2129 a fascinating curiosity piece -- fascinating 3 +43928 2129 a fascinating curiosity piece -- 3 +43929 2129 a fascinating curiosity piece 3 +43930 2129 fascinating curiosity piece 4 +43931 2129 curiosity piece 2 +43932 2129 for about ten minutes 2 +43933 2129 about ten minutes 2 +43934 2129 about ten 3 +43935 2129 ten 2 +43936 2130 The strength of the film comes not from any cinematic razzle-dazzle but from its recovery of an historical episode that , in the simple telling , proves simultaneously harrowing and uplifting . 4 +43937 2130 The strength of the film 2 +43938 2130 comes not from any cinematic razzle-dazzle but from its recovery of an historical episode that , in the simple telling , proves simultaneously harrowing and uplifting . 3 +43939 2130 comes not from any cinematic razzle-dazzle but from its recovery of an historical episode that , in the simple telling , proves simultaneously harrowing and uplifting 3 +43940 2130 not from any cinematic razzle-dazzle but from its recovery of an historical episode that , in the simple telling , proves simultaneously harrowing and uplifting 3 +43941 2130 from any cinematic razzle-dazzle but from its recovery of an historical episode that , in the simple telling , proves simultaneously harrowing and uplifting 3 +43942 2130 from any cinematic razzle-dazzle but 2 +43943 2130 from any cinematic razzle-dazzle 2 +43944 2130 any cinematic razzle-dazzle 2 +43945 2130 cinematic razzle-dazzle 3 +43946 2130 razzle-dazzle 2 +43947 2130 from its recovery of an historical episode that , in the simple telling , proves simultaneously harrowing and uplifting 3 +43948 2130 its recovery of an historical episode that , in the simple telling , proves simultaneously harrowing and uplifting 3 +43949 2130 its recovery 2 +43950 2130 recovery 2 +43951 2130 of an historical episode that , in the simple telling , proves simultaneously harrowing and uplifting 3 +43952 2130 an historical episode that , in the simple telling , proves simultaneously harrowing and uplifting 4 +43953 2130 an historical episode 2 +43954 2130 historical episode 2 +43955 2130 that , in the simple telling , proves simultaneously harrowing and uplifting 2 +43956 2130 , in the simple telling , proves simultaneously harrowing and uplifting 3 +43957 2130 in the simple telling , proves simultaneously harrowing and uplifting 3 +43958 2130 in the simple telling 3 +43959 2130 the simple telling 2 +43960 2130 simple telling 2 +43961 2130 , proves simultaneously harrowing and uplifting 4 +43962 2130 proves simultaneously harrowing and uplifting 3 +43963 2130 simultaneously harrowing and uplifting 3 +43964 2130 simultaneously 2 +43965 2130 harrowing and uplifting 3 +43966 2130 harrowing and 2 +43967 2131 Spielberg 's first real masterpiece , it deserved all the hearts it won -- and wins still , 20 years later . 4 +43968 2131 Spielberg 's first real masterpiece 4 +43969 2131 first real masterpiece 4 +43970 2131 , it deserved all the hearts it won -- and wins still , 20 years later . 3 +43971 2131 it deserved all the hearts it won -- and wins still , 20 years later . 3 +43972 2131 deserved all the hearts it won -- and wins still , 20 years later . 2 +43973 2131 deserved all the hearts it won -- and wins still , 20 years later 4 +43974 2131 deserved all the hearts it won -- and wins still , 3 +43975 2131 deserved all the hearts it won -- and wins still 4 +43976 2131 all the hearts it won -- and wins still 3 +43977 2131 all the hearts 2 +43978 2131 it won -- and wins still 4 +43979 2131 won -- and wins still 4 +43980 2131 won -- and 3 +43981 2131 won -- 3 +43982 2131 won 3 +43983 2131 wins still 3 +43984 2131 20 years later 2 +43985 2132 Bielinsky is a filmmaker of impressive talent . 3 +43986 2132 is a filmmaker of impressive talent . 3 +43987 2132 is a filmmaker of impressive talent 4 +43988 2132 a filmmaker of impressive talent 3 +43989 2132 a filmmaker 2 +43990 2132 of impressive talent 4 +43991 2132 impressive talent 3 +43992 2133 Fathers and sons , and the uneasy bonds between them , rarely have received such a sophisticated and unsentimental treatment on the big screen as they do in this marvelous film . 4 +43993 2133 Fathers and sons , and the uneasy bonds between them , 2 +43994 2133 Fathers and sons , and the uneasy bonds between them 3 +43995 2133 Fathers and sons , and 2 +43996 2133 Fathers and sons , 2 +43997 2133 Fathers and sons 2 +43998 2133 Fathers and 2 +43999 2133 the uneasy bonds between them 2 +44000 2133 the uneasy bonds 2 +44001 2133 uneasy bonds 1 +44002 2133 bonds 2 +44003 2133 between them 2 +44004 2133 rarely have received such a sophisticated and unsentimental treatment on the big screen as they do in this marvelous film . 4 +44005 2133 have received such a sophisticated and unsentimental treatment on the big screen as they do in this marvelous film . 4 +44006 2133 have received such a sophisticated and unsentimental treatment on the big screen as they do in this marvelous film 4 +44007 2133 received such a sophisticated and unsentimental treatment on the big screen as they do in this marvelous film 4 +44008 2133 received such a sophisticated and unsentimental treatment on the big screen 3 +44009 2133 such a sophisticated and unsentimental treatment on the big screen 3 +44010 2133 a sophisticated and unsentimental treatment on the big screen 2 +44011 2133 a sophisticated and unsentimental treatment 3 +44012 2133 sophisticated and unsentimental treatment 3 +44013 2133 and unsentimental treatment 2 +44014 2133 unsentimental treatment 2 +44015 2133 unsentimental 1 +44016 2133 as they do in this marvelous film 4 +44017 2133 they do in this marvelous film 3 +44018 2133 do in this marvelous film 4 +44019 2133 in this marvelous film 4 +44020 2133 this marvelous film 3 +44021 2133 marvelous film 4 +44022 2134 Criminal conspiracies and true romances move so easily across racial and cultural lines in the film that it makes My Big Fat Greek Wedding look like an apartheid drama . 3 +44023 2134 Criminal conspiracies and true romances 2 +44024 2134 Criminal conspiracies and 2 +44025 2134 Criminal conspiracies 2 +44026 2134 Criminal 1 +44027 2134 conspiracies 2 +44028 2134 true romances 2 +44029 2134 move so easily across racial and cultural lines in the film that it makes My Big Fat Greek Wedding look like an apartheid drama . 2 +44030 2134 move so easily across racial and cultural lines in the film that it makes My Big Fat Greek Wedding look like an apartheid drama 2 +44031 2134 move so easily across racial and cultural lines in the film 3 +44032 2134 move so easily 2 +44033 2134 so easily 2 +44034 2134 across racial and cultural lines in the film 2 +44035 2134 racial and cultural lines in the film 2 +44036 2134 racial and cultural lines 2 +44037 2134 and cultural lines 2 +44038 2134 cultural lines 2 +44039 2134 that it makes My Big Fat Greek Wedding look like an apartheid drama 0 +44040 2134 it makes My Big Fat Greek Wedding look like an apartheid drama 0 +44041 2134 makes My Big Fat Greek Wedding look like an apartheid drama 1 +44042 2134 makes My Big Fat Greek Wedding look 2 +44043 2134 My Big Fat Greek Wedding look 2 +44044 2134 Big Fat Greek Wedding look 2 +44045 2134 Fat Greek Wedding look 2 +44046 2134 Greek Wedding look 2 +44047 2134 Greek 2 +44048 2134 Wedding look 2 +44049 2134 like an apartheid drama 2 +44050 2134 an apartheid drama 0 +44051 2134 apartheid drama 2 +44052 2134 apartheid 2 +44053 2135 With more character development this might have been an eerie thriller ; with better payoffs , it could have been a thinking man 's monster movie . 1 +44054 2135 With more character development this might have been an eerie thriller ; with better payoffs , it could have been a thinking man 's monster movie 1 +44055 2135 With more character development this might have been an eerie thriller ; 2 +44056 2135 With more character development this might have been an eerie thriller 2 +44057 2135 With more character development 2 +44058 2135 more character development 2 +44059 2135 character development 2 +44060 2135 development 2 +44061 2135 this might have been an eerie thriller 1 +44062 2135 might have been an eerie thriller 2 +44063 2135 have been an eerie thriller 3 +44064 2135 been an eerie thriller 2 +44065 2135 an eerie thriller 3 +44066 2135 eerie thriller 3 +44067 2135 with better payoffs , it could have been a thinking man 's monster movie 2 +44068 2135 with better payoffs 2 +44069 2135 better payoffs 2 +44070 2135 payoffs 2 +44071 2135 , it could have been a thinking man 's monster movie 1 +44072 2135 it could have been a thinking man 's monster movie 2 +44073 2135 could have been a thinking man 's monster movie 2 +44074 2135 have been a thinking man 's monster movie 2 +44075 2135 been a thinking man 's monster movie 2 +44076 2135 a thinking man 's monster movie 3 +44077 2135 a thinking man 's 3 +44078 2135 thinking man 's 2 +44079 2136 Tries too hard to be funny in a way that 's too loud , too goofy and too short of an attention span . 1 +44080 2136 Tries too hard to be funny in a way that 's too loud , too goofy and too short of an attention span 0 +44081 2136 too hard to be funny in a way that 's too loud , too goofy and too short of an attention span 1 +44082 2136 hard to be funny in a way that 's too loud , too goofy and too short of an attention span 1 +44083 2136 to be funny in a way that 's too loud , too goofy and too short of an attention span 2 +44084 2136 be funny in a way that 's too loud , too goofy and too short of an attention span 1 +44085 2136 funny in a way that 's too loud , too goofy and too short of an attention span 1 +44086 2136 in a way that 's too loud , too goofy and too short of an attention span 1 +44087 2136 a way that 's too loud , too goofy and too short of an attention span 1 +44088 2136 that 's too loud , too goofy and too short of an attention span 0 +44089 2136 's too loud , too goofy and too short of an attention span 1 +44090 2136 too loud , too goofy and too short of an attention span 2 +44091 2136 too loud , too goofy and too short 0 +44092 2136 too loud , too goofy and 1 +44093 2136 too loud , too goofy 1 +44094 2136 too loud , 1 +44095 2136 too goofy 2 +44096 2136 too short 2 +44097 2136 of an attention span 2 +44098 2136 an attention span 2 +44099 2136 attention span 2 +44100 2136 span 2 +44101 2137 It 's the sweet Cinderella story that `` Pretty Woman '' wanted to be . 3 +44102 2137 's the sweet Cinderella story that `` Pretty Woman '' wanted to be . 3 +44103 2137 's the sweet Cinderella story that `` Pretty Woman '' wanted to be 3 +44104 2137 's the sweet Cinderella story 3 +44105 2137 the sweet Cinderella story 3 +44106 2137 sweet Cinderella story 3 +44107 2137 Cinderella story 2 +44108 2137 Cinderella 3 +44109 2137 that `` Pretty Woman '' wanted to be 3 +44110 2137 `` Pretty Woman '' wanted to be 3 +44111 2137 Pretty Woman '' wanted to be 2 +44112 2137 Pretty Woman 2 +44113 2137 '' wanted to be 2 +44114 2137 wanted to be 2 +44115 2138 Does n't deserve a passing grade -LRB- even on a curve -RRB- . 0 +44116 2138 Does n't deserve a passing grade -LRB- even on a curve -RRB- 0 +44117 2138 deserve a passing grade -LRB- even on a curve -RRB- 1 +44118 2138 deserve a passing grade 3 +44119 2138 a passing grade 2 +44120 2138 passing grade 2 +44121 2138 passing 2 +44122 2138 grade 3 +44123 2138 -LRB- even on a curve -RRB- 2 +44124 2138 even on a curve -RRB- 2 +44125 2138 even on a curve 2 +44126 2138 on a curve 2 +44127 2138 a curve 2 +44128 2138 curve 2 +44129 2139 First-timer John McKay is never able to pull it back on course . 1 +44130 2139 First-timer John McKay 2 +44131 2139 First-timer 2 +44132 2139 John McKay 2 +44133 2139 McKay 2 +44134 2139 is never able to pull it back on course . 1 +44135 2139 is never able to pull it back on course 2 +44136 2139 able to pull it back on course 3 +44137 2139 to pull it back on course 2 +44138 2139 pull it back on course 2 +44139 2139 pull it back 1 +44140 2139 pull it 2 +44141 2139 on course 2 +44142 2140 A return to pure Disney magic and is enjoyable family fare . 4 +44143 2140 A return to pure Disney 3 +44144 2140 A return 2 +44145 2140 return 2 +44146 2140 to pure Disney 2 +44147 2140 pure Disney 3 +44148 2140 magic and is enjoyable family fare . 4 +44149 2140 magic and is enjoyable family fare 3 +44150 2140 magic and 2 +44151 2140 is enjoyable family fare 3 +44152 2140 enjoyable family fare 4 +44153 2140 enjoyable family 4 +44154 2141 This Sade is hardly a perverse , dangerous libertine and agitator -- which would have made for better drama . 1 +44155 2141 This Sade 2 +44156 2141 is hardly a perverse , dangerous libertine and agitator -- which would have made for better drama . 1 +44157 2141 is hardly a perverse , dangerous libertine and agitator -- which would have made for better drama 1 +44158 2141 is hardly 2 +44159 2141 a perverse , dangerous libertine and agitator -- which would have made for better drama 1 +44160 2141 a perverse , dangerous libertine and agitator -- 1 +44161 2141 a perverse , dangerous libertine and agitator 1 +44162 2141 perverse , dangerous libertine and agitator 2 +44163 2141 , dangerous libertine and agitator 2 +44164 2141 dangerous libertine and agitator 2 +44165 2141 libertine and agitator 2 +44166 2141 libertine and 2 +44167 2141 libertine 2 +44168 2141 agitator 2 +44169 2141 which would have made for better drama 2 +44170 2141 would have made for better drama 2 +44171 2141 have made for better drama 1 +44172 2141 made for better drama 2 +44173 2141 for better drama 2 +44174 2141 better drama 3 +44175 2142 ` All in all , Reign of Fire will be a good -LRB- successful -RRB- rental . ' 2 +44176 2142 All in all , Reign of Fire will be a good -LRB- successful -RRB- rental . ' 3 +44177 2142 All in all , Reign of Fire 2 +44178 2142 in all , Reign of Fire 2 +44179 2142 all , Reign of Fire 2 +44180 2142 will be a good -LRB- successful -RRB- rental . ' 2 +44181 2142 will be a good -LRB- successful -RRB- rental . 3 +44182 2142 will be a good -LRB- successful -RRB- rental 3 +44183 2142 be a good -LRB- successful -RRB- rental 2 +44184 2142 a good -LRB- successful -RRB- rental 3 +44185 2142 good -LRB- successful -RRB- rental 3 +44186 2142 good -LRB- successful -RRB- 4 +44187 2142 -LRB- successful -RRB- 3 +44188 2142 successful -RRB- 3 +44189 2143 Sunshine State surveys the landscape and assesses the issues with a clear passion for sociology . 2 +44190 2143 Sunshine State 2 +44191 2143 Sunshine 2 +44192 2143 surveys the landscape and assesses the issues with a clear passion for sociology . 3 +44193 2143 surveys the landscape and assesses the issues with a clear passion for sociology 2 +44194 2143 surveys the landscape and 2 +44195 2143 surveys the landscape 2 +44196 2143 the landscape 2 +44197 2143 landscape 2 +44198 2143 assesses the issues with a clear passion for sociology 3 +44199 2143 assesses the issues 2 +44200 2143 assesses 1 +44201 2143 with a clear passion for sociology 3 +44202 2143 a clear passion for sociology 2 +44203 2143 a clear passion 2 +44204 2143 clear passion 3 +44205 2143 for sociology 2 +44206 2144 With the same sort of good-natured fun found in films like Tremors , Eight Legged Freaks is prime escapist fare . 4 +44207 2144 With the same sort of good-natured fun found in films like Tremors 3 +44208 2144 the same sort of good-natured fun found in films like Tremors 3 +44209 2144 the same sort 2 +44210 2144 same sort 2 +44211 2144 of good-natured fun found in films like Tremors 3 +44212 2144 good-natured fun found in films like Tremors 4 +44213 2144 good-natured fun 3 +44214 2144 found in films like Tremors 2 +44215 2144 in films like Tremors 2 +44216 2144 films like Tremors 2 +44217 2144 like Tremors 2 +44218 2144 Tremors 2 +44219 2144 , Eight Legged Freaks is prime escapist fare . 3 +44220 2144 Eight Legged Freaks is prime escapist fare . 2 +44221 2144 is prime escapist fare . 3 +44222 2144 is prime escapist fare 3 +44223 2144 prime escapist fare 2 +44224 2144 prime 3 +44225 2144 escapist fare 2 +44226 2145 An ambitiously naturalistic , albeit half-baked , drama about an abused , inner-city autistic teen . 3 +44227 2145 An ambitiously naturalistic , albeit half-baked , drama about an abused , inner-city autistic 3 +44228 2145 An ambitiously naturalistic , albeit half-baked , drama 2 +44229 2145 ambitiously naturalistic , albeit half-baked , drama 2 +44230 2145 ambitiously naturalistic , albeit half-baked , 2 +44231 2145 ambitiously naturalistic 3 +44232 2145 ambitiously 2 +44233 2145 , albeit half-baked , 1 +44234 2145 albeit half-baked , 2 +44235 2145 albeit half-baked 2 +44236 2145 about an abused , inner-city autistic 2 +44237 2145 an abused , inner-city autistic 1 +44238 2145 abused , inner-city autistic 2 +44239 2145 abused 1 +44240 2145 , inner-city autistic 1 +44241 2145 inner-city autistic 2 +44242 2145 autistic 1 +44243 2145 teen . 2 +44244 2146 It 's just a movie that happens to have Jackie Chan in it . 1 +44245 2146 's just a movie that happens to have Jackie Chan in it . 1 +44246 2146 's just a movie that happens to have Jackie Chan in it 2 +44247 2146 a movie that happens to have Jackie Chan in it 2 +44248 2146 that happens to have Jackie Chan in it 2 +44249 2146 happens to have Jackie Chan in it 2 +44250 2146 to have Jackie Chan in it 2 +44251 2146 have Jackie Chan in it 2 +44252 2146 Jackie Chan in it 2 +44253 2147 You do n't need to know your Ice-T 's from your Cool-J 's to realize that as far as these shootings are concerned , something is rotten in the state of California . 1 +44254 2147 do n't need to know your Ice-T 's from your Cool-J 's to realize that as far as these shootings are concerned , something is rotten in the state of California . 2 +44255 2147 do n't need to know your Ice-T 's from your Cool-J 's to realize that as far as these shootings are concerned , something is rotten in the state of California 0 +44256 2147 need to know your Ice-T 's from your Cool-J 's to realize that as far as these shootings are concerned , something is rotten in the state of California 2 +44257 2147 to know your Ice-T 's from your Cool-J 's to realize that as far as these shootings are concerned , something is rotten in the state of California 1 +44258 2147 know your Ice-T 's from your Cool-J 's to realize that as far as these shootings are concerned , something is rotten in the state of California 2 +44259 2147 your Ice-T 's from your Cool-J 's to realize that as far as these shootings are concerned , something is rotten in the state of California 1 +44260 2147 your Ice-T 's from your Cool-J 2 +44261 2147 your Ice-T 's 2 +44262 2147 Ice-T 's 2 +44263 2147 Ice-T 2 +44264 2147 from your Cool-J 2 +44265 2147 your Cool-J 2 +44266 2147 Cool-J 2 +44267 2147 's to realize that as far as these shootings are concerned , something is rotten in the state of California 1 +44268 2147 to realize that as far as these shootings are concerned , something is rotten in the state of California 1 +44269 2147 realize that as far as these shootings are concerned , something is rotten in the state of California 2 +44270 2147 that as far as these shootings are concerned , something is rotten in the state of California 1 +44271 2147 as far as these shootings are concerned , something is rotten in the state of California 1 +44272 2147 as far as these shootings are concerned 2 +44273 2147 as these shootings are concerned 2 +44274 2147 these shootings are concerned 2 +44275 2147 these shootings 2 +44276 2147 are concerned 2 +44277 2147 , something is rotten in the state of California 1 +44278 2147 something is rotten in the state of California 1 +44279 2147 is rotten in the state of California 1 +44280 2147 rotten in the state of California 1 +44281 2147 rotten 1 +44282 2147 in the state of California 2 +44283 2147 the state of California 2 +44284 2147 the state 2 +44285 2147 of California 3 +44286 2147 California 2 +44287 2148 The movie should jolt you out of your seat a couple of times , give you a few laughs , and leave you feeling like it was worth your seven bucks , even though it does turn out to be a bit of a cheat in the end . 3 +44288 2148 should jolt you out of your seat a couple of times , give you a few laughs , and leave you feeling like it was worth your seven bucks , even though it does turn out to be a bit of a cheat in the end . 3 +44289 2148 should jolt you out of your seat a couple of times , give you a few laughs , and leave you feeling like it was worth your seven bucks , even though it does turn out to be a bit of a cheat in the end 4 +44290 2148 jolt you out of your seat a couple of times , give you a few laughs , and leave you feeling like it was worth your seven bucks , even though it does turn out to be a bit of a cheat in the end 4 +44291 2148 jolt you out of your seat a couple of times , give you a few laughs , and 3 +44292 2148 jolt you out of your seat a couple of times , give you a few laughs , 4 +44293 2148 jolt you out of your seat a couple of times , give you a few laughs 3 +44294 2148 jolt you out of your seat a couple of times , 3 +44295 2148 jolt you out of your seat a couple of times 2 +44296 2148 jolt you out 3 +44297 2148 jolt you 3 +44298 2148 of your seat a couple of times 2 +44299 2148 your seat a couple of times 3 +44300 2148 a couple of times 2 +44301 2148 of times 2 +44302 2148 give you a few laughs 3 +44303 2148 give you 3 +44304 2148 a few laughs 3 +44305 2148 leave you feeling like it was worth your seven bucks , even though it does turn out to be a bit of a cheat in the end 2 +44306 2148 you feeling like it was worth your seven bucks , even though it does turn out to be a bit of a cheat in the end 2 +44307 2148 feeling like it was worth your seven bucks , even though it does turn out to be a bit of a cheat in the end 1 +44308 2148 like it was worth your seven bucks , even though it does turn out to be a bit of a cheat in the end 2 +44309 2148 like it was worth your seven bucks , even 2 +44310 2148 like it was worth your seven bucks , 3 +44311 2148 like it was worth your seven bucks 3 +44312 2148 it was worth your seven bucks 4 +44313 2148 was worth your seven bucks 3 +44314 2148 worth your seven bucks 3 +44315 2148 your seven bucks 2 +44316 2148 seven bucks 2 +44317 2148 bucks 2 +44318 2148 though it does turn out to be a bit of a cheat in the end 2 +44319 2148 it does turn out to be a bit of a cheat in the end 1 +44320 2148 does turn out to be a bit of a cheat in the end 1 +44321 2148 turn out to be a bit of a cheat in the end 0 +44322 2148 to be a bit of a cheat in the end 1 +44323 2148 be a bit of a cheat in the end 1 +44324 2148 a bit of a cheat in the end 1 +44325 2148 of a cheat in the end 2 +44326 2148 a cheat in the end 1 +44327 2148 a cheat 2 +44328 2148 cheat 1 +44329 2149 You can fire a torpedo through some of Clancy 's holes , and the scripters do n't deserve any Oscars . 0 +44330 2149 You can fire a torpedo through some of Clancy 's holes , and the scripters do n't deserve any Oscars 1 +44331 2149 You can fire a torpedo through some of Clancy 's holes , and 2 +44332 2149 You can fire a torpedo through some of Clancy 's holes , 1 +44333 2149 You can fire a torpedo through some of Clancy 's holes 1 +44334 2149 can fire a torpedo through some of Clancy 's holes 1 +44335 2149 fire a torpedo through some of Clancy 's holes 1 +44336 2149 fire a torpedo 3 +44337 2149 a torpedo 2 +44338 2149 torpedo 2 +44339 2149 through some of Clancy 's holes 3 +44340 2149 some of Clancy 's holes 2 +44341 2149 of Clancy 's holes 2 +44342 2149 Clancy 's holes 2 +44343 2149 Clancy 's 2 +44344 2149 the scripters do n't deserve any Oscars 0 +44345 2149 the scripters 2 +44346 2149 scripters 2 +44347 2149 do n't deserve any Oscars 1 +44348 2149 deserve any Oscars 2 +44349 2149 any Oscars 2 +44350 2149 Oscars 2 +44351 2150 A non-Britney person might survive a screening with little harm done , except maybe for the last 15 minutes , which are as maudlin as any after-school special you can imagine . 1 +44352 2150 A non-Britney person 2 +44353 2150 non-Britney person 2 +44354 2150 non-Britney 2 +44355 2150 might survive a screening with little harm done , except maybe for the last 15 minutes , which are as maudlin as any after-school special you can imagine . 0 +44356 2150 might survive a screening with little harm done , except maybe for the last 15 minutes , which are as maudlin as any after-school special you can imagine 3 +44357 2150 survive a screening with little harm done , except maybe for the last 15 minutes , which are as maudlin as any after-school special you can imagine 1 +44358 2150 survive a screening with little harm done , 3 +44359 2150 survive a screening with little harm done 1 +44360 2150 survive a screening 2 +44361 2150 a screening 2 +44362 2150 with little harm done 2 +44363 2150 little harm done 2 +44364 2150 little harm 2 +44365 2150 harm 1 +44366 2150 except maybe for the last 15 minutes , which are as maudlin as any after-school special you can imagine 0 +44367 2150 maybe for the last 15 minutes , which are as maudlin as any after-school special you can imagine 2 +44368 2150 maybe for the last 15 minutes , 2 +44369 2150 maybe for the last 15 minutes 2 +44370 2150 for the last 15 minutes 1 +44371 2150 the last 15 minutes 3 +44372 2150 last 15 minutes 3 +44373 2150 15 minutes 2 +44374 2150 which are as maudlin as any after-school special you can imagine 2 +44375 2150 are as maudlin as any after-school special you can imagine 1 +44376 2150 as maudlin as any after-school special you can imagine 2 +44377 2150 maudlin as any after-school special you can imagine 1 +44378 2150 maudlin 2 +44379 2150 as any after-school special you can imagine 2 +44380 2150 any after-school special you can imagine 3 +44381 2150 any after-school special 2 +44382 2150 you can imagine 2 +44383 2150 can imagine 2 +44384 2151 Obviously , a lot of people wasted a lot of their time -LRB- including mine -RRB- on something very inconsequential . 1 +44385 2151 , a lot of people wasted a lot of their time -LRB- including mine -RRB- on something very inconsequential . 0 +44386 2151 a lot of people wasted a lot of their time -LRB- including mine -RRB- on something very inconsequential . 1 +44387 2151 a lot of people 2 +44388 2151 wasted a lot of their time -LRB- including mine -RRB- on something very inconsequential . 1 +44389 2151 wasted a lot of their time -LRB- including mine -RRB- on something very inconsequential 0 +44390 2151 a lot of their time -LRB- including mine -RRB- on something very inconsequential 3 +44391 2151 of their time -LRB- including mine -RRB- on something very inconsequential 1 +44392 2151 their time -LRB- including mine -RRB- on something very inconsequential 1 +44393 2151 their time -LRB- including mine -RRB- on something 2 +44394 2151 their time -LRB- including mine -RRB- 2 +44395 2151 their time 2 +44396 2151 -LRB- including mine -RRB- 2 +44397 2151 including mine -RRB- 2 +44398 2151 including mine 2 +44399 2151 mine 2 +44400 2151 on something 2 +44401 2151 very inconsequential 2 +44402 2152 A moving picture that does not move . 1 +44403 2152 A moving 2 +44404 2152 picture that does not move . 1 +44405 2152 picture that does not move 1 +44406 2152 that does not move 1 +44407 2152 does not move 2 +44408 2153 Just about all of the film is confusing on one level or another , making Ararat far more demanding than it needs to be . 1 +44409 2153 Just about all of the film 2 +44410 2153 Just about all 2 +44411 2153 about all 2 +44412 2153 is confusing on one level or another , making Ararat far more demanding than it needs to be . 1 +44413 2153 is confusing on one level or another , making Ararat far more demanding than it needs to be 1 +44414 2153 confusing on one level or another , making Ararat far more demanding than it needs to be 1 +44415 2153 confusing on one level or another , 1 +44416 2153 confusing on one level or another 1 +44417 2153 on one level or another 2 +44418 2153 one level or another 2 +44419 2153 one level or 2 +44420 2153 one level 3 +44421 2153 making Ararat far more demanding than it needs to be 1 +44422 2153 Ararat far more demanding than it needs to be 1 +44423 2153 far more demanding than it needs to be 1 +44424 2153 demanding than it needs to be 1 +44425 2153 than it needs to be 2 +44426 2153 it needs to be 2 +44427 2153 needs to be 2 +44428 2154 Daily struggles and simple pleasures usurp the preaching message so that , by the time the credits roll across the pat ending , a warm , fuzzy feeling prevails . 4 +44429 2154 Daily struggles and simple pleasures usurp the preaching message so that , by the time the credits roll across the pat ending , a warm , fuzzy feeling prevails 3 +44430 2154 Daily struggles and 2 +44431 2154 Daily struggles 2 +44432 2154 struggles 1 +44433 2154 simple pleasures usurp the preaching message so that , by the time the credits roll across the pat ending , a warm , fuzzy feeling prevails 3 +44434 2154 simple pleasures 3 +44435 2154 usurp the preaching message so that , by the time the credits roll across the pat ending , a warm , fuzzy feeling prevails 3 +44436 2154 usurp the preaching message 2 +44437 2154 usurp 2 +44438 2154 the preaching message 1 +44439 2154 preaching message 1 +44440 2154 preaching 2 +44441 2154 so that , by the time the credits roll across the pat ending , a warm , fuzzy feeling prevails 4 +44442 2154 that , by the time the credits roll across the pat ending , a warm , fuzzy feeling prevails 4 +44443 2154 , by the time the credits roll across the pat ending , a warm , fuzzy feeling prevails 4 +44444 2154 by the time the credits roll across the pat ending , a warm , fuzzy feeling prevails 3 +44445 2154 by the time the credits roll across the pat ending 1 +44446 2154 the time the credits roll across the pat ending 2 +44447 2154 the credits roll across the pat ending 1 +44448 2154 the credits 2 +44449 2154 roll across the pat ending 2 +44450 2154 across the pat ending 2 +44451 2154 the pat ending 2 +44452 2154 the pat 2 +44453 2154 , a warm , fuzzy feeling prevails 4 +44454 2154 a warm , fuzzy feeling prevails 3 +44455 2154 a warm , fuzzy feeling 3 +44456 2154 warm , fuzzy feeling 3 +44457 2154 warm , fuzzy 4 +44458 2154 , fuzzy 2 +44459 2154 fuzzy 3 +44460 2155 Hatosy ... portrays young Brendan with his usual intelligence and subtlety , not to mention a convincing brogue . 3 +44461 2155 Hatosy 2 +44462 2155 ... portrays young Brendan with his usual intelligence and subtlety , not to mention a convincing brogue . 3 +44463 2155 portrays young Brendan with his usual intelligence and subtlety , not to mention a convincing brogue . 3 +44464 2155 portrays young Brendan with his usual intelligence and subtlety , not to mention a convincing brogue 3 +44465 2155 portrays young Brendan with his usual intelligence and subtlety , 3 +44466 2155 portrays young Brendan with his usual intelligence and subtlety 3 +44467 2155 portrays young Brendan 2 +44468 2155 portrays 2 +44469 2155 young Brendan 2 +44470 2155 Brendan 2 +44471 2155 with his usual intelligence and subtlety 3 +44472 2155 his usual intelligence and subtlety 3 +44473 2155 usual intelligence and subtlety 3 +44474 2155 intelligence and subtlety 3 +44475 2155 not to mention a convincing brogue 3 +44476 2155 to mention a convincing brogue 2 +44477 2155 mention a convincing brogue 2 +44478 2155 a convincing brogue 3 +44479 2155 convincing brogue 2 +44480 2155 brogue 2 +44481 2156 A uniquely sensual metaphorical dramatization of sexual obsession that spends a bit too much time on its fairly ludicrous plot . 3 +44482 2156 A uniquely sensual metaphorical dramatization of sexual obsession 4 +44483 2156 A uniquely sensual metaphorical dramatization 3 +44484 2156 uniquely sensual metaphorical dramatization 3 +44485 2156 uniquely sensual 3 +44486 2156 uniquely 3 +44487 2156 metaphorical dramatization 2 +44488 2156 dramatization 2 +44489 2156 of sexual obsession 2 +44490 2156 sexual obsession 2 +44491 2156 that spends a bit too much time on its fairly ludicrous plot . 0 +44492 2156 that spends a bit too much time on its fairly ludicrous plot 1 +44493 2156 spends a bit too much time on its fairly ludicrous plot 1 +44494 2156 spends a bit too much time 1 +44495 2156 spends a bit 2 +44496 2156 too much time 1 +44497 2156 much time 2 +44498 2156 on its fairly ludicrous plot 1 +44499 2156 its fairly ludicrous plot 2 +44500 2156 fairly ludicrous plot 1 +44501 2156 fairly ludicrous 1 +44502 2157 ... Jones , despite a definitely distinctive screen presence , just is n't able to muster for a movie that , its title notwithstanding , should have been a lot nastier if it wanted to fully capitalize on its lead 's specific gifts . 2 +44503 2157 Jones , despite a definitely distinctive screen presence , just is n't able to muster for a movie that , its title notwithstanding , should have been a lot nastier if it wanted to fully capitalize on its lead 's specific gifts . 1 +44504 2157 Jones , despite a definitely distinctive screen presence , just is n't able to muster for a movie that , its title notwithstanding , should have been a lot nastier if it wanted to fully capitalize on its lead 's specific gifts 2 +44505 2157 , despite a definitely distinctive screen presence , just is n't able to muster for a movie that , its title notwithstanding , should have been a lot nastier if it wanted to fully capitalize on its lead 's specific gifts 1 +44506 2157 despite a definitely distinctive screen presence , just is n't able to muster for a movie that , its title notwithstanding , should have been a lot nastier if it wanted to fully capitalize on its lead 's specific gifts 1 +44507 2157 despite a definitely distinctive screen presence 3 +44508 2157 a definitely distinctive screen presence 3 +44509 2157 definitely distinctive screen presence 3 +44510 2157 definitely distinctive 3 +44511 2157 , just is n't able to muster for a movie that , its title notwithstanding , should have been a lot nastier if it wanted to fully capitalize on its lead 's specific gifts 1 +44512 2157 just is n't able to muster for a movie that , its title notwithstanding , should have been a lot nastier if it wanted to fully capitalize on its lead 's specific gifts 1 +44513 2157 is n't able to muster for a movie that , its title notwithstanding , should have been a lot nastier if it wanted to fully capitalize on its lead 's specific gifts 2 +44514 2157 is n't able to muster for a movie that , its title notwithstanding , should have been a lot nastier 1 +44515 2157 able to muster for a movie that , its title notwithstanding , should have been a lot nastier 2 +44516 2157 to muster for a movie that , its title notwithstanding , should have been a lot nastier 2 +44517 2157 muster for a movie that , its title notwithstanding , should have been a lot nastier 2 +44518 2157 muster 2 +44519 2157 for a movie that , its title notwithstanding , should have been a lot nastier 2 +44520 2157 a movie that , its title notwithstanding , should have been a lot nastier 1 +44521 2157 that , its title notwithstanding , should have been a lot nastier 1 +44522 2157 , its title notwithstanding , should have been a lot nastier 2 +44523 2157 its title notwithstanding , should have been a lot nastier 1 +44524 2157 its title notwithstanding 1 +44525 2157 , should have been a lot nastier 1 +44526 2157 should have been a lot nastier 2 +44527 2157 have been a lot nastier 2 +44528 2157 been a lot nastier 2 +44529 2157 a lot nastier 2 +44530 2157 nastier 2 +44531 2157 if it wanted to fully capitalize on its lead 's specific gifts 2 +44532 2157 it wanted to fully capitalize on its lead 's specific gifts 3 +44533 2157 wanted to fully capitalize on its lead 's specific gifts 3 +44534 2157 to fully capitalize on its lead 's specific gifts 3 +44535 2157 fully capitalize on its lead 's specific gifts 3 +44536 2157 capitalize on its lead 's specific gifts 3 +44537 2157 on its lead 's specific gifts 2 +44538 2157 its lead 's specific gifts 2 +44539 2157 its lead 's 2 +44540 2157 lead 's 2 +44541 2157 specific gifts 2 +44542 2157 specific 2 +44543 2158 Fudges fact and fancy with such confidence that we feel as if we 're seeing something purer than the real thing . 4 +44544 2158 Fudges fact and fancy with such confidence that we feel as if we 're seeing something purer than the real thing 3 +44545 2158 Fudges fact and fancy with such confidence 2 +44546 2158 Fudges 2 +44547 2158 fact and fancy with such confidence 3 +44548 2158 fact and fancy 2 +44549 2158 fact and 2 +44550 2158 fancy 3 +44551 2158 with such confidence 3 +44552 2158 such confidence 3 +44553 2158 confidence 3 +44554 2158 that we feel as if we 're seeing something purer than the real thing 3 +44555 2158 we feel as if we 're seeing something purer than the real thing 4 +44556 2158 feel as if we 're seeing something purer than the real thing 4 +44557 2158 as if we 're seeing something purer than the real thing 4 +44558 2158 if we 're seeing something purer than the real thing 3 +44559 2158 we 're seeing something purer than the real thing 4 +44560 2158 're seeing something purer than the real thing 2 +44561 2158 seeing something purer than the real thing 3 +44562 2158 seeing something purer 2 +44563 2158 something purer 3 +44564 2158 purer 2 +44565 2158 than the real thing 3 +44566 2158 the real thing 3 +44567 2158 real thing 2 +44568 2159 Could have been crisper and punchier , but it 's likely to please audiences who like movies that demand four hankies . 3 +44569 2159 Could have been crisper and punchier , but it 's likely to please audiences who like movies that demand four hankies 3 +44570 2159 Could have been crisper and punchier , but 1 +44571 2159 Could have been crisper and punchier , 1 +44572 2159 Could have been crisper and punchier 1 +44573 2159 have been crisper and punchier 2 +44574 2159 been crisper and punchier 2 +44575 2159 crisper and punchier 3 +44576 2159 crisper and 3 +44577 2159 crisper 2 +44578 2159 punchier 3 +44579 2159 it 's likely to please audiences who like movies that demand four hankies 3 +44580 2159 's likely to please audiences who like movies that demand four hankies 2 +44581 2159 likely to please audiences who like movies that demand four hankies 3 +44582 2159 to please audiences who like movies that demand four hankies 3 +44583 2159 please audiences who like movies that demand four hankies 3 +44584 2159 audiences who like movies that demand four hankies 2 +44585 2159 who like movies that demand four hankies 2 +44586 2159 like movies that demand four hankies 3 +44587 2159 movies that demand four hankies 2 +44588 2159 that demand four hankies 2 +44589 2159 demand four hankies 2 +44590 2159 demand 2 +44591 2159 four hankies 3 +44592 2159 hankies 2 +44593 2160 Naipaul fans may be disappointed . 1 +44594 2160 Naipaul fans 2 +44595 2160 may be disappointed . 1 +44596 2160 may be disappointed 2 +44597 2161 The screenplay is hugely overwritten , with tons and tons of dialogue -- most of it given to children . 1 +44598 2161 is hugely overwritten , with tons and tons of dialogue -- most of it given to children . 1 +44599 2161 is hugely overwritten , with tons and tons of dialogue -- most of it given to children 1 +44600 2161 is hugely overwritten , 0 +44601 2161 is hugely overwritten 0 +44602 2161 hugely overwritten 0 +44603 2161 overwritten 1 +44604 2161 with tons and tons of dialogue -- most of it given to children 2 +44605 2161 tons and tons of dialogue -- most of it given to children 2 +44606 2161 tons and tons of dialogue -- 2 +44607 2161 tons and tons of dialogue 2 +44608 2161 tons and tons 2 +44609 2161 tons and 2 +44610 2161 tons 2 +44611 2161 of dialogue 2 +44612 2161 most of it given to children 3 +44613 2161 most of it 2 +44614 2161 given to children 2 +44615 2161 to children 2 +44616 2162 A beautiful , entertaining two hours . 4 +44617 2162 A beautiful , entertaining two hours 4 +44618 2162 beautiful , entertaining two hours 4 +44619 2162 entertaining two hours 4 +44620 2163 Enough said , except : Film overboard ! 0 +44621 2163 said , except : Film overboard ! 1 +44622 2163 said , except : Film overboard 2 +44623 2163 said , 2 +44624 2163 except : Film overboard 1 +44625 2163 except : 2 +44626 2163 Film overboard 2 +44627 2164 Writer\/director Walter Hill is in his hypermasculine element here , once again able to inject some real vitality and even art into a pulpy concept that , in many other hands would be completely forgettable . 3 +44628 2164 Writer\/director Walter Hill 2 +44629 2164 Walter Hill 2 +44630 2164 is in his hypermasculine element here , once again able to inject some real vitality and even art into a pulpy concept that , in many other hands would be completely forgettable . 3 +44631 2164 is in his hypermasculine element here , once again able to inject some real vitality and even art into a pulpy concept that , in many other hands would be completely forgettable 3 +44632 2164 is in his hypermasculine element here , once again 2 +44633 2164 is in his hypermasculine element here , 2 +44634 2164 is in his hypermasculine element here 2 +44635 2164 in his hypermasculine element here 2 +44636 2164 his hypermasculine element here 2 +44637 2164 his hypermasculine element 2 +44638 2164 hypermasculine element 2 +44639 2164 hypermasculine 1 +44640 2164 able to inject some real vitality and even art into a pulpy concept that , in many other hands would be completely forgettable 3 +44641 2164 to inject some real vitality and even art into a pulpy concept that , in many other hands would be completely forgettable 3 +44642 2164 inject some real vitality and even art into a pulpy concept that , in many other hands would be completely forgettable 3 +44643 2164 inject some real vitality and even art 3 +44644 2164 some real vitality and even art 3 +44645 2164 some real vitality and even 3 +44646 2164 some real vitality and 3 +44647 2164 some real vitality 3 +44648 2164 real vitality 3 +44649 2164 into a pulpy concept that , in many other hands would be completely forgettable 1 +44650 2164 a pulpy concept that , in many other hands would be completely forgettable 3 +44651 2164 a pulpy concept 2 +44652 2164 pulpy concept 1 +44653 2164 pulpy 1 +44654 2164 that , in many other hands would be completely forgettable 2 +44655 2164 in many other hands would be completely forgettable 2 +44656 2164 in many other hands 2 +44657 2164 many other hands 2 +44658 2164 other hands 2 +44659 2164 would be completely forgettable 2 +44660 2164 be completely forgettable 1 +44661 2164 completely forgettable 0 +44662 2165 For all the time we spend with these people , we never really get inside of them . 1 +44663 2165 For all the time we spend with these people 2 +44664 2165 For all the time 2 +44665 2165 we spend with these people 2 +44666 2165 spend with these people 3 +44667 2165 with these people 2 +44668 2165 , we never really get inside of them . 1 +44669 2165 we never really get inside of them . 1 +44670 2165 never really get inside of them . 2 +44671 2165 really get inside of them . 3 +44672 2165 really get inside of them 3 +44673 2165 get inside of them 2 +44674 2165 inside of them 2 +44675 2166 Eisenstein lacks considerable brio for a film about one of cinema 's directorial giants . 1 +44676 2166 lacks considerable brio for a film about one of cinema 's directorial giants . 2 +44677 2166 lacks considerable brio for a film about one of cinema 's directorial giants 1 +44678 2166 for a film about one of cinema 's directorial giants 2 +44679 2166 a film about one of cinema 's directorial giants 3 +44680 2166 about one of cinema 's directorial giants 3 +44681 2166 one of cinema 's directorial giants 3 +44682 2166 of cinema 's directorial giants 3 +44683 2166 cinema 's directorial giants 3 +44684 2166 directorial giants 2 +44685 2166 giants 2 +44686 2167 Naomi Watts is terrific as Rachel ; her petite frame and vulnerable persona emphasising her plight and isolation . 3 +44687 2167 Naomi Watts is terrific as Rachel ; her petite frame and vulnerable persona emphasising her plight and isolation 4 +44688 2167 Naomi Watts is terrific as Rachel ; 4 +44689 2167 Naomi Watts is terrific as Rachel 4 +44690 2167 Naomi Watts 2 +44691 2167 Naomi 2 +44692 2167 Watts 2 +44693 2167 is terrific as Rachel 4 +44694 2167 terrific as Rachel 4 +44695 2167 as Rachel 2 +44696 2167 Rachel 2 +44697 2167 her petite frame and vulnerable persona emphasising her plight and isolation 3 +44698 2167 her petite frame and vulnerable persona 2 +44699 2167 her petite frame and 2 +44700 2167 her petite frame 2 +44701 2167 petite frame 2 +44702 2167 petite 2 +44703 2167 vulnerable persona 2 +44704 2167 vulnerable 2 +44705 2167 emphasising her plight and isolation 3 +44706 2167 emphasising 2 +44707 2167 her plight and isolation 2 +44708 2167 plight and isolation 1 +44709 2167 plight and 2 +44710 2168 A giddy and provocative sexual romp that has something to say . 3 +44711 2168 A giddy and provocative sexual 4 +44712 2168 giddy and provocative sexual 3 +44713 2168 giddy 2 +44714 2168 and provocative sexual 2 +44715 2168 provocative sexual 2 +44716 2168 romp that has something to say . 3 +44717 2168 romp that has something to say 2 +44718 2168 that has something to say 3 +44719 2168 has something to say 3 +44720 2168 something to say 2 +44721 2169 With a completely predictable plot , you 'll swear that you 've seen it all before , even if you 've never come within a mile of The Longest Yard . 0 +44722 2169 With a completely predictable plot 1 +44723 2169 a completely predictable plot 2 +44724 2169 completely predictable plot 1 +44725 2169 completely predictable 1 +44726 2169 , you 'll swear that you 've seen it all before , even if you 've never come within a mile of The Longest Yard . 0 +44727 2169 you 'll swear that you 've seen it all before , even if you 've never come within a mile of The Longest Yard . 0 +44728 2169 'll swear that you 've seen it all before , even if you 've never come within a mile of The Longest Yard . 1 +44729 2169 'll swear that you 've seen it all before , even if you 've never come within a mile of The Longest Yard 2 +44730 2169 swear that you 've seen it all before , even if you 've never come within a mile of The Longest Yard 1 +44731 2169 that you 've seen it all before , even if you 've never come within a mile of The Longest Yard 1 +44732 2169 you 've seen it all before , even if you 've never come within a mile of The Longest Yard 2 +44733 2169 've seen it all before , even if you 've never come within a mile of The Longest Yard 2 +44734 2169 seen it all before , even if you 've never come within a mile of The Longest Yard 2 +44735 2169 seen it all before , 1 +44736 2169 even if you 've never come within a mile of The Longest Yard 2 +44737 2169 if you 've never come within a mile of The Longest Yard 2 +44738 2169 you 've never come within a mile of The Longest Yard 1 +44739 2169 've never come within a mile of The Longest Yard 2 +44740 2169 come within a mile of The Longest Yard 2 +44741 2169 within a mile of The Longest Yard 2 +44742 2169 a mile of The Longest Yard 2 +44743 2169 a mile 2 +44744 2169 of The Longest Yard 2 +44745 2169 The Longest Yard 2 +44746 2169 Longest Yard 2 +44747 2169 Longest 2 +44748 2169 Yard 2 +44749 2170 Life on the rez is no picnic : this picture shows you why . 2 +44750 2170 Life on the rez is no picnic : this picture shows you why 2 +44751 2170 Life on the rez is no picnic : 1 +44752 2170 Life on the rez is no picnic 2 +44753 2170 Life on the rez 2 +44754 2170 on the rez 2 +44755 2170 the rez 2 +44756 2170 rez 2 +44757 2170 is no picnic 1 +44758 2170 no picnic 1 +44759 2170 this picture shows you why 2 +44760 2170 this picture 2 +44761 2170 shows you why 2 +44762 2170 you why 2 +44763 2171 As Allen 's execution date closes in , the documentary gives an especially poignant portrait of her friendship with the never flagging legal investigator David Presson . 2 +44764 2171 As Allen 's execution date closes in 2 +44765 2171 Allen 's execution date closes in 2 +44766 2171 Allen 's execution date 2 +44767 2171 execution date 2 +44768 2171 closes in 2 +44769 2171 closes 2 +44770 2171 , the documentary gives an especially poignant portrait of her friendship with the never flagging legal investigator David Presson . 3 +44771 2171 the documentary gives an especially poignant portrait of her friendship with the never flagging legal investigator David Presson . 4 +44772 2171 gives an especially poignant portrait of her friendship with the never flagging legal investigator David Presson . 3 +44773 2171 gives an especially poignant portrait of her friendship with the never flagging legal investigator David Presson 4 +44774 2171 gives an especially poignant portrait of her friendship 3 +44775 2171 an especially poignant portrait of her friendship 3 +44776 2171 an especially poignant portrait 3 +44777 2171 especially poignant portrait 3 +44778 2171 poignant portrait 3 +44779 2171 of her friendship 2 +44780 2171 her friendship 2 +44781 2171 with the never flagging legal investigator David Presson 2 +44782 2171 the never flagging legal investigator David Presson 2 +44783 2171 the never flagging legal investigator 2 +44784 2171 never flagging legal investigator 2 +44785 2171 never flagging 2 +44786 2171 flagging 2 +44787 2171 legal investigator 2 +44788 2171 legal 2 +44789 2171 investigator 2 +44790 2171 David Presson 2 +44791 2171 Presson 2 +44792 2172 It is there to give them a good time . 2 +44793 2172 is there to give them a good time . 3 +44794 2172 is there to give them a good time 3 +44795 2172 there to give them a good time 3 +44796 2172 to give them a good time 3 +44797 2172 give them a good time 3 +44798 2172 give them 2 +44799 2173 Sly , sophisticated and surprising . 3 +44800 2173 Sly , sophisticated and surprising 3 +44801 2173 Sly , 2 +44802 2173 sophisticated and surprising 3 +44803 2173 sophisticated and 3 +44804 2174 All the pieces fall together without much surprise , but little moments give it a boost . 3 +44805 2174 All the pieces fall together without much surprise , but little moments give it a boost 3 +44806 2174 All the pieces fall together without much surprise , but 3 +44807 2174 All the pieces fall together without much surprise , 2 +44808 2174 All the pieces fall together without much surprise 2 +44809 2174 All the pieces 2 +44810 2174 fall together without much surprise 1 +44811 2174 fall together 2 +44812 2174 without much surprise 2 +44813 2174 much surprise 2 +44814 2174 little moments give it a boost 2 +44815 2174 little moments 2 +44816 2174 give it a boost 3 +44817 2174 a boost 2 +44818 2175 Aimed squarely at the least demanding of demographic groups : very small children who will be delighted simply to spend more time with familiar cartoon characters . 2 +44819 2175 Aimed squarely at the least demanding of demographic groups 0 +44820 2175 Aimed squarely 3 +44821 2175 Aimed 2 +44822 2175 at the least demanding of demographic groups 1 +44823 2175 the least demanding of demographic groups 2 +44824 2175 the least demanding 1 +44825 2175 least demanding 2 +44826 2175 of demographic groups 2 +44827 2175 demographic groups 2 +44828 2175 groups 2 +44829 2175 : very small children who will be delighted simply to spend more time with familiar cartoon characters . 3 +44830 2175 very small children who will be delighted simply to spend more time with familiar cartoon characters . 3 +44831 2175 very small children who will be delighted simply to spend more time with familiar cartoon characters 3 +44832 2175 very small children 2 +44833 2175 small children 2 +44834 2175 who will be delighted simply to spend more time with familiar cartoon characters 3 +44835 2175 will be delighted simply to spend more time with familiar cartoon characters 3 +44836 2175 be delighted simply to spend more time with familiar cartoon characters 3 +44837 2175 delighted simply to spend more time with familiar cartoon characters 3 +44838 2175 delighted simply 3 +44839 2175 delighted 3 +44840 2175 to spend more time with familiar cartoon characters 2 +44841 2175 spend more time with familiar cartoon characters 3 +44842 2175 spend more time 2 +44843 2175 with familiar cartoon characters 2 +44844 2175 familiar cartoon characters 2 +44845 2175 cartoon characters 3 +44846 2176 Like coming into a long-running , well-written television series where you 've missed the first half-dozen episodes and probably wo n't see the next six . 1 +44847 2176 Like coming into a long-running 2 +44848 2176 coming into a long-running 2 +44849 2176 into a long-running 2 +44850 2176 a long-running 2 +44851 2176 long-running 2 +44852 2176 , well-written television series where you 've missed the first half-dozen episodes and probably wo n't see the next six . 1 +44853 2176 well-written television series where you 've missed the first half-dozen episodes and probably wo n't see the next six . 1 +44854 2176 well-written television series where you 've missed the first half-dozen episodes and probably 2 +44855 2176 well-written television series 2 +44856 2176 well-written 4 +44857 2176 television series 2 +44858 2176 where you 've missed the first half-dozen episodes and probably 2 +44859 2176 you 've missed the first half-dozen episodes and probably 1 +44860 2176 've missed the first half-dozen episodes and probably 2 +44861 2176 missed the first half-dozen episodes and probably 2 +44862 2176 the first half-dozen episodes and probably 2 +44863 2176 the first half-dozen episodes and 2 +44864 2176 the first half-dozen episodes 2 +44865 2176 first half-dozen episodes 2 +44866 2176 half-dozen episodes 2 +44867 2176 half-dozen 2 +44868 2176 wo n't see the next six . 2 +44869 2176 wo n't see the next six 1 +44870 2176 see the next six 2 +44871 2176 the next six 2 +44872 2176 next six 2 +44873 2177 This is the case of a pregnant premise being wasted by a script that takes few chances and manages to insult the intelligence of everyone in the audience . 0 +44874 2177 is the case of a pregnant premise being wasted by a script that takes few chances and manages to insult the intelligence of everyone in the audience . 1 +44875 2177 is the case of a pregnant premise being wasted by a script that takes few chances and manages to insult the intelligence of everyone in the audience 1 +44876 2177 the case of a pregnant premise being wasted by a script that takes few chances and manages to insult the intelligence of everyone in the audience 0 +44877 2177 the case 2 +44878 2177 of a pregnant premise being wasted by a script that takes few chances and manages to insult the intelligence of everyone in the audience 0 +44879 2177 a pregnant premise being wasted by a script that takes few chances and manages to insult the intelligence of everyone in the audience 1 +44880 2177 a pregnant premise 2 +44881 2177 pregnant premise 2 +44882 2177 pregnant 2 +44883 2177 being wasted by a script that takes few chances and manages to insult the intelligence of everyone in the audience 1 +44884 2177 wasted by a script that takes few chances and manages to insult the intelligence of everyone in the audience 0 +44885 2177 by a script that takes few chances and manages to insult the intelligence of everyone in the audience 0 +44886 2177 a script that takes few chances and manages to insult the intelligence of everyone in the audience 0 +44887 2177 that takes few chances and manages to insult the intelligence of everyone in the audience 0 +44888 2177 takes few chances and manages to insult the intelligence of everyone in the audience 0 +44889 2177 takes few chances and 2 +44890 2177 takes few chances 2 +44891 2177 few chances 2 +44892 2177 manages to insult the intelligence of everyone in the audience 0 +44893 2177 to insult the intelligence of everyone in the audience 0 +44894 2177 insult the intelligence of everyone in the audience 0 +44895 2177 insult the intelligence of everyone 0 +44896 2177 insult 1 +44897 2177 the intelligence of everyone 2 +44898 2177 of everyone 2 +44899 2178 In its understanding , often funny way , it tells a story whose restatement is validated by the changing composition of the nation . 3 +44900 2178 In its understanding , often funny way 4 +44901 2178 its understanding , often funny way 2 +44902 2178 its understanding , 2 +44903 2178 its understanding 2 +44904 2178 often funny way 3 +44905 2178 often funny 3 +44906 2178 , it tells a story whose restatement is validated by the changing composition of the nation . 3 +44907 2178 it tells a story whose restatement is validated by the changing composition of the nation . 2 +44908 2178 tells a story whose restatement is validated by the changing composition of the nation . 3 +44909 2178 tells a story whose restatement is validated by the changing composition of the nation 3 +44910 2178 a story whose restatement is validated by the changing composition of the nation 3 +44911 2178 whose restatement is validated by the changing composition of the nation 3 +44912 2178 whose restatement 2 +44913 2178 restatement 2 +44914 2178 is validated by the changing composition of the nation 3 +44915 2178 validated by the changing composition of the nation 2 +44916 2178 validated 2 +44917 2178 by the changing composition of the nation 2 +44918 2178 the changing composition of the nation 2 +44919 2178 the changing composition 2 +44920 2178 changing composition 2 +44921 2178 of the nation 2 +44922 2178 the nation 3 +44923 2179 The movie does has some entertainment value - how much depends on how well you like Chris Rock . 2 +44924 2179 The movie does 2 +44925 2179 has some entertainment value - how much depends on how well you like Chris Rock . 3 +44926 2179 has some entertainment value - how much depends on how well you like Chris Rock 3 +44927 2179 has some entertainment value - how much depends on how well you like 2 +44928 2179 some entertainment value - how much depends on how well you like 3 +44929 2179 some entertainment value - 3 +44930 2179 some entertainment value 3 +44931 2179 entertainment value 2 +44932 2179 how much depends on how well you like 2 +44933 2179 depends on how well you like 2 +44934 2179 on how well you like 2 +44935 2179 how well you like 2 +44936 2179 how well 2 +44937 2179 you like 2 +44938 2180 Speaks eloquently about the symbiotic relationship between art and life . 4 +44939 2180 eloquently about the symbiotic relationship between art and life . 3 +44940 2180 eloquently about the symbiotic relationship between art and life 3 +44941 2180 eloquently 3 +44942 2180 about the symbiotic relationship between art and life 2 +44943 2180 the symbiotic relationship between art and life 2 +44944 2180 the symbiotic relationship 2 +44945 2180 symbiotic relationship 3 +44946 2180 symbiotic 3 +44947 2180 between art and life 2 +44948 2180 art and life 2 +44949 2180 art and 2 +44950 2181 Not everything in this ambitious comic escapade works , but Coppola , along with his sister , Sofia , is a real filmmaker . 3 +44951 2181 Not everything in this ambitious comic escapade works , but Coppola , along with his sister , Sofia , is a real filmmaker 3 +44952 2181 Not everything in this ambitious comic escapade works , but 2 +44953 2181 Not everything in this ambitious comic escapade works , 2 +44954 2181 Not everything in this ambitious comic escapade works 1 +44955 2181 Not everything in this ambitious comic escapade 2 +44956 2181 Not everything 1 +44957 2181 in this ambitious comic escapade 2 +44958 2181 this ambitious comic escapade 4 +44959 2181 ambitious comic escapade 3 +44960 2181 comic escapade 2 +44961 2181 escapade 2 +44962 2181 Coppola , along with his sister , Sofia , is a real filmmaker 4 +44963 2181 Coppola , along with his sister , Sofia , 2 +44964 2181 Coppola , along with his sister , Sofia 2 +44965 2181 Coppola , along with his sister , 2 +44966 2181 Coppola , along with his sister 2 +44967 2181 Coppola , 2 +44968 2181 along with his sister 2 +44969 2181 with his sister 2 +44970 2181 his sister 2 +44971 2181 sister 2 +44972 2181 Sofia 2 +44973 2181 is a real filmmaker 3 +44974 2181 a real filmmaker 4 +44975 2181 real filmmaker 2 +44976 2182 Nothing more than a stifling morality tale dressed up in peekaboo clothing . 1 +44977 2182 more than a stifling morality tale dressed up in peekaboo clothing . 2 +44978 2182 more than a stifling morality tale dressed up in peekaboo clothing 2 +44979 2182 more than a stifling morality tale 2 +44980 2182 than a stifling morality tale 1 +44981 2182 a stifling morality tale 2 +44982 2182 stifling morality tale 1 +44983 2182 dressed up in peekaboo clothing 2 +44984 2182 dressed up 2 +44985 2182 dressed 2 +44986 2182 in peekaboo clothing 2 +44987 2182 peekaboo clothing 2 +44988 2182 peekaboo 2 +44989 2182 clothing 2 +44990 2183 A series of immaculately composed shots of Patch Adams quietly freaking out does not make for much of a movie . 1 +44991 2183 A series of immaculately composed shots of Patch Adams quietly freaking out 2 +44992 2183 of immaculately composed shots of Patch Adams quietly freaking out 2 +44993 2183 immaculately composed shots of Patch Adams quietly freaking out 2 +44994 2183 immaculately 3 +44995 2183 composed shots of Patch Adams quietly freaking out 2 +44996 2183 composed 2 +44997 2183 shots of Patch Adams quietly freaking out 2 +44998 2183 of Patch Adams quietly freaking out 3 +44999 2183 Patch Adams quietly freaking out 2 +45000 2183 Patch Adams 2 +45001 2183 Patch 2 +45002 2183 Adams 2 +45003 2183 quietly freaking out 2 +45004 2183 freaking out 1 +45005 2183 freaking 2 +45006 2183 does not make for much of a movie . 1 +45007 2183 does not make for much of a movie 1 +45008 2183 make for much of a movie 2 +45009 2183 for much of a movie 2 +45010 2183 much of a movie 2 +45011 2184 The movie does n't add anything fresh to the myth . 1 +45012 2184 does n't add anything fresh to the myth . 1 +45013 2184 does n't add anything fresh to the myth 1 +45014 2184 add anything fresh to the myth 2 +45015 2184 add anything fresh 3 +45016 2184 anything fresh 3 +45017 2184 to the myth 2 +45018 2184 the myth 2 +45019 2185 Upper West Sidey exercise in narcissism and self-congratulation disguised as a tribute . 1 +45020 2185 Upper West Sidey 3 +45021 2185 West Sidey 2 +45022 2185 Sidey 2 +45023 2185 exercise in narcissism and self-congratulation disguised as a tribute . 0 +45024 2185 exercise in narcissism and self-congratulation disguised as a tribute 1 +45025 2185 in narcissism and self-congratulation disguised as a tribute 1 +45026 2185 narcissism and self-congratulation disguised as a tribute 1 +45027 2185 narcissism and self-congratulation 1 +45028 2185 narcissism and 1 +45029 2185 self-congratulation 2 +45030 2185 disguised as a tribute 2 +45031 2185 as a tribute 3 +45032 2185 a tribute 3 +45033 2186 The entire cast is extraordinarily good . 4 +45034 2186 The entire cast 2 +45035 2186 entire cast 2 +45036 2186 is extraordinarily good . 4 +45037 2186 is extraordinarily good 4 +45038 2186 extraordinarily good 4 +45039 2186 extraordinarily 4 +45040 2187 Like shave ice without the topping , this cinematic snow cone is as innocuous as it is flavorless . 2 +45041 2187 Like shave ice without the topping 2 +45042 2187 shave ice without the topping 1 +45043 2187 shave ice 2 +45044 2187 shave 2 +45045 2187 without the topping 2 +45046 2187 the topping 2 +45047 2187 topping 2 +45048 2187 , this cinematic snow cone is as innocuous as it is flavorless . 1 +45049 2187 this cinematic snow cone is as innocuous as it is flavorless . 0 +45050 2187 this cinematic snow cone 2 +45051 2187 cinematic snow cone 2 +45052 2187 snow cone 2 +45053 2187 cone 2 +45054 2187 is as innocuous as it is flavorless . 2 +45055 2187 is as innocuous as it is flavorless 1 +45056 2187 is as innocuous 2 +45057 2187 as innocuous 2 +45058 2187 as it is flavorless 1 +45059 2187 it is flavorless 1 +45060 2187 is flavorless 0 +45061 2187 flavorless 1 +45062 2188 Um ... is n't that the basis for the entire plot ? 1 +45063 2188 Um 2 +45064 2188 ... is n't that the basis for the entire plot ? 2 +45065 2188 is n't that the basis for the entire plot ? 2 +45066 2188 is n't that the basis for the entire plot 2 +45067 2188 that the basis for the entire plot 2 +45068 2188 the basis for the entire plot 2 +45069 2188 the basis 2 +45070 2188 basis 2 +45071 2188 for the entire plot 2 +45072 2188 the entire plot 2 +45073 2188 entire plot 2 +45074 2189 Cho 's timing is priceless . 4 +45075 2189 Cho 's timing 2 +45076 2189 Cho 's 2 +45077 2189 timing 2 +45078 2189 is priceless . 4 +45079 2189 is priceless 3 +45080 2190 Meyjes ... has done his homework and soaked up some jazzy new revisionist theories about the origins of Nazi politics and aesthetics . 3 +45081 2190 Meyjes 2 +45082 2190 ... has done his homework and soaked up some jazzy new revisionist theories about the origins of Nazi politics and aesthetics . 4 +45083 2190 has done his homework and soaked up some jazzy new revisionist theories about the origins of Nazi politics and aesthetics . 3 +45084 2190 has done his homework and soaked up some jazzy new revisionist theories about the origins of Nazi politics and aesthetics 3 +45085 2190 has done his homework and 3 +45086 2190 has done his homework 2 +45087 2190 done his homework 3 +45088 2190 his homework 2 +45089 2190 homework 2 +45090 2190 soaked up some jazzy new revisionist theories about the origins of Nazi politics and aesthetics 2 +45091 2190 soaked up 2 +45092 2190 soaked 2 +45093 2190 some jazzy new revisionist theories about the origins of Nazi politics and aesthetics 3 +45094 2190 some jazzy new revisionist theories 2 +45095 2190 jazzy new revisionist theories 3 +45096 2190 jazzy 2 +45097 2190 new revisionist theories 2 +45098 2190 revisionist theories 2 +45099 2190 revisionist 3 +45100 2190 about the origins of Nazi politics and aesthetics 3 +45101 2190 the origins of Nazi politics and aesthetics 2 +45102 2190 the origins 3 +45103 2190 origins 2 +45104 2190 of Nazi politics and aesthetics 1 +45105 2190 Nazi politics and aesthetics 1 +45106 2190 Nazi 1 +45107 2190 politics and aesthetics 2 +45108 2190 politics and 2 +45109 2190 aesthetics 2 +45110 2191 It 's a drawling , slobbering , lovable run-on sentence of a film , a Southern Gothic with the emotional arc of its raw blues soundtrack . 2 +45111 2191 's a drawling , slobbering , lovable run-on sentence of a film , a Southern Gothic with the emotional arc of its raw blues soundtrack . 2 +45112 2191 's a drawling , slobbering , lovable run-on sentence of a film , a Southern Gothic with the emotional arc of its raw blues soundtrack 2 +45113 2191 a drawling , slobbering , lovable run-on sentence of a film , a Southern Gothic with the emotional arc of its raw blues soundtrack 3 +45114 2191 a drawling , slobbering , lovable run-on sentence 1 +45115 2191 drawling , slobbering , lovable run-on sentence 2 +45116 2191 drawling 2 +45117 2191 , slobbering , lovable run-on sentence 2 +45118 2191 slobbering , lovable run-on sentence 2 +45119 2191 slobbering 1 +45120 2191 , lovable run-on sentence 2 +45121 2191 lovable run-on sentence 2 +45122 2191 lovable 3 +45123 2191 run-on sentence 2 +45124 2191 run-on 2 +45125 2191 of a film , a Southern Gothic with the emotional arc of its raw blues soundtrack 3 +45126 2191 a film , a Southern Gothic with the emotional arc of its raw blues soundtrack 3 +45127 2191 a film , 2 +45128 2191 a Southern Gothic with the emotional arc of its raw blues soundtrack 3 +45129 2191 a Southern Gothic 2 +45130 2191 Southern Gothic 2 +45131 2191 Gothic 2 +45132 2191 with the emotional arc of its raw blues soundtrack 2 +45133 2191 the emotional arc of its raw blues soundtrack 3 +45134 2191 the emotional arc 2 +45135 2191 emotional arc 2 +45136 2191 of its raw blues soundtrack 2 +45137 2191 its raw blues soundtrack 2 +45138 2191 raw blues soundtrack 2 +45139 2191 blues soundtrack 2 +45140 2191 blues 1 +45141 2192 ... a weak and ineffective ghost story without a conclusion or pay off . 0 +45142 2192 a weak and ineffective ghost story without a conclusion or pay off . 0 +45143 2192 a weak and ineffective ghost story without a conclusion or pay off 1 +45144 2192 a weak and ineffective ghost story 1 +45145 2192 weak and ineffective ghost story 1 +45146 2192 weak and ineffective 0 +45147 2192 ineffective 1 +45148 2192 ghost story 2 +45149 2192 without a conclusion or pay off 0 +45150 2192 a conclusion or pay off 2 +45151 2192 a conclusion or 2 +45152 2192 a conclusion 2 +45153 2192 pay off 2 +45154 2193 Rabbit-Proof Fence will probably make you angry . 2 +45155 2193 Rabbit-Proof Fence 2 +45156 2193 Rabbit-Proof 2 +45157 2193 Fence 2 +45158 2193 will probably make you angry . 2 +45159 2193 will probably make you angry 1 +45160 2193 make you angry 1 +45161 2193 you angry 1 +45162 2193 angry 1 +45163 2194 Time stands still in more ways that one in Clockstoppers , a sci-fi thriller as lazy as it is interminable . 1 +45164 2194 stands still in more ways that one in Clockstoppers , a sci-fi thriller as lazy as it is interminable . 1 +45165 2194 stands still in more ways that one in Clockstoppers , a sci-fi thriller as lazy as it is interminable 0 +45166 2194 stands still 2 +45167 2194 in more ways that one in Clockstoppers , a sci-fi thriller as lazy as it is interminable 1 +45168 2194 more ways that one in Clockstoppers , a sci-fi thriller as lazy as it is interminable 1 +45169 2194 more ways 3 +45170 2194 that one in Clockstoppers , a sci-fi thriller as lazy as it is interminable 1 +45171 2194 one in Clockstoppers , a sci-fi thriller as lazy as it is interminable 1 +45172 2194 one in Clockstoppers , a sci-fi 2 +45173 2194 in Clockstoppers , a sci-fi 2 +45174 2194 Clockstoppers , a sci-fi 2 +45175 2194 Clockstoppers , 2 +45176 2194 a sci-fi 2 +45177 2194 thriller as lazy as it is interminable 0 +45178 2194 thriller as lazy 1 +45179 2194 as lazy 1 +45180 2194 as it is interminable 1 +45181 2194 it is interminable 1 +45182 2194 is interminable 1 +45183 2195 It cooks Conduct in a low , smoky and inviting sizzle . 3 +45184 2195 cooks Conduct in a low , smoky and inviting sizzle . 2 +45185 2195 cooks Conduct in a low , smoky and inviting sizzle 3 +45186 2195 cooks 2 +45187 2195 Conduct in a low , smoky and inviting sizzle 4 +45188 2195 in a low , smoky and inviting sizzle 2 +45189 2195 a low , smoky and inviting sizzle 3 +45190 2195 low , smoky and inviting sizzle 3 +45191 2195 low , smoky and inviting 3 +45192 2195 , smoky and inviting 3 +45193 2195 smoky and inviting 3 +45194 2195 smoky and 3 +45195 2195 smoky 2 +45196 2195 inviting 3 +45197 2196 This is the first film I 've ever seen that had no obvious directing involved . 2 +45198 2196 is the first film I 've ever seen that had no obvious directing involved . 2 +45199 2196 is the first film I 've ever seen that had no obvious directing involved 0 +45200 2196 the first film I 've ever seen that had no obvious directing involved 1 +45201 2196 I 've ever seen that had no obvious directing involved 1 +45202 2196 've ever seen that had no obvious directing involved 1 +45203 2196 seen that had no obvious directing involved 1 +45204 2196 that had no obvious directing involved 1 +45205 2196 had no obvious directing involved 1 +45206 2196 had no obvious directing 1 +45207 2196 no obvious directing 1 +45208 2196 obvious directing 1 +45209 2197 ... Ice Age treads predictably along familiar territory , making it a passable family film that wo n't win many fans over the age of 12 . 2 +45210 2197 Ice Age treads predictably along familiar territory , making it a passable family film that wo n't win many fans over the age of 12 . 2 +45211 2197 treads predictably along familiar territory , making it a passable family film that wo n't win many fans over the age of 12 . 2 +45212 2197 treads predictably along familiar territory , making it a passable family film that wo n't win many fans over the age of 12 1 +45213 2197 treads predictably along familiar territory , 1 +45214 2197 treads predictably along familiar territory 1 +45215 2197 treads predictably 1 +45216 2197 along familiar territory 2 +45217 2197 familiar territory 2 +45218 2197 making it a passable family film that wo n't win many fans over the age of 12 2 +45219 2197 it a passable family film that wo n't win many fans over the age of 12 3 +45220 2197 a passable family film that wo n't win many fans over the age of 12 2 +45221 2197 a passable family film 3 +45222 2197 passable family film 2 +45223 2197 passable 2 +45224 2197 that wo n't win many fans over the age of 12 1 +45225 2197 wo n't win many fans over the age of 12 1 +45226 2197 win many fans over the age of 12 2 +45227 2197 win many fans 3 +45228 2197 many fans 3 +45229 2197 over the age of 12 2 +45230 2197 the age of 12 2 +45231 2197 the age 3 +45232 2197 of 12 2 +45233 2197 12 2 +45234 2198 One of the very best movies ever made about the life of moviemaking . 4 +45235 2198 One of the very best movies 4 +45236 2198 of the very best movies 4 +45237 2198 the very best movies 4 +45238 2198 very best movies 3 +45239 2198 ever made about the life of moviemaking . 2 +45240 2198 made about the life of moviemaking . 2 +45241 2198 made about the life of moviemaking 2 +45242 2198 about the life of moviemaking 2 +45243 2198 the life of moviemaking 2 +45244 2199 A perfectly pleasant if slightly pokey comedy . 3 +45245 2199 A perfectly pleasant if slightly pokey comedy 3 +45246 2199 perfectly pleasant if slightly pokey comedy 3 +45247 2199 perfectly pleasant if slightly pokey 3 +45248 2199 perfectly pleasant if 3 +45249 2199 perfectly pleasant 4 +45250 2199 slightly pokey 1 +45251 2199 pokey 1 +45252 2200 A flawed but engrossing thriller . 3 +45253 2200 A flawed but engrossing thriller 3 +45254 2200 flawed but engrossing thriller 2 +45255 2200 flawed but engrossing 3 +45256 2200 flawed but 1 +45257 2201 Both damning and damned compelling . 3 +45258 2201 damning and damned compelling . 4 +45259 2201 damning and damned compelling 3 +45260 2201 damning and 2 +45261 2201 damning 2 +45262 2201 damned compelling 4 +45263 2202 The film sometimes flags ... but there is enough secondary action to keep things moving along at a brisk , amusing pace . 2 +45264 2202 The film sometimes flags ... but there is enough secondary action to keep things moving along at a brisk , amusing pace 3 +45265 2202 The film sometimes flags ... but 2 +45266 2202 The film sometimes flags ... 2 +45267 2202 The film sometimes flags 3 +45268 2202 sometimes flags 2 +45269 2202 flags 2 +45270 2202 there is enough secondary action to keep things moving along at a brisk , amusing pace 3 +45271 2202 is enough secondary action to keep things moving along at a brisk , amusing pace 3 +45272 2202 enough secondary action to keep things moving along at a brisk , amusing pace 3 +45273 2202 secondary action to keep things moving along at a brisk , amusing pace 3 +45274 2202 secondary 1 +45275 2202 action to keep things moving along at a brisk , amusing pace 4 +45276 2202 to keep things moving along at a brisk , amusing pace 3 +45277 2202 keep things moving along at a brisk , amusing pace 3 +45278 2202 things moving along at a brisk , amusing pace 3 +45279 2202 moving along at a brisk , amusing pace 3 +45280 2202 moving along 1 +45281 2202 at a brisk , amusing pace 3 +45282 2202 a brisk , amusing pace 3 +45283 2202 brisk , amusing pace 3 +45284 2202 brisk , amusing 4 +45285 2202 , amusing 3 +45286 2203 ... creates a visceral sense of its characters ' lives and conflicted emotions that carries it far above ... what could have been a melodramatic , Lifetime Channel-style anthology . 2 +45287 2203 creates a visceral sense of its characters ' lives and conflicted emotions that carries it far above ... what could have been a melodramatic , Lifetime Channel-style anthology . 3 +45288 2203 creates a visceral sense of its characters ' lives and conflicted emotions that carries it far above ... what could have been a melodramatic , Lifetime Channel-style anthology 3 +45289 2203 a visceral sense of its characters ' lives and conflicted emotions that carries it far above ... what could have been a melodramatic , Lifetime Channel-style anthology 3 +45290 2203 a visceral sense of its characters ' lives and 2 +45291 2203 a visceral sense of its characters ' lives 3 +45292 2203 a visceral sense 2 +45293 2203 visceral sense 3 +45294 2203 visceral 2 +45295 2203 of its characters ' lives 3 +45296 2203 its characters ' lives 2 +45297 2203 conflicted emotions that carries it far above ... what could have been a melodramatic , Lifetime Channel-style anthology 2 +45298 2203 conflicted emotions that carries it far above ... 3 +45299 2203 conflicted emotions that carries it far above 3 +45300 2203 conflicted emotions 2 +45301 2203 conflicted 2 +45302 2203 that carries it far above 3 +45303 2203 carries it far above 4 +45304 2203 it far above 3 +45305 2203 far above 2 +45306 2203 what could have been a melodramatic , Lifetime Channel-style anthology 2 +45307 2203 could have been a melodramatic , Lifetime Channel-style anthology 2 +45308 2203 have been a melodramatic , Lifetime Channel-style anthology 1 +45309 2203 been a melodramatic , Lifetime Channel-style anthology 2 +45310 2203 a melodramatic , Lifetime Channel-style anthology 2 +45311 2203 melodramatic , Lifetime Channel-style anthology 1 +45312 2203 , Lifetime Channel-style anthology 2 +45313 2203 Lifetime Channel-style anthology 3 +45314 2203 Channel-style anthology 2 +45315 2203 Channel-style 2 +45316 2203 anthology 2 +45317 2204 To honestly address the flaws inherent in how medical aid is made available to American workers , a more balanced or fair portrayal of both sides will be needed . 1 +45318 2204 To honestly address the flaws inherent in how medical aid is made available to American workers 2 +45319 2204 honestly address the flaws inherent in how medical aid is made available to American workers 3 +45320 2204 address the flaws inherent in how medical aid is made available to American workers 2 +45321 2204 address 2 +45322 2204 the flaws inherent in how medical aid is made available to American workers 2 +45323 2204 inherent in how medical aid is made available to American workers 3 +45324 2204 in how medical aid is made available to American workers 2 +45325 2204 how medical aid is made available to American workers 2 +45326 2204 medical aid is made available to American workers 2 +45327 2204 medical aid 2 +45328 2204 medical 2 +45329 2204 is made available to American workers 2 +45330 2204 made available to American workers 2 +45331 2204 available to American workers 2 +45332 2204 available 3 +45333 2204 to American workers 2 +45334 2204 American workers 2 +45335 2204 workers 2 +45336 2204 , a more balanced or fair portrayal of both sides will be needed . 2 +45337 2204 a more balanced or fair portrayal of both sides will be needed . 2 +45338 2204 a more balanced or fair portrayal of both sides 3 +45339 2204 a more balanced or fair portrayal 3 +45340 2204 more balanced or fair portrayal 3 +45341 2204 more balanced or fair 2 +45342 2204 balanced or fair 3 +45343 2204 balanced or 2 +45344 2204 balanced 2 +45345 2204 of both sides 2 +45346 2204 both sides 2 +45347 2204 sides 2 +45348 2204 will be needed . 2 +45349 2204 will be needed 2 +45350 2204 be needed 2 +45351 2205 A charming , banter-filled comedy ... one of those airy cinematic bon bons whose aims -- and by extension , accomplishments -- seem deceptively slight on the surface . 3 +45352 2205 A charming , banter-filled comedy ... one of those airy cinematic bon bons whose aims -- and by extension , accomplishments -- seem deceptively slight on the surface 4 +45353 2205 A charming , banter-filled comedy ... 4 +45354 2205 A charming , banter-filled comedy 3 +45355 2205 charming , banter-filled comedy 4 +45356 2205 , banter-filled comedy 3 +45357 2205 banter-filled comedy 3 +45358 2205 banter-filled 2 +45359 2205 one of those airy cinematic bon bons whose aims -- and by extension , accomplishments -- seem deceptively slight on the surface 2 +45360 2205 of those airy cinematic bon bons whose aims -- and by extension , accomplishments -- seem deceptively slight on the surface 3 +45361 2205 those airy cinematic bon bons whose aims -- and by extension , accomplishments -- seem deceptively slight on the surface 2 +45362 2205 those airy cinematic bon bons 2 +45363 2205 airy cinematic bon bons 3 +45364 2205 airy 2 +45365 2205 cinematic bon bons 3 +45366 2205 bon bons 2 +45367 2205 bon 2 +45368 2205 bons 2 +45369 2205 whose aims -- and by extension , accomplishments -- seem deceptively slight on the surface 2 +45370 2205 whose aims -- and by extension , accomplishments -- 3 +45371 2205 whose aims 2 +45372 2205 -- and by extension , accomplishments -- 2 +45373 2205 -- and by extension , accomplishments 2 +45374 2205 by extension , accomplishments 3 +45375 2205 extension , accomplishments 2 +45376 2205 extension , 2 +45377 2205 extension 2 +45378 2205 seem deceptively slight on the surface 2 +45379 2205 seem deceptively slight 1 +45380 2205 deceptively slight 2 +45381 2205 on the surface 2 +45382 2206 A delightful little film that revels in its own simplicity , Mostly Martha will leave you with a smile on your face and a grumble in your stomach . 3 +45383 2206 A delightful little film that revels in its own simplicity 3 +45384 2206 A delightful little film 4 +45385 2206 delightful little film 3 +45386 2206 that revels in its own simplicity 2 +45387 2206 revels in its own simplicity 3 +45388 2206 revels 2 +45389 2206 in its own simplicity 3 +45390 2206 its own simplicity 2 +45391 2206 own simplicity 2 +45392 2206 , Mostly Martha will leave you with a smile on your face and a grumble in your stomach . 3 +45393 2206 Mostly Martha will leave you with a smile on your face and a grumble in your stomach . 3 +45394 2206 Martha will leave you with a smile on your face and a grumble in your stomach . 3 +45395 2206 will leave you with a smile on your face and a grumble in your stomach . 3 +45396 2206 will leave you with a smile on your face and a grumble in your stomach 3 +45397 2206 leave you with a smile on your face and a grumble in your stomach 3 +45398 2206 with a smile on your face and a grumble in your stomach 3 +45399 2206 a smile on your face and a grumble in your stomach 3 +45400 2206 a smile on your face and 3 +45401 2206 a smile on your face 3 +45402 2206 a smile 3 +45403 2206 on your face 2 +45404 2206 a grumble in your stomach 2 +45405 2206 a grumble 2 +45406 2206 grumble 1 +45407 2206 in your stomach 2 +45408 2206 your stomach 2 +45409 2207 It just did n't mean much to me and played too skewed to ever get a hold on -LRB- or be entertained by -RRB- . 0 +45410 2207 It just did n't mean much to me and played too skewed to ever get a hold on -LRB- or be entertained by -RRB- 1 +45411 2207 It just did n't mean much to me and played too skewed to ever get a hold on 2 +45412 2207 just did n't mean much to me and played too skewed to ever get a hold on 1 +45413 2207 did n't mean much to me and played too skewed to ever get a hold on 1 +45414 2207 did n't mean much to me and 1 +45415 2207 did n't mean much to me 1 +45416 2207 mean much to me 2 +45417 2207 much to me 2 +45418 2207 played too skewed to ever get a hold on 2 +45419 2207 too skewed to ever get a hold on 1 +45420 2207 skewed to ever get a hold on 1 +45421 2207 skewed 2 +45422 2207 to ever get a hold on 2 +45423 2207 ever get a hold on 2 +45424 2207 get a hold on 2 +45425 2207 get a hold 2 +45426 2207 a hold 2 +45427 2207 -LRB- or be entertained by -RRB- 2 +45428 2207 -LRB- or be entertained by 2 +45429 2207 be entertained by 3 +45430 2207 entertained by 3 +45431 2208 The Four Feathers has rewards , from the exoticism of its seas of sand to the fierce grandeur of its sweeping battle scenes . 3 +45432 2208 has rewards , from the exoticism of its seas of sand to the fierce grandeur of its sweeping battle scenes . 3 +45433 2208 has rewards , from the exoticism of its seas of sand to the fierce grandeur of its sweeping battle scenes 4 +45434 2208 has rewards , 3 +45435 2208 has rewards 3 +45436 2208 from the exoticism of its seas of sand to the fierce grandeur of its sweeping battle scenes 3 +45437 2208 the exoticism of its seas of sand to the fierce grandeur of its sweeping battle scenes 3 +45438 2208 the exoticism 2 +45439 2208 exoticism 2 +45440 2208 of its seas of sand to the fierce grandeur of its sweeping battle scenes 3 +45441 2208 its seas of sand to the fierce grandeur of its sweeping battle scenes 3 +45442 2208 its seas 2 +45443 2208 seas 2 +45444 2208 of sand to the fierce grandeur of its sweeping battle scenes 3 +45445 2208 sand to the fierce grandeur of its sweeping battle scenes 3 +45446 2208 to the fierce grandeur of its sweeping battle scenes 3 +45447 2208 the fierce grandeur of its sweeping battle scenes 3 +45448 2208 the fierce grandeur 3 +45449 2208 fierce grandeur 3 +45450 2208 of its sweeping battle scenes 3 +45451 2208 its sweeping battle scenes 3 +45452 2208 sweeping battle scenes 3 +45453 2208 sweeping 3 +45454 2208 battle scenes 2 +45455 2209 A comedy that swings and jostles to the rhythms of life . 3 +45456 2209 A comedy that swings and jostles to the rhythms of life 3 +45457 2209 that swings and jostles to the rhythms of life 3 +45458 2209 that swings and jostles 2 +45459 2209 swings and jostles 3 +45460 2209 swings and 2 +45461 2209 swings 2 +45462 2209 jostles 2 +45463 2209 to the rhythms of life 2 +45464 2209 the rhythms of life 2 +45465 2209 the rhythms 2 +45466 2210 It 's never dull and always looks good . 4 +45467 2210 's never dull and always looks good . 3 +45468 2210 's never dull and always looks good 3 +45469 2210 's never dull and 3 +45470 2210 's never dull 3 +45471 2210 always looks good 4 +45472 2210 looks good 3 +45473 2211 Unfunny and lacking any sense of commitment to or affection for its characters , the Reginald Hudlin comedy relies on toilet humor , ethnic slurs . 0 +45474 2211 Unfunny and lacking any sense of commitment to or affection for its characters 1 +45475 2211 lacking any sense of commitment to or affection for its characters 2 +45476 2211 lacking any sense of commitment to or 1 +45477 2211 lacking any sense of commitment to 1 +45478 2211 lacking any sense of commitment 1 +45479 2211 any sense of commitment 2 +45480 2211 any sense 2 +45481 2211 of commitment 2 +45482 2211 affection for its characters 3 +45483 2211 for its characters 2 +45484 2211 , the Reginald Hudlin comedy relies on toilet humor , ethnic slurs . 0 +45485 2211 the Reginald Hudlin comedy relies on toilet humor , ethnic slurs . 1 +45486 2211 the Reginald Hudlin comedy 2 +45487 2211 Reginald Hudlin comedy 2 +45488 2211 Reginald 2 +45489 2211 Hudlin comedy 2 +45490 2211 Hudlin 2 +45491 2211 relies on toilet humor , ethnic slurs . 0 +45492 2211 relies on toilet humor , ethnic slurs 1 +45493 2211 on toilet humor , ethnic slurs 1 +45494 2211 toilet humor , ethnic slurs 1 +45495 2211 toilet humor , 1 +45496 2211 toilet humor 1 +45497 2211 ethnic slurs 2 +45498 2211 slurs 1 +45499 2212 Rich in shadowy metaphor and as sharp as a samurai sword , Jiang Wen 's Devils on the Doorstep is a wartime farce in the alternately comic and gut-wrenching style of Joseph Heller or Kurt Vonnegut . 4 +45500 2212 Rich in shadowy metaphor and as sharp as a samurai sword 3 +45501 2212 Rich in shadowy metaphor 3 +45502 2212 in shadowy metaphor 2 +45503 2212 shadowy metaphor 2 +45504 2212 shadowy 1 +45505 2212 and as sharp as a samurai sword 2 +45506 2212 as sharp as a samurai sword 4 +45507 2212 sharp as a samurai sword 3 +45508 2212 as a samurai sword 2 +45509 2212 a samurai sword 2 +45510 2212 samurai sword 2 +45511 2212 samurai 2 +45512 2212 , Jiang Wen 's Devils on the Doorstep is a wartime farce in the alternately comic and gut-wrenching style of Joseph Heller or Kurt Vonnegut . 2 +45513 2212 Jiang Wen 's Devils on the Doorstep is a wartime farce in the alternately comic and gut-wrenching style of Joseph Heller or Kurt Vonnegut . 3 +45514 2212 Jiang Wen 's Devils on the Doorstep 2 +45515 2212 Jiang Wen 's Devils 2 +45516 2212 Jiang Wen 's 2 +45517 2212 Jiang 2 +45518 2212 Wen 's 2 +45519 2212 Wen 2 +45520 2212 Devils 2 +45521 2212 on the Doorstep 2 +45522 2212 the Doorstep 2 +45523 2212 Doorstep 2 +45524 2212 is a wartime farce in the alternately comic and gut-wrenching style of Joseph Heller or Kurt Vonnegut . 3 +45525 2212 is a wartime farce in the alternately comic and gut-wrenching style of Joseph Heller or Kurt Vonnegut 3 +45526 2212 a wartime farce in the alternately comic and gut-wrenching style of Joseph Heller or Kurt Vonnegut 2 +45527 2212 a wartime farce in the alternately comic and 3 +45528 2212 a wartime farce in the alternately comic 2 +45529 2212 a wartime farce 2 +45530 2212 wartime farce 2 +45531 2212 in the alternately comic 2 +45532 2212 the alternately comic 2 +45533 2212 alternately comic 2 +45534 2212 gut-wrenching style of Joseph Heller or Kurt Vonnegut 3 +45535 2212 gut-wrenching style 2 +45536 2212 gut-wrenching 3 +45537 2212 of Joseph Heller or Kurt Vonnegut 2 +45538 2212 Joseph Heller or Kurt Vonnegut 2 +45539 2212 Joseph Heller or 2 +45540 2212 Joseph Heller 2 +45541 2212 Joseph 2 +45542 2212 Heller 2 +45543 2212 Kurt Vonnegut 2 +45544 2212 Kurt 2 +45545 2212 Vonnegut 3 +45546 2213 Reggio and Glass put on an intoxicating show . 3 +45547 2213 Reggio and Glass 2 +45548 2213 Reggio and 2 +45549 2213 put on an intoxicating show . 3 +45550 2213 put on an intoxicating show 3 +45551 2213 on an intoxicating show 3 +45552 2213 an intoxicating show 3 +45553 2213 intoxicating show 3 +45554 2214 likeable thanks to its cast , its cuisine and its quirky tunes . 4 +45555 2214 likeable thanks to its cast , its cuisine and its quirky tunes 4 +45556 2214 likeable 3 +45557 2214 thanks to its cast , its cuisine and its quirky tunes 3 +45558 2214 to its cast , its cuisine and its quirky tunes 2 +45559 2214 its cast , its cuisine and its quirky tunes 3 +45560 2214 its cast , its cuisine and 2 +45561 2214 its cast , its cuisine 2 +45562 2214 its cast , 2 +45563 2214 its cast 2 +45564 2214 its cuisine 2 +45565 2214 cuisine 2 +45566 2214 its quirky tunes 2 +45567 2214 quirky tunes 2 +45568 2215 What with all the blanket statements and dime-store ruminations on vanity , the worries of the rich and sudden wisdom , the film becomes a sermon for most of its running time . 1 +45569 2215 What with all the blanket statements and dime-store ruminations on vanity 1 +45570 2215 with all the blanket statements and dime-store ruminations on vanity 1 +45571 2215 all the blanket statements and dime-store ruminations on vanity 1 +45572 2215 all the blanket statements and dime-store ruminations 3 +45573 2215 the blanket statements and dime-store ruminations 1 +45574 2215 blanket statements and dime-store ruminations 2 +45575 2215 statements and dime-store ruminations 1 +45576 2215 statements 2 +45577 2215 and dime-store ruminations 2 +45578 2215 dime-store ruminations 1 +45579 2215 dime-store 2 +45580 2215 ruminations 2 +45581 2215 on vanity 2 +45582 2215 vanity 2 +45583 2215 , the worries of the rich and sudden wisdom , the film becomes a sermon for most of its running time . 2 +45584 2215 the worries of the rich and sudden wisdom , the film becomes a sermon for most of its running time . 2 +45585 2215 the worries of the rich and sudden wisdom , the film 2 +45586 2215 the worries 2 +45587 2215 worries 2 +45588 2215 of the rich and sudden wisdom , the film 3 +45589 2215 the rich and sudden wisdom , the film 4 +45590 2215 the rich and sudden wisdom , 3 +45591 2215 the rich and sudden wisdom 2 +45592 2215 rich and sudden wisdom 4 +45593 2215 rich and sudden 3 +45594 2215 wisdom 3 +45595 2215 becomes a sermon for most of its running time . 1 +45596 2215 becomes a sermon for most of its running time 1 +45597 2215 a sermon for most of its running time 1 +45598 2215 a sermon 2 +45599 2215 sermon 2 +45600 2216 Breen 's script is sketchy with actorish notations on the margin of acting . 1 +45601 2216 Breen 's script 2 +45602 2216 Breen 's 2 +45603 2216 Breen 2 +45604 2216 is sketchy with actorish notations on the margin of acting . 2 +45605 2216 is sketchy with actorish notations on the margin of acting 2 +45606 2216 sketchy with actorish notations on the margin of acting 1 +45607 2216 with actorish notations on the margin of acting 1 +45608 2216 actorish notations on the margin of acting 2 +45609 2216 actorish notations 2 +45610 2216 actorish 2 +45611 2216 notations 2 +45612 2216 on the margin of acting 2 +45613 2216 the margin of acting 2 +45614 2216 of acting 2 +45615 2217 Has its moments , but it 's pretty far from a treasure . 2 +45616 2217 Has its moments , but it 's pretty far from a treasure 2 +45617 2217 Has its moments , but 3 +45618 2217 Has its moments , 3 +45619 2217 Has its moments 2 +45620 2217 its moments 2 +45621 2217 it 's pretty far from a treasure 1 +45622 2217 's pretty far from a treasure 1 +45623 2217 pretty far from a treasure 1 +45624 2217 far from a treasure 1 +45625 2217 from a treasure 3 +45626 2217 a treasure 4 +45627 2218 This loud and thoroughly obnoxious comedy about a pair of squabbling working-class spouses is a deeply unpleasant experience . 0 +45628 2218 This loud and thoroughly obnoxious comedy about a pair of squabbling working-class spouses 0 +45629 2218 This loud and thoroughly obnoxious comedy 1 +45630 2218 loud and thoroughly obnoxious comedy 0 +45631 2218 loud and thoroughly 3 +45632 2218 loud and 2 +45633 2218 obnoxious comedy 1 +45634 2218 about a pair of squabbling working-class spouses 1 +45635 2218 a pair of squabbling working-class spouses 2 +45636 2218 of squabbling working-class spouses 2 +45637 2218 squabbling working-class spouses 2 +45638 2218 squabbling 2 +45639 2218 working-class spouses 2 +45640 2218 working-class 2 +45641 2218 spouses 2 +45642 2218 is a deeply unpleasant experience . 0 +45643 2218 is a deeply unpleasant experience 0 +45644 2218 a deeply unpleasant experience 0 +45645 2218 deeply unpleasant experience 0 +45646 2218 deeply unpleasant 0 +45647 2219 Not counting a few gross-out comedies I 've been trying to forget , this is the first film in a long time that made me want to bolt the theater in the first 10 minutes . 0 +45648 2219 Not counting a few gross-out comedies I 've been trying to forget 0 +45649 2219 counting a few gross-out comedies I 've been trying to forget 1 +45650 2219 counting 2 +45651 2219 a few gross-out comedies I 've been trying to forget 1 +45652 2219 a few gross-out comedies 2 +45653 2219 few gross-out comedies 2 +45654 2219 gross-out comedies 2 +45655 2219 I 've been trying to forget 2 +45656 2219 've been trying to forget 1 +45657 2219 been trying to forget 1 +45658 2219 trying to forget 1 +45659 2219 to forget 2 +45660 2219 , this is the first film in a long time that made me want to bolt the theater in the first 10 minutes . 0 +45661 2219 this is the first film in a long time that made me want to bolt the theater in the first 10 minutes . 0 +45662 2219 is the first film in a long time that made me want to bolt the theater in the first 10 minutes . 1 +45663 2219 is the first film in a long time that made me want to bolt the theater in the first 10 minutes 0 +45664 2219 the first film in a long time that made me want to bolt the theater in the first 10 minutes 1 +45665 2219 in a long time that made me want to bolt the theater in the first 10 minutes 0 +45666 2219 a long time that made me want to bolt the theater in the first 10 minutes 0 +45667 2219 that made me want to bolt the theater in the first 10 minutes 1 +45668 2219 made me want to bolt the theater in the first 10 minutes 0 +45669 2219 me want to bolt the theater in the first 10 minutes 0 +45670 2219 want to bolt the theater in the first 10 minutes 0 +45671 2219 to bolt the theater in the first 10 minutes 1 +45672 2219 bolt the theater in the first 10 minutes 0 +45673 2219 bolt 2 +45674 2219 the theater in the first 10 minutes 3 +45675 2219 in the first 10 minutes 2 +45676 2220 Witty , vibrant , and intelligent . 3 +45677 2220 Witty , vibrant , and intelligent 4 +45678 2220 Witty , 3 +45679 2220 vibrant , and intelligent 4 +45680 2220 , and intelligent 3 +45681 2221 The best thing I can say about this film is that I ca n't wait to see what the director does next . 4 +45682 2221 The best thing I can say about this film 3 +45683 2221 The best thing 3 +45684 2221 best thing 4 +45685 2221 I can say about this film 2 +45686 2221 can say about this film 2 +45687 2221 say about this film 2 +45688 2221 about this film 2 +45689 2221 is that I ca n't wait to see what the director does next . 3 +45690 2221 is that I ca n't wait to see what the director does next 4 +45691 2221 that I ca n't wait to see what the director does next 4 +45692 2221 I ca n't wait to see what the director does next 3 +45693 2221 ca n't wait to see what the director does next 3 +45694 2221 wait to see what the director does next 2 +45695 2221 to see what the director does next 2 +45696 2221 see what the director does next 2 +45697 2221 what the director does next 2 +45698 2221 the director does next 2 +45699 2221 does next 2 +45700 2222 May puzzle his most ardent fans . 1 +45701 2222 puzzle his most ardent fans . 1 +45702 2222 puzzle his most ardent fans 1 +45703 2222 puzzle 2 +45704 2222 his most ardent fans 3 +45705 2222 most ardent fans 2 +45706 2222 most ardent 3 +45707 2222 ardent 2 +45708 2223 You can take the grandkids or the grandparents and never worry about anyone being bored ... audience is a sea of constant smiles and frequent laughter . 4 +45709 2223 You can take the grandkids or the grandparents and never worry about anyone being bored ... audience is a sea of constant smiles and frequent laughter 4 +45710 2223 You can take the grandkids or the grandparents and never worry about anyone being bored ... 4 +45711 2223 You can take the grandkids or the grandparents and never worry about anyone being bored 3 +45712 2223 can take the grandkids or the grandparents and never worry about anyone being bored 4 +45713 2223 can take the grandkids or the grandparents and 3 +45714 2223 can take the grandkids or the grandparents 3 +45715 2223 take the grandkids or the grandparents 3 +45716 2223 the grandkids or the grandparents 3 +45717 2223 the grandkids or 2 +45718 2223 the grandkids 2 +45719 2223 grandkids 3 +45720 2223 the grandparents 2 +45721 2223 grandparents 2 +45722 2223 never worry about anyone being bored 3 +45723 2223 worry about anyone being bored 2 +45724 2223 worry about anyone 2 +45725 2223 worry 1 +45726 2223 about anyone 2 +45727 2223 being bored 0 +45728 2223 bored 1 +45729 2223 audience is a sea of constant smiles and frequent laughter 4 +45730 2223 is a sea of constant smiles and frequent laughter 3 +45731 2223 a sea of constant smiles and frequent laughter 4 +45732 2223 a sea 2 +45733 2223 of constant smiles and frequent laughter 4 +45734 2223 constant smiles and frequent laughter 4 +45735 2223 constant smiles and 3 +45736 2223 constant smiles 4 +45737 2223 frequent laughter 3 +45738 2223 frequent 2 +45739 2224 Try this obscenely bad dark comedy , so crass that it makes Edward Burns ' Sidewalks of New York look like Oscar Wilde . 1 +45740 2224 Try this obscenely bad dark comedy , so crass that it makes Edward Burns ' Sidewalks of New York look like Oscar Wilde 1 +45741 2224 Try this obscenely bad dark comedy , so crass 2 +45742 2224 this obscenely bad dark comedy , so crass 0 +45743 2224 this obscenely bad dark comedy , 0 +45744 2224 this obscenely bad dark comedy 1 +45745 2224 obscenely bad dark comedy 0 +45746 2224 obscenely bad 0 +45747 2224 obscenely 1 +45748 2224 so crass 1 +45749 2224 that it makes Edward Burns ' Sidewalks of New York look like Oscar Wilde 1 +45750 2224 it makes Edward Burns ' Sidewalks of New York look like Oscar Wilde 2 +45751 2224 makes Edward Burns ' Sidewalks of New York look like Oscar Wilde 1 +45752 2224 Edward Burns ' Sidewalks of New York look like Oscar Wilde 3 +45753 2224 Edward Burns ' Sidewalks of New York 2 +45754 2224 Edward Burns ' Sidewalks 2 +45755 2224 Edward Burns ' 2 +45756 2224 Edward 2 +45757 2224 Burns ' 2 +45758 2224 Sidewalks 2 +45759 2224 look like Oscar Wilde 2 +45760 2224 like Oscar Wilde 2 +45761 2224 Oscar Wilde 2 +45762 2225 The Tuxedo was n't just bad ; it was , as my friend David Cross would call it , ` Hungry-Man portions of bad ' . 1 +45763 2225 The Tuxedo was n't just bad ; it was , as my friend David Cross would call it , ` Hungry-Man portions of bad ' 1 +45764 2225 The Tuxedo was n't just bad ; 0 +45765 2225 The Tuxedo was n't just bad 0 +45766 2225 The Tuxedo 2 +45767 2225 was n't just bad 0 +45768 2225 just bad 0 +45769 2225 it was , as my friend David Cross would call it , ` Hungry-Man portions of bad ' 0 +45770 2225 was , as my friend David Cross would call it , ` Hungry-Man portions of bad ' 1 +45771 2225 as my friend David Cross would call it , ` Hungry-Man portions of bad ' 0 +45772 2225 my friend David Cross would call it , ` Hungry-Man portions of bad ' 0 +45773 2225 my friend David Cross 2 +45774 2225 friend David Cross 2 +45775 2225 David Cross 2 +45776 2225 would call it , ` Hungry-Man portions of bad ' 0 +45777 2225 call it , ` Hungry-Man portions of bad ' 2 +45778 2225 it , ` Hungry-Man portions of bad ' 1 +45779 2225 it , 2 +45780 2225 ` Hungry-Man portions of bad ' 0 +45781 2225 Hungry-Man portions of bad ' 1 +45782 2225 Hungry-Man portions of bad 0 +45783 2225 Hungry-Man portions 2 +45784 2225 Hungry-Man 2 +45785 2225 portions 2 +45786 2225 of bad 2 +45787 2226 Human Nature , in short , is n't nearly as funny as it thinks it is ; neither is it as smart . 1 +45788 2226 Human Nature , in short , is n't nearly as funny as it thinks it is ; neither is it as smart 1 +45789 2226 Human Nature , in short , is n't nearly as funny as it thinks it is ; 1 +45790 2226 Human Nature , in short , is n't nearly as funny as it thinks it is 2 +45791 2226 , in short , is n't nearly as funny as it thinks it is 1 +45792 2226 in short , is n't nearly as funny as it thinks it is 1 +45793 2226 , is n't nearly as funny as it thinks it is 0 +45794 2226 is n't nearly as funny as it thinks it is 1 +45795 2226 is n't nearly as funny 1 +45796 2226 nearly as funny 2 +45797 2226 as it thinks it is 2 +45798 2226 it thinks it is 2 +45799 2226 thinks it is 2 +45800 2226 thinks 2 +45801 2226 neither is it as smart 1 +45802 2226 is it as smart 3 +45803 2226 as smart 2 +45804 2227 It 's fun , splashy and entertainingly nasty . 3 +45805 2227 's fun , splashy and entertainingly nasty . 3 +45806 2227 's fun , splashy and entertainingly nasty 3 +45807 2227 fun , splashy and entertainingly nasty 4 +45808 2227 , splashy and entertainingly nasty 3 +45809 2227 splashy and entertainingly nasty 3 +45810 2227 splashy and 3 +45811 2227 splashy 2 +45812 2227 entertainingly nasty 3 +45813 2227 nasty 0 +45814 2228 A little objectivity could have gone a long way . 2 +45815 2228 A little objectivity 2 +45816 2228 little objectivity 1 +45817 2228 could have gone a long way . 2 +45818 2228 could have gone a long way 2 +45819 2228 have gone a long way 3 +45820 2228 gone a long way 3 +45821 2228 a long way 2 +45822 2228 long way 2 +45823 2229 The film boasts at least a few good ideas and features some decent performances , but the result is disappointing . 3 +45824 2229 The film boasts at least a few good ideas and features some decent performances , but the result is disappointing 1 +45825 2229 The film boasts at least a few good ideas and features some decent performances , but 3 +45826 2229 The film boasts at least a few good ideas and features some decent performances , 3 +45827 2229 The film boasts at least a few good ideas and features some decent performances 3 +45828 2229 boasts at least a few good ideas and features some decent performances 3 +45829 2229 at least a few good ideas and features some decent performances 3 +45830 2229 at least a few good ideas and 3 +45831 2229 at least a few good ideas 3 +45832 2229 a few good ideas 3 +45833 2229 few good ideas 3 +45834 2229 good ideas 3 +45835 2229 features some decent performances 3 +45836 2229 some decent performances 3 +45837 2229 decent performances 3 +45838 2229 the result is disappointing 0 +45839 2229 is disappointing 1 +45840 2230 Boll uses a lot of quick cutting and blurry step-printing to goose things up , but dopey dialogue and sometimes inadequate performances kill the effect . 0 +45841 2230 Boll uses a lot of quick cutting and blurry step-printing to goose things up , but dopey dialogue and sometimes inadequate performances kill the effect 1 +45842 2230 Boll uses a lot of quick cutting and blurry step-printing to goose things up , but 2 +45843 2230 Boll uses a lot of quick cutting and blurry step-printing to goose things up , 3 +45844 2230 Boll uses a lot of quick cutting and blurry step-printing to goose things up 3 +45845 2230 Boll 2 +45846 2230 uses a lot of quick cutting and blurry step-printing to goose things up 2 +45847 2230 a lot of quick cutting and blurry step-printing to goose things up 2 +45848 2230 of quick cutting and blurry step-printing to goose things up 2 +45849 2230 quick cutting and blurry step-printing to goose things up 2 +45850 2230 cutting and blurry step-printing to goose things up 2 +45851 2230 cutting and blurry 1 +45852 2230 cutting and 2 +45853 2230 cutting 2 +45854 2230 blurry 2 +45855 2230 step-printing to goose things up 2 +45856 2230 step-printing 2 +45857 2230 to goose things up 2 +45858 2230 goose things up 3 +45859 2230 goose things 2 +45860 2230 dopey dialogue and sometimes inadequate performances kill the effect 1 +45861 2230 dopey dialogue and sometimes inadequate performances 1 +45862 2230 dopey dialogue and 0 +45863 2230 dopey dialogue 1 +45864 2230 dopey 1 +45865 2230 sometimes inadequate performances 1 +45866 2230 sometimes inadequate 1 +45867 2230 inadequate 1 +45868 2230 kill the effect 1 +45869 2230 the effect 2 +45870 2231 ... unlikable , uninteresting , unfunny , and completely , utterly inept . 0 +45871 2231 unlikable , uninteresting , unfunny , and completely , utterly inept . 0 +45872 2231 unlikable , uninteresting , unfunny , and completely , utterly inept 0 +45873 2231 unlikable , uninteresting , unfunny , and completely , 0 +45874 2231 unlikable , uninteresting , unfunny , and completely 0 +45875 2231 unlikable , uninteresting , unfunny , and 0 +45876 2231 unlikable , uninteresting , unfunny , 0 +45877 2231 unlikable , uninteresting , unfunny 1 +45878 2231 unlikable , uninteresting , 0 +45879 2231 unlikable , uninteresting 0 +45880 2231 unlikable , 1 +45881 2231 utterly inept 2 +45882 2232 A creepy , intermittently powerful study of a self-destructive man ... about as unsettling to watch as an exploratory medical procedure or an autopsy . 3 +45883 2232 A creepy , intermittently powerful study of a self-destructive man ... about as unsettling to watch as an exploratory medical procedure or an autopsy 2 +45884 2232 A creepy , intermittently powerful study of a self-destructive man ... 3 +45885 2232 A creepy , intermittently powerful study of a self-destructive man 2 +45886 2232 A creepy , intermittently powerful study 3 +45887 2232 creepy , intermittently powerful study 4 +45888 2232 , intermittently powerful study 3 +45889 2232 intermittently powerful study 4 +45890 2232 intermittently powerful 3 +45891 2232 of a self-destructive man 1 +45892 2232 a self-destructive man 2 +45893 2232 self-destructive man 2 +45894 2232 self-destructive 2 +45895 2232 about as unsettling to watch as an exploratory medical procedure or an autopsy 1 +45896 2232 about as 2 +45897 2232 unsettling to watch as an exploratory medical procedure or an autopsy 1 +45898 2232 to watch as an exploratory medical procedure or an autopsy 2 +45899 2232 watch as an exploratory medical procedure or an autopsy 2 +45900 2232 as an exploratory medical procedure or an autopsy 1 +45901 2232 an exploratory medical procedure or an autopsy 2 +45902 2232 an exploratory medical procedure or 2 +45903 2232 an exploratory medical procedure 2 +45904 2232 exploratory medical procedure 2 +45905 2232 exploratory 2 +45906 2232 medical procedure 2 +45907 2232 an autopsy 2 +45908 2232 autopsy 2 +45909 2233 The crassness of this reactionary thriller is matched only by the ridiculousness of its premise . 1 +45910 2233 The crassness of this reactionary thriller 0 +45911 2233 The crassness 1 +45912 2233 crassness 2 +45913 2233 of this reactionary thriller 3 +45914 2233 this reactionary thriller 2 +45915 2233 reactionary thriller 2 +45916 2233 is matched only by the ridiculousness of its premise . 0 +45917 2233 is matched only by the ridiculousness of its premise 0 +45918 2233 matched only by the ridiculousness of its premise 0 +45919 2233 matched only 2 +45920 2233 matched 2 +45921 2233 by the ridiculousness of its premise 2 +45922 2233 the ridiculousness of its premise 0 +45923 2233 the ridiculousness 1 +45924 2233 ridiculousness 1 +45925 2233 of its premise 2 +45926 2233 its premise 2 +45927 2234 The Porky 's Revenge : Ultimate Edition ? 2 +45928 2234 The Porky 's Revenge : Ultimate Edition 2 +45929 2234 The Porky 's Revenge : 2 +45930 2234 The Porky 's Revenge 2 +45931 2234 The Porky 's 2 +45932 2234 Porky 's 2 +45933 2234 Porky 2 +45934 2234 Ultimate Edition 2 +45935 2235 None of this is meaningful or memorable , but frosting is n't , either , and you would n't turn down a big bowl of that , would you ? 3 +45936 2235 None of this is meaningful or memorable , but frosting is n't , either , and you would n't turn down a big bowl of that 2 +45937 2235 None of this is meaningful or memorable , but frosting is n't , either , and 1 +45938 2235 None of this is meaningful or memorable , but frosting is n't , either , 1 +45939 2235 None of this is meaningful or memorable , but frosting is n't , either 1 +45940 2235 None of this is meaningful or memorable , but 1 +45941 2235 None of this is meaningful or memorable , 0 +45942 2235 None of this is meaningful or memorable 1 +45943 2235 is meaningful or memorable 3 +45944 2235 meaningful or memorable 2 +45945 2235 meaningful or 2 +45946 2235 frosting is n't , either 2 +45947 2235 frosting 3 +45948 2235 is n't , either 2 +45949 2235 is n't , 2 +45950 2235 you would n't turn down a big bowl of that 4 +45951 2235 would n't turn down a big bowl of that 4 +45952 2235 turn down a big bowl of that 1 +45953 2235 turn down 1 +45954 2235 a big bowl of that 2 +45955 2235 a big bowl 2 +45956 2235 big bowl 2 +45957 2235 bowl 2 +45958 2235 , would you ? 2 +45959 2235 would you ? 2 +45960 2236 Bogdanovich puts history in perspective and , via Kirsten Dunst 's remarkable performance , he showcases Davies as a young woman of great charm , generosity and diplomacy . 3 +45961 2236 Bogdanovich puts history in perspective and , via Kirsten Dunst 's remarkable performance , he showcases Davies as a young woman of great charm , generosity and diplomacy 4 +45962 2236 Bogdanovich puts history in perspective and , 2 +45963 2236 Bogdanovich puts history in perspective and 2 +45964 2236 Bogdanovich puts history in perspective 3 +45965 2236 puts history in perspective 3 +45966 2236 history in perspective 3 +45967 2236 in perspective 2 +45968 2236 via Kirsten Dunst 's remarkable performance , he showcases Davies as a young woman of great charm , generosity and diplomacy 3 +45969 2236 via Kirsten Dunst 's remarkable performance 4 +45970 2236 via 2 +45971 2236 Kirsten Dunst 's remarkable performance 3 +45972 2236 Kirsten Dunst 's 2 +45973 2236 Kirsten 2 +45974 2236 Dunst 's 2 +45975 2236 Dunst 2 +45976 2236 remarkable performance 4 +45977 2236 , he showcases Davies as a young woman of great charm , generosity and diplomacy 4 +45978 2236 he showcases Davies as a young woman of great charm , generosity and diplomacy 3 +45979 2236 showcases Davies as a young woman of great charm , generosity and diplomacy 4 +45980 2236 Davies as a young woman of great charm , generosity and diplomacy 3 +45981 2236 Davies 2 +45982 2236 as a young woman of great charm , generosity and diplomacy 3 +45983 2236 a young woman of great charm , generosity and diplomacy 4 +45984 2236 a young woman 2 +45985 2236 young woman 2 +45986 2236 of great charm , generosity and diplomacy 3 +45987 2236 great charm , generosity and diplomacy 3 +45988 2236 charm , generosity and diplomacy 3 +45989 2236 , generosity and diplomacy 3 +45990 2236 generosity and diplomacy 3 +45991 2236 generosity and 2 +45992 2236 generosity 3 +45993 2236 diplomacy 2 +45994 2237 In its chicken heart , Crush goes to absurd lengths to duck the very issues it raises . 1 +45995 2237 In its chicken heart 1 +45996 2237 its chicken heart 1 +45997 2237 chicken heart 2 +45998 2237 , Crush goes to absurd lengths to duck the very issues it raises . 1 +45999 2237 Crush goes to absurd lengths to duck the very issues it raises . 2 +46000 2237 goes to absurd lengths to duck the very issues it raises . 0 +46001 2237 goes to absurd lengths to duck the very issues it raises 0 +46002 2237 goes to absurd lengths 1 +46003 2237 to absurd lengths 0 +46004 2237 absurd lengths 0 +46005 2237 absurd 1 +46006 2237 lengths 2 +46007 2237 to duck the very issues it raises 1 +46008 2237 duck the very issues it raises 1 +46009 2237 duck 2 +46010 2237 the very issues it raises 2 +46011 2237 the very issues 2 +46012 2237 very issues 2 +46013 2237 it raises 2 +46014 2238 I 'm all for the mentally challenged getting their fair shot in the movie business , but surely it does n't have to be as a collection of keening and self-mutilating sideshow geeks . 2 +46015 2238 I 'm all for the mentally challenged getting their fair shot in the movie business , but surely it does n't have to be as a collection of keening and self-mutilating sideshow geeks 0 +46016 2238 I 'm all for the mentally challenged getting their fair shot in the movie business , but 2 +46017 2238 I 'm all for the mentally challenged getting their fair shot in the movie business , 1 +46018 2238 I 'm all for the mentally challenged getting their fair shot in the movie business 3 +46019 2238 'm all for the mentally challenged getting their fair shot in the movie business 1 +46020 2238 'm all for the mentally 2 +46021 2238 all for the mentally 2 +46022 2238 for the mentally 2 +46023 2238 the mentally 2 +46024 2238 mentally 2 +46025 2238 challenged getting their fair shot in the movie business 2 +46026 2238 challenged 2 +46027 2238 getting their fair shot in the movie business 3 +46028 2238 getting their fair shot 3 +46029 2238 their fair shot 2 +46030 2238 fair shot 2 +46031 2238 in the movie business 2 +46032 2238 the movie business 2 +46033 2238 surely it does n't have to be as a collection of keening and self-mutilating sideshow geeks 0 +46034 2238 it does n't have to be as a collection of keening and self-mutilating sideshow geeks 1 +46035 2238 does n't have to be as a collection of keening and self-mutilating sideshow geeks 1 +46036 2238 have to be as a collection of keening and self-mutilating sideshow geeks 1 +46037 2238 to be as a collection of keening and self-mutilating sideshow geeks 1 +46038 2238 be as a collection of keening and self-mutilating sideshow geeks 1 +46039 2238 as a collection of keening and self-mutilating sideshow geeks 0 +46040 2238 a collection of keening and self-mutilating sideshow geeks 2 +46041 2238 of keening and self-mutilating sideshow geeks 2 +46042 2238 keening and self-mutilating sideshow geeks 0 +46043 2238 keening 2 +46044 2238 and self-mutilating sideshow geeks 2 +46045 2238 self-mutilating sideshow geeks 0 +46046 2238 self-mutilating 1 +46047 2238 sideshow geeks 2 +46048 2238 sideshow 1 +46049 2238 geeks 2 +46050 2239 Worth seeing once , but its charm quickly fades . 2 +46051 2239 Worth seeing once , but its charm quickly fades 2 +46052 2239 Worth seeing once , but 2 +46053 2239 Worth seeing once , 3 +46054 2239 Worth seeing once 3 +46055 2239 seeing once 2 +46056 2239 its charm quickly fades 1 +46057 2239 its charm 3 +46058 2239 quickly fades 1 +46059 2239 fades 1 +46060 2240 If The Man from Elysian Fields is doomed by its smallness , it is also elevated by it -- the kind of movie that you enjoy more because you 're one of the lucky few who sought it out . 3 +46061 2240 If The Man from Elysian Fields is doomed by its smallness 3 +46062 2240 The Man from Elysian Fields is doomed by its smallness 1 +46063 2240 The Man from Elysian Fields 2 +46064 2240 from Elysian Fields 2 +46065 2240 Elysian Fields 2 +46066 2240 Elysian 2 +46067 2240 Fields 2 +46068 2240 is doomed by its smallness 0 +46069 2240 doomed by its smallness 1 +46070 2240 doomed 0 +46071 2240 by its smallness 1 +46072 2240 its smallness 3 +46073 2240 smallness 1 +46074 2240 , it is also elevated by it -- the kind of movie that you enjoy more because you 're one of the lucky few who sought it out . 3 +46075 2240 it is also elevated by it -- the kind of movie that you enjoy more because you 're one of the lucky few who sought it out . 3 +46076 2240 is also elevated by it -- the kind of movie that you enjoy more because you 're one of the lucky few who sought it out . 3 +46077 2240 is also elevated by it -- the kind of movie that you enjoy more because you 're one of the lucky few who sought it out 3 +46078 2240 is also elevated by it -- the kind of movie 3 +46079 2240 elevated by it -- the kind of movie 3 +46080 2240 elevated 2 +46081 2240 by it -- the kind of movie 3 +46082 2240 it -- the kind of movie 2 +46083 2240 it -- 3 +46084 2240 that you enjoy more because you 're one of the lucky few who sought it out 3 +46085 2240 you enjoy more because you 're one of the lucky few who sought it out 3 +46086 2240 enjoy more because you 're one of the lucky few who sought it out 3 +46087 2240 more because you 're one of the lucky few who sought it out 3 +46088 2240 because you 're one of the lucky few who sought it out 3 +46089 2240 you 're one of the lucky few who sought it out 2 +46090 2240 're one of the lucky few who sought it out 2 +46091 2240 one of the lucky few who sought it out 3 +46092 2240 one of the lucky few 2 +46093 2240 of the lucky few 2 +46094 2240 the lucky few 2 +46095 2240 lucky few 2 +46096 2240 who sought it out 2 +46097 2240 sought it out 2 +46098 2240 sought it 2 +46099 2240 sought 2 +46100 2241 There 's nothing interesting in Unfaithful whatsoever . 0 +46101 2241 's nothing interesting in Unfaithful whatsoever . 0 +46102 2241 's nothing interesting in Unfaithful whatsoever 0 +46103 2241 's nothing interesting in Unfaithful 1 +46104 2241 nothing interesting in Unfaithful 1 +46105 2241 interesting in Unfaithful 3 +46106 2241 in Unfaithful 2 +46107 2241 Unfaithful 2 +46108 2241 whatsoever 2 +46109 2242 There 's already been too many of these films ... 0 +46110 2242 's already been too many of these films ... 1 +46111 2242 's already been too many of these films 2 +46112 2242 's already 2 +46113 2242 been too many of these films 1 +46114 2242 been too many 2 +46115 2242 of these films 2 +46116 2242 these films 2 +46117 2243 Almost peerlessly unsettling . 1 +46118 2243 Almost peerlessly 2 +46119 2243 peerlessly 3 +46120 2243 unsettling . 2 +46121 2244 Maybe he was reading the minds of the audience . 3 +46122 2244 he was reading the minds of the audience . 3 +46123 2244 was reading the minds of the audience . 3 +46124 2244 was reading the minds of the audience 3 +46125 2244 reading the minds of the audience 2 +46126 2244 the minds of the audience 2 +46127 2244 the minds 2 +46128 2244 minds 2 +46129 2244 of the audience 2 +46130 2245 A sly female empowerment movie , although not in a way anyone would expect . 3 +46131 2245 A sly female empowerment movie , although not in a way anyone 2 +46132 2245 A sly female empowerment movie , 3 +46133 2245 A sly female empowerment movie 3 +46134 2245 sly female empowerment movie 3 +46135 2245 female empowerment movie 2 +46136 2245 empowerment movie 3 +46137 2245 although not in a way anyone 2 +46138 2245 not in a way anyone 2 +46139 2245 in a way anyone 2 +46140 2245 a way anyone 2 +46141 2245 way anyone 2 +46142 2245 would expect . 2 +46143 2245 would expect 2 +46144 2246 Go for La Salle 's performance , and make do as best you can with a stuttering script . 2 +46145 2246 Go for La Salle 's performance , and make 2 +46146 2246 Go for La Salle 's performance , and 3 +46147 2246 Go for La Salle 's performance , 3 +46148 2246 Go for La Salle 's performance 2 +46149 2246 for La Salle 's performance 2 +46150 2246 La Salle 's performance 3 +46151 2246 La Salle 's 2 +46152 2246 La 2 +46153 2246 Salle 's 2 +46154 2246 Salle 2 +46155 2246 do as best you can with a stuttering script . 1 +46156 2246 do as best you can with a stuttering script 1 +46157 2246 as best you can with a stuttering script 1 +46158 2246 best you can with a stuttering script 1 +46159 2246 you can with a stuttering script 1 +46160 2246 can with a stuttering script 1 +46161 2246 with a stuttering script 0 +46162 2246 a stuttering script 1 +46163 2246 stuttering script 2 +46164 2246 stuttering 2 +46165 2247 ... The movie feels stitched together from stock situations and characters from other movies . 1 +46166 2247 The movie feels stitched together from stock situations and characters from other movies . 1 +46167 2247 feels stitched together from stock situations and characters from other movies . 1 +46168 2247 feels stitched together from stock situations and characters from other movies 0 +46169 2247 stitched together from stock situations and characters from other movies 1 +46170 2247 stitched together from stock situations and characters 1 +46171 2247 stitched together 2 +46172 2247 stitched 2 +46173 2247 from stock situations and characters 2 +46174 2247 stock situations and characters 1 +46175 2247 situations and characters 2 +46176 2247 situations and 2 +46177 2247 from other movies 2 +46178 2248 It remains to be seen whether Statham can move beyond the crime-land action genre , but then again , who says he has to ? 2 +46179 2248 It remains to be seen whether Statham can move beyond the crime-land action genre , but then again 2 +46180 2248 remains to be seen whether Statham can move beyond the crime-land action genre , but then again 1 +46181 2248 to be seen whether Statham can move beyond the crime-land action genre , but then again 2 +46182 2248 be seen whether Statham can move beyond the crime-land action genre , but then again 2 +46183 2248 seen whether Statham can move beyond the crime-land action genre , but then again 2 +46184 2248 seen whether Statham can move beyond the crime-land action genre , but then 2 +46185 2248 seen whether Statham can move beyond the crime-land action genre , but 2 +46186 2248 seen whether Statham can move beyond the crime-land action genre , 2 +46187 2248 seen whether Statham can move beyond the crime-land action genre 3 +46188 2248 whether Statham can move beyond the crime-land action genre 2 +46189 2248 Statham can move beyond the crime-land action genre 2 +46190 2248 can move beyond the crime-land action genre 3 +46191 2248 move beyond the crime-land action genre 4 +46192 2248 beyond the crime-land action genre 3 +46193 2248 the crime-land action genre 2 +46194 2248 crime-land action genre 2 +46195 2248 crime-land 2 +46196 2248 action genre 2 +46197 2248 , who says he has to ? 2 +46198 2248 who says he has to ? 2 +46199 2248 says he has to ? 1 +46200 2248 says he has to 2 +46201 2248 he has to 2 +46202 2248 has to 2 +46203 2249 Though in some ways similar to Catherine Breillat 's Fat Girl , Rain is the far superior film . 4 +46204 2249 Though in some ways similar to Catherine Breillat 's Fat Girl 2 +46205 2249 in some ways similar to Catherine Breillat 's Fat Girl 2 +46206 2249 some ways similar to Catherine Breillat 's Fat Girl 2 +46207 2249 similar to Catherine Breillat 's Fat Girl 2 +46208 2249 to Catherine Breillat 's Fat Girl 2 +46209 2249 Catherine Breillat 's Fat Girl 2 +46210 2249 Catherine Breillat 's 2 +46211 2249 Catherine 2 +46212 2249 Breillat 's 2 +46213 2249 Breillat 2 +46214 2249 Fat Girl 2 +46215 2249 , Rain is the far superior film . 3 +46216 2249 Rain is the far superior film . 2 +46217 2249 Rain 2 +46218 2249 is the far superior film . 4 +46219 2249 is the far superior film 4 +46220 2249 the far superior film 3 +46221 2249 far superior film 3 +46222 2249 far superior 4 +46223 2250 It shows that some studios firmly believe that people have lost the ability to think and will forgive any shoddy product as long as there 's a little girl-on-girl action . 0 +46224 2250 shows that some studios firmly believe that people have lost the ability to think and will forgive any shoddy product as long as there 's a little girl-on-girl action . 0 +46225 2250 shows that some studios firmly believe that people have lost the ability to think and will forgive any shoddy product as long as there 's a little girl-on-girl action 1 +46226 2250 that some studios firmly believe that people have lost the ability to think and will forgive any shoddy product as long as there 's a little girl-on-girl action 2 +46227 2250 some studios firmly believe that people have lost the ability to think and will forgive any shoddy product as long as there 's a little girl-on-girl action 2 +46228 2250 some studios 2 +46229 2250 studios 2 +46230 2250 firmly believe that people have lost the ability to think and will forgive any shoddy product as long as there 's a little girl-on-girl action 0 +46231 2250 firmly 3 +46232 2250 believe that people have lost the ability to think and will forgive any shoddy product as long as there 's a little girl-on-girl action 1 +46233 2250 believe that people have lost the ability to think and 1 +46234 2250 believe that people have lost the ability to think 1 +46235 2250 that people have lost the ability to think 2 +46236 2250 people have lost the ability to think 1 +46237 2250 have lost the ability to think 1 +46238 2250 lost the ability to think 1 +46239 2250 the ability to think 2 +46240 2250 ability to think 3 +46241 2250 will forgive any shoddy product as long as there 's a little girl-on-girl action 1 +46242 2250 forgive any shoddy product as long as there 's a little girl-on-girl action 3 +46243 2250 forgive any shoddy product 2 +46244 2250 any shoddy product 1 +46245 2250 shoddy product 0 +46246 2250 shoddy 0 +46247 2250 as long as there 's a little girl-on-girl action 2 +46248 2250 as there 's a little girl-on-girl action 2 +46249 2250 there 's a little girl-on-girl action 2 +46250 2250 's a little girl-on-girl action 2 +46251 2250 a little girl-on-girl action 2 +46252 2250 little girl-on-girl action 2 +46253 2250 girl-on-girl action 2 +46254 2250 girl-on-girl 2 +46255 2251 Potty-mouthed enough for PG-13 , yet not as hilariously raunchy as South Park , this strangely schizo cartoon seems suited neither to kids or adults . 1 +46256 2251 Potty-mouthed enough for PG-13 2 +46257 2251 Potty-mouthed enough 1 +46258 2251 Potty-mouthed 1 +46259 2251 for PG-13 2 +46260 2251 , yet not as hilariously raunchy as South Park , this strangely schizo cartoon seems suited neither to kids or adults . 1 +46261 2251 yet not as hilariously raunchy as South Park , this strangely schizo cartoon seems suited neither to kids or adults . 0 +46262 2251 yet not as hilariously raunchy as South Park 2 +46263 2251 not as hilariously raunchy as South Park 2 +46264 2251 as hilariously raunchy as South Park 4 +46265 2251 hilariously raunchy as South Park 3 +46266 2251 hilariously 3 +46267 2251 raunchy as South Park 1 +46268 2251 as South Park 1 +46269 2251 South Park 3 +46270 2251 Park 2 +46271 2251 , this strangely schizo cartoon seems suited neither to kids or adults . 0 +46272 2251 this strangely schizo cartoon seems suited neither to kids or adults . 0 +46273 2251 this strangely schizo cartoon 1 +46274 2251 strangely schizo cartoon 1 +46275 2251 schizo cartoon 1 +46276 2251 schizo 1 +46277 2251 seems suited neither to kids or adults . 1 +46278 2251 seems suited neither to kids or adults 0 +46279 2251 suited neither to kids or adults 1 +46280 2251 suited neither 1 +46281 2251 to kids or adults 2 +46282 2251 kids or adults 2 +46283 2252 A poorly scripted , preachy fable that forgets about unfolding a coherent , believable story in its zeal to spread propaganda . 2 +46284 2252 A poorly scripted , preachy fable 1 +46285 2252 poorly scripted , preachy fable 0 +46286 2252 poorly scripted , 0 +46287 2252 poorly scripted 1 +46288 2252 scripted 1 +46289 2252 preachy fable 1 +46290 2252 that forgets about unfolding a coherent , believable story in its zeal to spread propaganda . 2 +46291 2252 that forgets about unfolding a coherent , believable story in its zeal to spread propaganda 1 +46292 2252 forgets about unfolding a coherent , believable story in its zeal to spread propaganda 1 +46293 2252 forgets 1 +46294 2252 about unfolding a coherent , believable story in its zeal to spread propaganda 2 +46295 2252 unfolding a coherent , believable story in its zeal to spread propaganda 2 +46296 2252 unfolding a coherent , believable story 2 +46297 2252 a coherent , believable story 3 +46298 2252 coherent , believable story 3 +46299 2252 coherent 3 +46300 2252 , believable story 2 +46301 2252 believable story 3 +46302 2252 in its zeal to spread propaganda 2 +46303 2252 its zeal to spread propaganda 1 +46304 2252 zeal to spread propaganda 1 +46305 2252 to spread propaganda 1 +46306 2252 spread propaganda 1 +46307 2252 spread 2 +46308 2253 -LRB- A -RRB- rare movie that makes us re-assess the basis for our lives and evaluate what is truly ours in a world of meaningless activity . 2 +46309 2253 -LRB- A -RRB- rare movie that makes us 3 +46310 2253 -LRB- A -RRB- rare movie 3 +46311 2253 rare movie 3 +46312 2253 that makes us 2 +46313 2253 makes us 2 +46314 2253 re-assess the basis for our lives and evaluate what is truly ours in a world of meaningless activity . 2 +46315 2253 re-assess the basis for our lives and evaluate what is truly ours in a world of meaningless activity 3 +46316 2253 re-assess the basis for our lives and 2 +46317 2253 re-assess the basis for our lives 2 +46318 2253 re-assess 2 +46319 2253 the basis for our lives 2 +46320 2253 for our lives 2 +46321 2253 evaluate what is truly ours in a world of meaningless activity 3 +46322 2253 evaluate 2 +46323 2253 what is truly ours in a world of meaningless activity 2 +46324 2253 is truly ours in a world of meaningless activity 2 +46325 2253 truly ours in a world of meaningless activity 2 +46326 2253 ours in a world of meaningless activity 2 +46327 2253 ours 2 +46328 2253 in a world of meaningless activity 1 +46329 2253 a world of meaningless activity 1 +46330 2253 of meaningless activity 2 +46331 2253 meaningless activity 2 +46332 2253 meaningless 0 +46333 2253 activity 2 +46334 2254 If a big musical number like ` Praise the Lord , He 's the God of Second Chances ' does n't put you off , this will be an enjoyable choice for younger kids . 3 +46335 2254 If a big musical number like ` Praise the Lord , He 's the God of Second Chances ' does n't put you off 1 +46336 2254 a big musical number like ` Praise the Lord , He 's the God of Second Chances ' does n't put you off 2 +46337 2254 a big musical number like ` Praise the Lord , He 's the God of Second Chances ' 3 +46338 2254 a big musical number 2 +46339 2254 big musical number 2 +46340 2254 musical number 3 +46341 2254 like ` Praise the Lord , He 's the God of Second Chances ' 3 +46342 2254 like ` Praise the Lord 3 +46343 2254 ` Praise the Lord 3 +46344 2254 Praise the Lord 2 +46345 2254 the Lord 3 +46346 2254 , He 's the God of Second Chances ' 2 +46347 2254 He 's the God of Second Chances ' 3 +46348 2254 's the God of Second Chances ' 2 +46349 2254 the God of Second Chances ' 2 +46350 2254 the God 2 +46351 2254 of Second Chances ' 2 +46352 2254 Second Chances ' 2 +46353 2254 Chances ' 2 +46354 2254 does n't put you off 3 +46355 2254 put you off 1 +46356 2254 put you 2 +46357 2254 , this will be an enjoyable choice for younger kids . 4 +46358 2254 this will be an enjoyable choice for younger kids . 4 +46359 2254 will be an enjoyable choice for younger kids . 3 +46360 2254 will be an enjoyable choice for younger kids 3 +46361 2254 be an enjoyable choice for younger kids 4 +46362 2254 an enjoyable choice for younger kids 3 +46363 2254 an enjoyable choice 4 +46364 2254 enjoyable choice 4 +46365 2254 for younger kids 2 +46366 2254 younger kids 2 +46367 2255 As a director , Paxton is surprisingly brilliant , deftly sewing together what could have been a confusing and horrifying vision into an intense and engrossing head-trip . 4 +46368 2255 , Paxton is surprisingly brilliant , deftly sewing together what could have been a confusing and horrifying vision into an intense and engrossing head-trip . 4 +46369 2255 Paxton is surprisingly brilliant , deftly sewing together what could have been a confusing and horrifying vision into an intense and engrossing head-trip . 4 +46370 2255 is surprisingly brilliant , deftly sewing together what could have been a confusing and horrifying vision into an intense and engrossing head-trip . 4 +46371 2255 is surprisingly brilliant , deftly sewing together what could have been a confusing and horrifying vision into an intense and engrossing head-trip 3 +46372 2255 is surprisingly brilliant , 3 +46373 2255 is surprisingly brilliant 4 +46374 2255 surprisingly brilliant 4 +46375 2255 deftly sewing together what could have been a confusing and horrifying vision into an intense and engrossing head-trip 3 +46376 2255 sewing together what could have been a confusing and horrifying vision into an intense and engrossing head-trip 4 +46377 2255 sewing together 2 +46378 2255 sewing 2 +46379 2255 what could have been a confusing and horrifying vision into an intense and engrossing head-trip 3 +46380 2255 could have been a confusing and horrifying vision into an intense and engrossing head-trip 1 +46381 2255 have been a confusing and horrifying vision into an intense and engrossing head-trip 2 +46382 2255 been a confusing and horrifying vision into an intense and engrossing head-trip 3 +46383 2255 been a confusing and horrifying vision 1 +46384 2255 a confusing and horrifying vision 2 +46385 2255 confusing and horrifying vision 0 +46386 2255 confusing and horrifying 1 +46387 2255 confusing and 2 +46388 2255 into an intense and engrossing head-trip 3 +46389 2255 an intense and engrossing head-trip 3 +46390 2255 intense and engrossing head-trip 4 +46391 2255 intense and engrossing 3 +46392 2255 head-trip 2 +46393 2256 But Toback 's deranged immediacy makes it seem fresh again . 3 +46394 2256 Toback 's deranged immediacy makes it seem fresh again . 4 +46395 2256 Toback 's deranged immediacy 2 +46396 2256 deranged immediacy 3 +46397 2256 deranged 2 +46398 2256 immediacy 2 +46399 2256 makes it seem fresh again . 3 +46400 2256 makes it seem fresh again 2 +46401 2256 it seem fresh again 4 +46402 2256 seem fresh again 3 +46403 2256 seem fresh 3 +46404 2257 Stanley Kwan has directed not only one of the best gay love stories ever made , but one of the best love stories of any stripe . 4 +46405 2257 Stanley Kwan has directed not only one of the best gay love stories ever made , but one of the best love stories of any stripe 4 +46406 2257 Stanley Kwan has directed not only one of the best gay love stories ever made , but 4 +46407 2257 Stanley Kwan has directed not only one of the best gay love stories ever made , 4 +46408 2257 Stanley Kwan has directed not only one of the best gay love stories ever made 4 +46409 2257 Stanley Kwan 2 +46410 2257 Stanley 2 +46411 2257 has directed not only one of the best gay love stories ever made 3 +46412 2257 directed not only one of the best gay love stories ever made 4 +46413 2257 not only one of the best gay love stories ever made 2 +46414 2257 only one of the best gay love stories ever made 4 +46415 2257 one of the best gay love stories ever made 4 +46416 2257 one of the best gay love stories 4 +46417 2257 of the best gay love stories 4 +46418 2257 the best gay love stories 2 +46419 2257 best gay love stories 3 +46420 2257 gay love stories 3 +46421 2257 one of the best love stories of any stripe 3 +46422 2257 one of the best 4 +46423 2257 of the best 3 +46424 2257 love stories of any stripe 2 +46425 2257 stories of any stripe 2 +46426 2257 of any stripe 2 +46427 2257 any stripe 2 +46428 2257 stripe 2 +46429 2258 There 's a neat twist , subtly rendered , that could have wrapped things up at 80 minutes , but Kang tacks on three or four more endings . 2 +46430 2258 There 's a neat twist , subtly rendered , that could have wrapped things up at 80 minutes , but Kang tacks on three or four more endings 1 +46431 2258 There 's a neat twist , subtly rendered , that could have wrapped things up at 80 minutes , but 3 +46432 2258 There 's a neat twist , subtly rendered , that could have wrapped things up at 80 minutes , 1 +46433 2258 There 's a neat twist , subtly rendered , that could have wrapped things up at 80 minutes 2 +46434 2258 's a neat twist , subtly rendered , that could have wrapped things up at 80 minutes 2 +46435 2258 a neat twist , subtly rendered , that could have wrapped things up at 80 minutes 3 +46436 2258 a neat twist , subtly rendered , 3 +46437 2258 a neat twist , subtly rendered 3 +46438 2258 a neat twist , 3 +46439 2258 a neat twist 3 +46440 2258 neat twist 3 +46441 2258 subtly rendered 3 +46442 2258 that could have wrapped things up at 80 minutes 1 +46443 2258 could have wrapped things up at 80 minutes 1 +46444 2258 have wrapped things up at 80 minutes 2 +46445 2258 wrapped things up at 80 minutes 2 +46446 2258 wrapped things up 2 +46447 2258 wrapped things 2 +46448 2258 at 80 minutes 2 +46449 2258 80 minutes 2 +46450 2258 80 2 +46451 2258 Kang tacks on three or four more endings 1 +46452 2258 Kang 2 +46453 2258 tacks on three or four more endings 1 +46454 2258 tacks 2 +46455 2258 on three or four more endings 2 +46456 2258 three or four more endings 2 +46457 2258 three or four more 2 +46458 2258 three or four 2 +46459 2258 three or 2 +46460 2259 Godard 's ode to tackling life 's wonderment is a rambling and incoherent manifesto about the vagueness of topical excess ... In Praise of Love remains a ponderous and pretentious endeavor that 's unfocused and tediously exasperating . 0 +46461 2259 Godard 's ode to tackling life 's wonderment is a rambling and incoherent manifesto about the vagueness of topical excess ... In Praise of Love remains a ponderous and pretentious endeavor that 's unfocused and tediously exasperating 0 +46462 2259 Godard 's ode to tackling life 's wonderment is a rambling and incoherent manifesto about the vagueness of topical excess ... 0 +46463 2259 Godard 's ode to tackling life 's wonderment is a rambling and incoherent manifesto about the vagueness of topical excess 0 +46464 2259 Godard 's ode to tackling life 's wonderment 3 +46465 2259 ode to tackling life 's wonderment 3 +46466 2259 to tackling life 's wonderment 2 +46467 2259 tackling life 's wonderment 2 +46468 2259 life 's wonderment 3 +46469 2259 wonderment 2 +46470 2259 is a rambling and incoherent manifesto about the vagueness of topical excess 0 +46471 2259 a rambling and incoherent manifesto about the vagueness of topical excess 0 +46472 2259 a rambling and incoherent manifesto 0 +46473 2259 rambling and incoherent manifesto 0 +46474 2259 rambling and incoherent 1 +46475 2259 rambling and 2 +46476 2259 about the vagueness of topical excess 2 +46477 2259 the vagueness of topical excess 1 +46478 2259 the vagueness 1 +46479 2259 vagueness 2 +46480 2259 of topical excess 2 +46481 2259 topical excess 2 +46482 2259 topical 2 +46483 2259 In Praise of Love remains a ponderous and pretentious endeavor that 's unfocused and tediously exasperating 0 +46484 2259 Praise of Love 2 +46485 2259 remains a ponderous and pretentious endeavor that 's unfocused and tediously exasperating 0 +46486 2259 a ponderous and pretentious endeavor that 's unfocused and tediously exasperating 0 +46487 2259 a ponderous and pretentious endeavor 1 +46488 2259 ponderous and pretentious endeavor 1 +46489 2259 and pretentious endeavor 1 +46490 2259 pretentious endeavor 1 +46491 2259 that 's unfocused and tediously exasperating 1 +46492 2259 's unfocused and tediously exasperating 0 +46493 2259 unfocused and tediously exasperating 1 +46494 2259 unfocused and 1 +46495 2259 tediously exasperating 0 +46496 2259 exasperating 1 +46497 2260 Amazingly dopey . 3 +46498 2260 Amazingly dopey 1 +46499 2261 It 's hard to imagine that even very small children will be impressed by this tired retread . 0 +46500 2261 's hard to imagine that even very small children will be impressed by this tired retread . 0 +46501 2261 's hard to imagine that even very small children will be impressed by this tired retread 1 +46502 2261 hard to imagine that even very small children will be impressed by this tired retread 0 +46503 2261 to imagine that even very small children will be impressed by this tired retread 0 +46504 2261 imagine that even very small children will be impressed by this tired retread 1 +46505 2261 that even very small children will be impressed by this tired retread 2 +46506 2261 even very small children will be impressed by this tired retread 3 +46507 2261 even very small children 2 +46508 2261 will be impressed by this tired retread 3 +46509 2261 be impressed by this tired retread 1 +46510 2261 impressed by this tired retread 2 +46511 2261 by this tired retread 1 +46512 2261 this tired retread 1 +46513 2261 tired retread 1 +46514 2262 A beautifully shot but dull and ankle-deep ` epic . ' 1 +46515 2262 shot but dull and ankle-deep ` epic . ' 1 +46516 2262 shot but dull and ankle-deep ` epic . 1 +46517 2262 shot but dull and ankle-deep ` epic 2 +46518 2262 but dull and ankle-deep ` epic 1 +46519 2262 but dull and ankle-deep 1 +46520 2262 dull and ankle-deep 1 +46521 2262 dull and 1 +46522 2262 ankle-deep 2 +46523 2262 ` epic 4 +46524 2263 The performances of the four main actresses bring their characters to life . 3 +46525 2263 The performances of the four main actresses 2 +46526 2263 of the four main actresses 2 +46527 2263 the four main actresses 2 +46528 2263 four main actresses 2 +46529 2263 main actresses 2 +46530 2263 bring their characters to life . 3 +46531 2263 bring their characters to life 3 +46532 2263 bring their characters 2 +46533 2263 their characters 2 +46534 2264 The emotional overload of female angst irreparably drags the film down . 0 +46535 2264 The emotional overload of female angst 2 +46536 2264 The emotional overload 2 +46537 2264 emotional overload 2 +46538 2264 overload 2 +46539 2264 of female angst 2 +46540 2264 female angst 2 +46541 2264 irreparably drags the film down . 1 +46542 2264 irreparably 1 +46543 2264 drags the film down . 1 +46544 2264 drags the film down 1 +46545 2264 drags the film 1 +46546 2265 Comedian , like its subjects , delivers the goods and audiences will have a fun , no-frills ride . 3 +46547 2265 , like its subjects , delivers the goods and audiences will have a fun , no-frills ride . 4 +46548 2265 like its subjects , delivers the goods and audiences will have a fun , no-frills ride . 3 +46549 2265 like its subjects 2 +46550 2265 , delivers the goods and audiences will have a fun , no-frills ride . 3 +46551 2265 delivers the goods and audiences will have a fun , no-frills ride . 3 +46552 2265 delivers the goods and audiences will have a fun , no-frills ride 4 +46553 2265 the goods and audiences will have a fun , no-frills ride 3 +46554 2265 the goods and audiences 2 +46555 2265 goods and audiences 2 +46556 2265 goods and 2 +46557 2265 goods 2 +46558 2265 will have a fun , no-frills ride 3 +46559 2265 have a fun , no-frills ride 3 +46560 2265 a fun , no-frills ride 3 +46561 2265 fun , no-frills ride 2 +46562 2265 , no-frills ride 1 +46563 2265 no-frills ride 2 +46564 2265 no-frills 2 +46565 2266 -LRB- Woo 's -RRB- most resonant film since The Killer . 3 +46566 2266 -LRB- Woo 's -RRB- 2 +46567 2266 Woo 's -RRB- 2 +46568 2266 most resonant film since The Killer . 4 +46569 2266 most resonant film since The Killer 4 +46570 2266 resonant film since The Killer 3 +46571 2266 film since The Killer 2 +46572 2266 since The Killer 2 +46573 2267 Muccino seems to be exploring the idea of why human beings long for what they do n't have , and how this gets us in trouble . 3 +46574 2267 seems to be exploring the idea of why human beings long for what they do n't have , and how this gets us in trouble . 2 +46575 2267 seems to be exploring the idea of why human beings long for what they do n't have , and how this gets us in trouble 2 +46576 2267 to be exploring the idea of why human beings long for what they do n't have , and how this gets us in trouble 2 +46577 2267 be exploring the idea of why human beings long for what they do n't have , and how this gets us in trouble 3 +46578 2267 exploring the idea of why human beings long for what they do n't have , and how this gets us in trouble 3 +46579 2267 exploring 2 +46580 2267 the idea of why human beings long for what they do n't have , and how this gets us in trouble 1 +46581 2267 of why human beings long for what they do n't have , and how this gets us in trouble 2 +46582 2267 why human beings long for what they do n't have , and how this gets us in trouble 2 +46583 2267 why human beings long for what they do n't have , and 2 +46584 2267 why human beings long for what they do n't have , 2 +46585 2267 why human beings long for what they do n't have 3 +46586 2267 human beings long for what they do n't have 2 +46587 2267 long for what they do n't have 2 +46588 2267 for what they do n't have 2 +46589 2267 what they do n't have 2 +46590 2267 they do n't have 2 +46591 2267 do n't have 2 +46592 2267 how this gets us in trouble 1 +46593 2267 this gets us in trouble 1 +46594 2267 gets us in trouble 2 +46595 2267 gets us 3 +46596 2267 in trouble 2 +46597 2268 Even when there are lulls , the emotions seem authentic , and the picture is so lovely toward the end ... you almost do n't notice the 129-minute running time . 4 +46598 2268 Even when there are lulls , the emotions seem authentic , and the picture is so lovely toward the end ... you almost do n't notice the 129-minute running time 3 +46599 2268 Even when there are lulls , the emotions seem authentic , and the picture is so lovely toward the end ... 3 +46600 2268 Even when there are lulls , the emotions seem authentic , and the picture is so lovely toward the end 3 +46601 2268 Even when there are lulls , the emotions seem authentic , and 3 +46602 2268 Even when there are lulls , the emotions seem authentic , 3 +46603 2268 Even when there are lulls , the emotions seem authentic 3 +46604 2268 Even when there are lulls 2 +46605 2268 when there are lulls 2 +46606 2268 there are lulls 1 +46607 2268 are lulls 2 +46608 2268 lulls 2 +46609 2268 , the emotions seem authentic 3 +46610 2268 the emotions seem authentic 3 +46611 2268 seem authentic 3 +46612 2268 the picture is so lovely toward the end 4 +46613 2268 is so lovely toward the end 3 +46614 2268 so lovely toward the end 3 +46615 2268 lovely toward the end 3 +46616 2268 you almost do n't notice the 129-minute running time 2 +46617 2268 almost do n't notice the 129-minute running time 3 +46618 2268 do n't notice the 129-minute running time 3 +46619 2268 notice the 129-minute running time 1 +46620 2268 the 129-minute running time 2 +46621 2268 129-minute running time 2 +46622 2268 129-minute 2 +46623 2269 In a movie full of surprises , the biggest is that Secret Ballot is a comedy , both gentle and biting . 3 +46624 2269 In a movie full of surprises 3 +46625 2269 a movie full of surprises 4 +46626 2269 , the biggest is that Secret Ballot is a comedy , both gentle and biting . 3 +46627 2269 the biggest is that Secret Ballot is a comedy , both gentle and biting . 3 +46628 2269 the biggest 2 +46629 2269 is that Secret Ballot is a comedy , both gentle and biting . 3 +46630 2269 is that Secret Ballot is a comedy , both gentle and biting 3 +46631 2269 that Secret Ballot is a comedy , both gentle and biting 3 +46632 2269 Secret Ballot is a comedy , both gentle and biting 3 +46633 2269 is a comedy , both gentle and biting 3 +46634 2269 a comedy , both gentle and biting 4 +46635 2269 both gentle and biting 3 +46636 2269 gentle and biting 3 +46637 2270 A fascinating case study of flower-power liberation -- and the price that was paid for it . 4 +46638 2270 A fascinating case study of flower-power liberation -- and the price that was paid for it 4 +46639 2270 A fascinating case study of flower-power liberation -- and 3 +46640 2270 A fascinating case study of flower-power liberation -- 4 +46641 2270 A fascinating case study of flower-power liberation 3 +46642 2270 A fascinating case study 4 +46643 2270 fascinating case study 3 +46644 2270 of flower-power liberation 2 +46645 2270 flower-power liberation 3 +46646 2270 flower-power 2 +46647 2270 liberation 2 +46648 2270 the price that was paid for it 2 +46649 2270 that was paid for it 2 +46650 2270 was paid for it 2 +46651 2271 The pacing is deadly , the narration helps little and Naipaul , a juicy writer , is negated . 0 +46652 2271 The pacing is deadly , the narration helps little and Naipaul , a juicy writer , is negated 1 +46653 2271 The pacing is deadly , the narration helps little and 1 +46654 2271 The pacing is deadly , the narration helps little 1 +46655 2271 The pacing is deadly , 2 +46656 2271 The pacing is deadly 1 +46657 2271 The pacing 2 +46658 2271 is deadly 1 +46659 2271 the narration helps little 1 +46660 2271 the narration 2 +46661 2271 helps little 1 +46662 2271 Naipaul , a juicy writer , is negated 2 +46663 2271 Naipaul , a juicy writer , 2 +46664 2271 Naipaul , a juicy writer 3 +46665 2271 Naipaul , 2 +46666 2271 a juicy writer 3 +46667 2271 juicy writer 3 +46668 2271 is negated 1 +46669 2271 negated 2 +46670 2272 The director , Mark Pellington , does a terrific job conjuring up a sinister , menacing atmosphere though unfortunately all the story gives us is flashing red lights , a rattling noise , and a bump on the head . 3 +46671 2272 The director , Mark Pellington , 2 +46672 2272 The director , Mark Pellington 2 +46673 2272 Mark Pellington 2 +46674 2272 does a terrific job conjuring up a sinister , menacing atmosphere though unfortunately all the story gives us is flashing red lights , a rattling noise , and a bump on the head . 2 +46675 2272 does a terrific job conjuring up a sinister , menacing atmosphere though unfortunately all the story gives us is flashing red lights , a rattling noise , and a bump on the head 1 +46676 2272 a terrific job conjuring up a sinister , menacing atmosphere though unfortunately all the story gives us is flashing red lights , a rattling noise , and a bump on the head 2 +46677 2272 a terrific job 4 +46678 2272 terrific job 3 +46679 2272 conjuring up a sinister , menacing atmosphere though unfortunately all the story gives us is flashing red lights , a rattling noise , and a bump on the head 0 +46680 2272 conjuring up a sinister , menacing atmosphere 2 +46681 2272 conjuring up 2 +46682 2272 conjuring 2 +46683 2272 a sinister , menacing atmosphere 2 +46684 2272 sinister , menacing atmosphere 2 +46685 2272 sinister 1 +46686 2272 , menacing atmosphere 2 +46687 2272 menacing atmosphere 1 +46688 2272 menacing 1 +46689 2272 though unfortunately all the story gives us is flashing red lights , a rattling noise , and a bump on the head 1 +46690 2272 unfortunately all the story gives us is flashing red lights , a rattling noise , and a bump on the head 0 +46691 2272 all the story gives us is flashing red lights , a rattling noise , and a bump on the head 0 +46692 2272 all the story 2 +46693 2272 gives us is flashing red lights , a rattling noise , and a bump on the head 2 +46694 2272 us is flashing red lights , a rattling noise , and a bump on the head 2 +46695 2272 is flashing red lights , a rattling noise , and a bump on the head 2 +46696 2272 flashing red lights , a rattling noise , and a bump on the head 2 +46697 2272 flashing 2 +46698 2272 red lights , a rattling noise , and a bump on the head 2 +46699 2272 red lights , a rattling noise , and 2 +46700 2272 red lights , a rattling noise , 2 +46701 2272 red lights , a rattling noise 1 +46702 2272 red lights , 2 +46703 2272 red lights 2 +46704 2272 lights 2 +46705 2272 a rattling noise 2 +46706 2272 rattling noise 2 +46707 2272 noise 2 +46708 2272 a bump on the head 1 +46709 2272 a bump 2 +46710 2272 on the head 2 +46711 2273 -- is a crime that should be punishable by chainsaw . 1 +46712 2273 is a crime that should be punishable by chainsaw . 2 +46713 2273 is a crime that should be punishable by chainsaw 1 +46714 2273 a crime that should be punishable by chainsaw 2 +46715 2273 a crime 2 +46716 2273 that should be punishable by chainsaw 1 +46717 2273 should be punishable by chainsaw 0 +46718 2273 be punishable by chainsaw 1 +46719 2273 punishable by chainsaw 1 +46720 2273 punishable 2 +46721 2273 by chainsaw 2 +46722 2273 chainsaw 2 +46723 2274 Delivers more than its fair share of saucy hilarity . 3 +46724 2274 more than its fair share of saucy hilarity . 3 +46725 2274 more than its fair share of saucy 2 +46726 2274 than its fair share of saucy 3 +46727 2274 its fair share of saucy 2 +46728 2274 its fair share 2 +46729 2274 fair share 2 +46730 2274 of saucy 3 +46731 2274 saucy 3 +46732 2274 hilarity . 3 +46733 2275 While the mystery unravels , the characters respond by hitting on each other . 2 +46734 2275 While the mystery unravels 3 +46735 2275 the mystery unravels 2 +46736 2275 the mystery 2 +46737 2275 unravels 2 +46738 2275 , the characters respond by hitting on each other . 2 +46739 2275 the characters respond by hitting on each other . 2 +46740 2275 respond by hitting on each other . 1 +46741 2275 respond by hitting on each other 2 +46742 2275 by hitting on each other 2 +46743 2275 hitting on each other 1 +46744 2275 on each other 2 +46745 2276 Now here 's a sadistic bike flick that would have made Vittorio De Sica proud . 3 +46746 2276 here 's a sadistic bike flick that would have made Vittorio De Sica proud . 3 +46747 2276 's a sadistic bike flick that would have made Vittorio De Sica proud . 2 +46748 2276 's a sadistic bike flick that would have made Vittorio De Sica proud 3 +46749 2276 a sadistic bike flick that would have made Vittorio De Sica proud 4 +46750 2276 a sadistic bike flick 1 +46751 2276 sadistic bike flick 1 +46752 2276 sadistic 1 +46753 2276 bike flick 2 +46754 2276 bike 2 +46755 2276 that would have made Vittorio De Sica proud 3 +46756 2276 would have made Vittorio De Sica proud 3 +46757 2276 have made Vittorio De Sica proud 3 +46758 2276 made Vittorio De Sica proud 2 +46759 2276 Vittorio De Sica proud 2 +46760 2276 Vittorio De Sica 2 +46761 2276 Vittorio 2 +46762 2276 De Sica 2 +46763 2276 Sica 2 +46764 2277 Meticulously uncovers a trail of outrageous force and craven concealment . 3 +46765 2277 uncovers a trail of outrageous force and craven concealment . 3 +46766 2277 uncovers a trail of outrageous force and craven concealment 2 +46767 2277 uncovers 2 +46768 2277 a trail of outrageous force and craven concealment 2 +46769 2277 a trail 2 +46770 2277 trail 2 +46771 2277 of outrageous force and craven concealment 1 +46772 2277 outrageous force and craven concealment 2 +46773 2277 outrageous 2 +46774 2277 force and craven concealment 2 +46775 2277 and craven concealment 2 +46776 2277 craven concealment 2 +46777 2277 concealment 2 +46778 2278 A pretty funny movie , with most of the humor coming , as before , from the incongruous but chemically perfect teaming of Crystal and De Niro . 4 +46779 2278 A pretty funny movie , with most of the humor coming , as before , from the incongruous but chemically perfect teaming of Crystal and De Niro 4 +46780 2278 A pretty funny movie , with most of the humor 4 +46781 2278 A pretty funny movie , 4 +46782 2278 A pretty funny movie 4 +46783 2278 pretty funny movie 3 +46784 2278 pretty funny 3 +46785 2278 with most of the humor 2 +46786 2278 most of the humor 2 +46787 2278 of the humor 2 +46788 2278 coming , as before , from the incongruous but chemically perfect teaming of Crystal and De Niro 3 +46789 2278 coming , 2 +46790 2278 as before , from the incongruous but chemically perfect teaming of Crystal and De Niro 4 +46791 2278 before , from the incongruous but chemically perfect teaming of Crystal and De Niro 3 +46792 2278 before , from the incongruous but chemically perfect teaming 2 +46793 2278 before , from the incongruous but chemically 2 +46794 2278 , from the incongruous but chemically 1 +46795 2278 from the incongruous but chemically 1 +46796 2278 from the incongruous but 2 +46797 2278 from the incongruous 2 +46798 2278 the incongruous 2 +46799 2278 incongruous 1 +46800 2278 chemically 2 +46801 2278 perfect teaming 3 +46802 2278 teaming 3 +46803 2278 of Crystal and De Niro 2 +46804 2278 and De Niro 2 +46805 2279 From both a great and a terrible story , Mr. Nelson has made a film that is an undeniably worthy and devastating experience . 3 +46806 2279 From both a great and a terrible story 2 +46807 2279 both a great and a terrible story 3 +46808 2279 a great and a terrible story 3 +46809 2279 great and a terrible story 3 +46810 2279 and a terrible story 0 +46811 2279 a terrible story 0 +46812 2279 terrible story 0 +46813 2279 , Mr. Nelson has made a film that is an undeniably worthy and devastating experience . 3 +46814 2279 Mr. Nelson has made a film that is an undeniably worthy and devastating experience . 4 +46815 2279 Mr. Nelson 2 +46816 2279 Nelson 2 +46817 2279 has made a film that is an undeniably worthy and devastating experience . 4 +46818 2279 has made a film that is an undeniably worthy and devastating experience 3 +46819 2279 made a film that is an undeniably worthy and devastating experience 3 +46820 2279 a film that is an undeniably worthy and devastating experience 3 +46821 2279 that is an undeniably worthy and devastating experience 3 +46822 2279 is an undeniably worthy and devastating experience 1 +46823 2279 an undeniably worthy and devastating experience 2 +46824 2279 undeniably worthy and devastating experience 3 +46825 2279 undeniably worthy and devastating 4 +46826 2279 worthy and devastating 4 +46827 2279 worthy and 3 +46828 2280 ... will always be remembered for the 9-11 terrorist attacks . 2 +46829 2280 will always be remembered for the 9-11 terrorist attacks . 2 +46830 2280 will always be remembered for the 9-11 terrorist attacks 1 +46831 2280 will always 2 +46832 2280 be remembered for the 9-11 terrorist attacks 2 +46833 2280 remembered for the 9-11 terrorist attacks 1 +46834 2280 for the 9-11 terrorist attacks 2 +46835 2280 the 9-11 terrorist attacks 2 +46836 2280 9-11 terrorist attacks 2 +46837 2280 9-11 2 +46838 2280 terrorist attacks 0 +46839 2280 terrorist 1 +46840 2280 attacks 2 +46841 2281 For the rest of us , sitting through Dahmer 's two hours amounts to little more than punishment . 0 +46842 2281 For the rest of us 2 +46843 2281 the rest of us 2 +46844 2281 , sitting through Dahmer 's two hours amounts to little more than punishment . 0 +46845 2281 sitting through Dahmer 's two hours amounts to little more than punishment . 0 +46846 2281 sitting through Dahmer 's two hours 1 +46847 2281 through Dahmer 's two hours 1 +46848 2281 Dahmer 's two hours 2 +46849 2281 Dahmer 's 2 +46850 2281 amounts to little more than punishment . 1 +46851 2281 amounts to little more than punishment 1 +46852 2281 to little more than punishment 1 +46853 2281 little more than punishment 1 +46854 2281 more than punishment 2 +46855 2281 than punishment 2 +46856 2281 punishment 2 +46857 2282 More tiring than anything . 1 +46858 2282 More tiring than anything 0 +46859 2282 tiring than anything 1 +46860 2282 tiring 0 +46861 2282 than anything 2 +46862 2283 If you 're not , you 'll still have a good time . '' 3 +46863 2283 If you 're not 2 +46864 2283 you 're not 1 +46865 2283 , you 'll still have a good time . '' 3 +46866 2283 you 'll still have a good time . '' 3 +46867 2283 'll still have a good time . '' 3 +46868 2283 'll still have a good time . 3 +46869 2283 'll still have a good time 3 +46870 2283 'll still 2 +46871 2284 Occasionally funny , sometimes inspiring , often boring . 2 +46872 2284 Occasionally funny , sometimes inspiring , 3 +46873 2284 funny , sometimes inspiring , 3 +46874 2284 , sometimes inspiring , 3 +46875 2284 sometimes inspiring , 3 +46876 2284 inspiring , 4 +46877 2284 often boring . 0 +46878 2284 often boring 1 +46879 2285 On the surface a silly comedy , Scotland , PA would be forgettable if it were n't such a clever adaptation of the bard 's tragic play . 3 +46880 2285 On the surface a silly comedy 3 +46881 2285 the surface a silly comedy 2 +46882 2285 a silly comedy 1 +46883 2285 silly comedy 3 +46884 2285 , Scotland , PA would be forgettable if it were n't such a clever adaptation of the bard 's tragic play . 3 +46885 2285 Scotland , PA would be forgettable if it were n't such a clever adaptation of the bard 's tragic play . 3 +46886 2285 Scotland , PA 2 +46887 2285 Scotland 2 +46888 2285 , PA 2 +46889 2285 PA 2 +46890 2285 would be forgettable if it were n't such a clever adaptation of the bard 's tragic play . 2 +46891 2285 would be forgettable if it were n't such a clever adaptation of the bard 's tragic play 3 +46892 2285 be forgettable if it were n't such a clever adaptation of the bard 's tragic play 3 +46893 2285 be forgettable 1 +46894 2285 if it were n't such a clever adaptation of the bard 's tragic play 3 +46895 2285 it were n't such a clever adaptation of the bard 's tragic play 2 +46896 2285 were n't such a clever adaptation of the bard 's tragic play 1 +46897 2285 such a clever adaptation of the bard 's tragic play 3 +46898 2285 such a clever adaptation 3 +46899 2285 a clever adaptation 3 +46900 2285 clever adaptation 4 +46901 2285 of the bard 's tragic play 2 +46902 2285 the bard 's tragic play 2 +46903 2285 the bard 's 2 +46904 2285 bard 's 2 +46905 2285 tragic play 2 +46906 2286 Cassavetes thinks he 's making Dog Day Afternoon with a cause , but all he 's done is to reduce everything he touches to a shrill , didactic cartoon . 1 +46907 2286 Cassavetes thinks he 's making Dog Day Afternoon with a cause , but all he 's done is to reduce everything he touches to a shrill , didactic cartoon 1 +46908 2286 Cassavetes thinks he 's making Dog Day Afternoon with a cause , but 2 +46909 2286 Cassavetes thinks he 's making Dog Day Afternoon with a cause , 2 +46910 2286 Cassavetes thinks he 's making Dog Day Afternoon with a cause 2 +46911 2286 Cassavetes 2 +46912 2286 thinks he 's making Dog Day Afternoon with a cause 2 +46913 2286 he 's making Dog Day Afternoon with a cause 3 +46914 2286 's making Dog Day Afternoon with a cause 2 +46915 2286 making Dog Day Afternoon with a cause 3 +46916 2286 Dog Day Afternoon with a cause 2 +46917 2286 Dog Day Afternoon 2 +46918 2286 Day Afternoon 2 +46919 2286 Afternoon 2 +46920 2286 with a cause 3 +46921 2286 a cause 2 +46922 2286 all he 's done is to reduce everything he touches to a shrill , didactic cartoon 0 +46923 2286 all he 's done 2 +46924 2286 he 's done 1 +46925 2286 's done 2 +46926 2286 is to reduce everything he touches to a shrill , didactic cartoon 1 +46927 2286 to reduce everything he touches to a shrill , didactic cartoon 1 +46928 2286 reduce everything he touches to a shrill , didactic cartoon 1 +46929 2286 reduce everything he 2 +46930 2286 reduce everything 2 +46931 2286 reduce 2 +46932 2286 touches to a shrill , didactic cartoon 1 +46933 2286 touches to 2 +46934 2286 touches 2 +46935 2286 a shrill , didactic cartoon 1 +46936 2286 shrill , didactic cartoon 2 +46937 2286 , didactic cartoon 2 +46938 2286 didactic cartoon 2 +46939 2287 ... delivers few moments of inspiration amid the bland animation and simplistic story . 2 +46940 2287 delivers few moments of inspiration amid the bland animation and simplistic story . 0 +46941 2287 delivers few moments of inspiration amid the bland animation and simplistic story 1 +46942 2287 delivers few moments of inspiration 2 +46943 2287 few moments of inspiration 3 +46944 2287 of inspiration 3 +46945 2287 amid the bland animation and simplistic story 1 +46946 2287 the bland animation and simplistic story 1 +46947 2287 the bland animation and 1 +46948 2287 the bland animation 1 +46949 2287 bland animation 1 +46950 2288 When not wallowing in its characters ' frustrations , the movie is busy contriving false , sitcom-worthy solutions to their problems . 1 +46951 2288 When not wallowing in its characters ' frustrations 2 +46952 2288 When not 2 +46953 2288 wallowing in its characters ' frustrations 1 +46954 2288 wallowing 2 +46955 2288 in its characters ' frustrations 1 +46956 2288 its characters ' frustrations 2 +46957 2288 frustrations 1 +46958 2288 , the movie is busy contriving false , sitcom-worthy solutions to their problems . 1 +46959 2288 the movie is busy contriving false , sitcom-worthy solutions to their problems . 0 +46960 2288 is busy contriving false , sitcom-worthy solutions to their problems . 1 +46961 2288 is busy contriving false , sitcom-worthy solutions to their problems 0 +46962 2288 is busy 2 +46963 2288 contriving false , sitcom-worthy solutions to their problems 2 +46964 2288 contriving false , sitcom-worthy solutions 1 +46965 2288 contriving 1 +46966 2288 false , sitcom-worthy solutions 1 +46967 2288 , sitcom-worthy solutions 2 +46968 2288 sitcom-worthy solutions 1 +46969 2288 sitcom-worthy 2 +46970 2288 to their problems 2 +46971 2288 their problems 2 +46972 2289 Fans of critics ' darling band Wilco will marvel at the sometimes murky , always brooding look of I Am Trying to Break Your Heart . 3 +46973 2289 Fans of critics ' darling band Wilco 2 +46974 2289 of critics ' darling band Wilco 2 +46975 2289 critics ' darling band Wilco 2 +46976 2289 critics ' 2 +46977 2289 critics 2 +46978 2289 darling band Wilco 3 +46979 2289 darling 3 +46980 2289 band Wilco 2 +46981 2289 Wilco 2 +46982 2289 will marvel at the sometimes murky , always brooding look of I Am Trying to Break Your Heart . 3 +46983 2289 will marvel at the sometimes murky , always brooding look of I Am Trying to Break Your Heart 2 +46984 2289 marvel at the sometimes murky , always brooding look of I Am Trying to Break Your Heart 2 +46985 2289 marvel at the sometimes murky , always brooding look of I 3 +46986 2289 at the sometimes murky , always brooding look of I 1 +46987 2289 the sometimes murky , always brooding look of I 1 +46988 2289 the sometimes murky , always brooding look 2 +46989 2289 sometimes murky , always brooding look 1 +46990 2289 sometimes murky 1 +46991 2289 , always brooding look 2 +46992 2289 always brooding look 2 +46993 2289 always brooding 1 +46994 2289 brooding 1 +46995 2289 of I 2 +46996 2289 Am Trying to Break Your Heart 2 +46997 2289 Trying to Break Your Heart 2 +46998 2289 to Break Your Heart 2 +46999 2290 A truly wonderful tale combined with stunning animation . 4 +47000 2290 A truly wonderful tale 3 +47001 2290 truly wonderful tale 4 +47002 2290 truly wonderful 4 +47003 2290 combined with stunning animation . 4 +47004 2290 combined with stunning animation 4 +47005 2290 with stunning animation 4 +47006 2290 stunning animation 4 +47007 2291 Just when you think you are making sense of it , something happens that tells you there is no sense . 1 +47008 2291 Just when you think you are making sense of it 2 +47009 2291 when you think you are making sense of it 2 +47010 2291 you think you are making sense of it 2 +47011 2291 think you are making sense of it 2 +47012 2291 you are making sense of it 2 +47013 2291 are making sense of it 2 +47014 2291 making sense of it 2 +47015 2291 sense of it 2 +47016 2291 , something happens that tells you there is no sense . 2 +47017 2291 something happens that tells you there is no sense . 2 +47018 2291 happens that tells you there is no sense . 1 +47019 2291 happens that tells you there is no sense 1 +47020 2291 that tells you there is no sense 2 +47021 2291 tells you there is no sense 2 +47022 2291 you there is no sense 1 +47023 2291 there is no sense 1 +47024 2291 is no sense 2 +47025 2291 no sense 2 +47026 2292 Easily one of the best and most exciting movies of the year . 4 +47027 2292 Easily one of the best and most exciting movies of the year 4 +47028 2292 Easily one of the best and most exciting movies 4 +47029 2292 Easily one 2 +47030 2292 of the best and most exciting movies 4 +47031 2292 the best and most exciting movies 3 +47032 2292 best and most exciting movies 4 +47033 2292 best and most exciting 4 +47034 2292 most exciting 4 +47035 2293 Daring and beautifully made . 4 +47036 2293 Daring and beautifully made 4 +47037 2293 beautifully made 4 +47038 2294 An impenetrable and insufferable ball of pseudo-philosophic twaddle . 1 +47039 2294 An impenetrable and insufferable ball of pseudo-philosophic twaddle 1 +47040 2294 An impenetrable and insufferable ball 0 +47041 2294 impenetrable and insufferable ball 0 +47042 2294 impenetrable 2 +47043 2294 and insufferable ball 1 +47044 2294 insufferable ball 1 +47045 2294 of pseudo-philosophic twaddle 2 +47046 2294 pseudo-philosophic twaddle 1 +47047 2294 pseudo-philosophic 1 +47048 2295 Was that movie nothing more than a tepid exercise in trotting out a formula that worked five years ago but has since lost its fizz ? 0 +47049 2295 Was that movie nothing more than a tepid exercise in trotting out a formula that worked five years ago but has since lost its fizz 1 +47050 2295 Was that movie nothing more than a tepid exercise in 0 +47051 2295 that movie nothing more than a tepid exercise in 1 +47052 2295 that movie nothing 1 +47053 2295 movie nothing 1 +47054 2295 more than a tepid exercise in 1 +47055 2295 more than a tepid 1 +47056 2295 more than a 3 +47057 2295 exercise in 2 +47058 2295 trotting out a formula that worked five years ago but has since lost its fizz 2 +47059 2295 trotting out 2 +47060 2295 trotting 2 +47061 2295 a formula that worked five years ago but has since lost its fizz 1 +47062 2295 a formula 2 +47063 2295 that worked five years ago but has since lost its fizz 1 +47064 2295 worked five years ago but has since lost its fizz 1 +47065 2295 worked five years ago but 2 +47066 2295 worked five years ago 1 +47067 2295 five years ago 2 +47068 2295 five years 2 +47069 2295 has since lost its fizz 2 +47070 2295 has since 3 +47071 2295 lost its fizz 2 +47072 2295 its fizz 2 +47073 2296 At no point during K-19 : The Widowmaker did this viewer feel enveloped in a story that , though meant to be universal in its themes of loyalty , courage and dedication to a common goal , never seems to leave the lot . 2 +47074 2296 At no point during K-19 2 +47075 2296 no point during K-19 2 +47076 2296 during K-19 2 +47077 2296 : The Widowmaker did this viewer feel enveloped in a story that , though meant to be universal in its themes of loyalty , courage and dedication to a common goal , never seems to leave the lot . 2 +47078 2296 The Widowmaker did this viewer feel enveloped in a story that , though meant to be universal in its themes of loyalty , courage and dedication to a common goal , never seems to leave the lot . 2 +47079 2296 The Widowmaker 2 +47080 2296 Widowmaker 2 +47081 2296 did this viewer feel enveloped in a story that , though meant to be universal in its themes of loyalty , courage and dedication to a common goal , never seems to leave the lot . 2 +47082 2296 did this viewer feel enveloped in a story that , though meant to be universal in its themes of loyalty , courage and dedication to a common goal , never seems to leave the lot 1 +47083 2296 this viewer feel enveloped in a story that , though meant to be universal in its themes of loyalty , courage and dedication to a common goal , never seems to leave the lot 2 +47084 2296 this viewer 3 +47085 2296 feel enveloped in a story that , though meant to be universal in its themes of loyalty , courage and dedication to a common goal , never seems to leave the lot 2 +47086 2296 enveloped in a story that , though meant to be universal in its themes of loyalty , courage and dedication to a common goal , never seems to leave the lot 1 +47087 2296 enveloped in a story that , though meant to be universal in its themes of loyalty , courage and dedication to a common goal , never 2 +47088 2296 enveloped 2 +47089 2296 in a story that , though meant to be universal in its themes of loyalty , courage and dedication to a common goal , never 3 +47090 2296 a story that , though meant to be universal in its themes of loyalty , courage and dedication to a common goal , never 2 +47091 2296 that , though meant to be universal in its themes of loyalty , courage and dedication to a common goal , never 2 +47092 2296 though meant to be universal in its themes of loyalty , courage and dedication to a common goal , never 1 +47093 2296 meant to be universal in its themes of loyalty , courage and dedication to a common goal , never 3 +47094 2296 to be universal in its themes of loyalty , courage and dedication to a common goal , never 3 +47095 2296 be universal in its themes of loyalty , courage and dedication to a common goal , never 2 +47096 2296 be universal in its themes of loyalty , courage and dedication to a common goal , 3 +47097 2296 be universal in its themes of loyalty , courage and dedication to a common goal 4 +47098 2296 be universal in its themes of loyalty , courage and dedication 3 +47099 2296 universal in its themes of loyalty , courage and dedication 3 +47100 2296 in its themes of loyalty , courage and dedication 2 +47101 2296 its themes of loyalty , courage and dedication 3 +47102 2296 its themes 2 +47103 2296 of loyalty , courage and dedication 3 +47104 2296 loyalty , courage and dedication 3 +47105 2296 loyalty 3 +47106 2296 , courage and dedication 3 +47107 2296 courage and dedication 3 +47108 2296 courage and 3 +47109 2296 to a common goal 2 +47110 2296 a common goal 2 +47111 2296 common goal 2 +47112 2296 seems to leave the lot 2 +47113 2296 to leave the lot 2 +47114 2296 leave the lot 2 +47115 2296 the lot 2 +47116 2297 A lightweight , uneven action comedy that freely mingles French , Japanese and Hollywood cultures . 1 +47117 2297 A lightweight , uneven action comedy 2 +47118 2297 lightweight , uneven action comedy 1 +47119 2297 , uneven action comedy 1 +47120 2297 uneven action comedy 1 +47121 2297 action comedy 2 +47122 2297 that freely mingles French , Japanese and Hollywood cultures . 2 +47123 2297 that freely 2 +47124 2297 freely 3 +47125 2297 mingles French , Japanese and Hollywood cultures . 2 +47126 2297 mingles French , Japanese and Hollywood cultures 2 +47127 2297 mingles 2 +47128 2297 French , Japanese and Hollywood cultures 2 +47129 2297 , Japanese and Hollywood cultures 2 +47130 2297 Japanese and Hollywood cultures 2 +47131 2297 and Hollywood cultures 2 +47132 2297 Hollywood cultures 2 +47133 2297 cultures 2 +47134 2298 The leaping story line , shaped by director Peter Kosminsky into sharp slivers and cutting impressions , shows all the signs of rich detail condensed into a few evocative images and striking character traits . 3 +47135 2298 The leaping story line , shaped by director Peter Kosminsky into sharp slivers and cutting impressions , 3 +47136 2298 The leaping story line , shaped by director Peter Kosminsky into sharp slivers and cutting impressions 4 +47137 2298 The leaping story line , 2 +47138 2298 The leaping story line 2 +47139 2298 leaping story line 2 +47140 2298 leaping 2 +47141 2298 story line 2 +47142 2298 shaped by director Peter Kosminsky into sharp slivers and cutting impressions 3 +47143 2298 shaped by director Peter Kosminsky 2 +47144 2298 by director Peter Kosminsky 2 +47145 2298 director Peter Kosminsky 3 +47146 2298 into sharp slivers and cutting impressions 2 +47147 2298 sharp slivers and cutting impressions 2 +47148 2298 sharp slivers and 2 +47149 2298 sharp slivers 2 +47150 2298 slivers 2 +47151 2298 cutting impressions 3 +47152 2298 impressions 2 +47153 2298 shows all the signs of rich detail condensed into a few evocative images and striking character traits . 3 +47154 2298 shows all the signs of rich detail condensed into a few evocative images and striking character traits 3 +47155 2298 shows all the signs of rich detail condensed 2 +47156 2298 all the signs of rich detail condensed 4 +47157 2298 all the signs 2 +47158 2298 the signs 2 +47159 2298 of rich detail condensed 3 +47160 2298 rich detail condensed 3 +47161 2298 detail condensed 2 +47162 2298 condensed 2 +47163 2298 into a few evocative images and striking character traits 3 +47164 2298 a few evocative images and striking character traits 2 +47165 2298 a few evocative images and 2 +47166 2298 a few evocative images 3 +47167 2298 few evocative images 2 +47168 2298 evocative images 2 +47169 2298 striking character traits 3 +47170 2298 character traits 2 +47171 2298 traits 2 +47172 2299 When a movie asks you to feel sorry for Mick Jagger 's sex life , it already has one strike against it . 1 +47173 2299 When a movie asks you to feel sorry for Mick Jagger 's sex life 1 +47174 2299 a movie asks you to feel sorry for Mick Jagger 's sex life 2 +47175 2299 asks you to feel sorry for Mick Jagger 's sex life 1 +47176 2299 you to feel sorry for Mick Jagger 's sex life 2 +47177 2299 to feel sorry for Mick Jagger 's sex life 1 +47178 2299 feel sorry for Mick Jagger 's sex life 1 +47179 2299 feel sorry 1 +47180 2299 for Mick Jagger 's sex life 2 +47181 2299 Mick Jagger 's sex life 2 +47182 2299 Mick Jagger 's 2 +47183 2299 Mick 2 +47184 2299 Jagger 's 2 +47185 2299 sex life 2 +47186 2299 , it already has one strike against it . 1 +47187 2299 it already has one strike against it . 1 +47188 2299 already has one strike against it . 2 +47189 2299 has one strike against it . 2 +47190 2299 has one strike against it 1 +47191 2299 one strike against it 1 +47192 2299 one strike 1 +47193 2299 against it 2 +47194 2300 The movie 's gloomy atmosphere is fascinating , though , even if the movie itself does n't stand a ghost of a chance . 2 +47195 2300 The movie 's gloomy atmosphere 1 +47196 2300 gloomy atmosphere 1 +47197 2300 gloomy 2 +47198 2300 is fascinating , though , even if the movie itself does n't stand a ghost of a chance . 1 +47199 2300 is fascinating , though , even if the movie itself does n't stand a ghost of a chance 3 +47200 2300 is fascinating , though , 3 +47201 2300 is fascinating , though 3 +47202 2300 is fascinating , 3 +47203 2300 even if the movie itself does n't stand a ghost of a chance 1 +47204 2300 if the movie itself does n't stand a ghost of a chance 1 +47205 2300 the movie itself does n't stand a ghost of a chance 0 +47206 2300 itself does n't stand a ghost of a chance 1 +47207 2300 does n't stand a ghost of a chance 1 +47208 2300 stand a ghost of a chance 1 +47209 2300 a ghost of a chance 1 +47210 2300 a ghost 2 +47211 2300 of a chance 2 +47212 2300 a chance 2 +47213 2301 There 's surely something wrong with a comedy where the only belly laughs come from the selection of outtakes tacked onto the end credits . 0 +47214 2301 's surely something wrong with a comedy where the only belly laughs come from the selection of outtakes tacked onto the end credits . 2 +47215 2301 's surely something wrong with a comedy where the only belly laughs come from the selection of outtakes tacked onto the end credits 1 +47216 2301 's surely something 2 +47217 2301 's surely 2 +47218 2301 wrong with a comedy where the only belly laughs come from the selection of outtakes tacked onto the end credits 0 +47219 2301 wrong with a comedy 2 +47220 2301 with a comedy 2 +47221 2301 where the only belly laughs come from the selection of outtakes tacked onto the end credits 1 +47222 2301 the only belly laughs come from the selection of outtakes tacked onto the end credits 1 +47223 2301 the only belly laughs come from the selection of outtakes 1 +47224 2301 the only belly laughs 2 +47225 2301 only belly laughs 3 +47226 2301 come from the selection of outtakes 2 +47227 2301 from the selection of outtakes 2 +47228 2301 the selection of outtakes 2 +47229 2301 the selection 2 +47230 2301 selection 2 +47231 2301 of outtakes 2 +47232 2301 tacked onto the end credits 2 +47233 2301 tacked 2 +47234 2301 onto the end credits 3 +47235 2301 the end credits 2 +47236 2301 end credits 2 +47237 2302 a confident , richly acted , emotionally devastating piece of work and 2002 's first great film 4 +47238 2302 a confident , richly acted , emotionally devastating piece 4 +47239 2302 confident , richly acted , emotionally devastating piece 4 +47240 2302 confident , richly 3 +47241 2302 , richly 2 +47242 2302 acted , emotionally devastating piece 3 +47243 2302 , emotionally devastating piece 3 +47244 2302 emotionally devastating piece 2 +47245 2302 emotionally devastating 1 +47246 2302 of work and 2002 's first great film 3 +47247 2302 work and 2002 's first great film 4 +47248 2302 work and 2 +47249 2302 2002 's first great film 4 +47250 2302 2002 's 2 +47251 2302 first great film 4 +47252 2302 great film 4 +47253 2303 Starts slowly , but Adrien Brody -- in the title role -- helps make the film 's conclusion powerful and satisfying . 3 +47254 2303 Starts slowly , but Adrien Brody -- in the title role -- helps make the film 's conclusion powerful and satisfying 3 +47255 2303 Starts slowly , but 2 +47256 2303 Starts slowly , 2 +47257 2303 Starts slowly 2 +47258 2303 Adrien Brody -- in the title role -- helps make the film 's conclusion powerful and satisfying 4 +47259 2303 Adrien Brody 2 +47260 2303 Adrien 2 +47261 2303 Brody 2 +47262 2303 -- in the title role -- helps make the film 's conclusion powerful and satisfying 4 +47263 2303 -- in the title role -- 3 +47264 2303 in the title role -- 2 +47265 2303 helps make the film 's conclusion powerful and satisfying 4 +47266 2303 make the film 's conclusion powerful and satisfying 4 +47267 2303 the film 's conclusion powerful and satisfying 4 +47268 2303 the film 's conclusion 2 +47269 2303 powerful and satisfying 3 +47270 2304 Jeffs has created a breathtakingly assured and stylish work of spare dialogue and acute expressiveness . 4 +47271 2304 Jeffs 2 +47272 2304 has created a breathtakingly assured and stylish work of spare dialogue and acute expressiveness . 3 +47273 2304 has created a breathtakingly assured and stylish work of spare dialogue and acute expressiveness 4 +47274 2304 created a breathtakingly assured and stylish work of spare dialogue and acute expressiveness 4 +47275 2304 a breathtakingly assured and stylish work of spare dialogue and acute expressiveness 3 +47276 2304 a breathtakingly assured and stylish work 4 +47277 2304 breathtakingly assured and stylish work 4 +47278 2304 breathtakingly assured and stylish 4 +47279 2304 assured and stylish 3 +47280 2304 assured and 2 +47281 2304 of spare dialogue and acute expressiveness 3 +47282 2304 spare dialogue and acute expressiveness 3 +47283 2304 spare dialogue and 3 +47284 2304 spare dialogue 1 +47285 2304 acute expressiveness 3 +47286 2304 acute 2 +47287 2304 expressiveness 2 +47288 2305 Those who are not acquainted with the author 's work , on the other hand , may fall fast asleep . 1 +47289 2305 Those who are not acquainted with the author 's work , on the other hand , 2 +47290 2305 who are not acquainted with the author 's work , on the other hand , 2 +47291 2305 are not acquainted with the author 's work , on the other hand , 2 +47292 2305 are not 2 +47293 2305 acquainted with the author 's work , on the other hand , 3 +47294 2305 acquainted 2 +47295 2305 with the author 's work , on the other hand , 2 +47296 2305 with the author 's work 2 +47297 2305 the author 's work 2 +47298 2305 the author 's 2 +47299 2305 author 's 1 +47300 2305 author 2 +47301 2305 , on the other hand , 2 +47302 2305 on the other hand , 2 +47303 2305 on the other hand 2 +47304 2305 the other hand 2 +47305 2305 other hand 2 +47306 2305 may fall fast asleep . 1 +47307 2305 may fall fast asleep 1 +47308 2305 fall fast asleep 0 +47309 2305 fast asleep 2 +47310 2306 in period costume and with a bigger budget . 2 +47311 2306 in period costume and with a bigger budget 2 +47312 2306 in period costume and 2 +47313 2306 in period costume 2 +47314 2306 period costume 2 +47315 2306 with a bigger budget 2 +47316 2306 a bigger budget 2 +47317 2306 bigger budget 2 +47318 2307 But it could be , by its art and heart , a necessary one . 3 +47319 2307 it could be , by its art and heart , a necessary one . 3 +47320 2307 could be , by its art and heart , a necessary one . 3 +47321 2307 could be , by its art and heart , a necessary one 3 +47322 2307 be , by its art and heart , a necessary one 3 +47323 2307 be , by its art and heart , 2 +47324 2307 be , by its art and heart 2 +47325 2307 be , 2 +47326 2307 by its art and heart 3 +47327 2307 its art and heart 3 +47328 2307 art and heart 2 +47329 2307 a necessary one 2 +47330 2307 necessary one 2 +47331 2308 A generous , inspiring film that unfolds with grace and humor and gradually becomes a testament to faith . 4 +47332 2308 A generous , inspiring film that unfolds with grace and humor and gradually 4 +47333 2308 A generous , inspiring film 3 +47334 2308 generous , inspiring film 3 +47335 2308 generous , inspiring 3 +47336 2308 , inspiring 4 +47337 2308 that unfolds with grace and humor and gradually 3 +47338 2308 unfolds with grace and humor and gradually 3 +47339 2308 with grace and humor and gradually 3 +47340 2308 with grace and humor and 3 +47341 2308 with grace and humor 3 +47342 2308 grace and humor 3 +47343 2308 grace and 2 +47344 2308 becomes a testament to faith . 3 +47345 2308 becomes a testament to faith 3 +47346 2308 becomes a testament 3 +47347 2308 a testament 2 +47348 2308 testament 2 +47349 2308 to faith 2 +47350 2309 The project 's filmmakers forgot to include anything even halfway scary as they poorly rejigger Fatal Attraction into a high school setting . 0 +47351 2309 The project 's filmmakers 2 +47352 2309 The project 's 2 +47353 2309 project 's 2 +47354 2309 forgot to include anything even halfway scary as they poorly rejigger Fatal Attraction into a high school setting . 1 +47355 2309 forgot to include anything even halfway scary as they poorly rejigger Fatal Attraction into a high school setting 0 +47356 2309 forgot to include anything even halfway scary 2 +47357 2309 forgot 3 +47358 2309 to include anything even halfway scary 1 +47359 2309 include anything even halfway scary 2 +47360 2309 include anything 2 +47361 2309 include 2 +47362 2309 even halfway scary 3 +47363 2309 halfway scary 2 +47364 2309 as they poorly rejigger Fatal Attraction into a high school setting 1 +47365 2309 they poorly rejigger Fatal Attraction into a high school setting 1 +47366 2309 poorly rejigger Fatal Attraction into a high school setting 1 +47367 2309 rejigger Fatal Attraction into a high school setting 1 +47368 2309 rejigger Fatal Attraction 2 +47369 2309 rejigger 2 +47370 2309 into a high school setting 2 +47371 2309 a high school setting 2 +47372 2309 high school setting 2 +47373 2309 school setting 2 +47374 2310 Murderous Maids pulls no punches in its depiction of the lives of the Papin sister and the events that led to their notorious rise to infamy ... 3 +47375 2310 Murderous Maids 2 +47376 2310 Maids 2 +47377 2310 pulls no punches in its depiction of the lives of the Papin sister and the events that led to their notorious rise to infamy ... 3 +47378 2310 pulls no punches in its depiction of the lives of the Papin sister and the events that led to their notorious rise to infamy 2 +47379 2310 pulls no punches 2 +47380 2310 no punches 2 +47381 2310 punches 1 +47382 2310 in its depiction of the lives of the Papin sister and the events that led to their notorious rise to infamy 2 +47383 2310 its depiction of the lives of the Papin sister and the events that led to their notorious rise to infamy 2 +47384 2310 its depiction of the lives of the Papin sister and 2 +47385 2310 its depiction of the lives of the Papin sister 2 +47386 2310 its depiction 2 +47387 2310 of the lives of the Papin sister 2 +47388 2310 the lives of the Papin sister 2 +47389 2310 the lives 2 +47390 2310 of the Papin sister 2 +47391 2310 the Papin sister 2 +47392 2310 Papin sister 2 +47393 2310 the events that led to their notorious rise to infamy 2 +47394 2310 that led to their notorious rise to infamy 3 +47395 2310 led to their notorious rise to infamy 2 +47396 2310 led to their notorious rise 2 +47397 2310 led 2 +47398 2310 to their notorious rise 2 +47399 2310 their notorious rise 2 +47400 2310 notorious rise 3 +47401 2310 to infamy 1 +47402 2310 infamy 1 +47403 2311 When Seagal appeared in an orange prison jumpsuit , I wanted to stand up in the theater and shout , ` Hey , Kool-Aid ! ' 2 +47404 2311 When Seagal appeared in an orange prison jumpsuit 2 +47405 2311 Seagal appeared in an orange prison jumpsuit 1 +47406 2311 appeared in an orange prison jumpsuit 2 +47407 2311 appeared 2 +47408 2311 in an orange prison jumpsuit 2 +47409 2311 an orange prison jumpsuit 2 +47410 2311 orange prison jumpsuit 2 +47411 2311 prison jumpsuit 2 +47412 2311 jumpsuit 2 +47413 2311 , I wanted to stand up in the theater and shout , ` Hey , Kool-Aid ! ' 2 +47414 2311 I wanted to stand up in the theater and shout , ` Hey , Kool-Aid ! ' 3 +47415 2311 wanted to stand up in the theater and shout , ` Hey , Kool-Aid ! ' 2 +47416 2311 wanted to stand up in the theater and shout , ` Hey , Kool-Aid ! 2 +47417 2311 wanted to stand up in the theater and shout , ` Hey , Kool-Aid 2 +47418 2311 to stand up in the theater and shout , ` Hey , Kool-Aid 2 +47419 2311 stand up in the theater and shout , ` Hey , Kool-Aid 2 +47420 2311 stand up in the theater and 2 +47421 2311 stand up in the theater 3 +47422 2311 shout , ` Hey , Kool-Aid 2 +47423 2311 shout , ` Hey , 2 +47424 2311 shout , ` Hey 2 +47425 2311 shout , ` 2 +47426 2311 shout , 2 +47427 2311 shout 2 +47428 2311 Kool-Aid 2 +47429 2312 For this sort of thing to work , we need agile performers , but the proficient , dull Sorvino has no light touch , and Rodan is out of his league . 1 +47430 2312 For this sort of thing to work , we need agile performers , but the proficient , dull Sorvino has no light touch , and Rodan is out of his league 1 +47431 2312 For this sort of thing to work , we need agile performers , but 2 +47432 2312 For this sort of thing to work , we need agile performers , 1 +47433 2312 For this sort of thing to work , we need agile performers 2 +47434 2312 For this sort of thing to work 2 +47435 2312 this sort of thing to work 2 +47436 2312 this sort of thing 2 +47437 2312 this sort 2 +47438 2312 of thing 2 +47439 2312 to work 2 +47440 2312 , we need agile performers 1 +47441 2312 we need agile performers 2 +47442 2312 need agile performers 1 +47443 2312 agile performers 3 +47444 2312 agile 3 +47445 2312 the proficient , dull Sorvino has no light touch , and Rodan is out of his league 1 +47446 2312 the proficient , dull Sorvino has no light touch , and 1 +47447 2312 the proficient , dull Sorvino has no light touch , 2 +47448 2312 the proficient , dull Sorvino has no light touch 2 +47449 2312 the proficient , dull Sorvino 1 +47450 2312 proficient , dull Sorvino 1 +47451 2312 proficient , dull 1 +47452 2312 proficient 2 +47453 2312 , dull 2 +47454 2312 has no light touch 2 +47455 2312 no light touch 2 +47456 2312 Rodan is out of his league 1 +47457 2312 Rodan 2 +47458 2312 is out of his league 1 +47459 2312 is out 2 +47460 2312 of his league 2 +47461 2312 his league 2 +47462 2312 league 2 +47463 2313 The film is impressive for the sights and sounds of the wondrous beats the world has to offer . 4 +47464 2313 is impressive for the sights and sounds of the wondrous beats the world has to offer . 4 +47465 2313 is impressive for the sights and sounds of the wondrous beats the world has to offer 3 +47466 2313 is impressive for the sights and sounds of the wondrous beats 4 +47467 2313 impressive for the sights and sounds of the wondrous beats 3 +47468 2313 for the sights and sounds of the wondrous beats 3 +47469 2313 the sights and sounds of the wondrous beats 2 +47470 2313 the sights and sounds 2 +47471 2313 sights and sounds 2 +47472 2313 sights and 2 +47473 2313 sights 1 +47474 2313 of the wondrous beats 3 +47475 2313 the wondrous beats 2 +47476 2313 wondrous beats 4 +47477 2313 beats 2 +47478 2313 the world has to offer 2 +47479 2313 has to offer 2 +47480 2313 to offer 2 +47481 2314 Mr. Deeds is sure to give you a lot of laughs in this simple , sweet and romantic comedy . 4 +47482 2314 is sure to give you a lot of laughs in this simple , sweet and romantic comedy . 4 +47483 2314 is sure to give you a lot of laughs in this simple , sweet and romantic comedy 4 +47484 2314 sure to give you a lot of laughs in this simple , sweet and romantic comedy 4 +47485 2314 to give you a lot of laughs in this simple , sweet and romantic comedy 4 +47486 2314 give you a lot of laughs in this simple , sweet and romantic comedy 4 +47487 2314 a lot of laughs in this simple , sweet and romantic comedy 4 +47488 2314 of laughs in this simple , sweet and romantic comedy 3 +47489 2314 laughs in this simple , sweet and romantic comedy 3 +47490 2314 in this simple , sweet and romantic comedy 3 +47491 2314 this simple , sweet and romantic comedy 3 +47492 2314 simple , sweet and romantic comedy 4 +47493 2314 simple , sweet and romantic 3 +47494 2314 , sweet and romantic 4 +47495 2314 sweet and romantic 4 +47496 2315 Pretty good little movie . 3 +47497 2315 Pretty good little movie 4 +47498 2315 good little movie 3 +47499 2316 The story is also as unoriginal as they come , already having been recycled more times than I 'd care to count . 1 +47500 2316 is also as unoriginal as they come , already having been recycled more times than I 'd care to count . 0 +47501 2316 is also as unoriginal as they come , already having been recycled more times than I 'd care to count 1 +47502 2316 is also as unoriginal 0 +47503 2316 as unoriginal 1 +47504 2316 as they come , already having been recycled more times than I 'd care to count 1 +47505 2316 they come , already having been recycled more times than I 'd care to count 1 +47506 2316 come , already having been recycled more times than I 'd care to count 0 +47507 2316 come , already 2 +47508 2316 come , 2 +47509 2316 having been recycled more times than I 'd care to count 0 +47510 2316 been recycled more times than I 'd care to count 0 +47511 2316 recycled more times than I 'd care to count 1 +47512 2316 recycled more times 1 +47513 2316 more times 2 +47514 2316 than I 'd care to count 2 +47515 2316 I 'd care to count 2 +47516 2316 'd care to count 2 +47517 2316 care to count 2 +47518 2316 to count 2 +47519 2317 Passionate , irrational , long-suffering but cruel as a tarantula , Helga figures prominently in this movie , and helps keep the proceedings as funny for grown-ups as for rugrats . 3 +47520 2317 Passionate , irrational , long-suffering but cruel as a tarantula , Helga 2 +47521 2317 Passionate , irrational , long-suffering but cruel 2 +47522 2317 , irrational , long-suffering but cruel 0 +47523 2317 irrational , long-suffering but cruel 1 +47524 2317 irrational 1 +47525 2317 , long-suffering but cruel 0 +47526 2317 long-suffering but cruel 2 +47527 2317 long-suffering but 2 +47528 2317 as a tarantula , Helga 1 +47529 2317 a tarantula , Helga 2 +47530 2317 a tarantula , 2 +47531 2317 a tarantula 2 +47532 2317 Helga 2 +47533 2317 figures prominently in this movie , and helps keep the proceedings as funny for grown-ups as for rugrats . 3 +47534 2317 figures prominently in this movie , and helps keep the proceedings as funny for grown-ups as for rugrats 3 +47535 2317 figures prominently in this movie , and 3 +47536 2317 figures prominently in this movie , 3 +47537 2317 figures prominently in this movie 3 +47538 2317 figures prominently 2 +47539 2317 prominently 2 +47540 2317 helps keep the proceedings as funny for grown-ups as for rugrats 4 +47541 2317 keep the proceedings as funny for grown-ups as for rugrats 3 +47542 2317 the proceedings as funny for grown-ups as for rugrats 4 +47543 2317 as funny for grown-ups as for rugrats 3 +47544 2317 funny for grown-ups as for rugrats 4 +47545 2317 for grown-ups as for rugrats 2 +47546 2317 grown-ups as for rugrats 2 +47547 2317 grown-ups 2 +47548 2317 as for rugrats 2 +47549 2317 for rugrats 2 +47550 2317 rugrats 2 +47551 2318 Initially gripping , eventually cloying POW drama . 3 +47552 2318 Initially gripping 3 +47553 2318 Initially 2 +47554 2318 , eventually cloying POW drama . 2 +47555 2318 eventually cloying POW drama . 1 +47556 2318 eventually cloying POW drama 2 +47557 2318 cloying POW drama 2 +47558 2318 POW drama 2 +47559 2319 Methodical , measured , and gently tedious in its comedy , Secret Ballot is a purposefully reductive movie -- which may be why it 's so successful at lodging itself in the brain . 4 +47560 2319 Methodical , measured , and gently tedious in its comedy 2 +47561 2319 Methodical , measured 2 +47562 2319 Methodical , 2 +47563 2319 Methodical 2 +47564 2319 , and gently tedious in its comedy 3 +47565 2319 gently tedious in its comedy 1 +47566 2319 tedious in its comedy 2 +47567 2319 in its comedy 2 +47568 2319 its comedy 2 +47569 2319 , Secret Ballot is a purposefully reductive movie -- which may be why it 's so successful at lodging itself in the brain . 4 +47570 2319 Secret Ballot is a purposefully reductive movie -- which may be why it 's so successful at lodging itself in the brain . 2 +47571 2319 is a purposefully reductive movie -- which may be why it 's so successful at lodging itself in the brain . 3 +47572 2319 is a purposefully reductive movie -- which may be why it 's so successful at lodging itself in the brain 4 +47573 2319 a purposefully reductive movie -- which may be why it 's so successful at lodging itself in the brain 2 +47574 2319 a purposefully reductive movie -- 2 +47575 2319 a purposefully reductive movie 3 +47576 2319 purposefully reductive movie 3 +47577 2319 purposefully reductive 2 +47578 2319 purposefully 3 +47579 2319 which may be why it 's so successful at lodging itself in the brain 3 +47580 2319 may be why it 's so successful at lodging itself in the brain 3 +47581 2319 be why it 's so successful at lodging itself in the brain 3 +47582 2319 why it 's so successful at lodging itself in the brain 3 +47583 2319 it 's so successful at lodging itself in the brain 4 +47584 2319 's so successful at lodging itself in the brain 3 +47585 2319 so successful at lodging itself in the brain 3 +47586 2319 successful at lodging itself in the brain 3 +47587 2319 at lodging itself in the brain 2 +47588 2319 lodging itself in the brain 2 +47589 2319 lodging itself 2 +47590 2319 lodging 2 +47591 2319 in the brain 2 +47592 2319 the brain 3 +47593 2320 Offers an interesting look at the rapidly changing face of Beijing . 3 +47594 2320 Offers an interesting look at the rapidly changing face of Beijing 3 +47595 2320 Offers an interesting look 3 +47596 2320 an interesting look 3 +47597 2320 interesting look 3 +47598 2320 at the rapidly changing face of Beijing 2 +47599 2320 the rapidly changing face of Beijing 2 +47600 2320 the rapidly changing face 2 +47601 2320 rapidly changing face 2 +47602 2320 rapidly changing 2 +47603 2320 rapidly 2 +47604 2320 of Beijing 2 +47605 2320 Beijing 3 +47606 2321 Gaunt , silver-haired and leonine , -LRB- Harris -RRB- brings a tragic dimension and savage full-bodied wit and cunning to the aging Sandeman . 3 +47607 2321 Gaunt , silver-haired and leonine , -LRB- Harris -RRB- 2 +47608 2321 Gaunt , silver-haired and leonine , 3 +47609 2321 Gaunt , silver-haired and leonine 2 +47610 2321 Gaunt 1 +47611 2321 , silver-haired and leonine 2 +47612 2321 silver-haired and leonine 2 +47613 2321 silver-haired and 2 +47614 2321 silver-haired 2 +47615 2321 leonine 2 +47616 2321 -LRB- Harris -RRB- 2 +47617 2321 Harris -RRB- 2 +47618 2321 brings a tragic dimension and savage full-bodied wit and cunning to the aging Sandeman . 2 +47619 2321 brings a tragic dimension and savage full-bodied wit and cunning to the aging Sandeman 3 +47620 2321 a tragic dimension and savage full-bodied wit and cunning to the aging Sandeman 2 +47621 2321 a tragic dimension and savage full-bodied wit and 3 +47622 2321 a tragic dimension and savage full-bodied wit 3 +47623 2321 a tragic dimension and 1 +47624 2321 a tragic dimension 1 +47625 2321 tragic dimension 2 +47626 2321 dimension 2 +47627 2321 savage full-bodied wit 3 +47628 2321 savage 2 +47629 2321 full-bodied wit 3 +47630 2321 full-bodied 4 +47631 2321 cunning to the aging Sandeman 2 +47632 2321 cunning 3 +47633 2321 to the aging Sandeman 2 +47634 2321 the aging Sandeman 2 +47635 2321 aging Sandeman 1 +47636 2321 Sandeman 2 +47637 2322 Just plain silly . 2 +47638 2322 plain silly . 0 +47639 2322 plain silly 1 +47640 2323 When it 's not wallowing in hormonal melodrama , `` Real Women Have Curves '' is a sweet , honest , and enjoyable comedy-drama about a young woman who wants many things in life , but fears she 'll become her mother before she gets to fulfill her dreams . 3 +47641 2323 When it 's not wallowing in hormonal melodrama 1 +47642 2323 it 's not wallowing in hormonal melodrama 2 +47643 2323 's not wallowing in hormonal melodrama 1 +47644 2323 wallowing in hormonal melodrama 1 +47645 2323 in hormonal melodrama 2 +47646 2323 hormonal melodrama 1 +47647 2323 hormonal 2 +47648 2323 , `` Real Women Have Curves '' is a sweet , honest , and enjoyable comedy-drama about a young woman who wants many things in life , but fears she 'll become her mother before she gets to fulfill her dreams . 4 +47649 2323 `` Real Women Have Curves '' is a sweet , honest , and enjoyable comedy-drama about a young woman who wants many things in life , but fears she 'll become her mother before she gets to fulfill her dreams . 4 +47650 2323 Real Women Have Curves '' is a sweet , honest , and enjoyable comedy-drama about a young woman who wants many things in life , but fears she 'll become her mother before she gets to fulfill her dreams . 4 +47651 2323 '' is a sweet , honest , and enjoyable comedy-drama about a young woman who wants many things in life , but fears she 'll become her mother before she gets to fulfill her dreams . 4 +47652 2323 is a sweet , honest , and enjoyable comedy-drama about a young woman who wants many things in life , but fears she 'll become her mother before she gets to fulfill her dreams . 3 +47653 2323 is a sweet , honest , and enjoyable comedy-drama about a young woman who wants many things in life , but fears she 'll become her mother before she gets to fulfill her dreams 4 +47654 2323 a sweet , honest , and enjoyable comedy-drama about a young woman who wants many things in life , but fears she 'll become her mother before she gets to fulfill her dreams 4 +47655 2323 a sweet , honest , and enjoyable comedy-drama 4 +47656 2323 sweet , honest , and enjoyable comedy-drama 4 +47657 2323 , honest , and enjoyable comedy-drama 3 +47658 2323 honest , and enjoyable comedy-drama 4 +47659 2323 honest , and enjoyable 4 +47660 2323 , and enjoyable 3 +47661 2323 about a young woman who wants many things in life , but fears she 'll become her mother before she gets to fulfill her dreams 2 +47662 2323 a young woman who wants many things in life , but fears she 'll become her mother before she gets to fulfill her dreams 3 +47663 2323 who wants many things in life , but fears she 'll become her mother before she gets to fulfill her dreams 2 +47664 2323 wants many things in life , but fears she 'll become her mother before she gets to fulfill her dreams 2 +47665 2323 wants many things in life , but 2 +47666 2323 wants many things in life , 2 +47667 2323 wants many things in life 2 +47668 2323 wants many things 2 +47669 2323 fears she 'll become her mother before she gets to fulfill her dreams 2 +47670 2323 she 'll become her mother before she gets to fulfill her dreams 2 +47671 2323 'll become her mother before she gets to fulfill her dreams 2 +47672 2323 become her mother before she gets to fulfill her dreams 2 +47673 2323 become her mother 2 +47674 2323 her mother 2 +47675 2323 before she gets to fulfill her dreams 2 +47676 2323 she gets to fulfill her dreams 3 +47677 2323 gets to fulfill her dreams 2 +47678 2323 to fulfill her dreams 2 +47679 2323 fulfill her dreams 2 +47680 2323 fulfill 3 +47681 2323 her dreams 2 +47682 2324 There 's just something about watching a squad of psychopathic underdogs whale the tar out of unsuspecting lawmen that reaches across time and distance . 3 +47683 2324 's just something about watching a squad of psychopathic underdogs whale the tar out of unsuspecting lawmen that reaches across time and distance . 2 +47684 2324 's just something about watching a squad of psychopathic underdogs whale the tar out of unsuspecting lawmen that reaches across time and distance 2 +47685 2324 something about watching a squad of psychopathic underdogs whale the tar out of unsuspecting lawmen that reaches across time and distance 3 +47686 2324 about watching a squad of psychopathic underdogs whale the tar out of unsuspecting lawmen that reaches across time and distance 2 +47687 2324 watching a squad of psychopathic underdogs whale the tar out of unsuspecting lawmen that reaches across time and distance 2 +47688 2324 a squad of psychopathic underdogs whale the tar out of unsuspecting lawmen that reaches across time and distance 2 +47689 2324 a squad of psychopathic underdogs whale the tar out of unsuspecting lawmen 2 +47690 2324 a squad 2 +47691 2324 of psychopathic underdogs whale the tar out of unsuspecting lawmen 2 +47692 2324 psychopathic underdogs whale the tar out of unsuspecting lawmen 2 +47693 2324 psychopathic underdogs whale 2 +47694 2324 psychopathic 1 +47695 2324 underdogs whale 2 +47696 2324 whale 2 +47697 2324 the tar out of unsuspecting lawmen 2 +47698 2324 the tar out 2 +47699 2324 the tar 2 +47700 2324 tar 2 +47701 2324 of unsuspecting lawmen 2 +47702 2324 unsuspecting lawmen 2 +47703 2324 lawmen 2 +47704 2324 that reaches across time and distance 3 +47705 2324 reaches across time and distance 3 +47706 2324 across time and distance 2 +47707 2324 time and distance 2 +47708 2325 This flat run at a hip-hop Tootsie is so poorly paced you could fit all of Pootie Tang in between its punchlines . 0 +47709 2325 This flat run at a hip-hop Tootsie 2 +47710 2325 This flat run 1 +47711 2325 flat run 1 +47712 2325 at a hip-hop Tootsie 2 +47713 2325 a hip-hop Tootsie 2 +47714 2325 hip-hop Tootsie 2 +47715 2325 Tootsie 3 +47716 2325 is so poorly paced you could fit all of Pootie Tang in between its punchlines . 0 +47717 2325 is so poorly paced you could fit all of Pootie Tang in between its punchlines 0 +47718 2325 so poorly paced you could fit all of Pootie Tang in between its punchlines 0 +47719 2325 poorly paced you could fit all of Pootie Tang in between its punchlines 0 +47720 2325 paced you could fit all of Pootie Tang in between its punchlines 2 +47721 2325 you could fit all of Pootie Tang in between its punchlines 1 +47722 2325 could fit all of Pootie Tang in between its punchlines 2 +47723 2325 fit all of Pootie Tang in between its punchlines 1 +47724 2325 fit all of Pootie Tang 2 +47725 2325 all of Pootie Tang 2 +47726 2325 of Pootie Tang 2 +47727 2325 Pootie Tang 2 +47728 2325 Pootie 2 +47729 2325 Tang 2 +47730 2325 in between its punchlines 2 +47731 2325 between its punchlines 2 +47732 2325 its punchlines 2 +47733 2325 punchlines 2 +47734 2326 A triumph of pure craft and passionate heart . 4 +47735 2326 A triumph of pure craft and passionate heart 4 +47736 2326 of pure craft and passionate heart 4 +47737 2326 pure craft and passionate heart 3 +47738 2326 pure craft and 3 +47739 2326 pure craft 3 +47740 2326 passionate heart 3 +47741 2327 imagine a scenario where Bergman approaches Swedish fatalism using Gary Larson 's Far Side humor 3 +47742 2327 imagine a scenario 2 +47743 2327 a scenario 2 +47744 2327 where Bergman approaches Swedish fatalism using Gary Larson 's Far Side humor 3 +47745 2327 Bergman approaches Swedish fatalism using Gary Larson 's Far Side humor 3 +47746 2327 Bergman 2 +47747 2327 approaches Swedish fatalism using Gary Larson 's Far Side humor 3 +47748 2327 Swedish fatalism using Gary Larson 's Far Side humor 3 +47749 2327 Swedish fatalism 2 +47750 2327 fatalism 2 +47751 2327 using Gary Larson 's Far Side humor 2 +47752 2327 Gary Larson 's Far Side humor 3 +47753 2327 Gary Larson 's 2 +47754 2327 Gary 2 +47755 2327 Larson 's 2 +47756 2327 Larson 2 +47757 2327 Far Side humor 2 +47758 2327 Side humor 2 +47759 2328 It 's really just another silly Hollywood action film , one among a multitude of simple-minded , yahoo-ing death shows . 2 +47760 2328 's really just another silly Hollywood action film , one among a multitude of simple-minded , yahoo-ing death shows . 0 +47761 2328 's really just another silly Hollywood action film , one among a multitude of simple-minded , yahoo-ing death shows 1 +47762 2328 just another silly Hollywood action film , one among a multitude of simple-minded , yahoo-ing death shows 0 +47763 2328 another silly Hollywood action film , one among a multitude of simple-minded , yahoo-ing death shows 0 +47764 2328 another silly Hollywood action film , one among a multitude of simple-minded , 1 +47765 2328 another silly Hollywood action film , one among a multitude of simple-minded 3 +47766 2328 another silly Hollywood action film , 2 +47767 2328 another silly Hollywood action film 2 +47768 2328 silly Hollywood action film 1 +47769 2328 Hollywood action film 2 +47770 2328 one among a multitude of simple-minded 1 +47771 2328 among a multitude of simple-minded 2 +47772 2328 a multitude of simple-minded 1 +47773 2328 a multitude 2 +47774 2328 multitude 3 +47775 2328 of simple-minded 1 +47776 2328 simple-minded 1 +47777 2328 yahoo-ing death shows 1 +47778 2328 yahoo-ing 2 +47779 2328 death shows 2 +47780 2329 This is a fudged opportunity of gigantic proportions -- a lunar mission with no signs of life . 0 +47781 2329 is a fudged opportunity of gigantic proportions -- a lunar mission with no signs of life . 1 +47782 2329 is a fudged opportunity of gigantic proportions -- a lunar mission with no signs of life 0 +47783 2329 a fudged opportunity of gigantic proportions -- a lunar mission with no signs of life 1 +47784 2329 a fudged opportunity of gigantic proportions -- 1 +47785 2329 a fudged opportunity of gigantic proportions 1 +47786 2329 a fudged opportunity 0 +47787 2329 fudged opportunity 1 +47788 2329 fudged 2 +47789 2329 of gigantic proportions 2 +47790 2329 gigantic proportions 3 +47791 2329 gigantic 2 +47792 2329 a lunar mission with no signs of life 1 +47793 2329 a lunar mission 2 +47794 2329 lunar mission 2 +47795 2329 lunar 2 +47796 2329 mission 2 +47797 2329 with no signs of life 1 +47798 2329 no signs of life 1 +47799 2329 no signs 2 +47800 2330 Deliberately and skillfully uses ambiguity to suggest possibilities which imbue the theme with added depth and resonance . 3 +47801 2330 Deliberately and skillfully uses 3 +47802 2330 Deliberately and skillfully 3 +47803 2330 Deliberately and 2 +47804 2330 skillfully 3 +47805 2330 ambiguity to suggest possibilities which imbue the theme with added depth and resonance . 3 +47806 2330 ambiguity to suggest possibilities which imbue the theme with added depth and resonance 2 +47807 2330 ambiguity 2 +47808 2330 to suggest possibilities which imbue the theme with added depth and resonance 3 +47809 2330 suggest possibilities which imbue the theme with added depth and resonance 3 +47810 2330 suggest 2 +47811 2330 possibilities which imbue the theme with added depth and resonance 4 +47812 2330 which imbue the theme with added depth and resonance 3 +47813 2330 imbue the theme with added depth and resonance 3 +47814 2330 imbue 2 +47815 2330 the theme with added depth and resonance 3 +47816 2330 the theme 2 +47817 2330 with added depth and resonance 3 +47818 2330 added depth and resonance 3 +47819 2330 added 2 +47820 2330 depth and resonance 2 +47821 2330 depth and 2 +47822 2331 All of it works smoothly under the direction of Spielberg , who does a convincing impersonation here of a director enjoying himself immensely . 4 +47823 2331 All of it 2 +47824 2331 works smoothly under the direction of Spielberg , who does a convincing impersonation here of a director enjoying himself immensely . 4 +47825 2331 works smoothly under the direction of Spielberg , who does a convincing impersonation here of a director enjoying himself immensely 4 +47826 2331 works smoothly 4 +47827 2331 smoothly 3 +47828 2331 under the direction of Spielberg , who does a convincing impersonation here of a director enjoying himself immensely 3 +47829 2331 the direction of Spielberg , who does a convincing impersonation here of a director enjoying himself immensely 3 +47830 2331 the direction of Spielberg , 2 +47831 2331 the direction of Spielberg 3 +47832 2331 of Spielberg 2 +47833 2331 who does a convincing impersonation here of a director enjoying himself immensely 3 +47834 2331 does a convincing impersonation here of a director enjoying himself immensely 3 +47835 2331 a convincing impersonation here of a director enjoying himself immensely 4 +47836 2331 a convincing impersonation 3 +47837 2331 convincing impersonation 3 +47838 2331 impersonation 2 +47839 2331 here of a director enjoying himself immensely 3 +47840 2331 of a director enjoying himself immensely 3 +47841 2331 a director enjoying himself immensely 3 +47842 2331 enjoying himself immensely 3 +47843 2331 enjoying 3 +47844 2331 himself immensely 2 +47845 2332 The whole thing 's fairly lame , making it par for the course for Disney sequels . 1 +47846 2332 's fairly lame , making it par for the course for Disney sequels . 1 +47847 2332 's fairly lame , making it par for the course for Disney sequels 1 +47848 2332 's fairly lame , 1 +47849 2332 's fairly lame 1 +47850 2332 fairly lame 1 +47851 2332 making it par for the course for Disney sequels 1 +47852 2332 it par for the course for Disney sequels 2 +47853 2332 par for the course for Disney sequels 2 +47854 2332 for the course for Disney sequels 2 +47855 2332 the course for Disney sequels 2 +47856 2332 for Disney sequels 2 +47857 2332 Disney sequels 2 +47858 2333 Even at its worst , it 's not half-bad . 3 +47859 2333 Even at its worst 2 +47860 2333 , it 's not half-bad . 3 +47861 2333 it 's not half-bad . 2 +47862 2333 's not half-bad . 3 +47863 2333 's not half-bad 2 +47864 2334 A visionary marvel , but it 's lacking a depth in storytelling usually found in anime like this . 1 +47865 2334 A visionary marvel , but it 's lacking a depth in storytelling usually found in anime like this 2 +47866 2334 A visionary marvel , but 2 +47867 2334 A visionary marvel , 3 +47868 2334 A visionary marvel 3 +47869 2334 A visionary 3 +47870 2334 visionary 3 +47871 2334 it 's lacking a depth in storytelling usually found in anime like this 2 +47872 2334 's lacking a depth in storytelling usually found in anime like this 1 +47873 2334 lacking a depth in storytelling usually found in anime like this 1 +47874 2334 lacking a depth 1 +47875 2334 a depth 2 +47876 2334 in storytelling usually found in anime like this 2 +47877 2334 storytelling usually found in anime like this 2 +47878 2334 usually found in anime like this 2 +47879 2334 found in anime like this 2 +47880 2334 in anime like this 2 +47881 2334 anime like this 2 +47882 2334 anime 2 +47883 2335 Graced with the kind of social texture and realism that would be foreign in American teen comedies . 3 +47884 2335 Graced with the kind of social texture and realism that would be foreign in American teen comedies 4 +47885 2335 with the kind of social texture and realism that would be foreign in American teen comedies 3 +47886 2335 the kind of social texture and realism that would be foreign in American teen comedies 2 +47887 2335 the kind of social texture and realism 3 +47888 2335 of social texture and realism 3 +47889 2335 social texture and realism 2 +47890 2335 texture and realism 3 +47891 2335 texture and 2 +47892 2335 that would be foreign in American teen comedies 2 +47893 2335 would be foreign in American teen comedies 2 +47894 2335 be foreign in American teen comedies 2 +47895 2335 foreign in American teen comedies 2 +47896 2335 in American teen comedies 2 +47897 2335 American teen comedies 2 +47898 2335 teen comedies 2 +47899 2336 Like a bad improvisation exercise , the superficially written characters ramble on tediously about their lives , loves and the art they 're struggling to create . 0 +47900 2336 Like a bad improvisation exercise , the superficially written characters ramble on tediously about their lives , loves and the art 1 +47901 2336 a bad improvisation exercise , the superficially written characters ramble on tediously about their lives , loves and the art 1 +47902 2336 a bad improvisation exercise , 1 +47903 2336 a bad improvisation exercise 1 +47904 2336 bad improvisation exercise 1 +47905 2336 improvisation exercise 2 +47906 2336 the superficially written characters ramble on tediously about their lives , loves and the art 1 +47907 2336 the superficially written characters ramble 1 +47908 2336 superficially written characters ramble 1 +47909 2336 superficially written 1 +47910 2336 superficially 2 +47911 2336 characters ramble 1 +47912 2336 ramble 1 +47913 2336 on tediously about their lives , loves and the art 1 +47914 2336 tediously about their lives , loves and the art 2 +47915 2336 about their lives , loves and the art 3 +47916 2336 their lives , loves and the art 3 +47917 2336 their lives , loves and 2 +47918 2336 their lives , loves 2 +47919 2336 their lives , 2 +47920 2336 they 're struggling to create . 1 +47921 2336 're struggling to create . 1 +47922 2336 're struggling to create 2 +47923 2336 struggling to create 1 +47924 2336 to create 2 +47925 2337 A three-hour cinema master class . 3 +47926 2337 three-hour cinema master class . 3 +47927 2337 three-hour 2 +47928 2337 cinema master class . 3 +47929 2337 master class . 3 +47930 2337 class . 2 +47931 2337 class 2 +47932 2338 Beresford nicely mixes in as much humor as pathos to take us on his sentimental journey of the heart . 3 +47933 2338 Beresford 2 +47934 2338 nicely mixes in as much humor as pathos to take us on his sentimental journey of the heart . 4 +47935 2338 mixes in as much humor as pathos to take us on his sentimental journey of the heart . 3 +47936 2338 mixes in as much humor as pathos to take us on his sentimental journey of the heart 3 +47937 2338 mixes in as much humor as pathos 3 +47938 2338 mixes 2 +47939 2338 in as much humor as pathos 3 +47940 2338 as much humor as pathos 3 +47941 2338 much humor as pathos 2 +47942 2338 much humor 3 +47943 2338 as pathos 2 +47944 2338 pathos 2 +47945 2338 to take us on his sentimental journey of the heart 4 +47946 2338 take us on his sentimental journey of the heart 3 +47947 2338 on his sentimental journey of the heart 3 +47948 2338 his sentimental journey of the heart 3 +47949 2338 his sentimental journey 3 +47950 2338 sentimental journey 3 +47951 2338 of the heart 2 +47952 2339 If you can get past the taboo subject matter , it will be well worth your time . 4 +47953 2339 If you can get past the taboo subject matter 3 +47954 2339 you can get past the taboo subject matter 2 +47955 2339 can get past the taboo subject matter 3 +47956 2339 get past the taboo subject matter 2 +47957 2339 past the taboo subject matter 2 +47958 2339 the taboo subject matter 2 +47959 2339 taboo subject matter 1 +47960 2339 taboo subject 2 +47961 2339 , it will be well worth your time . 4 +47962 2339 it will be well worth your time . 3 +47963 2339 will be well worth your time . 3 +47964 2339 will be well worth your time 4 +47965 2339 be well worth your time 4 +47966 2339 worth your time 3 +47967 2339 your time 2 +47968 2340 While the now 72-year-old Robert Evans been slowed down by a stroke , he has at least one more story to tell : his own . 3 +47969 2340 While the now 72-year-old Robert Evans been slowed down by a stroke 2 +47970 2340 the now 72-year-old Robert Evans been slowed down by a stroke 2 +47971 2340 the now 72-year-old Robert Evans 2 +47972 2340 now 72-year-old Robert Evans 2 +47973 2340 now 72-year-old 2 +47974 2340 72-year-old 2 +47975 2340 Robert Evans 2 +47976 2340 Evans 2 +47977 2340 been slowed down by a stroke 2 +47978 2340 slowed down by a stroke 0 +47979 2340 slowed down 2 +47980 2340 slowed 2 +47981 2340 by a stroke 2 +47982 2340 a stroke 2 +47983 2340 , he has at least one more story to tell : his own . 3 +47984 2340 he has at least one more story to tell : his own . 3 +47985 2340 has at least one more story to tell : his own . 2 +47986 2340 has at least one more story to tell : his own 3 +47987 2340 at least one more story to tell : his own 2 +47988 2340 at least one more 2 +47989 2340 story to tell : his own 2 +47990 2340 to tell : his own 2 +47991 2340 tell : his own 2 +47992 2340 tell : 2 +47993 2340 his own 2 +47994 2341 More busy than exciting , more frantic than involving , more chaotic than entertaining . 1 +47995 2341 More busy than exciting 1 +47996 2341 busy than exciting 2 +47997 2341 than exciting 2 +47998 2341 , more frantic than involving , more chaotic than entertaining . 1 +47999 2341 more frantic than involving , more chaotic than entertaining . 1 +48000 2341 frantic than involving , more chaotic than entertaining . 2 +48001 2341 frantic than involving , more chaotic than entertaining 1 +48002 2341 frantic than involving , 1 +48003 2341 frantic than involving 2 +48004 2341 than involving 2 +48005 2341 more chaotic than entertaining 1 +48006 2341 chaotic than entertaining 2 +48007 2341 chaotic 1 +48008 2341 than entertaining 2 +48009 2342 Precocious smarter-than-thou wayward teen struggles to rebel against his oppressive , right-wing , propriety-obsessed family . 3 +48010 2342 Precocious smarter-than-thou wayward teen 3 +48011 2342 Precocious 1 +48012 2342 smarter-than-thou wayward teen 2 +48013 2342 smarter-than-thou 2 +48014 2342 wayward teen 3 +48015 2342 wayward 1 +48016 2342 struggles to rebel against his oppressive , right-wing , propriety-obsessed family . 1 +48017 2342 struggles to rebel against his oppressive , right-wing , propriety-obsessed family 2 +48018 2342 to rebel against his oppressive , right-wing , propriety-obsessed family 2 +48019 2342 rebel against his oppressive , right-wing , propriety-obsessed family 2 +48020 2342 rebel 2 +48021 2342 against his oppressive , right-wing , propriety-obsessed family 1 +48022 2342 his oppressive , right-wing , propriety-obsessed family 1 +48023 2342 oppressive , right-wing , propriety-obsessed family 2 +48024 2342 oppressive 1 +48025 2342 , right-wing , propriety-obsessed family 1 +48026 2342 right-wing , propriety-obsessed family 1 +48027 2342 , propriety-obsessed family 2 +48028 2342 propriety-obsessed family 2 +48029 2342 propriety-obsessed 2 +48030 2343 Any Chekhov is better than no Chekhov , but it would be a shame if this was your introduction to one of the greatest plays of the last 100 years . 2 +48031 2343 Any Chekhov is better than no Chekhov , but it would be a shame if this was your introduction to one of the greatest plays of the last 100 years 1 +48032 2343 Any Chekhov is better than no Chekhov , but 2 +48033 2343 Any Chekhov is better than no Chekhov , 3 +48034 2343 Any Chekhov is better than no Chekhov 2 +48035 2343 Any Chekhov 2 +48036 2343 is better than no Chekhov 2 +48037 2343 better than no Chekhov 3 +48038 2343 than no Chekhov 2 +48039 2343 no Chekhov 2 +48040 2343 it would be a shame if this was your introduction to one of the greatest plays of the last 100 years 0 +48041 2343 would be a shame if this was your introduction to one of the greatest plays of the last 100 years 0 +48042 2343 be a shame if this was your introduction to one of the greatest plays of the last 100 years 1 +48043 2343 be a shame 2 +48044 2343 a shame 1 +48045 2343 if this was your introduction to one of the greatest plays of the last 100 years 3 +48046 2343 this was your introduction to one of the greatest plays of the last 100 years 4 +48047 2343 was your introduction to one of the greatest plays of the last 100 years 2 +48048 2343 was your introduction 2 +48049 2343 your introduction 2 +48050 2343 to one of the greatest plays of the last 100 years 3 +48051 2343 one of the greatest plays of the last 100 years 4 +48052 2343 of the greatest plays of the last 100 years 4 +48053 2343 the greatest plays of the last 100 years 3 +48054 2343 the greatest plays 3 +48055 2343 greatest plays 3 +48056 2343 of the last 100 years 2 +48057 2343 the last 100 years 2 +48058 2343 last 100 years 2 +48059 2343 100 years 2 +48060 2344 Its adult themes of familial separation and societal betrayal are head and shoulders above much of the director 's previous popcorn work . 3 +48061 2344 Its adult themes of familial separation and societal betrayal 2 +48062 2344 Its adult themes 2 +48063 2344 adult themes 2 +48064 2344 of familial separation and societal betrayal 3 +48065 2344 familial separation and societal betrayal 2 +48066 2344 separation and societal betrayal 2 +48067 2344 separation 2 +48068 2344 and societal betrayal 2 +48069 2344 societal betrayal 2 +48070 2344 societal 2 +48071 2344 are head and shoulders above much of the director 's previous popcorn work . 3 +48072 2344 are head and shoulders above much of the director 's previous popcorn work 3 +48073 2344 head and shoulders above much of the director 's previous popcorn work 4 +48074 2344 head and shoulders 2 +48075 2344 head and 2 +48076 2344 above much of the director 's previous popcorn work 3 +48077 2344 much of the director 's previous popcorn work 2 +48078 2344 of the director 's previous popcorn work 2 +48079 2344 the director 's previous popcorn work 2 +48080 2344 previous popcorn work 2 +48081 2344 popcorn work 2 +48082 2345 You may be galled that you 've wasted nearly two hours of your own precious life with this silly little puddle of a movie . 0 +48083 2345 may be galled that you 've wasted nearly two hours of your own precious life with this silly little puddle of a movie . 0 +48084 2345 may be galled that you 've wasted nearly two hours of your own precious life with this silly little puddle of a movie 0 +48085 2345 be galled that you 've wasted nearly two hours of your own precious life with this silly little puddle of a movie 0 +48086 2345 galled that you 've wasted nearly two hours of your own precious life with this silly little puddle of a movie 0 +48087 2345 galled 2 +48088 2345 that you 've wasted nearly two hours of your own precious life with this silly little puddle of a movie 0 +48089 2345 you 've wasted nearly two hours of your own precious life with this silly little puddle of a movie 0 +48090 2345 've wasted nearly two hours of your own precious life with this silly little puddle of a movie 0 +48091 2345 wasted nearly two hours of your own precious life with this silly little puddle of a movie 0 +48092 2345 wasted nearly two hours of your own precious life 0 +48093 2345 nearly two hours of your own precious life 2 +48094 2345 nearly two hours 2 +48095 2345 nearly two 2 +48096 2345 of your own precious life 2 +48097 2345 your own precious life 3 +48098 2345 own precious life 2 +48099 2345 precious life 2 +48100 2345 with this silly little puddle of a movie 0 +48101 2345 this silly little puddle of a movie 0 +48102 2345 this silly little puddle 2 +48103 2345 silly little puddle 2 +48104 2345 little puddle 2 +48105 2345 puddle 2 +48106 2346 I did n't smile . 1 +48107 2346 did n't smile . 1 +48108 2346 did n't smile 1 +48109 2347 While some will object to the idea of a Vietnam picture with such a rah-rah , patriotic tone , Soldiers ultimately achieves its main strategic objective : dramatizing the human cost of the conflict that came to define a generation . 1 +48110 2347 While some will object to the idea of a Vietnam picture with such a rah-rah , patriotic tone 2 +48111 2347 some will object to the idea of a Vietnam picture with such a rah-rah , patriotic tone 1 +48112 2347 will object to the idea of a Vietnam picture with such a rah-rah , patriotic tone 1 +48113 2347 object to the idea of a Vietnam picture with such a rah-rah , patriotic tone 2 +48114 2347 object to the idea of a Vietnam picture 1 +48115 2347 to the idea of a Vietnam picture 2 +48116 2347 the idea of a Vietnam picture 2 +48117 2347 of a Vietnam picture 2 +48118 2347 a Vietnam picture 2 +48119 2347 Vietnam picture 2 +48120 2347 Vietnam 2 +48121 2347 with such a rah-rah , patriotic tone 1 +48122 2347 such a rah-rah , patriotic tone 2 +48123 2347 such a rah-rah , 2 +48124 2347 such a rah-rah 2 +48125 2347 a rah-rah 2 +48126 2347 rah-rah 3 +48127 2347 patriotic tone 2 +48128 2347 patriotic 3 +48129 2347 , Soldiers ultimately achieves its main strategic objective : dramatizing the human cost of the conflict that came to define a generation . 2 +48130 2347 Soldiers ultimately achieves its main strategic objective : dramatizing the human cost of the conflict that came to define a generation . 3 +48131 2347 ultimately achieves its main strategic objective : dramatizing the human cost of the conflict that came to define a generation . 3 +48132 2347 achieves its main strategic objective : dramatizing the human cost of the conflict that came to define a generation . 3 +48133 2347 achieves its main strategic objective : dramatizing the human cost of the conflict that came to define a generation 3 +48134 2347 achieves its main strategic objective : 3 +48135 2347 achieves its main strategic objective 3 +48136 2347 its main strategic objective 2 +48137 2347 main strategic objective 2 +48138 2347 strategic objective 2 +48139 2347 strategic 2 +48140 2347 objective 2 +48141 2347 dramatizing the human cost of the conflict that came to define a generation 2 +48142 2347 dramatizing 2 +48143 2347 the human cost of the conflict that came to define a generation 3 +48144 2347 the human cost 2 +48145 2347 human cost 2 +48146 2347 of the conflict that came to define a generation 3 +48147 2347 the conflict that came to define a generation 2 +48148 2347 that came to define a generation 3 +48149 2347 came to define a generation 2 +48150 2347 to define a generation 2 +48151 2347 define a generation 3 +48152 2347 a generation 2 +48153 2348 Return to Neverland manages to straddle the line between another classic for the company and just another run-of-the-mill Disney sequel intended for the home video market . 1 +48154 2348 Return to Neverland manages to straddle the line between another classic for the company and just another run-of-the-mill Disney sequel intended for the home video market 1 +48155 2348 Return to Neverland manages to straddle the line between another classic for the company and 3 +48156 2348 Return to Neverland manages to straddle the line between another classic for the company 3 +48157 2348 Return to Neverland 2 +48158 2348 to Neverland 2 +48159 2348 Neverland 2 +48160 2348 manages to straddle the line between another classic for the company 2 +48161 2348 to straddle the line between another classic for the company 2 +48162 2348 straddle the line between another classic for the company 2 +48163 2348 straddle 2 +48164 2348 the line between another classic for the company 2 +48165 2348 between another classic for the company 2 +48166 2348 another classic for the company 3 +48167 2348 another classic 4 +48168 2348 for the company 2 +48169 2348 just another run-of-the-mill Disney sequel intended for the home video market 1 +48170 2348 another run-of-the-mill Disney sequel intended for the home video market 1 +48171 2348 another run-of-the-mill Disney sequel 1 +48172 2348 run-of-the-mill Disney sequel 1 +48173 2348 Disney sequel 2 +48174 2348 intended for the home video market 1 +48175 2348 for the home video market 2 +48176 2348 the home video market 1 +48177 2348 home video market 2 +48178 2348 video market 2 +48179 2349 Shafer 's feature does n't offer much in terms of plot or acting . 1 +48180 2349 Shafer 's feature 2 +48181 2349 Shafer 's 2 +48182 2349 Shafer 2 +48183 2349 does n't offer much in terms of plot or acting . 0 +48184 2349 does n't offer much in terms of plot or acting 1 +48185 2349 offer much in terms of plot or acting 2 +48186 2349 offer much 2 +48187 2349 in terms of plot or acting 2 +48188 2349 terms of plot or acting 2 +48189 2349 of plot or acting 2 +48190 2349 plot or acting 2 +48191 2349 plot or 2 +48192 2350 Was I scared ? 2 +48193 2350 Was I scared 2 +48194 2350 Was I 2 +48195 2351 But Windtalkers does n't beat that one , either . 1 +48196 2351 Windtalkers does n't beat that one , either . 2 +48197 2351 does n't beat that one , either . 1 +48198 2351 does n't beat that one , either 2 +48199 2351 beat that one , either 2 +48200 2351 beat that one , 2 +48201 2351 beat that one 2 +48202 2351 that one 2 +48203 2352 It 's funny . 3 +48204 2352 's funny . 3 +48205 2352 's funny 2 +48206 2353 A case in point : Doug Pray 's Scratch . 2 +48207 2353 A case in point : Doug Pray 's Scratch 2 +48208 2353 A case in point : 2 +48209 2353 A case in point 2 +48210 2353 in point 2 +48211 2353 Doug Pray 's Scratch 2 +48212 2353 Doug Pray 's 2 +48213 2353 Pray 's 2 +48214 2353 Pray 2 +48215 2354 Contains a few big laughs but many more that graze the funny bone or miss it altogether , in part because the consciously dumbed-down approach wears thin . 1 +48216 2354 Contains a few big laughs but many more that graze the funny bone or miss it altogether , in part because the consciously dumbed-down approach wears thin 1 +48217 2354 Contains a few big laughs but many more that graze the funny bone or 2 +48218 2354 Contains a few big laughs but many more that graze the funny bone 3 +48219 2354 Contains 2 +48220 2354 a few big laughs but many more that graze the funny bone 2 +48221 2354 a few big laughs 3 +48222 2354 few big laughs 2 +48223 2354 big laughs 3 +48224 2354 but many more that graze the funny bone 2 +48225 2354 many more that graze the funny bone 2 +48226 2354 many more 2 +48227 2354 that graze the funny bone 3 +48228 2354 graze the funny bone 2 +48229 2354 graze 2 +48230 2354 the funny bone 3 +48231 2354 funny bone 3 +48232 2354 bone 2 +48233 2354 miss it altogether , in part because the consciously dumbed-down approach wears thin 1 +48234 2354 miss it altogether , 2 +48235 2354 miss it altogether 0 +48236 2354 miss it 1 +48237 2354 in part because the consciously dumbed-down approach wears thin 1 +48238 2354 part because the consciously dumbed-down approach wears thin 1 +48239 2354 because the consciously dumbed-down approach wears thin 1 +48240 2354 the consciously dumbed-down approach wears thin 1 +48241 2354 the consciously dumbed-down approach 1 +48242 2354 consciously dumbed-down approach 1 +48243 2354 consciously 2 +48244 2354 dumbed-down approach 1 +48245 2354 wears thin 1 +48246 2355 MacDowell ... gives give a solid , anguished performance that eclipses nearly everything else she 's ever done . 4 +48247 2355 MacDowell 2 +48248 2355 ... gives give a solid , anguished performance that eclipses nearly everything else she 's ever done . 3 +48249 2355 gives give a solid , anguished performance that eclipses nearly everything else she 's ever done . 4 +48250 2355 gives give a solid , anguished performance that eclipses nearly everything else she 's ever done 3 +48251 2355 give a solid , anguished performance that eclipses nearly everything else she 's ever done 2 +48252 2355 a solid , anguished performance that eclipses nearly everything else she 's ever done 3 +48253 2355 a solid , anguished performance 4 +48254 2355 solid , anguished performance 2 +48255 2355 , anguished performance 2 +48256 2355 anguished performance 1 +48257 2355 anguished 1 +48258 2355 that eclipses nearly everything else she 's ever done 3 +48259 2355 eclipses nearly everything else she 's ever done 4 +48260 2355 eclipses 3 +48261 2355 nearly everything else she 's ever done 2 +48262 2355 nearly everything else 2 +48263 2355 she 's ever done 2 +48264 2355 's ever done 2 +48265 2355 's ever 2 +48266 2356 This is a poster movie , a mediocre tribute to films like Them ! 1 +48267 2356 is a poster movie , a mediocre tribute to films like Them ! 1 +48268 2356 is a poster movie , a mediocre tribute to films like Them 1 +48269 2356 a poster movie , a mediocre tribute to films like Them 1 +48270 2356 a poster movie , 2 +48271 2356 a poster movie 2 +48272 2356 poster movie 2 +48273 2356 poster 2 +48274 2356 a mediocre tribute to films like Them 1 +48275 2356 a mediocre tribute 2 +48276 2356 mediocre tribute 2 +48277 2356 to films like Them 2 +48278 2356 films like Them 2 +48279 2356 like Them 2 +48280 2357 Peppering this urban study with references to Norwegian folktales , Villeneuve creates in Maelstrom a world where the bizarre is credible and the real turns magical . 3 +48281 2357 Peppering this urban study with references to Norwegian folktales 2 +48282 2357 Peppering this urban study 2 +48283 2357 this urban study 2 +48284 2357 urban study 2 +48285 2357 with references to Norwegian folktales 2 +48286 2357 references to Norwegian folktales 2 +48287 2357 to Norwegian folktales 2 +48288 2357 Norwegian folktales 2 +48289 2357 Norwegian 2 +48290 2357 folktales 2 +48291 2357 , Villeneuve creates in Maelstrom a world where the bizarre is credible and the real turns magical . 3 +48292 2357 Villeneuve creates in Maelstrom a world where the bizarre is credible and the real turns magical . 4 +48293 2357 Villeneuve 2 +48294 2357 creates in Maelstrom a world where the bizarre is credible and the real turns magical . 3 +48295 2357 creates in Maelstrom a world where the bizarre is credible and the real turns magical 4 +48296 2357 creates in Maelstrom 2 +48297 2357 in Maelstrom 2 +48298 2357 a world where the bizarre is credible and the real turns magical 3 +48299 2357 where the bizarre is credible and the real turns magical 3 +48300 2357 the bizarre is credible and the real turns magical 4 +48301 2357 the bizarre is credible and 2 +48302 2357 the bizarre is credible 3 +48303 2357 the bizarre 2 +48304 2357 is credible 2 +48305 2357 the real turns magical 3 +48306 2357 the real turns 2 +48307 2357 real turns 3 +48308 2358 No , I do n't know why Steven Seagal is considered a star , nor why he keeps being cast in action films when none of them are ever any good or make any money . 1 +48309 2358 , I do n't know why Steven Seagal is considered a star , nor why he keeps being cast in action films when none of them are ever any good or make any money . 0 +48310 2358 I do n't know why Steven Seagal is considered a star , nor why he keeps being cast in action films when none of them are ever any good or make any money . 0 +48311 2358 do n't know why Steven Seagal is considered a star , nor why he keeps being cast in action films when none of them are ever any good or make any money . 0 +48312 2358 do n't know why Steven Seagal is considered a star , nor why he keeps being cast in action films when none of them are ever any good or make any money 0 +48313 2358 know why Steven Seagal is considered a star , nor why he keeps being cast in action films when none of them are ever any good or make any money 1 +48314 2358 know why Steven Seagal is considered a star , nor why he keeps being cast in action films when none of them are ever any good or 1 +48315 2358 know why Steven Seagal is considered a star , nor why he keeps being cast in action films when none of them are ever any good 0 +48316 2358 why Steven Seagal is considered a star , nor why he keeps being cast in action films when none of them are ever any good 0 +48317 2358 Steven Seagal is considered a star , nor why he keeps being cast in action films when none of them are ever any good 1 +48318 2358 is considered a star , nor why he keeps being cast in action films when none of them are ever any good 2 +48319 2358 considered a star , nor why he keeps being cast in action films when none of them are ever any good 0 +48320 2358 a star , nor why he keeps being cast in action films when none of them are ever any good 1 +48321 2358 a star 2 +48322 2358 , nor why he keeps being cast in action films when none of them are ever any good 1 +48323 2358 , nor 2 +48324 2358 why he keeps being cast in action films when none of them are ever any good 1 +48325 2358 he keeps being cast in action films when none of them are ever any good 0 +48326 2358 keeps being cast in action films when none of them are ever any good 0 +48327 2358 being cast in action films when none of them are ever any good 0 +48328 2358 cast in action films when none of them are ever any good 2 +48329 2358 cast in action films 2 +48330 2358 in action films 2 +48331 2358 when none of them are ever any good 1 +48332 2358 none of them are ever any good 1 +48333 2358 none of them 2 +48334 2358 are ever any good 2 +48335 2358 are ever 2 +48336 2358 make any money 2 +48337 2358 any money 2 +48338 2359 In the era of The Sopranos , it feels painfully redundant and inauthentic . 1 +48339 2359 In the era of The Sopranos 2 +48340 2359 the era of The Sopranos 2 +48341 2359 of The Sopranos 2 +48342 2359 The Sopranos 2 +48343 2359 , it feels painfully redundant and inauthentic . 0 +48344 2359 it feels painfully redundant and inauthentic . 1 +48345 2359 feels painfully redundant and inauthentic . 0 +48346 2359 feels painfully redundant and inauthentic 1 +48347 2359 painfully redundant and inauthentic 0 +48348 2359 redundant and inauthentic 1 +48349 2359 redundant and 1 +48350 2359 inauthentic 0 +48351 2360 You ca n't believe anyone would really buy this stuff . 0 +48352 2360 ca n't believe anyone would really buy this stuff . 1 +48353 2360 ca n't believe anyone would really buy this stuff 0 +48354 2360 believe anyone would really buy this stuff 0 +48355 2360 anyone would really buy this stuff 2 +48356 2360 would really buy this stuff 2 +48357 2360 would really 2 +48358 2360 buy this stuff 3 +48359 2360 this stuff 2 +48360 2361 Long on twinkly-eyed close-ups and short on shame . 1 +48361 2361 Long on twinkly-eyed close-ups and short on shame 1 +48362 2361 Long on twinkly-eyed close-ups and short 1 +48363 2361 on twinkly-eyed close-ups and short 2 +48364 2361 twinkly-eyed close-ups and short 2 +48365 2361 twinkly-eyed close-ups and 2 +48366 2361 twinkly-eyed close-ups 2 +48367 2361 twinkly-eyed 3 +48368 2361 close-ups 2 +48369 2361 on shame 1 +48370 2362 It 's plotless , shapeless -- and yet , it must be admitted , not entirely humorless . 1 +48371 2362 It 's plotless , shapeless -- and yet , it must be admitted , not entirely humorless 2 +48372 2362 It 's plotless , shapeless -- and 1 +48373 2362 It 's plotless , shapeless -- 0 +48374 2362 It 's plotless , shapeless 0 +48375 2362 's plotless , shapeless 0 +48376 2362 plotless , shapeless 0 +48377 2362 plotless , 1 +48378 2362 yet , it must be admitted , not entirely humorless 3 +48379 2362 yet , it must be admitted , not 2 +48380 2362 yet , it must be admitted , 3 +48381 2362 yet , it must be admitted 1 +48382 2362 , it must be admitted 2 +48383 2362 it must be admitted 2 +48384 2362 must be admitted 2 +48385 2362 be admitted 2 +48386 2362 admitted 2 +48387 2362 entirely humorless 0 +48388 2362 humorless 0 +48389 2363 Each scene drags , underscoring the obvious , and sentiment is slathered on top . 1 +48390 2363 Each scene drags , underscoring the obvious , and sentiment is slathered on top 0 +48391 2363 Each scene drags , underscoring the obvious , and 0 +48392 2363 Each scene drags , underscoring the obvious , 0 +48393 2363 Each scene drags , underscoring the obvious 1 +48394 2363 Each scene 2 +48395 2363 drags , underscoring the obvious 0 +48396 2363 drags , 2 +48397 2363 underscoring the obvious 2 +48398 2363 underscoring 2 +48399 2363 sentiment is slathered on top 2 +48400 2363 sentiment 2 +48401 2363 is slathered on top 2 +48402 2363 slathered on top 2 +48403 2363 slathered 2 +48404 2363 on top 3 +48405 2364 Outside of Burger 's desire to make some kind of film , it 's really unclear why this project was undertaken 1 +48406 2364 Outside of Burger 's desire to make some kind of film 2 +48407 2364 Outside 2 +48408 2364 of Burger 's desire to make some kind of film 2 +48409 2364 Burger 's desire to make some kind of film 2 +48410 2364 Burger 's 2 +48411 2364 Burger 2 +48412 2364 desire to make some kind of film 2 +48413 2364 to make some kind of film 2 +48414 2364 make some kind of film 2 +48415 2364 some kind of film 2 +48416 2364 , it 's really unclear why this project was undertaken 1 +48417 2364 it 's really unclear why this project was undertaken 1 +48418 2364 's really unclear why this project was undertaken 1 +48419 2364 's really unclear 1 +48420 2364 really unclear 1 +48421 2364 unclear 1 +48422 2364 why this project was undertaken 1 +48423 2364 this project was undertaken 1 +48424 2364 was undertaken 2 +48425 2364 undertaken 2 +48426 2365 I 'd rather watch a rerun of The Powerpuff Girls 0 +48427 2365 'd rather watch a rerun of The Powerpuff Girls 1 +48428 2365 watch a rerun of The Powerpuff Girls 2 +48429 2365 a rerun of The Powerpuff Girls 2 +48430 2365 a rerun 1 +48431 2365 rerun 1 +48432 2365 of The Powerpuff Girls 2 +48433 2366 It 's a talking head documentary , but a great one . 3 +48434 2366 's a talking head documentary , but a great one . 4 +48435 2366 's a talking head documentary , but a great one 3 +48436 2366 a talking head documentary , but a great one 3 +48437 2366 a talking head documentary , 2 +48438 2366 a talking head documentary 2 +48439 2366 talking head documentary 2 +48440 2366 head documentary 2 +48441 2366 but a great one 4 +48442 2367 C'mon ! 2 +48443 2367 C'mon 2 +48444 2368 Director Shekhar Kapur and screenwriters Michael Schiffer and Hossein Amini have tried hard to modernize and reconceptualize things , but the barriers finally prove to be too great . 1 +48445 2368 Director Shekhar Kapur and screenwriters Michael Schiffer and Hossein Amini have tried hard to modernize and reconceptualize things , but the barriers finally prove to be too great 1 +48446 2368 Director Shekhar Kapur and screenwriters Michael Schiffer and Hossein Amini have tried hard to modernize and reconceptualize things , but 2 +48447 2368 Director Shekhar Kapur and screenwriters Michael Schiffer and Hossein Amini have tried hard to modernize and reconceptualize things , 3 +48448 2368 Director Shekhar Kapur and screenwriters Michael Schiffer and Hossein Amini have tried hard to modernize and reconceptualize things 2 +48449 2368 Director Shekhar Kapur and screenwriters Michael Schiffer and Hossein Amini 2 +48450 2368 Shekhar Kapur and screenwriters Michael Schiffer and Hossein Amini 2 +48451 2368 Shekhar 2 +48452 2368 Kapur and screenwriters Michael Schiffer and Hossein Amini 2 +48453 2368 and screenwriters Michael Schiffer and Hossein Amini 2 +48454 2368 screenwriters Michael Schiffer and Hossein Amini 2 +48455 2368 Michael Schiffer and Hossein Amini 2 +48456 2368 Schiffer and Hossein Amini 2 +48457 2368 Schiffer 3 +48458 2368 and Hossein Amini 2 +48459 2368 Hossein Amini 2 +48460 2368 Hossein 3 +48461 2368 Amini 2 +48462 2368 have tried hard to modernize and reconceptualize things 2 +48463 2368 tried hard to modernize and reconceptualize things 2 +48464 2368 tried hard 3 +48465 2368 to modernize and reconceptualize things 2 +48466 2368 modernize and reconceptualize things 2 +48467 2368 modernize and reconceptualize 2 +48468 2368 modernize and 2 +48469 2368 reconceptualize 2 +48470 2368 the barriers finally prove to be too great 1 +48471 2368 the barriers 2 +48472 2368 barriers 2 +48473 2368 finally prove to be too great 2 +48474 2368 prove to be too great 2 +48475 2368 to be too great 3 +48476 2368 be too great 2 +48477 2368 too great 3 +48478 2369 This is DiCaprio 's best performance in anything ever , and easily the most watchable film of the year . 4 +48479 2369 is DiCaprio 's best performance in anything ever , and easily the most watchable film of the year . 4 +48480 2369 is DiCaprio 's best performance in anything ever , and easily the most watchable film of the year 4 +48481 2369 DiCaprio 's best performance in anything ever , and easily the most watchable film of the year 4 +48482 2369 DiCaprio 's best performance 4 +48483 2369 DiCaprio 's 2 +48484 2369 DiCaprio 2 +48485 2369 best performance 3 +48486 2369 in anything ever , and easily the most watchable film of the year 3 +48487 2369 anything ever , and easily the most watchable film of the year 4 +48488 2369 anything ever , and easily 2 +48489 2369 anything ever , and 2 +48490 2369 anything ever , 2 +48491 2369 anything ever 2 +48492 2369 the most watchable film of the year 4 +48493 2369 the most watchable film 4 +48494 2369 most watchable film 4 +48495 2369 most watchable 3 +48496 2370 Everything about it from the bland songs to the colorful but flat drawings is completely serviceable and quickly forgettable . 1 +48497 2370 Everything about it from the bland songs to the colorful but flat drawings 1 +48498 2370 about it from the bland songs to the colorful but flat drawings 2 +48499 2370 it from the bland songs to the colorful but flat drawings 1 +48500 2370 from the bland songs to the colorful but flat drawings 1 +48501 2370 the bland songs to the colorful but flat drawings 2 +48502 2370 the bland songs 1 +48503 2370 bland songs 1 +48504 2370 to the colorful but flat drawings 2 +48505 2370 the colorful but flat drawings 2 +48506 2370 colorful but flat drawings 2 +48507 2370 colorful but flat 2 +48508 2370 colorful but 2 +48509 2370 drawings 2 +48510 2370 is completely serviceable and quickly forgettable . 2 +48511 2370 is completely serviceable and quickly forgettable 1 +48512 2370 completely serviceable and quickly forgettable 1 +48513 2370 completely serviceable and 2 +48514 2370 completely serviceable 2 +48515 2370 quickly forgettable 0 +48516 2371 Cineasts will revel in those visual in-jokes , as in the film 's verbal pokes at everything from the likes of Miramax chief Harvey Weinstein 's bluff personal style to the stylistic rigors of Denmark 's Dogma movement . 3 +48517 2371 Cineasts 2 +48518 2371 will revel in those visual in-jokes , as in the film 's verbal pokes at everything from the likes of Miramax chief Harvey Weinstein 's bluff personal style to the stylistic rigors of Denmark 's Dogma movement . 2 +48519 2371 will revel in those visual in-jokes , as in the film 's verbal pokes at everything from the likes of Miramax chief Harvey Weinstein 's bluff personal style to the stylistic rigors of Denmark 's Dogma movement 3 +48520 2371 revel in those visual in-jokes , as in the film 's verbal pokes at everything from the likes of Miramax chief Harvey Weinstein 's bluff personal style to the stylistic rigors of Denmark 's Dogma movement 3 +48521 2371 revel in those visual in-jokes , as in the film 's verbal pokes at everything from the likes of Miramax chief Harvey Weinstein 's bluff personal style 3 +48522 2371 in those visual in-jokes , as in the film 's verbal pokes at everything from the likes of Miramax chief Harvey Weinstein 's bluff personal style 2 +48523 2371 those visual in-jokes , as in the film 's verbal pokes at everything from the likes of Miramax chief Harvey Weinstein 's bluff personal style 2 +48524 2371 those visual in-jokes , as in the film 's verbal pokes at everything from the likes of Miramax chief 3 +48525 2371 those visual in-jokes , 2 +48526 2371 those visual in-jokes 3 +48527 2371 visual in-jokes 2 +48528 2371 in-jokes 2 +48529 2371 as in the film 's verbal pokes at everything from the likes of Miramax chief 2 +48530 2371 in the film 's verbal pokes at everything from the likes of Miramax chief 2 +48531 2371 in the film 's verbal pokes 3 +48532 2371 the film 's verbal pokes 2 +48533 2371 verbal pokes 2 +48534 2371 verbal 2 +48535 2371 pokes 2 +48536 2371 at everything from the likes of Miramax chief 2 +48537 2371 everything from the likes of Miramax chief 2 +48538 2371 from the likes of Miramax chief 2 +48539 2371 the likes of Miramax chief 2 +48540 2371 the likes 3 +48541 2371 of Miramax chief 2 +48542 2371 Miramax chief 2 +48543 2371 Harvey Weinstein 's bluff personal style 3 +48544 2371 Harvey Weinstein 's 2 +48545 2371 Harvey 2 +48546 2371 Weinstein 's 2 +48547 2371 Weinstein 2 +48548 2371 bluff personal style 2 +48549 2371 bluff 1 +48550 2371 personal style 2 +48551 2371 to the stylistic rigors of Denmark 's Dogma movement 2 +48552 2371 the stylistic rigors of Denmark 's Dogma movement 2 +48553 2371 the stylistic rigors 3 +48554 2371 stylistic rigors 2 +48555 2371 rigors 2 +48556 2371 of Denmark 's Dogma movement 2 +48557 2371 Denmark 's Dogma movement 2 +48558 2371 Denmark 's 2 +48559 2371 Denmark 2 +48560 2371 Dogma movement 2 +48561 2371 Dogma 2 +48562 2372 An uneven look into a grim future that does n't come close to the level of intelligence and visual splendour that can be seen in other films based on Philip K. Dick stories . 1 +48563 2372 An uneven look into a grim future that does n't come close to the level of intelligence and visual splendour that can be seen in other films 0 +48564 2372 An uneven look 2 +48565 2372 uneven look 2 +48566 2372 into a grim future that does n't come close to the level of intelligence and visual splendour that can be seen in other films 1 +48567 2372 a grim future that does n't come close to the level of intelligence and visual splendour that can be seen in other films 1 +48568 2372 a grim future 1 +48569 2372 grim future 1 +48570 2372 grim 2 +48571 2372 that does n't come close to the level of intelligence and visual splendour that can be seen in other films 0 +48572 2372 does n't come close to the level of intelligence and visual splendour that can be seen in other films 0 +48573 2372 come close to the level of intelligence and visual splendour that can be seen in other films 1 +48574 2372 close to the level of intelligence and visual splendour that can be seen in other films 3 +48575 2372 to the level of intelligence and visual splendour that can be seen in other films 2 +48576 2372 the level of intelligence and visual splendour that can be seen in other films 3 +48577 2372 the level of intelligence and 2 +48578 2372 the level of intelligence 2 +48579 2372 of intelligence 2 +48580 2372 visual splendour that can be seen in other films 3 +48581 2372 visual splendour 3 +48582 2372 splendour 3 +48583 2372 that can be seen in other films 2 +48584 2372 can be seen in other films 2 +48585 2372 be seen in other films 2 +48586 2372 seen in other films 2 +48587 2372 in other films 2 +48588 2372 based on Philip K. Dick stories . 2 +48589 2372 based on Philip K. Dick stories 2 +48590 2372 on Philip K. Dick stories 2 +48591 2372 Philip K. Dick stories 2 +48592 2372 Philip 2 +48593 2372 K. Dick stories 2 +48594 2372 K. 2 +48595 2372 Dick stories 2 +48596 2372 Dick 2 +48597 2373 You have enough finely tuned acting to compensate for the movie 's failings . 2 +48598 2373 have enough finely tuned acting to compensate for the movie 's failings . 2 +48599 2373 have enough finely tuned acting to compensate for the movie 's failings 3 +48600 2373 have enough finely tuned 3 +48601 2373 enough finely tuned 3 +48602 2373 finely tuned 3 +48603 2373 tuned 2 +48604 2373 acting to compensate for the movie 's failings 1 +48605 2373 to compensate for the movie 's failings 1 +48606 2373 compensate for the movie 's failings 1 +48607 2373 for the movie 's failings 1 +48608 2373 the movie 's failings 0 +48609 2373 failings 1 +48610 2374 All of the filmmakers ' calculations ca n't rescue Brown Sugar from the curse of blandness . 0 +48611 2374 All of the filmmakers ' calculations 2 +48612 2374 of the filmmakers ' calculations 2 +48613 2374 the filmmakers ' calculations 2 +48614 2374 calculations 2 +48615 2374 ca n't rescue Brown Sugar from the curse of blandness . 1 +48616 2374 ca n't rescue Brown Sugar from the curse of blandness 1 +48617 2374 rescue Brown Sugar from the curse of blandness 0 +48618 2374 Brown Sugar from the curse of blandness 2 +48619 2374 Brown Sugar 2 +48620 2374 Sugar 2 +48621 2374 from the curse of blandness 2 +48622 2374 the curse of blandness 1 +48623 2374 the curse 2 +48624 2374 curse 1 +48625 2374 of blandness 2 +48626 2375 The dramatic crisis does n't always succeed in its quest to be taken seriously , but Huppert 's volatile performance makes for a riveting movie experience . 2 +48627 2375 The dramatic crisis does n't always succeed in its quest to be taken seriously , but Huppert 's volatile performance makes for a riveting movie experience 3 +48628 2375 The dramatic crisis does n't always succeed in its quest to be taken seriously , but 1 +48629 2375 The dramatic crisis does n't always succeed in its quest to be taken seriously , 1 +48630 2375 The dramatic crisis does n't always succeed in its quest to be taken seriously 1 +48631 2375 The dramatic crisis 2 +48632 2375 dramatic crisis 2 +48633 2375 does n't always succeed in its quest to be taken seriously 1 +48634 2375 succeed in its quest to be taken seriously 3 +48635 2375 in its quest to be taken seriously 2 +48636 2375 its quest to be taken seriously 2 +48637 2375 quest to be taken seriously 2 +48638 2375 to be taken seriously 3 +48639 2375 be taken seriously 2 +48640 2375 taken seriously 3 +48641 2375 Huppert 's volatile performance makes for a riveting movie experience 4 +48642 2375 Huppert 's volatile performance 2 +48643 2375 Huppert 's 2 +48644 2375 Huppert 2 +48645 2375 volatile performance 3 +48646 2375 volatile 1 +48647 2375 makes for a riveting movie experience 3 +48648 2375 for a riveting movie experience 4 +48649 2375 a riveting movie experience 3 +48650 2375 riveting movie experience 4 +48651 2376 Eddie Murphy and Owen Wilson have a cute partnership in I Spy , but the movie around them is so often nearly nothing that their charm does n't do a load of good . 1 +48652 2376 Eddie Murphy and Owen Wilson have a cute partnership in I Spy , but the movie around them is so often nearly nothing that their charm does n't do a load of good 1 +48653 2376 Eddie Murphy and Owen Wilson have a cute partnership in I Spy , but 2 +48654 2376 Eddie Murphy and Owen Wilson have a cute partnership in I Spy , 3 +48655 2376 Eddie Murphy and Owen Wilson have a cute partnership in I Spy 3 +48656 2376 Eddie Murphy and Owen Wilson 2 +48657 2376 Murphy and Owen Wilson 1 +48658 2376 and Owen Wilson 2 +48659 2376 Owen Wilson 2 +48660 2376 Owen 2 +48661 2376 have a cute partnership in I Spy 3 +48662 2376 a cute partnership in I Spy 3 +48663 2376 a cute partnership 3 +48664 2376 cute partnership 3 +48665 2376 partnership 2 +48666 2376 in I Spy 2 +48667 2376 I Spy 2 +48668 2376 the movie around them is so often nearly nothing that their charm does n't do a load of good 0 +48669 2376 the movie around them 2 +48670 2376 around them 2 +48671 2376 is so often nearly nothing that their charm does n't do a load of good 2 +48672 2376 is so often nearly nothing 1 +48673 2376 is so often 2 +48674 2376 nearly nothing 2 +48675 2376 that their charm does n't do a load of good 1 +48676 2376 their charm does n't do a load of good 1 +48677 2376 their charm 2 +48678 2376 does n't do a load of good 1 +48679 2376 do a load of good 3 +48680 2376 a load of good 3 +48681 2376 a load 2 +48682 2376 load 2 +48683 2376 of good 3 +48684 2377 There 's only one way to kill Michael Myers for good : stop buying tickets to these movies . 0 +48685 2377 's only one way to kill Michael Myers for good : stop buying tickets to these movies . 1 +48686 2377 's only one way to kill Michael Myers for good : stop buying tickets to these movies 0 +48687 2377 's only one way 2 +48688 2377 only one way 2 +48689 2377 to kill Michael Myers for good : stop buying tickets to these movies 1 +48690 2377 kill Michael Myers for good : stop buying tickets to these movies 0 +48691 2377 kill Michael Myers for good : 2 +48692 2377 kill Michael Myers for good 3 +48693 2377 Michael Myers for good 3 +48694 2377 Michael Myers 2 +48695 2377 Myers 3 +48696 2377 for good 3 +48697 2377 stop buying tickets to these movies 1 +48698 2377 stop buying tickets 0 +48699 2377 buying tickets 2 +48700 2377 buying 2 +48701 2377 tickets 2 +48702 2377 to these movies 2 +48703 2377 these movies 2 +48704 2378 It makes compelling , provocative and prescient viewing . 4 +48705 2378 makes compelling , provocative and prescient viewing . 3 +48706 2378 makes compelling , provocative and prescient viewing 3 +48707 2378 compelling , provocative and prescient viewing 4 +48708 2378 compelling , provocative and prescient 3 +48709 2378 , provocative and prescient 3 +48710 2378 provocative and prescient 4 +48711 2378 provocative and 3 +48712 2378 prescient 2 +48713 2379 The Country Bears wastes an exceptionally good idea . 0 +48714 2379 The Country Bears 2 +48715 2379 Country Bears 2 +48716 2379 wastes an exceptionally good idea . 1 +48717 2379 wastes an exceptionally good idea 0 +48718 2379 wastes 1 +48719 2379 an exceptionally good idea 3 +48720 2379 exceptionally good idea 4 +48721 2379 exceptionally good 4 +48722 2380 Conforms itself with creating a game of ` who 's who ' ... where the characters ' moves are often more predictable than their consequences . 1 +48723 2380 Conforms itself with creating a game of ` who 's who ' ... where the characters ' moves are often more predictable than their consequences 2 +48724 2380 Conforms itself 2 +48725 2380 Conforms 2 +48726 2380 with creating a game of ` who 's who ' ... where the characters ' moves are often more predictable than their consequences 2 +48727 2380 creating a game of ` who 's who ' ... where the characters ' moves are often more predictable than their consequences 2 +48728 2380 a game of ` who 's who ' ... where the characters ' moves are often more predictable than their consequences 1 +48729 2380 a game of ` who 's who ' ... 2 +48730 2380 a game of ` who 's who ' 2 +48731 2380 a game 2 +48732 2380 of ` who 's who ' 2 +48733 2380 of ` who 's who 2 +48734 2380 who 's who 2 +48735 2380 's who 2 +48736 2380 where the characters ' moves are often more predictable than their consequences 1 +48737 2380 the characters ' moves are often more predictable than their consequences 1 +48738 2380 the characters ' moves 2 +48739 2380 are often more predictable than their consequences 1 +48740 2380 are often 2 +48741 2380 more predictable than their consequences 1 +48742 2380 predictable than their consequences 1 +48743 2380 than their consequences 2 +48744 2380 their consequences 2 +48745 2381 A different and emotionally reserved type of survival story -- a film less about refracting all of World War II through the specific conditions of one man , and more about that man lost in its midst . 3 +48746 2381 A different and emotionally reserved type of survival story -- a film less about refracting all of World War II through the specific conditions of one man , and more about that man 3 +48747 2381 A different and emotionally reserved type of survival story 3 +48748 2381 A different and emotionally reserved type 1 +48749 2381 different and emotionally reserved type 2 +48750 2381 different and emotionally reserved 2 +48751 2381 different and 2 +48752 2381 emotionally reserved 2 +48753 2381 of survival story 2 +48754 2381 survival story 2 +48755 2381 -- a film less about refracting all of World War II through the specific conditions of one man , and more about that man 3 +48756 2381 a film less about refracting all of World War II through the specific conditions of one man , and more about that man 2 +48757 2381 a film less 1 +48758 2381 about refracting all of World War II through the specific conditions of one man , and more about that man 3 +48759 2381 about refracting all of World War II through the specific conditions of one man 2 +48760 2381 refracting all of World War II through the specific conditions of one man 1 +48761 2381 refracting all of World War II 2 +48762 2381 refracting 1 +48763 2381 all of World War II 2 +48764 2381 of World War II 2 +48765 2381 World War II 3 +48766 2381 War II 2 +48767 2381 through the specific conditions of one man 2 +48768 2381 the specific conditions of one man 2 +48769 2381 the specific conditions 2 +48770 2381 specific conditions 2 +48771 2381 of one man 2 +48772 2381 one man 2 +48773 2381 , and more about that man 2 +48774 2381 and more about that man 2 +48775 2381 more about that man 2 +48776 2381 about that man 2 +48777 2381 lost in its midst . 2 +48778 2381 lost in its midst 2 +48779 2381 in its midst 2 +48780 2381 its midst 2 +48781 2381 midst 2 +48782 2382 Sure , I hated myself in the morning . 1 +48783 2382 , I hated myself in the morning . 1 +48784 2382 I hated myself in the morning . 1 +48785 2382 hated myself in the morning . 1 +48786 2382 hated myself in the morning 0 +48787 2382 hated myself 0 +48788 2382 hated 1 +48789 2382 in the morning 2 +48790 2382 the morning 2 +48791 2382 morning 2 +48792 2383 A rollicking ride , with jaw-dropping action sequences , striking villains , a gorgeous color palette , astounding technology , stirring music and a boffo last hour that leads up to a strangely sinister happy ending . 4 +48793 2383 A rollicking 3 +48794 2383 ride , with jaw-dropping action sequences , striking villains , a gorgeous color palette , astounding technology , stirring music and a boffo last hour that leads up to a strangely sinister happy ending . 4 +48795 2383 ride , with jaw-dropping action sequences , striking villains , a gorgeous color palette , astounding technology , stirring music and a boffo last hour that leads up to a strangely sinister happy ending 4 +48796 2383 ride , with jaw-dropping action sequences , striking villains , a gorgeous color palette , astounding technology , stirring music and a boffo last hour 3 +48797 2383 ride , 2 +48798 2383 with jaw-dropping action sequences , striking villains , a gorgeous color palette , astounding technology , stirring music and a boffo last hour 4 +48799 2383 jaw-dropping action sequences , striking villains , a gorgeous color palette , astounding technology , stirring music and a boffo last hour 4 +48800 2383 jaw-dropping action sequences , striking villains , a gorgeous color palette , astounding technology , stirring music and 4 +48801 2383 jaw-dropping action sequences , striking villains , a gorgeous color palette , astounding technology , stirring music 4 +48802 2383 jaw-dropping action sequences , striking villains , a gorgeous color palette , astounding technology , 4 +48803 2383 jaw-dropping action sequences , striking villains , a gorgeous color palette , astounding technology 4 +48804 2383 jaw-dropping action sequences , striking villains , a gorgeous color palette , 4 +48805 2383 jaw-dropping action sequences , striking villains , a gorgeous color palette 4 +48806 2383 jaw-dropping action sequences , striking villains , 4 +48807 2383 jaw-dropping action sequences , striking villains 4 +48808 2383 jaw-dropping action sequences , 3 +48809 2383 jaw-dropping action sequences 4 +48810 2383 jaw-dropping 3 +48811 2383 striking villains 3 +48812 2383 a gorgeous color palette 4 +48813 2383 gorgeous color palette 3 +48814 2383 color palette 2 +48815 2383 palette 2 +48816 2383 astounding technology 2 +48817 2383 stirring music 3 +48818 2383 a boffo last hour 2 +48819 2383 boffo last hour 3 +48820 2383 boffo 2 +48821 2383 last hour 2 +48822 2383 that leads up to a strangely sinister happy ending 3 +48823 2383 leads up to a strangely sinister happy ending 3 +48824 2383 leads up 2 +48825 2383 to a strangely sinister happy ending 3 +48826 2383 a strangely sinister happy ending 3 +48827 2383 strangely sinister happy ending 3 +48828 2383 sinister happy ending 3 +48829 2384 Swims in mediocrity , sticking its head up for a breath of fresh air now and then . 0 +48830 2384 Swims in mediocrity 2 +48831 2384 Swims 2 +48832 2384 in mediocrity 2 +48833 2384 , sticking its head up for a breath of fresh air now and then . 3 +48834 2384 sticking its head up for a breath of fresh air now and then . 2 +48835 2384 sticking its head up for a breath of fresh air now and then 2 +48836 2384 sticking its head up 2 +48837 2384 sticking its head 2 +48838 2384 sticking 2 +48839 2384 its head 2 +48840 2384 for a breath of fresh air now and then 3 +48841 2384 a breath of fresh air now and then 3 +48842 2384 a breath 3 +48843 2384 of fresh air now and then 2 +48844 2384 fresh air now and then 3 +48845 2384 fresh air 3 +48846 2384 now and then 2 +48847 2384 now and 2 +48848 2385 Happily , some things are immune to the folly of changing taste and attitude . 3 +48849 2385 Happily 3 +48850 2385 , some things are immune to the folly of changing taste and attitude . 1 +48851 2385 some things are immune to the folly of changing taste and attitude . 2 +48852 2385 some things 2 +48853 2385 are immune to the folly of changing taste and attitude . 2 +48854 2385 are immune to the folly of changing taste and attitude 3 +48855 2385 immune to the folly of changing taste and attitude 2 +48856 2385 immune 2 +48857 2385 to the folly of changing taste and attitude 2 +48858 2385 the folly of changing taste and attitude 2 +48859 2385 the folly 2 +48860 2385 of changing taste and attitude 2 +48861 2385 changing taste and attitude 2 +48862 2385 taste and attitude 2 +48863 2385 taste and 2 +48864 2386 Great over-the-top moviemaking if you 're in a slap-happy mood . 4 +48865 2386 Great over-the-top moviemaking if you 're in a slap-happy mood 3 +48866 2386 Great over-the-top 3 +48867 2386 moviemaking if you 're in a slap-happy mood 2 +48868 2386 if you 're in a slap-happy mood 2 +48869 2386 you 're in a slap-happy mood 3 +48870 2386 're in a slap-happy mood 3 +48871 2386 in a slap-happy mood 3 +48872 2386 a slap-happy mood 4 +48873 2386 slap-happy mood 2 +48874 2386 slap-happy 3 +48875 2387 Swiftly deteriorates into a terribly obvious melodrama and rough-hewn vanity project for lead actress Andie MacDowell . 0 +48876 2387 Swiftly 3 +48877 2387 deteriorates into a terribly obvious melodrama and rough-hewn vanity project for lead actress Andie MacDowell . 0 +48878 2387 deteriorates into a terribly obvious melodrama and rough-hewn vanity project for lead actress Andie MacDowell 0 +48879 2387 deteriorates 2 +48880 2387 into a terribly obvious melodrama and rough-hewn vanity project for lead actress Andie MacDowell 0 +48881 2387 a terribly obvious melodrama and rough-hewn vanity project for lead actress Andie MacDowell 0 +48882 2387 a terribly obvious melodrama and rough-hewn vanity project 1 +48883 2387 terribly obvious melodrama and rough-hewn vanity project 0 +48884 2387 terribly obvious 0 +48885 2387 melodrama and rough-hewn vanity project 1 +48886 2387 and rough-hewn vanity project 1 +48887 2387 rough-hewn vanity project 1 +48888 2387 rough-hewn 2 +48889 2387 vanity project 1 +48890 2387 for lead actress Andie MacDowell 2 +48891 2387 lead actress Andie MacDowell 3 +48892 2387 actress Andie MacDowell 2 +48893 2387 Andie MacDowell 3 +48894 2387 Andie 2 +48895 2388 As gamely as the movie tries to make sense of its title character , there remains a huge gap between the film 's creepy , clean-cut Dahmer -LRB- Jeremy Renner -RRB- and fiendish acts that no amount of earnest textbook psychologizing can bridge . 0 +48896 2388 As gamely as the movie tries to make sense of its title character , there remains a huge gap between the film 's creepy 1 +48897 2388 gamely as the movie tries to make sense of its title character , there remains a huge gap between the film 's creepy 0 +48898 2388 gamely as the movie tries to make sense of its title character 2 +48899 2388 gamely 2 +48900 2388 as the movie tries to make sense of its title character 2 +48901 2388 the movie tries to make sense of its title character 1 +48902 2388 tries to make sense of its title character 2 +48903 2388 to make sense of its title character 2 +48904 2388 make sense of its title character 2 +48905 2388 sense of its title character 2 +48906 2388 of its title character 3 +48907 2388 , there remains a huge gap between the film 's creepy 1 +48908 2388 there remains a huge gap between the film 's creepy 1 +48909 2388 remains a huge gap between the film 's creepy 2 +48910 2388 a huge gap between the film 's creepy 2 +48911 2388 a huge gap 2 +48912 2388 huge gap 1 +48913 2388 gap 1 +48914 2388 between the film 's creepy 2 +48915 2388 the film 's creepy 1 +48916 2388 , clean-cut Dahmer -LRB- Jeremy Renner -RRB- and fiendish acts that no amount of earnest textbook psychologizing can bridge . 2 +48917 2388 clean-cut Dahmer -LRB- Jeremy Renner -RRB- and fiendish acts that no amount of earnest textbook psychologizing can bridge . 1 +48918 2388 clean-cut Dahmer -LRB- Jeremy Renner -RRB- and fiendish 2 +48919 2388 clean-cut Dahmer -LRB- Jeremy Renner -RRB- and 2 +48920 2388 clean-cut Dahmer -LRB- Jeremy Renner -RRB- 2 +48921 2388 clean-cut Dahmer 1 +48922 2388 clean-cut 3 +48923 2388 -LRB- Jeremy Renner -RRB- 2 +48924 2388 Jeremy Renner -RRB- 2 +48925 2388 Jeremy Renner 2 +48926 2388 Jeremy 2 +48927 2388 fiendish 2 +48928 2388 acts that no amount of earnest textbook psychologizing can bridge . 1 +48929 2388 acts that no amount of earnest textbook psychologizing can bridge 2 +48930 2388 that no amount of earnest textbook psychologizing can bridge 1 +48931 2388 no amount of earnest textbook psychologizing can bridge 1 +48932 2388 no amount of earnest textbook psychologizing 2 +48933 2388 of earnest textbook psychologizing 3 +48934 2388 earnest textbook psychologizing 2 +48935 2388 textbook psychologizing 2 +48936 2388 psychologizing 2 +48937 2388 can bridge 2 +48938 2389 foreshadowing 2 +48939 2389 , Cage manages a degree of casual realism 3 +48940 2389 Cage manages a degree of casual realism 3 +48941 2389 Cage 2 +48942 2389 manages a degree of casual realism 2 +48943 2389 a degree of casual realism 2 +48944 2389 of casual realism 3 +48945 2389 casual realism 2 +48946 2389 that is routinely dynamited by Blethyn 2 +48947 2389 is routinely dynamited by Blethyn 2 +48948 2389 is routinely 2 +48949 2389 routinely 2 +48950 2389 dynamited by Blethyn 2 +48951 2389 dynamited 3 +48952 2389 by Blethyn 2 +48953 2389 Blethyn 2 +48954 2390 This film is so different from The Apple and so striking that it can only encourage us to see Samira Makhmalbaf as a very distinctive sensibility , working to develop her own film language with conspicuous success . 3 +48955 2390 is so different from The Apple and so striking that it can only encourage us to see Samira Makhmalbaf as a very distinctive sensibility , working to develop her own film language with conspicuous success . 3 +48956 2390 is so different from The Apple and so striking that it can only encourage us to see Samira Makhmalbaf as a very distinctive sensibility , working to develop her own film language with conspicuous success 4 +48957 2390 is so different from The Apple and so striking 3 +48958 2390 so different from The Apple and so striking 3 +48959 2390 so different from The Apple and 2 +48960 2390 so different from The Apple 2 +48961 2390 different from The Apple 2 +48962 2390 from The Apple 2 +48963 2390 The Apple 2 +48964 2390 Apple 2 +48965 2390 so striking 3 +48966 2390 that it can only encourage us to see Samira Makhmalbaf as a very distinctive sensibility , working to develop her own film language with conspicuous success 3 +48967 2390 it can only encourage us to see Samira Makhmalbaf as a very distinctive sensibility , working to develop her own film language with conspicuous success 3 +48968 2390 can only encourage us to see Samira Makhmalbaf as a very distinctive sensibility , working to develop her own film language with conspicuous success 3 +48969 2390 can only 2 +48970 2390 encourage us to see Samira Makhmalbaf as a very distinctive sensibility , working to develop her own film language with conspicuous success 2 +48971 2390 encourage 4 +48972 2390 us to see Samira Makhmalbaf as a very distinctive sensibility , working to develop her own film language with conspicuous success 3 +48973 2390 to see Samira Makhmalbaf as a very distinctive sensibility , working to develop her own film language with conspicuous success 3 +48974 2390 see Samira Makhmalbaf as a very distinctive sensibility , working to develop her own film language with conspicuous success 3 +48975 2390 Samira Makhmalbaf as a very distinctive sensibility , working to develop her own film language with conspicuous success 4 +48976 2390 Samira Makhmalbaf 2 +48977 2390 Samira 2 +48978 2390 Makhmalbaf 2 +48979 2390 as a very distinctive sensibility , working to develop her own film language with conspicuous success 3 +48980 2390 a very distinctive sensibility , working to develop her own film language with conspicuous success 3 +48981 2390 a very distinctive sensibility , 3 +48982 2390 a very distinctive sensibility 3 +48983 2390 very distinctive sensibility 3 +48984 2390 very distinctive 3 +48985 2390 sensibility 2 +48986 2390 working to develop her own film language with conspicuous success 3 +48987 2390 to develop her own film language with conspicuous success 3 +48988 2390 develop her own film language with conspicuous success 3 +48989 2390 develop her own film language 3 +48990 2390 her own film language 2 +48991 2390 own film language 2 +48992 2390 film language 2 +48993 2390 with conspicuous success 3 +48994 2390 conspicuous success 3 +48995 2391 Sometimes makes less sense than the Bruckheimeresque American action flicks it emulates . 1 +48996 2391 makes less sense than the Bruckheimeresque American action flicks it emulates . 1 +48997 2391 makes less sense than the Bruckheimeresque American action flicks it emulates 1 +48998 2391 less sense than the Bruckheimeresque American action flicks it emulates 1 +48999 2391 less sense 2 +49000 2391 than the Bruckheimeresque American action flicks it emulates 1 +49001 2391 the Bruckheimeresque American action flicks it emulates 2 +49002 2391 the Bruckheimeresque American action 2 +49003 2391 Bruckheimeresque American action 2 +49004 2391 Bruckheimeresque 2 +49005 2391 American action 2 +49006 2391 flicks it emulates 2 +49007 2391 it emulates 2 +49008 2391 emulates 2 +49009 2392 Terrible . 0 +49010 2393 Tiresomely derivative and hammily acted . 0 +49011 2393 Tiresomely 2 +49012 2393 derivative and hammily acted . 1 +49013 2393 derivative and hammily 1 +49014 2393 derivative and 2 +49015 2393 derivative 3 +49016 2393 hammily 2 +49017 2393 acted . 2 +49018 2394 The film 's final hour , where nearly all the previous unseen material resides , is unconvincing soap opera that Tornatore was right to cut . 1 +49019 2394 The film 's final hour , where nearly all the previous unseen material resides , 2 +49020 2394 The film 's final hour , where nearly all the previous unseen material resides 2 +49021 2394 The film 's final hour , 2 +49022 2394 The film 's final hour 3 +49023 2394 final hour 2 +49024 2394 where nearly all the previous unseen material resides 2 +49025 2394 nearly all the previous unseen material resides 2 +49026 2394 nearly all the previous 2 +49027 2394 all the previous 2 +49028 2394 the previous 2 +49029 2394 unseen material resides 2 +49030 2394 unseen 2 +49031 2394 material resides 2 +49032 2394 resides 2 +49033 2394 is unconvincing soap opera that Tornatore was right to cut . 1 +49034 2394 is unconvincing soap opera that Tornatore was right to cut 1 +49035 2394 is unconvincing 0 +49036 2394 unconvincing 1 +49037 2394 soap opera that Tornatore was right to cut 1 +49038 2394 that Tornatore was right to cut 2 +49039 2394 Tornatore was right to cut 2 +49040 2394 Tornatore 2 +49041 2394 was right to cut 3 +49042 2394 right to cut 2 +49043 2394 to cut 2 +49044 2395 Witherspoon puts to rest her valley-girl image , but it 's Dench who really steals the show . 2 +49045 2395 Witherspoon puts to rest her valley-girl image , but it 's Dench who really steals the show 3 +49046 2395 Witherspoon puts to rest her valley-girl image , but 2 +49047 2395 Witherspoon puts to rest her valley-girl image , 2 +49048 2395 Witherspoon puts to rest her valley-girl image 3 +49049 2395 puts to rest her valley-girl image 3 +49050 2395 to rest her valley-girl image 2 +49051 2395 rest her valley-girl image 2 +49052 2395 her valley-girl image 2 +49053 2395 valley-girl image 2 +49054 2395 valley-girl 2 +49055 2395 it 's Dench who really steals the show 3 +49056 2395 's Dench who really steals the show 3 +49057 2395 Dench who really steals the show 4 +49058 2395 Dench 2 +49059 2395 who really steals the show 3 +49060 2395 really steals the show 3 +49061 2395 steals the show 3 +49062 2395 steals 0 +49063 2396 Lookin ' for sin , American-style ? 1 +49064 2396 Lookin ' for sin , 2 +49065 2396 Lookin ' for sin 2 +49066 2396 Lookin ' 2 +49067 2396 Lookin 2 +49068 2396 for sin 2 +49069 2396 American-style ? 2 +49070 2396 American-style 2 +49071 2397 Dolman confines himself to shtick and sentimentality -- the one bald and the other sloppy . 2 +49072 2397 Dolman 2 +49073 2397 confines himself to shtick and sentimentality -- the one bald and the other sloppy . 0 +49074 2397 confines himself to shtick and sentimentality -- the one bald and the other sloppy 2 +49075 2397 confines himself to shtick and sentimentality -- 1 +49076 2397 confines himself to shtick and sentimentality 1 +49077 2397 confines himself 2 +49078 2397 confines 2 +49079 2397 to shtick and sentimentality 3 +49080 2397 shtick and sentimentality 1 +49081 2397 shtick and 2 +49082 2397 the one bald and the other sloppy 1 +49083 2397 the one bald and 2 +49084 2397 the one bald 3 +49085 2397 one bald 2 +49086 2397 bald 2 +49087 2397 the other sloppy 1 +49088 2397 other sloppy 1 +49089 2398 An intelligent romantic thriller of a very old-school kind of quality . 3 +49090 2398 An intelligent romantic thriller of a very old-school kind of quality 3 +49091 2398 An intelligent romantic thriller of a very old-school kind 4 +49092 2398 An intelligent romantic thriller 3 +49093 2398 intelligent romantic thriller 4 +49094 2398 romantic thriller 3 +49095 2398 of a very old-school kind 2 +49096 2398 a very old-school kind 1 +49097 2398 very old-school kind 2 +49098 2398 old-school kind 2 +49099 2398 old-school 2 +49100 2399 Even if The Ring has a familiar ring , it 's still unusually crafty and intelligent for Hollywood horror . 3 +49101 2399 Even if The Ring has a familiar ring 2 +49102 2399 if The Ring has a familiar ring 2 +49103 2399 The Ring has a familiar ring 2 +49104 2399 The Ring 2 +49105 2399 has a familiar ring 2 +49106 2399 a familiar ring 2 +49107 2399 familiar ring 2 +49108 2399 , it 's still unusually crafty and intelligent for Hollywood horror . 3 +49109 2399 it 's still unusually crafty and intelligent for Hollywood horror . 3 +49110 2399 's still unusually crafty and intelligent for Hollywood horror . 4 +49111 2399 's still unusually crafty and intelligent for Hollywood horror 3 +49112 2399 unusually crafty and intelligent for Hollywood horror 3 +49113 2399 unusually crafty and intelligent 4 +49114 2399 unusually 2 +49115 2399 crafty and intelligent 4 +49116 2399 crafty and 3 +49117 2399 crafty 3 +49118 2399 for Hollywood horror 2 +49119 2399 Hollywood horror 1 +49120 2400 The usual movie rah-rah , pleasantly and predictably delivered in low-key style by director Michael Apted and writer Tom Stoppard . 3 +49121 2400 The usual movie rah-rah , pleasantly and predictably 3 +49122 2400 The usual movie rah-rah , 2 +49123 2400 The usual movie rah-rah 1 +49124 2400 usual movie rah-rah 2 +49125 2400 movie rah-rah 2 +49126 2400 pleasantly and predictably 3 +49127 2400 pleasantly and 3 +49128 2400 pleasantly 3 +49129 2400 delivered in low-key style by director Michael Apted and writer Tom Stoppard . 2 +49130 2400 delivered in low-key style by director Michael Apted and writer Tom Stoppard 2 +49131 2400 delivered in low-key style 3 +49132 2400 in low-key style 2 +49133 2400 by director Michael Apted and writer Tom Stoppard 2 +49134 2400 director Michael Apted and writer Tom Stoppard 2 +49135 2400 director Michael Apted and 2 +49136 2400 writer Tom Stoppard 2 +49137 2400 Tom Stoppard 2 +49138 2401 An intelligent and deeply felt work about impossible , irrevocable choices and the price of making them . 4 +49139 2401 An intelligent and deeply 4 +49140 2401 intelligent and deeply 4 +49141 2401 felt work about impossible , irrevocable choices and the price of making them . 1 +49142 2401 felt work about impossible , irrevocable choices and the price of making them 2 +49143 2401 work about impossible , irrevocable choices and the price of making them 2 +49144 2401 work about impossible , irrevocable choices and 2 +49145 2401 work about impossible , irrevocable choices 2 +49146 2401 about impossible , irrevocable choices 2 +49147 2401 impossible , irrevocable choices 3 +49148 2401 , irrevocable choices 2 +49149 2401 irrevocable choices 2 +49150 2401 irrevocable 2 +49151 2401 choices 2 +49152 2401 the price of making them 2 +49153 2401 of making them 2 +49154 2401 making them 2 +49155 2402 A diverse and astonishingly articulate cast of Palestinian and Israeli children . 3 +49156 2402 A diverse and astonishingly articulate 4 +49157 2402 diverse and astonishingly articulate 3 +49158 2402 diverse and astonishingly 2 +49159 2402 diverse and 2 +49160 2402 articulate 2 +49161 2402 cast of Palestinian and Israeli children . 2 +49162 2402 cast of Palestinian and Israeli children 2 +49163 2402 of Palestinian and Israeli children 2 +49164 2402 Palestinian and Israeli children 2 +49165 2402 and Israeli children 2 +49166 2402 Israeli children 2 +49167 2402 Israeli 2 +49168 2403 ... what a banal bore the preachy Circuit turns out to be 0 +49169 2403 what a banal bore the preachy Circuit turns out to be 0 +49170 2403 a banal bore the preachy Circuit turns out to be 2 +49171 2403 banal bore the preachy Circuit turns out to be 1 +49172 2403 banal bore 1 +49173 2403 banal 1 +49174 2403 the preachy Circuit turns out to be 2 +49175 2403 the preachy 1 +49176 2403 Circuit turns out to be 2 +49177 2403 Circuit 2 +49178 2403 turns out to be 2 +49179 2404 It would be disingenuous to call Reno a great film , but you can say that about most of the flicks moving in and out of the multiplex . 2 +49180 2404 It would be disingenuous to call Reno a great film , but you can say that about most of the flicks moving in and out of the multiplex 2 +49181 2404 It would be disingenuous to call Reno a great film , but 1 +49182 2404 It would be disingenuous to call Reno a great film , 0 +49183 2404 It would be disingenuous to call Reno a great film 1 +49184 2404 would be disingenuous to call Reno a great film 1 +49185 2404 be disingenuous to call Reno a great film 1 +49186 2404 disingenuous to call Reno a great film 1 +49187 2404 to call Reno a great film 3 +49188 2404 call Reno a great film 4 +49189 2404 call Reno 2 +49190 2404 a great film 4 +49191 2404 you can say that about most of the flicks moving in and out of the multiplex 2 +49192 2404 can say that about most of the flicks moving in and out of the multiplex 2 +49193 2404 say that about most of the flicks moving in and out of the multiplex 2 +49194 2404 that about most of the flicks moving in and out of the multiplex 2 +49195 2404 that about most 2 +49196 2404 about most 2 +49197 2404 of the flicks moving in and out of the multiplex 2 +49198 2404 the flicks moving in and out of the multiplex 2 +49199 2404 the flicks 2 +49200 2404 moving in and out of the multiplex 2 +49201 2404 moving in and out 2 +49202 2404 in and out 2 +49203 2404 in and 2 +49204 2404 of the multiplex 2 +49205 2405 By-the-numbers yarn . 1 +49206 2405 By-the-numbers 2 +49207 2405 yarn . 2 +49208 2406 Part of the charm of Satin Rouge is that it avoids the obvious with humour and lightness . 3 +49209 2406 Part of the charm of Satin Rouge 3 +49210 2406 of the charm of Satin Rouge 3 +49211 2406 the charm of Satin Rouge 4 +49212 2406 the charm 2 +49213 2406 of Satin Rouge 2 +49214 2406 is that it avoids the obvious with humour and lightness . 3 +49215 2406 is that it avoids the obvious with humour and lightness 3 +49216 2406 that it avoids the obvious with humour and lightness 3 +49217 2406 it avoids the obvious with humour and lightness 3 +49218 2406 avoids the obvious with humour and lightness 2 +49219 2406 avoids the obvious 1 +49220 2406 with humour and lightness 3 +49221 2406 humour and lightness 3 +49222 2406 humour and 3 +49223 2407 A movie of technical skill and rare depth of intellect and feeling . 4 +49224 2407 A movie of technical skill and rare depth of intellect and feeling 3 +49225 2407 A movie of technical skill and rare depth 4 +49226 2407 of technical skill and rare depth 4 +49227 2407 technical skill and rare depth 4 +49228 2407 technical skill and 2 +49229 2407 technical skill 2 +49230 2407 rare depth 3 +49231 2407 of intellect and feeling 2 +49232 2407 intellect and feeling 3 +49233 2407 intellect and 3 +49234 2407 intellect 3 +49235 2408 Cruel and inhuman cinematic punishment ... simultaneously degrades its characters , its stars and its audience . 0 +49236 2408 Cruel and inhuman cinematic punishment 0 +49237 2408 Cruel and 1 +49238 2408 inhuman cinematic punishment 0 +49239 2408 inhuman 1 +49240 2408 cinematic punishment 0 +49241 2408 ... simultaneously degrades its characters , its stars and its audience . 1 +49242 2408 simultaneously degrades its characters , its stars and its audience . 0 +49243 2408 degrades its characters , its stars and its audience . 0 +49244 2408 degrades its characters , its stars and its audience 0 +49245 2408 degrades 2 +49246 2408 its characters , its stars and its audience 2 +49247 2408 its characters , its stars and 2 +49248 2408 its characters , its stars 2 +49249 2409 The only fun part of the movie is playing the obvious game . 1 +49250 2409 The only fun part of the movie 1 +49251 2409 The only fun part 2 +49252 2409 only fun part 2 +49253 2409 fun part 3 +49254 2409 is playing the obvious game . 2 +49255 2409 is playing the obvious game 2 +49256 2409 playing the obvious game 1 +49257 2409 the obvious game 2 +49258 2409 obvious game 2 +49259 2410 Photographed with melancholy richness and eloquently performed yet also decidedly uncinematic . 2 +49260 2410 Photographed with melancholy richness and eloquently performed yet also decidedly uncinematic 3 +49261 2410 Photographed with melancholy richness and 3 +49262 2410 Photographed with melancholy richness 3 +49263 2410 with melancholy richness 3 +49264 2410 melancholy richness 2 +49265 2410 eloquently performed yet also decidedly uncinematic 3 +49266 2410 performed yet also decidedly uncinematic 2 +49267 2410 yet also decidedly uncinematic 1 +49268 2410 also decidedly uncinematic 1 +49269 2410 decidedly uncinematic 1 +49270 2410 uncinematic 1 +49271 2411 Kapur fails to give his audience a single character worth rooting for -LRB- or worth rooting against , for that matter -RRB- . 1 +49272 2411 fails to give his audience a single character worth rooting for -LRB- or worth rooting against , for that matter -RRB- . 0 +49273 2411 fails to give his audience a single character worth rooting for -LRB- or worth rooting against , for that matter -RRB- 0 +49274 2411 to give his audience a single character worth rooting for -LRB- or worth rooting against , for that matter -RRB- 2 +49275 2411 give his audience a single character worth rooting for -LRB- or worth rooting against , for that matter -RRB- 1 +49276 2411 give his audience 2 +49277 2411 his audience 2 +49278 2411 a single character worth rooting for -LRB- or worth rooting against , for that matter -RRB- 2 +49279 2411 a single character 2 +49280 2411 single character 2 +49281 2411 worth rooting for -LRB- or worth rooting against , for that matter -RRB- 2 +49282 2411 rooting for -LRB- or worth rooting against , for that matter -RRB- 2 +49283 2411 rooting 2 +49284 2411 for -LRB- or worth rooting against , for that matter -RRB- 2 +49285 2411 -LRB- or worth rooting against , for that matter -RRB- 1 +49286 2411 or worth rooting against , for that matter -RRB- 2 +49287 2411 or worth rooting against , for that matter 1 +49288 2411 worth rooting against , for that matter 2 +49289 2411 rooting against , for that matter 2 +49290 2411 rooting against , 1 +49291 2411 rooting against 2 +49292 2412 Has lost some of the dramatic conviction that underlies the best of comedies ... 1 +49293 2412 lost some of the dramatic conviction that underlies the best of comedies ... 2 +49294 2412 lost some of the dramatic conviction that underlies the best of comedies 1 +49295 2412 some of the dramatic conviction that underlies the best of comedies 3 +49296 2412 of the dramatic conviction that underlies the best of comedies 3 +49297 2412 the dramatic conviction that underlies the best of comedies 3 +49298 2412 the dramatic conviction 2 +49299 2412 dramatic conviction 2 +49300 2412 that underlies the best of comedies 3 +49301 2412 underlies the best of comedies 2 +49302 2412 underlies 2 +49303 2412 the best of comedies 3 +49304 2412 of comedies 2 +49305 2413 Seeing Seinfeld at home as he watches his own appearance on Letterman with a clinical eye reminds you that the key to stand-up is to always make it look easy , even though the reality is anything but . 2 +49306 2413 Seeing Seinfeld at home as he watches his own appearance on Letterman with a clinical eye 3 +49307 2413 Seeing Seinfeld at home 3 +49308 2413 Seeing Seinfeld 2 +49309 2413 as he watches his own appearance on Letterman with a clinical eye 2 +49310 2413 he watches his own appearance on Letterman with a clinical eye 2 +49311 2413 watches his own appearance on Letterman with a clinical eye 1 +49312 2413 watches his own appearance 2 +49313 2413 watches 2 +49314 2413 his own appearance 2 +49315 2413 own appearance 2 +49316 2413 on Letterman with a clinical eye 2 +49317 2413 Letterman with a clinical eye 3 +49318 2413 with a clinical eye 2 +49319 2413 a clinical eye 2 +49320 2413 clinical eye 2 +49321 2413 reminds you that the key to stand-up is to always make it look easy , even though the reality is anything but . 3 +49322 2413 reminds you that the key to stand-up is to always make it look easy , even though the reality is anything but 3 +49323 2413 reminds you 2 +49324 2413 that the key to stand-up is to always make it look easy , even though the reality is anything but 2 +49325 2413 the key to stand-up is to always make it look easy , even though the reality is anything but 3 +49326 2413 the key to stand-up 2 +49327 2413 the key 2 +49328 2413 to stand-up 2 +49329 2413 is to always make it look easy , even though the reality is anything but 3 +49330 2413 to always make it look easy , even though the reality is anything but 3 +49331 2413 always make it look easy , even though the reality is anything but 3 +49332 2413 make it look easy , even though the reality is anything but 3 +49333 2413 it look easy , even though the reality is anything but 2 +49334 2413 look easy , even though the reality is anything but 3 +49335 2413 look easy , 2 +49336 2413 look easy 3 +49337 2413 even though the reality is anything but 1 +49338 2413 though the reality is anything but 2 +49339 2413 the reality is anything but 2 +49340 2413 the reality 2 +49341 2413 is anything but 2 +49342 2413 is anything 2 +49343 2414 An engrossing story that combines psychological drama , sociological reflection , and high-octane thriller . 4 +49344 2414 An engrossing story that 2 +49345 2414 combines psychological drama , sociological reflection , and high-octane thriller . 3 +49346 2414 combines psychological drama , sociological reflection , and high-octane thriller 4 +49347 2414 psychological drama , sociological reflection , and high-octane thriller 2 +49348 2414 psychological drama , sociological reflection , and 2 +49349 2414 psychological drama , sociological reflection , 2 +49350 2414 psychological drama , sociological reflection 2 +49351 2414 psychological drama , 2 +49352 2414 psychological drama 2 +49353 2414 sociological reflection 2 +49354 2414 sociological 2 +49355 2414 high-octane thriller 4 +49356 2414 high-octane 3 +49357 2415 A movie in which laughter and self-exploitation merge into jolly soft-porn 'em powerment . ' 3 +49358 2415 A movie in which laughter and self-exploitation merge into jolly soft-porn 'em powerment . 3 +49359 2415 A movie in which laughter and self-exploitation merge into jolly soft-porn 'em powerment 2 +49360 2415 in which laughter and self-exploitation merge into jolly soft-porn 'em powerment 3 +49361 2415 laughter and self-exploitation merge into jolly soft-porn 'em powerment 3 +49362 2415 laughter and self-exploitation 3 +49363 2415 laughter and 2 +49364 2415 self-exploitation 2 +49365 2415 merge into jolly soft-porn 'em powerment 2 +49366 2415 into jolly soft-porn 'em powerment 2 +49367 2415 jolly soft-porn 'em powerment 2 +49368 2415 jolly 3 +49369 2415 soft-porn 'em powerment 3 +49370 2415 soft-porn 1 +49371 2415 'em powerment 2 +49372 2415 'em 2 +49373 2415 powerment 2 +49374 2416 If you really want to understand what this story is really all about , you 're far better served by the source material . 0 +49375 2416 If you really want to understand what this story is really all about 2 +49376 2416 you really want to understand what this story is really all about 3 +49377 2416 really want to understand what this story is really all about 2 +49378 2416 want to understand what this story is really all about 2 +49379 2416 to understand what this story is really all about 2 +49380 2416 understand what this story is really all about 2 +49381 2416 what this story is really all about 2 +49382 2416 this story is really all about 3 +49383 2416 is really all about 2 +49384 2416 all about 2 +49385 2416 , you 're far better served by the source material . 1 +49386 2416 you 're far better served by the source material . 1 +49387 2416 're far better served by the source material . 2 +49388 2416 're far better served by the source material 1 +49389 2416 're far better 2 +49390 2416 served by the source material 2 +49391 2416 by the source material 2 +49392 2416 the source material 2 +49393 2417 Lightweight but appealing . 3 +49394 2417 Lightweight but appealing 3 +49395 2417 Lightweight but 2 +49396 2418 Well , this movie proves you wrong on both counts . 1 +49397 2418 , this movie proves you wrong on both counts . 3 +49398 2418 this movie proves you wrong on both counts . 3 +49399 2418 proves you wrong on both counts . 2 +49400 2418 proves you wrong on both counts 1 +49401 2418 you wrong on both counts 1 +49402 2418 wrong on both counts 1 +49403 2418 on both counts 2 +49404 2418 both counts 2 +49405 2418 counts 2 +49406 2419 A very familiar tale , one that 's been told by countless filmmakers about Italian - , Chinese - , Irish - , Latin - , Indian - , Russian - and other hyphenate American young men struggling to balance conflicting cultural messages . 2 +49407 2419 A very familiar tale , one that 's been told by countless filmmakers about Italian - , Chinese - , Irish - , Latin - , Indian - , Russian - and other hyphenate American young men struggling to balance conflicting cultural messages 2 +49408 2419 A very familiar tale , 2 +49409 2419 A very familiar tale 2 +49410 2419 very familiar tale 2 +49411 2419 familiar tale 2 +49412 2419 one that 's been told by countless filmmakers about Italian - , Chinese - , Irish - , Latin - , Indian - , Russian - and other hyphenate American young men struggling to balance conflicting cultural messages 2 +49413 2419 one that 's been told by countless filmmakers about Italian - , Chinese - , Irish - , Latin - , Indian - , Russian - and 2 +49414 2419 one that 's been told by countless filmmakers about Italian - , Chinese - , Irish - , Latin - , Indian - , Russian - 2 +49415 2419 one that 's been told by countless filmmakers about Italian - , Chinese - , Irish - , Latin - , Indian - , Russian 1 +49416 2419 one that 's been told by countless filmmakers about Italian - , Chinese - , Irish - , Latin - , 2 +49417 2419 one that 's been told by countless filmmakers about Italian - , Chinese - , Irish - , Latin - 3 +49418 2419 one that 's been told by countless filmmakers 2 +49419 2419 that 's been told by countless filmmakers 2 +49420 2419 's been told by countless filmmakers 2 +49421 2419 been told by countless filmmakers 2 +49422 2419 told by countless filmmakers 1 +49423 2419 by countless filmmakers 2 +49424 2419 countless filmmakers 2 +49425 2419 about Italian - , Chinese - , Irish - , Latin - 2 +49426 2419 about Italian - , Chinese - , Irish - , Latin 2 +49427 2419 about Italian - , Chinese - , Irish - , 2 +49428 2419 about Italian - , Chinese - , Irish - 2 +49429 2419 about Italian 2 +49430 2419 - , Chinese - , Irish - 2 +49431 2419 , Chinese - , Irish - 2 +49432 2419 , Chinese - , Irish 2 +49433 2419 , Chinese 2 +49434 2419 Chinese 2 +49435 2419 - , Irish 3 +49436 2419 , Irish 2 +49437 2419 Latin 2 +49438 2419 Indian - , Russian 2 +49439 2419 Indian - , 2 +49440 2419 Indian - 2 +49441 2419 other hyphenate American young men struggling to balance conflicting cultural messages 1 +49442 2419 other hyphenate American young men 2 +49443 2419 hyphenate American young men 2 +49444 2419 hyphenate 2 +49445 2419 American young men 2 +49446 2419 struggling to balance conflicting cultural messages 1 +49447 2419 to balance conflicting cultural messages 2 +49448 2419 balance conflicting cultural messages 2 +49449 2419 conflicting cultural messages 2 +49450 2419 conflicting 1 +49451 2419 cultural messages 2 +49452 2420 That 's fun for kids of any age . 4 +49453 2420 's fun for kids of any age . 4 +49454 2420 's fun for kids of any age 4 +49455 2420 fun for kids of any age 4 +49456 2420 for kids of any age 2 +49457 2420 kids of any age 2 +49458 2420 of any age 2 +49459 2420 any age 3 +49460 2421 Why would anyone cast the magnificent Jackie Chan in a movie full of stunt doubles and special effects ? 1 +49461 2421 would anyone cast the magnificent Jackie Chan in a movie full of stunt doubles and special effects ? 1 +49462 2421 would anyone cast the magnificent Jackie Chan in a movie full of stunt doubles and special effects 1 +49463 2421 would anyone 2 +49464 2421 cast the magnificent Jackie Chan in a movie full of stunt doubles and special effects 3 +49465 2421 cast the magnificent Jackie Chan 3 +49466 2421 the magnificent Jackie Chan 4 +49467 2421 magnificent Jackie Chan 4 +49468 2421 in a movie full of stunt doubles and special effects 2 +49469 2421 a movie full of stunt doubles and special effects 2 +49470 2421 full of stunt doubles and special effects 2 +49471 2421 of stunt doubles and special effects 2 +49472 2421 stunt doubles and special effects 2 +49473 2421 stunt doubles and 2 +49474 2421 stunt doubles 2 +49475 2421 doubles 2 +49476 2422 Koury frighteningly and honestly exposes one teenager 's uncomfortable class resentment and , in turn , his self-inflicted retaliation . 3 +49477 2422 Koury frighteningly and honestly exposes one teenager 's uncomfortable class resentment and , in turn , his self-inflicted retaliation 2 +49478 2422 Koury frighteningly and honestly exposes 3 +49479 2422 Koury frighteningly and honestly 2 +49480 2422 Koury frighteningly and 2 +49481 2422 Koury frighteningly 2 +49482 2422 Koury 2 +49483 2422 frighteningly 2 +49484 2422 exposes 2 +49485 2422 one teenager 's uncomfortable class resentment and , in turn , his self-inflicted retaliation 2 +49486 2422 one teenager 's uncomfortable class resentment and , in turn , 2 +49487 2422 one teenager 's uncomfortable class resentment and 1 +49488 2422 one teenager 's uncomfortable class resentment 2 +49489 2422 one teenager 's 2 +49490 2422 teenager 's 2 +49491 2422 teenager 2 +49492 2422 uncomfortable class resentment 1 +49493 2422 class resentment 1 +49494 2422 resentment 1 +49495 2422 , in turn , 2 +49496 2422 in turn , 2 +49497 2422 in turn 2 +49498 2422 his self-inflicted retaliation 1 +49499 2422 self-inflicted retaliation 1 +49500 2422 self-inflicted 2 +49501 2423 Terrific performances , great to look at , and funny . 4 +49502 2423 Terrific performances , great to look at , and funny 4 +49503 2423 performances , great to look at , and funny 4 +49504 2423 , great to look at , and funny 4 +49505 2423 great to look at , and funny 3 +49506 2423 great to look at 4 +49507 2423 , and funny 3 +49508 2424 An unorthodox little film noir organized crime story that includes one of the strangest love stories you will ever see . 3 +49509 2424 An unorthodox little film noir organized crime story that includes one of the strangest 3 +49510 2424 An unorthodox little film noir organized crime story 2 +49511 2424 unorthodox little film noir organized crime story 2 +49512 2424 unorthodox 2 +49513 2424 little film noir organized crime story 3 +49514 2424 film noir organized crime story 2 +49515 2424 noir organized crime story 2 +49516 2424 organized crime story 2 +49517 2424 organized 3 +49518 2424 crime story 2 +49519 2424 that includes one of the strangest 2 +49520 2424 includes one of the strangest 3 +49521 2424 one of the strangest 2 +49522 2424 of the strangest 2 +49523 2424 the strangest 2 +49524 2424 strangest 2 +49525 2424 love stories you will ever see . 3 +49526 2424 love stories you will ever see 3 +49527 2424 stories you will ever see 2 +49528 2424 you will ever see 2 +49529 2424 will ever see 2 +49530 2424 will ever 2 +49531 2425 Neatly constructed thriller . 3 +49532 2425 Neatly constructed thriller 3 +49533 2425 constructed thriller 2 +49534 2426 One of the best silly horror movies of recent memory , with some real shocks in store for unwary viewers . 4 +49535 2426 One of the best silly horror movies of recent memory 3 +49536 2426 One of the best silly horror movies 4 +49537 2426 of the best silly horror movies 3 +49538 2426 the best silly horror movies 4 +49539 2426 best silly horror movies 3 +49540 2426 silly horror movies 1 +49541 2426 , with some real shocks in store for unwary viewers . 3 +49542 2426 with some real shocks in store for unwary viewers . 3 +49543 2426 with some real shocks in store for unwary viewers 2 +49544 2426 some real shocks in store for unwary viewers 2 +49545 2426 some real shocks 2 +49546 2426 real shocks 2 +49547 2426 in store for unwary viewers 2 +49548 2426 store for unwary viewers 1 +49549 2426 for unwary viewers 2 +49550 2426 unwary viewers 1 +49551 2426 unwary 1 +49552 2427 The most brilliant work in this genre since the 1984 uncut version of Sergio Leone 's flawed but staggering Once Upon a Time in America . 4 +49553 2427 The most brilliant work in this genre since the 1984 uncut version of Sergio Leone 4 +49554 2427 The most brilliant work 4 +49555 2427 most brilliant work 3 +49556 2427 most brilliant 4 +49557 2427 in this genre since the 1984 uncut version of Sergio Leone 2 +49558 2427 this genre since the 1984 uncut version of Sergio Leone 2 +49559 2427 this genre 2 +49560 2427 since the 1984 uncut version of Sergio Leone 2 +49561 2427 the 1984 uncut version of Sergio Leone 2 +49562 2427 the 1984 uncut version 2 +49563 2427 1984 uncut version 2 +49564 2427 1984 2 +49565 2427 uncut version 2 +49566 2427 uncut 2 +49567 2427 of Sergio Leone 2 +49568 2427 Sergio Leone 2 +49569 2427 Sergio 2 +49570 2427 Leone 2 +49571 2427 's flawed but staggering Once Upon a Time in America . 2 +49572 2427 's flawed but staggering Once Upon a Time in America 2 +49573 2427 's flawed but staggering 2 +49574 2427 flawed but staggering 2 +49575 2427 staggering 2 +49576 2427 Once Upon a Time in America 2 +49577 2427 Upon a Time in America 2 +49578 2427 a Time in America 2 +49579 2427 in America 2 +49580 2428 The beautifully choreographed kitchen ballet is simple but absorbing . 3 +49581 2428 The beautifully choreographed kitchen ballet 4 +49582 2428 beautifully choreographed kitchen ballet 4 +49583 2428 beautifully choreographed 4 +49584 2428 choreographed 3 +49585 2428 kitchen ballet 2 +49586 2428 kitchen 2 +49587 2428 is simple but absorbing . 3 +49588 2428 is simple but absorbing 3 +49589 2428 simple but absorbing 3 +49590 2428 simple but 2 +49591 2429 Cool . 3 +49592 2430 `` Me Without You '' is a probing examination of a female friendship set against a few dynamic decades . 2 +49593 2430 Me Without You '' is a probing examination of a female friendship set against a few dynamic decades . 3 +49594 2430 Me Without You 2 +49595 2430 Without You 2 +49596 2430 '' is a probing examination of a female friendship set against a few dynamic decades . 3 +49597 2430 is a probing examination of a female friendship set against a few dynamic decades . 2 +49598 2430 is a probing examination of a female friendship set against a few dynamic decades 3 +49599 2430 a probing examination of a female friendship set against a few dynamic decades 3 +49600 2430 a probing examination 3 +49601 2430 probing examination 2 +49602 2430 probing 2 +49603 2430 of a female friendship set against a few dynamic decades 2 +49604 2430 a female friendship set against a few dynamic decades 3 +49605 2430 set against a few dynamic decades 2 +49606 2430 against a few dynamic decades 2 +49607 2430 a few dynamic decades 3 +49608 2430 few dynamic decades 2 +49609 2430 dynamic decades 3 +49610 2431 This sort of cute and cloying material is far from Zhang 's forte and it shows . 2 +49611 2431 This sort of cute and cloying material is far from Zhang 's forte and it shows 1 +49612 2431 This sort of cute and cloying material is far from Zhang 's forte and 1 +49613 2431 This sort of cute and cloying material is far from Zhang 's forte 2 +49614 2431 This sort of cute and cloying material 2 +49615 2431 of cute and cloying material 3 +49616 2431 cute and cloying material 2 +49617 2431 cute and cloying 3 +49618 2431 cute and 3 +49619 2431 is far from Zhang 's forte 1 +49620 2431 is far from Zhang 's 2 +49621 2431 far from Zhang 's 2 +49622 2431 from Zhang 's 2 +49623 2431 it shows 2 +49624 2432 The first half bursts with a goofy energy previous Disney films only used for a few minutes here and there . 2 +49625 2432 bursts with a goofy energy previous Disney films only used for a few minutes here and there . 3 +49626 2432 bursts with a goofy energy previous Disney films only used for a few minutes here and there 3 +49627 2432 bursts with a goofy energy 3 +49628 2432 bursts 2 +49629 2432 with a goofy energy 3 +49630 2432 a goofy energy 3 +49631 2432 goofy energy 2 +49632 2432 previous Disney films only used for a few minutes here and there 2 +49633 2432 previous Disney films 3 +49634 2432 Disney films 3 +49635 2432 only used for a few minutes here and there 2 +49636 2432 used for a few minutes here and there 2 +49637 2432 for a few minutes here and there 2 +49638 2432 a few minutes here and there 2 +49639 2432 a few minutes 2 +49640 2432 few minutes 2 +49641 2432 here and there 2 +49642 2432 here and 2 +49643 2433 A peculiar misfire that even Tunney ca n't save . 0 +49644 2433 A peculiar 2 +49645 2433 misfire that even Tunney ca n't save . 1 +49646 2433 misfire that even Tunney ca n't save 0 +49647 2433 misfire 1 +49648 2433 that even Tunney ca n't save 1 +49649 2433 that even 2 +49650 2433 Tunney ca n't save 2 +49651 2433 ca n't save 2 +49652 2434 Coppola has made a film of intoxicating atmosphere and little else . 3 +49653 2434 has made a film of intoxicating atmosphere and little else . 1 +49654 2434 has made a film of intoxicating atmosphere and little else 2 +49655 2434 made a film of intoxicating atmosphere and little else 2 +49656 2434 a film of intoxicating atmosphere and little else 2 +49657 2434 of intoxicating atmosphere and little else 1 +49658 2434 intoxicating atmosphere and little else 2 +49659 2434 intoxicating atmosphere and 4 +49660 2434 intoxicating atmosphere 4 +49661 2435 The film has a childlike quality about it . 2 +49662 2435 has a childlike quality about it . 3 +49663 2435 has a childlike quality about it 2 +49664 2435 a childlike quality about it 2 +49665 2435 a childlike quality 2 +49666 2435 childlike quality 2 +49667 2435 childlike 2 +49668 2436 There 's some good material in their story about a retail clerk wanting more out of life , but the movie too often spins its wheels with familiar situations and repetitive scenes . 1 +49669 2436 There 's some good material in their story about a retail clerk wanting more out of life , but the movie too often spins its wheels with familiar situations and repetitive scenes 1 +49670 2436 There 's some good material in their story about a retail clerk wanting more out of life , but 2 +49671 2436 There 's some good material in their story about a retail clerk wanting more out of life , 3 +49672 2436 There 's some good material in their story about a retail clerk wanting more out of life 3 +49673 2436 's some good material in their story about a retail clerk wanting more out of life 3 +49674 2436 some good material in their story about a retail clerk wanting more out of life 3 +49675 2436 some good material 3 +49676 2436 good material 4 +49677 2436 in their story about a retail clerk wanting more out of life 2 +49678 2436 their story about a retail clerk wanting more out of life 2 +49679 2436 about a retail clerk wanting more out of life 2 +49680 2436 a retail clerk wanting more out of life 2 +49681 2436 a retail clerk 3 +49682 2436 retail clerk 2 +49683 2436 retail 2 +49684 2436 clerk 2 +49685 2436 wanting more out of life 2 +49686 2436 wanting more out 2 +49687 2436 the movie too often spins its wheels with familiar situations and repetitive scenes 1 +49688 2436 too often spins its wheels with familiar situations and repetitive scenes 1 +49689 2436 spins its wheels with familiar situations and repetitive scenes 2 +49690 2436 spins its wheels 2 +49691 2436 spins 2 +49692 2436 its wheels 2 +49693 2436 wheels 2 +49694 2436 with familiar situations and repetitive scenes 1 +49695 2436 familiar situations and repetitive scenes 1 +49696 2436 familiar situations and 2 +49697 2436 familiar situations 2 +49698 2436 repetitive scenes 2 +49699 2437 Broomfield has a rather unique approach to documentary . 3 +49700 2437 has a rather unique approach to documentary . 3 +49701 2437 has a rather unique approach to documentary 3 +49702 2437 a rather unique approach to documentary 3 +49703 2437 a rather unique approach 3 +49704 2437 rather unique approach 3 +49705 2437 rather unique 3 +49706 2437 to documentary 2 +49707 2438 -LRB- There 's -RRB- quite a bit of heart , as you would expect from the directors of The Little Mermaid and Aladdin . 3 +49708 2438 There 's -RRB- quite a bit of heart , as you would expect from the directors of The Little Mermaid and Aladdin . 3 +49709 2438 's -RRB- quite a bit of heart , as you would expect from the directors of The Little Mermaid and Aladdin . 3 +49710 2438 's -RRB- quite a bit of heart , as you would expect from the directors of The Little Mermaid and Aladdin 3 +49711 2438 quite a bit of heart , as you would expect from the directors of The Little Mermaid and Aladdin 3 +49712 2438 quite a bit of heart , 3 +49713 2438 quite a bit of heart 3 +49714 2438 a bit of heart 3 +49715 2438 of heart 3 +49716 2438 as you would expect from the directors of The Little Mermaid and Aladdin 3 +49717 2438 you would expect from the directors of The Little Mermaid and Aladdin 2 +49718 2438 would expect from the directors of The Little Mermaid and Aladdin 2 +49719 2438 expect from the directors of The Little Mermaid and Aladdin 2 +49720 2438 from the directors of The Little Mermaid and Aladdin 2 +49721 2438 the directors of The Little Mermaid and Aladdin 2 +49722 2438 the directors 2 +49723 2438 of The Little Mermaid and Aladdin 3 +49724 2438 The Little Mermaid and Aladdin 2 +49725 2438 The Little Mermaid and 2 +49726 2438 The Little Mermaid 2 +49727 2438 Little Mermaid 3 +49728 2438 Mermaid 2 +49729 2438 Aladdin 2 +49730 2439 Never inspires more than an interested detachment . 1 +49731 2439 inspires more than an interested detachment . 2 +49732 2439 inspires more than an interested detachment 3 +49733 2439 inspires more 3 +49734 2439 than an interested detachment 2 +49735 2439 an interested detachment 3 +49736 2439 interested detachment 2 +49737 2439 detachment 2 +49738 2440 Combines a comically dismal social realism with a farcically bawdy fantasy of redemption and regeneration . 3 +49739 2440 Combines a comically dismal social realism with a farcically bawdy fantasy of redemption and regeneration 2 +49740 2440 a comically dismal social realism with a farcically bawdy fantasy of redemption and regeneration 3 +49741 2440 a comically dismal social realism 2 +49742 2440 comically dismal social realism 1 +49743 2440 comically 3 +49744 2440 dismal social realism 2 +49745 2440 dismal 1 +49746 2440 social realism 2 +49747 2440 with a farcically bawdy fantasy of redemption and regeneration 2 +49748 2440 a farcically bawdy fantasy of redemption and regeneration 2 +49749 2440 a farcically bawdy fantasy 2 +49750 2440 farcically bawdy fantasy 3 +49751 2440 farcically bawdy 1 +49752 2440 farcically 1 +49753 2440 bawdy 1 +49754 2440 of redemption and regeneration 2 +49755 2440 redemption and regeneration 2 +49756 2440 redemption and 2 +49757 2440 regeneration 2 +49758 2441 If `` Lilo & Stitch '' is n't the most edgy piece of Disney animation to hit the silver screen , then this first film to use a watercolor background since `` Dumbo '' certainly ranks as the most original in years . 4 +49759 2441 If `` Lilo & Stitch '' is n't the most edgy piece of Disney animation to hit the silver screen 2 +49760 2441 `` Lilo & Stitch '' is n't the most edgy piece of Disney animation to hit the silver screen 2 +49761 2441 Lilo & Stitch '' is n't the most edgy piece of Disney animation to hit the silver screen 1 +49762 2441 Lilo & Stitch 2 +49763 2441 Lilo & 2 +49764 2441 Stitch 2 +49765 2441 '' is n't the most edgy piece of Disney animation to hit the silver screen 2 +49766 2441 is n't the most edgy piece of Disney animation to hit the silver screen 2 +49767 2441 is n't the most edgy piece of Disney animation 1 +49768 2441 the most edgy piece of Disney animation 3 +49769 2441 the most edgy piece 3 +49770 2441 most edgy piece 3 +49771 2441 most edgy 3 +49772 2441 of Disney animation 2 +49773 2441 Disney animation 2 +49774 2441 to hit the silver screen 2 +49775 2441 hit the silver screen 2 +49776 2441 the silver screen 3 +49777 2441 silver screen 2 +49778 2441 , then this first film to use a watercolor background since `` Dumbo '' certainly ranks as the most original in years . 3 +49779 2441 then this first film to use a watercolor background since `` Dumbo '' certainly ranks as the most original in years . 4 +49780 2441 then this first film to use a watercolor background since `` Dumbo '' 2 +49781 2441 then this first film 2 +49782 2441 this first film 2 +49783 2441 to use a watercolor background since `` Dumbo '' 2 +49784 2441 use a watercolor background since `` Dumbo '' 2 +49785 2441 use a watercolor background 2 +49786 2441 a watercolor background 2 +49787 2441 watercolor background 2 +49788 2441 watercolor 2 +49789 2441 since `` Dumbo '' 2 +49790 2441 since `` Dumbo 2 +49791 2441 since `` 2 +49792 2441 Dumbo 2 +49793 2441 certainly ranks as the most original in years . 3 +49794 2441 ranks as the most original in years . 4 +49795 2441 ranks as the most original in years 4 +49796 2441 as the most original in years 3 +49797 2441 the most original in years 3 +49798 2441 the most original 4 +49799 2441 most original 3 +49800 2442 Indeed , the more outrageous bits achieve a shock-you-into-laughter intensity of almost Dadaist proportions . 3 +49801 2442 , the more outrageous bits achieve a shock-you-into-laughter intensity of almost Dadaist proportions . 4 +49802 2442 the more outrageous bits achieve a shock-you-into-laughter intensity of almost Dadaist proportions . 3 +49803 2442 the more outrageous bits 2 +49804 2442 more outrageous bits 2 +49805 2442 more outrageous 2 +49806 2442 achieve a shock-you-into-laughter intensity of almost Dadaist proportions . 4 +49807 2442 achieve a shock-you-into-laughter intensity of almost Dadaist proportions 3 +49808 2442 a shock-you-into-laughter intensity of almost Dadaist proportions 4 +49809 2442 a shock-you-into-laughter intensity 3 +49810 2442 shock-you-into-laughter intensity 3 +49811 2442 shock-you-into-laughter 3 +49812 2442 of almost Dadaist proportions 2 +49813 2442 almost Dadaist proportions 2 +49814 2442 Dadaist proportions 2 +49815 2442 Dadaist 2 +49816 2443 A grating , emaciated flick . 1 +49817 2443 A grating , emaciated flick 1 +49818 2443 A grating , 1 +49819 2443 A grating 1 +49820 2443 grating 1 +49821 2443 emaciated flick 0 +49822 2443 emaciated 1 +49823 2444 Dense and thoughtful and brimming with ideas that are too complex to be rapidly absorbed . 2 +49824 2444 Dense and thoughtful and brimming with ideas that are too complex to be rapidly absorbed 2 +49825 2444 Dense and thoughtful and brimming 3 +49826 2444 Dense 1 +49827 2444 and thoughtful and brimming 2 +49828 2444 thoughtful and brimming 4 +49829 2444 with ideas that are too complex to be rapidly absorbed 3 +49830 2444 ideas that are too complex to be rapidly absorbed 1 +49831 2444 that are too complex to be rapidly absorbed 3 +49832 2444 are too complex to be rapidly absorbed 1 +49833 2444 too complex to be rapidly absorbed 1 +49834 2444 complex to be rapidly absorbed 2 +49835 2444 to be rapidly absorbed 2 +49836 2444 be rapidly absorbed 3 +49837 2444 rapidly absorbed 2 +49838 2444 absorbed 2 +49839 2445 It ai n't art , by a long shot , but unlike last year 's lame Musketeer , this Dumas adaptation entertains . 3 +49840 2445 It ai n't art , by a long shot , but unlike last year 's lame Musketeer , this Dumas adaptation entertains 2 +49841 2445 It ai n't art , by a long shot , but 2 +49842 2445 It ai n't art , by a long shot , 1 +49843 2445 It ai n't art , by a long shot 1 +49844 2445 ai n't art , by a long shot 1 +49845 2445 ai n't art , 1 +49846 2445 ai n't art 1 +49847 2445 by a long shot 2 +49848 2445 a long shot 1 +49849 2445 long shot 2 +49850 2445 unlike last year 's lame Musketeer , this Dumas adaptation entertains 3 +49851 2445 unlike last year 's lame Musketeer 2 +49852 2445 last year 's lame Musketeer 0 +49853 2445 lame Musketeer 1 +49854 2445 Musketeer 2 +49855 2445 , this Dumas adaptation entertains 3 +49856 2445 this Dumas adaptation entertains 3 +49857 2445 this Dumas adaptation 2 +49858 2445 Dumas adaptation 2 +49859 2445 Dumas 2 +49860 2446 What 's missing in Murder by Numbers is any real psychological grounding for the teens ' deviant behaviour . 0 +49861 2446 What 's missing in Murder by Numbers 1 +49862 2446 's missing in Murder by Numbers 2 +49863 2446 missing in Murder by Numbers 2 +49864 2446 missing in Murder 2 +49865 2446 in Murder 2 +49866 2446 is any real psychological grounding for the teens ' deviant behaviour . 2 +49867 2446 is any real psychological grounding for the teens ' deviant behaviour 2 +49868 2446 any real psychological grounding for the teens ' deviant behaviour 2 +49869 2446 any real psychological grounding 2 +49870 2446 real psychological grounding 3 +49871 2446 psychological grounding 2 +49872 2446 grounding 2 +49873 2446 for the teens ' deviant behaviour 2 +49874 2446 the teens ' deviant behaviour 2 +49875 2446 the teens ' 2 +49876 2446 teens ' 2 +49877 2446 deviant behaviour 1 +49878 2446 deviant 1 +49879 2446 behaviour 2 +49880 2447 The Master of Disguise is awful . 0 +49881 2447 The Master of Disguise 2 +49882 2447 is awful . 0 +49883 2447 is awful 0 +49884 2448 Nelson 's intentions are good , but the end result does no justice to the story itself . 1 +49885 2448 Nelson 's intentions are good , but the end result does no justice to the story itself 1 +49886 2448 Nelson 's intentions are good , but 3 +49887 2448 Nelson 's intentions are good , 2 +49888 2448 Nelson 's intentions are good 3 +49889 2448 Nelson 's intentions 2 +49890 2448 Nelson 's 2 +49891 2448 are good 3 +49892 2448 the end result does no justice to the story itself 1 +49893 2448 the end result 2 +49894 2448 end result 2 +49895 2448 does no justice to the story itself 1 +49896 2448 does no justice 1 +49897 2448 no justice 1 +49898 2448 to the story itself 2 +49899 2448 the story itself 2 +49900 2449 A hypnotic portrait of this sad , compulsive life . 3 +49901 2449 A hypnotic portrait of this sad , compulsive life 2 +49902 2449 A hypnotic portrait 3 +49903 2449 hypnotic portrait 3 +49904 2449 hypnotic 2 +49905 2449 of this sad , compulsive life 1 +49906 2449 this sad , compulsive life 1 +49907 2449 sad , compulsive life 2 +49908 2449 , compulsive life 1 +49909 2449 compulsive life 2 +49910 2449 compulsive 2 +49911 2450 -LRB- The film -RRB- tackles the topic of relationships in such a straightforward , emotionally honest manner that by the end , it 's impossible to ascertain whether the film is , at its core , deeply pessimistic or quietly hopeful . 3 +49912 2450 -LRB- The film -RRB- tackles the topic of relationships in such a straightforward , emotionally honest manner that by the end 3 +49913 2450 The film -RRB- tackles the topic of relationships in such a straightforward , emotionally honest manner that by the end 3 +49914 2450 -RRB- tackles the topic of relationships in such a straightforward , emotionally honest manner that by the end 2 +49915 2450 tackles the topic of relationships in such a straightforward , emotionally honest manner that by the end 4 +49916 2450 tackles 2 +49917 2450 the topic of relationships in such a straightforward , emotionally honest manner that by the end 3 +49918 2450 the topic 2 +49919 2450 topic 3 +49920 2450 of relationships in such a straightforward , emotionally honest manner that by the end 4 +49921 2450 relationships in such a straightforward , emotionally honest manner that by the end 3 +49922 2450 in such a straightforward , emotionally honest manner that by the end 3 +49923 2450 such a straightforward , emotionally honest manner that by the end 4 +49924 2450 a straightforward , emotionally honest manner that by the end 3 +49925 2450 a straightforward , emotionally honest manner 3 +49926 2450 straightforward , emotionally honest manner 3 +49927 2450 straightforward , emotionally honest 4 +49928 2450 , emotionally honest 3 +49929 2450 emotionally honest 3 +49930 2450 that by the end 2 +49931 2450 by the end 2 +49932 2450 , it 's impossible to ascertain whether the film is , at its core , deeply pessimistic or quietly hopeful . 2 +49933 2450 it 's impossible to ascertain whether the film is , at its core , deeply pessimistic or quietly hopeful . 2 +49934 2450 's impossible to ascertain whether the film is , at its core , deeply pessimistic or quietly hopeful . 2 +49935 2450 's impossible to ascertain whether the film is , at its core , deeply pessimistic or quietly hopeful 2 +49936 2450 impossible to ascertain whether the film is , at its core , deeply pessimistic or quietly hopeful 2 +49937 2450 to ascertain whether the film is , at its core , deeply pessimistic or quietly hopeful 2 +49938 2450 ascertain whether the film is , at its core , deeply pessimistic or quietly hopeful 2 +49939 2450 ascertain 2 +49940 2450 whether the film is , at its core , deeply pessimistic or quietly hopeful 2 +49941 2450 the film is , at its core , deeply pessimistic or quietly hopeful 3 +49942 2450 is , at its core , deeply pessimistic or quietly hopeful 2 +49943 2450 is , at its core , 2 +49944 2450 is , at its core 2 +49945 2450 at its core 2 +49946 2450 deeply pessimistic or quietly hopeful 2 +49947 2450 deeply pessimistic or 3 +49948 2450 deeply pessimistic 1 +49949 2450 pessimistic 2 +49950 2450 quietly hopeful 3 +49951 2451 Troubling and powerful . 3 +49952 2451 Troubling and powerful 3 +49953 2451 Troubling and 1 +49954 2451 Troubling 1 +49955 2452 Director Douglas McGrath takes on Nickleby with all the halfhearted zeal of an 8th grade boy delving into required reading . 0 +49956 2452 Director Douglas McGrath 3 +49957 2452 Douglas McGrath 2 +49958 2452 Douglas 2 +49959 2452 McGrath 1 +49960 2452 takes on Nickleby with all the halfhearted zeal of an 8th grade boy delving into required reading . 2 +49961 2452 takes on Nickleby with all the halfhearted zeal of an 8th grade boy delving into required reading 1 +49962 2452 takes on Nickleby with all the halfhearted zeal of an 8th grade boy delving 3 +49963 2452 on Nickleby with all the halfhearted zeal of an 8th grade boy delving 2 +49964 2452 Nickleby with all the halfhearted zeal of an 8th grade boy delving 1 +49965 2452 with all the halfhearted zeal of an 8th grade boy delving 2 +49966 2452 all the halfhearted zeal of an 8th grade boy delving 2 +49967 2452 all the halfhearted zeal 1 +49968 2452 the halfhearted zeal 2 +49969 2452 halfhearted zeal 2 +49970 2452 halfhearted 1 +49971 2452 of an 8th grade boy delving 2 +49972 2452 an 8th grade boy delving 2 +49973 2452 8th grade boy delving 2 +49974 2452 8th 2 +49975 2452 grade boy delving 2 +49976 2452 boy delving 2 +49977 2452 delving 3 +49978 2452 into required reading 2 +49979 2452 required reading 2 +49980 2453 What 's infuriating about Full Frontal is that it 's too close to real life to make sense . 1 +49981 2453 What 's infuriating about Full Frontal 1 +49982 2453 's infuriating about Full Frontal 2 +49983 2453 infuriating about Full Frontal 1 +49984 2453 infuriating 0 +49985 2453 about Full Frontal 3 +49986 2453 is that it 's too close to real life to make sense . 1 +49987 2453 is that it 's too close to real life to make sense 2 +49988 2453 that it 's too close to real life to make sense 1 +49989 2453 it 's too close to real life to make sense 1 +49990 2453 's too close to real life to make sense 1 +49991 2453 's too close to real life 2 +49992 2453 too close to real life 2 +49993 2453 close to real life 3 +49994 2453 to real life 2 +49995 2453 to make sense 2 +49996 2453 make sense 2 +49997 2454 Piccoli gives a superb performance full of deep feeling . 4 +49998 2454 Piccoli 1 +49999 2454 gives a superb performance full of deep feeling . 4 +50000 2454 gives a superb performance full of deep feeling 4 +50001 2454 gives a superb performance 4 +50002 2454 a superb performance 4 +50003 2454 superb performance 4 +50004 2454 full of deep feeling 4 +50005 2454 of deep feeling 3 +50006 2454 deep feeling 3 +50007 2455 -LRB- Stevens is -RRB- so stoked to make an important film about human infidelity and happenstance that he tosses a kitchen sink onto a story already overladen with plot conceits . 1 +50008 2455 Stevens is -RRB- so stoked to make an important film about human infidelity and happenstance that he tosses a kitchen sink onto a story already overladen with plot conceits . 1 +50009 2455 is -RRB- so stoked to make an important film about human infidelity and happenstance that he tosses a kitchen sink onto a story already overladen with plot conceits . 1 +50010 2455 is -RRB- so stoked to make an important film about human infidelity and happenstance that he tosses a kitchen sink onto a story already overladen with plot conceits 1 +50011 2455 so stoked to make an important film about human infidelity and happenstance that he tosses a kitchen sink onto a story already overladen with plot conceits 1 +50012 2455 stoked to make an important film about human infidelity and happenstance that he tosses a kitchen sink onto a story already overladen with plot conceits 1 +50013 2455 stoked 3 +50014 2455 to make an important film about human infidelity and happenstance that he tosses a kitchen sink onto a story already overladen with plot conceits 0 +50015 2455 make an important film about human infidelity and happenstance that he tosses a kitchen sink onto a story already overladen with plot conceits 1 +50016 2455 make an important film about human infidelity and happenstance 2 +50017 2455 make an important film 2 +50018 2455 an important film 3 +50019 2455 important film 3 +50020 2455 about human infidelity and happenstance 2 +50021 2455 human infidelity and happenstance 2 +50022 2455 infidelity and happenstance 2 +50023 2455 infidelity and 1 +50024 2455 happenstance 2 +50025 2455 that he tosses a kitchen sink onto a story already overladen with plot conceits 1 +50026 2455 he tosses a kitchen sink onto a story already overladen with plot conceits 2 +50027 2455 tosses a kitchen sink onto a story already overladen with plot conceits 2 +50028 2455 tosses a kitchen sink 2 +50029 2455 tosses 2 +50030 2455 a kitchen sink 1 +50031 2455 kitchen sink 2 +50032 2455 sink 2 +50033 2455 onto a story already overladen with plot conceits 2 +50034 2455 a story already overladen with plot conceits 1 +50035 2455 already overladen with plot conceits 1 +50036 2455 overladen with plot conceits 1 +50037 2455 overladen 1 +50038 2455 with plot conceits 2 +50039 2455 plot conceits 1 +50040 2455 conceits 2 +50041 2456 Funny and also heartwarming without stooping to gooeyness . 3 +50042 2456 Funny and also heartwarming without stooping to gooeyness 3 +50043 2456 also heartwarming without stooping to gooeyness 3 +50044 2456 heartwarming without stooping to gooeyness 4 +50045 2456 without stooping to gooeyness 2 +50046 2456 stooping to gooeyness 1 +50047 2456 to gooeyness 2 +50048 2456 gooeyness 1 +50049 2457 Most of the dialogue made me want to pack raw dough in my ears . 0 +50050 2457 Most of the dialogue 2 +50051 2457 of the dialogue 2 +50052 2457 made me want to pack raw dough in my ears . 0 +50053 2457 made me want to pack raw dough in my ears 0 +50054 2457 me want to pack raw dough in my ears 0 +50055 2457 want to pack raw dough in my ears 1 +50056 2457 to pack raw dough in my ears 1 +50057 2457 pack raw dough in my ears 0 +50058 2457 pack raw dough 2 +50059 2457 raw dough 2 +50060 2457 dough 2 +50061 2457 in my ears 2 +50062 2457 my ears 2 +50063 2458 A sincere but dramatically conflicted gay coming-of-age tale . 2 +50064 2458 A sincere 3 +50065 2458 but dramatically conflicted gay coming-of-age tale . 2 +50066 2458 but dramatically 2 +50067 2458 conflicted gay coming-of-age tale . 2 +50068 2458 conflicted gay coming-of-age tale 2 +50069 2458 gay coming-of-age tale 3 +50070 2459 A wild ride of a movie that keeps throwing fastballs . 3 +50071 2459 A wild ride of a movie that keeps throwing fastballs 3 +50072 2459 of a movie that keeps throwing fastballs 3 +50073 2459 a movie that keeps throwing fastballs 3 +50074 2459 that keeps throwing fastballs 2 +50075 2459 keeps throwing fastballs 3 +50076 2459 throwing fastballs 2 +50077 2459 fastballs 2 +50078 2460 It 's a bad action movie because there 's no rooting interest and the spectacle is grotesque and boring . 0 +50079 2460 It 's a bad action movie because there 's no rooting interest and the spectacle is grotesque and boring 0 +50080 2460 It 's a bad action movie because there 's no rooting interest and 2 +50081 2460 It 's a bad action movie because there 's no rooting interest 0 +50082 2460 's a bad action movie because there 's no rooting interest 2 +50083 2460 's a bad action movie 1 +50084 2460 a bad action movie 2 +50085 2460 bad action movie 0 +50086 2460 action movie 2 +50087 2460 because there 's no rooting interest 1 +50088 2460 there 's no rooting interest 1 +50089 2460 's no rooting interest 1 +50090 2460 no rooting interest 1 +50091 2460 rooting interest 2 +50092 2460 the spectacle is grotesque and boring 2 +50093 2460 the spectacle 3 +50094 2460 is grotesque and boring 0 +50095 2460 grotesque and boring 1 +50096 2460 grotesque and 1 +50097 2460 grotesque 0 +50098 2461 A very slow , uneventful ride around a pretty tattered old carousel . 1 +50099 2461 A very slow , uneventful 1 +50100 2461 very slow , uneventful 1 +50101 2461 slow , uneventful 1 +50102 2461 , uneventful 0 +50103 2461 ride around a pretty tattered old carousel . 1 +50104 2461 ride around a pretty tattered old carousel 1 +50105 2461 ride around 2 +50106 2461 a pretty tattered old carousel 2 +50107 2461 pretty tattered old carousel 2 +50108 2461 pretty tattered 1 +50109 2461 tattered 1 +50110 2461 old carousel 2 +50111 2461 carousel 2 +50112 2462 Although Olivier Assayas ' elegantly appointed period drama seems , at times , padded with incident in the way of a too-conscientious adaptation ... its three-hour running time plays closer to two . 3 +50113 2462 Although Olivier Assayas ' elegantly appointed period drama seems , at times , padded with incident in the way of a too-conscientious adaptation 1 +50114 2462 Olivier Assayas ' elegantly appointed period drama seems , at times , padded with incident in the way of a too-conscientious adaptation 1 +50115 2462 Olivier Assayas ' elegantly appointed period drama 3 +50116 2462 Olivier Assayas ' 2 +50117 2462 elegantly appointed period drama 3 +50118 2462 elegantly appointed 3 +50119 2462 period drama 2 +50120 2462 seems , at times , padded with incident in the way of a too-conscientious adaptation 2 +50121 2462 seems , at times , 2 +50122 2462 seems , at times 2 +50123 2462 seems , 2 +50124 2462 padded with incident in the way of a too-conscientious adaptation 1 +50125 2462 padded with incident 2 +50126 2462 in the way of a too-conscientious adaptation 1 +50127 2462 the way of a too-conscientious adaptation 2 +50128 2462 of a too-conscientious adaptation 2 +50129 2462 a too-conscientious adaptation 1 +50130 2462 too-conscientious adaptation 1 +50131 2462 too-conscientious 1 +50132 2462 ... its three-hour running time plays closer to two . 1 +50133 2462 its three-hour running time plays closer to two . 1 +50134 2462 its three-hour running time 2 +50135 2462 three-hour running time 2 +50136 2462 plays closer to two . 3 +50137 2462 plays closer to two 2 +50138 2462 closer to two 2 +50139 2462 to two 2 +50140 2463 Like life on the island , the movie grows boring despite the scenery . 0 +50141 2463 Like life on the island 1 +50142 2463 life on the island 2 +50143 2463 on the island 2 +50144 2463 the island 2 +50145 2463 island 2 +50146 2463 , the movie grows boring despite the scenery . 1 +50147 2463 the movie grows boring despite the scenery . 1 +50148 2463 grows boring despite the scenery . 1 +50149 2463 grows boring despite the scenery 1 +50150 2463 boring despite the scenery 1 +50151 2463 despite the scenery 2 +50152 2463 the scenery 2 +50153 2464 Jones has delivered a solidly entertaining and moving family drama . 4 +50154 2464 has delivered a solidly entertaining and moving family drama . 3 +50155 2464 has delivered a solidly entertaining and moving family drama 4 +50156 2464 delivered a solidly entertaining and moving family drama 4 +50157 2464 a solidly entertaining and moving family drama 4 +50158 2464 solidly entertaining and moving family drama 4 +50159 2464 solidly entertaining and moving 4 +50160 2464 entertaining and moving 4 +50161 2464 family drama 3 +50162 2465 An intriguing near-miss . 2 +50163 2465 intriguing near-miss . 2 +50164 2465 near-miss . 1 +50165 2465 near-miss 2 +50166 2466 Scooby-Doo does n't know if it wants to be a retro-refitting exercise in campy recall for older fans or a silly , Nickelodeon-esque kiddie flick . 1 +50167 2466 Scooby-Doo 2 +50168 2466 does n't know if it wants to be a retro-refitting exercise in campy recall for older fans or a silly , Nickelodeon-esque kiddie flick . 1 +50169 2466 does n't know if it wants to be a retro-refitting exercise in campy recall for older fans or a silly , Nickelodeon-esque kiddie flick 2 +50170 2466 know if it wants to be a retro-refitting exercise in campy recall for older fans or a silly , Nickelodeon-esque kiddie flick 1 +50171 2466 if it wants to be a retro-refitting exercise in campy recall for older fans or a silly , Nickelodeon-esque kiddie flick 1 +50172 2466 it wants to be a retro-refitting exercise in campy recall for older fans or a silly , Nickelodeon-esque kiddie flick 2 +50173 2466 wants to be a retro-refitting exercise in campy recall for older fans or a silly , Nickelodeon-esque kiddie flick 1 +50174 2466 to be a retro-refitting exercise in campy recall for older fans or a silly , Nickelodeon-esque kiddie flick 2 +50175 2466 be a retro-refitting exercise in campy recall for older fans or a silly , Nickelodeon-esque kiddie flick 1 +50176 2466 a retro-refitting exercise in campy recall for older fans or a silly , Nickelodeon-esque kiddie flick 2 +50177 2466 a retro-refitting exercise 2 +50178 2466 retro-refitting exercise 1 +50179 2466 retro-refitting 2 +50180 2466 in campy recall for older fans or a silly , Nickelodeon-esque kiddie flick 2 +50181 2466 campy recall for older fans or a silly , Nickelodeon-esque kiddie flick 1 +50182 2466 campy recall 2 +50183 2466 campy 2 +50184 2466 recall 2 +50185 2466 for older fans or a silly , Nickelodeon-esque kiddie flick 1 +50186 2466 older fans or a silly , Nickelodeon-esque kiddie flick 2 +50187 2466 older fans or 2 +50188 2466 older fans 2 +50189 2466 a silly , Nickelodeon-esque kiddie flick 1 +50190 2466 silly , Nickelodeon-esque kiddie flick 1 +50191 2466 , Nickelodeon-esque kiddie flick 3 +50192 2466 Nickelodeon-esque kiddie flick 2 +50193 2466 Nickelodeon-esque 2 +50194 2466 kiddie flick 2 +50195 2467 ... del Toro maintains a dark mood that makes the film seem like something to endure instead of enjoy . 1 +50196 2467 del Toro maintains a dark mood that makes the film seem like something to endure instead of enjoy . 1 +50197 2467 del Toro 2 +50198 2467 Toro 2 +50199 2467 maintains a dark mood that makes the film seem like something to endure instead of enjoy . 1 +50200 2467 maintains a dark mood that makes the film seem like something to endure instead of enjoy 2 +50201 2467 a dark mood that makes the film seem like something to endure instead of enjoy 1 +50202 2467 a dark mood 2 +50203 2467 dark mood 2 +50204 2467 that makes the film seem like something to endure instead of enjoy 1 +50205 2467 makes the film seem like something to endure instead of enjoy 1 +50206 2467 the film seem like something to endure instead of enjoy 1 +50207 2467 seem like something to endure instead of enjoy 1 +50208 2467 seem like something 2 +50209 2467 like something 2 +50210 2467 to endure instead of enjoy 1 +50211 2467 endure instead of enjoy 1 +50212 2467 endure instead of 1 +50213 2467 instead of 2 +50214 2468 Sometimes shorter is better . 2 +50215 2468 shorter is better . 2 +50216 2468 is better . 3 +50217 2468 is better 3 +50218 2469 Peter Jackson and company once again dazzle and delight us , fulfilling practically every expectation either a longtime Tolkien fan or a movie-going neophyte could want . 4 +50219 2469 Peter Jackson and company once again dazzle and delight us , fulfilling practically every expectation either a longtime Tolkien fan or a movie-going neophyte 4 +50220 2469 Peter Jackson and company once again dazzle and delight us , 4 +50221 2469 Peter Jackson and company once again dazzle and delight us 4 +50222 2469 Peter Jackson and 2 +50223 2469 Peter Jackson 2 +50224 2469 company once again dazzle and delight us 4 +50225 2469 once again dazzle and delight us 4 +50226 2469 again dazzle and delight us 4 +50227 2469 dazzle and delight us 3 +50228 2469 dazzle and delight 2 +50229 2469 dazzle and 2 +50230 2469 dazzle 3 +50231 2469 fulfilling practically every expectation either a longtime Tolkien fan or a movie-going neophyte 4 +50232 2469 fulfilling 3 +50233 2469 practically every expectation either a longtime Tolkien fan or a movie-going neophyte 3 +50234 2469 practically every expectation 2 +50235 2469 every expectation 2 +50236 2469 either a longtime Tolkien fan or a movie-going neophyte 2 +50237 2469 a longtime Tolkien fan or a movie-going neophyte 2 +50238 2469 a longtime Tolkien fan or 2 +50239 2469 a longtime Tolkien fan 3 +50240 2469 longtime Tolkien fan 2 +50241 2469 longtime 2 +50242 2469 Tolkien fan 2 +50243 2469 Tolkien 2 +50244 2469 a movie-going neophyte 2 +50245 2469 movie-going neophyte 2 +50246 2469 movie-going 2 +50247 2469 neophyte 2 +50248 2469 could want . 2 +50249 2469 could want 2 +50250 2470 David Spade as Citizen Kane ? 1 +50251 2470 David Spade as Citizen Kane 2 +50252 2470 David Spade 2 +50253 2470 Spade 2 +50254 2470 as Citizen Kane 2 +50255 2470 Citizen Kane 2 +50256 2470 Citizen 2 +50257 2471 It 's a great American adventure and a wonderful film to bring to IMAX . 4 +50258 2471 's a great American adventure and a wonderful film to bring to IMAX . 4 +50259 2471 's a great American adventure and a wonderful film to bring to IMAX 4 +50260 2471 a great American adventure and a wonderful film to bring to IMAX 4 +50261 2471 a great American adventure and 3 +50262 2471 a great American adventure 4 +50263 2471 great American adventure 3 +50264 2471 American adventure 2 +50265 2471 a wonderful film to bring to IMAX 4 +50266 2471 wonderful film to bring to IMAX 4 +50267 2471 film to bring to IMAX 2 +50268 2471 to bring to IMAX 2 +50269 2471 bring to IMAX 3 +50270 2471 to IMAX 2 +50271 2472 A glorious mess . 2 +50272 2472 glorious mess . 2 +50273 2472 mess . 1 +50274 2473 Never having seen the first two films in the series , I ca n't compare Friday After Next to them , but nothing would change the fact that what we have here is a load of clams left in the broiling sun for a good three days . 0 +50275 2473 Never having seen the first two films in the series , I ca n't compare Friday After Next to them , but nothing would change the fact that what we have here is a load of clams left in the broiling sun for a good three days 0 +50276 2473 Never having seen the first two films in the series , I ca n't compare Friday After Next to them , but 2 +50277 2473 Never having seen the first two films in the series , I ca n't compare Friday After Next to them , 2 +50278 2473 Never having seen the first two films in the series , I ca n't compare Friday After Next to them 2 +50279 2473 Never having seen the first two films in the series 2 +50280 2473 having seen the first two films in the series 2 +50281 2473 seen the first two films in the series 2 +50282 2473 the first two films in the series 2 +50283 2473 the first two films 2 +50284 2473 first two films 2 +50285 2473 two films 2 +50286 2473 , I ca n't compare Friday After Next to them 1 +50287 2473 I ca n't compare Friday After Next to them 2 +50288 2473 ca n't compare Friday After Next to them 3 +50289 2473 compare Friday After Next to them 2 +50290 2473 Friday After Next to them 2 +50291 2473 Friday After Next 3 +50292 2473 nothing would change the fact that what we have here is a load of clams left in the broiling sun for a good three days 2 +50293 2473 would change the fact that what we have here is a load of clams left in the broiling sun for a good three days 1 +50294 2473 change the fact that what we have here is a load of clams left in the broiling sun for a good three days 1 +50295 2473 change the fact 2 +50296 2473 that what we have here is a load of clams left in the broiling sun for a good three days 0 +50297 2473 what we have here is a load of clams left in the broiling sun for a good three days 0 +50298 2473 what we have here 2 +50299 2473 we have here 2 +50300 2473 have here 2 +50301 2473 is a load of clams left in the broiling sun for a good three days 0 +50302 2473 a load of clams left in the broiling sun for a good three days 1 +50303 2473 of clams left in the broiling sun for a good three days 1 +50304 2473 clams left in the broiling sun for a good three days 2 +50305 2473 clams 2 +50306 2473 left in the broiling sun for a good three days 1 +50307 2473 in the broiling sun for a good three days 1 +50308 2473 the broiling sun for a good three days 1 +50309 2473 the broiling sun 1 +50310 2473 broiling sun 2 +50311 2473 broiling 2 +50312 2473 sun 2 +50313 2473 for a good three days 2 +50314 2473 a good three days 3 +50315 2473 good three days 2 +50316 2474 ... standard guns versus martial arts cliche with little new added . 3 +50317 2474 standard guns versus martial arts cliche with little new added . 1 +50318 2474 standard guns versus martial arts 2 +50319 2474 standard guns 2 +50320 2474 versus martial arts 2 +50321 2474 martial arts 3 +50322 2474 cliche with little new added . 1 +50323 2474 cliche with little new added 2 +50324 2474 with little new added 2 +50325 2474 little new added 2 +50326 2475 Pratfalls aside , Barbershop gets its greatest play from the timeless spectacle of people really talking to each other . 3 +50327 2475 Pratfalls aside 2 +50328 2475 , Barbershop gets its greatest play from the timeless spectacle of people really talking to each other . 3 +50329 2475 Barbershop gets its greatest play from the timeless spectacle of people really talking to each other . 3 +50330 2475 gets its greatest play from the timeless spectacle of people really talking to each other . 3 +50331 2475 gets its greatest play from the timeless spectacle of people really talking to each other 3 +50332 2475 gets its greatest play from the timeless spectacle of people 3 +50333 2475 gets its greatest play 3 +50334 2475 its greatest play 3 +50335 2475 greatest play 4 +50336 2475 from the timeless spectacle of people 2 +50337 2475 the timeless spectacle of people 3 +50338 2475 the timeless spectacle 3 +50339 2475 timeless spectacle 4 +50340 2475 really talking to each other 2 +50341 2475 talking to each other 2 +50342 2475 to each other 2 +50343 2476 tale will be all too familiar for anyone who 's seen George Roy Hill 's 1973 film , `` The Sting . '' 1 +50344 2476 will be all too familiar for anyone who 's seen George Roy Hill 's 1973 film , `` The Sting . '' 2 +50345 2476 will be all too familiar for anyone who 's seen George Roy Hill 's 1973 film , `` The Sting . 1 +50346 2476 will be all too familiar for anyone who 's seen George Roy Hill 's 1973 film , `` The Sting 1 +50347 2476 be all too familiar for anyone who 's seen George Roy Hill 's 1973 film , `` The Sting 2 +50348 2476 be all too familiar 3 +50349 2476 all too familiar 1 +50350 2476 too familiar 2 +50351 2476 for anyone who 's seen George Roy Hill 's 1973 film , `` The Sting 2 +50352 2476 anyone who 's seen George Roy Hill 's 1973 film , `` The Sting 2 +50353 2476 who 's seen George Roy Hill 's 1973 film , `` The Sting 3 +50354 2476 's seen George Roy Hill 's 1973 film , `` The Sting 2 +50355 2476 seen George Roy Hill 's 1973 film , `` The Sting 2 +50356 2476 seen George Roy Hill 's 1973 film , 2 +50357 2476 seen George Roy Hill 's 1973 film 2 +50358 2476 George Roy Hill 's 1973 film 2 +50359 2476 George Roy Hill 's 2 +50360 2476 Roy Hill 's 2 +50361 2476 Roy 2 +50362 2476 Hill 's 2 +50363 2476 1973 film 2 +50364 2476 1973 2 +50365 2476 `` The Sting 2 +50366 2476 The Sting 2 +50367 2477 Showtime is n't particularly assaultive , but it can still make you feel that you never want to see another car chase , explosion or gunfight again . 1 +50368 2477 Showtime is n't particularly assaultive , but it can still make you feel that you never want to see another car chase , explosion or gunfight again 1 +50369 2477 Showtime is n't particularly assaultive , but 2 +50370 2477 Showtime is n't particularly assaultive , 2 +50371 2477 Showtime is n't particularly assaultive 2 +50372 2477 is n't particularly assaultive 1 +50373 2477 particularly assaultive 2 +50374 2477 assaultive 1 +50375 2477 it can still make you feel that you never want to see another car chase , explosion or gunfight again 1 +50376 2477 can still make you feel that you never want to see another car chase , explosion or gunfight again 1 +50377 2477 make you feel that you never want to see another car chase , explosion or gunfight again 0 +50378 2477 you feel that you never want to see another car chase , explosion or gunfight again 0 +50379 2477 feel that you never want to see another car chase , explosion or gunfight again 1 +50380 2477 that you never want to see another car chase , explosion or gunfight again 1 +50381 2477 you never want to see another car chase , explosion or gunfight again 0 +50382 2477 never want to see another car chase , explosion or gunfight again 0 +50383 2477 want to see another car chase , explosion or gunfight again 1 +50384 2477 to see another car chase , explosion or gunfight again 1 +50385 2477 see another car chase , explosion or gunfight again 2 +50386 2477 see another car chase , explosion or gunfight 2 +50387 2477 another car chase , explosion or gunfight 2 +50388 2477 car chase , explosion or gunfight 2 +50389 2477 chase , explosion or gunfight 2 +50390 2477 , explosion or gunfight 2 +50391 2477 explosion or gunfight 2 +50392 2477 explosion or 2 +50393 2477 explosion 2 +50394 2477 gunfight 1 +50395 2478 A savage John Waters-like humor that dances on the edge of tastelessness without ever quite falling over . 2 +50396 2478 A savage John Waters-like humor that dances on the edge of tastelessness without ever quite falling over 2 +50397 2478 A savage John Waters-like humor that dances on the edge of tastelessness 1 +50398 2478 A savage John Waters-like humor that dances on the edge 3 +50399 2478 A savage John Waters-like humor 2 +50400 2478 savage John Waters-like humor 2 +50401 2478 John Waters-like humor 4 +50402 2478 Waters-like humor 2 +50403 2478 Waters-like 2 +50404 2478 that dances on the edge 2 +50405 2478 dances on the edge 3 +50406 2478 dances 2 +50407 2478 on the edge 2 +50408 2478 of tastelessness 2 +50409 2478 tastelessness 1 +50410 2478 without ever quite falling over 2 +50411 2478 ever quite falling over 2 +50412 2478 ever quite 2 +50413 2478 falling over 2 +50414 2478 falling 3 +50415 2479 Victor Rosa is Leguizamo 's best movie work so far , a subtle and richly internalized performance . 4 +50416 2479 Victor Rosa 2 +50417 2479 Victor 2 +50418 2479 Rosa 2 +50419 2479 is Leguizamo 's best movie work so far , a subtle and richly internalized performance . 4 +50420 2479 is Leguizamo 's best movie work so far , a subtle and richly internalized performance 3 +50421 2479 Leguizamo 's best movie work so far , a subtle and richly internalized performance 4 +50422 2479 Leguizamo 's best movie work so far , 4 +50423 2479 Leguizamo 's best movie work so far 4 +50424 2479 Leguizamo 's best movie work 4 +50425 2479 Leguizamo 's 2 +50426 2479 best movie work 4 +50427 2479 movie work 2 +50428 2479 a subtle and richly internalized performance 4 +50429 2479 subtle and richly internalized performance 4 +50430 2479 subtle and richly 4 +50431 2479 subtle and 3 +50432 2479 internalized performance 2 +50433 2479 internalized 2 +50434 2480 But it 's also disappointing to a certain degree . 1 +50435 2480 it 's also disappointing to a certain degree . 1 +50436 2480 's also disappointing to a certain degree . 1 +50437 2480 's also disappointing to a certain degree 1 +50438 2480 disappointing to a certain degree 1 +50439 2480 to a certain degree 2 +50440 2480 a certain degree 2 +50441 2480 certain degree 2 +50442 2481 Pete 's screenplay manages to find that real natural , even-flowing tone that few movies are able to accomplish . 4 +50443 2481 Pete 's screenplay 2 +50444 2481 Pete 's 2 +50445 2481 Pete 2 +50446 2481 manages to find that real natural , even-flowing tone that few movies are able to accomplish . 4 +50447 2481 manages to find that real natural , even-flowing tone that few movies are able to accomplish 3 +50448 2481 to find that real natural , even-flowing tone that few movies are able to accomplish 4 +50449 2481 find that real natural , even-flowing tone that few movies are able to accomplish 3 +50450 2481 find that real natural , even-flowing tone 3 +50451 2481 that real natural , even-flowing tone 3 +50452 2481 real natural , even-flowing tone 3 +50453 2481 natural , even-flowing tone 3 +50454 2481 , even-flowing tone 3 +50455 2481 even-flowing tone 3 +50456 2481 even-flowing 2 +50457 2481 that few movies are able to accomplish 4 +50458 2481 few movies are able to accomplish 3 +50459 2481 few movies 2 +50460 2481 are able to accomplish 3 +50461 2481 able to accomplish 2 +50462 2481 to accomplish 3 +50463 2481 accomplish 2 +50464 2482 This is a third-person story now , told by Hollywood , and much more ordinary for it . 1 +50465 2482 is a third-person story now , told by Hollywood , and much more ordinary for it . 2 +50466 2482 is a third-person story now , told by Hollywood , and much more ordinary for it 2 +50467 2482 a third-person story now , told by Hollywood , and much more ordinary for it 1 +50468 2482 a third-person story 2 +50469 2482 third-person story 2 +50470 2482 third-person 2 +50471 2482 now , told by Hollywood , and much more ordinary for it 1 +50472 2482 now , told by Hollywood 2 +50473 2482 now , 2 +50474 2482 told by Hollywood 2 +50475 2482 by Hollywood 2 +50476 2482 , and much more ordinary for it 2 +50477 2482 much more ordinary for it 2 +50478 2482 much more ordinary 3 +50479 2482 more ordinary 2 +50480 2483 Fails to convince the audience that these brats will ever be anything more than losers . 1 +50481 2483 Fails to convince the audience that these brats will ever be anything more than losers 0 +50482 2483 to convince the audience that these brats will ever be anything more than losers 0 +50483 2483 convince the audience that these brats will ever be anything more than losers 1 +50484 2483 convince the audience 2 +50485 2483 that these brats will ever be anything more than losers 1 +50486 2483 these brats will ever be anything more than losers 1 +50487 2483 these brats 2 +50488 2483 brats 2 +50489 2483 will ever be anything more than losers 1 +50490 2483 be anything more than losers 2 +50491 2483 anything more than losers 2 +50492 2483 anything more 2 +50493 2483 than losers 1 +50494 2484 It 's a smart , funny look at an arcane area of popular culture , and if it is n't entirely persuasive , it does give exposure to some talented performers . 3 +50495 2484 It 's a smart , funny look at an arcane area of popular culture , and if it is n't entirely persuasive , it does give exposure to some talented performers 3 +50496 2484 It 's a smart , funny look at an arcane area of popular culture , and 4 +50497 2484 It 's a smart , funny look at an arcane area of popular culture , 3 +50498 2484 It 's a smart , funny look at an arcane area of popular culture 4 +50499 2484 's a smart , funny look at an arcane area of popular culture 3 +50500 2484 a smart , funny look at an arcane area of popular culture 4 +50501 2484 a smart , funny look 3 +50502 2484 smart , funny look 3 +50503 2484 , funny look 2 +50504 2484 funny look 3 +50505 2484 at an arcane area of popular culture 2 +50506 2484 an arcane area of popular culture 3 +50507 2484 an arcane area 2 +50508 2484 arcane area 1 +50509 2484 arcane 2 +50510 2484 area 2 +50511 2484 of popular culture 2 +50512 2484 popular culture 2 +50513 2484 if it is n't entirely persuasive , it does give exposure to some talented performers 3 +50514 2484 if it is n't entirely persuasive 2 +50515 2484 it is n't entirely persuasive 1 +50516 2484 is n't entirely persuasive 1 +50517 2484 entirely persuasive 3 +50518 2484 persuasive 3 +50519 2484 , it does give exposure to some talented performers 3 +50520 2484 it does give exposure to some talented performers 3 +50521 2484 does give exposure to some talented performers 2 +50522 2484 give exposure to some talented performers 3 +50523 2484 give exposure 2 +50524 2484 exposure 2 +50525 2484 to some talented performers 3 +50526 2484 some talented performers 3 +50527 2484 talented performers 3 +50528 2485 Does what should seem impossible : it makes serial killer Jeffrey Dahmer boring . 2 +50529 2485 Does what should seem impossible : it makes serial killer Jeffrey Dahmer boring 1 +50530 2485 Does what should seem impossible : 3 +50531 2485 Does what should seem impossible 3 +50532 2485 what should seem impossible 2 +50533 2485 should seem impossible 2 +50534 2485 seem impossible 2 +50535 2485 it makes serial killer Jeffrey Dahmer boring 1 +50536 2485 makes serial killer Jeffrey Dahmer boring 1 +50537 2485 serial killer Jeffrey Dahmer boring 1 +50538 2485 serial killer Jeffrey Dahmer 2 +50539 2485 killer Jeffrey Dahmer 2 +50540 2485 Jeffrey Dahmer 2 +50541 2486 `` One look at a girl in tight pants and big tits and you turn stupid ? '' 1 +50542 2486 One look at a girl in tight pants and big tits and you turn stupid ? '' 2 +50543 2486 One look at a girl in tight pants and big tits and you turn stupid ? 1 +50544 2486 One look at a girl in tight pants and big tits and you turn stupid 1 +50545 2486 One look at a girl in tight pants and big tits and 2 +50546 2486 One look at a girl in tight pants and big tits 2 +50547 2486 look at a girl in tight pants and big tits 2 +50548 2486 at a girl in tight pants and big tits 2 +50549 2486 a girl in tight pants and big tits 2 +50550 2486 in tight pants and big tits 1 +50551 2486 tight pants and big tits 2 +50552 2486 tight pants and 2 +50553 2486 tight pants 2 +50554 2486 tight 3 +50555 2486 big tits 2 +50556 2486 tits 3 +50557 2486 you turn stupid 1 +50558 2486 turn stupid 1 +50559 2487 This Chicago has hugely imaginative and successful casting to its great credit , as well as one terrific score and attitude to spare . 4 +50560 2487 This Chicago 2 +50561 2487 has hugely imaginative and successful casting to its great credit , as well as one terrific score and attitude to spare . 4 +50562 2487 has hugely imaginative and successful casting to its great credit , as well as one terrific score and attitude to spare 4 +50563 2487 hugely imaginative and successful casting to its great credit , as well as one terrific score and attitude to spare 4 +50564 2487 hugely imaginative and successful casting to its great credit , as well as 3 +50565 2487 hugely imaginative and successful casting to its great credit , 4 +50566 2487 hugely imaginative and successful casting to its great credit 4 +50567 2487 hugely imaginative and successful casting 4 +50568 2487 hugely imaginative and successful 4 +50569 2487 imaginative and successful 4 +50570 2487 imaginative and 3 +50571 2487 to its great credit 3 +50572 2487 its great credit 4 +50573 2487 great credit 3 +50574 2487 one terrific score and attitude to spare 3 +50575 2487 one terrific score and 3 +50576 2487 one terrific score 4 +50577 2487 terrific score 3 +50578 2487 attitude to spare 2 +50579 2488 Pacino and Williams seem to keep upping the ante on each other , just as their characters do in the film . 4 +50580 2488 Pacino and Williams 2 +50581 2488 Pacino and 2 +50582 2488 Pacino 2 +50583 2488 seem to keep upping the ante on each other , just as their characters do in the film . 3 +50584 2488 seem to keep upping the ante on each other , just as their characters do in the film 3 +50585 2488 to keep upping the ante on each other , just as their characters do in the film 3 +50586 2488 keep upping the ante on each other , just as their characters do in the film 2 +50587 2488 keep upping the ante on each other , 3 +50588 2488 keep upping the ante on each other 2 +50589 2488 upping the ante on each other 2 +50590 2488 upping the ante 3 +50591 2488 upping 2 +50592 2488 the ante 2 +50593 2488 ante 2 +50594 2488 just as their characters do in the film 2 +50595 2488 as their characters do in the film 2 +50596 2488 their characters do in the film 2 +50597 2488 do in the film 2 +50598 2489 A fiercely clever and subtle film , capturing the precarious balance between the extravagant confidence of the exiled aristocracy and the cruel earnestness of the victorious revolutionaries . 4 +50599 2489 A fiercely clever and subtle film , capturing the precarious balance between the extravagant confidence of the exiled aristocracy and the cruel earnestness of the victorious revolutionaries 3 +50600 2489 A fiercely clever and subtle film , 4 +50601 2489 A fiercely clever and subtle film 4 +50602 2489 fiercely clever and subtle film 4 +50603 2489 fiercely clever and subtle 4 +50604 2489 fiercely 2 +50605 2489 clever and subtle 4 +50606 2489 capturing the precarious balance between the extravagant confidence of the exiled aristocracy and the cruel earnestness of the victorious revolutionaries 3 +50607 2489 the precarious balance between the extravagant confidence of the exiled aristocracy and the cruel earnestness of the victorious revolutionaries 3 +50608 2489 the precarious balance 2 +50609 2489 precarious balance 2 +50610 2489 precarious 1 +50611 2489 between the extravagant confidence of the exiled aristocracy and the cruel earnestness of the victorious revolutionaries 2 +50612 2489 the extravagant confidence of the exiled aristocracy and the cruel earnestness of the victorious revolutionaries 2 +50613 2489 the extravagant confidence of the exiled aristocracy and 2 +50614 2489 the extravagant confidence of the exiled aristocracy 3 +50615 2489 the extravagant confidence 3 +50616 2489 extravagant confidence 3 +50617 2489 of the exiled aristocracy 2 +50618 2489 the exiled aristocracy 2 +50619 2489 exiled aristocracy 2 +50620 2489 exiled 2 +50621 2489 aristocracy 2 +50622 2489 the cruel earnestness of the victorious revolutionaries 3 +50623 2489 the cruel earnestness 2 +50624 2489 cruel earnestness 2 +50625 2489 of the victorious revolutionaries 3 +50626 2489 the victorious revolutionaries 2 +50627 2489 victorious revolutionaries 3 +50628 2489 victorious 3 +50629 2489 revolutionaries 2 +50630 2490 The best didacticism is one carried by a strong sense of humanism , and Bertrand Tavernier 's oft-brilliant Safe Conduct -LRB- `` Laissez-passer '' -RRB- wears its heart on its sleeve . 4 +50631 2490 The best didacticism is one carried by a strong sense of humanism , and Bertrand Tavernier 's oft-brilliant Safe Conduct -LRB- `` Laissez-passer '' -RRB- wears its heart on its sleeve 4 +50632 2490 The best didacticism is one carried by a strong sense of humanism , and 2 +50633 2490 The best didacticism is one carried by a strong sense of humanism , 3 +50634 2490 The best didacticism is one carried by a strong sense of humanism 2 +50635 2490 The best didacticism 3 +50636 2490 best didacticism 3 +50637 2490 didacticism 2 +50638 2490 is one carried by a strong sense of humanism 3 +50639 2490 one carried by a strong sense of humanism 3 +50640 2490 carried by a strong sense of humanism 3 +50641 2490 by a strong sense of humanism 2 +50642 2490 a strong sense of humanism 3 +50643 2490 of humanism 2 +50644 2490 Bertrand Tavernier 's oft-brilliant Safe Conduct -LRB- `` Laissez-passer '' -RRB- wears its heart on its sleeve 3 +50645 2490 Bertrand Tavernier 's oft-brilliant Safe Conduct -LRB- `` Laissez-passer '' -RRB- 3 +50646 2490 Bertrand Tavernier 's 3 +50647 2490 Bertrand 2 +50648 2490 oft-brilliant Safe Conduct -LRB- `` Laissez-passer '' -RRB- 3 +50649 2490 oft-brilliant 3 +50650 2490 Safe Conduct -LRB- `` Laissez-passer '' -RRB- 2 +50651 2490 Conduct -LRB- `` Laissez-passer '' -RRB- 2 +50652 2490 -LRB- `` Laissez-passer '' -RRB- 1 +50653 2490 `` Laissez-passer '' -RRB- 2 +50654 2490 Laissez-passer '' -RRB- 2 +50655 2490 Laissez-passer '' 2 +50656 2490 Laissez-passer 2 +50657 2490 wears its heart on its sleeve 2 +50658 2491 The movie is a little tired ; maybe the original inspiration has run its course . 2 +50659 2491 The movie is a little tired ; maybe the original inspiration has run its course 1 +50660 2491 The movie is a little tired ; 1 +50661 2491 The movie is a little tired 1 +50662 2491 is a little tired 1 +50663 2491 a little tired 2 +50664 2491 maybe the original inspiration has run its course 1 +50665 2491 maybe the original inspiration 2 +50666 2491 the original inspiration 2 +50667 2491 original inspiration 3 +50668 2491 has run its course 0 +50669 2491 run its course 1 +50670 2491 its course 2 +50671 2492 Schrader examines Crane 's decline with unblinking candor . 3 +50672 2492 examines Crane 's decline with unblinking candor . 3 +50673 2492 examines Crane 's decline with unblinking candor 2 +50674 2492 Crane 's decline with unblinking candor 3 +50675 2492 Crane 's decline 1 +50676 2492 decline 2 +50677 2492 with unblinking candor 3 +50678 2492 unblinking candor 2 +50679 2492 unblinking 2 +50680 2492 candor 2 +50681 2493 Like Edward Norton in American History X , Ryan Gosling -LRB- Murder By Numbers -RRB- delivers a magnetic performance . 4 +50682 2493 Like Edward Norton in American History X 2 +50683 2493 Edward Norton in American History X 2 +50684 2493 Edward Norton 2 +50685 2493 Norton 2 +50686 2493 in American History X 2 +50687 2493 American History X 2 +50688 2493 History X 2 +50689 2493 , Ryan Gosling -LRB- Murder By Numbers -RRB- delivers a magnetic performance . 4 +50690 2493 Ryan Gosling -LRB- Murder By Numbers -RRB- delivers a magnetic performance . 4 +50691 2493 Ryan Gosling -LRB- Murder By Numbers -RRB- 2 +50692 2493 Ryan Gosling 2 +50693 2493 Gosling 2 +50694 2493 -LRB- Murder By Numbers -RRB- 2 +50695 2493 Murder By Numbers -RRB- 2 +50696 2493 delivers a magnetic performance . 3 +50697 2493 delivers a magnetic performance 4 +50698 2493 a magnetic performance 4 +50699 2493 magnetic performance 4 +50700 2493 magnetic 2 +50701 2494 If you love the music , and I do , its hard to imagine having more fun watching a documentary ... 4 +50702 2494 If you love the music , and I do 3 +50703 2494 you love the music , and I do 3 +50704 2494 you love the music , and 4 +50705 2494 you love the music , 3 +50706 2494 you love the music 3 +50707 2494 love the music 4 +50708 2494 the music 2 +50709 2494 I do 2 +50710 2494 , its hard to imagine having more fun watching a documentary ... 4 +50711 2494 its hard to imagine having more fun watching a documentary ... 4 +50712 2494 hard to imagine having more fun watching a documentary ... 4 +50713 2494 hard to imagine having more fun watching a documentary 4 +50714 2494 to imagine having more fun watching a documentary 2 +50715 2494 imagine having more fun watching a documentary 1 +50716 2494 having more fun watching a documentary 2 +50717 2494 more fun watching a documentary 1 +50718 2494 watching a documentary 2 +50719 2495 But first , you have to give the audience a reason to want to put for that effort 1 +50720 2495 first , you have to give the audience a reason to want to put for that effort 2 +50721 2495 , you have to give the audience a reason to want to put for that effort 1 +50722 2495 you have to give the audience a reason to want to put for that effort 1 +50723 2495 have to give the audience a reason to want to put for that effort 1 +50724 2495 to give the audience a reason to want to put for that effort 3 +50725 2495 give the audience a reason to want to put for that effort 2 +50726 2495 give the audience 2 +50727 2495 a reason to want to put for that effort 2 +50728 2495 reason to want to put for that effort 2 +50729 2495 to want to put for that effort 2 +50730 2495 want to put for that effort 2 +50731 2495 to put for that effort 2 +50732 2495 put for that effort 2 +50733 2495 for that effort 2 +50734 2495 that effort 2 +50735 2496 As relationships shift , director Robert J. Siegel allows the characters to inhabit their world without cleaving to a narrative arc . 3 +50736 2496 As relationships shift 2 +50737 2496 relationships shift 2 +50738 2496 shift 3 +50739 2496 , director Robert J. Siegel allows the characters to inhabit their world without cleaving to a narrative arc . 3 +50740 2496 director Robert J. Siegel allows the characters to inhabit their world without cleaving to a narrative arc . 3 +50741 2496 director Robert J. Siegel 2 +50742 2496 Robert J. Siegel 2 +50743 2496 J. Siegel 2 +50744 2496 Siegel 2 +50745 2496 allows the characters to inhabit their world without cleaving to a narrative arc . 2 +50746 2496 allows the characters to inhabit their world without cleaving to a narrative arc 3 +50747 2496 the characters to inhabit their world without cleaving to a narrative arc 2 +50748 2496 to inhabit their world without cleaving to a narrative arc 2 +50749 2496 inhabit their world without cleaving to a narrative arc 3 +50750 2496 inhabit their world 2 +50751 2496 their world 2 +50752 2496 without cleaving to a narrative arc 2 +50753 2496 cleaving to a narrative arc 2 +50754 2496 cleaving 2 +50755 2496 to a narrative arc 2 +50756 2496 a narrative arc 2 +50757 2496 narrative arc 3 +50758 2497 Contains all the substance of a Twinkie -- easy to swallow , but scarcely nourishing . 1 +50759 2497 Contains all the substance of a Twinkie -- easy to swallow , but scarcely nourishing 1 +50760 2497 all the substance of a Twinkie -- easy to swallow , but scarcely nourishing 1 +50761 2497 all the substance 2 +50762 2497 of a Twinkie -- easy to swallow , but scarcely nourishing 2 +50763 2497 a Twinkie -- easy to swallow , but scarcely nourishing 2 +50764 2497 a Twinkie 2 +50765 2497 Twinkie 2 +50766 2497 -- easy to swallow , but scarcely nourishing 2 +50767 2497 easy to swallow , but scarcely nourishing 1 +50768 2497 easy to swallow , but 2 +50769 2497 easy to swallow , 3 +50770 2497 easy to swallow 2 +50771 2497 scarcely nourishing 2 +50772 2497 nourishing 3 +50773 2498 A minor work yet there 's no denying the potency of Miller 's strange , fleeting brew of hopeful perseverance and hopeless closure . 2 +50774 2498 A minor work 2 +50775 2498 minor work 1 +50776 2498 yet there 's no denying the potency of Miller 's strange , fleeting brew of hopeful perseverance and hopeless closure . 3 +50777 2498 there 's no denying the potency of Miller 's strange , fleeting brew of hopeful perseverance and hopeless closure . 3 +50778 2498 's no denying the potency of Miller 's strange , fleeting brew of hopeful perseverance and hopeless closure . 3 +50779 2498 's no denying the potency of Miller 's strange , fleeting brew of hopeful perseverance and hopeless closure 3 +50780 2498 no denying the potency of Miller 's strange , fleeting brew of hopeful perseverance and hopeless closure 2 +50781 2498 denying the potency of Miller 's strange , fleeting brew of hopeful perseverance and hopeless closure 2 +50782 2498 denying 1 +50783 2498 the potency of Miller 's strange , fleeting brew of hopeful perseverance and hopeless closure 2 +50784 2498 the potency 2 +50785 2498 potency 2 +50786 2498 of Miller 's strange , fleeting brew of hopeful perseverance and hopeless closure 3 +50787 2498 Miller 's strange , fleeting brew of hopeful perseverance and hopeless closure 2 +50788 2498 Miller 's strange , fleeting brew 2 +50789 2498 Miller 's 2 +50790 2498 strange , fleeting brew 3 +50791 2498 , fleeting brew 2 +50792 2498 fleeting brew 2 +50793 2498 brew 2 +50794 2498 of hopeful perseverance and hopeless closure 3 +50795 2498 hopeful perseverance and hopeless closure 3 +50796 2498 perseverance and hopeless closure 2 +50797 2498 perseverance and hopeless 2 +50798 2498 perseverance and 3 +50799 2498 perseverance 2 +50800 2498 hopeless 1 +50801 2499 Harks back to a time when movies had more to do with imagination than market research . 3 +50802 2499 Harks 3 +50803 2499 back to a time when movies had more to do with imagination than market research . 3 +50804 2499 back to a time when movies had more to do with imagination than market research 2 +50805 2499 back to a time 2 +50806 2499 to a time 2 +50807 2499 when movies had more to do with imagination than market research 2 +50808 2499 movies had more to do with imagination than market research 2 +50809 2499 had more to do with imagination than market research 3 +50810 2499 had more 2 +50811 2499 to do with imagination than market research 1 +50812 2499 do with imagination than market research 2 +50813 2499 do with imagination 3 +50814 2499 with imagination 3 +50815 2499 than market research 2 +50816 2499 market research 2 +50817 2499 research 2 +50818 2500 Like a Tarantino movie with heart , Alias Betty is richly detailed , deftly executed and utterly absorbing . 3 +50819 2500 Like a Tarantino movie with heart 4 +50820 2500 a Tarantino movie with heart 3 +50821 2500 a Tarantino movie 2 +50822 2500 Tarantino movie 2 +50823 2500 with heart 3 +50824 2500 , Alias Betty is richly detailed , deftly executed and utterly absorbing . 4 +50825 2500 Alias Betty is richly detailed , deftly executed and utterly absorbing . 4 +50826 2500 Alias Betty 2 +50827 2500 Alias 2 +50828 2500 is richly detailed , deftly executed and utterly absorbing . 4 +50829 2500 is richly detailed , deftly executed and utterly absorbing 3 +50830 2500 richly detailed , deftly executed and utterly absorbing 4 +50831 2500 richly detailed , deftly executed and 4 +50832 2500 richly detailed , deftly executed 3 +50833 2500 richly detailed , 3 +50834 2500 richly detailed 3 +50835 2500 deftly executed 4 +50836 2500 utterly absorbing 3 +50837 2501 The Four Feathers is definitely horse feathers , but if you go in knowing that , you might have fun in this cinematic sandbox . 3 +50838 2501 The Four Feathers is definitely horse feathers , but if you go in knowing that , you might have fun in this cinematic sandbox 2 +50839 2501 The Four Feathers is definitely horse feathers , but 1 +50840 2501 The Four Feathers is definitely horse feathers , 1 +50841 2501 The Four Feathers is definitely horse feathers 1 +50842 2501 is definitely horse feathers 1 +50843 2501 horse feathers 1 +50844 2501 horse 2 +50845 2501 if you go in knowing that , you might have fun in this cinematic sandbox 3 +50846 2501 if you go in knowing that 2 +50847 2501 you go in knowing that 2 +50848 2501 go in knowing that 2 +50849 2501 in knowing that 2 +50850 2501 knowing that 2 +50851 2501 , you might have fun in this cinematic sandbox 3 +50852 2501 you might have fun in this cinematic sandbox 2 +50853 2501 might have fun in this cinematic sandbox 3 +50854 2501 have fun in this cinematic sandbox 3 +50855 2501 fun in this cinematic sandbox 3 +50856 2501 in this cinematic sandbox 2 +50857 2501 this cinematic sandbox 2 +50858 2501 cinematic sandbox 2 +50859 2501 sandbox 3 +50860 2502 Is truth stranger than fiction ? 2 +50861 2502 Is truth stranger than fiction 2 +50862 2502 stranger than fiction 2 +50863 2502 stranger 2 +50864 2502 than fiction 2 +50865 2503 Although it lacks the detail of the book , the film does pack some serious suspense . 3 +50866 2503 Although it lacks the detail of the book 2 +50867 2503 it lacks the detail of the book 1 +50868 2503 lacks the detail of the book 1 +50869 2503 the detail of the book 2 +50870 2503 the detail 2 +50871 2503 of the book 2 +50872 2503 , the film does pack some serious suspense . 4 +50873 2503 the film does pack some serious suspense . 3 +50874 2503 does pack some serious suspense . 3 +50875 2503 does pack some serious suspense 4 +50876 2503 pack some serious suspense 3 +50877 2503 some serious suspense 3 +50878 2503 serious suspense 3 +50879 2504 It 's a masterpeice . 4 +50880 2504 's a masterpeice . 4 +50881 2504 's a masterpeice 2 +50882 2504 a masterpeice 4 +50883 2504 masterpeice 4 +50884 2505 Diverting French comedy in which a husband has to cope with the pesky moods of jealousy . 2 +50885 2505 Diverting French comedy in which a husband has to cope with the pesky moods of jealousy 2 +50886 2505 French comedy in which a husband has to cope with the pesky moods of jealousy 2 +50887 2505 French comedy 2 +50888 2505 in which a husband has to cope with the pesky moods of jealousy 2 +50889 2505 a husband has to cope with the pesky moods of jealousy 1 +50890 2505 a husband 2 +50891 2505 has to cope with the pesky moods of jealousy 2 +50892 2505 to cope with the pesky moods of jealousy 2 +50893 2505 cope with the pesky moods of jealousy 1 +50894 2505 cope 2 +50895 2505 with the pesky moods of jealousy 2 +50896 2505 the pesky moods of jealousy 1 +50897 2505 the pesky moods 1 +50898 2505 pesky moods 2 +50899 2505 pesky 1 +50900 2505 of jealousy 2 +50901 2506 A little too ponderous to work as shallow entertainment , not remotely incisive enough to qualify as drama , Monsoon Wedding serves mostly to whet one 's appetite for the Bollywood films . 1 +50902 2506 A little too ponderous to work as shallow entertainment , not remotely incisive enough to qualify as drama , Monsoon Wedding 1 +50903 2506 little too ponderous to work as shallow entertainment , not remotely incisive enough to qualify as drama , Monsoon Wedding 1 +50904 2506 little too ponderous to work as shallow entertainment , not remotely incisive enough to qualify as drama , Monsoon 1 +50905 2506 too ponderous to work as shallow entertainment , not remotely incisive enough to qualify as drama , Monsoon 2 +50906 2506 ponderous to work as shallow entertainment , not remotely incisive enough to qualify as drama , Monsoon 1 +50907 2506 to work as shallow entertainment , not remotely incisive enough to qualify as drama , Monsoon 1 +50908 2506 work as shallow entertainment , not remotely incisive enough to qualify as drama , Monsoon 1 +50909 2506 work as shallow entertainment , not remotely incisive enough 2 +50910 2506 work as shallow entertainment , 1 +50911 2506 work as shallow entertainment 2 +50912 2506 as shallow entertainment 1 +50913 2506 shallow entertainment 2 +50914 2506 not remotely incisive enough 1 +50915 2506 remotely incisive enough 2 +50916 2506 incisive enough 2 +50917 2506 to qualify as drama , Monsoon 2 +50918 2506 qualify as drama , Monsoon 2 +50919 2506 as drama , Monsoon 2 +50920 2506 drama , Monsoon 2 +50921 2506 serves mostly to whet one 's appetite for the Bollywood films . 3 +50922 2506 serves mostly to whet one 's appetite for the Bollywood films 2 +50923 2506 serves mostly 2 +50924 2506 to whet one 's appetite for the Bollywood films 3 +50925 2506 whet one 's appetite for the Bollywood films 3 +50926 2506 whet 2 +50927 2506 one 's appetite for the Bollywood films 3 +50928 2506 one 's appetite 2 +50929 2506 one 's 2 +50930 2506 appetite 2 +50931 2506 for the Bollywood films 2 +50932 2506 the Bollywood films 2 +50933 2506 Bollywood films 2 +50934 2507 Feels untidily honest . 2 +50935 2507 untidily honest . 2 +50936 2507 untidily honest 3 +50937 2507 untidily 1 +50938 2508 No big whoop , nothing new to see , zero thrills , too many flashbacks and a choppy ending make for a bad film . 0 +50939 2508 No big whoop , nothing new to see , 1 +50940 2508 No big whoop , nothing new to see 1 +50941 2508 No big whoop , 1 +50942 2508 No big whoop 1 +50943 2508 big whoop 2 +50944 2508 whoop 2 +50945 2508 nothing new to see 1 +50946 2508 new to see 2 +50947 2508 to see 2 +50948 2508 zero thrills , too many flashbacks and a choppy ending make for a bad film . 0 +50949 2508 zero thrills , too many flashbacks and a choppy ending make for a bad film 0 +50950 2508 thrills , too many flashbacks and a choppy ending make for a bad film 0 +50951 2508 thrills , too many flashbacks and a choppy ending 1 +50952 2508 thrills , too many flashbacks and 1 +50953 2508 thrills , too many flashbacks 1 +50954 2508 thrills , 3 +50955 2508 too many flashbacks 1 +50956 2508 many flashbacks 2 +50957 2508 a choppy ending 1 +50958 2508 choppy ending 1 +50959 2508 make for a bad film 1 +50960 2508 for a bad film 0 +50961 2508 a bad film 0 +50962 2508 bad film 0 +50963 2509 Feels slight , as if it were an extended short , albeit one made by the smartest kids in class . 2 +50964 2509 , as if it were an extended short , albeit one made by the smartest kids in class . 3 +50965 2509 as if it were an extended short , albeit one made by the smartest kids in class . 2 +50966 2509 as if it were an extended short 2 +50967 2509 if it were an extended short 1 +50968 2509 it were an extended short 2 +50969 2509 were an extended short 2 +50970 2509 an extended short 2 +50971 2509 extended short 2 +50972 2509 , albeit one made by the smartest kids in class . 2 +50973 2509 albeit one made by the smartest kids in class . 3 +50974 2509 albeit one made by the smartest kids in class 3 +50975 2509 albeit one 2 +50976 2509 made by the smartest kids in class 4 +50977 2509 by the smartest kids in class 3 +50978 2509 the smartest kids in class 3 +50979 2509 the smartest kids 2 +50980 2509 smartest kids 2 +50981 2509 smartest 3 +50982 2509 in class 2 +50983 2510 A chilling tale of one of the great crimes of 20th Century France : the murder of two rich women by their servants in 1933 . 3 +50984 2510 A chilling tale of one of the great crimes of 20th Century France : the murder of two rich women by their servants in 1933 3 +50985 2510 A chilling tale of one of the great crimes of 20th Century France : 3 +50986 2510 A chilling tale of one of the great crimes of 20th Century France 3 +50987 2510 A chilling tale of one of the great crimes 3 +50988 2510 A chilling tale of one 3 +50989 2510 A chilling tale 3 +50990 2510 chilling tale 1 +50991 2510 of the great crimes 1 +50992 2510 the great crimes 2 +50993 2510 great crimes 3 +50994 2510 of 20th Century France 2 +50995 2510 20th Century France 2 +50996 2510 Century France 2 +50997 2510 the murder of two rich women by their servants in 1933 2 +50998 2510 the murder 1 +50999 2510 of two rich women by their servants in 1933 2 +51000 2510 two rich women by their servants in 1933 2 +51001 2510 two rich women 2 +51002 2510 rich women 2 +51003 2510 by their servants in 1933 2 +51004 2510 their servants in 1933 2 +51005 2510 their servants 2 +51006 2510 in 1933 2 +51007 2510 1933 2 +51008 2511 The kind of movie that leaves vague impressions and a nasty aftertaste but little clear memory of its operational mechanics . 1 +51009 2511 The kind of movie that leaves vague impressions and a nasty aftertaste but little clear memory of its operational mechanics 1 +51010 2511 of movie that leaves vague impressions and a nasty aftertaste but little clear memory of its operational mechanics 0 +51011 2511 movie that leaves vague impressions and a nasty aftertaste but little clear memory of its operational mechanics 1 +51012 2511 that leaves vague impressions and a nasty aftertaste but little clear memory of its operational mechanics 1 +51013 2511 leaves vague impressions and a nasty aftertaste but little clear memory of its operational mechanics 1 +51014 2511 vague impressions and a nasty aftertaste but little clear memory of its operational mechanics 1 +51015 2511 vague impressions and 2 +51016 2511 vague impressions 2 +51017 2511 a nasty aftertaste but little clear memory of its operational mechanics 1 +51018 2511 a nasty aftertaste but little clear memory 0 +51019 2511 nasty aftertaste but little clear memory 2 +51020 2511 nasty aftertaste but little clear 2 +51021 2511 nasty aftertaste but 1 +51022 2511 nasty aftertaste 1 +51023 2511 aftertaste 1 +51024 2511 little clear 2 +51025 2511 of its operational mechanics 2 +51026 2511 its operational mechanics 2 +51027 2511 operational mechanics 2 +51028 2511 operational 2 +51029 2511 mechanics 2 +51030 2512 S1M0NE 's satire is not subtle , but it is effective . 3 +51031 2512 S1M0NE 's satire is not subtle , but it is effective 3 +51032 2512 S1M0NE 's satire is not subtle , but 1 +51033 2512 S1M0NE 's satire is not subtle , 1 +51034 2512 S1M0NE 's satire is not subtle 1 +51035 2512 S1M0NE 's satire 2 +51036 2512 S1M0NE 's 2 +51037 2512 S1M0NE 2 +51038 2512 is not subtle 2 +51039 2512 it is effective 3 +51040 2512 is effective 3 +51041 2513 It 's all gratuitous before long , as if Schwentke were fulfilling a gross-out quota for an anticipated audience demographic instead of shaping the material to fit the story . 2 +51042 2513 's all gratuitous before long , as if Schwentke were fulfilling a gross-out quota for an anticipated audience demographic instead of shaping the material to fit the story . 1 +51043 2513 's all gratuitous before long , as if Schwentke were fulfilling a gross-out quota for an anticipated audience demographic instead of shaping the material to fit the story 1 +51044 2513 's all gratuitous before long , 2 +51045 2513 's all gratuitous before long 2 +51046 2513 's all gratuitous 2 +51047 2513 all gratuitous 2 +51048 2513 as if Schwentke were fulfilling a gross-out quota for an anticipated audience demographic instead of shaping the material to fit the story 1 +51049 2513 if Schwentke were fulfilling a gross-out quota for an anticipated audience demographic instead of shaping the material to fit the story 1 +51050 2513 Schwentke were fulfilling a gross-out quota for an anticipated audience demographic instead of shaping the material to fit the story 1 +51051 2513 Schwentke 2 +51052 2513 were fulfilling a gross-out quota for an anticipated audience demographic instead of shaping the material to fit the story 1 +51053 2513 fulfilling a gross-out quota for an anticipated audience demographic instead of shaping the material to fit the story 0 +51054 2513 fulfilling a gross-out quota for an anticipated audience demographic 1 +51055 2513 a gross-out quota for an anticipated audience demographic 1 +51056 2513 a gross-out quota for an anticipated audience 2 +51057 2513 a gross-out quota 2 +51058 2513 gross-out quota 1 +51059 2513 quota 2 +51060 2513 for an anticipated audience 2 +51061 2513 an anticipated audience 3 +51062 2513 anticipated audience 2 +51063 2513 anticipated 3 +51064 2513 instead of shaping the material to fit the story 1 +51065 2513 of shaping the material to fit the story 2 +51066 2513 shaping the material to fit the story 2 +51067 2513 shaping 2 +51068 2513 the material to fit the story 2 +51069 2513 material to fit the story 2 +51070 2513 to fit the story 2 +51071 2513 fit the story 2 +51072 2514 -LRB- Toback 's -RRB- fondness for fancy split-screen , stuttering editing and pompous references to Wittgenstein and Kirkegaard ... blends uneasily with the titillating material . 1 +51073 2514 -LRB- Toback 's -RRB- fondness for fancy split-screen , stuttering editing and pompous references to Wittgenstein and Kirkegaard ... blends uneasily with the titillating material 1 +51074 2514 -LRB- Toback 's -RRB- fondness for fancy split-screen , stuttering editing and pompous references to Wittgenstein and Kirkegaard ... 1 +51075 2514 -LRB- Toback 's -RRB- fondness for fancy split-screen , stuttering editing and pompous references to Wittgenstein and Kirkegaard 2 +51076 2514 Toback 's -RRB- fondness for fancy split-screen , stuttering editing and pompous references to Wittgenstein and Kirkegaard 1 +51077 2514 -RRB- fondness for fancy split-screen , stuttering editing and pompous references to Wittgenstein and Kirkegaard 1 +51078 2514 fondness for fancy split-screen , stuttering editing and pompous references to Wittgenstein and Kirkegaard 1 +51079 2514 fondness for fancy split-screen , 2 +51080 2514 fondness for fancy split-screen 2 +51081 2514 fondness 3 +51082 2514 for fancy split-screen 2 +51083 2514 fancy split-screen 2 +51084 2514 split-screen 2 +51085 2514 stuttering editing and pompous references to Wittgenstein and Kirkegaard 1 +51086 2514 stuttering editing and pompous references 1 +51087 2514 editing and pompous references 1 +51088 2514 and pompous references 2 +51089 2514 pompous references 1 +51090 2514 pompous 0 +51091 2514 to Wittgenstein and Kirkegaard 2 +51092 2514 Wittgenstein and Kirkegaard 2 +51093 2514 Wittgenstein and 2 +51094 2514 Wittgenstein 2 +51095 2514 Kirkegaard 3 +51096 2514 blends uneasily with the titillating material 2 +51097 2514 blends 2 +51098 2514 uneasily with the titillating material 2 +51099 2514 with the titillating material 3 +51100 2514 the titillating material 3 +51101 2514 titillating material 3 +51102 2514 titillating 4 +51103 2515 The Cat 's Meow marks a return to form for director Peter Bogdanovich ... 3 +51104 2515 The Cat 's Meow 3 +51105 2515 The Cat 's 2 +51106 2515 Cat 's 2 +51107 2515 Meow 2 +51108 2515 marks a return to form for director Peter Bogdanovich ... 2 +51109 2515 marks a return to form for director Peter Bogdanovich 3 +51110 2515 a return to form for director Peter Bogdanovich 3 +51111 2515 return to form for director Peter Bogdanovich 3 +51112 2515 to form for director Peter Bogdanovich 2 +51113 2515 form for director Peter Bogdanovich 2 +51114 2515 for director Peter Bogdanovich 2 +51115 2515 director Peter Bogdanovich 2 +51116 2516 The director mostly plays it straight , turning Leys ' fable into a listless climb down the social ladder . 1 +51117 2516 mostly plays it straight , turning Leys ' fable into a listless climb down the social ladder . 1 +51118 2516 plays it straight , turning Leys ' fable into a listless climb down the social ladder . 1 +51119 2516 plays it straight , turning Leys ' fable into a listless climb down the social ladder 1 +51120 2516 plays it straight , 2 +51121 2516 plays it straight 2 +51122 2516 it straight 2 +51123 2516 turning Leys ' fable into a listless climb down the social ladder 1 +51124 2516 turning Leys ' fable 2 +51125 2516 Leys ' fable 2 +51126 2516 Leys ' 2 +51127 2516 Leys 2 +51128 2516 into a listless climb down the social ladder 2 +51129 2516 a listless climb down the social ladder 1 +51130 2516 a listless climb 1 +51131 2516 listless climb 2 +51132 2516 climb 2 +51133 2516 down the social ladder 2 +51134 2516 the social ladder 2 +51135 2516 social ladder 2 +51136 2516 ladder 2 +51137 2517 The limited sets and small confined and dark spaces also are homages to a classic low-budget film noir movie . 2 +51138 2517 The limited sets and small confined and dark spaces 2 +51139 2517 The limited sets and 1 +51140 2517 The limited sets 2 +51141 2517 limited sets 1 +51142 2517 small confined and dark spaces 1 +51143 2517 confined and dark spaces 1 +51144 2517 confined and dark 2 +51145 2517 confined and 1 +51146 2517 spaces 3 +51147 2517 also are homages to a classic low-budget film noir movie . 3 +51148 2517 are homages to a classic low-budget film noir movie . 2 +51149 2517 are homages to a classic low-budget film noir movie 3 +51150 2517 homages to a classic low-budget film noir movie 3 +51151 2517 homages 2 +51152 2517 to a classic low-budget film noir movie 2 +51153 2517 a classic low-budget film noir movie 3 +51154 2517 classic low-budget film noir movie 3 +51155 2517 low-budget film noir movie 1 +51156 2517 film noir movie 2 +51157 2517 noir movie 2 +51158 2518 Has not so much been written as assembled , Frankenstein-like , out of other , marginally better shoot-em-ups . 2 +51159 2518 Has not so much been written as assembled , Frankenstein-like , out of other , marginally better shoot-em-ups 0 +51160 2518 Has not so much 2 +51161 2518 not so 1 +51162 2518 been written as assembled , Frankenstein-like , out of other , marginally better shoot-em-ups 1 +51163 2518 written as assembled , Frankenstein-like , out of other , marginally better shoot-em-ups 1 +51164 2518 written as assembled , Frankenstein-like , 2 +51165 2518 written as assembled , Frankenstein-like 2 +51166 2518 as assembled , Frankenstein-like 1 +51167 2518 assembled , Frankenstein-like 2 +51168 2518 , Frankenstein-like 2 +51169 2518 Frankenstein-like 2 +51170 2518 out of other , marginally better shoot-em-ups 2 +51171 2518 of other , marginally better shoot-em-ups 1 +51172 2518 other , marginally better shoot-em-ups 2 +51173 2518 , marginally better shoot-em-ups 2 +51174 2518 marginally better shoot-em-ups 2 +51175 2518 marginally better 2 +51176 2518 shoot-em-ups 2 +51177 2519 But this time , the old MIB label stands for Milder Is n't Better . 1 +51178 2519 this time , the old MIB label stands for Milder Is n't Better . 1 +51179 2519 , the old MIB label stands for Milder Is n't Better . 1 +51180 2519 the old MIB label stands for Milder Is n't Better . 1 +51181 2519 the old MIB label 2 +51182 2519 old MIB label 2 +51183 2519 MIB label 2 +51184 2519 MIB 2 +51185 2519 stands for Milder Is n't Better . 1 +51186 2519 stands for Milder Is n't Better 1 +51187 2519 for Milder Is n't Better 2 +51188 2519 Milder Is n't Better 1 +51189 2519 Milder 2 +51190 2519 Is n't Better 2 +51191 2520 Art-house to the core , Read My Lips is a genre-curling crime story that revives the free-wheeling noir spirit of old French cinema . 3 +51192 2520 Art-house to the core 3 +51193 2520 to the core 3 +51194 2520 , Read My Lips is a genre-curling crime story that revives the free-wheeling noir spirit of old French cinema . 2 +51195 2520 Read My Lips is a genre-curling crime story that revives the free-wheeling noir spirit of old French cinema . 4 +51196 2520 is a genre-curling crime story that revives the free-wheeling noir spirit of old French cinema . 3 +51197 2520 is a genre-curling crime story that revives the free-wheeling noir spirit of old French cinema 3 +51198 2520 a genre-curling crime story that revives the free-wheeling noir spirit of old French cinema 3 +51199 2520 a genre-curling crime story 3 +51200 2520 genre-curling crime story 2 +51201 2520 genre-curling 2 +51202 2520 that revives the free-wheeling noir spirit of old French cinema 4 +51203 2520 revives the free-wheeling noir spirit of old French cinema 2 +51204 2520 revives 2 +51205 2520 the free-wheeling noir spirit of old French cinema 2 +51206 2520 the free-wheeling noir spirit 3 +51207 2520 free-wheeling noir spirit 2 +51208 2520 free-wheeling 2 +51209 2520 noir spirit 2 +51210 2520 of old French cinema 2 +51211 2520 old French cinema 2 +51212 2520 French cinema 2 +51213 2521 Based on Dave Barry 's popular book of the same name , the movie benefits from having a real writer plot out all of the characters ' moves and overlapping story . 3 +51214 2521 Based on Dave Barry 's popular book of the same name 2 +51215 2521 on Dave Barry 's popular book of the same name 3 +51216 2521 Dave Barry 's popular book of the same name 3 +51217 2521 Dave Barry 's popular book 3 +51218 2521 Dave Barry 's 3 +51219 2521 Dave 2 +51220 2521 Barry 's 2 +51221 2521 popular book 2 +51222 2521 of the same name 2 +51223 2521 the same name 2 +51224 2521 same name 2 +51225 2521 , the movie benefits from having a real writer plot out all of the characters ' moves and overlapping story . 3 +51226 2521 the movie benefits from having a real writer plot out all of the characters ' moves and overlapping story . 3 +51227 2521 benefits from having a real writer plot out all of the characters ' moves and overlapping story . 3 +51228 2521 benefits from having a real writer plot out all of the characters ' moves and overlapping story 3 +51229 2521 from having a real writer plot out all of the characters ' moves and overlapping story 2 +51230 2521 having a real writer plot out all of the characters ' moves and overlapping story 2 +51231 2521 having a real writer plot 3 +51232 2521 a real writer plot 3 +51233 2521 real writer plot 3 +51234 2521 writer plot 2 +51235 2521 out all of the characters ' moves and overlapping story 2 +51236 2521 all of the characters ' moves and overlapping story 2 +51237 2521 all of the characters ' moves and 2 +51238 2521 all of the characters ' moves 2 +51239 2521 of the characters ' moves 2 +51240 2521 overlapping story 2 +51241 2521 overlapping 2 +51242 2522 Despite some charm and heart , this quirky soccer import is forgettable 1 +51243 2522 Despite some charm and heart 2 +51244 2522 some charm and heart 3 +51245 2522 charm and heart 3 +51246 2522 , this quirky soccer import is forgettable 1 +51247 2522 this quirky soccer import is forgettable 1 +51248 2522 this quirky soccer import 2 +51249 2522 quirky soccer import 2 +51250 2522 soccer import 2 +51251 2522 is forgettable 1 +51252 2523 The weird thing about The Santa Clause 2 , purportedly a children 's movie , is that there is nothing in it to engage children emotionally . 1 +51253 2523 The weird thing about The Santa Clause 2 , purportedly a children 's movie , 2 +51254 2523 The weird thing 1 +51255 2523 weird thing 2 +51256 2523 about The Santa Clause 2 , purportedly a children 's movie , 1 +51257 2523 The Santa Clause 2 , purportedly a children 's movie , 2 +51258 2523 The Santa Clause 2 , purportedly a children 's movie 2 +51259 2523 The Santa Clause 2 , purportedly 2 +51260 2523 The Santa Clause 2 , 2 +51261 2523 purportedly 2 +51262 2523 a children 's movie 2 +51263 2523 is that there is nothing in it to engage children emotionally . 1 +51264 2523 is that there is nothing in it to engage children emotionally 1 +51265 2523 that there is nothing in it to engage children emotionally 1 +51266 2523 there is nothing in it to engage children emotionally 1 +51267 2523 is nothing in it to engage children emotionally 1 +51268 2523 nothing in it to engage children emotionally 1 +51269 2523 nothing in it 2 +51270 2523 to engage children emotionally 2 +51271 2523 engage children emotionally 2 +51272 2523 engage children 3 +51273 2524 This sci-fi techno-sex thriller starts out bizarre and just keeps getting weirder . 2 +51274 2524 This sci-fi techno-sex thriller 2 +51275 2524 sci-fi techno-sex thriller 3 +51276 2524 techno-sex thriller 2 +51277 2524 techno-sex 2 +51278 2524 starts out bizarre and just keeps getting weirder . 1 +51279 2524 starts out bizarre and just keeps getting weirder 1 +51280 2524 starts out bizarre and just 1 +51281 2524 starts out bizarre and 2 +51282 2524 starts out bizarre 1 +51283 2524 out bizarre 2 +51284 2524 keeps getting weirder 2 +51285 2524 getting weirder 1 +51286 2524 weirder 2 +51287 2525 Hip-hop rarely comes alive as its own fire-breathing entity in this picture . 1 +51288 2525 rarely comes alive as its own fire-breathing entity in this picture . 1 +51289 2525 comes alive as its own fire-breathing entity in this picture . 3 +51290 2525 comes alive as its own fire-breathing entity in this picture 3 +51291 2525 alive as its own fire-breathing entity in this picture 2 +51292 2525 as its own fire-breathing entity in this picture 2 +51293 2525 its own fire-breathing entity in this picture 2 +51294 2525 its own fire-breathing entity 2 +51295 2525 own fire-breathing entity 2 +51296 2525 fire-breathing entity 2 +51297 2525 fire-breathing 3 +51298 2525 in this picture 2 +51299 2526 The origin story is well told , and the characters will not disappoint anyone who values the original comic books . 2 +51300 2526 The origin story is well told , and the characters will not disappoint anyone who values the original comic books 3 +51301 2526 The origin story is well told , and 3 +51302 2526 The origin story is well told , 3 +51303 2526 The origin story is well told 4 +51304 2526 The origin story 2 +51305 2526 origin story 2 +51306 2526 origin 2 +51307 2526 the characters will not disappoint anyone who values the original comic books 3 +51308 2526 will not disappoint anyone who values the original comic books 3 +51309 2526 will not 2 +51310 2526 disappoint anyone who values the original comic books 0 +51311 2526 disappoint 0 +51312 2526 anyone who values the original comic books 2 +51313 2526 who values the original comic books 3 +51314 2526 values the original comic books 3 +51315 2526 the original comic books 2 +51316 2526 original comic books 2 +51317 2526 comic books 2 +51318 2527 Inconsequential road-and-buddy pic . 1 +51319 2527 Inconsequential road-and-buddy pic 1 +51320 2527 road-and-buddy pic 2 +51321 2527 road-and-buddy 2 +51322 2527 pic 2 +51323 2528 If Disney 's Cinderella proved that ' a dream is a wish your heart makes , ' then Cinderella II proves that a nightmare is a wish a studio 's wallet makes . 1 +51324 2528 If Disney 's Cinderella proved that ' a dream is a wish your heart makes 2 +51325 2528 Disney 's Cinderella proved that ' a dream is a wish your heart makes 4 +51326 2528 Disney 's Cinderella 2 +51327 2528 Disney 's 2 +51328 2528 proved that ' a dream is a wish your heart makes 2 +51329 2528 proved 2 +51330 2528 that ' a dream is a wish your heart makes 2 +51331 2528 that ' 2 +51332 2528 a dream is a wish your heart makes 3 +51333 2528 is a wish your heart makes 2 +51334 2528 a wish your heart makes 3 +51335 2528 a wish 2 +51336 2528 your heart makes 2 +51337 2528 , ' then Cinderella II proves that a nightmare is a wish a studio 's wallet makes . 2 +51338 2528 ' then Cinderella II proves that a nightmare is a wish a studio 's wallet makes . 2 +51339 2528 then Cinderella II proves that a nightmare is a wish a studio 's wallet makes . 2 +51340 2528 then Cinderella II 2 +51341 2528 Cinderella II 2 +51342 2528 proves that a nightmare is a wish a studio 's wallet makes . 1 +51343 2528 proves that a nightmare is a wish a studio 's wallet makes 2 +51344 2528 that a nightmare is a wish a studio 's wallet makes 1 +51345 2528 a nightmare is a wish a studio 's wallet makes 2 +51346 2528 is a wish a studio 's wallet makes 4 +51347 2528 a wish a studio 's wallet makes 2 +51348 2528 a studio 's wallet makes 2 +51349 2528 a studio 's wallet 2 +51350 2528 a studio 's 2 +51351 2528 studio 's 2 +51352 2528 wallet 2 +51353 2529 This strenuously unfunny Showtime deserves the hook . 0 +51354 2529 strenuously unfunny Showtime deserves the hook . 0 +51355 2529 unfunny Showtime deserves the hook . 2 +51356 2529 Showtime deserves the hook . 1 +51357 2529 deserves the hook . 2 +51358 2529 deserves the hook 1 +51359 2529 the hook 2 +51360 2529 hook 2 +51361 2530 Jonathan Parker 's Bartleby should have been the be-all-end-all of the modern-office anomie films . 3 +51362 2530 Jonathan Parker 's Bartleby 2 +51363 2530 Jonathan Parker 's 2 +51364 2530 Jonathan 2 +51365 2530 Parker 's 2 +51366 2530 Parker 2 +51367 2530 should have been the be-all-end-all of the modern-office anomie films . 1 +51368 2530 should have been the be-all-end-all of the modern-office anomie films 2 +51369 2530 have been the be-all-end-all of the modern-office anomie films 2 +51370 2530 been the be-all-end-all of the modern-office anomie films 2 +51371 2530 the be-all-end-all of the modern-office anomie films 3 +51372 2530 the be-all-end-all 2 +51373 2530 be-all-end-all 2 +51374 2530 of the modern-office anomie films 2 +51375 2530 the modern-office anomie films 2 +51376 2530 modern-office anomie films 2 +51377 2530 modern-office 2 +51378 2530 anomie films 2 +51379 2531 He has a great cast and a great idea . 4 +51380 2531 has a great cast and a great idea . 3 +51381 2531 has a great cast and a great idea 4 +51382 2531 a great cast and a great idea 3 +51383 2531 a great cast and 3 +51384 2531 a great cast 4 +51385 2531 great cast 3 +51386 2531 a great idea 4 +51387 2531 great idea 3 +51388 2532 Ozpetek offers an AIDS subtext , skims over the realities of gay sex , and presents yet another tired old vision of the gay community as an all-inclusive world where uptight , middle class bores like Antonia can feel good about themselves . 0 +51389 2532 Ozpetek 2 +51390 2532 offers an AIDS subtext , skims over the realities of gay sex , and presents yet another tired old vision of the gay community as an all-inclusive world where uptight , middle class bores like Antonia can feel good about themselves . 2 +51391 2532 offers an AIDS subtext , skims over the realities of gay sex , and presents yet another tired old vision of the gay community as an all-inclusive world where uptight , middle class bores like Antonia can feel good about themselves 1 +51392 2532 offers an AIDS subtext , skims over the realities of gay sex , and 1 +51393 2532 offers an AIDS subtext , skims over the realities of gay sex , 1 +51394 2532 offers an AIDS subtext , skims over the realities of gay sex 2 +51395 2532 offers an AIDS subtext , 2 +51396 2532 offers an AIDS subtext 2 +51397 2532 an AIDS subtext 2 +51398 2532 AIDS subtext 2 +51399 2532 AIDS 1 +51400 2532 skims over the realities of gay sex 1 +51401 2532 skims over 2 +51402 2532 the realities of gay sex 2 +51403 2532 the realities 2 +51404 2532 realities 2 +51405 2532 of gay sex 2 +51406 2532 gay sex 2 +51407 2532 presents yet another tired old vision of the gay community as an all-inclusive world where uptight , middle class bores like Antonia can feel good about themselves 0 +51408 2532 yet another tired old vision of the gay community as an all-inclusive world where uptight , middle class bores like Antonia can feel good about themselves 2 +51409 2532 yet another tired old vision 0 +51410 2532 another tired old vision 0 +51411 2532 tired old vision 1 +51412 2532 tired old 1 +51413 2532 of the gay community as an all-inclusive world where uptight , middle class bores like Antonia can feel good about themselves 1 +51414 2532 the gay community as an all-inclusive world where uptight , middle class bores like Antonia can feel good about themselves 1 +51415 2532 the gay community 2 +51416 2532 gay community 2 +51417 2532 as an all-inclusive world where uptight , middle class bores like Antonia can feel good about themselves 1 +51418 2532 an all-inclusive world where uptight , middle class bores like Antonia can feel good about themselves 1 +51419 2532 an all-inclusive world 2 +51420 2532 all-inclusive world 2 +51421 2532 all-inclusive 2 +51422 2532 where uptight , middle class bores like Antonia can feel good about themselves 1 +51423 2532 uptight , middle class bores like Antonia can feel good about themselves 2 +51424 2532 uptight , middle class bores like Antonia 1 +51425 2532 uptight , middle class bores 2 +51426 2532 uptight , middle 1 +51427 2532 uptight 1 +51428 2532 , middle 2 +51429 2532 class bores 1 +51430 2532 bores 1 +51431 2532 like Antonia 2 +51432 2532 can feel good about themselves 2 +51433 2532 feel good about themselves 3 +51434 2532 feel good 3 +51435 2532 about themselves 2 +51436 2533 The movie fails to portray its literarily talented and notorious subject as anything much more than a dirty old man . 0 +51437 2533 fails to portray its literarily talented and notorious subject as anything much more than a dirty old man . 0 +51438 2533 fails to portray its literarily talented and notorious subject as anything much more than a dirty old man 1 +51439 2533 to portray its literarily talented and notorious subject as anything much more than a dirty old man 1 +51440 2533 portray its literarily talented and notorious subject as anything much more than a dirty old man 1 +51441 2533 portray its literarily talented and notorious subject as anything much more 2 +51442 2533 portray its literarily talented and notorious subject 2 +51443 2533 portray 2 +51444 2533 its literarily talented and notorious subject 2 +51445 2533 literarily talented and notorious subject 2 +51446 2533 literarily 2 +51447 2533 talented and notorious subject 3 +51448 2533 and notorious subject 2 +51449 2533 notorious subject 2 +51450 2533 as anything much more 3 +51451 2533 anything much more 2 +51452 2533 than a dirty old man 2 +51453 2533 a dirty old man 1 +51454 2533 dirty old man 1 +51455 2534 Hailed as a clever exercise in neo-Hitchcockianism , this clever and very satisfying picture is more accurately Chabrolian . 4 +51456 2534 Hailed as a clever exercise in neo-Hitchcockianism 2 +51457 2534 Hailed 3 +51458 2534 as a clever exercise in neo-Hitchcockianism 3 +51459 2534 a clever exercise in neo-Hitchcockianism 3 +51460 2534 a clever exercise 3 +51461 2534 clever exercise 3 +51462 2534 in neo-Hitchcockianism 2 +51463 2534 neo-Hitchcockianism 2 +51464 2534 , this clever and very satisfying picture is more accurately Chabrolian . 4 +51465 2534 this clever and very satisfying picture is more accurately Chabrolian . 3 +51466 2534 this clever and very satisfying picture 4 +51467 2534 clever and very satisfying picture 4 +51468 2534 clever and very satisfying 3 +51469 2534 very satisfying 4 +51470 2534 is more accurately Chabrolian . 3 +51471 2534 is more accurately Chabrolian 2 +51472 2534 is more accurately 2 +51473 2534 more accurately 2 +51474 2534 accurately 3 +51475 2534 Chabrolian 2 +51476 2535 ` Synthetic ' is the best description of this well-meaning , beautifully produced film that sacrifices its promise for a high-powered star pedigree . 1 +51477 2535 Synthetic ' is the best description of this well-meaning , beautifully produced film that sacrifices its promise for a high-powered star pedigree . 2 +51478 2535 Synthetic 2 +51479 2535 ' is the best description of this well-meaning , beautifully produced film that sacrifices its promise for a high-powered star pedigree . 2 +51480 2535 is the best description of this well-meaning , beautifully produced film that sacrifices its promise for a high-powered star pedigree . 2 +51481 2535 is the best description of this well-meaning , beautifully produced film that sacrifices its promise for a high-powered star pedigree 3 +51482 2535 the best description of this well-meaning , beautifully produced film that sacrifices its promise for a high-powered star pedigree 2 +51483 2535 the best description 2 +51484 2535 best description 2 +51485 2535 description 2 +51486 2535 of this well-meaning , beautifully produced film that sacrifices its promise for a high-powered star pedigree 3 +51487 2535 this well-meaning , beautifully produced film that sacrifices its promise for a high-powered star pedigree 3 +51488 2535 this well-meaning , beautifully produced film 4 +51489 2535 well-meaning , beautifully produced film 3 +51490 2535 well-meaning 4 +51491 2535 , beautifully produced film 3 +51492 2535 beautifully produced film 4 +51493 2535 beautifully produced 4 +51494 2535 that sacrifices its promise for a high-powered star pedigree 2 +51495 2535 sacrifices its promise for a high-powered star pedigree 2 +51496 2535 sacrifices its promise 1 +51497 2535 sacrifices 2 +51498 2535 its promise 2 +51499 2535 for a high-powered star pedigree 2 +51500 2535 a high-powered star pedigree 3 +51501 2535 high-powered star pedigree 4 +51502 2535 high-powered 3 +51503 2535 star pedigree 2 +51504 2536 A no-holds-barred cinematic treat . 4 +51505 2536 A no-holds-barred cinematic 3 +51506 2536 no-holds-barred cinematic 4 +51507 2536 no-holds-barred 2 +51508 2537 The Quiet American is n't a bad film , it 's just one that could easily wait for your pay per view dollar . 1 +51509 2537 The Quiet American is n't a bad film 2 +51510 2537 is n't a bad film 3 +51511 2537 , it 's just one that could easily wait for your pay per view dollar . 1 +51512 2537 it 's just one that could easily wait for your pay per view dollar . 2 +51513 2537 's just one that could easily wait for your pay per view dollar . 0 +51514 2537 's just one that could easily wait for your pay per view dollar 0 +51515 2537 just one that could easily wait for your pay per view dollar 1 +51516 2537 that could easily wait for your pay per view dollar 1 +51517 2537 could easily wait for your pay per view dollar 1 +51518 2537 could easily 2 +51519 2537 wait for your pay per view dollar 1 +51520 2537 for your pay per view dollar 2 +51521 2537 your pay per view dollar 2 +51522 2537 your pay 2 +51523 2537 per view dollar 2 +51524 2537 view dollar 2 +51525 2538 The animation and backdrops are lush and inventive , yet Return to Neverland never manages to take us to that elusive , lovely place where we suspend our disbelief . 2 +51526 2538 The animation and backdrops are lush and inventive , yet Return to Neverland never manages to take us to that elusive , lovely place where we suspend our disbelief 3 +51527 2538 The animation and backdrops are lush and inventive , yet 3 +51528 2538 The animation and backdrops are lush and inventive , 4 +51529 2538 The animation and backdrops are lush and inventive 4 +51530 2538 The animation and backdrops 2 +51531 2538 The animation and 2 +51532 2538 are lush and inventive 4 +51533 2538 lush and inventive 4 +51534 2538 Return to Neverland never manages to take us to that elusive , lovely place where we suspend our disbelief 1 +51535 2538 never manages to take us to that elusive , lovely place where we suspend our disbelief 1 +51536 2538 manages to take us to that elusive , lovely place where we suspend our disbelief 4 +51537 2538 to take us to that elusive , lovely place where we suspend our disbelief 3 +51538 2538 take us to that elusive , lovely place where we suspend our disbelief 3 +51539 2538 take us to that elusive , lovely place 3 +51540 2538 to that elusive , lovely place 3 +51541 2538 that elusive , lovely place 3 +51542 2538 elusive , lovely place 3 +51543 2538 elusive , lovely 3 +51544 2538 , lovely 3 +51545 2538 where we suspend our disbelief 2 +51546 2538 we suspend our disbelief 2 +51547 2538 suspend our disbelief 2 +51548 2538 our disbelief 2 +51549 2538 disbelief 1 +51550 2539 The fetid underbelly of fame has never looked uglier . 1 +51551 2539 The fetid underbelly of fame 1 +51552 2539 The fetid underbelly 2 +51553 2539 fetid underbelly 1 +51554 2539 fetid 2 +51555 2539 underbelly 2 +51556 2539 of fame 2 +51557 2539 fame 2 +51558 2539 has never looked uglier . 1 +51559 2539 has never looked uglier 1 +51560 2539 looked uglier 1 +51561 2539 looked 2 +51562 2539 uglier 1 +51563 2540 Witless but watchable . 2 +51564 2540 but watchable . 2 +51565 2541 A sensitive and astute first feature by Anne-Sophie Birot . 3 +51566 2541 A sensitive and astute 3 +51567 2541 sensitive and astute 3 +51568 2541 sensitive and 3 +51569 2541 astute 2 +51570 2541 first feature by Anne-Sophie Birot . 2 +51571 2541 feature by Anne-Sophie Birot . 2 +51572 2541 feature by Anne-Sophie Birot 2 +51573 2541 by Anne-Sophie Birot 3 +51574 2541 Anne-Sophie Birot 2 +51575 2541 Anne-Sophie 2 +51576 2542 The charms of the lead performances allow us to forget most of the film 's problems . 3 +51577 2542 The charms of the lead performances 3 +51578 2542 The charms 2 +51579 2542 of the lead performances 2 +51580 2542 the lead performances 2 +51581 2542 allow us to forget most of the film 's problems . 2 +51582 2542 allow us to forget most of the film 's problems 2 +51583 2542 us to forget most of the film 's problems 1 +51584 2542 to forget most of the film 's problems 2 +51585 2542 forget most of the film 's problems 2 +51586 2542 most of the film 's problems 2 +51587 2542 of the film 's problems 1 +51588 2542 the film 's problems 1 +51589 2543 A dark comedy that goes for sick and demented humor simply to do so . 1 +51590 2543 A dark comedy that 2 +51591 2543 goes for sick and demented humor simply to do so . 1 +51592 2543 goes for sick and demented humor simply to do so 1 +51593 2543 goes for sick and demented humor simply 1 +51594 2543 for sick and demented humor simply 1 +51595 2543 for sick and demented humor 1 +51596 2543 sick and demented humor 0 +51597 2543 sick and demented 0 +51598 2543 demented 1 +51599 2543 to do so 2 +51600 2543 do so 2 +51601 2544 Together , Miller , Kuras and the actresses make Personal Velocity into an intricate , intimate and intelligent journey . 3 +51602 2544 , Miller , Kuras and the actresses make Personal Velocity into an intricate , intimate and intelligent journey . 3 +51603 2544 Miller , Kuras and the actresses make Personal Velocity into an intricate , intimate and intelligent journey . 2 +51604 2544 Miller , Kuras and the actresses 3 +51605 2544 Miller , Kuras and 2 +51606 2544 Miller , Kuras 2 +51607 2544 Miller , 2 +51608 2544 Kuras 2 +51609 2544 make Personal Velocity into an intricate , intimate and intelligent journey . 3 +51610 2544 make Personal Velocity into an intricate , intimate and intelligent journey 3 +51611 2544 make Personal Velocity 2 +51612 2544 Personal Velocity 3 +51613 2544 Velocity 2 +51614 2544 into an intricate , intimate and intelligent journey 4 +51615 2544 an intricate , intimate and intelligent journey 4 +51616 2544 intricate , intimate and intelligent journey 4 +51617 2544 intricate , intimate and intelligent 4 +51618 2544 intricate 2 +51619 2544 , intimate and intelligent 4 +51620 2544 intimate and intelligent 3 +51621 2544 intimate and 2 +51622 2545 A very well-meaning movie , and it will stand in future years as an eloquent memorial to the World Trade Center tragedy . 3 +51623 2545 A very well-meaning movie , and it 3 +51624 2545 A very well-meaning movie , and 3 +51625 2545 A very well-meaning movie , 3 +51626 2545 very well-meaning movie , 3 +51627 2545 very well-meaning 4 +51628 2545 movie , 2 +51629 2545 will stand in future years as an eloquent memorial to the World Trade Center tragedy . 4 +51630 2545 will stand in future years as an eloquent memorial to the World Trade Center tragedy 4 +51631 2545 stand in future years as an eloquent memorial to the World Trade Center tragedy 3 +51632 2545 stand in future years as an eloquent memorial 3 +51633 2545 in future years as an eloquent memorial 3 +51634 2545 future years as an eloquent memorial 3 +51635 2545 future years 2 +51636 2545 as an eloquent memorial 3 +51637 2545 an eloquent memorial 4 +51638 2545 eloquent memorial 3 +51639 2545 eloquent 4 +51640 2545 memorial 2 +51641 2545 to the World Trade Center tragedy 1 +51642 2545 the World Trade Center tragedy 2 +51643 2545 World Trade Center tragedy 1 +51644 2545 Trade Center tragedy 1 +51645 2545 Trade 2 +51646 2545 Center tragedy 2 +51647 2546 Though clearly well-intentioned , this cross-cultural soap opera is painfully formulaic and stilted . 1 +51648 2546 Though clearly well-intentioned 3 +51649 2546 clearly well-intentioned 3 +51650 2546 , this cross-cultural soap opera is painfully formulaic and stilted . 1 +51651 2546 this cross-cultural soap opera is painfully formulaic and stilted . 0 +51652 2546 this cross-cultural soap opera 2 +51653 2546 cross-cultural soap opera 2 +51654 2546 cross-cultural 2 +51655 2546 is painfully formulaic and stilted . 1 +51656 2546 is painfully formulaic and stilted 0 +51657 2546 painfully formulaic and stilted 0 +51658 2546 formulaic and stilted 1 +51659 2547 With so many bad romances out there , this is the kind of movie that deserves a chance to shine . 3 +51660 2547 With so many bad romances out there 2 +51661 2547 so many bad romances out there 1 +51662 2547 so many bad romances 2 +51663 2547 bad romances 1 +51664 2547 , this is the kind of movie that deserves a chance to shine . 3 +51665 2547 this is the kind of movie that deserves a chance to shine . 3 +51666 2547 is the kind of movie that deserves a chance to shine . 4 +51667 2547 is the kind of movie that deserves a chance to shine 3 +51668 2547 the kind of movie that deserves a chance to shine 3 +51669 2547 that deserves a chance to shine 3 +51670 2547 deserves a chance to shine 3 +51671 2547 a chance to shine 2 +51672 2547 chance to shine 3 +51673 2547 to shine 3 +51674 2547 shine 4 +51675 2548 -LRB- Shyamalan -RRB- continues to cut a swathe through mainstream Hollywood , while retaining an integrity and refusing to compromise his vision . 3 +51676 2548 continues to cut a swathe through mainstream Hollywood , while retaining an integrity and refusing to compromise his vision . 4 +51677 2548 continues to cut a swathe through mainstream Hollywood , while retaining an integrity and refusing to compromise his vision 3 +51678 2548 continues to cut a swathe through mainstream Hollywood , 2 +51679 2548 continues to cut a swathe through mainstream Hollywood 2 +51680 2548 to cut a swathe through mainstream Hollywood 3 +51681 2548 cut a swathe through mainstream Hollywood 2 +51682 2548 cut a swathe 2 +51683 2548 a swathe 2 +51684 2548 swathe 2 +51685 2548 through mainstream Hollywood 2 +51686 2548 mainstream Hollywood 3 +51687 2548 while retaining an integrity and refusing to compromise his vision 3 +51688 2548 retaining an integrity and refusing to compromise his vision 3 +51689 2548 retaining an integrity and 2 +51690 2548 retaining an integrity 3 +51691 2548 retaining 2 +51692 2548 an integrity 3 +51693 2548 refusing to compromise his vision 2 +51694 2548 refusing 2 +51695 2548 to compromise his vision 2 +51696 2548 compromise his vision 2 +51697 2548 his vision 2 +51698 2549 What redeems the film is the cast , particularly the Ya-Yas themselves . 3 +51699 2549 What redeems 2 +51700 2549 redeems 2 +51701 2549 the film is the cast , particularly the Ya-Yas themselves . 3 +51702 2549 is the cast , particularly the Ya-Yas themselves . 2 +51703 2549 is the cast , particularly the Ya-Yas themselves 3 +51704 2549 the cast , particularly the Ya-Yas themselves 2 +51705 2549 the cast , particularly the Ya-Yas 2 +51706 2549 the cast , particularly 2 +51707 2549 the cast , 2 +51708 2549 the Ya-Yas 2 +51709 2550 The only way to tolerate this insipid , brutally clueless film might be with a large dose of painkillers . 0 +51710 2550 The only way to tolerate this insipid , brutally clueless film 1 +51711 2550 only way to tolerate this insipid , brutally clueless film 2 +51712 2550 way to tolerate this insipid , brutally clueless film 1 +51713 2550 to tolerate this insipid , brutally clueless film 0 +51714 2550 tolerate this insipid , brutally clueless film 1 +51715 2550 this insipid , brutally clueless film 0 +51716 2550 insipid , brutally clueless film 0 +51717 2550 insipid , brutally clueless 1 +51718 2550 insipid 1 +51719 2550 , brutally clueless 1 +51720 2550 brutally clueless 1 +51721 2550 might be with a large dose of painkillers . 2 +51722 2550 might be with a large dose of painkillers 1 +51723 2550 be with a large dose of painkillers 1 +51724 2550 with a large dose of painkillers 1 +51725 2550 a large dose of painkillers 1 +51726 2550 a large dose 2 +51727 2550 large dose 2 +51728 2550 of painkillers 2 +51729 2550 painkillers 2 +51730 2551 One thing is for sure : This movie does not tell you a whole lot about Lily Chou-Chou . 2 +51731 2551 One thing is for sure : This movie does not tell you a whole lot about Lily Chou-Chou 2 +51732 2551 One thing is for sure : 2 +51733 2551 One thing is for sure 2 +51734 2551 is for sure 2 +51735 2551 for sure 3 +51736 2551 This movie does not tell you a whole lot about Lily Chou-Chou 2 +51737 2551 does not tell you a whole lot about Lily Chou-Chou 2 +51738 2551 tell you a whole lot about Lily Chou-Chou 2 +51739 2551 tell you 3 +51740 2551 a whole lot about Lily Chou-Chou 2 +51741 2551 a whole lot 3 +51742 2551 whole lot 2 +51743 2551 about Lily Chou-Chou 2 +51744 2551 Lily Chou-Chou 2 +51745 2551 Lily 2 +51746 2551 Chou-Chou 2 +51747 2552 `` Birthday Girl '' is an actor 's movie first and foremost . 3 +51748 2552 Birthday Girl '' is an actor 's movie first and foremost . 3 +51749 2552 '' is an actor 's movie first and foremost . 3 +51750 2552 is an actor 's movie first and foremost . 2 +51751 2552 is an actor 's movie first and foremost 2 +51752 2552 is an actor 's movie 2 +51753 2552 an actor 's movie 2 +51754 2552 first and foremost 2 +51755 2552 first and 1 +51756 2552 foremost 2 +51757 2553 Despite its floating narrative , this is a remarkably accessible and haunting film . 4 +51758 2553 Despite its floating narrative 1 +51759 2553 its floating narrative 3 +51760 2553 floating narrative 3 +51761 2553 , this is a remarkably accessible and haunting film . 4 +51762 2553 this is a remarkably accessible and haunting film . 3 +51763 2553 is a remarkably accessible and haunting film . 4 +51764 2553 is a remarkably accessible and haunting film 4 +51765 2553 a remarkably accessible and haunting film 4 +51766 2553 remarkably accessible and haunting film 4 +51767 2553 remarkably accessible and haunting 3 +51768 2553 accessible and haunting 2 +51769 2553 accessible and 3 +51770 2554 One of those movies that catches you up in something bigger than yourself , namely , an archetypal desire to enjoy good trash every now and then . 4 +51771 2554 One of those movies that catches you up in something bigger than yourself 3 +51772 2554 of those movies that catches you up in something bigger than yourself 3 +51773 2554 those movies that catches you up in something bigger than yourself 3 +51774 2554 that catches you up in something bigger than yourself 3 +51775 2554 catches you up in something bigger than yourself 4 +51776 2554 catches you up 2 +51777 2554 catches you 3 +51778 2554 catches 2 +51779 2554 in something bigger than yourself 2 +51780 2554 something bigger than yourself 3 +51781 2554 bigger than yourself 3 +51782 2554 than yourself 2 +51783 2554 , namely , an archetypal desire to enjoy good trash every now and then . 2 +51784 2554 namely , an archetypal desire to enjoy good trash every now and then . 3 +51785 2554 namely 2 +51786 2554 , an archetypal desire to enjoy good trash every now and then . 1 +51787 2554 an archetypal desire to enjoy good trash every now and then . 2 +51788 2554 an archetypal 2 +51789 2554 archetypal 2 +51790 2554 desire to enjoy good trash every now and then . 2 +51791 2554 desire to enjoy good trash every now and then 3 +51792 2554 to enjoy good trash every now and then 3 +51793 2554 enjoy good trash every now and then 2 +51794 2554 enjoy good trash 2 +51795 2554 good trash 3 +51796 2554 every now and then 2 +51797 2555 Now I can see why people thought I was too hard on `` The Mothman Prophecies '' . 2 +51798 2555 I can see why people thought I was too hard on `` The Mothman Prophecies '' . 2 +51799 2555 can see why people thought I was too hard on `` The Mothman Prophecies '' . 2 +51800 2555 can see why people thought I was too hard on `` The Mothman Prophecies '' 1 +51801 2555 see why people thought I was too hard on `` The Mothman Prophecies '' 1 +51802 2555 why people thought I was too hard on `` The Mothman Prophecies '' 2 +51803 2555 people thought I was too hard on `` The Mothman Prophecies '' 1 +51804 2555 thought I was too hard on `` The Mothman Prophecies '' 2 +51805 2555 I was too hard on `` The Mothman Prophecies '' 2 +51806 2555 was too hard on `` The Mothman Prophecies '' 2 +51807 2555 too hard on `` The Mothman Prophecies '' 2 +51808 2555 hard on `` The Mothman Prophecies '' 2 +51809 2555 on `` The Mothman Prophecies '' 2 +51810 2555 on `` The Mothman Prophecies 2 +51811 2555 on `` 2 +51812 2555 The Mothman Prophecies 2 +51813 2555 Mothman Prophecies 2 +51814 2555 Mothman 2 +51815 2555 Prophecies 2 +51816 2556 The most anti-human big studio picture since 3000 Miles to Graceland . 2 +51817 2556 The most anti-human big studio 2 +51818 2556 most anti-human big studio 2 +51819 2556 most anti-human 1 +51820 2556 anti-human 2 +51821 2556 big studio 2 +51822 2556 picture since 3000 Miles to Graceland . 2 +51823 2556 picture since 3000 Miles to Graceland 2 +51824 2556 picture since 3000 Miles 2 +51825 2556 since 3000 Miles 2 +51826 2556 3000 Miles 2 +51827 2556 Miles 2 +51828 2556 to Graceland 2 +51829 2556 Graceland 2 +51830 2557 The only thing `` swept away '' is the one hour and thirty-three minutes spent watching this waste of time . 0 +51831 2557 The only thing `` swept away '' is the one hour and thirty-three minutes 2 +51832 2557 `` swept away '' is the one hour and thirty-three minutes 2 +51833 2557 swept away '' is the one hour and thirty-three minutes 3 +51834 2557 swept away 4 +51835 2557 swept 2 +51836 2557 '' is the one hour and thirty-three minutes 2 +51837 2557 is the one hour and thirty-three minutes 2 +51838 2557 the one hour and thirty-three minutes 2 +51839 2557 the one hour and 2 +51840 2557 the one hour 2 +51841 2557 one hour 2 +51842 2557 thirty-three minutes 2 +51843 2557 thirty-three 2 +51844 2557 spent watching this waste of time . 0 +51845 2557 spent watching this waste of time 0 +51846 2557 watching this waste of time 0 +51847 2557 this waste of time 0 +51848 2557 this waste 1 +51849 2558 A preposterously melodramatic paean to gang-member teens in Brooklyn circa 1958 . 2 +51850 2558 A preposterously melodramatic paean to gang-member teens in Brooklyn circa 1 +51851 2558 A preposterously melodramatic paean 1 +51852 2558 preposterously melodramatic paean 1 +51853 2558 preposterously melodramatic 2 +51854 2558 preposterously 1 +51855 2558 paean 3 +51856 2558 to gang-member teens in Brooklyn circa 2 +51857 2558 gang-member teens in Brooklyn circa 2 +51858 2558 gang-member teens 2 +51859 2558 gang-member 2 +51860 2558 in Brooklyn circa 2 +51861 2558 Brooklyn circa 2 +51862 2558 circa 3 +51863 2558 1958 . 2 +51864 2558 1958 2 +51865 2559 Jacquot 's strategy allows his cast the benefit of being able to give full performances ... while demonstrating vividly that the beauty and power of the opera reside primarily in the music itself . 3 +51866 2559 Jacquot 's strategy 2 +51867 2559 Jacquot 's 2 +51868 2559 strategy 2 +51869 2559 allows his cast the benefit of being able to give full performances ... while demonstrating vividly that the beauty and power of the opera reside primarily in the music itself . 3 +51870 2559 allows his cast the benefit of being able to give full performances ... while demonstrating vividly that the beauty and power of the opera reside primarily in the music itself 4 +51871 2559 allows his cast the benefit of being able to give full performances ... 3 +51872 2559 allows his cast the benefit of being able to give full performances 3 +51873 2559 allows his cast 2 +51874 2559 the benefit of being able to give full performances 3 +51875 2559 the benefit 2 +51876 2559 benefit 3 +51877 2559 of being able to give full performances 3 +51878 2559 being able to give full performances 3 +51879 2559 able to give full performances 3 +51880 2559 to give full performances 2 +51881 2559 give full performances 3 +51882 2559 full performances 2 +51883 2559 while demonstrating vividly that the beauty and power of the opera reside primarily in the music itself 3 +51884 2559 demonstrating vividly that the beauty and power of the opera reside primarily in the music itself 4 +51885 2559 demonstrating vividly 3 +51886 2559 that the beauty and power of the opera reside primarily in the music itself 3 +51887 2559 the beauty and power of the opera reside primarily in the music itself 3 +51888 2559 the beauty and power of the opera 4 +51889 2559 the beauty and power 3 +51890 2559 beauty and power 2 +51891 2559 beauty and 2 +51892 2559 of the opera 2 +51893 2559 reside primarily in the music itself 2 +51894 2559 reside primarily 2 +51895 2559 reside 2 +51896 2559 in the music itself 2 +51897 2559 the music itself 2 +51898 2560 Visually captivating . 4 +51899 2560 captivating . 4 +51900 2561 Unfortunately , that 's precisely what Arthur Dong 's Family Fundamentals does . 1 +51901 2561 , that 's precisely what Arthur Dong 's Family Fundamentals does . 2 +51902 2561 that 's precisely what Arthur Dong 's Family Fundamentals does . 2 +51903 2561 's precisely what Arthur Dong 's Family Fundamentals does . 2 +51904 2561 's precisely what Arthur Dong 's Family Fundamentals does 2 +51905 2561 precisely what Arthur Dong 's Family Fundamentals does 2 +51906 2561 precisely what 2 +51907 2561 Arthur Dong 's Family Fundamentals does 2 +51908 2561 Arthur Dong 's Family Fundamentals 2 +51909 2561 Arthur Dong 's 2 +51910 2561 Dong 's 2 +51911 2562 While Hollywood Ending has its share of belly laughs -LRB- including a knockout of a closing line -RRB- , the movie winds up feeling like a great missed opportunity . 1 +51912 2562 While Hollywood Ending has its share of belly laughs -LRB- including a knockout of a closing line -RRB- 3 +51913 2562 Hollywood Ending has its share of belly laughs -LRB- including a knockout of a closing line -RRB- 2 +51914 2562 has its share of belly laughs -LRB- including a knockout of a closing line -RRB- 4 +51915 2562 its share of belly laughs -LRB- including a knockout of a closing line -RRB- 3 +51916 2562 its share 2 +51917 2562 of belly laughs -LRB- including a knockout of a closing line -RRB- 3 +51918 2562 belly laughs -LRB- including a knockout of a closing line -RRB- 3 +51919 2562 -LRB- including a knockout of a closing line -RRB- 3 +51920 2562 including a knockout of a closing line -RRB- 3 +51921 2562 including a knockout of a closing line 3 +51922 2562 a knockout of a closing line 3 +51923 2562 a knockout 3 +51924 2562 knockout 3 +51925 2562 of a closing line 2 +51926 2562 a closing line 2 +51927 2562 closing line 2 +51928 2562 closing 2 +51929 2562 , the movie winds up feeling like a great missed opportunity . 1 +51930 2562 the movie winds up feeling like a great missed opportunity . 1 +51931 2562 winds up feeling like a great missed opportunity . 1 +51932 2562 winds up feeling like a great missed opportunity 1 +51933 2562 feeling like a great missed opportunity 1 +51934 2562 like a great missed opportunity 1 +51935 2562 a great missed opportunity 1 +51936 2562 great missed opportunity 1 +51937 2562 missed opportunity 1 +51938 2563 The film itself is about something very interesting and odd that would probably work better as a real documentary without the insinuation of mediocre acting or a fairly trite narrative . 1 +51939 2563 The film itself is about something very interesting and odd that 3 +51940 2563 itself is about something very interesting and odd that 4 +51941 2563 is about something very interesting and odd that 3 +51942 2563 is about something 2 +51943 2563 about something 2 +51944 2563 very interesting and odd that 2 +51945 2563 very interesting and 4 +51946 2563 odd that 2 +51947 2563 would probably work better as a real documentary without the insinuation of mediocre acting or a fairly trite narrative . 2 +51948 2563 would probably work better as a real documentary without the insinuation of mediocre acting or a fairly trite narrative 1 +51949 2563 would probably 2 +51950 2563 work better as a real documentary without the insinuation of mediocre acting or a fairly trite narrative 1 +51951 2563 work better as a real documentary 2 +51952 2563 work better 3 +51953 2563 as a real documentary 2 +51954 2563 a real documentary 3 +51955 2563 real documentary 3 +51956 2563 without the insinuation of mediocre acting or a fairly trite narrative 2 +51957 2563 the insinuation of mediocre acting or a fairly trite narrative 1 +51958 2563 the insinuation of mediocre acting or 1 +51959 2563 the insinuation of mediocre acting 0 +51960 2563 the insinuation 2 +51961 2563 insinuation 2 +51962 2563 of mediocre acting 1 +51963 2563 mediocre acting 1 +51964 2563 a fairly trite narrative 2 +51965 2563 fairly trite narrative 3 +51966 2563 fairly trite 1 +51967 2564 Our culture is headed down the toilet with the ferocity of a frozen burrito after an all-night tequila bender -- and I know this because I 've seen ` jackass : the movie . ' 0 +51968 2564 Our culture is headed down the toilet with the ferocity of a frozen burrito after an all-night tequila bender -- and I know this because I 've seen ` jackass : the movie . 1 +51969 2564 Our culture is headed down the toilet with the ferocity of a frozen burrito after an all-night tequila bender -- and I know this because I 've seen ` jackass : the movie 1 +51970 2564 Our culture is headed down the toilet with the ferocity of a frozen burrito after an all-night tequila bender -- and 1 +51971 2564 Our culture is headed down the toilet with the ferocity of a frozen burrito after an all-night tequila bender -- 0 +51972 2564 Our culture is headed down the toilet with the ferocity of a frozen burrito after an all-night tequila bender 0 +51973 2564 Our culture 2 +51974 2564 is headed down the toilet with the ferocity of a frozen burrito after an all-night tequila bender 0 +51975 2564 headed down the toilet with the ferocity of a frozen burrito after an all-night tequila bender 0 +51976 2564 headed down the toilet with the ferocity of a frozen burrito 0 +51977 2564 headed 2 +51978 2564 down the toilet with the ferocity of a frozen burrito 1 +51979 2564 down the toilet 2 +51980 2564 the toilet 2 +51981 2564 with the ferocity of a frozen burrito 1 +51982 2564 the ferocity of a frozen burrito 2 +51983 2564 the ferocity 2 +51984 2564 of a frozen burrito 2 +51985 2564 a frozen burrito 2 +51986 2564 frozen burrito 2 +51987 2564 burrito 2 +51988 2564 after an all-night tequila bender 2 +51989 2564 an all-night tequila bender 2 +51990 2564 all-night tequila bender 2 +51991 2564 all-night 1 +51992 2564 tequila bender 3 +51993 2564 tequila 2 +51994 2564 bender 2 +51995 2564 I know this because I 've seen ` jackass : the movie 2 +51996 2564 know this because I 've seen ` jackass : the movie 2 +51997 2564 know this 2 +51998 2564 because I 've seen ` jackass : the movie 2 +51999 2564 I 've seen ` jackass : the movie 2 +52000 2564 've seen ` jackass : the movie 2 +52001 2564 seen ` jackass : the movie 2 +52002 2564 ` jackass : the movie 2 +52003 2564 jackass : the movie 2 +52004 2564 jackass : 2 +52005 2564 jackass 1 +52006 2565 Nothing short of a masterpiece -- and a challenging one . 4 +52007 2565 Nothing short of a masterpiece -- and a challenging one 4 +52008 2565 Nothing short 2 +52009 2565 of a masterpiece -- and a challenging one 3 +52010 2565 a masterpiece -- and a challenging one 4 +52011 2565 a masterpiece -- and 4 +52012 2565 a masterpiece -- 4 +52013 2565 a challenging one 2 +52014 2565 challenging one 2 +52015 2566 Frankly , it 's kind of insulting , both to men and women . 0 +52016 2566 Frankly 2 +52017 2566 , it 's kind of insulting , both to men and women . 0 +52018 2566 it 's kind of insulting , both to men and women . 0 +52019 2566 's kind of insulting , both to men and women . 2 +52020 2566 's kind of insulting , both to men and women 1 +52021 2566 's kind 2 +52022 2566 of insulting , both to men and women 1 +52023 2566 of insulting 2 +52024 2566 , both to men and women 2 +52025 2566 , both 2 +52026 2566 to men and women 2 +52027 2567 A respectable but uninspired thriller that 's intelligent and considered in its details , but ultimately weak in its impact . 2 +52028 2567 A respectable but uninspired thriller that 's intelligent and considered in its details , but ultimately weak in its impact 2 +52029 2567 A respectable but uninspired thriller 2 +52030 2567 respectable but uninspired thriller 1 +52031 2567 respectable but uninspired 2 +52032 2567 respectable but 2 +52033 2567 that 's intelligent and considered in its details , but ultimately weak in its impact 2 +52034 2567 's intelligent and considered in its details , but ultimately weak in its impact 2 +52035 2567 's intelligent and considered in its details , but ultimately weak 2 +52036 2567 intelligent and considered in its details , but ultimately weak 2 +52037 2567 intelligent and considered in its details , but 3 +52038 2567 intelligent and considered in its details , 3 +52039 2567 intelligent and considered in its details 3 +52040 2567 considered in its details 2 +52041 2567 in its details 2 +52042 2567 its details 2 +52043 2567 ultimately weak 1 +52044 2567 in its impact 2 +52045 2567 its impact 2 +52046 2568 One of the worst movies of the year . 0 +52047 2568 One of the worst movies of the year 1 +52048 2568 of the worst movies of the year 0 +52049 2568 the worst movies of the year 1 +52050 2568 the worst movies 1 +52051 2568 worst movies 0 +52052 2569 Ignore the reputation , and ignore the film . 1 +52053 2569 Ignore the reputation , and ignore the film 1 +52054 2569 Ignore the reputation , and 2 +52055 2569 Ignore the reputation , 2 +52056 2569 Ignore the reputation 2 +52057 2569 the reputation 2 +52058 2569 ignore the film 1 +52059 2570 Predictably soulless techno-tripe . 0 +52060 2570 soulless techno-tripe . 1 +52061 2570 soulless techno-tripe 0 +52062 2570 techno-tripe 1 +52063 2571 This English-language version ... does full honor to Miyazaki 's teeming and often unsettling landscape , and to the conflicted complexity of his characters . 2 +52064 2571 This English-language version 2 +52065 2571 English-language version 2 +52066 2571 English-language 2 +52067 2571 ... does full honor to Miyazaki 's teeming and often unsettling landscape , and to the conflicted complexity of his characters . 4 +52068 2571 does full honor to Miyazaki 's teeming and often unsettling landscape , and to the conflicted complexity of his characters . 3 +52069 2571 does full honor to Miyazaki 's teeming and often unsettling landscape , and to the conflicted complexity of his characters 3 +52070 2571 does full honor 3 +52071 2571 full honor 2 +52072 2571 honor 2 +52073 2571 to Miyazaki 's teeming and often unsettling landscape , and to the conflicted complexity of his characters 2 +52074 2571 to Miyazaki 's teeming and often unsettling landscape 2 +52075 2571 Miyazaki 's teeming and often unsettling landscape 2 +52076 2571 Miyazaki 's teeming and 2 +52077 2571 Miyazaki 's teeming 2 +52078 2571 Miyazaki 's 2 +52079 2571 often unsettling landscape 2 +52080 2571 often unsettling 1 +52081 2571 , and to the conflicted complexity of his characters 3 +52082 2571 to the conflicted complexity of his characters 2 +52083 2571 the conflicted complexity of his characters 3 +52084 2571 the conflicted complexity 1 +52085 2571 conflicted complexity 2 +52086 2571 of his characters 2 +52087 2572 The skills of a calculus major at M.I.T. are required to balance all the formulaic equations in the long-winded heist comedy Who Is Cletis Tout ? 1 +52088 2572 The skills of a calculus major at M.I.T. 3 +52089 2572 The skills 2 +52090 2572 skills 2 +52091 2572 of a calculus major at M.I.T. 2 +52092 2572 a calculus major at M.I.T. 2 +52093 2572 a calculus major 2 +52094 2572 calculus major 2 +52095 2572 calculus 2 +52096 2572 at M.I.T. 2 +52097 2572 M.I.T. 2 +52098 2572 are required to balance all the formulaic equations in the long-winded heist comedy Who Is Cletis Tout ? 1 +52099 2572 required to balance all the formulaic equations in the long-winded heist comedy Who Is Cletis Tout ? 1 +52100 2572 to balance all the formulaic equations in the long-winded heist comedy Who Is Cletis Tout ? 2 +52101 2572 to balance all the formulaic equations in the long-winded heist comedy 1 +52102 2572 balance all the formulaic equations in the long-winded heist comedy 1 +52103 2572 balance all the formulaic equations 2 +52104 2572 all the formulaic equations 2 +52105 2572 the formulaic equations 2 +52106 2572 formulaic equations 1 +52107 2572 equations 2 +52108 2572 in the long-winded heist comedy 1 +52109 2572 the long-winded heist comedy 2 +52110 2572 long-winded heist comedy 2 +52111 2572 long-winded 1 +52112 2572 heist comedy 2 +52113 2572 Who Is Cletis Tout ? 2 +52114 2572 Is Cletis Tout ? 2 +52115 2572 Is Cletis Tout 2 +52116 2572 Cletis Tout 2 +52117 2572 Cletis 2 +52118 2572 Tout 2 +52119 2573 Expect no major discoveries , nor any stylish sizzle , but the film sits with square conviction and touching good sense on the experience of its women . 3 +52120 2573 Expect no major discoveries , nor any stylish sizzle , but the film sits with square conviction and touching good sense on the experience of its women 3 +52121 2573 Expect no major discoveries , nor any stylish sizzle , 1 +52122 2573 Expect no major discoveries , nor any stylish sizzle 2 +52123 2573 no major discoveries , nor any stylish sizzle 1 +52124 2573 no major discoveries , nor 2 +52125 2573 no major discoveries , 2 +52126 2573 no major discoveries 2 +52127 2573 major discoveries 2 +52128 2573 discoveries 3 +52129 2573 any stylish sizzle 3 +52130 2573 stylish sizzle 3 +52131 2573 but the film sits with square conviction and touching good sense on the experience of its women 2 +52132 2573 the film sits with square conviction and touching good sense on the experience of its women 4 +52133 2573 the film sits with square conviction and 2 +52134 2573 the film sits with square conviction 3 +52135 2573 sits with square conviction 2 +52136 2573 sits 2 +52137 2573 with square conviction 3 +52138 2573 square conviction 2 +52139 2573 touching good sense on the experience of its women 3 +52140 2573 touching good sense 3 +52141 2573 on the experience of its women 2 +52142 2573 the experience of its women 2 +52143 2573 of its women 2 +52144 2573 its women 2 +52145 2574 Nicholson 's understated performance is wonderful . 4 +52146 2574 Nicholson 's understated performance 2 +52147 2574 understated performance 2 +52148 2574 is wonderful . 4 +52149 2574 is wonderful 4 +52150 2575 It 's just that it 's so not-at-all-good . 1 +52151 2575 's just that it 's so not-at-all-good . 0 +52152 2575 's just that it 's so not-at-all-good 0 +52153 2575 just that it 's so not-at-all-good 0 +52154 2575 that it 's so not-at-all-good 0 +52155 2575 it 's so not-at-all-good 0 +52156 2575 's so not-at-all-good 0 +52157 2575 so not-at-all-good 0 +52158 2575 not-at-all-good 0 +52159 2576 I suspect that there are more interesting ways of dealing with the subject . 1 +52160 2576 suspect that there are more interesting ways of dealing with the subject . 2 +52161 2576 suspect that there are more interesting ways of dealing with the subject 1 +52162 2576 that there are more interesting ways of dealing with the subject 1 +52163 2576 there are more interesting ways of dealing with the subject 2 +52164 2576 are more interesting ways of dealing with the subject 1 +52165 2576 more interesting ways of dealing with the subject 2 +52166 2576 more interesting ways 2 +52167 2576 of dealing with the subject 2 +52168 2576 dealing with the subject 2 +52169 2576 with the subject 2 +52170 2577 It 's a quirky , off-beat project . 3 +52171 2577 's a quirky , off-beat project . 2 +52172 2577 's a quirky , off-beat project 2 +52173 2577 a quirky , off-beat project 3 +52174 2577 quirky , off-beat project 3 +52175 2577 , off-beat project 2 +52176 2577 off-beat project 2 +52177 2577 off-beat 1 +52178 2578 We have poignancy jostling against farce , thoughtful dialogue elbowed aside by one-liners , and a visual style that incorporates rotoscope animation for no apparent reason except , maybe , that it looks neat . 1 +52179 2578 have poignancy jostling against farce , thoughtful dialogue elbowed aside by one-liners , and a visual style that incorporates rotoscope animation for no apparent reason except , maybe , that it looks neat . 1 +52180 2578 have poignancy jostling against farce , thoughtful dialogue elbowed aside by one-liners , and a visual style that incorporates rotoscope animation for no apparent reason except , maybe , that it looks neat 2 +52181 2578 poignancy jostling against farce , thoughtful dialogue elbowed aside by one-liners , and a visual style that incorporates rotoscope animation for no apparent reason except , maybe , that it looks neat 1 +52182 2578 jostling against farce , thoughtful dialogue elbowed aside by one-liners , and a visual style that incorporates rotoscope animation for no apparent reason except , maybe , that it looks neat 0 +52183 2578 jostling against farce , thoughtful dialogue elbowed aside by one-liners , and a visual style that incorporates rotoscope animation for no apparent reason except , maybe , 1 +52184 2578 jostling against farce , thoughtful dialogue elbowed aside by one-liners , and a visual style that incorporates rotoscope animation for no apparent reason except , maybe 1 +52185 2578 jostling against farce , thoughtful dialogue elbowed aside by one-liners , and a visual style that incorporates rotoscope animation for no apparent reason except , 1 +52186 2578 jostling against farce , thoughtful dialogue elbowed aside by one-liners , and a visual style that incorporates rotoscope animation for no apparent reason except 2 +52187 2578 jostling 2 +52188 2578 against farce , thoughtful dialogue elbowed aside by one-liners , and a visual style that incorporates rotoscope animation for no apparent reason except 1 +52189 2578 farce , thoughtful dialogue elbowed aside by one-liners , and a visual style that incorporates rotoscope animation for no apparent reason except 1 +52190 2578 farce , 1 +52191 2578 thoughtful dialogue elbowed aside by one-liners , and a visual style that incorporates rotoscope animation for no apparent reason except 1 +52192 2578 thoughtful dialogue elbowed aside by one-liners , and 2 +52193 2578 thoughtful dialogue elbowed aside by one-liners , 2 +52194 2578 thoughtful dialogue elbowed aside by one-liners 2 +52195 2578 thoughtful dialogue 3 +52196 2578 elbowed aside by one-liners 1 +52197 2578 elbowed aside 1 +52198 2578 elbowed 2 +52199 2578 by one-liners 2 +52200 2578 one-liners 2 +52201 2578 a visual style that incorporates rotoscope animation for no apparent reason except 1 +52202 2578 that incorporates rotoscope animation for no apparent reason except 2 +52203 2578 incorporates rotoscope animation for no apparent reason except 1 +52204 2578 incorporates 2 +52205 2578 rotoscope animation for no apparent reason except 1 +52206 2578 rotoscope animation 2 +52207 2578 rotoscope 2 +52208 2578 for no apparent reason except 1 +52209 2578 no apparent reason except 1 +52210 2578 apparent reason except 2 +52211 2578 reason except 2 +52212 2578 that it looks neat 3 +52213 2578 it looks neat 3 +52214 2578 looks neat 3 +52215 2579 Stuffy , full of itself , morally ambiguous and nothing to shout about . 1 +52216 2579 Stuffy , full of itself , 1 +52217 2579 Stuffy , full of itself 0 +52218 2579 Stuffy , 1 +52219 2579 Stuffy 1 +52220 2579 full of itself 1 +52221 2579 of itself 2 +52222 2579 morally ambiguous and nothing to shout about . 1 +52223 2579 morally ambiguous and nothing to shout about 1 +52224 2579 ambiguous and nothing to shout about 2 +52225 2579 ambiguous and nothing 3 +52226 2579 ambiguous and 2 +52227 2579 ambiguous 3 +52228 2579 to shout about 2 +52229 2579 shout about 2 +52230 2580 As the dominant Christine , Sylvie Testud is icily brilliant . 3 +52231 2580 As the dominant Christine 2 +52232 2580 the dominant Christine 2 +52233 2580 dominant Christine 2 +52234 2580 Christine 2 +52235 2580 , Sylvie Testud is icily brilliant . 4 +52236 2580 Sylvie Testud is icily brilliant . 4 +52237 2580 Sylvie Testud 2 +52238 2580 Sylvie 2 +52239 2580 Testud 2 +52240 2580 is icily brilliant . 4 +52241 2580 is icily brilliant 4 +52242 2580 icily brilliant 4 +52243 2580 icily 2 +52244 2581 The effort is sincere and the results are honest , but the film is so bleak that it 's hardly watchable . 0 +52245 2581 The effort is sincere and the results are honest , but the film is so bleak that it 's hardly watchable 1 +52246 2581 The effort is sincere and the results are honest , but 2 +52247 2581 The effort is sincere and the results are honest , 3 +52248 2581 The effort is sincere and the results are honest 3 +52249 2581 The effort is sincere and 3 +52250 2581 The effort is sincere 3 +52251 2581 is sincere 3 +52252 2581 the results are honest 3 +52253 2581 are honest 2 +52254 2581 the film is so bleak that it 's hardly watchable 0 +52255 2581 is so bleak that it 's hardly watchable 0 +52256 2581 is so bleak 1 +52257 2581 so bleak 1 +52258 2581 that it 's hardly watchable 0 +52259 2581 it 's hardly watchable 0 +52260 2581 's hardly watchable 0 +52261 2581 hardly watchable 1 +52262 2582 Viva le Resistance ! 3 +52263 2582 Viva le Resistance 3 +52264 2582 Viva le 3 +52265 2582 Viva 2 +52266 2582 le 2 +52267 2583 Every child 's story is what matters . 2 +52268 2583 Every child 's story 2 +52269 2583 Every child 's 2 +52270 2583 child 's 2 +52271 2583 child 2 +52272 2583 is what matters . 3 +52273 2583 is what matters 2 +52274 2583 what matters 2 +52275 2584 Spend your Benjamins on a matinee . 2 +52276 2584 Spend your Benjamins on a matinee 2 +52277 2584 Spend your Benjamins 2 +52278 2584 your Benjamins 2 +52279 2584 on a matinee 2 +52280 2584 a matinee 2 +52281 2584 matinee 2 +52282 2585 ... a lesson in prehistoric hilarity . 2 +52283 2585 a lesson in prehistoric hilarity . 3 +52284 2585 a lesson in prehistoric hilarity 2 +52285 2585 a lesson 2 +52286 2585 in prehistoric hilarity 3 +52287 2585 prehistoric hilarity 3 +52288 2585 prehistoric 2 +52289 2586 A tone of rueful compassion ... reverberates throughout this film , whose meaning and impact is sadly heightened by current world events . 3 +52290 2586 A tone of rueful compassion ... reverberates throughout this film , whose meaning and impact is sadly heightened by current world events 3 +52291 2586 A tone of rueful compassion ... 3 +52292 2586 A tone of rueful compassion 2 +52293 2586 A tone 2 +52294 2586 of rueful compassion 2 +52295 2586 rueful compassion 2 +52296 2586 rueful 2 +52297 2586 reverberates throughout this film , whose meaning and impact is sadly heightened by current world events 3 +52298 2586 reverberates 2 +52299 2586 throughout this film , whose meaning and impact is sadly heightened by current world events 2 +52300 2586 this film , whose meaning and impact is sadly heightened by current world events 3 +52301 2586 this film , 2 +52302 2586 whose meaning and impact is sadly heightened by current world events 2 +52303 2586 whose meaning and impact 2 +52304 2586 whose meaning and 3 +52305 2586 whose meaning 2 +52306 2586 is sadly heightened by current world events 3 +52307 2586 is sadly 1 +52308 2586 heightened by current world events 2 +52309 2586 heightened 2 +52310 2586 by current world events 2 +52311 2586 current world events 2 +52312 2587 The overall fabric is hypnotic , and Mr. Mattei fosters moments of spontaneous intimacy . 4 +52313 2587 The overall fabric is hypnotic , and Mr. Mattei fosters moments of spontaneous intimacy 4 +52314 2587 The overall fabric is hypnotic , and 3 +52315 2587 The overall fabric is hypnotic , 3 +52316 2587 The overall fabric is hypnotic 3 +52317 2587 The overall fabric 2 +52318 2587 overall fabric 2 +52319 2587 is hypnotic 3 +52320 2587 Mr. Mattei fosters moments of spontaneous intimacy 2 +52321 2587 Mr. Mattei 2 +52322 2587 fosters moments of spontaneous intimacy 3 +52323 2587 fosters 2 +52324 2587 moments of spontaneous intimacy 2 +52325 2587 of spontaneous intimacy 2 +52326 2587 spontaneous intimacy 3 +52327 2587 spontaneous 3 +52328 2588 If there was any doubt that Peter O'Fallon did n't have an original bone in his body , A Rumor of Angels should dispel it . 0 +52329 2588 If there was any doubt that Peter O'Fallon did n't have an original bone in his body 2 +52330 2588 there was any doubt that Peter O'Fallon did n't have an original bone in his body 1 +52331 2588 was any doubt that Peter O'Fallon did n't have an original bone in his body 1 +52332 2588 any doubt that Peter O'Fallon did n't have an original bone in his body 1 +52333 2588 doubt that Peter O'Fallon did n't have an original bone in his body 1 +52334 2588 that Peter O'Fallon did n't have an original bone in his body 1 +52335 2588 Peter O'Fallon did n't have an original bone in his body 1 +52336 2588 did n't have an original bone in his body 0 +52337 2588 have an original bone in his body 1 +52338 2588 an original bone in his body 2 +52339 2588 an original bone 3 +52340 2588 original bone 2 +52341 2588 in his body 2 +52342 2588 his body 3 +52343 2588 , A Rumor of Angels should dispel it . 2 +52344 2588 A Rumor of Angels should dispel it . 1 +52345 2588 A Rumor of Angels 2 +52346 2588 A Rumor 2 +52347 2588 Rumor 1 +52348 2588 of Angels 2 +52349 2588 Angels 2 +52350 2588 should dispel it . 2 +52351 2588 should dispel it 1 +52352 2588 dispel it 2 +52353 2588 dispel 2 +52354 2589 The animated sequences are well done and perfectly constructed to convey a sense of childhood imagination and creating adventure out of angst . 4 +52355 2589 The animated sequences are well done and perfectly constructed to convey a sense of childhood imagination and creating adventure out of angst 4 +52356 2589 The animated sequences are well done and perfectly constructed to convey a sense of childhood imagination and 3 +52357 2589 The animated sequences are well done and perfectly constructed to convey a sense of childhood imagination 4 +52358 2589 The animated sequences 2 +52359 2589 animated sequences 2 +52360 2589 are well done and perfectly constructed to convey a sense of childhood imagination 3 +52361 2589 are well done and perfectly 3 +52362 2589 well done and perfectly 4 +52363 2589 done and perfectly 3 +52364 2589 done and 2 +52365 2589 constructed to convey a sense of childhood imagination 4 +52366 2589 to convey a sense of childhood imagination 3 +52367 2589 convey a sense of childhood imagination 3 +52368 2589 a sense of childhood imagination 3 +52369 2589 of childhood imagination 2 +52370 2589 childhood imagination 4 +52371 2589 creating adventure out of angst 2 +52372 2589 creating adventure out 2 +52373 2589 creating adventure 2 +52374 2589 of angst 2 +52375 2590 Choppy , overlong documentary about ` The Lifestyle . ' 1 +52376 2590 , overlong documentary about ` The Lifestyle . ' 2 +52377 2590 overlong documentary about ` The Lifestyle . ' 2 +52378 2590 overlong documentary about ` The Lifestyle . 1 +52379 2590 overlong documentary about ` The Lifestyle 2 +52380 2590 overlong documentary 1 +52381 2590 about ` The Lifestyle 2 +52382 2590 about ` 2 +52383 2590 The Lifestyle 2 +52384 2591 Due to stodgy , soap opera-ish dialogue , the rest of the cast comes across as stick figures reading lines from a TelePrompTer . 0 +52385 2591 Due to stodgy , soap opera-ish dialogue 1 +52386 2591 to stodgy , soap opera-ish dialogue 1 +52387 2591 stodgy , soap opera-ish dialogue 0 +52388 2591 stodgy 1 +52389 2591 , soap opera-ish dialogue 1 +52390 2591 soap opera-ish dialogue 1 +52391 2591 opera-ish dialogue 1 +52392 2591 opera-ish 2 +52393 2591 , the rest of the cast comes across as stick figures reading lines from a TelePrompTer . 0 +52394 2591 the rest of the cast comes across as stick figures reading lines from a TelePrompTer . 1 +52395 2591 comes across as stick figures reading lines from a TelePrompTer . 0 +52396 2591 comes across as stick figures reading lines from a TelePrompTer 0 +52397 2591 as stick figures reading lines from a TelePrompTer 1 +52398 2591 stick figures reading lines from a TelePrompTer 1 +52399 2591 stick figures 2 +52400 2591 reading lines from a TelePrompTer 1 +52401 2591 reading lines 1 +52402 2591 from a TelePrompTer 2 +52403 2591 a TelePrompTer 2 +52404 2591 TelePrompTer 2 +52405 2592 I have n't laughed that hard in years ! 4 +52406 2592 have n't laughed that hard in years ! 4 +52407 2592 have n't laughed that hard in years 4 +52408 2592 laughed that hard in years 4 +52409 2592 laughed that hard 4 +52410 2592 that hard 2 +52411 2593 With a cast of A-list Brit actors , it is worth searching out . 4 +52412 2593 With a cast of A-list Brit actors 3 +52413 2593 a cast of A-list Brit actors 3 +52414 2593 a cast 2 +52415 2593 of A-list Brit actors 3 +52416 2593 A-list Brit actors 3 +52417 2593 Brit actors 2 +52418 2593 , it is worth searching out . 3 +52419 2593 it is worth searching out . 3 +52420 2593 is worth searching out . 3 +52421 2593 is worth searching out 3 +52422 2593 searching out 2 +52423 2593 searching 2 +52424 2594 The new film of Anton Chekhov 's The Cherry Orchard puts the ` ick ' in ` classic . ' 1 +52425 2594 The new film of Anton Chekhov 's The Cherry Orchard 3 +52426 2594 of Anton Chekhov 's The Cherry Orchard 2 +52427 2594 Anton Chekhov 's The Cherry Orchard 2 +52428 2594 Anton Chekhov 's 2 +52429 2594 Anton 2 +52430 2594 Chekhov 's 2 +52431 2594 The Cherry Orchard 2 +52432 2594 Cherry Orchard 2 +52433 2594 Cherry 2 +52434 2594 Orchard 2 +52435 2594 puts the ` ick ' in ` classic . ' 2 +52436 2594 puts the ` ick ' in ` classic . 1 +52437 2594 puts the ` ick ' in ` classic 2 +52438 2594 the ` ick ' in ` classic 1 +52439 2594 the ` ick ' 1 +52440 2594 ` ick ' 1 +52441 2594 ick ' 0 +52442 2594 ick 1 +52443 2594 in ` classic 2 +52444 2595 The movie is well crafted , and well executed . 4 +52445 2595 is well crafted , and well executed . 4 +52446 2595 is well crafted , and well executed 4 +52447 2595 crafted , and well executed 4 +52448 2595 crafted , and well 3 +52449 2595 crafted , and 2 +52450 2596 It 's anchored by splendid performances from an honored screen veteran and a sparkling newcomer who instantly transform themselves into a believable mother\/daughter pair . 4 +52451 2596 's anchored by splendid performances from an honored screen veteran and a sparkling newcomer who instantly transform themselves into a believable mother\/daughter pair . 4 +52452 2596 's anchored by splendid performances from an honored screen veteran and a sparkling newcomer who instantly transform themselves into a believable mother\/daughter pair 4 +52453 2596 anchored by splendid performances from an honored screen veteran and a sparkling newcomer who instantly transform themselves into a believable mother\/daughter pair 4 +52454 2596 anchored by splendid performances 3 +52455 2596 anchored 2 +52456 2596 by splendid performances 4 +52457 2596 splendid performances 4 +52458 2596 from an honored screen veteran and a sparkling newcomer who instantly transform themselves into a believable mother\/daughter pair 4 +52459 2596 an honored screen veteran and a sparkling newcomer who instantly transform themselves into a believable mother\/daughter pair 4 +52460 2596 an honored screen veteran and 2 +52461 2596 an honored screen veteran 3 +52462 2596 honored screen veteran 3 +52463 2596 honored 2 +52464 2596 screen veteran 2 +52465 2596 a sparkling newcomer who instantly transform themselves into a believable mother\/daughter pair 4 +52466 2596 a sparkling newcomer 3 +52467 2596 sparkling newcomer 3 +52468 2596 who instantly transform themselves into a believable mother\/daughter pair 3 +52469 2596 instantly transform themselves into a believable mother\/daughter pair 4 +52470 2596 transform themselves into a believable mother\/daughter pair 3 +52471 2596 transform themselves 2 +52472 2596 transform 2 +52473 2596 into a believable mother\/daughter pair 3 +52474 2596 a believable mother\/daughter pair 3 +52475 2596 believable mother\/daughter pair 3 +52476 2596 mother\/daughter pair 2 +52477 2597 Would Benigni 's Italian Pinocchio have been any easier to sit through than this hastily dubbed disaster ? 0 +52478 2597 Would Benigni 's Italian Pinocchio have been any easier to sit through than this hastily dubbed disaster 0 +52479 2597 Would Benigni 's Italian Pinocchio 2 +52480 2597 Benigni 's Italian Pinocchio 2 +52481 2597 Italian Pinocchio 3 +52482 2597 have been any easier to sit through than this hastily dubbed disaster 1 +52483 2597 been any easier to sit through than this hastily dubbed disaster 1 +52484 2597 any easier to sit through than this hastily dubbed disaster 1 +52485 2597 easier to sit through than this hastily dubbed disaster 2 +52486 2597 to sit through than this hastily dubbed disaster 0 +52487 2597 sit through than this hastily dubbed disaster 0 +52488 2597 than this hastily dubbed disaster 0 +52489 2597 this hastily dubbed disaster 2 +52490 2597 hastily dubbed disaster 2 +52491 2597 hastily dubbed 1 +52492 2598 Despite an overwrought ending , the film works as well as it does because of the performances . 3 +52493 2598 Despite an overwrought ending 2 +52494 2598 an overwrought ending 2 +52495 2598 overwrought ending 1 +52496 2598 , the film works as well as it does because of the performances . 3 +52497 2598 the film works as well as it does because of the performances . 3 +52498 2598 works as well as it does because of the performances . 2 +52499 2598 works as well as it does because of the performances 3 +52500 2598 as well as it does because of the performances 3 +52501 2598 as it does because of the performances 2 +52502 2598 it does because of the performances 2 +52503 2598 does because of the performances 2 +52504 2598 because of the performances 2 +52505 2598 of the performances 2 +52506 2599 Cinematic pyrotechnics aside , the only thing Avary seems to care about are mean giggles and pulchritude . 1 +52507 2599 Cinematic pyrotechnics aside 2 +52508 2599 Cinematic pyrotechnics 2 +52509 2599 pyrotechnics 2 +52510 2599 , the only thing Avary seems to care about are mean giggles and pulchritude . 2 +52511 2599 the only thing Avary seems to care about are mean giggles and pulchritude . 1 +52512 2599 the only thing Avary seems to care about 1 +52513 2599 Avary seems to care about 3 +52514 2599 Avary 2 +52515 2599 seems to care about 2 +52516 2599 are mean giggles and pulchritude . 1 +52517 2599 are mean giggles and pulchritude 2 +52518 2599 mean giggles and pulchritude 2 +52519 2599 giggles and pulchritude 2 +52520 2599 giggles and 3 +52521 2599 giggles 3 +52522 2599 pulchritude 2 +52523 2600 The good is very , very good ... The rest runs from mildly unimpressive to despairingly awful . 2 +52524 2600 The good is very , very good ... The rest runs from mildly unimpressive to despairingly awful 3 +52525 2600 The good is very , very good ... 4 +52526 2600 The good is very , very good 4 +52527 2600 is very , very good 4 +52528 2600 very , very good 4 +52529 2600 , very good 3 +52530 2600 The rest runs from mildly unimpressive to despairingly awful 0 +52531 2600 runs from mildly unimpressive to despairingly awful 0 +52532 2600 from mildly unimpressive to despairingly awful 0 +52533 2600 mildly unimpressive to despairingly awful 0 +52534 2600 mildly unimpressive 1 +52535 2600 unimpressive 1 +52536 2600 to despairingly awful 0 +52537 2600 despairingly awful 0 +52538 2600 despairingly 2 +52539 2601 Watching these two actors play against each other so intensely , but with restraint , is a treat . 3 +52540 2601 Watching these two actors play against each other so intensely , but with restraint 3 +52541 2601 Watching these two actors play 3 +52542 2601 these two actors play 2 +52543 2601 two actors play 2 +52544 2601 actors play 2 +52545 2601 against each other so intensely , but with restraint 2 +52546 2601 each other so intensely , but with restraint 3 +52547 2601 so intensely , but with restraint 3 +52548 2601 so intensely 2 +52549 2601 , but with restraint 1 +52550 2601 with restraint 2 +52551 2601 restraint 2 +52552 2601 , is a treat . 3 +52553 2601 is a treat . 4 +52554 2601 is a treat 4 +52555 2601 a treat 3 +52556 2602 What 's the most positive thing that can be said about the new Rob Schneider vehicle ? 2 +52557 2602 's the most positive thing that can be said about the new Rob Schneider vehicle ? 2 +52558 2602 's the most positive thing that can be said about the new Rob Schneider vehicle 3 +52559 2602 the most positive thing that can be said about the new Rob Schneider vehicle 1 +52560 2602 the most positive thing 3 +52561 2602 most positive thing 2 +52562 2602 that can be said about the new Rob Schneider vehicle 2 +52563 2602 can be said about the new Rob Schneider vehicle 2 +52564 2602 be said about the new Rob Schneider vehicle 2 +52565 2602 said about the new Rob Schneider vehicle 2 +52566 2602 about the new Rob Schneider vehicle 2 +52567 2602 the new Rob Schneider vehicle 2 +52568 2602 new Rob Schneider vehicle 2 +52569 2602 Rob Schneider vehicle 2 +52570 2602 Schneider vehicle 2 +52571 2603 Too infuriatingly quirky and taken with its own style . 1 +52572 2603 infuriatingly quirky and taken with its own style . 1 +52573 2603 infuriatingly 2 +52574 2603 quirky and taken with its own style . 2 +52575 2603 quirky and taken with its own style 3 +52576 2603 quirky and 2 +52577 2603 taken with its own style 2 +52578 2603 with its own style 2 +52579 2603 its own style 3 +52580 2603 own style 3 +52581 2604 Watching Queen of the Damned is like reading a research paper , with special effects tossed in . 1 +52582 2604 Watching Queen of the Damned 2 +52583 2604 Watching Queen 2 +52584 2604 is like reading a research paper , with special effects tossed in . 2 +52585 2604 is like reading a research paper , with special effects tossed in 1 +52586 2604 is like reading a research paper , 1 +52587 2604 is like reading a research paper 1 +52588 2604 like reading a research paper 3 +52589 2604 reading a research paper 2 +52590 2604 a research paper 2 +52591 2604 research paper 2 +52592 2604 with special effects tossed in 2 +52593 2604 special effects tossed in 2 +52594 2604 tossed in 3 +52595 2604 tossed 2 +52596 2605 Adam Sandler 's Eight Crazy Nights grows on you -- like a rash . 0 +52597 2605 Adam Sandler 's Eight Crazy Nights 2 +52598 2605 Adam Sandler 's 2 +52599 2605 Eight Crazy Nights 2 +52600 2605 Crazy Nights 2 +52601 2605 grows on you -- like a rash . 0 +52602 2605 grows on you -- like a rash 1 +52603 2605 grows on you -- 3 +52604 2605 grows on you 3 +52605 2605 on you 2 +52606 2605 like a rash 1 +52607 2605 a rash 2 +52608 2605 rash 1 +52609 2606 The actresses may have worked up a back story for the women they portray so convincingly , but viewers do n't get enough of that background for the characters to be involving as individuals rather than types . 2 +52610 2606 The actresses may have worked up a back story for the women they portray so convincingly , but viewers do n't get enough of that background for the characters to be involving as individuals rather than types 2 +52611 2606 The actresses may have worked up a back story for the women they portray so convincingly , but 2 +52612 2606 The actresses may have worked up a back story for the women they portray so convincingly , 3 +52613 2606 The actresses may have worked up a back story for the women they portray so convincingly 3 +52614 2606 may have worked up a back story for the women they portray so convincingly 3 +52615 2606 have worked up a back story for the women they portray so convincingly 3 +52616 2606 worked up a back story for the women they portray so convincingly 2 +52617 2606 worked up a back story for the women 2 +52618 2606 worked up 2 +52619 2606 a back story for the women 2 +52620 2606 a back story 2 +52621 2606 back story 2 +52622 2606 for the women 2 +52623 2606 the women 2 +52624 2606 they portray so convincingly 4 +52625 2606 portray so convincingly 3 +52626 2606 so convincingly 3 +52627 2606 viewers do n't get enough of that background for the characters to be involving as individuals rather than types 2 +52628 2606 do n't get enough of that background for the characters to be involving as individuals rather than types 1 +52629 2606 get enough of that background for the characters to be involving as individuals rather than types 3 +52630 2606 get enough of that background for the characters 2 +52631 2606 enough of that background for the characters 2 +52632 2606 of that background for the characters 2 +52633 2606 that background for the characters 2 +52634 2606 that background 2 +52635 2606 for the characters 2 +52636 2606 to be involving as individuals rather than types 3 +52637 2606 be involving as individuals rather than types 2 +52638 2606 involving as individuals rather than types 2 +52639 2606 as individuals rather than types 2 +52640 2606 individuals rather than types 2 +52641 2606 individuals rather than 2 +52642 2606 individuals 2 +52643 2607 A complex psychological drama about a father who returns to his son 's home after decades away . 3 +52644 2607 A complex psychological drama about a father who returns to his son 's home after decades away 2 +52645 2607 A complex psychological drama 3 +52646 2607 complex psychological drama 2 +52647 2607 about a father who returns to his son 's home after decades away 2 +52648 2607 a father who returns to his son 's home after decades away 2 +52649 2607 a father 2 +52650 2607 who returns to his son 's home after decades away 2 +52651 2607 returns to his son 's home after decades away 2 +52652 2607 returns to his son 's home after decades 2 +52653 2607 returns to his son 's home 3 +52654 2607 to his son 's home 3 +52655 2607 his son 's home 2 +52656 2607 his son 's 2 +52657 2607 son 's 2 +52658 2607 after decades 3 +52659 2608 The movie is so contrived , nonsensical and formulaic that , come to think of it , the day-old shelf would be a more appropriate location to store it . 0 +52660 2608 is so contrived , nonsensical and formulaic that , come to think of it , the day-old shelf would be a more appropriate location to store it . 2 +52661 2608 is so contrived , nonsensical and formulaic that , come to think of it , the day-old shelf would be a more appropriate location to store it 1 +52662 2608 is so contrived , nonsensical and formulaic 2 +52663 2608 is so 2 +52664 2608 contrived , nonsensical and formulaic 0 +52665 2608 , nonsensical and formulaic 1 +52666 2608 nonsensical and formulaic 1 +52667 2608 nonsensical and 1 +52668 2608 nonsensical 1 +52669 2608 that , come to think of it , the day-old shelf would be a more appropriate location to store it 1 +52670 2608 that , come to think of it , 2 +52671 2608 , come to think of it , 2 +52672 2608 come to think of it , 2 +52673 2608 come to think of it 2 +52674 2608 to think of it 2 +52675 2608 think of it 2 +52676 2608 the day-old shelf would be a more appropriate location to store it 1 +52677 2608 the day-old shelf 1 +52678 2608 day-old shelf 2 +52679 2608 day-old 2 +52680 2608 would be a more appropriate location to store it 2 +52681 2608 be a more appropriate location to store it 2 +52682 2608 a more appropriate location to store it 2 +52683 2608 more appropriate location to store it 2 +52684 2608 more appropriate 3 +52685 2608 location to store it 2 +52686 2608 location 2 +52687 2608 to store it 2 +52688 2608 store it 2 +52689 2609 A minor film with major pleasures from Portuguese master Manoel de Oliviera ... 4 +52690 2609 A minor film with major pleasures from Portuguese master Manoel de Oliviera 4 +52691 2609 A minor film 2 +52692 2609 minor film 1 +52693 2609 with major pleasures from Portuguese master Manoel de Oliviera 3 +52694 2609 major pleasures from Portuguese master Manoel de Oliviera 3 +52695 2609 major pleasures 3 +52696 2609 from Portuguese master Manoel de Oliviera 2 +52697 2609 Portuguese master Manoel de Oliviera 3 +52698 2609 Portuguese 2 +52699 2609 master Manoel de Oliviera 2 +52700 2609 Manoel de Oliviera 2 +52701 2609 Manoel 2 +52702 2609 de Oliviera 2 +52703 2609 Oliviera 2 +52704 2610 For VeggieTales fans , this is more appetizing than a side dish of asparagus . 4 +52705 2610 For VeggieTales fans 2 +52706 2610 VeggieTales fans 2 +52707 2610 VeggieTales 2 +52708 2610 , this is more appetizing than a side dish of asparagus . 1 +52709 2610 this is more appetizing than a side dish of asparagus . 3 +52710 2610 is more appetizing than a side dish of asparagus . 2 +52711 2610 is more appetizing than a side dish of asparagus 3 +52712 2610 more appetizing than a side dish of asparagus 1 +52713 2610 appetizing than a side dish of asparagus 2 +52714 2610 appetizing 3 +52715 2610 than a side dish of asparagus 2 +52716 2610 a side dish of asparagus 1 +52717 2610 a side dish 2 +52718 2610 side dish 2 +52719 2610 of asparagus 2 +52720 2610 asparagus 2 +52721 2611 If the real-life story is genuinely inspirational , the movie stirs us as well . 4 +52722 2611 If the real-life story is genuinely inspirational 3 +52723 2611 the real-life story is genuinely inspirational 3 +52724 2611 the real-life story 2 +52725 2611 real-life story 3 +52726 2611 is genuinely inspirational 4 +52727 2611 genuinely inspirational 4 +52728 2611 , the movie stirs us as well . 3 +52729 2611 the movie stirs us as well . 3 +52730 2611 stirs us as well . 3 +52731 2611 stirs us as well 3 +52732 2611 stirs us 3 +52733 2611 stirs 2 +52734 2612 -LRB- Gayton 's script -RRB- telegraphs every discovery and layers on the gloss of convenience . 3 +52735 2612 -LRB- Gayton 's script -RRB- 2 +52736 2612 Gayton 's script -RRB- 2 +52737 2612 Gayton 's script 2 +52738 2612 Gayton 's 2 +52739 2612 Gayton 2 +52740 2612 telegraphs every discovery and layers on the gloss of convenience . 1 +52741 2612 telegraphs every discovery and layers on the gloss of convenience 2 +52742 2612 telegraphs every discovery and layers 2 +52743 2612 telegraphs 2 +52744 2612 every discovery and layers 2 +52745 2612 discovery and layers 2 +52746 2612 discovery and 2 +52747 2612 on the gloss of convenience 2 +52748 2612 the gloss of convenience 2 +52749 2612 the gloss 3 +52750 2612 gloss 2 +52751 2612 of convenience 2 +52752 2612 convenience 2 +52753 2613 No , it 's not as single-minded as John Carpenter 's original , but it 's sure a lot smarter and more unnerving than the sequels . 3 +52754 2613 No , it 's not as single-minded as John Carpenter 's original , but it 's sure a lot smarter and more unnerving than the sequels 3 +52755 2613 No , it 's not as single-minded as John Carpenter 's original , but 2 +52756 2613 No , it 's not as single-minded as John Carpenter 's original , 2 +52757 2613 No , it 's not as single-minded as John Carpenter 's original 2 +52758 2613 , it 's not as single-minded as John Carpenter 's original 2 +52759 2613 it 's not as single-minded as John Carpenter 's original 2 +52760 2613 's not as single-minded as John Carpenter 's original 1 +52761 2613 as single-minded as John Carpenter 's original 1 +52762 2613 single-minded as John Carpenter 's original 1 +52763 2613 single-minded 2 +52764 2613 as John Carpenter 's original 2 +52765 2613 John Carpenter 's original 4 +52766 2613 it 's sure a lot smarter and more unnerving than the sequels 2 +52767 2613 's sure a lot smarter and more unnerving than the sequels 3 +52768 2613 's sure 2 +52769 2613 a lot smarter and more unnerving than the sequels 3 +52770 2613 smarter and more unnerving than the sequels 4 +52771 2613 smarter and more 2 +52772 2613 smarter and 2 +52773 2613 unnerving than the sequels 2 +52774 2613 than the sequels 2 +52775 2614 This starts off with a 1950 's Doris Day feel and it gets very ugly , very fast . 1 +52776 2614 This starts off with a 1950 's Doris Day feel and it gets very ugly , very fast 0 +52777 2614 This starts off with a 1950 's Doris Day feel and 2 +52778 2614 This starts off with a 1950 's Doris Day feel 2 +52779 2614 starts off with a 1950 's Doris Day feel 3 +52780 2614 with a 1950 's Doris Day feel 2 +52781 2614 a 1950 's Doris Day feel 2 +52782 2614 a 1950 's 2 +52783 2614 1950 's 2 +52784 2614 1950 2 +52785 2614 Doris Day feel 2 +52786 2614 Doris 2 +52787 2614 Day feel 2 +52788 2614 it gets very ugly , very fast 0 +52789 2614 gets very ugly , very fast 1 +52790 2614 very ugly , very fast 0 +52791 2614 very ugly , 1 +52792 2614 very ugly 0 +52793 2614 very fast 2 +52794 2615 Blessed with two fine , nuanced lead performances . 3 +52795 2615 Blessed with two fine , nuanced lead performances 3 +52796 2615 Blessed 4 +52797 2615 with two fine , nuanced lead performances 4 +52798 2615 two fine , nuanced lead performances 3 +52799 2615 fine , nuanced lead performances 3 +52800 2615 fine , nuanced 2 +52801 2615 , nuanced 3 +52802 2616 What 's next ? 3 +52803 2616 's next ? 2 +52804 2616 's next 2 +52805 2617 If you 're paying attention , the `` big twists '' are pretty easy to guess - but that does n't make the movie any less entertaining . 2 +52806 2617 If you 're paying attention , the `` big twists '' are pretty easy to guess - but that does n't make the movie any less entertaining 3 +52807 2617 If you 're paying attention , the `` big twists '' are pretty easy to guess - but 2 +52808 2617 If you 're paying attention , the `` big twists '' are pretty easy to guess - 1 +52809 2617 If you 're paying attention , the `` big twists '' are pretty easy to guess 1 +52810 2617 If you 're paying attention 2 +52811 2617 you 're paying attention 3 +52812 2617 're paying attention 2 +52813 2617 paying attention 2 +52814 2617 paying 2 +52815 2617 , the `` big twists '' are pretty easy to guess 1 +52816 2617 the `` big twists '' are pretty easy to guess 1 +52817 2617 the `` big twists '' 2 +52818 2617 `` big twists '' 3 +52819 2617 big twists '' 2 +52820 2617 twists '' 2 +52821 2617 are pretty easy to guess 2 +52822 2617 pretty easy to guess 2 +52823 2617 easy to guess 1 +52824 2617 to guess 2 +52825 2617 that does n't make the movie any less entertaining 2 +52826 2617 does n't make the movie any less entertaining 3 +52827 2617 make the movie any less entertaining 2 +52828 2617 the movie any less entertaining 1 +52829 2617 any less entertaining 3 +52830 2617 any less 2 +52831 2618 If you 're a comic fan , you ca n't miss it . 4 +52832 2618 If you 're a comic fan 2 +52833 2618 you 're a comic fan 3 +52834 2618 're a comic fan 2 +52835 2618 a comic fan 3 +52836 2618 comic fan 3 +52837 2618 , you ca n't miss it . 3 +52838 2618 you ca n't miss it . 4 +52839 2618 ca n't miss it . 3 +52840 2618 ca n't miss it 3 +52841 2619 Earnest and heartfelt but undernourished and plodding . 3 +52842 2619 Earnest and heartfelt 3 +52843 2619 but undernourished and plodding . 0 +52844 2619 but undernourished and plodding 2 +52845 2619 undernourished and plodding 1 +52846 2619 undernourished and 1 +52847 2619 undernourished 1 +52848 2620 Fairy-tale formula , serves as a paper skeleton for some very good acting , dialogue , comedy , direction and especially charm . 4 +52849 2620 Fairy-tale formula 2 +52850 2620 Fairy-tale 2 +52851 2620 , serves as a paper skeleton for some very good acting , dialogue , comedy , direction and especially charm . 3 +52852 2620 serves as a paper skeleton for some very good acting , dialogue , comedy , direction and especially charm . 4 +52853 2620 serves as a paper skeleton for some very good acting , dialogue , comedy , direction and especially charm 4 +52854 2620 serves as a paper skeleton for some very good acting , dialogue , 3 +52855 2620 as a paper skeleton for some very good acting , dialogue , 3 +52856 2620 a paper skeleton for some very good acting , dialogue , 2 +52857 2620 a paper skeleton 2 +52858 2620 paper skeleton 2 +52859 2620 skeleton 2 +52860 2620 for some very good acting , dialogue , 3 +52861 2620 some very good acting , dialogue , 4 +52862 2620 some very good acting , dialogue 3 +52863 2620 some very good acting , 4 +52864 2620 some very good acting 4 +52865 2620 very good acting 4 +52866 2620 comedy , direction and especially charm 2 +52867 2620 comedy , 2 +52868 2620 direction and especially charm 3 +52869 2620 direction and 2 +52870 2620 especially charm 3 +52871 2621 Pipe Dream does have its charms . 3 +52872 2621 Pipe Dream 2 +52873 2621 Pipe 2 +52874 2621 does have its charms . 3 +52875 2621 does have its charms 3 +52876 2621 have its charms 3 +52877 2622 What could have been a pointed little chiller about the frightening seductiveness of new technology loses faith in its own viability and succumbs to joyless special-effects excess . 2 +52878 2622 What could have been a pointed little chiller about the frightening seductiveness of new technology 3 +52879 2622 could have been a pointed little chiller about the frightening seductiveness of new technology 2 +52880 2622 have been a pointed little chiller about the frightening seductiveness of new technology 2 +52881 2622 been a pointed little chiller about the frightening seductiveness of new technology 2 +52882 2622 a pointed little chiller about the frightening seductiveness of new technology 3 +52883 2622 a pointed little chiller 3 +52884 2622 pointed little chiller 2 +52885 2622 little chiller 2 +52886 2622 about the frightening seductiveness of new technology 2 +52887 2622 the frightening seductiveness of new technology 2 +52888 2622 the frightening seductiveness 2 +52889 2622 frightening seductiveness 2 +52890 2622 seductiveness 2 +52891 2622 of new technology 2 +52892 2622 new technology 2 +52893 2622 loses faith in its own viability and succumbs to joyless special-effects excess . 0 +52894 2622 loses faith in its own viability and succumbs to joyless special-effects excess 1 +52895 2622 loses faith in its own viability and 1 +52896 2622 loses faith in its own viability 1 +52897 2622 loses faith 1 +52898 2622 in its own viability 2 +52899 2622 its own viability 2 +52900 2622 own viability 2 +52901 2622 viability 2 +52902 2622 succumbs to joyless special-effects excess 1 +52903 2622 succumbs 2 +52904 2622 to joyless special-effects excess 0 +52905 2622 joyless special-effects excess 1 +52906 2622 special-effects excess 2 +52907 2622 special-effects 2 +52908 2623 Brosnan is more feral in this film than I 've seen him before and Halle Berry does her best to keep up with him . 3 +52909 2623 Brosnan is more feral in this film than I 've seen him before and Halle Berry does her best to keep up with him 3 +52910 2623 Brosnan is more feral in this film than I 've seen him before and 2 +52911 2623 Brosnan is more feral in this film than I 've seen him before 3 +52912 2623 is more feral in this film than I 've seen him before 2 +52913 2623 is more feral in this film 2 +52914 2623 more feral in this film 2 +52915 2623 feral in this film 2 +52916 2623 than I 've seen him before 2 +52917 2623 I 've seen him before 2 +52918 2623 've seen him before 2 +52919 2623 seen him before 2 +52920 2623 him before 2 +52921 2623 Halle Berry does her best to keep up with him 3 +52922 2623 Halle Berry 2 +52923 2623 Halle 2 +52924 2623 Berry 2 +52925 2623 does her best to keep up with him 2 +52926 2623 does her best 3 +52927 2623 to keep up with him 2 +52928 2623 keep up with him 2 +52929 2623 keep up 2 +52930 2623 with him 2 +52931 2624 Director Carl Franklin , so crisp and economical in One False Move , bogs down in genre cliches here . 3 +52932 2624 Director Carl Franklin , so crisp and economical in One False Move , 3 +52933 2624 Director Carl Franklin , so crisp and economical in One False Move 2 +52934 2624 Director Carl Franklin , 2 +52935 2624 Director Carl Franklin 2 +52936 2624 Carl Franklin 2 +52937 2624 Carl 3 +52938 2624 so crisp and economical in One False Move 3 +52939 2624 so crisp and 3 +52940 2624 so crisp 2 +52941 2624 economical in One False Move 2 +52942 2624 economical 3 +52943 2624 in One False Move 2 +52944 2624 One False Move 2 +52945 2624 False Move 2 +52946 2624 bogs down in genre cliches here . 1 +52947 2624 bogs down in genre cliches here 1 +52948 2624 bogs down in genre cliches 1 +52949 2624 bogs down 2 +52950 2624 bogs 1 +52951 2624 in genre cliches 1 +52952 2624 genre cliches 1 +52953 2625 A thoughtful , reverent portrait of what is essentially a subculture , with its own rules regarding love and family , governance and hierarchy . 4 +52954 2625 A thoughtful , reverent portrait of what 3 +52955 2625 A thoughtful , reverent portrait 4 +52956 2625 thoughtful , reverent portrait 3 +52957 2625 thoughtful , reverent 4 +52958 2625 , reverent 2 +52959 2625 is essentially a subculture , with its own rules regarding love and family , governance and hierarchy . 2 +52960 2625 is essentially a subculture , with its own rules regarding love and family , governance and hierarchy 3 +52961 2625 is essentially 2 +52962 2625 a subculture , with its own rules regarding love and family , governance and hierarchy 2 +52963 2625 a subculture , 2 +52964 2625 a subculture 2 +52965 2625 with its own rules regarding love and family , governance and hierarchy 2 +52966 2625 its own rules regarding love and family , governance and hierarchy 3 +52967 2625 its own rules 2 +52968 2625 own rules 2 +52969 2625 regarding love and family , governance and hierarchy 2 +52970 2625 regarding 2 +52971 2625 love and family , governance and hierarchy 2 +52972 2625 family , governance and hierarchy 2 +52973 2625 , governance and hierarchy 2 +52974 2625 governance and hierarchy 2 +52975 2625 governance and 2 +52976 2625 governance 2 +52977 2625 hierarchy 2 +52978 2626 But ticket-buyers with great expectations will wind up as glum as Mr. De Niro . 0 +52979 2626 ticket-buyers with great expectations will wind up as glum as Mr. De Niro . 0 +52980 2626 ticket-buyers with great expectations 2 +52981 2626 ticket-buyers 2 +52982 2626 with great expectations 2 +52983 2626 great expectations 2 +52984 2626 expectations 2 +52985 2626 will wind up as glum as Mr. De Niro . 1 +52986 2626 will wind up as glum as Mr. De Niro 1 +52987 2626 wind up as glum as Mr. De Niro 1 +52988 2626 wind up 2 +52989 2626 wind 3 +52990 2626 as glum as Mr. De Niro 1 +52991 2626 glum as Mr. De Niro 1 +52992 2626 as Mr. De Niro 2 +52993 2626 Mr. De Niro 2 +52994 2627 From its nauseating spinning credits sequence to a very talented but underutilized supporting cast , Bartleby squanders as much as it gives out . 1 +52995 2627 From its nauseating spinning credits sequence to a very talented but underutilized supporting cast 1 +52996 2627 its nauseating spinning credits sequence to a very talented but underutilized supporting cast 2 +52997 2627 its nauseating spinning credits sequence 1 +52998 2627 nauseating spinning credits sequence 2 +52999 2627 nauseating 0 +53000 2627 spinning credits sequence 2 +53001 2627 credits sequence 2 +53002 2627 to a very talented but underutilized supporting cast 2 +53003 2627 a very talented but underutilized supporting cast 3 +53004 2627 very talented but underutilized supporting cast 2 +53005 2627 very talented but underutilized 1 +53006 2627 very talented but 2 +53007 2627 underutilized 2 +53008 2627 , Bartleby squanders as much as it gives out . 2 +53009 2627 Bartleby squanders as much as it gives out . 1 +53010 2627 squanders as much as it gives out . 1 +53011 2627 squanders as much as it gives out 1 +53012 2627 squanders 2 +53013 2627 as much as it gives out 2 +53014 2627 as it gives out 2 +53015 2627 it gives out 2 +53016 2627 gives out 3 +53017 2629 -LRB- Davis -RRB- wants to cause his audience an epiphany , yet he refuses to give us real situations and characters . 1 +53018 2629 -LRB- Davis -RRB- wants to cause his audience an epiphany , yet he refuses to give us real situations and characters 0 +53019 2629 -LRB- Davis -RRB- wants to cause his audience an epiphany , yet 2 +53020 2629 -LRB- Davis -RRB- wants to cause his audience an epiphany , 2 +53021 2629 -LRB- Davis -RRB- wants to cause his audience an epiphany 3 +53022 2629 -LRB- Davis -RRB- 2 +53023 2629 Davis -RRB- 2 +53024 2629 wants to cause his audience an epiphany 2 +53025 2629 to cause his audience an epiphany 2 +53026 2629 cause his audience an epiphany 2 +53027 2629 his audience an epiphany 3 +53028 2629 an epiphany 4 +53029 2629 epiphany 3 +53030 2629 he refuses to give us real situations and characters 1 +53031 2629 refuses to give us real situations and characters 2 +53032 2629 to give us real situations and characters 2 +53033 2629 give us real situations and characters 3 +53034 2629 real situations and characters 3 +53035 2630 But darned if it does n't also keep us riveted to our seats . 4 +53036 2630 darned if it does n't also keep us riveted to our seats . 3 +53037 2630 darned if it does n't also keep us 2 +53038 2630 darned 2 +53039 2630 if it does n't also keep us 2 +53040 2630 it does n't also keep us 2 +53041 2630 does n't also keep us 2 +53042 2630 does n't also 2 +53043 2630 keep us 2 +53044 2630 riveted to our seats . 3 +53045 2630 riveted to our seats 4 +53046 2630 riveted 4 +53047 2630 to our seats 2 +53048 2630 our seats 2 +53049 2630 seats 2 +53050 2631 Rashomon-for-dipsticks tale . 0 +53051 2631 Rashomon-for-dipsticks 1 +53052 2631 tale . 2 +53053 2632 Good actors have a radar for juicy roles -- there 's a plethora of characters in this picture , and not one of them is flat . 3 +53054 2632 Good actors have a radar for juicy roles -- there 's a plethora of characters in this picture , and not one of them is flat 4 +53055 2632 Good actors have a radar for juicy roles -- 2 +53056 2632 Good actors have a radar for juicy roles 2 +53057 2632 have a radar for juicy roles 3 +53058 2632 a radar for juicy roles 2 +53059 2632 a radar 2 +53060 2632 radar 2 +53061 2632 for juicy roles 3 +53062 2632 juicy roles 2 +53063 2632 roles 2 +53064 2632 there 's a plethora of characters in this picture , and not one of them is flat 3 +53065 2632 there 's a plethora of characters in this picture , and not 2 +53066 2632 there 's a plethora of characters in this picture , and 3 +53067 2632 there 's a plethora of characters in this picture , 3 +53068 2632 there 's a plethora of characters in this picture 2 +53069 2632 's a plethora of characters in this picture 2 +53070 2632 a plethora of characters in this picture 2 +53071 2632 a plethora 2 +53072 2632 plethora 2 +53073 2632 of characters in this picture 3 +53074 2632 characters in this picture 2 +53075 2632 one of them is flat 2 +53076 2632 one of them 1 +53077 2632 is flat 1 +53078 2633 A genuine mind-bender . 3 +53079 2633 genuine mind-bender . 3 +53080 2633 mind-bender . 3 +53081 2633 mind-bender 2 +53082 2634 This bracingly truthful antidote to Hollywood teenage movies that slather Clearasil over the blemishes of youth captures the combustible mixture of a chafing inner loneliness and desperate grandiosity that tend to characterize puberty . 3 +53083 2634 This bracingly truthful antidote to Hollywood teenage movies that slather Clearasil over the blemishes of youth 2 +53084 2634 This bracingly truthful antidote 2 +53085 2634 bracingly truthful antidote 3 +53086 2634 bracingly truthful 3 +53087 2634 bracingly 2 +53088 2634 truthful 2 +53089 2634 antidote 2 +53090 2634 to Hollywood teenage movies that slather Clearasil over the blemishes of youth 2 +53091 2634 Hollywood teenage movies that slather Clearasil over the blemishes of youth 2 +53092 2634 Hollywood teenage movies 2 +53093 2634 teenage movies 2 +53094 2634 that slather Clearasil over the blemishes of youth 1 +53095 2634 slather Clearasil over the blemishes of youth 1 +53096 2634 slather 2 +53097 2634 Clearasil over the blemishes of youth 2 +53098 2634 Clearasil 2 +53099 2634 over the blemishes of youth 2 +53100 2634 the blemishes of youth 2 +53101 2634 the blemishes 2 +53102 2634 blemishes 1 +53103 2634 captures the combustible mixture of a chafing inner loneliness and desperate grandiosity that tend to characterize puberty . 2 +53104 2634 captures the combustible mixture of a chafing inner loneliness and desperate grandiosity that tend to characterize puberty 3 +53105 2634 the combustible mixture of a chafing inner loneliness and desperate grandiosity that tend to characterize puberty 2 +53106 2634 the combustible mixture 2 +53107 2634 combustible mixture 3 +53108 2634 combustible 2 +53109 2634 of a chafing inner loneliness and desperate grandiosity that tend to characterize puberty 1 +53110 2634 a chafing inner loneliness and desperate grandiosity that tend to characterize puberty 2 +53111 2634 a chafing inner loneliness and desperate grandiosity 1 +53112 2634 chafing inner loneliness and desperate grandiosity 2 +53113 2634 chafing 1 +53114 2634 inner loneliness and desperate grandiosity 2 +53115 2634 loneliness and desperate grandiosity 1 +53116 2634 and desperate grandiosity 2 +53117 2634 desperate grandiosity 2 +53118 2634 that tend to characterize puberty 2 +53119 2634 tend to characterize puberty 2 +53120 2634 to characterize puberty 2 +53121 2634 characterize puberty 2 +53122 2634 characterize 2 +53123 2634 puberty 2 +53124 2635 An unexpectedly sweet story of sisterhood . 3 +53125 2635 An unexpectedly sweet story of 3 +53126 2635 An unexpectedly sweet story 4 +53127 2635 unexpectedly sweet story 4 +53128 2635 unexpectedly sweet 4 +53129 2635 sisterhood . 2 +53130 2636 Ultimately , Jane learns her place as a girl , softens up and loses some of the intensity that made her an interesting character to begin with . 2 +53131 2636 , Jane learns her place as a girl , softens up and loses some of the intensity that made her an interesting character to begin with . 1 +53132 2636 Jane learns her place as a girl , softens up and loses some of the intensity that made her an interesting character to begin with . 1 +53133 2636 learns her place as a girl , softens up and loses some of the intensity that made her an interesting character to begin with . 1 +53134 2636 learns her place as a girl , softens up and loses some of the intensity that made her an interesting character to begin with 1 +53135 2636 learns her place as a girl , softens up and 2 +53136 2636 learns her place as a girl , softens up 2 +53137 2636 learns her place as a girl , 2 +53138 2636 learns her place as a girl 2 +53139 2636 learns her place 2 +53140 2636 learns 2 +53141 2636 her place 2 +53142 2636 as a girl 2 +53143 2636 softens up 2 +53144 2636 softens 2 +53145 2636 loses some of the intensity that made her an interesting character to begin with 1 +53146 2636 some of the intensity that made her an interesting character to begin with 3 +53147 2636 of the intensity that made her an interesting character to begin with 3 +53148 2636 the intensity that made her an interesting character to begin with 3 +53149 2636 the intensity 3 +53150 2636 that made her an interesting character to begin with 3 +53151 2636 made her an interesting character to begin with 3 +53152 2636 made her 2 +53153 2636 an interesting character to begin with 3 +53154 2636 interesting character to begin with 3 +53155 2636 character to begin with 2 +53156 2637 It 's a beautiful film , full of elaborate and twisted characters - and it 's also pretty funny . 4 +53157 2637 It 's a beautiful film , full of elaborate and twisted characters - and it 's also pretty funny 3 +53158 2637 It 's a beautiful film , full of elaborate and twisted characters - and 4 +53159 2637 It 's a beautiful film , full of elaborate and twisted characters - 4 +53160 2637 It 's a beautiful film , full of elaborate and twisted characters 4 +53161 2637 's a beautiful film , full of elaborate and twisted characters 3 +53162 2637 a beautiful film , full of elaborate and twisted characters 4 +53163 2637 a beautiful film , 4 +53164 2637 a beautiful film 4 +53165 2637 beautiful film 4 +53166 2637 full of elaborate and twisted characters 3 +53167 2637 of elaborate and twisted characters 3 +53168 2637 elaborate and twisted characters 1 +53169 2637 and twisted characters 3 +53170 2637 twisted characters 2 +53171 2637 it 's also pretty funny 3 +53172 2637 's also pretty funny 3 +53173 2638 It 's an ambitious film , and as with all ambitious films , it has some problems . 3 +53174 2638 It 's an ambitious film , and as with all ambitious films , it has some problems 3 +53175 2638 It 's an ambitious film , and 3 +53176 2638 It 's an ambitious film , 3 +53177 2638 It 's an ambitious film 3 +53178 2638 's an ambitious film 3 +53179 2638 an ambitious film 3 +53180 2638 ambitious film 3 +53181 2638 as with all ambitious films , it has some problems 1 +53182 2638 as with all ambitious films 2 +53183 2638 with all ambitious films 2 +53184 2638 all ambitious films 2 +53185 2638 ambitious films 3 +53186 2638 , it has some problems 1 +53187 2638 it has some problems 1 +53188 2638 has some problems 1 +53189 2638 some problems 1 +53190 2639 Nothing too deep or substantial . 1 +53191 2639 too deep or substantial . 1 +53192 2639 too deep or substantial 2 +53193 2639 deep or substantial 3 +53194 2639 deep or 3 +53195 2639 substantial 2 +53196 2640 Disney again ransacks its archives for a quick-buck sequel . 1 +53197 2640 again ransacks its archives for a quick-buck sequel . 1 +53198 2640 ransacks its archives for a quick-buck sequel . 0 +53199 2640 ransacks its archives for a quick-buck sequel 1 +53200 2640 ransacks its archives 1 +53201 2640 ransacks 1 +53202 2640 its archives 2 +53203 2640 archives 2 +53204 2640 for a quick-buck sequel 1 +53205 2640 a quick-buck sequel 0 +53206 2640 quick-buck sequel 1 +53207 2640 quick-buck 1 +53208 2641 A vivid , spicy footnote to history , and a movie that grips and holds you in rapt attention from start to finish . 3 +53209 2641 A vivid , spicy footnote to history , and a movie that grips and holds you in rapt attention from 4 +53210 2641 A vivid , spicy footnote to history , and 3 +53211 2641 A vivid , spicy footnote to history , 3 +53212 2641 A vivid , spicy footnote to history 2 +53213 2641 A vivid , spicy footnote 3 +53214 2641 vivid , spicy footnote 4 +53215 2641 , spicy footnote 3 +53216 2641 spicy footnote 3 +53217 2641 spicy 3 +53218 2641 footnote 2 +53219 2641 to history 2 +53220 2641 a movie that grips and holds you in rapt attention from 4 +53221 2641 that grips and holds you in rapt attention from 4 +53222 2641 grips and holds you in rapt attention from 4 +53223 2641 grips and 2 +53224 2641 grips 2 +53225 2641 holds you in rapt attention from 3 +53226 2641 holds you in rapt attention 3 +53227 2641 holds you 3 +53228 2641 in rapt attention 3 +53229 2641 rapt attention 2 +53230 2641 rapt 2 +53231 2641 start to finish . 2 +53232 2641 start to finish 2 +53233 2642 Without a fresh infusion of creativity , 4Ever is neither a promise nor a threat so much as wishful thinking . 1 +53234 2642 Without a fresh infusion of creativity 1 +53235 2642 a fresh infusion of creativity 4 +53236 2642 a fresh infusion 3 +53237 2642 fresh infusion 2 +53238 2642 of creativity 2 +53239 2642 , 4Ever is neither a promise nor a threat so much as wishful thinking . 2 +53240 2642 4Ever is neither a promise nor a threat so much as wishful thinking . 1 +53241 2642 4Ever 2 +53242 2642 is neither a promise nor a threat so much as wishful thinking . 2 +53243 2642 is neither a promise nor a threat so much as wishful thinking 2 +53244 2642 is neither 2 +53245 2642 a promise nor a threat so much as wishful thinking 1 +53246 2642 a promise nor a threat so much as 2 +53247 2642 a promise nor a threat so much 2 +53248 2642 a promise nor a threat so 2 +53249 2642 a promise nor a threat 2 +53250 2642 a promise nor 3 +53251 2642 a promise 2 +53252 2642 a threat 2 +53253 2642 wishful thinking 2 +53254 2642 wishful 2 +53255 2643 Despite its flaws , Crazy as Hell marks an encouraging new direction for La Salle . 3 +53256 2643 , Crazy as Hell marks an encouraging new direction for La Salle . 3 +53257 2643 Crazy as Hell marks an encouraging new direction for La Salle . 3 +53258 2643 Crazy as Hell 2 +53259 2643 as Hell 2 +53260 2643 marks an encouraging new direction for La Salle . 3 +53261 2643 marks an encouraging new direction for La Salle 3 +53262 2643 an encouraging new direction for La Salle 3 +53263 2643 an encouraging new direction 3 +53264 2643 encouraging new direction 2 +53265 2643 new direction 2 +53266 2643 for La Salle 2 +53267 2643 La Salle 2 +53268 2644 A low-key labor of love that strikes a very resonant chord . 3 +53269 2644 A low-key labor of love that strikes a very resonant chord 3 +53270 2644 A low-key labor 2 +53271 2644 low-key labor 2 +53272 2644 of love that strikes a very resonant chord 3 +53273 2644 love that strikes a very resonant chord 3 +53274 2644 that strikes a very resonant chord 3 +53275 2644 strikes a very resonant chord 4 +53276 2644 a very resonant chord 3 +53277 2644 very resonant chord 2 +53278 2644 resonant chord 3 +53279 2645 The movie attempts to mine laughs from a genre -- the gangster\/crime comedy -- that wore out its welcome with audiences several years ago , and its cutesy reliance on movie-specific cliches is n't exactly endearing . 1 +53280 2645 The movie attempts to mine laughs from a genre -- the gangster\/crime comedy -- that wore out its welcome with audiences several years ago , and its cutesy reliance on movie-specific cliches is n't exactly endearing 0 +53281 2645 The movie attempts to mine laughs from a genre -- the gangster\/crime comedy -- that wore out its welcome with audiences several years ago , and 2 +53282 2645 The movie attempts to mine laughs from a genre -- the gangster\/crime comedy -- that wore out its welcome with audiences several years ago , 2 +53283 2645 The movie attempts to mine laughs from a genre -- the gangster\/crime comedy -- that wore out its welcome with audiences several years ago 2 +53284 2645 attempts to mine laughs from a genre -- the gangster\/crime comedy -- that wore out its welcome with audiences several years ago 0 +53285 2645 attempts to mine laughs 1 +53286 2645 to mine laughs 2 +53287 2645 mine laughs 2 +53288 2645 from a genre -- the gangster\/crime comedy -- that wore out its welcome with audiences several years ago 1 +53289 2645 a genre -- the gangster\/crime comedy -- that wore out its welcome with audiences several years ago 1 +53290 2645 a genre -- the gangster\/crime comedy -- 2 +53291 2645 a genre 2 +53292 2645 -- the gangster\/crime comedy -- 2 +53293 2645 the gangster\/crime comedy -- 2 +53294 2645 the gangster\/crime comedy 2 +53295 2645 gangster\/crime comedy 3 +53296 2645 gangster\/crime 2 +53297 2645 that wore out its welcome with audiences several years ago 1 +53298 2645 wore out its welcome with audiences several years ago 0 +53299 2645 wore out 2 +53300 2645 wore 3 +53301 2645 its welcome with audiences several years ago 2 +53302 2645 its welcome with audiences several years 3 +53303 2645 welcome with audiences several years 2 +53304 2645 welcome with audiences 3 +53305 2645 with audiences 2 +53306 2645 several years 2 +53307 2645 its cutesy reliance on movie-specific cliches is n't exactly endearing 1 +53308 2645 its cutesy reliance on movie-specific cliches 1 +53309 2645 its cutesy reliance 3 +53310 2645 cutesy reliance 1 +53311 2645 cutesy 2 +53312 2645 on movie-specific cliches 2 +53313 2645 movie-specific cliches 2 +53314 2645 movie-specific 2 +53315 2645 is n't exactly endearing 1 +53316 2645 exactly endearing 3 +53317 2646 The urban landscapes are detailed down to the signs on the kiosks , and the color palette , with lots of somber blues and pinks , is dreamy and evocative . 4 +53318 2646 The urban landscapes are detailed down to the signs on the kiosks , and the color palette , with lots of somber blues and pinks , is dreamy and evocative 3 +53319 2646 The urban landscapes are detailed down to the signs on the kiosks , and 3 +53320 2646 The urban landscapes are detailed down to the signs on the kiosks , 3 +53321 2646 The urban landscapes are detailed down to the signs on the kiosks 3 +53322 2646 The urban landscapes 2 +53323 2646 urban landscapes 2 +53324 2646 are detailed down to the signs on the kiosks 2 +53325 2646 detailed down to the signs on the kiosks 3 +53326 2646 detailed down 2 +53327 2646 to the signs on the kiosks 2 +53328 2646 the signs on the kiosks 2 +53329 2646 on the kiosks 2 +53330 2646 the kiosks 2 +53331 2646 kiosks 2 +53332 2646 the color palette , with lots of somber blues and pinks , is dreamy and evocative 3 +53333 2646 the color palette , with lots of somber blues and pinks , 2 +53334 2646 the color palette , with lots of somber blues and pinks 2 +53335 2646 the color palette , 2 +53336 2646 the color palette 2 +53337 2646 with lots of somber blues and pinks 1 +53338 2646 lots of somber blues and pinks 2 +53339 2646 of somber blues and pinks 2 +53340 2646 somber blues and pinks 2 +53341 2646 blues and pinks 2 +53342 2646 blues and 2 +53343 2646 pinks 2 +53344 2646 is dreamy and evocative 4 +53345 2646 dreamy and evocative 4 +53346 2646 dreamy and 4 +53347 2646 dreamy 3 +53348 2647 Cho 's latest comic set is n't as sharp or as fresh as I 'm the One That I Want ... but it 's still damn funny stuff . 3 +53349 2647 Cho 's latest comic set is n't as sharp or as fresh as I 'm the One That I Want ... but it 's still damn funny stuff 3 +53350 2647 Cho 's latest comic set is n't as sharp or as fresh as I 'm the One That I Want ... but 1 +53351 2647 Cho 's latest comic set is n't as sharp or as fresh as I 'm the One That I Want ... 1 +53352 2647 Cho 's latest comic set is n't as sharp or as fresh as I 'm the One That I Want 1 +53353 2647 Cho 's latest comic set 3 +53354 2647 latest comic set 2 +53355 2647 comic set 3 +53356 2647 is n't as sharp or as fresh as I 'm the One That I Want 2 +53357 2647 is n't as sharp or as fresh 1 +53358 2647 as sharp or as fresh 3 +53359 2647 as sharp or 2 +53360 2647 as sharp 3 +53361 2647 as fresh 3 +53362 2647 as I 'm the One That I Want 3 +53363 2647 it 's still damn funny stuff 3 +53364 2647 's still damn funny stuff 3 +53365 2647 damn funny stuff 4 +53366 2647 damn funny 3 +53367 2648 While it is welcome to see a Chinese film depict a homosexual relationship in a mature and frank fashion , Lan Yu never catches dramatic fire . 1 +53368 2648 While it is welcome to see a Chinese film depict a homosexual relationship in a mature and frank fashion 3 +53369 2648 it is welcome to see a Chinese film depict a homosexual relationship in a mature and frank fashion 4 +53370 2648 is welcome to see a Chinese film depict a homosexual relationship in a mature and frank fashion 2 +53371 2648 welcome to see a Chinese film depict a homosexual relationship in a mature and frank fashion 3 +53372 2648 to see a Chinese film depict a homosexual relationship in a mature and frank fashion 3 +53373 2648 see a Chinese film depict a homosexual relationship in a mature and frank fashion 2 +53374 2648 a Chinese film depict a homosexual relationship in a mature and frank fashion 3 +53375 2648 a Chinese film 2 +53376 2648 Chinese film 2 +53377 2648 depict a homosexual relationship in a mature and frank fashion 3 +53378 2648 depict 2 +53379 2648 a homosexual relationship in a mature and frank fashion 2 +53380 2648 a homosexual relationship 2 +53381 2648 homosexual relationship 2 +53382 2648 homosexual 2 +53383 2648 in a mature and frank fashion 2 +53384 2648 a mature and frank fashion 3 +53385 2648 mature and frank fashion 3 +53386 2648 mature and frank 2 +53387 2648 mature and 3 +53388 2648 , Lan Yu never catches dramatic fire . 1 +53389 2648 Lan Yu never catches dramatic fire . 1 +53390 2648 Lan Yu 2 +53391 2648 Lan 2 +53392 2648 Yu 2 +53393 2648 never catches dramatic fire . 2 +53394 2648 catches dramatic fire . 3 +53395 2648 catches dramatic fire 3 +53396 2648 dramatic fire 2 +53397 2649 The real triumphs in Igby come from Philippe , who makes Oliver far more interesting than the character 's lines would suggest , and Sarandon , who could n't be better as a cruel but weirdly likable WASP matron . 3 +53398 2649 The real triumphs in Igby 3 +53399 2649 The real triumphs 3 +53400 2649 real triumphs 3 +53401 2649 in Igby 2 +53402 2649 Igby 2 +53403 2649 come from Philippe , who makes Oliver far more interesting than the character 's lines would suggest , and Sarandon , who could n't be better as a cruel but weirdly likable WASP matron . 3 +53404 2649 come from Philippe , who makes Oliver far more interesting than the character 's lines would suggest , and Sarandon , who could n't be better as a cruel but weirdly likable WASP matron 2 +53405 2649 from Philippe , who makes Oliver far more interesting than the character 's lines would suggest , and Sarandon , who could n't be better as a cruel but weirdly likable WASP matron 3 +53406 2649 Philippe , who makes Oliver far more interesting than the character 's lines would suggest , and Sarandon , who could n't be better as a cruel but weirdly likable WASP matron 3 +53407 2649 Philippe , who makes Oliver far more interesting than the character 's lines would suggest , and 3 +53408 2649 Philippe , who makes Oliver far more interesting than the character 's lines would suggest , 2 +53409 2649 Philippe , who makes Oliver far more interesting than the character 's lines would suggest 3 +53410 2649 Philippe , 2 +53411 2649 Philippe 2 +53412 2649 who makes Oliver far more interesting than the character 's lines would suggest 3 +53413 2649 makes Oliver far more interesting than the character 's lines would suggest 3 +53414 2649 makes Oliver far more interesting 3 +53415 2649 Oliver far more interesting 2 +53416 2649 Oliver 2 +53417 2649 far more interesting 3 +53418 2649 than the character 's lines would suggest 2 +53419 2649 the character 's lines would suggest 2 +53420 2649 the character 's lines 2 +53421 2649 the character 's 2 +53422 2649 would suggest 2 +53423 2649 Sarandon , who could n't be better as a cruel but weirdly likable WASP matron 4 +53424 2649 Sarandon , 2 +53425 2649 Sarandon 2 +53426 2649 who could n't be better as a cruel but weirdly likable WASP matron 3 +53427 2649 could n't be better as a cruel but weirdly likable WASP matron 3 +53428 2649 be better as a cruel but weirdly likable WASP matron 2 +53429 2649 as a cruel but weirdly likable WASP matron 2 +53430 2649 a cruel but weirdly likable WASP matron 3 +53431 2649 cruel but weirdly likable WASP matron 3 +53432 2649 cruel but weirdly likable 3 +53433 2649 cruel but 2 +53434 2649 weirdly likable 3 +53435 2649 WASP matron 2 +53436 2649 WASP 2 +53437 2649 matron 2 +53438 2650 A plethora of engaging diatribes on the meaning of ` home , ' delivered in grand passion by the members of the various households . 3 +53439 2650 A plethora of engaging diatribes on the meaning of ` home , ' 2 +53440 2650 A plethora of engaging diatribes on the meaning of ` home , 2 +53441 2650 A plethora of engaging diatribes on the meaning of ` home 3 +53442 2650 A plethora of engaging diatribes 3 +53443 2650 of engaging diatribes 2 +53444 2650 engaging diatribes 3 +53445 2650 diatribes 2 +53446 2650 on the meaning of ` home 2 +53447 2650 the meaning of ` home 2 +53448 2650 the meaning 2 +53449 2650 of ` home 2 +53450 2650 delivered in grand passion by the members of the various households . 3 +53451 2650 delivered in grand passion by the members of the various households 3 +53452 2650 delivered in grand passion 3 +53453 2650 in grand passion 3 +53454 2650 grand passion 2 +53455 2650 by the members of the various households 2 +53456 2650 the members of the various households 2 +53457 2650 the members 2 +53458 2650 members 2 +53459 2650 of the various households 2 +53460 2650 the various households 2 +53461 2650 various households 2 +53462 2650 households 2 +53463 2651 A coming-of-age film 2 +53464 2651 coming-of-age film 3 +53465 2651 and sneering humor 2 +53466 2651 sneering humor 3 +53467 2651 sneering 1 +53468 2651 of the genre 2 +53469 2651 as it provides a fresh view of an old type 3 +53470 2651 it provides a fresh view of an old type 3 +53471 2651 provides a fresh view of an old type 3 +53472 2651 a fresh view of an old type 3 +53473 2651 a fresh view 4 +53474 2651 fresh view 3 +53475 2651 of an old type 2 +53476 2651 an old type 2 +53477 2651 old type 2 +53478 2651 the uncertain girl on the brink of womanhood 2 +53479 2651 the uncertain girl 2 +53480 2651 uncertain girl 2 +53481 2651 uncertain 1 +53482 2651 on the brink of womanhood 2 +53483 2651 the brink of womanhood 2 +53484 2651 the brink 2 +53485 2651 brink 2 +53486 2651 of womanhood 2 +53487 2651 womanhood 2 +53488 2652 Ourside the theatre Roger might be intolerable company , but inside it he 's well worth spending some time with . 4 +53489 2652 Ourside the theatre Roger might be intolerable company , but inside it he 's well worth spending some time with 3 +53490 2652 Ourside the theatre Roger might be intolerable company , but 2 +53491 2652 Ourside the theatre Roger might be intolerable company , 1 +53492 2652 Ourside the theatre Roger might be intolerable company 2 +53493 2652 Ourside 2 +53494 2652 the theatre Roger might be intolerable company 2 +53495 2652 the theatre Roger 2 +53496 2652 theatre Roger 2 +53497 2652 might be intolerable company 1 +53498 2652 be intolerable company 1 +53499 2652 intolerable company 1 +53500 2652 inside it he 's well worth spending some time with 3 +53501 2652 inside it 2 +53502 2652 he 's well worth spending some time with 3 +53503 2652 's well worth spending some time with 4 +53504 2652 's well worth 3 +53505 2652 well worth 3 +53506 2652 spending some time with 2 +53507 2652 spending some time 2 +53508 2652 spending 2 +53509 2653 Despite its visual virtuosity , ` Naqoyqatsi ' is banal in its message and the choice of material to convey it . 1 +53510 2653 Despite its visual virtuosity 2 +53511 2653 its visual virtuosity 2 +53512 2653 visual virtuosity 3 +53513 2653 virtuosity 3 +53514 2653 , ` Naqoyqatsi ' is banal in its message and the choice of material to convey it . 1 +53515 2653 ` Naqoyqatsi ' is banal in its message and the choice of material to convey it . 2 +53516 2653 Naqoyqatsi ' is banal in its message and the choice of material to convey it . 1 +53517 2653 Naqoyqatsi 2 +53518 2653 ' is banal in its message and the choice of material to convey it . 1 +53519 2653 is banal in its message and the choice of material to convey it . 1 +53520 2653 is banal in its message and the choice of material to convey it 1 +53521 2653 is banal in its message and the choice of material 1 +53522 2653 banal in its message and the choice of material 1 +53523 2653 in its message and the choice of material 2 +53524 2653 its message and the choice of material 2 +53525 2653 its message and 2 +53526 2653 the choice of material 2 +53527 2653 the choice 2 +53528 2653 to convey it 2 +53529 2653 convey it 2 +53530 2654 Stealing Harvard does n't care about cleverness , wit or any other kind of intelligent humor . 0 +53531 2654 Stealing Harvard 2 +53532 2654 Stealing 2 +53533 2654 Harvard 2 +53534 2654 does n't care about cleverness , wit or any other kind of intelligent humor . 0 +53535 2654 does n't care about cleverness , wit or any other kind of intelligent humor 1 +53536 2654 care about cleverness , wit or any other kind of intelligent humor 3 +53537 2654 about cleverness , wit or any other kind of intelligent humor 3 +53538 2654 cleverness , wit or any other kind of intelligent humor 2 +53539 2654 cleverness , wit or 3 +53540 2654 cleverness , wit 2 +53541 2654 cleverness , 2 +53542 2654 any other kind of intelligent humor 3 +53543 2654 any other kind 2 +53544 2654 other kind 2 +53545 2654 of intelligent humor 3 +53546 2654 intelligent humor 4 +53547 2655 What I saw , I enjoyed . 4 +53548 2655 What I saw 2 +53549 2655 I saw 2 +53550 2655 , I enjoyed . 4 +53551 2655 I enjoyed . 3 +53552 2655 enjoyed . 3 +53553 2656 The Sum of All Fears pretends to be a serious exploration of nuclear terrorism , but it 's really nothing more than warmed-over Cold War paranoia . 0 +53554 2656 The Sum of All Fears pretends to be a serious exploration of nuclear terrorism , but it 's really nothing more than warmed-over Cold War paranoia 2 +53555 2656 The Sum of All Fears pretends to be a serious exploration of nuclear terrorism , but 1 +53556 2656 The Sum of All Fears pretends to be a serious exploration of nuclear terrorism , 1 +53557 2656 The Sum of All Fears pretends to be a serious exploration of nuclear terrorism 2 +53558 2656 pretends to be a serious exploration of nuclear terrorism 1 +53559 2656 to be a serious exploration of nuclear terrorism 2 +53560 2656 be a serious exploration of nuclear terrorism 2 +53561 2656 a serious exploration of nuclear terrorism 3 +53562 2656 a serious exploration 3 +53563 2656 serious exploration 2 +53564 2656 of nuclear terrorism 2 +53565 2656 nuclear terrorism 2 +53566 2656 terrorism 1 +53567 2656 it 's really nothing more than warmed-over Cold War paranoia 1 +53568 2656 's really nothing more than warmed-over Cold War paranoia 1 +53569 2656 nothing more than warmed-over Cold War paranoia 1 +53570 2656 nothing more 2 +53571 2656 than warmed-over Cold War paranoia 2 +53572 2656 warmed-over Cold War paranoia 1 +53573 2656 Cold War paranoia 2 +53574 2656 War paranoia 2 +53575 2656 paranoia 1 +53576 2657 Morton deserves an Oscar nomination . 4 +53577 2657 Morton 2 +53578 2657 deserves an Oscar nomination . 4 +53579 2657 deserves an Oscar nomination 4 +53580 2657 an Oscar nomination 3 +53581 2657 Oscar nomination 3 +53582 2658 A sentimental mess that never rings true . 0 +53583 2658 A sentimental mess that never rings true 0 +53584 2658 A sentimental mess that never 1 +53585 2658 A sentimental mess 1 +53586 2658 sentimental mess 1 +53587 2658 that never 1 +53588 2658 rings true 2 +53589 2658 rings 2 +53590 2659 Some episodes work , some do n't . 1 +53591 2659 Some episodes work 2 +53592 2659 , some do n't . 2 +53593 2659 some do n't . 2 +53594 2659 do n't . 2 +53595 2660 For those of an indulgent , slightly sunbaked and summery mind , Sex and Lucia may well prove diverting enough . 3 +53596 2660 For those of an indulgent 2 +53597 2660 those of an indulgent 2 +53598 2660 of an indulgent 2 +53599 2660 an indulgent 2 +53600 2660 , slightly sunbaked and summery mind , Sex and Lucia may well prove diverting enough . 2 +53601 2660 slightly sunbaked and summery mind , Sex and Lucia may well prove diverting enough . 3 +53602 2660 slightly sunbaked and summery mind , Sex and Lucia 3 +53603 2660 slightly sunbaked and summery mind , Sex and 3 +53604 2660 slightly sunbaked and summery mind , Sex 2 +53605 2660 slightly sunbaked and summery mind , 2 +53606 2660 slightly sunbaked and summery mind 2 +53607 2660 slightly sunbaked and summery 2 +53608 2660 sunbaked and summery 2 +53609 2660 sunbaked and 2 +53610 2660 sunbaked 2 +53611 2660 summery 3 +53612 2660 Lucia 2 +53613 2660 may well prove diverting enough . 2 +53614 2660 may well prove diverting enough 2 +53615 2660 prove diverting enough 3 +53616 2660 diverting enough 2 +53617 2661 Represents the depths to which the girls-behaving-badly film has fallen . 1 +53618 2661 Represents the depths to which the girls-behaving-badly film has fallen 1 +53619 2661 the depths to which the girls-behaving-badly film has fallen 1 +53620 2661 the depths 3 +53621 2661 to which the girls-behaving-badly film has fallen 1 +53622 2661 the girls-behaving-badly film has fallen 1 +53623 2661 the girls-behaving-badly film 2 +53624 2661 girls-behaving-badly film 2 +53625 2661 girls-behaving-badly 2 +53626 2661 has fallen 1 +53627 2661 fallen 1 +53628 2662 Pompous and garbled . 0 +53629 2662 Pompous and garbled 0 +53630 2662 Pompous and 1 +53631 2662 garbled 2 +53632 2663 A depressingly retrograde , ` post-feminist ' romantic comedy that takes an astonishingly condescending attitude toward women . 0 +53633 2663 A depressingly retrograde , ` post-feminist ' romantic comedy that takes an astonishingly condescending attitude toward women 1 +53634 2663 A depressingly retrograde , 2 +53635 2663 A depressingly retrograde 0 +53636 2663 depressingly retrograde 0 +53637 2663 depressingly 2 +53638 2663 retrograde 2 +53639 2663 ` post-feminist ' romantic comedy that takes an astonishingly condescending attitude toward women 1 +53640 2663 ` post-feminist ' romantic 2 +53641 2663 post-feminist ' romantic 2 +53642 2663 post-feminist 2 +53643 2663 ' romantic 3 +53644 2663 comedy that takes an astonishingly condescending attitude toward women 0 +53645 2663 that takes an astonishingly condescending attitude toward women 1 +53646 2663 takes an astonishingly condescending attitude toward women 0 +53647 2663 an astonishingly condescending attitude toward women 0 +53648 2663 an astonishingly condescending attitude 2 +53649 2663 astonishingly condescending attitude 0 +53650 2663 astonishingly condescending 1 +53651 2663 condescending 1 +53652 2663 toward women 2 +53653 2664 Although sensitive to a fault , it 's often overwritten , with a surfeit of weighty revelations , flowery dialogue , and nostalgia for the past and roads not taken . 1 +53654 2664 Although sensitive to a fault 2 +53655 2664 sensitive to a fault 2 +53656 2664 to a fault 2 +53657 2664 a fault 1 +53658 2664 fault 2 +53659 2664 , it 's often overwritten , with a surfeit of weighty revelations , flowery dialogue , and nostalgia for the past and roads not taken . 1 +53660 2664 it 's often overwritten , with a surfeit of weighty revelations , flowery dialogue , and nostalgia for the past and roads not taken . 1 +53661 2664 's often overwritten , with a surfeit of weighty revelations , flowery dialogue , and nostalgia for the past and roads not taken . 2 +53662 2664 's often overwritten , with a surfeit of weighty revelations , flowery dialogue , and nostalgia for the past and roads not taken 1 +53663 2664 's often overwritten , 1 +53664 2664 's often overwritten 1 +53665 2664 often overwritten 1 +53666 2664 with a surfeit of weighty revelations , flowery dialogue , and nostalgia for the past and roads not taken 2 +53667 2664 a surfeit of weighty revelations , flowery dialogue , and nostalgia for the past and roads not taken 2 +53668 2664 a surfeit of weighty revelations , flowery dialogue , and nostalgia for the past and 2 +53669 2664 a surfeit of weighty revelations , flowery dialogue , and nostalgia for the past 3 +53670 2664 a surfeit 2 +53671 2664 surfeit 2 +53672 2664 of weighty revelations , flowery dialogue , and nostalgia for the past 3 +53673 2664 weighty revelations , flowery dialogue , and nostalgia for the past 3 +53674 2664 weighty revelations , flowery dialogue , and 2 +53675 2664 weighty revelations , flowery dialogue , 3 +53676 2664 weighty revelations , flowery dialogue 2 +53677 2664 weighty revelations , 2 +53678 2664 weighty revelations 2 +53679 2664 flowery dialogue 2 +53680 2664 flowery 3 +53681 2664 nostalgia for the past 2 +53682 2664 for the past 2 +53683 2664 the past 2 +53684 2664 roads not taken 2 +53685 2664 roads 2 +53686 2664 not taken 1 +53687 2665 Its almost too-spectacular coastal setting distracts slightly from an eccentric and good-naturedly aimless story . 3 +53688 2665 Its almost too-spectacular coastal setting distracts slightly from an eccentric and good-naturedly aimless story 2 +53689 2665 Its almost too-spectacular coastal setting distracts 2 +53690 2665 almost too-spectacular coastal setting distracts 2 +53691 2665 almost too-spectacular 2 +53692 2665 too-spectacular 1 +53693 2665 coastal setting distracts 2 +53694 2665 coastal 2 +53695 2665 setting distracts 1 +53696 2665 distracts 1 +53697 2665 slightly from an eccentric and good-naturedly aimless story 2 +53698 2665 from an eccentric and good-naturedly aimless story 3 +53699 2665 an eccentric and good-naturedly aimless story 2 +53700 2665 eccentric and good-naturedly aimless story 3 +53701 2665 eccentric and good-naturedly 3 +53702 2665 eccentric and 3 +53703 2665 aimless story 1 +53704 2665 aimless 1 +53705 2666 But it was n't . 1 +53706 2666 it was n't . 2 +53707 2666 was n't . 2 +53708 2667 Horns and Halos benefits from serendipity but also reminds us of our own responsibility to question what is told as the truth . 3 +53709 2667 Horns and Halos 2 +53710 2667 Horns and 2 +53711 2667 Horns 2 +53712 2667 Halos 2 +53713 2667 benefits from serendipity but also reminds us of our own responsibility to question what is told as the truth . 3 +53714 2667 benefits from serendipity but also reminds us of our own responsibility to question what is told as the truth 3 +53715 2667 benefits from serendipity but 3 +53716 2667 benefits from serendipity 3 +53717 2667 from serendipity 2 +53718 2667 serendipity 2 +53719 2667 also reminds us of our own responsibility to question what is told as the truth 3 +53720 2667 reminds us of our own responsibility to question what is told as the truth 3 +53721 2667 reminds us of our own responsibility 3 +53722 2667 of our own responsibility 2 +53723 2667 our own responsibility 2 +53724 2667 own responsibility 2 +53725 2667 to question what is told as the truth 2 +53726 2667 question what is told as the truth 2 +53727 2667 what is told as the truth 2 +53728 2667 is told as the truth 3 +53729 2667 told as the truth 2 +53730 2667 as the truth 2 +53731 2668 This is one of those war movies that focuses on human interaction rather than battle and action sequences ... and it 's all the stronger because of it . 4 +53732 2668 This is one of those war movies that focuses on human interaction rather than battle and action sequences ... and it 's all the stronger because of it 4 +53733 2668 This is one of those war movies that focuses on human interaction rather than battle and action sequences ... and 3 +53734 2668 This is one of those war movies that focuses on human interaction rather than battle and action sequences ... 3 +53735 2668 This is one of those war movies that focuses on human interaction rather than battle and action sequences 2 +53736 2668 is one of those war movies that focuses on human interaction rather than battle and action sequences 3 +53737 2668 one of those war movies that focuses on human interaction rather than battle and action sequences 2 +53738 2668 one of those war movies 2 +53739 2668 of those war movies 2 +53740 2668 those war movies 2 +53741 2668 that focuses on human interaction rather than battle and action sequences 2 +53742 2668 focuses on human interaction rather than battle and action sequences 2 +53743 2668 focuses 2 +53744 2668 on human interaction rather than battle and action sequences 3 +53745 2668 human interaction rather than battle and action sequences 2 +53746 2668 human interaction rather than 2 +53747 2668 human interaction 2 +53748 2668 interaction 2 +53749 2668 battle and action sequences 2 +53750 2668 and action sequences 2 +53751 2668 it 's all the stronger because of it 3 +53752 2668 's all the stronger because of it 3 +53753 2668 all the stronger because of it 3 +53754 2668 all the stronger 3 +53755 2668 the stronger 2 +53756 2668 stronger 3 +53757 2668 because of it 2 +53758 2669 Writer-director Juan Carlos Fresnadillo makes a feature debut that is fully formed and remarkably assured . 4 +53759 2669 Writer-director Juan Carlos Fresnadillo 2 +53760 2669 Juan Carlos Fresnadillo 2 +53761 2669 Juan 2 +53762 2669 Carlos Fresnadillo 2 +53763 2669 Carlos 3 +53764 2669 makes a feature debut that is fully formed and remarkably assured . 4 +53765 2669 makes a feature debut that is fully formed and remarkably assured 4 +53766 2669 a feature debut that is fully formed and remarkably assured 3 +53767 2669 a feature debut 3 +53768 2669 feature debut 2 +53769 2669 that is fully formed and remarkably assured 3 +53770 2669 is fully formed and remarkably assured 4 +53771 2669 fully formed and remarkably assured 3 +53772 2669 fully formed and 3 +53773 2669 fully formed 3 +53774 2669 formed 2 +53775 2669 remarkably assured 3 +53776 2670 But this new jangle of noise , mayhem and stupidity must be a serious contender for the title . 0 +53777 2670 this new jangle of noise , mayhem and stupidity must be a serious contender for the title . 1 +53778 2670 this new jangle of noise , mayhem and stupidity 0 +53779 2670 this new jangle 2 +53780 2670 new jangle 2 +53781 2670 jangle 2 +53782 2670 of noise , mayhem and stupidity 2 +53783 2670 noise , mayhem and stupidity 1 +53784 2670 , mayhem and stupidity 1 +53785 2670 mayhem and stupidity 0 +53786 2670 mayhem and 2 +53787 2670 must be a serious contender for the title . 3 +53788 2670 must be a serious contender for the title 3 +53789 2670 be a serious contender for the title 2 +53790 2670 a serious contender for the title 3 +53791 2670 a serious contender 3 +53792 2670 serious contender 3 +53793 2670 contender 2 +53794 2670 for the title 2 +53795 2671 A quiet family drama with a little bit of romance and a dose of darkness . 3 +53796 2671 A quiet family drama with a little bit of romance and a dose of darkness 3 +53797 2671 A quiet family drama with a little bit of romance and a dose 2 +53798 2671 A quiet family drama 2 +53799 2671 quiet family drama 3 +53800 2671 with a little bit of romance and a dose 2 +53801 2671 a little bit of romance and a dose 3 +53802 2671 a little bit 2 +53803 2671 little bit 2 +53804 2671 of romance and a dose 2 +53805 2671 romance and a dose 2 +53806 2671 romance and 2 +53807 2671 a dose 2 +53808 2671 of darkness 2 +53809 2672 Children of the Century , though well dressed and well made , ultimately falls prey to the contradiction that afflicts so many movies about writers . 2 +53810 2672 Children of the Century , though well dressed and well made , 3 +53811 2672 Children of the Century , though well dressed and well made 2 +53812 2672 Children of the Century , 2 +53813 2672 Children of the Century 2 +53814 2672 of the Century 2 +53815 2672 the Century 2 +53816 2672 though well dressed and well made 3 +53817 2672 well dressed and well made 3 +53818 2672 well dressed and well 2 +53819 2672 well dressed and 2 +53820 2672 well dressed 3 +53821 2672 ultimately falls prey to the contradiction that afflicts so many movies about writers . 2 +53822 2672 falls prey to the contradiction that afflicts so many movies about writers . 1 +53823 2672 falls prey to the contradiction that afflicts so many movies about writers 2 +53824 2672 falls prey 2 +53825 2672 prey 2 +53826 2672 to the contradiction that afflicts so many movies about writers 2 +53827 2672 the contradiction that afflicts so many movies about writers 1 +53828 2672 the contradiction 2 +53829 2672 contradiction 1 +53830 2672 that afflicts so many movies about writers 2 +53831 2672 afflicts so many movies about writers 2 +53832 2672 afflicts 2 +53833 2672 so many movies about writers 2 +53834 2672 so many movies 2 +53835 2672 about writers 2 +53836 2673 If Festival in Cannes nails hard - boiled Hollywood argot with a bracingly nasty accuracy , much about the film , including some of its casting , is frustratingly unconvincing . 1 +53837 2673 If Festival in Cannes nails hard - boiled Hollywood argot with a bracingly nasty accuracy 3 +53838 2673 Festival in Cannes nails hard - boiled Hollywood argot with a bracingly nasty accuracy 2 +53839 2673 nails hard - boiled Hollywood argot with a bracingly nasty accuracy 3 +53840 2673 nails hard - 3 +53841 2673 nails hard 3 +53842 2673 boiled Hollywood argot with a bracingly nasty accuracy 2 +53843 2673 boiled Hollywood argot 1 +53844 2673 boiled 2 +53845 2673 Hollywood argot 2 +53846 2673 argot 2 +53847 2673 with a bracingly nasty accuracy 2 +53848 2673 a bracingly nasty accuracy 2 +53849 2673 bracingly nasty accuracy 2 +53850 2673 bracingly nasty 1 +53851 2673 accuracy 3 +53852 2673 , much about the film , including some of its casting , is frustratingly unconvincing . 0 +53853 2673 much about the film , including some of its casting , is frustratingly unconvincing . 2 +53854 2673 much about the film , including some of its casting , 3 +53855 2673 much about the film , including some of its casting 3 +53856 2673 much about the film , 2 +53857 2673 much about the film 2 +53858 2673 including some of its casting 2 +53859 2673 some of its casting 2 +53860 2673 of its casting 2 +53861 2673 its casting 2 +53862 2673 is frustratingly unconvincing . 0 +53863 2673 is frustratingly unconvincing 1 +53864 2673 frustratingly unconvincing 0 +53865 2674 A woefully dull , redundant concept that bears more than a whiff of exploitation , despite Iwai 's vaunted empathy . 0 +53866 2674 A woefully dull , redundant concept that bears more than a whiff of exploitation , despite Iwai 's vaunted empathy 1 +53867 2674 A woefully dull , 2 +53868 2674 A woefully dull 1 +53869 2674 woefully dull 1 +53870 2674 woefully 2 +53871 2674 redundant concept that bears more than a whiff of exploitation , despite Iwai 's vaunted empathy 2 +53872 2674 redundant concept 1 +53873 2674 that bears more than a whiff of exploitation , despite Iwai 's vaunted empathy 1 +53874 2674 bears more than a whiff of exploitation , despite Iwai 's vaunted empathy 1 +53875 2674 bears more than a whiff of exploitation , 1 +53876 2674 bears more than a whiff of exploitation 2 +53877 2674 more than a whiff of exploitation 1 +53878 2674 more than a whiff 3 +53879 2674 whiff 2 +53880 2674 of exploitation 2 +53881 2674 despite Iwai 's vaunted empathy 1 +53882 2674 Iwai 's vaunted empathy 2 +53883 2674 Iwai 's 2 +53884 2674 Iwai 2 +53885 2674 vaunted empathy 3 +53886 2674 vaunted 2 +53887 2675 My Wife Is an Actress works as well as it does because -LRB- the leads -RRB- are such a companionable couple . 3 +53888 2675 My Wife 2 +53889 2675 Is an Actress works as well as it does because -LRB- the leads -RRB- are such a companionable couple . 3 +53890 2675 Is an Actress works as well as it does because -LRB- the leads -RRB- are such a companionable couple 3 +53891 2675 Is an Actress works 2 +53892 2675 an Actress works 2 +53893 2675 Actress works 2 +53894 2675 as well as it does because -LRB- the leads -RRB- are such a companionable couple 2 +53895 2675 as it does because -LRB- the leads -RRB- are such a companionable couple 3 +53896 2675 it does because -LRB- the leads -RRB- are such a companionable couple 3 +53897 2675 does because -LRB- the leads -RRB- are such a companionable couple 3 +53898 2675 because -LRB- the leads -RRB- are such a companionable couple 3 +53899 2675 -LRB- the leads -RRB- are such a companionable couple 3 +53900 2675 the leads -RRB- are such a companionable couple 3 +53901 2675 -RRB- are such a companionable couple 3 +53902 2675 are such a companionable couple 3 +53903 2675 such a companionable couple 3 +53904 2675 a companionable couple 3 +53905 2675 companionable couple 2 +53906 2675 companionable 3 +53907 2676 It asks nothing of the audience other than to sit back and enjoy a couple of great actors hamming it up . 3 +53908 2676 asks nothing of the audience other than to sit back and enjoy a couple of great actors hamming it up . 2 +53909 2676 asks nothing of the audience other than to sit back and enjoy a couple of great actors hamming it up 3 +53910 2676 nothing of the audience other than to sit back and enjoy a couple of great actors hamming it up 3 +53911 2676 of the audience other than to sit back and enjoy a couple of great actors hamming it up 3 +53912 2676 the audience other than to sit back and enjoy a couple of great actors hamming it up 3 +53913 2676 other than to sit back and enjoy a couple of great actors hamming it up 3 +53914 2676 than to sit back and enjoy a couple of great actors hamming it up 4 +53915 2676 to sit back and enjoy a couple of great actors hamming it up 3 +53916 2676 sit back and enjoy a couple of great actors hamming it up 4 +53917 2676 sit back and 2 +53918 2676 sit back 2 +53919 2676 enjoy a couple of great actors hamming it up 3 +53920 2676 a couple of great actors hamming it up 4 +53921 2676 of great actors hamming it up 1 +53922 2676 great actors hamming it up 3 +53923 2676 great actors 4 +53924 2676 hamming it up 2 +53925 2676 hamming it 2 +53926 2676 hamming 2 +53927 2677 Martyr gets royally screwed and comes back for more . 2 +53928 2677 Martyr 3 +53929 2677 gets royally screwed and comes back for more . 2 +53930 2677 gets royally screwed and comes back for more 1 +53931 2677 gets royally screwed and 1 +53932 2677 gets royally screwed 1 +53933 2677 royally screwed 1 +53934 2677 royally 3 +53935 2677 screwed 2 +53936 2677 comes back for more 2 +53937 2677 comes back 2 +53938 2678 Scotland , PA is entirely too straight-faced to transcend its clever concept . 1 +53939 2678 is entirely too straight-faced to transcend its clever concept . 1 +53940 2678 is entirely too straight-faced to transcend its clever concept 2 +53941 2678 is entirely too straight-faced 1 +53942 2678 entirely too straight-faced 2 +53943 2678 too straight-faced 1 +53944 2678 straight-faced 2 +53945 2678 to transcend its clever concept 3 +53946 2678 transcend its clever concept 3 +53947 2678 its clever concept 3 +53948 2678 clever concept 3 +53949 2679 Miller has crafted an intriguing story of maternal instincts and misguided acts of affection . 3 +53950 2679 has crafted an intriguing story of maternal instincts and misguided acts of affection . 3 +53951 2679 has crafted an intriguing story of maternal instincts and misguided acts of affection 3 +53952 2679 crafted an intriguing story of maternal instincts and misguided acts of affection 3 +53953 2679 an intriguing story of maternal instincts and misguided acts of affection 4 +53954 2679 an intriguing story of maternal instincts and 3 +53955 2679 an intriguing story of maternal instincts 3 +53956 2679 an intriguing story 3 +53957 2679 intriguing story 4 +53958 2679 of maternal instincts 2 +53959 2679 maternal instincts 2 +53960 2679 misguided acts of affection 1 +53961 2679 misguided acts 2 +53962 2679 misguided 0 +53963 2679 of affection 2 +53964 2680 Often silly -- and gross -- but it 's rarely as moronic as some campus gross-out films . 1 +53965 2680 silly -- and gross -- but it 's rarely as moronic as some campus gross-out films . 1 +53966 2680 silly -- and gross -- but it 2 +53967 2680 silly -- and gross -- 0 +53968 2680 -- and gross -- 1 +53969 2680 -- and gross 1 +53970 2680 gross 0 +53971 2680 's rarely as moronic as some campus gross-out films . 2 +53972 2680 's rarely as moronic as some campus gross-out films 1 +53973 2680 's rarely 2 +53974 2680 as moronic as some campus gross-out films 0 +53975 2680 as moronic as some campus 0 +53976 2680 moronic as some campus 0 +53977 2680 moronic 0 +53978 2680 as some campus 2 +53979 2680 some campus 2 +53980 2680 campus 2 +53981 2680 gross-out films 2 +53982 2681 The gags , and the script , are a mixed bag . 1 +53983 2681 The gags , and the script , 2 +53984 2681 The gags , and the script 2 +53985 2681 The gags , and 2 +53986 2681 The gags , 2 +53987 2681 The gags 3 +53988 2681 are a mixed bag . 2 +53989 2681 are a mixed bag 2 +53990 2681 a mixed bag 2 +53991 2681 mixed bag 2 +53992 2682 A crisply made movie that is no more than mildly amusing . 2 +53993 2682 A crisply 2 +53994 2682 crisply 2 +53995 2682 made movie that is no more than mildly amusing . 1 +53996 2682 made movie that is no more than mildly amusing 2 +53997 2682 movie that is no more than mildly amusing 2 +53998 2682 that is no more than mildly amusing 2 +53999 2682 is no more than mildly amusing 2 +54000 2682 is no more than 2 +54001 2682 no more than 2 +54002 2683 Terrific casting and solid execution give all three stories life . 3 +54003 2683 Terrific casting and solid execution 4 +54004 2683 Terrific casting and 4 +54005 2683 Terrific casting 4 +54006 2683 solid execution 4 +54007 2683 give all three stories life . 2 +54008 2683 give all three stories life 3 +54009 2683 give all three stories 2 +54010 2683 all three stories 2 +54011 2683 three stories 2 +54012 2684 Promises is a compelling piece that demonstrates just how well children can be trained to live out and carry on their parents ' anguish . 3 +54013 2684 is a compelling piece that demonstrates just how well children can be trained to live out and carry on their parents ' anguish . 2 +54014 2684 is a compelling piece that demonstrates just how well children can be trained to live out and carry on their parents ' anguish 3 +54015 2684 a compelling piece that demonstrates just how well children can be trained to live out and carry on their parents ' anguish 3 +54016 2684 a compelling piece 4 +54017 2684 compelling piece 4 +54018 2684 that demonstrates just how well children can be trained to live out and carry on their parents ' anguish 2 +54019 2684 demonstrates just how well children can be trained to live out and carry on their parents ' anguish 2 +54020 2684 just how well children can be trained to live out and carry on their parents ' anguish 2 +54021 2684 just how well 3 +54022 2684 children can be trained to live out and carry on their parents ' anguish 2 +54023 2684 can be trained to live out and carry on their parents ' anguish 2 +54024 2684 be trained to live out and carry on their parents ' anguish 2 +54025 2684 trained to live out and carry on their parents ' anguish 1 +54026 2684 trained 2 +54027 2684 to live out and carry on their parents ' anguish 1 +54028 2684 live out and carry on their parents ' anguish 2 +54029 2684 live out and 2 +54030 2684 live out 2 +54031 2684 carry on their parents ' anguish 1 +54032 2684 on their parents ' anguish 1 +54033 2684 their parents ' anguish 1 +54034 2684 their parents ' 2 +54035 2684 parents ' 2 +54036 2685 The characters ... are paper-thin , and their personalities undergo radical changes when it suits the script . 0 +54037 2685 ... are paper-thin , and their personalities undergo radical changes when it suits the script . 2 +54038 2685 are paper-thin , and their personalities undergo radical changes when it suits the script . 1 +54039 2685 are paper-thin , and their personalities undergo radical changes when it suits the script 0 +54040 2685 paper-thin , and their personalities undergo radical changes when it suits the script 1 +54041 2685 , and their personalities undergo radical changes when it suits the script 1 +54042 2685 their personalities undergo radical changes when it suits the script 1 +54043 2685 their personalities 2 +54044 2685 personalities 2 +54045 2685 undergo radical changes when it suits the script 1 +54046 2685 undergo radical changes 2 +54047 2685 undergo 2 +54048 2685 radical changes 2 +54049 2685 when it suits the script 2 +54050 2685 it suits the script 3 +54051 2685 suits the script 3 +54052 2686 What makes Barbershop so likable , with all its flaws , is that it has none of the pushiness and decibel volume of most contemporary comedies . 3 +54053 2686 What makes Barbershop so likable 3 +54054 2686 makes Barbershop so likable 3 +54055 2686 Barbershop so likable 3 +54056 2686 so likable 3 +54057 2686 , with all its flaws , is that it has none of the pushiness and decibel volume of most contemporary comedies . 2 +54058 2686 with all its flaws , is that it has none of the pushiness and decibel volume of most contemporary comedies . 1 +54059 2686 with all its flaws 1 +54060 2686 all its flaws 1 +54061 2686 , is that it has none of the pushiness and decibel volume of most contemporary comedies . 3 +54062 2686 is that it has none of the pushiness and decibel volume of most contemporary comedies . 3 +54063 2686 is that it has none of the pushiness and decibel volume of most contemporary comedies 2 +54064 2686 that it has none of the pushiness and decibel volume of most contemporary comedies 3 +54065 2686 it has none of the pushiness and decibel volume of most contemporary comedies 2 +54066 2686 has none of the pushiness and decibel volume of most contemporary comedies 3 +54067 2686 none of the pushiness and decibel volume of most contemporary comedies 3 +54068 2686 of the pushiness and decibel volume of most contemporary comedies 3 +54069 2686 the pushiness and decibel volume of most contemporary comedies 2 +54070 2686 the pushiness and decibel volume 1 +54071 2686 pushiness and decibel volume 1 +54072 2686 pushiness and decibel 1 +54073 2686 pushiness and 2 +54074 2686 pushiness 1 +54075 2686 decibel 2 +54076 2686 volume 2 +54077 2686 of most contemporary comedies 2 +54078 2686 most contemporary comedies 2 +54079 2686 contemporary comedies 2 +54080 2687 Nothing more than four or five mild chuckles surrounded by 86 minutes of overly-familiar and poorly-constructed comedy . 1 +54081 2687 Nothing more than four or five mild chuckles 1 +54082 2687 Nothing more than four or 2 +54083 2687 Nothing more than four 2 +54084 2687 five mild chuckles 2 +54085 2687 mild chuckles 2 +54086 2687 surrounded by 86 minutes of overly-familiar and poorly-constructed comedy . 0 +54087 2687 surrounded by 86 minutes of overly-familiar and poorly-constructed comedy 1 +54088 2687 surrounded 2 +54089 2687 by 86 minutes of overly-familiar and poorly-constructed comedy 0 +54090 2687 86 minutes of overly-familiar and poorly-constructed comedy 2 +54091 2687 of overly-familiar and poorly-constructed comedy 0 +54092 2687 overly-familiar and poorly-constructed comedy 1 +54093 2687 overly-familiar 1 +54094 2687 and poorly-constructed comedy 0 +54095 2687 poorly-constructed comedy 1 +54096 2687 poorly-constructed 1 +54097 2688 Sure , it 's contrived and predictable , but its performances are so well tuned that the film comes off winningly , even though it 's never as solid as you want it to be . 3 +54098 2688 Sure , it 's contrived and predictable , but its performances are so well tuned that the film comes off winningly , even though it 's never as solid as you want it to be 3 +54099 2688 Sure , it 's contrived and predictable , but 0 +54100 2688 Sure , it 's contrived and predictable , 1 +54101 2688 Sure , it 's contrived and predictable 1 +54102 2688 , it 's contrived and predictable 1 +54103 2688 it 's contrived and predictable 2 +54104 2688 's contrived and predictable 1 +54105 2688 contrived and predictable 1 +54106 2688 its performances are so well tuned that the film comes off winningly , even though it 's never as solid as you want it to be 3 +54107 2688 its performances 3 +54108 2688 are so well tuned that the film comes off winningly , even though it 's never as solid as you want it to be 3 +54109 2688 so well tuned that the film comes off winningly , even though it 's never as solid as you want it to be 3 +54110 2688 tuned that the film comes off winningly , even though it 's never as solid as you want it to be 2 +54111 2688 that the film comes off winningly , even though it 's never as solid as you want it to be 3 +54112 2688 the film comes off winningly , even though it 's never as solid as you want it to be 3 +54113 2688 comes off winningly , even though it 's never as solid as you want it to be 3 +54114 2688 comes off winningly , 3 +54115 2688 comes off winningly 4 +54116 2688 winningly 3 +54117 2688 even though it 's never as solid as you want it to be 2 +54118 2688 though it 's never as solid as you want it to be 2 +54119 2688 it 's never as solid as you want it to be 1 +54120 2688 's never as solid as you want it to be 1 +54121 2688 's never as solid 1 +54122 2688 as solid 2 +54123 2688 as you want it to be 2 +54124 2688 you want it to be 2 +54125 2688 want it to be 2 +54126 2688 it to be 2 +54127 2689 I never thought I 'd say this , but I 'd much rather watch teens poking their genitals into fruit pies ! 1 +54128 2689 I never thought I 'd say this , but I 'd much rather watch teens poking their genitals into fruit pies 1 +54129 2689 I never thought I 'd say this , but 2 +54130 2689 I never thought I 'd say this , 2 +54131 2689 I never thought I 'd say this 2 +54132 2689 never thought I 'd say this 3 +54133 2689 thought I 'd say this 2 +54134 2689 I 'd say this 2 +54135 2689 'd say this 2 +54136 2689 say this 2 +54137 2689 I 'd much rather watch teens poking their genitals into fruit pies 1 +54138 2689 'd much rather watch teens poking their genitals into fruit pies 1 +54139 2689 'd much rather 2 +54140 2689 much rather 2 +54141 2689 watch teens poking their genitals into fruit pies 2 +54142 2689 watch teens 2 +54143 2689 poking their genitals into fruit pies 1 +54144 2689 poking their genitals 2 +54145 2689 poking 2 +54146 2689 into fruit pies 2 +54147 2689 fruit pies 2 +54148 2689 fruit 2 +54149 2689 pies 2 +54150 2690 Informative , intriguing , observant , often touching ... gives a human face to what 's often discussed in purely abstract terms . 4 +54151 2690 Informative , intriguing , observant , often touching ... 3 +54152 2690 Informative , intriguing , observant , often touching 4 +54153 2690 Informative , intriguing , observant , 3 +54154 2690 Informative , intriguing , observant 3 +54155 2690 Informative , 3 +54156 2690 Informative 3 +54157 2690 intriguing , observant 3 +54158 2690 , observant 2 +54159 2690 often touching 3 +54160 2690 gives a human face to what 's often discussed in purely abstract terms . 3 +54161 2690 gives a human face to what 's often discussed in purely abstract terms 3 +54162 2690 gives a human face 2 +54163 2690 a human face 2 +54164 2690 human face 2 +54165 2690 to what 's often discussed in purely abstract terms 2 +54166 2690 what 's often discussed in purely abstract terms 2 +54167 2690 's often discussed in purely abstract terms 2 +54168 2690 's often 2 +54169 2690 discussed in purely abstract terms 2 +54170 2690 discussed 2 +54171 2690 in purely abstract terms 2 +54172 2690 purely abstract terms 2 +54173 2690 purely abstract 3 +54174 2691 Whatever heartwarming scene the impressively discreet filmmakers may have expected to record with their mini DV , they show a remarkable ability to document both sides of this emotional car-wreck . 4 +54175 2691 Whatever heartwarming scene the impressively discreet filmmakers may have expected to record with their mini DV 2 +54176 2691 heartwarming scene the impressively discreet filmmakers may have expected to record with their mini DV 3 +54177 2691 scene the impressively discreet filmmakers may have expected to record with their mini DV 1 +54178 2691 the impressively discreet filmmakers may have expected to record with their mini DV 2 +54179 2691 the impressively discreet filmmakers 3 +54180 2691 impressively discreet filmmakers 3 +54181 2691 discreet filmmakers 3 +54182 2691 discreet 2 +54183 2691 may have expected to record with their mini DV 3 +54184 2691 have expected to record with their mini DV 2 +54185 2691 expected to record with their mini DV 2 +54186 2691 to record with their mini DV 2 +54187 2691 record with their mini DV 2 +54188 2691 with their mini DV 2 +54189 2691 their mini DV 2 +54190 2691 mini DV 2 +54191 2691 mini 2 +54192 2691 DV 2 +54193 2691 , they show a remarkable ability to document both sides of this emotional car-wreck . 3 +54194 2691 they show a remarkable ability to document both sides of this emotional car-wreck . 3 +54195 2691 show a remarkable ability to document both sides of this emotional car-wreck . 3 +54196 2691 show a remarkable ability to document both sides of this emotional car-wreck 4 +54197 2691 a remarkable ability to document both sides of this emotional car-wreck 4 +54198 2691 remarkable ability to document both sides of this emotional car-wreck 3 +54199 2691 ability to document both sides of this emotional car-wreck 2 +54200 2691 to document both sides of this emotional car-wreck 2 +54201 2691 document both sides of this emotional car-wreck 1 +54202 2691 both sides of this emotional car-wreck 1 +54203 2691 of this emotional car-wreck 1 +54204 2691 this emotional car-wreck 1 +54205 2691 emotional car-wreck 1 +54206 2691 car-wreck 0 +54207 2692 A humorless journey into a philosophical void . 0 +54208 2692 A humorless 1 +54209 2692 journey into a philosophical void . 1 +54210 2692 journey into a philosophical void 3 +54211 2692 into a philosophical void 2 +54212 2692 a philosophical void 1 +54213 2692 philosophical void 1 +54214 2692 void 1 +54215 2693 The movie is essentially a series of fleetingly interesting actors ' moments . 2 +54216 2693 is essentially a series of fleetingly interesting actors ' moments . 3 +54217 2693 is essentially a series of fleetingly interesting actors ' moments 2 +54218 2693 a series of fleetingly interesting actors ' moments 2 +54219 2693 of fleetingly interesting actors ' moments 1 +54220 2693 fleetingly interesting actors ' moments 2 +54221 2693 fleetingly interesting actors ' 3 +54222 2693 fleetingly interesting 4 +54223 2693 fleetingly 2 +54224 2694 The plot twists give I Am Trying to Break Your Heart an attraction it desperately needed . 3 +54225 2694 The plot twists 2 +54226 2694 plot twists 2 +54227 2694 give I Am Trying to Break Your Heart an attraction it desperately needed . 1 +54228 2694 give I Am Trying to Break Your Heart an attraction it desperately needed 1 +54229 2694 give I 2 +54230 2694 Am Trying to Break Your Heart an attraction it desperately needed 2 +54231 2694 Trying to Break Your Heart an attraction it desperately needed 3 +54232 2694 to Break Your Heart an attraction it desperately needed 2 +54233 2694 Break Your Heart an attraction it desperately needed 2 +54234 2694 an attraction it desperately needed 2 +54235 2694 an attraction 2 +54236 2694 it desperately needed 2 +54237 2694 desperately needed 1 +54238 2695 An action\/thriller of the finest kind , evoking memories of Day of the Jackal , The French Connection , and Heat . 4 +54239 2695 An action\/thriller of the finest kind 3 +54240 2695 An action\/thriller 3 +54241 2695 action\/thriller 2 +54242 2695 of the finest kind 3 +54243 2695 the finest kind 3 +54244 2695 finest kind 3 +54245 2695 , evoking memories of Day of the Jackal , The French Connection , and Heat . 3 +54246 2695 evoking memories of Day of the Jackal , The French Connection , and Heat . 2 +54247 2695 evoking memories of Day of the Jackal , The French Connection , and Heat 3 +54248 2695 memories of Day of the Jackal , The French Connection , and Heat 2 +54249 2695 of Day of the Jackal , The French Connection , and Heat 2 +54250 2695 Day of the Jackal , The French Connection , and Heat 2 +54251 2695 of the Jackal , The French Connection , and Heat 2 +54252 2695 the Jackal , The French Connection , and Heat 2 +54253 2695 the Jackal , The French Connection , and 2 +54254 2695 the Jackal , The French Connection , 2 +54255 2695 the Jackal , The French Connection 2 +54256 2695 the Jackal , 2 +54257 2695 the Jackal 2 +54258 2695 Jackal 2 +54259 2695 The French Connection 2 +54260 2695 French Connection 2 +54261 2695 Connection 2 +54262 2696 The drama discloses almost nothing . 1 +54263 2696 The drama 2 +54264 2696 discloses almost nothing . 1 +54265 2696 discloses almost nothing 1 +54266 2696 discloses 2 +54267 2696 almost nothing 2 +54268 2697 It 's time to let your hair down -- Greek style . 2 +54269 2697 's time to let your hair down -- Greek style . 2 +54270 2697 's time to let your hair down -- Greek style 2 +54271 2697 time to let your hair down -- Greek style 3 +54272 2697 time to let your hair down -- 3 +54273 2697 time to let your hair down 3 +54274 2697 to let your hair down 2 +54275 2697 let your hair down 2 +54276 2697 let your hair 2 +54277 2697 your hair 2 +54278 2697 Greek style 2 +54279 2698 Wilco fans will have a great time , and the movie should win the band a few new converts , too . 3 +54280 2698 Wilco fans will have a great time , and the movie should win the band a few new converts , too 4 +54281 2698 Wilco fans will have a great time , and 3 +54282 2698 Wilco fans will have a great time , 4 +54283 2698 Wilco fans will have a great time 3 +54284 2698 Wilco fans 2 +54285 2698 will have a great time 3 +54286 2698 have a great time 3 +54287 2698 a great time 4 +54288 2698 great time 3 +54289 2698 the movie should win the band a few new converts , too 4 +54290 2698 should win the band a few new converts , too 3 +54291 2698 win the band a few new converts , too 2 +54292 2698 win the band a few new converts , 2 +54293 2698 win the band a few new converts 2 +54294 2698 win the band 2 +54295 2698 the band 2 +54296 2698 a few new converts 2 +54297 2698 few new converts 1 +54298 2698 new converts 2 +54299 2698 converts 2 +54300 2699 The jokes are sophomoric , stereotypes are sprinkled everywhere and the acting ranges from bad to bodacious . 0 +54301 2699 The jokes are sophomoric , stereotypes are sprinkled everywhere and the acting ranges from bad to bodacious 1 +54302 2699 The jokes are sophomoric , stereotypes are sprinkled everywhere and 1 +54303 2699 The jokes are sophomoric , stereotypes are sprinkled everywhere 2 +54304 2699 The jokes are sophomoric , 1 +54305 2699 The jokes are sophomoric 1 +54306 2699 are sophomoric 2 +54307 2699 stereotypes are sprinkled everywhere 1 +54308 2699 are sprinkled everywhere 2 +54309 2699 sprinkled everywhere 2 +54310 2699 sprinkled 2 +54311 2699 the acting ranges from bad to bodacious 1 +54312 2699 the acting 2 +54313 2699 ranges from bad to bodacious 1 +54314 2699 ranges from bad 0 +54315 2699 ranges 2 +54316 2699 from bad 2 +54317 2699 to bodacious 3 +54318 2699 bodacious 3 +54319 2700 A well-crafted film that is all the more remarkable because it achieves its emotional power and moments of revelation with restraint and a delicate ambiguity . 3 +54320 2700 A well-crafted film that is all the more remarkable because it 4 +54321 2700 A well-crafted film 3 +54322 2700 well-crafted film 4 +54323 2700 that is all the more remarkable because it 4 +54324 2700 is all the more remarkable because it 3 +54325 2700 all the more remarkable because it 3 +54326 2700 all the more 2 +54327 2700 the more 2 +54328 2700 remarkable because it 3 +54329 2700 because it 2 +54330 2700 achieves its emotional power and moments of revelation with restraint and a delicate ambiguity . 3 +54331 2700 achieves its emotional power and moments of revelation with restraint and a delicate ambiguity 4 +54332 2700 achieves its emotional power and moments of revelation 3 +54333 2700 its emotional power and moments of revelation 3 +54334 2700 its emotional power and 2 +54335 2700 its emotional power 3 +54336 2700 emotional power 3 +54337 2700 moments of revelation 2 +54338 2700 of revelation 2 +54339 2700 with restraint and a delicate ambiguity 3 +54340 2700 restraint and a delicate ambiguity 2 +54341 2700 restraint and 2 +54342 2700 a delicate ambiguity 3 +54343 2700 delicate ambiguity 3 +54344 2701 Unspools like a highbrow , low-key , 102-minute infomercial , blending entrepreneurial zeal with the testimony of satisfied customers . 2 +54345 2701 Unspools 2 +54346 2701 like a highbrow , low-key , 102-minute infomercial , blending entrepreneurial zeal with the testimony of satisfied customers . 1 +54347 2701 like a highbrow , low-key , 102-minute infomercial , blending entrepreneurial zeal with the testimony of satisfied customers 1 +54348 2701 like a highbrow , low-key , 102-minute infomercial , 1 +54349 2701 like a highbrow , low-key , 102-minute infomercial 1 +54350 2701 a highbrow , low-key , 102-minute infomercial 1 +54351 2701 highbrow , low-key , 102-minute infomercial 1 +54352 2701 highbrow 3 +54353 2701 , low-key , 102-minute infomercial 0 +54354 2701 low-key , 102-minute infomercial 1 +54355 2701 , 102-minute infomercial 0 +54356 2701 102-minute infomercial 2 +54357 2701 102-minute 3 +54358 2701 infomercial 2 +54359 2701 blending entrepreneurial zeal with the testimony of satisfied customers 3 +54360 2701 blending entrepreneurial zeal 3 +54361 2701 blending 2 +54362 2701 entrepreneurial zeal 3 +54363 2701 entrepreneurial 2 +54364 2701 with the testimony of satisfied customers 4 +54365 2701 the testimony of satisfied customers 2 +54366 2701 the testimony 2 +54367 2701 testimony 2 +54368 2701 of satisfied customers 2 +54369 2701 satisfied customers 3 +54370 2701 satisfied 3 +54371 2701 customers 2 +54372 2702 A relatively effective little potboiler until its absurd , contrived , overblown , and entirely implausible finale . 2 +54373 2702 A relatively effective little 2 +54374 2702 relatively effective little 2 +54375 2702 relatively effective 3 +54376 2702 potboiler until its absurd , contrived , overblown , and entirely implausible finale . 0 +54377 2702 potboiler until its absurd , contrived , overblown , and entirely implausible finale 0 +54378 2702 potboiler 2 +54379 2702 until its absurd , contrived , overblown , and entirely implausible finale 0 +54380 2702 its absurd , contrived , overblown , and entirely implausible finale 0 +54381 2702 absurd , contrived , overblown , and entirely implausible finale 0 +54382 2702 absurd , contrived , overblown , and entirely implausible 1 +54383 2702 , contrived , overblown , and entirely implausible 0 +54384 2702 contrived , overblown , and entirely implausible 1 +54385 2702 , overblown , and entirely implausible 1 +54386 2702 overblown , and entirely implausible 1 +54387 2702 , and entirely implausible 1 +54388 2702 and entirely implausible 1 +54389 2702 entirely implausible 1 +54390 2703 Half Past Dead is just such an achievement . 4 +54391 2703 is just such an achievement . 3 +54392 2703 is just such an achievement 3 +54393 2703 such an achievement 4 +54394 2703 an achievement 4 +54395 2704 The re-release of Ron Howard 's Apollo 13 in the IMAX format proves absolutely that really , really , really good things can come in enormous packages . 3 +54396 2704 The re-release of Ron Howard 's Apollo 13 in the IMAX format 2 +54397 2704 The re-release 2 +54398 2704 re-release 2 +54399 2704 of Ron Howard 's Apollo 13 in the IMAX format 2 +54400 2704 Ron Howard 's Apollo 13 in the IMAX format 3 +54401 2704 Ron Howard 's Apollo 13 2 +54402 2704 Ron Howard 's 2 +54403 2704 Ron 2 +54404 2704 Howard 's 2 +54405 2704 Apollo 13 2 +54406 2704 Apollo 2 +54407 2704 13 2 +54408 2704 in the IMAX format 2 +54409 2704 the IMAX format 2 +54410 2704 IMAX format 2 +54411 2704 proves absolutely that really , really , really good things can come in enormous packages . 4 +54412 2704 proves absolutely that really , really , really good things can come in enormous packages 3 +54413 2704 proves absolutely 2 +54414 2704 that really , really , really good things can come in enormous packages 4 +54415 2704 really , really , really good things can come in enormous packages 4 +54416 2704 , really , really good things can come in enormous packages 3 +54417 2704 really , really good things can come in enormous packages 3 +54418 2704 really , really good things 3 +54419 2704 really , really good 4 +54420 2704 , really good 4 +54421 2704 can come in enormous packages 2 +54422 2704 come in enormous packages 2 +54423 2704 in enormous packages 2 +54424 2704 enormous packages 3 +54425 2704 enormous 3 +54426 2704 packages 2 +54427 2705 This long and relentlessly saccharine film is a clear case of preaching to the converted . 0 +54428 2705 This long and relentlessly saccharine film 1 +54429 2705 long and relentlessly saccharine film 0 +54430 2705 long and relentlessly saccharine 0 +54431 2705 relentlessly saccharine 1 +54432 2705 is a clear case of preaching to the converted . 2 +54433 2705 is a clear case of preaching to the converted 1 +54434 2705 a clear case of preaching to the converted 2 +54435 2705 a clear case 2 +54436 2705 clear case 2 +54437 2705 of preaching to the converted 2 +54438 2705 preaching to the converted 2 +54439 2706 Short and sweet , but also more than anything else slight ... Tadpole pulls back from the consequences of its own actions and revelations . 3 +54440 2706 Short and sweet 3 +54441 2706 Short and 2 +54442 2706 , but also more than anything else slight ... Tadpole pulls back from the consequences of its own actions and revelations . 1 +54443 2706 but also more than anything else slight ... Tadpole pulls back from the consequences of its own actions and revelations . 2 +54444 2706 also more than anything else slight ... Tadpole pulls back from the consequences of its own actions and revelations . 2 +54445 2706 more than anything else slight ... Tadpole pulls back from the consequences of its own actions and revelations . 2 +54446 2706 more than anything else slight ... Tadpole pulls back from the consequences of its own actions and revelations 1 +54447 2706 than anything else slight ... Tadpole pulls back from the consequences of its own actions and revelations 2 +54448 2706 anything else slight ... Tadpole pulls back from the consequences of its own actions and revelations 2 +54449 2706 anything else slight 2 +54450 2706 else slight 2 +54451 2706 ... Tadpole pulls back from the consequences of its own actions and revelations 2 +54452 2706 Tadpole pulls back from the consequences of its own actions and revelations 2 +54453 2706 pulls back from the consequences of its own actions and revelations 1 +54454 2706 pulls back 2 +54455 2706 from the consequences of its own actions and revelations 2 +54456 2706 the consequences of its own actions and revelations 1 +54457 2706 the consequences 1 +54458 2706 of its own actions and revelations 2 +54459 2706 its own actions and revelations 2 +54460 2706 own actions and revelations 2 +54461 2706 actions and revelations 2 +54462 2706 actions and 2 +54463 2707 My Wife is an Actress has its moments in looking at the comic effects of jealousy . 4 +54464 2707 is an Actress has its moments in looking at the comic effects of jealousy . 2 +54465 2707 is an Actress has its moments in looking at the comic effects of jealousy 2 +54466 2707 an Actress has its moments in looking at the comic effects of jealousy 2 +54467 2707 has its moments in looking at the comic effects of jealousy 3 +54468 2707 its moments in looking at the comic effects of jealousy 2 +54469 2707 in looking at the comic effects of jealousy 3 +54470 2707 looking at the comic effects of jealousy 2 +54471 2707 at the comic effects of jealousy 2 +54472 2707 the comic effects of jealousy 3 +54473 2707 the comic effects 3 +54474 2707 comic effects 2 +54475 2708 In the end , Tuck Everlasting falls victim to that everlasting conundrum experienced by every human who ever lived : too much to do , too little time to do it in . 1 +54476 2708 , Tuck Everlasting falls victim to that everlasting conundrum experienced by every human who ever lived : too much to do , too little time to do it in . 2 +54477 2708 Tuck Everlasting falls victim to that everlasting conundrum experienced by every human who ever lived : too much to do , too little time to do it in . 1 +54478 2708 Tuck Everlasting 2 +54479 2708 Tuck 2 +54480 2708 Everlasting 3 +54481 2708 falls victim to that everlasting conundrum experienced by every human who ever lived : too much to do , too little time to do it in . 1 +54482 2708 falls victim to that everlasting conundrum experienced by every human who ever lived : too much to do , too little time to do it in 2 +54483 2708 falls victim 1 +54484 2708 to that everlasting conundrum experienced by every human who ever lived : too much to do , too little time to do it in 2 +54485 2708 that everlasting conundrum experienced by every human who ever lived : too much to do , too little time to do it in 3 +54486 2708 that everlasting conundrum 1 +54487 2708 everlasting conundrum 2 +54488 2708 experienced by every human who ever lived : too much to do , too little time to do it in 2 +54489 2708 experienced 3 +54490 2708 by every human who ever lived : too much to do , too little time to do it in 1 +54491 2708 every human who ever lived : too much to do , too little time to do it in 2 +54492 2708 every human who ever lived : 2 +54493 2708 every human who ever lived 2 +54494 2708 every human 2 +54495 2708 who ever lived 2 +54496 2708 ever lived 2 +54497 2708 too much to do , too little time to do it in 1 +54498 2708 much to do , too little time to do it in 1 +54499 2708 to do , too little time to do it in 1 +54500 2708 do , too little time to do it in 2 +54501 2708 do , too little time 2 +54502 2708 do , 2 +54503 2708 too little time 2 +54504 2708 little time 3 +54505 2708 to do it in 2 +54506 2708 do it in 2 +54507 2709 You 'll find yourself wishing that you and they were in another movie . 0 +54508 2709 'll find yourself wishing that you and they were in another movie . 1 +54509 2709 'll find yourself wishing that you and they were in another movie 0 +54510 2709 find yourself wishing that you and they were in another movie 0 +54511 2709 yourself wishing that you and they were in another movie 1 +54512 2709 wishing that you and they were in another movie 1 +54513 2709 wishing 2 +54514 2709 that you and they were in another movie 1 +54515 2709 you and they were in another movie 2 +54516 2709 you and they 2 +54517 2709 you and 2 +54518 2709 were in another movie 2 +54519 2709 in another movie 2 +54520 2709 another movie 2 +54521 2710 Visually fascinating ... an often intense character study about fathers and sons , loyalty and duty . 3 +54522 2710 fascinating ... an often intense character study about fathers and sons , loyalty and duty . 4 +54523 2710 ... an often intense character study about fathers and sons , loyalty and duty . 3 +54524 2710 an often intense character study about fathers and sons , loyalty and duty . 4 +54525 2710 an often intense character study about fathers and sons , loyalty and duty 3 +54526 2710 an often intense character study about fathers and 2 +54527 2710 an often intense character study about fathers 3 +54528 2710 an often intense character study 3 +54529 2710 often intense character study 3 +54530 2710 often intense 3 +54531 2710 about fathers 2 +54532 2710 sons , loyalty and duty 3 +54533 2710 sons , loyalty and 2 +54534 2710 sons , loyalty 2 +54535 2710 sons , 2 +54536 2711 Leading a double life in an American film only comes to no good , but not here . 2 +54537 2711 Leading a double life in an American film only comes to no good , but not here 3 +54538 2711 Leading a double life in an American film only comes to no good , but 2 +54539 2711 Leading a double life in an American film only comes to no good , 2 +54540 2711 Leading a double life in an American film only comes to no good 1 +54541 2711 Leading a double life in an American film 2 +54542 2711 Leading a double life 2 +54543 2711 a double life 2 +54544 2711 double life 2 +54545 2711 in an American film 2 +54546 2711 an American film 2 +54547 2711 American film 2 +54548 2711 only comes to no good 1 +54549 2711 comes to no good 1 +54550 2711 to no good 1 +54551 2711 no good 1 +54552 2711 not here 2 +54553 2712 She allows each character to confront their problems openly and honestly . 3 +54554 2712 allows each character to confront their problems openly and honestly . 3 +54555 2712 allows each character to confront their problems openly and honestly 3 +54556 2712 allows each character 2 +54557 2712 each character 2 +54558 2712 to confront their problems openly and honestly 2 +54559 2712 to confront their problems openly and 2 +54560 2712 to confront their problems openly 3 +54561 2712 confront their problems openly 2 +54562 2712 confront their problems 2 +54563 2712 confront 2 +54564 2712 openly 2 +54565 2713 Compulsively watchable , no matter how degraded things get . 3 +54566 2713 , no matter how degraded things get . 1 +54567 2713 no matter how degraded things get . 2 +54568 2713 no matter how degraded things get 2 +54569 2713 no matter how 2 +54570 2713 degraded things get 2 +54571 2713 degraded things 1 +54572 2713 degraded 2 +54573 2714 If you can push on through the slow spots , you 'll be rewarded with some fine acting . 3 +54574 2714 If you can push on through the slow spots 1 +54575 2714 you can push on through the slow spots 2 +54576 2714 can push on through the slow spots 2 +54577 2714 push on through the slow spots 2 +54578 2714 push on 2 +54579 2714 through the slow spots 2 +54580 2714 the slow spots 2 +54581 2714 slow spots 2 +54582 2714 , you 'll be rewarded with some fine acting . 3 +54583 2714 you 'll be rewarded with some fine acting . 4 +54584 2714 'll be rewarded with some fine acting . 4 +54585 2714 'll be rewarded with some fine acting 3 +54586 2714 be rewarded with some fine acting 4 +54587 2714 rewarded with some fine acting 3 +54588 2714 rewarded 3 +54589 2714 with some fine acting 3 +54590 2714 some fine acting 3 +54591 2714 fine acting 4 +54592 2715 The comedy makes social commentary more palatable . 2 +54593 2715 The comedy 3 +54594 2715 makes social commentary more palatable . 3 +54595 2715 makes social commentary more palatable 2 +54596 2715 social commentary more palatable 2 +54597 2715 more palatable 3 +54598 2715 palatable 2 +54599 2716 A film that loses sight of its own story . 1 +54600 2716 film that loses sight of its own story . 0 +54601 2716 film that loses sight of its own story 1 +54602 2716 that loses sight of its own story 1 +54603 2716 loses sight of its own story 0 +54604 2716 sight of its own story 2 +54605 2716 of its own story 2 +54606 2716 its own story 2 +54607 2716 own story 2 +54608 2717 Fontaine 's direction , especially her agreeably startling use of close-ups and her grace with a moving camera , creates sheerly cinematic appeal . 4 +54609 2717 Fontaine 's direction , especially her agreeably startling use of close-ups and her grace with a moving camera , 4 +54610 2717 Fontaine 's direction , especially her agreeably startling use of close-ups and her grace with a moving camera 3 +54611 2717 Fontaine 's direction , 2 +54612 2717 Fontaine 's direction 2 +54613 2717 Fontaine 's 2 +54614 2717 especially her agreeably startling use of close-ups and her grace with a moving camera 3 +54615 2717 her agreeably startling use of close-ups and her grace with a moving camera 3 +54616 2717 her agreeably startling use of close-ups and 2 +54617 2717 her agreeably startling use of close-ups 3 +54618 2717 her agreeably startling use 3 +54619 2717 agreeably startling use 2 +54620 2717 agreeably startling 3 +54621 2717 agreeably 3 +54622 2717 of close-ups 2 +54623 2717 her grace with a moving camera 3 +54624 2717 her grace 3 +54625 2717 with a moving camera 2 +54626 2717 a moving camera 2 +54627 2717 moving camera 2 +54628 2717 creates sheerly cinematic appeal . 3 +54629 2717 creates sheerly cinematic appeal 3 +54630 2717 sheerly cinematic appeal 3 +54631 2717 cinematic appeal 3 +54632 2718 Funny , though . 2 +54633 2718 , though . 2 +54634 2718 though . 2 +54635 2719 Take any 12-year-old boy to see this picture , and he 'll be your slave for a year . 3 +54636 2719 Take any 12-year-old boy to see this picture , and he 'll be your slave for a year 4 +54637 2719 Take any 12-year-old boy to see this picture , and 2 +54638 2719 Take any 12-year-old boy to see this picture , 2 +54639 2719 Take any 12-year-old boy to see this picture 3 +54640 2719 any 12-year-old boy to see this picture 2 +54641 2719 12-year-old boy to see this picture 2 +54642 2719 boy to see this picture 2 +54643 2719 to see this picture 2 +54644 2719 see this picture 2 +54645 2719 he 'll be your slave for a year 2 +54646 2719 'll be your slave for a year 2 +54647 2719 be your slave for a year 2 +54648 2719 your slave for a year 2 +54649 2719 your slave 2 +54650 2719 slave 2 +54651 2719 for a year 2 +54652 2719 a year 2 +54653 2720 A solidly constructed , entertaining thriller that stops short of true inspiration . 3 +54654 2720 A solidly constructed , entertaining thriller that stops short of true inspiration 3 +54655 2720 A solidly constructed , entertaining thriller 4 +54656 2720 solidly constructed , entertaining thriller 4 +54657 2720 solidly constructed 3 +54658 2720 , entertaining thriller 4 +54659 2720 entertaining thriller 3 +54660 2720 that stops short of true inspiration 2 +54661 2720 stops short of true inspiration 2 +54662 2720 short of true inspiration 3 +54663 2720 of true inspiration 4 +54664 2720 true inspiration 3 +54665 2721 Snow Dogs finds its humour in a black man getting humiliated by a pack of dogs who are smarter than him 1 +54666 2721 finds its humour in a black man getting humiliated by a pack of dogs who are smarter than him 1 +54667 2721 finds its humour 3 +54668 2721 its humour 2 +54669 2721 in a black man getting humiliated by a pack of dogs who are smarter than him 1 +54670 2721 a black man getting humiliated by a pack of dogs who are smarter than him 0 +54671 2721 a black man 2 +54672 2721 black man 2 +54673 2721 getting humiliated by a pack of dogs who are smarter than him 2 +54674 2721 humiliated by a pack of dogs who are smarter than him 1 +54675 2721 humiliated 2 +54676 2721 by a pack of dogs who are smarter than him 1 +54677 2721 a pack of dogs who are smarter than him 1 +54678 2721 of dogs who are smarter than him 2 +54679 2721 dogs who are smarter than him 1 +54680 2721 who are smarter than him 2 +54681 2721 are smarter than him 2 +54682 2721 are smarter 2 +54683 2721 than him 2 +54684 2722 I 'm not sure which will take longer to heal : the welt on Johnny Knoxville 's stomach from a riot-control projectile or my own tortured psyche . 0 +54685 2722 'm not sure which will take longer to heal : the welt on Johnny Knoxville 's stomach from a riot-control projectile or my own tortured psyche . 0 +54686 2722 'm not sure which will take longer to heal : the welt on Johnny Knoxville 's stomach from a riot-control projectile or my own tortured psyche 1 +54687 2722 sure which will take longer to heal : the welt on Johnny Knoxville 's stomach from a riot-control projectile or my own tortured psyche 0 +54688 2722 which will take longer to heal : the welt on Johnny Knoxville 's stomach from a riot-control projectile or my own tortured psyche 1 +54689 2722 will take longer to heal : the welt on Johnny Knoxville 's stomach from a riot-control projectile or my own tortured psyche 1 +54690 2722 take longer to heal : the welt on Johnny Knoxville 's stomach from a riot-control projectile or my own tortured psyche 1 +54691 2722 take longer to heal : the welt on Johnny Knoxville 's stomach 2 +54692 2722 longer to heal : the welt on Johnny Knoxville 's stomach 1 +54693 2722 to heal : the welt on Johnny Knoxville 's stomach 2 +54694 2722 heal : the welt on Johnny Knoxville 's stomach 2 +54695 2722 heal : the welt 2 +54696 2722 heal : 2 +54697 2722 heal 2 +54698 2722 the welt 2 +54699 2722 welt 2 +54700 2722 on Johnny Knoxville 's stomach 3 +54701 2722 Johnny Knoxville 's stomach 2 +54702 2722 Johnny Knoxville 's 2 +54703 2722 Johnny 2 +54704 2722 Knoxville 's 2 +54705 2722 Knoxville 2 +54706 2722 from a riot-control projectile or my own tortured psyche 1 +54707 2722 a riot-control projectile or my own tortured psyche 1 +54708 2722 a riot-control projectile or 2 +54709 2722 a riot-control projectile 2 +54710 2722 riot-control projectile 2 +54711 2722 riot-control 2 +54712 2722 projectile 2 +54713 2722 my own tortured psyche 1 +54714 2722 own tortured psyche 3 +54715 2722 tortured psyche 2 +54716 2723 We do n't get paid enough to sit through crap like this . 0 +54717 2723 do n't get paid enough to sit through crap like this . 0 +54718 2723 do n't get paid enough to sit through crap like this 1 +54719 2723 get paid enough to sit through crap like this 0 +54720 2723 paid enough to sit through crap like this 0 +54721 2723 enough to sit through crap like this 1 +54722 2723 to sit through crap like this 2 +54723 2723 sit through crap like this 0 +54724 2723 through crap like this 0 +54725 2723 crap like this 0 +54726 2724 Too bad . 1 +54727 2724 Too bad 2 +54728 2725 But tongue-in-cheek preposterousness has always been part of For the most part Wilde 's droll whimsy helps `` Being Earnest '' overcome its weaknesses and Parker 's creative interference ... 3 +54729 2725 tongue-in-cheek preposterousness has always been part of For the most part Wilde 's droll whimsy helps `` Being Earnest '' overcome its weaknesses and Parker 's creative interference ... 3 +54730 2725 tongue-in-cheek preposterousness 2 +54731 2725 preposterousness 1 +54732 2725 has always been part of For the most part Wilde 's droll whimsy helps `` Being Earnest '' overcome its weaknesses and Parker 's creative interference ... 3 +54733 2725 has always been part of For the most part Wilde 's droll whimsy helps `` Being Earnest '' overcome its weaknesses and Parker 's creative interference 3 +54734 2725 has always 2 +54735 2725 been part of For the most part Wilde 's droll whimsy helps `` Being Earnest '' overcome its weaknesses and Parker 's creative interference 3 +54736 2725 part of For the most part Wilde 's droll whimsy helps `` Being Earnest '' overcome its weaknesses and Parker 's creative interference 2 +54737 2725 of For the most part Wilde 's droll whimsy helps `` Being Earnest '' overcome its weaknesses and Parker 's creative interference 2 +54738 2725 For the most part Wilde 's droll whimsy helps `` Being Earnest '' overcome its weaknesses and Parker 's creative interference 3 +54739 2725 For the most part Wilde 's droll whimsy helps `` Being Earnest '' overcome its weaknesses and 3 +54740 2725 For the most part Wilde 's droll whimsy helps `` Being Earnest '' overcome its weaknesses 2 +54741 2725 Wilde 's droll whimsy helps `` Being Earnest '' overcome its weaknesses 3 +54742 2725 Wilde 's droll whimsy 3 +54743 2725 helps `` Being Earnest '' overcome its weaknesses 3 +54744 2725 `` Being Earnest '' overcome its weaknesses 3 +54745 2725 Being Earnest '' overcome its weaknesses 3 +54746 2725 '' overcome its weaknesses 3 +54747 2725 overcome its weaknesses 3 +54748 2725 its weaknesses 1 +54749 2725 weaknesses 1 +54750 2725 Parker 's creative interference 3 +54751 2725 creative interference 3 +54752 2725 interference 2 +54753 2726 By applying definition to both sides of the man , the picture realizes a fullness that does not negate the subject . 3 +54754 2726 By applying definition to both sides of the man 2 +54755 2726 applying definition to both sides of the man 3 +54756 2726 applying definition 2 +54757 2726 applying 2 +54758 2726 to both sides of the man 2 +54759 2726 both sides of the man 2 +54760 2726 of the man 1 +54761 2726 , the picture realizes a fullness that does not negate the subject . 3 +54762 2726 the picture realizes a fullness that does not negate the subject . 3 +54763 2726 realizes a fullness that does not negate the subject . 3 +54764 2726 realizes a fullness that does not negate the subject 3 +54765 2726 realizes 2 +54766 2726 a fullness that does not negate the subject 3 +54767 2726 a fullness 3 +54768 2726 fullness 2 +54769 2726 that does not negate the subject 2 +54770 2726 does not negate the subject 2 +54771 2726 negate the subject 2 +54772 2726 negate 2 +54773 2727 Many insightful moments . 3 +54774 2727 insightful moments . 3 +54775 2727 insightful moments 3 +54776 2728 Zhuangzhuang creates delicate balance of style , text , and subtext that 's so simple and precise that anything discordant would topple the balance , but against all odds , nothing does . 3 +54777 2728 Zhuangzhuang creates delicate balance of style , text , and subtext that 's so simple and precise that anything discordant would topple the balance , but against all odds , nothing does 3 +54778 2728 Zhuangzhuang creates delicate balance of style , text , and subtext that 's so simple and precise that anything discordant would topple the balance , but 3 +54779 2728 Zhuangzhuang creates delicate balance of style , text , and subtext that 's so simple and precise that anything discordant would topple the balance , 4 +54780 2728 Zhuangzhuang creates delicate balance of style , text , and subtext that 's so simple and precise that anything discordant would topple the balance 3 +54781 2728 creates delicate balance of style , text , and subtext that 's so simple and precise that anything discordant would topple the balance 3 +54782 2728 delicate balance of style , text , and subtext that 's so simple and precise that anything discordant would topple the balance 4 +54783 2728 delicate balance 3 +54784 2728 of style , text , and subtext that 's so simple and precise that anything discordant would topple the balance 3 +54785 2728 style , text , and subtext that 's so simple and precise that anything discordant would topple the balance 2 +54786 2728 style , text , and subtext 2 +54787 2728 , text , and subtext 2 +54788 2728 text , and subtext 2 +54789 2728 text 2 +54790 2728 , and subtext 2 +54791 2728 that 's so simple and precise that anything discordant would topple the balance 2 +54792 2728 's so simple and precise that anything discordant would topple the balance 3 +54793 2728 so simple and precise that anything discordant would topple the balance 2 +54794 2728 simple and precise that anything discordant would topple the balance 3 +54795 2728 simple and precise 3 +54796 2728 simple and 2 +54797 2728 that anything discordant would topple the balance 2 +54798 2728 anything discordant would topple the balance 2 +54799 2728 anything discordant 2 +54800 2728 discordant 1 +54801 2728 would topple the balance 2 +54802 2728 topple the balance 2 +54803 2728 topple 1 +54804 2728 against all odds , nothing does 2 +54805 2728 , nothing does 2 +54806 2728 nothing does 2 +54807 2729 It never is , not fully . 2 +54808 2729 never is , not fully . 2 +54809 2729 is , not fully . 2 +54810 2729 is , not fully 2 +54811 2729 not fully 1 +54812 2730 ... while certainly clever in spots , this too-long , spoofy update of Shakespeare 's Macbeth does n't sustain a high enough level of invention . 1 +54813 2730 while certainly clever in spots , this too-long , spoofy update of Shakespeare 's Macbeth does n't sustain a high enough level of invention . 1 +54814 2730 while certainly clever in spots 3 +54815 2730 certainly clever in spots 3 +54816 2730 clever in spots 3 +54817 2730 in spots 2 +54818 2730 , this too-long , spoofy update of Shakespeare 's Macbeth does n't sustain a high enough level of invention . 0 +54819 2730 this too-long , spoofy update of Shakespeare 's Macbeth does n't sustain a high enough level of invention . 1 +54820 2730 this too-long , spoofy update of Shakespeare 's Macbeth 1 +54821 2730 this too-long , spoofy update 1 +54822 2730 too-long , spoofy update 1 +54823 2730 too-long 2 +54824 2730 , spoofy update 2 +54825 2730 spoofy update 2 +54826 2730 spoofy 2 +54827 2730 update 2 +54828 2730 of Shakespeare 's Macbeth 2 +54829 2730 Shakespeare 's Macbeth 3 +54830 2730 Macbeth 2 +54831 2730 does n't sustain a high enough level of invention . 1 +54832 2730 does n't sustain a high enough level of invention 1 +54833 2730 sustain a high enough level of invention 2 +54834 2730 a high enough level of invention 3 +54835 2730 a high enough level 3 +54836 2730 high enough level 2 +54837 2730 enough level 2 +54838 2730 of invention 3 +54839 2730 invention 2 +54840 2731 There 's an epic here , but you have to put it together yourself . 2 +54841 2731 There 's an epic here , but you have to put it together yourself 2 +54842 2731 There 's an epic here , but 2 +54843 2731 There 's an epic here , 3 +54844 2731 There 's an epic here 4 +54845 2731 's an epic here 3 +54846 2731 's an epic 3 +54847 2731 you have to put it together yourself 2 +54848 2731 have to put it together yourself 2 +54849 2731 to put it together yourself 2 +54850 2731 put it together yourself 2 +54851 2731 it together yourself 2 +54852 2731 it together 2 +54853 2732 But fans of the show should not consider this a diss . 2 +54854 2732 fans of the show should not consider this a diss . 2 +54855 2732 fans of the show 3 +54856 2732 of the show 2 +54857 2732 should not consider this a diss . 3 +54858 2732 should not consider this a diss 2 +54859 2732 consider this a diss 1 +54860 2732 this a diss 1 +54861 2732 a diss 1 +54862 2732 diss 2 +54863 2733 Lillard and Cardellini earn their Scooby Snacks , but not anyone else . 2 +54864 2733 Lillard and Cardellini earn their Scooby Snacks , but not anyone else 2 +54865 2733 Lillard and Cardellini earn their Scooby Snacks , but 2 +54866 2733 Lillard and Cardellini earn their Scooby Snacks , 3 +54867 2733 Lillard and Cardellini earn their Scooby Snacks 2 +54868 2733 Lillard and Cardellini 2 +54869 2733 Lillard and 2 +54870 2733 Cardellini 2 +54871 2733 earn their Scooby Snacks 2 +54872 2733 their Scooby Snacks 2 +54873 2733 Scooby Snacks 2 +54874 2733 Snacks 2 +54875 2733 not anyone else 2 +54876 2733 anyone else 2 +54877 2734 Filmmakers Dana Janklowicz-Mann and Amir Mann area headed east , Far East , in retelling a historically significant , and personal , episode detailing how one international city welcomed tens of thousands of German Jewish refugees while the world 's democracie 3 +54878 2734 Filmmakers Dana Janklowicz-Mann and Amir Mann area 2 +54879 2734 Dana Janklowicz-Mann and Amir Mann area 2 +54880 2734 Janklowicz-Mann and Amir Mann area 2 +54881 2734 and Amir Mann area 2 +54882 2734 Amir Mann area 2 +54883 2734 Mann area 2 +54884 2734 headed east , Far East , in retelling a historically significant , and personal , episode detailing how one international city welcomed tens of thousands of German Jewish refugees while the world 's democracie 3 +54885 2734 headed east , Far East , 2 +54886 2734 headed east , Far East 2 +54887 2734 headed east , 2 +54888 2734 headed east 2 +54889 2734 east 2 +54890 2734 Far East 2 +54891 2734 in retelling a historically significant , and personal , episode detailing how one international city welcomed tens of thousands of German Jewish refugees while the world 's democracie 3 +54892 2734 retelling a historically significant , and personal , episode detailing how one international city welcomed tens of thousands of German Jewish refugees while the world 's democracie 3 +54893 2734 retelling a historically significant , and personal , episode 3 +54894 2734 retelling 1 +54895 2734 a historically significant , and personal , episode 3 +54896 2734 historically significant , and personal , episode 3 +54897 2734 historically significant , and personal , 3 +54898 2734 historically significant , and personal 3 +54899 2734 historically significant , and 3 +54900 2734 historically significant , 4 +54901 2734 historically significant 3 +54902 2734 historically 2 +54903 2734 detailing how one international city welcomed tens of thousands of German Jewish refugees while the world 's democracie 3 +54904 2734 how one international city welcomed tens of thousands of German Jewish refugees while the world 's democracie 2 +54905 2734 one international city welcomed tens of thousands of German Jewish refugees while the world 's democracie 2 +54906 2734 one international city 2 +54907 2734 international city 2 +54908 2734 welcomed tens of thousands of German Jewish refugees while the world 's democracie 2 +54909 2734 welcomed tens of thousands of German Jewish refugees 3 +54910 2734 welcomed 3 +54911 2734 tens of thousands of German Jewish refugees 1 +54912 2734 tens of thousands 2 +54913 2734 tens 3 +54914 2734 of thousands 2 +54915 2734 thousands 2 +54916 2734 of German Jewish refugees 2 +54917 2734 German Jewish refugees 1 +54918 2734 Jewish refugees 2 +54919 2734 Jewish 2 +54920 2734 refugees 2 +54921 2734 while the world 's democracie 2 +54922 2734 the world 's democracie 2 +54923 2734 's democracie 2 +54924 2734 democracie 2 +54925 2735 Really dumb but occasionally really funny . 2 +54926 2735 Really dumb but occasionally really funny 3 +54927 2735 dumb but occasionally really funny 1 +54928 2735 dumb but occasionally 1 +54929 2735 dumb but 2 +54930 2736 Does n't really add up to much . 1 +54931 2736 Does n't really add up to much 1 +54932 2736 add up to much 2 +54933 2736 to much 2 +54934 2737 Shadyac , who belongs with the damned for perpetrating Patch Adams , trots out every ghost trick from The Sixth Sense to The Mothman Prophecies . 2 +54935 2737 Shadyac , who belongs with the damned for perpetrating Patch Adams , 2 +54936 2737 Shadyac , who belongs with the damned for perpetrating Patch Adams 1 +54937 2737 Shadyac , 2 +54938 2737 Shadyac 2 +54939 2737 who belongs with the damned for perpetrating Patch Adams 1 +54940 2737 belongs with the damned for perpetrating Patch Adams 1 +54941 2737 with the damned for perpetrating Patch Adams 1 +54942 2737 the damned for perpetrating Patch Adams 1 +54943 2737 for perpetrating Patch Adams 2 +54944 2737 perpetrating Patch Adams 2 +54945 2737 perpetrating 2 +54946 2737 trots out every ghost trick from The Sixth Sense to The Mothman Prophecies . 2 +54947 2737 trots out every ghost trick from The Sixth Sense to The Mothman Prophecies 1 +54948 2737 trots out every ghost trick 2 +54949 2737 trots out 2 +54950 2737 trots 2 +54951 2737 every ghost trick 2 +54952 2737 ghost trick 2 +54953 2737 from The Sixth Sense to The Mothman Prophecies 2 +54954 2737 The Sixth Sense to The Mothman Prophecies 2 +54955 2737 The Sixth Sense 2 +54956 2737 Sixth Sense 2 +54957 2737 Sixth 2 +54958 2737 to The Mothman Prophecies 2 +54959 2738 Zellweger 's whiny pouty-lipped poof faced and spindly attempt at playing an ingenue makes her nomination as best actress even more of a an a 1 +54960 2738 Zellweger 's whiny pouty-lipped poof 1 +54961 2738 Zellweger 's 2 +54962 2738 Zellweger 2 +54963 2738 whiny pouty-lipped poof 1 +54964 2738 pouty-lipped poof 1 +54965 2738 pouty-lipped 2 +54966 2738 poof 2 +54967 2738 faced and spindly attempt at playing an ingenue makes her nomination as best actress even more of a an a 1 +54968 2738 faced and spindly 2 +54969 2738 faced and 2 +54970 2738 spindly 2 +54971 2738 attempt at playing an ingenue makes her nomination as best actress even more of a an a 2 +54972 2738 at playing an ingenue makes her nomination as best actress even more of a an a 2 +54973 2738 playing an ingenue makes her nomination as best actress even more of a an a 3 +54974 2738 an ingenue makes her nomination as best actress even more of a an a 2 +54975 2738 an ingenue 2 +54976 2738 ingenue 3 +54977 2738 makes her nomination as best actress even more of a an a 3 +54978 2738 her nomination as best actress even more of a an a 2 +54979 2738 her nomination as best actress even more of a an 2 +54980 2738 her nomination as best actress even more 3 +54981 2738 her nomination as best actress 2 +54982 2738 her nomination 2 +54983 2738 as best actress 3 +54984 2738 best actress 3 +54985 2738 of a an 2 +54986 2738 a an 2 +54987 2739 Has a solid emotional impact . 3 +54988 2739 Has a solid emotional impact 4 +54989 2739 a solid emotional impact 4 +54990 2739 solid emotional impact 3 +54991 2739 emotional impact 2 +54992 2740 One of those unassuming films that sneaks up on you and stays with you long after you have left the theatre . 3 +54993 2740 One of those unassuming films that sneaks up on you and stays with you long after you have left the theatre 4 +54994 2740 of those unassuming films that sneaks up on you and stays with you long after you have left the theatre 4 +54995 2740 those unassuming films that sneaks up on you and stays with you long after you have left the theatre 4 +54996 2740 those unassuming films 2 +54997 2740 unassuming films 2 +54998 2740 unassuming 1 +54999 2740 that sneaks up on you and stays with you long after you have left the theatre 4 +55000 2740 sneaks up on you and stays with you long after you have left the theatre 3 +55001 2740 sneaks up on you and 3 +55002 2740 sneaks up on you 3 +55003 2740 sneaks up 2 +55004 2740 sneaks 2 +55005 2740 stays with you long after you have left the theatre 3 +55006 2740 stays with you 3 +55007 2740 with you 2 +55008 2740 long after you have left the theatre 2 +55009 2740 after you have left the theatre 2 +55010 2740 you have left the theatre 1 +55011 2740 have left the theatre 2 +55012 2740 left the theatre 1 +55013 2740 the theatre 2 +55014 2741 Let 's issue a moratorium , effective immediately , on treacly films about inspirational prep-school professors and the children they so heartwarmingly motivate . 3 +55015 2741 Let 's 2 +55016 2741 issue a moratorium , effective immediately , on treacly films about inspirational prep-school professors and the children they so heartwarmingly motivate . 3 +55017 2741 issue a moratorium , effective immediately , on treacly films about inspirational prep-school professors and the children they so heartwarmingly motivate 1 +55018 2741 a moratorium , effective immediately , on treacly films about inspirational prep-school professors and the children they so heartwarmingly motivate 2 +55019 2741 a moratorium , effective immediately , 1 +55020 2741 a moratorium , effective immediately 2 +55021 2741 a moratorium , 2 +55022 2741 a moratorium 1 +55023 2741 moratorium 2 +55024 2741 effective immediately 2 +55025 2741 immediately 2 +55026 2741 on treacly films about inspirational prep-school professors and the children they so heartwarmingly motivate 2 +55027 2741 treacly films about inspirational prep-school professors and the children they so heartwarmingly motivate 3 +55028 2741 treacly films about inspirational prep-school professors and 2 +55029 2741 treacly films about inspirational prep-school professors 2 +55030 2741 treacly films 2 +55031 2741 treacly 2 +55032 2741 about inspirational prep-school professors 2 +55033 2741 inspirational prep-school professors 3 +55034 2741 prep-school professors 2 +55035 2741 prep-school 2 +55036 2741 professors 2 +55037 2741 the children they so heartwarmingly motivate 2 +55038 2741 the children 2 +55039 2741 they so heartwarmingly motivate 3 +55040 2741 so heartwarmingly motivate 3 +55041 2741 so heartwarmingly 3 +55042 2741 heartwarmingly 3 +55043 2741 motivate 3 +55044 2742 The same should go for movie theaters . 2 +55045 2742 should go for movie theaters . 2 +55046 2742 should go for movie theaters 3 +55047 2742 go for movie theaters 2 +55048 2742 for movie theaters 2 +55049 2742 movie theaters 2 +55050 2742 theaters 2 +55051 2743 Where 's the movie here ? 0 +55052 2743 's the movie here ? 2 +55053 2743 's the movie here 2 +55054 2743 's the movie 2 +55055 2744 You come away from his film overwhelmed , hopeful and , perhaps paradoxically , illuminated . 3 +55056 2744 come away from his film overwhelmed , hopeful and , perhaps paradoxically , illuminated . 4 +55057 2744 come away from his film overwhelmed , hopeful and , perhaps paradoxically , illuminated 4 +55058 2744 come away from his film overwhelmed , 3 +55059 2744 come away from his film overwhelmed 2 +55060 2744 from his film overwhelmed 2 +55061 2744 his film overwhelmed 3 +55062 2744 film overwhelmed 2 +55063 2744 overwhelmed 2 +55064 2744 hopeful and , perhaps paradoxically , illuminated 3 +55065 2744 and , perhaps paradoxically , illuminated 1 +55066 2744 , perhaps paradoxically , illuminated 2 +55067 2744 , perhaps paradoxically , 2 +55068 2744 perhaps paradoxically , 2 +55069 2744 perhaps paradoxically 2 +55070 2744 paradoxically 2 +55071 2744 illuminated 3 +55072 2745 Pull -LRB- s -RRB- off the rare trick of recreating not only the look of a certain era , but also the feel . 2 +55073 2745 Pull -LRB- s -RRB- off the rare trick of recreating not only the look of a certain era , but also the feel 3 +55074 2745 Pull -LRB- s -RRB- off the rare trick of recreating not only 3 +55075 2745 Pull -LRB- s -RRB- off the rare trick of recreating 3 +55076 2745 Pull -LRB- s -RRB- 2 +55077 2745 -LRB- s -RRB- 2 +55078 2745 s -RRB- 2 +55079 2745 off the rare trick of recreating 3 +55080 2745 the rare trick of recreating 3 +55081 2745 the rare trick 2 +55082 2745 rare trick 3 +55083 2745 of recreating 2 +55084 2745 recreating 2 +55085 2745 the look of a certain era , but also the feel 2 +55086 2745 the look 2 +55087 2745 of a certain era , but also the feel 2 +55088 2745 a certain era , but also the feel 2 +55089 2745 a certain era , but also 2 +55090 2745 a certain era , 2 +55091 2745 a certain era 2 +55092 2745 certain era 2 +55093 2747 ... unspeakably , unbearably dull , featuring reams of flatly delivered dialogue and a heroine who comes across as both shallow and dim-witted . 0 +55094 2747 unspeakably , unbearably dull , featuring reams of flatly delivered dialogue and a heroine who comes across as both shallow and dim-witted . 0 +55095 2747 unspeakably , unbearably dull 0 +55096 2747 unspeakably , 1 +55097 2747 unspeakably 2 +55098 2747 unbearably dull 0 +55099 2747 , featuring reams of flatly delivered dialogue and a heroine who comes across as both shallow and dim-witted . 0 +55100 2747 featuring reams of flatly delivered dialogue and a heroine who comes across as both shallow and dim-witted . 1 +55101 2747 featuring reams of flatly 1 +55102 2747 featuring reams 2 +55103 2747 reams 2 +55104 2747 of flatly 1 +55105 2747 delivered dialogue and a heroine who comes across as both shallow and dim-witted . 1 +55106 2747 delivered dialogue and a heroine who comes across as both shallow and dim-witted 1 +55107 2747 dialogue and a heroine who comes across as both shallow and dim-witted 1 +55108 2747 dialogue and 2 +55109 2747 a heroine who comes across as both shallow and dim-witted 1 +55110 2747 a heroine 3 +55111 2747 who comes across as both shallow and dim-witted 1 +55112 2747 comes across as both shallow and dim-witted 1 +55113 2747 as both shallow and dim-witted 1 +55114 2747 both shallow and dim-witted 0 +55115 2747 shallow and dim-witted 0 +55116 2748 Good performances keep it from being a total rehash . 3 +55117 2748 keep it from being a total rehash . 2 +55118 2748 keep it from being a total rehash 1 +55119 2748 from being a total rehash 1 +55120 2748 being a total rehash 1 +55121 2748 a total rehash 1 +55122 2748 total rehash 2 +55123 2748 rehash 2 +55124 2749 What with the incessant lounge music playing in the film 's background , you may mistake Love Liza for an Adam Sandler Chanukah song . 2 +55125 2749 What with the incessant lounge music playing in the film 's background 1 +55126 2749 with the incessant lounge music playing in the film 's background 1 +55127 2749 the incessant lounge music playing in the film 's background 2 +55128 2749 the incessant lounge music 1 +55129 2749 incessant lounge music 2 +55130 2749 lounge music 2 +55131 2749 lounge 2 +55132 2749 playing in the film 's background 2 +55133 2749 in the film 's background 2 +55134 2749 the film 's background 2 +55135 2749 , you may mistake Love Liza for an Adam Sandler Chanukah song . 2 +55136 2749 you may mistake Love Liza for an Adam Sandler Chanukah song . 2 +55137 2749 may mistake Love Liza for an Adam Sandler Chanukah song . 1 +55138 2749 may mistake Love Liza for an Adam Sandler Chanukah song 1 +55139 2749 mistake Love Liza for an Adam Sandler Chanukah song 1 +55140 2749 Love Liza for an Adam Sandler Chanukah song 2 +55141 2749 Love Liza 4 +55142 2749 for an Adam Sandler Chanukah song 2 +55143 2749 an Adam Sandler Chanukah song 2 +55144 2749 Adam Sandler Chanukah song 2 +55145 2749 Sandler Chanukah song 2 +55146 2749 Chanukah song 2 +55147 2749 Chanukah 2 +55148 2750 The modern-day royals have nothing on these guys when it comes to scandals . 1 +55149 2750 The modern-day royals 2 +55150 2750 modern-day royals 3 +55151 2750 royals 2 +55152 2750 have nothing on these guys when it comes to scandals . 2 +55153 2750 have nothing on these guys when it comes to scandals 2 +55154 2750 nothing on these guys when it comes to scandals 2 +55155 2750 on these guys when it comes to scandals 2 +55156 2750 these guys when it comes to scandals 2 +55157 2750 when it comes to scandals 2 +55158 2750 it comes to scandals 2 +55159 2750 comes to scandals 2 +55160 2750 to scandals 2 +55161 2750 scandals 2 +55162 2751 A disoriented but occasionally disarming saga packed with moments out of an Alice in Wonderland adventure , a stalker thriller , and a condensed season of TV 's Big Brother . 3 +55163 2751 A disoriented but occasionally disarming saga 1 +55164 2751 disoriented but occasionally disarming saga 2 +55165 2751 disoriented but occasionally 1 +55166 2751 disoriented but 2 +55167 2751 disoriented 1 +55168 2751 disarming saga 2 +55169 2751 disarming 2 +55170 2751 packed with moments out of an Alice in Wonderland adventure , a stalker thriller , and a condensed season of TV 's Big Brother . 2 +55171 2751 packed with moments out of an Alice in Wonderland adventure , a stalker thriller , and a condensed season of TV 's Big Brother 2 +55172 2751 packed with moments out of an Alice 3 +55173 2751 with moments out of an Alice 2 +55174 2751 moments out of an Alice 3 +55175 2751 out of an Alice 2 +55176 2751 of an Alice 2 +55177 2751 an Alice 2 +55178 2751 in Wonderland adventure , a stalker thriller , and a condensed season of TV 's Big Brother 2 +55179 2751 Wonderland adventure , a stalker thriller , and a condensed season of TV 's Big Brother 3 +55180 2751 Wonderland adventure , a stalker thriller , and 3 +55181 2751 Wonderland adventure , a stalker thriller , 3 +55182 2751 Wonderland adventure , a stalker thriller 2 +55183 2751 Wonderland adventure , 2 +55184 2751 Wonderland adventure 2 +55185 2751 Wonderland 2 +55186 2751 a stalker thriller 2 +55187 2751 stalker thriller 2 +55188 2751 stalker 2 +55189 2751 a condensed season of TV 's Big Brother 2 +55190 2751 a condensed season 2 +55191 2751 condensed season 2 +55192 2751 of TV 's Big Brother 2 +55193 2751 TV 's Big Brother 2 +55194 2751 Big Brother 2 +55195 2751 Brother 2 +55196 2752 Not as well-written as Sexy Beast , not as gloriously flippant as Lock , Stock and Two Smoking Barrels , but stylish and moody and exceptionally well-acted . 3 +55197 2752 as well-written as Sexy Beast , not as gloriously flippant as Lock , Stock and Two Smoking Barrels , but stylish and moody and exceptionally well-acted . 3 +55198 2752 as well-written as Sexy Beast , not as gloriously flippant as Lock , Stock and Two Smoking Barrels , but stylish and moody and exceptionally well-acted 3 +55199 2752 as well-written as Sexy Beast , not as gloriously flippant as Lock , Stock and Two Smoking Barrels , but stylish and moody and 3 +55200 2752 as well-written as Sexy Beast , not as gloriously flippant as Lock , Stock and Two Smoking Barrels , but stylish and moody 3 +55201 2752 as well-written as Sexy Beast , not as gloriously flippant as Lock , Stock and Two Smoking Barrels , but 3 +55202 2752 as well-written as Sexy Beast , not as gloriously flippant as Lock , Stock and Two Smoking Barrels , 3 +55203 2752 as well-written as Sexy Beast 3 +55204 2752 well-written as Sexy Beast 3 +55205 2752 as Sexy Beast 3 +55206 2752 Sexy Beast 3 +55207 2752 , not as gloriously flippant as Lock , Stock and Two Smoking Barrels , 1 +55208 2752 , not as gloriously flippant as Lock , Stock and Two Smoking Barrels 1 +55209 2752 , not as 2 +55210 2752 not as 2 +55211 2752 gloriously flippant as Lock , Stock and Two Smoking Barrels 4 +55212 2752 flippant as Lock , Stock and Two Smoking Barrels 2 +55213 2752 flippant 2 +55214 2752 as Lock , Stock and Two Smoking Barrels 2 +55215 2752 Lock , Stock and Two Smoking Barrels 2 +55216 2752 Lock , Stock and 2 +55217 2752 Lock , Stock 2 +55218 2752 Lock , 2 +55219 2752 Lock 2 +55220 2752 Two Smoking Barrels 2 +55221 2752 Smoking Barrels 2 +55222 2752 Smoking 2 +55223 2752 Barrels 2 +55224 2752 stylish and moody 3 +55225 2752 stylish and 3 +55226 2752 moody 2 +55227 2752 exceptionally well-acted 4 +55228 2752 well-acted 3 +55229 2753 Killing time , that 's all that 's going on here . 0 +55230 2753 Killing time 1 +55231 2753 , that 's all that 's going on here . 2 +55232 2753 that 's all that 's going on here . 1 +55233 2753 's all that 's going on here . 2 +55234 2753 's all that 's going on here 2 +55235 2753 all that 's going on here 2 +55236 2753 that 's going on here 2 +55237 2754 Puts on airs of a Hal Hartley wannabe film -- without the vital comic ingredient of the hilarious writer-director himself . 1 +55238 2754 Puts on airs of a Hal Hartley 2 +55239 2754 on airs of a Hal Hartley 2 +55240 2754 airs of a Hal Hartley 2 +55241 2754 airs 2 +55242 2754 of a Hal Hartley 2 +55243 2754 a Hal Hartley 2 +55244 2754 wannabe film -- without the vital comic ingredient of the hilarious writer-director himself . 1 +55245 2754 wannabe film -- without the vital comic ingredient of the hilarious writer-director himself 1 +55246 2754 wannabe film -- 1 +55247 2754 wannabe film 1 +55248 2754 without the vital comic ingredient of the hilarious writer-director himself 2 +55249 2754 the vital comic ingredient of the hilarious writer-director himself 3 +55250 2754 the vital comic ingredient 3 +55251 2754 vital comic ingredient 3 +55252 2754 comic ingredient 2 +55253 2754 ingredient 2 +55254 2754 of the hilarious writer-director himself 3 +55255 2754 the hilarious writer-director himself 3 +55256 2754 hilarious writer-director himself 4 +55257 2754 writer-director himself 2 +55258 2755 At once subtle and visceral , the film never succumbs to the trap of the maudlin or tearful , offering instead with its unflinching gaze a measure of faith in the future . 4 +55259 2755 At once subtle and visceral 2 +55260 2755 once subtle and visceral 3 +55261 2755 subtle and visceral 3 +55262 2755 , the film never succumbs to the trap of the maudlin or tearful , offering instead with its unflinching gaze a measure of faith in the future . 3 +55263 2755 the film never succumbs to the trap of the maudlin or tearful , offering instead with its unflinching gaze a measure of faith in the future . 3 +55264 2755 never succumbs to the trap of the maudlin or tearful , offering instead with its unflinching gaze a measure of faith in the future . 3 +55265 2755 succumbs to the trap of the maudlin or tearful , offering instead with its unflinching gaze a measure of faith in the future . 2 +55266 2755 succumbs to the trap of the maudlin or tearful , offering instead with its unflinching gaze a measure of faith in the future 2 +55267 2755 succumbs to the trap of the maudlin or tearful , 2 +55268 2755 succumbs to the trap of the maudlin or tearful 1 +55269 2755 to the trap of the maudlin or tearful 2 +55270 2755 the trap of the maudlin or tearful 1 +55271 2755 of the maudlin or tearful 2 +55272 2755 the maudlin or tearful 2 +55273 2755 maudlin or tearful 2 +55274 2755 maudlin or 1 +55275 2755 tearful 2 +55276 2755 offering instead with its unflinching gaze a measure of faith in the future 3 +55277 2755 offering instead 2 +55278 2755 with its unflinching gaze a measure of faith in the future 3 +55279 2755 its unflinching gaze a measure of faith in the future 3 +55280 2755 its unflinching 2 +55281 2755 gaze a measure of faith in the future 2 +55282 2755 gaze 2 +55283 2755 a measure of faith in the future 3 +55284 2755 a measure 2 +55285 2755 of faith in the future 3 +55286 2755 faith in the future 3 +55287 2755 in the future 2 +55288 2755 the future 2 +55289 2756 He watches them as they float within the seas of their personalities . 3 +55290 2756 watches them as they float within the seas of their personalities . 2 +55291 2756 watches them as they float within the seas of their personalities 2 +55292 2756 watches them 2 +55293 2756 as they float within the seas of their personalities 2 +55294 2756 they float within the seas of their personalities 2 +55295 2756 float within the seas of their personalities 2 +55296 2756 within the seas of their personalities 3 +55297 2756 the seas of their personalities 2 +55298 2756 the seas 2 +55299 2756 of their personalities 2 +55300 2757 I did n't laugh . 1 +55301 2757 did n't laugh . 1 +55302 2757 did n't laugh 2 +55303 2758 In this film we at least see a study in contrasts ; the wide range of one actor , and the limited range of a comedian . 2 +55304 2758 we at least see a study in contrasts ; the wide range of one actor , and the limited range of a comedian . 2 +55305 2758 at least see a study in contrasts ; the wide range of one actor , and the limited range of a comedian . 2 +55306 2758 see a study in contrasts ; the wide range of one actor , and the limited range of a comedian . 2 +55307 2758 see a study in contrasts ; the wide range of one actor , and the limited range of a comedian 2 +55308 2758 a study in contrasts ; the wide range of one actor , and the limited range of a comedian 2 +55309 2758 a study in contrasts ; the wide range of one actor , and 2 +55310 2758 a study in contrasts ; the wide range of one actor , 2 +55311 2758 a study in contrasts ; the wide range of one actor 3 +55312 2758 a study in contrasts ; 2 +55313 2758 a study in contrasts 2 +55314 2758 in contrasts 2 +55315 2758 contrasts 2 +55316 2758 the wide range of one actor 2 +55317 2758 the wide range 2 +55318 2758 wide range 2 +55319 2758 of one actor 2 +55320 2758 one actor 2 +55321 2758 the limited range of a comedian 1 +55322 2758 the limited range 2 +55323 2758 limited range 1 +55324 2758 of a comedian 2 +55325 2759 There is simply not enough of interest onscreen to sustain its seventy-minute running time . 1 +55326 2759 is simply not enough of interest onscreen to sustain its seventy-minute running time . 1 +55327 2759 is simply not enough of interest onscreen to sustain its seventy-minute running time 1 +55328 2759 is simply not enough of interest onscreen 1 +55329 2759 not enough of interest onscreen 1 +55330 2759 enough of interest onscreen 3 +55331 2759 of interest onscreen 2 +55332 2759 interest onscreen 3 +55333 2759 to sustain its seventy-minute running time 2 +55334 2759 sustain its seventy-minute running time 2 +55335 2759 its seventy-minute running time 2 +55336 2759 seventy-minute running time 3 +55337 2759 seventy-minute 2 +55338 2760 The Master of Disguise represents Adam Sandler 's latest attempt to dumb down the universe . 1 +55339 2760 represents Adam Sandler 's latest attempt to dumb down the universe . 0 +55340 2760 represents Adam Sandler 's latest attempt to dumb down the universe 1 +55341 2760 represents Adam Sandler 's latest attempt 2 +55342 2760 Adam Sandler 's latest attempt 2 +55343 2760 latest attempt 2 +55344 2760 to dumb down the universe 0 +55345 2760 dumb down the universe 2 +55346 2760 dumb down 1 +55347 2760 the universe 2 +55348 2761 -LRB- A -RRB- stuporously solemn film . 2 +55349 2761 stuporously solemn film . 2 +55350 2761 stuporously 2 +55351 2761 solemn film . 2 +55352 2761 solemn film 2 +55353 2762 It 's sweet ... but just a little bit too precious at the start and a little too familiar at the end . 2 +55354 2762 It 's sweet ... but just a little bit too precious at the start and a little too familiar at the end 2 +55355 2762 It 's sweet ... but 2 +55356 2762 It 's sweet ... 3 +55357 2762 It 's sweet 3 +55358 2762 's sweet 2 +55359 2762 just a little bit too precious at the start and a little too familiar at the end 1 +55360 2762 just a little bit 2 +55361 2762 too precious at the start and a little too familiar at the end 1 +55362 2762 precious at the start and a little too familiar at the end 1 +55363 2762 precious at the start and 2 +55364 2762 precious at the start 3 +55365 2762 at the start 2 +55366 2762 the start 2 +55367 2762 a little too familiar at the end 1 +55368 2762 a little too familiar 1 +55369 2763 This is a truly , truly bad movie . 1 +55370 2763 is a truly , truly bad movie . 1 +55371 2763 is a truly , truly bad movie 0 +55372 2763 a truly , truly bad movie 0 +55373 2763 truly , truly bad movie 1 +55374 2763 truly , truly bad 0 +55375 2763 , truly bad 0 +55376 2763 truly bad 0 +55377 2764 Is Red Dragon worthy of a place alongside the other Hannibal movies ? 2 +55378 2764 Is Red Dragon worthy of a place alongside the other Hannibal movies 2 +55379 2764 Is Red Dragon 2 +55380 2764 worthy of a place alongside the other Hannibal movies 4 +55381 2764 of a place alongside the other Hannibal movies 2 +55382 2764 a place alongside the other Hannibal movies 3 +55383 2764 a place 2 +55384 2764 alongside the other Hannibal movies 2 +55385 2764 alongside 2 +55386 2764 the other Hannibal movies 2 +55387 2764 other Hannibal movies 2 +55388 2764 Hannibal movies 2 +55389 2765 The fact is that the screen is most alive when it seems most likely that Broomfield 's interviewees , or even himself , will not be for much longer . 3 +55390 2765 is that the screen is most alive when it seems most likely that Broomfield 's interviewees , or even himself , will not be for much longer . 2 +55391 2765 is that the screen is most alive when it seems most likely that Broomfield 's interviewees , or even himself , will not be for much longer 3 +55392 2765 that the screen is most alive when it seems most likely that Broomfield 's interviewees , or even himself , will not be for much longer 2 +55393 2765 the screen is most alive when it seems most likely that Broomfield 's interviewees , or even himself , will not be for much longer 2 +55394 2765 is most alive when it seems most likely that Broomfield 's interviewees , or even himself , will not be for much longer 2 +55395 2765 most alive when it seems most likely that Broomfield 's interviewees , or even himself , will not be for much longer 2 +55396 2765 most alive 3 +55397 2765 when it seems most likely that Broomfield 's interviewees , or even himself , will not be for much longer 2 +55398 2765 it seems most likely that Broomfield 's interviewees , or even himself , will not be for much longer 1 +55399 2765 seems most likely that Broomfield 's interviewees , or even himself , will not be for much longer 2 +55400 2765 most likely that Broomfield 's interviewees , or even himself , will not be for much longer 2 +55401 2765 most likely 2 +55402 2765 that Broomfield 's interviewees , or even himself , will not be for much longer 2 +55403 2765 Broomfield 's interviewees , or even himself , will not be for much longer 2 +55404 2765 Broomfield 's interviewees , or even himself , 2 +55405 2765 Broomfield 's interviewees 2 +55406 2765 Broomfield 's 2 +55407 2765 interviewees 2 +55408 2765 , or even himself , 2 +55409 2765 or even himself , 2 +55410 2765 even himself , 2 +55411 2765 himself , 2 +55412 2765 will not be for much longer 1 +55413 2765 be for much longer 2 +55414 2765 for much longer 2 +55415 2765 much longer 2 +55416 2766 Despite its old-hat set-up and predictable plot , Empire still has enough moments to keep it entertaining . 3 +55417 2766 Despite its old-hat set-up and predictable plot 2 +55418 2766 its old-hat set-up and predictable plot 1 +55419 2766 its old-hat set-up and 1 +55420 2766 its old-hat set-up 2 +55421 2766 old-hat set-up 2 +55422 2766 old-hat 1 +55423 2766 set-up 2 +55424 2766 predictable plot 1 +55425 2766 , Empire still has enough moments to keep it entertaining . 3 +55426 2766 Empire still has enough moments to keep it entertaining . 2 +55427 2766 still has enough moments to keep it entertaining . 3 +55428 2766 has enough moments to keep it entertaining . 4 +55429 2766 has enough moments to keep it entertaining 3 +55430 2766 enough moments to keep it entertaining 3 +55431 2766 moments to keep it entertaining 3 +55432 2766 to keep it entertaining 2 +55433 2766 keep it entertaining 3 +55434 2766 it entertaining 3 +55435 2767 Poor Ben Bratt could n't find stardom if MapQuest emailed him point-to-point driving directions . 0 +55436 2767 Poor Ben Bratt 2 +55437 2767 Ben Bratt 2 +55438 2767 Bratt 2 +55439 2767 could n't find stardom if MapQuest emailed him point-to-point driving directions . 0 +55440 2767 could n't find stardom if MapQuest emailed him point-to-point driving directions 0 +55441 2767 find stardom if MapQuest emailed him point-to-point driving directions 2 +55442 2767 find stardom 2 +55443 2767 stardom 2 +55444 2767 if MapQuest emailed him point-to-point driving directions 3 +55445 2767 MapQuest emailed him point-to-point driving directions 2 +55446 2767 MapQuest 2 +55447 2767 emailed him point-to-point driving directions 2 +55448 2767 emailed 2 +55449 2767 him point-to-point driving directions 2 +55450 2767 point-to-point driving directions 2 +55451 2767 point-to-point 2 +55452 2767 driving directions 2 +55453 2767 driving 2 +55454 2768 It wo n't harm anyone , but neither can I think of a very good reason to rush right out and see it . 2 +55455 2768 It wo n't harm anyone , but neither can I think of a very good reason to rush right out and see it 1 +55456 2768 It wo n't harm anyone , but 1 +55457 2768 It wo n't harm anyone , 2 +55458 2768 It wo n't harm anyone 2 +55459 2768 wo n't harm anyone 2 +55460 2768 harm anyone 2 +55461 2768 neither can I think of a very good reason to rush right out and see it 0 +55462 2768 can I think of a very good reason to rush right out and see it 3 +55463 2768 can I 2 +55464 2768 think of a very good reason to rush right out and see it 3 +55465 2768 think of a very good reason 2 +55466 2768 of a very good reason 2 +55467 2768 a very good reason 2 +55468 2768 very good reason 2 +55469 2768 to rush right out and see it 3 +55470 2768 rush right out and see it 4 +55471 2768 rush right out and 3 +55472 2768 rush right out 2 +55473 2768 right out 2 +55474 2769 At times , it actually hurts to watch . 0 +55475 2769 , it actually hurts to watch . 0 +55476 2769 it actually hurts to watch . 0 +55477 2769 actually hurts to watch . 0 +55478 2769 hurts to watch . 2 +55479 2769 hurts to watch 1 +55480 2770 Shyamalan takes a potentially trite and overused concept -LRB- aliens come to Earth -RRB- and infuses it into a rustic , realistic , and altogether creepy tale of hidden invasion . 3 +55481 2770 takes a potentially trite and overused concept -LRB- aliens come to Earth -RRB- and infuses it into a rustic , realistic , and altogether creepy tale of hidden invasion . 3 +55482 2770 takes a potentially trite and overused concept -LRB- aliens come to Earth -RRB- and infuses it into a rustic , realistic , and altogether creepy tale of hidden invasion 3 +55483 2770 takes a potentially trite and overused concept -LRB- aliens come to Earth -RRB- and 1 +55484 2770 takes a potentially trite and overused concept -LRB- aliens come to Earth -RRB- 2 +55485 2770 a potentially trite and overused concept -LRB- aliens come to Earth -RRB- 1 +55486 2770 a potentially trite and overused concept 1 +55487 2770 potentially trite and overused concept 1 +55488 2770 potentially trite and overused 0 +55489 2770 trite and overused 1 +55490 2770 trite and 2 +55491 2770 overused 1 +55492 2770 -LRB- aliens come to Earth -RRB- 2 +55493 2770 aliens come to Earth -RRB- 2 +55494 2770 aliens come to Earth 2 +55495 2770 come to Earth 3 +55496 2770 to Earth 2 +55497 2770 infuses it into a rustic , realistic , and altogether creepy tale of hidden invasion 3 +55498 2770 infuses it 3 +55499 2770 infuses 3 +55500 2770 into a rustic , realistic , and altogether creepy tale of hidden invasion 3 +55501 2770 a rustic , realistic , and altogether creepy tale of hidden invasion 3 +55502 2770 a rustic , realistic , and altogether creepy tale 3 +55503 2770 rustic , realistic , and altogether creepy tale 2 +55504 2770 rustic , realistic , and altogether creepy 3 +55505 2770 , realistic , and altogether creepy 2 +55506 2770 realistic , and altogether creepy 2 +55507 2770 , and altogether creepy 2 +55508 2770 and altogether creepy 1 +55509 2770 altogether creepy 1 +55510 2770 of hidden invasion 2 +55511 2770 hidden invasion 2 +55512 2770 invasion 2 +55513 2771 Y 2 +55514 2771 Tu 2 +55515 2771 is hilariously , gloriously alive , and quite often hotter than Georgia asphalt . 4 +55516 2771 is hilariously , gloriously alive , and quite often hotter than Georgia asphalt 4 +55517 2771 is hilariously , gloriously alive , and quite often hotter 3 +55518 2771 hilariously , gloriously alive , and quite often hotter 4 +55519 2771 hilariously , gloriously alive , and 4 +55520 2771 hilariously , gloriously alive , 4 +55521 2771 hilariously , gloriously alive 3 +55522 2771 hilariously , 3 +55523 2771 gloriously alive 3 +55524 2771 quite often hotter 2 +55525 2771 often hotter 2 +55526 2771 hotter 2 +55527 2771 than Georgia asphalt 2 +55528 2771 Georgia asphalt 2 +55529 2771 Georgia 2 +55530 2771 asphalt 2 +55531 2772 The Dangerous Lives of Altar Boys ' take on adolescence feels painfully true . 3 +55532 2772 The Dangerous Lives of Altar Boys ' take on adolescence 3 +55533 2772 of Altar Boys ' take on adolescence 2 +55534 2772 Altar Boys ' take on adolescence 2 +55535 2772 Altar Boys ' take 2 +55536 2772 Altar Boys ' 2 +55537 2772 Boys ' 3 +55538 2772 on adolescence 2 +55539 2772 feels painfully true . 2 +55540 2772 feels painfully true 2 +55541 2772 painfully true 2 +55542 2773 Would I see it again ? 2 +55543 2773 Would I see it again 2 +55544 2773 Would I 2 +55545 2773 see it again 4 +55546 2774 Why sit through a crummy , wannabe-hip crime comedy that refers incessantly to old movies , when you could just rent those movies instead , let alone seek out a respectable new one ? 0 +55547 2774 sit through a crummy , wannabe-hip crime comedy that refers incessantly to old movies , when you could just rent those movies instead , let alone seek out a respectable new one ? 1 +55548 2774 sit through a crummy , wannabe-hip crime comedy that refers incessantly to old movies , when you could just rent those movies instead , let alone seek out a respectable new one 0 +55549 2774 through a crummy , wannabe-hip crime comedy that refers incessantly to old movies , when you could just rent those movies instead , let alone seek out a respectable new one 1 +55550 2774 a crummy , wannabe-hip crime comedy that refers incessantly to old movies , when you could just rent those movies instead , let alone seek out a respectable new one 0 +55551 2774 a crummy , wannabe-hip crime comedy 1 +55552 2774 crummy , wannabe-hip crime comedy 1 +55553 2774 crummy 1 +55554 2774 , wannabe-hip crime comedy 0 +55555 2774 wannabe-hip crime comedy 1 +55556 2774 wannabe-hip 1 +55557 2774 crime comedy 2 +55558 2774 that refers incessantly to old movies , when you could just rent those movies instead , let alone seek out a respectable new one 2 +55559 2774 refers incessantly to old movies , when you could just rent those movies instead , let alone seek out a respectable new one 1 +55560 2774 refers 2 +55561 2774 incessantly to old movies , when you could just rent those movies instead , let alone seek out a respectable new one 1 +55562 2774 incessantly 1 +55563 2774 to old movies , when you could just rent those movies instead , let alone seek out a respectable new one 1 +55564 2774 old movies , when you could just rent those movies instead , let alone seek out a respectable new one 1 +55565 2774 old movies , 2 +55566 2774 old movies 2 +55567 2774 when you could just rent those movies instead , let alone seek out a respectable new one 1 +55568 2774 you could just rent those movies instead , let alone seek out a respectable new one 1 +55569 2774 could just rent those movies instead , let alone seek out a respectable new one 1 +55570 2774 could just 2 +55571 2774 rent those movies instead , let alone seek out a respectable new one 2 +55572 2774 rent those movies instead , let alone 2 +55573 2774 rent those movies instead , 1 +55574 2774 rent those movies instead 1 +55575 2774 rent those movies 2 +55576 2774 let alone 2 +55577 2774 seek out a respectable new one 2 +55578 2774 seek out 2 +55579 2774 a respectable new one 3 +55580 2774 respectable new one 3 +55581 2774 new one 2 +55582 2775 The entire movie establishes a wonderfully creepy mood . 4 +55583 2775 The entire movie 2 +55584 2775 entire movie 2 +55585 2775 establishes a wonderfully creepy mood . 3 +55586 2775 establishes a wonderfully creepy mood 4 +55587 2775 a wonderfully creepy mood 3 +55588 2775 wonderfully creepy mood 3 +55589 2775 wonderfully creepy 3 +55590 2776 Taken outside the context of the current political climate -LRB- see : terrorists are more evil than ever ! -RRB- 1 +55591 2776 Taken outside the context of the current political climate 2 +55592 2776 outside the context of the current political climate 2 +55593 2776 the context of the current political climate 2 +55594 2776 the context 2 +55595 2776 of the current political climate 1 +55596 2776 the current political climate 2 +55597 2776 current political climate 2 +55598 2776 political climate 2 +55599 2776 climate 3 +55600 2776 -LRB- see : terrorists are more evil than ever ! -RRB- 2 +55601 2776 see : terrorists are more evil than ever ! -RRB- 2 +55602 2776 see : terrorists are more evil than ever ! 1 +55603 2776 : terrorists are more evil than ever ! 2 +55604 2776 terrorists are more evil than ever ! 1 +55605 2776 terrorists are more evil than ever 2 +55606 2776 are more evil than ever 2 +55607 2776 more evil than ever 1 +55608 2776 evil than ever 2 +55609 2776 than ever 2 +55610 2777 A particularly joyless , and exceedingly dull , period coming-of-age tale . 0 +55611 2777 A particularly joyless , and exceedingly dull , period 0 +55612 2777 particularly joyless , and exceedingly dull , period 0 +55613 2777 particularly joyless , and exceedingly dull , 0 +55614 2777 particularly joyless , and exceedingly dull 0 +55615 2777 particularly joyless , and 1 +55616 2777 particularly joyless , 1 +55617 2777 particularly joyless 1 +55618 2777 exceedingly dull 1 +55619 2777 coming-of-age tale . 2 +55620 2778 It 's at once laughable and compulsively watchable , in its committed dumbness . 3 +55621 2778 's at once laughable and compulsively watchable , in its committed dumbness . 2 +55622 2778 's at once laughable and compulsively watchable , in its committed dumbness 2 +55623 2778 's at once laughable and compulsively watchable , 3 +55624 2778 's at once laughable and compulsively watchable 3 +55625 2778 at once laughable and compulsively watchable 3 +55626 2778 at once laughable and 2 +55627 2778 at once laughable 1 +55628 2778 laughable 1 +55629 2778 in its committed dumbness 1 +55630 2778 its committed dumbness 0 +55631 2778 committed dumbness 0 +55632 2778 dumbness 1 +55633 2779 Lacks depth . 1 +55634 2779 depth . 2 +55635 2780 A tremendous piece of work . 4 +55636 2780 A tremendous piece of work 4 +55637 2780 A tremendous piece 4 +55638 2780 tremendous piece 3 +55639 2780 tremendous 4 +55640 2780 of work 2 +55641 2781 What 's surprising is how well it holds up in an era in which computer-generated images are the norm . 3 +55642 2781 What 's surprising 2 +55643 2781 's surprising 2 +55644 2781 is how well it holds up in an era in which computer-generated images are the norm . 3 +55645 2781 is how well it holds up in an era in which computer-generated images are the norm 4 +55646 2781 how well it holds up in an era in which computer-generated images are the norm 3 +55647 2781 it holds up in an era in which computer-generated images are the norm 3 +55648 2781 holds up in an era in which computer-generated images are the norm 3 +55649 2781 holds up 3 +55650 2781 in an era in which computer-generated images are the norm 2 +55651 2781 an era in which computer-generated images are the norm 2 +55652 2781 in which computer-generated images are the norm 2 +55653 2781 computer-generated images are the norm 2 +55654 2781 computer-generated images 2 +55655 2781 are the norm 2 +55656 2781 the norm 2 +55657 2781 norm 2 +55658 2782 I do n't think so . 1 +55659 2782 do n't think so . 1 +55660 2782 do n't think so 1 +55661 2782 think so 2 +55662 2783 Koepp 's screenplay is n't nearly surprising or clever enough to sustain a reasonable degree of suspense on its own . 0 +55663 2783 Koepp 's screenplay 2 +55664 2783 Koepp 's 2 +55665 2783 Koepp 2 +55666 2783 is n't nearly surprising or clever enough to sustain a reasonable degree of suspense on its own . 1 +55667 2783 is n't nearly surprising or clever enough to sustain a reasonable degree of suspense on its own 1 +55668 2783 nearly surprising or clever enough to sustain a reasonable degree of suspense on its own 1 +55669 2783 nearly surprising or 2 +55670 2783 nearly surprising 2 +55671 2783 clever enough to sustain a reasonable degree of suspense on its own 3 +55672 2783 to sustain a reasonable degree of suspense on its own 2 +55673 2783 sustain a reasonable degree of suspense on its own 3 +55674 2783 sustain a reasonable degree of suspense 3 +55675 2783 a reasonable degree of suspense 3 +55676 2783 a reasonable degree 3 +55677 2783 reasonable degree 2 +55678 2783 reasonable 3 +55679 2784 Better effects , better acting and a hilarious Kenneth Branagh . 4 +55680 2784 Better effects , better acting and a hilarious Kenneth Branagh 4 +55681 2784 Better effects , 3 +55682 2784 Better effects 2 +55683 2784 better acting and a hilarious Kenneth Branagh 3 +55684 2784 better acting and 2 +55685 2784 better acting 2 +55686 2784 a hilarious Kenneth Branagh 3 +55687 2784 hilarious Kenneth Branagh 3 +55688 2784 Kenneth Branagh 2 +55689 2784 Kenneth 2 +55690 2784 Branagh 2 +55691 2785 A derivative collection of horror and sci-fi cliches . 0 +55692 2785 A derivative collection of horror and sci-fi 1 +55693 2785 A derivative collection 1 +55694 2785 derivative collection 2 +55695 2785 of horror and sci-fi 2 +55696 2785 horror and sci-fi 2 +55697 2785 horror and 2 +55698 2785 cliches . 2 +55699 2786 Moonlight Mile gives itself the freedom to feel contradictory things . 3 +55700 2786 gives itself the freedom to feel contradictory things . 3 +55701 2786 gives itself the freedom to feel contradictory things 2 +55702 2786 gives itself 2 +55703 2786 the freedom to feel contradictory things 2 +55704 2786 freedom to feel contradictory things 3 +55705 2786 to feel contradictory things 2 +55706 2786 feel contradictory things 1 +55707 2786 contradictory things 1 +55708 2786 contradictory 1 +55709 2787 What little atmosphere is generated by the shadowy lighting , macabre sets , and endless rain is offset by the sheer ugliness of everything else . 0 +55710 2787 What little atmosphere is generated by the shadowy lighting , macabre sets , and endless rain is offset by the sheer ugliness of everything else 2 +55711 2787 What little atmosphere is generated by the shadowy lighting , macabre sets , and 1 +55712 2787 What little atmosphere is generated by the shadowy lighting , macabre sets , 2 +55713 2787 What little atmosphere is generated by the shadowy lighting , macabre sets 1 +55714 2787 What little atmosphere is generated by the shadowy lighting 2 +55715 2787 little atmosphere is generated by the shadowy lighting 1 +55716 2787 little atmosphere 2 +55717 2787 is generated by the shadowy lighting 2 +55718 2787 generated by the shadowy lighting 2 +55719 2787 generated 2 +55720 2787 by the shadowy lighting 3 +55721 2787 the shadowy lighting 3 +55722 2787 shadowy lighting 2 +55723 2787 , macabre sets 2 +55724 2787 macabre sets 2 +55725 2787 endless rain is offset by the sheer ugliness of everything else 1 +55726 2787 endless rain 2 +55727 2787 is offset by the sheer ugliness of everything else 0 +55728 2787 offset by the sheer ugliness of everything else 1 +55729 2787 offset 2 +55730 2787 by the sheer ugliness of everything else 2 +55731 2787 the sheer ugliness of everything else 1 +55732 2787 the sheer ugliness 0 +55733 2787 sheer ugliness 1 +55734 2787 ugliness 1 +55735 2787 of everything else 2 +55736 2788 Curiously , Super Troopers suffers because it does n't have enough vices to merit its 103-minute length . 1 +55737 2788 , Super Troopers suffers because it does n't have enough vices to merit its 103-minute length . 1 +55738 2788 Super Troopers suffers because it does n't have enough vices to merit its 103-minute length . 1 +55739 2788 Super Troopers 2 +55740 2788 Super 3 +55741 2788 Troopers 2 +55742 2788 suffers because it does n't have enough vices to merit its 103-minute length . 1 +55743 2788 suffers because it does n't have enough vices to merit its 103-minute length 0 +55744 2788 because it does n't have enough vices to merit its 103-minute length 1 +55745 2788 it does n't have enough vices to merit its 103-minute length 2 +55746 2788 does n't have enough vices to merit its 103-minute length 1 +55747 2788 have enough vices to merit its 103-minute length 2 +55748 2788 enough vices to merit its 103-minute length 3 +55749 2788 enough vices 2 +55750 2788 vices 2 +55751 2788 to merit its 103-minute length 2 +55752 2788 merit its 103-minute length 3 +55753 2788 its 103-minute length 2 +55754 2788 103-minute length 2 +55755 2788 103-minute 2 +55756 2789 `` What John does is heroic , but we do n't condone it , '' one of the film 's stars recently said , a tortuous comment that perfectly illustrates the picture 's moral schizophrenia . 2 +55757 2789 What John does is heroic , but we do n't condone it , '' one of the film 's stars recently said , a tortuous comment that perfectly illustrates the picture 's moral schizophrenia . 4 +55758 2789 What John does is heroic , but we do n't condone it 2 +55759 2789 What John does is heroic , but 2 +55760 2789 What John does is heroic , 3 +55761 2789 What John does is heroic 3 +55762 2789 What John does 2 +55763 2789 John does 2 +55764 2789 is heroic 4 +55765 2789 heroic 4 +55766 2789 we do n't condone it 2 +55767 2789 do n't condone it 2 +55768 2789 condone it 2 +55769 2789 condone 2 +55770 2789 , '' one of the film 's stars recently said , a tortuous comment that perfectly illustrates the picture 's moral schizophrenia . 2 +55771 2789 '' one of the film 's stars recently said , a tortuous comment that perfectly illustrates the picture 's moral schizophrenia . 0 +55772 2789 one of the film 's stars recently said , a tortuous comment that perfectly illustrates the picture 's moral schizophrenia . 0 +55773 2789 one of the film 's stars 2 +55774 2789 of the film 's stars 2 +55775 2789 the film 's stars 2 +55776 2789 recently said , a tortuous comment that perfectly illustrates the picture 's moral schizophrenia . 1 +55777 2789 recently said , a tortuous comment that perfectly illustrates the picture 's moral schizophrenia 1 +55778 2789 recently said , 2 +55779 2789 recently said 2 +55780 2789 a tortuous comment that perfectly illustrates the picture 's moral schizophrenia 1 +55781 2789 a tortuous comment 2 +55782 2789 tortuous comment 2 +55783 2789 tortuous 0 +55784 2789 that perfectly illustrates the picture 's moral schizophrenia 1 +55785 2789 perfectly illustrates the picture 's moral schizophrenia 2 +55786 2789 illustrates the picture 's moral schizophrenia 1 +55787 2789 illustrates 3 +55788 2789 the picture 's moral schizophrenia 2 +55789 2789 the picture 's 2 +55790 2789 picture 's 2 +55791 2789 moral schizophrenia 1 +55792 2790 ... hypnotically dull . 0 +55793 2790 hypnotically dull . 0 +55794 2790 hypnotically 2 +55795 2790 dull . 1 +55796 2791 A graceful , moving tribute to the courage of New York 's finest and a nicely understated expression of the grief shared by the nation at their sacrifice . 4 +55797 2791 A graceful , moving tribute to the courage of New York 's finest and a nicely understated expression of the grief 4 +55798 2791 A graceful , moving tribute 4 +55799 2791 graceful , moving tribute 3 +55800 2791 graceful , moving 4 +55801 2791 graceful 2 +55802 2791 , moving 3 +55803 2791 to the courage of New York 's finest and a nicely understated expression of the grief 3 +55804 2791 the courage of New York 's finest and a nicely understated expression of the grief 4 +55805 2791 the courage 3 +55806 2791 of New York 's finest and a nicely understated expression of the grief 3 +55807 2791 New York 's finest and a nicely understated expression of the grief 3 +55808 2791 New York 's finest and 3 +55809 2791 New York 's finest 3 +55810 2791 New York 's 2 +55811 2791 York 's 2 +55812 2791 a nicely understated expression of the grief 3 +55813 2791 a nicely understated expression 3 +55814 2791 nicely understated expression 3 +55815 2791 understated expression 2 +55816 2791 expression 2 +55817 2791 of the grief 1 +55818 2791 the grief 2 +55819 2791 shared by the nation at their sacrifice . 3 +55820 2791 shared by the nation at their sacrifice 2 +55821 2791 shared by the nation 3 +55822 2791 shared 2 +55823 2791 by the nation 2 +55824 2791 at their sacrifice 2 +55825 2791 their sacrifice 2 +55826 2792 She is a lioness , protecting her cub , and he a reluctant villain , incapable of controlling his crew . 3 +55827 2792 She is a lioness , protecting her cub , and he a reluctant villain , incapable of controlling his crew 2 +55828 2792 She is a lioness , protecting her cub , and he a reluctant villain , 3 +55829 2792 She is a lioness , protecting her cub , and he a reluctant villain 3 +55830 2792 She is a lioness , 3 +55831 2792 She is a lioness 3 +55832 2792 is a lioness 2 +55833 2792 a lioness 2 +55834 2792 lioness 2 +55835 2792 protecting her cub , and he a reluctant villain 2 +55836 2792 protecting her cub , and 2 +55837 2792 protecting her cub , 2 +55838 2792 protecting her cub 2 +55839 2792 protecting 2 +55840 2792 her cub 2 +55841 2792 cub 2 +55842 2792 he a reluctant villain 2 +55843 2792 a reluctant villain 2 +55844 2792 reluctant villain 2 +55845 2792 incapable of controlling his crew 1 +55846 2792 incapable 1 +55847 2792 of controlling his crew 2 +55848 2792 controlling his crew 2 +55849 2792 controlling 2 +55850 2792 his crew 2 +55851 2793 It 's a film that 's destined to win a wide summer audience through word-of-mouth reviews and , not far down the line , to find a place among the studio 's animated classics . 3 +55852 2793 's a film that 's destined to win a wide summer audience through word-of-mouth reviews and , not far down the line , to find a place among the studio 's animated classics . 3 +55853 2793 's a film that 's destined to win a wide summer audience through word-of-mouth reviews and , not far down the line , to find a place among the studio 's animated classics 4 +55854 2793 a film that 's destined to win a wide summer audience through word-of-mouth reviews and , not far down the line , to find a place among the studio 's animated classics 4 +55855 2793 that 's destined to win a wide summer audience through word-of-mouth reviews and , not far down the line , to find a place among the studio 's animated classics 4 +55856 2793 's destined to win a wide summer audience through word-of-mouth reviews and , not far down the line , to find a place among the studio 's animated classics 4 +55857 2793 destined to win a wide summer audience through word-of-mouth reviews and , not far down the line , to find a place among the studio 's animated classics 4 +55858 2793 destined 2 +55859 2793 to win a wide summer audience through word-of-mouth reviews and , not far down the line , to find a place among the studio 's animated classics 3 +55860 2793 to win a wide summer audience through word-of-mouth reviews and , 3 +55861 2793 to win a wide summer audience through word-of-mouth reviews and 3 +55862 2793 to win a wide summer audience through word-of-mouth reviews 3 +55863 2793 win a wide summer audience through word-of-mouth reviews 3 +55864 2793 win a wide summer audience 3 +55865 2793 a wide summer audience 3 +55866 2793 wide summer audience 2 +55867 2793 summer audience 3 +55868 2793 through word-of-mouth reviews 2 +55869 2793 word-of-mouth reviews 2 +55870 2793 word-of-mouth 2 +55871 2793 reviews 2 +55872 2793 not far down the line , to find a place among the studio 's animated classics 3 +55873 2793 not far down the line 2 +55874 2793 not far down 2 +55875 2793 not far 2 +55876 2793 , to find a place among the studio 's animated classics 3 +55877 2793 to find a place among the studio 's animated classics 4 +55878 2793 find a place among the studio 's animated classics 3 +55879 2793 find a place 2 +55880 2793 among the studio 's animated classics 3 +55881 2793 the studio 's animated classics 2 +55882 2793 the studio 's 2 +55883 2793 animated classics 2 +55884 2794 Even though many of these guys are less than adorable -LRB- their lamentations are pretty much self-centered -RRB- , there 's something vital about the movie . 3 +55885 2794 Even though many of these guys are less than adorable 2 +55886 2794 though many of these guys are less than adorable 1 +55887 2794 many of these guys are less than adorable 1 +55888 2794 many of these guys 2 +55889 2794 of these guys 2 +55890 2794 are less than adorable 0 +55891 2794 less than adorable 1 +55892 2794 less than 1 +55893 2794 adorable 4 +55894 2794 -LRB- their lamentations are pretty much self-centered -RRB- , there 's something vital about the movie . 3 +55895 2794 -LRB- their lamentations are pretty much self-centered -RRB- 2 +55896 2794 their lamentations are pretty much self-centered -RRB- 1 +55897 2794 their lamentations are pretty much self-centered 1 +55898 2794 their lamentations 2 +55899 2794 lamentations 2 +55900 2794 are pretty much self-centered 2 +55901 2794 pretty much self-centered 1 +55902 2794 much self-centered 1 +55903 2794 self-centered 1 +55904 2794 , there 's something vital about the movie . 3 +55905 2794 there 's something vital about the movie . 3 +55906 2794 's something vital about the movie . 3 +55907 2794 's something vital about the movie 3 +55908 2794 something vital about the movie 3 +55909 2794 something vital 3 +55910 2794 about the movie 2 +55911 2795 As it stands it 's an opera movie for the buffs . 2 +55912 2795 As it stands 2 +55913 2795 it stands 2 +55914 2795 it 's an opera movie for the buffs . 3 +55915 2795 's an opera movie for the buffs . 3 +55916 2795 's an opera movie for the buffs 3 +55917 2795 an opera movie for the buffs 3 +55918 2795 an opera movie 2 +55919 2795 opera movie 2 +55920 2795 for the buffs 2 +55921 2795 the buffs 2 +55922 2795 buffs 2 +55923 2796 Sex is one of those films that aims to confuse . 1 +55924 2796 is one of those films that aims to confuse . 2 +55925 2796 is one of those films that aims to confuse 1 +55926 2796 one of those films that aims to confuse 2 +55927 2796 of those films that aims to confuse 1 +55928 2796 those films that aims to confuse 2 +55929 2796 that aims to confuse 2 +55930 2796 aims to confuse 1 +55931 2796 to confuse 2 +55932 2796 confuse 2 +55933 2797 `` Secretary '' is owned by its costars , Spader and Gyllenhaal . 2 +55934 2797 Secretary '' is owned by its costars , Spader and Gyllenhaal . 3 +55935 2797 '' is owned by its costars , Spader and Gyllenhaal . 3 +55936 2797 is owned by its costars , Spader and Gyllenhaal . 3 +55937 2797 is owned by its costars , Spader and Gyllenhaal 2 +55938 2797 owned by its costars , Spader and Gyllenhaal 2 +55939 2797 owned 2 +55940 2797 by its costars , Spader and Gyllenhaal 2 +55941 2797 its costars , Spader and Gyllenhaal 2 +55942 2797 its costars , Spader and 2 +55943 2797 its costars , Spader 3 +55944 2797 its costars , 2 +55945 2797 its costars 2 +55946 2797 costars 2 +55947 2798 It 's Pauly Shore awful . 0 +55948 2798 's Pauly Shore awful . 0 +55949 2798 's Pauly Shore awful 0 +55950 2798 Pauly Shore awful 0 +55951 2798 Pauly Shore 2 +55952 2798 Pauly 2 +55953 2798 Shore 2 +55954 2799 Shunji Iwai 's All About Lily Chou Chou is a beautifully shot , but ultimately flawed film about growing up in Japan . 1 +55955 2799 Shunji Iwai 's All About Lily Chou Chou 2 +55956 2799 Shunji Iwai 's 2 +55957 2799 Shunji 2 +55958 2799 All About Lily Chou Chou 2 +55959 2799 All About Lily 2 +55960 2799 Chou Chou 2 +55961 2799 Chou 2 +55962 2799 is a beautifully shot , but ultimately flawed film about growing up in Japan . 3 +55963 2799 is a beautifully shot , but ultimately flawed film about growing up in Japan 2 +55964 2799 a beautifully shot , but ultimately flawed film about growing up in Japan 1 +55965 2799 a beautifully shot , but ultimately flawed film 2 +55966 2799 beautifully shot , but ultimately flawed film 2 +55967 2799 beautifully shot , but ultimately flawed 2 +55968 2799 beautifully shot , but 3 +55969 2799 beautifully shot , 3 +55970 2799 beautifully shot 4 +55971 2799 ultimately flawed 1 +55972 2799 about growing up in Japan 2 +55973 2799 growing up in Japan 2 +55974 2799 in Japan 2 +55975 2800 Sheds light on a subject few are familiar with , and makes you care about music you may not have heard before . 3 +55976 2800 Sheds light on a subject few 2 +55977 2800 Sheds light 3 +55978 2800 Sheds 2 +55979 2800 on a subject few 2 +55980 2800 a subject few 2 +55981 2800 subject few 2 +55982 2800 are familiar with , and makes you care about music you may not have heard before . 3 +55983 2800 are familiar with , and makes you care about music you may not have heard before 3 +55984 2800 are familiar with , and 2 +55985 2800 are familiar with , 2 +55986 2800 are familiar with 2 +55987 2800 familiar with 2 +55988 2800 makes you care about music you may not have heard before 4 +55989 2800 you care about music you may not have heard before 2 +55990 2800 care about music you may not have heard before 2 +55991 2800 about music you may not have heard before 2 +55992 2800 music you may not have heard before 3 +55993 2800 you may not have heard before 2 +55994 2800 may not have heard before 2 +55995 2800 have heard before 2 +55996 2800 heard before 3 +55997 2801 The high-concept scenario soon proves preposterous , the acting is robotically italicized , and truth-in-advertising hounds take note : There 's very little hustling on view . 1 +55998 2801 The high-concept scenario soon proves preposterous , the acting is robotically italicized , and truth-in-advertising hounds take note : There 's very little hustling on view 1 +55999 2801 The high-concept scenario soon proves preposterous , the acting is robotically italicized , and truth-in-advertising hounds take note : 0 +56000 2801 The high-concept scenario soon proves preposterous , the acting is robotically italicized , and truth-in-advertising hounds take note 0 +56001 2801 The high-concept scenario soon proves preposterous , the acting is robotically italicized , and 1 +56002 2801 The high-concept scenario soon proves preposterous , the acting is robotically italicized , 2 +56003 2801 The high-concept scenario 2 +56004 2801 high-concept scenario 3 +56005 2801 soon proves preposterous , the acting is robotically italicized , 1 +56006 2801 proves preposterous , the acting is robotically italicized , 1 +56007 2801 proves preposterous 2 +56008 2801 , the acting is robotically italicized , 0 +56009 2801 the acting is robotically italicized , 1 +56010 2801 the acting is robotically italicized 2 +56011 2801 is robotically italicized 1 +56012 2801 robotically italicized 1 +56013 2801 robotically 1 +56014 2801 italicized 2 +56015 2801 truth-in-advertising hounds take note 2 +56016 2801 truth-in-advertising hounds 1 +56017 2801 truth-in-advertising 2 +56018 2801 hounds 2 +56019 2801 take note 2 +56020 2801 There 's very little hustling on view 2 +56021 2801 's very little hustling on view 2 +56022 2801 's very little 1 +56023 2801 hustling on view 2 +56024 2801 hustling 2 +56025 2801 on view 2 +56026 2802 Surprisingly , considering that Baird is a former film editor , the movie is rather choppy . 1 +56027 2802 , considering that Baird is a former film editor , the movie is rather choppy . 1 +56028 2802 considering that Baird is a former film editor , the movie is rather choppy . 1 +56029 2802 considering that Baird is a former film editor 2 +56030 2802 that Baird is a former film editor 2 +56031 2802 Baird is a former film editor 2 +56032 2802 Baird 2 +56033 2802 is a former film editor 3 +56034 2802 a former film editor 2 +56035 2802 former film editor 2 +56036 2802 film editor 2 +56037 2802 editor 2 +56038 2802 , the movie is rather choppy . 0 +56039 2802 the movie is rather choppy . 1 +56040 2802 is rather choppy . 2 +56041 2802 is rather choppy 1 +56042 2802 rather choppy 1 +56043 2803 Overall , interesting as a documentary -- but not very Imaxy . 2 +56044 2803 , interesting as a documentary -- but not very Imaxy . 3 +56045 2803 interesting as a documentary -- but not very Imaxy . 2 +56046 2803 interesting as a documentary -- but not very Imaxy 2 +56047 2803 as a documentary -- but not very Imaxy 1 +56048 2803 a documentary -- but not very Imaxy 2 +56049 2803 -- but not very Imaxy 1 +56050 2803 but not very Imaxy 1 +56051 2803 not very Imaxy 2 +56052 2803 not very 2 +56053 2803 Imaxy 2 +56054 2804 Whether Quitting will prove absorbing to American audiences is debatable . 2 +56055 2804 Whether Quitting will prove absorbing to American audiences 3 +56056 2804 Quitting will prove absorbing to American audiences 4 +56057 2804 will prove absorbing to American audiences 3 +56058 2804 prove absorbing to American audiences 3 +56059 2804 absorbing to American audiences 3 +56060 2804 to American audiences 2 +56061 2804 American audiences 2 +56062 2804 is debatable . 2 +56063 2804 is debatable 2 +56064 2804 debatable 2 +56065 2805 The comedy Death to Smoochy is a rancorous curiosity : a movie without an apparent audience . 1 +56066 2805 The comedy Death to Smoochy 2 +56067 2805 The comedy Death 2 +56068 2805 comedy Death 0 +56069 2805 to Smoochy 2 +56070 2805 is a rancorous curiosity : a movie without an apparent audience . 1 +56071 2805 is a rancorous curiosity : a movie without an apparent audience 1 +56072 2805 a rancorous curiosity : a movie without an apparent audience 1 +56073 2805 a rancorous curiosity : 2 +56074 2805 a rancorous curiosity 2 +56075 2805 rancorous curiosity 3 +56076 2805 rancorous 2 +56077 2805 a movie without an apparent audience 0 +56078 2805 without an apparent audience 2 +56079 2805 an apparent audience 2 +56080 2805 apparent audience 2 +56081 2806 Odd and weird . 1 +56082 2806 Odd and weird 1 +56083 2806 Odd and 1 +56084 2807 This is not an easy film . 1 +56085 2807 is not an easy film . 1 +56086 2807 is not an easy film 2 +56087 2807 an easy film 3 +56088 2807 easy film 3 +56089 2808 Simply does n't have sufficient heft to justify its two-hour running time . 2 +56090 2808 does n't have sufficient heft to justify its two-hour running time . 1 +56091 2808 does n't have sufficient heft to justify its two-hour running time 1 +56092 2808 have sufficient heft to justify its two-hour running time 2 +56093 2808 sufficient heft to justify its two-hour running time 3 +56094 2808 sufficient 3 +56095 2808 heft to justify its two-hour running time 1 +56096 2808 to justify its two-hour running time 1 +56097 2808 justify its two-hour running time 1 +56098 2808 its two-hour running time 2 +56099 2808 two-hour running time 2 +56100 2809 ... overly melodramatic ... 0 +56101 2809 overly melodramatic ... 1 +56102 2809 melodramatic ... 2 +56103 2810 A potentially good comic premise and excellent cast are terribly wasted . 1 +56104 2810 A potentially good comic premise and excellent cast 3 +56105 2810 A potentially good comic premise and 3 +56106 2810 A potentially good comic premise 3 +56107 2810 potentially good comic premise 3 +56108 2810 potentially good 3 +56109 2810 comic premise 2 +56110 2810 excellent cast 4 +56111 2810 are terribly wasted . 0 +56112 2810 are terribly wasted 1 +56113 2810 are terribly 2 +56114 2811 In any case , I would recommend Big Bad Love only to Winger fans who have missed her since 1995 's Forget Paris . 1 +56115 2811 In any case 2 +56116 2811 any case 2 +56117 2811 , I would recommend Big Bad Love only to Winger fans who have missed her since 1995 's Forget Paris . 2 +56118 2811 I would recommend Big Bad Love only to Winger fans who have missed her since 1995 's Forget Paris . 1 +56119 2811 would recommend Big Bad Love only to Winger fans who have missed her since 1995 's Forget Paris . 1 +56120 2811 would recommend Big Bad Love only to Winger fans who have missed her since 1995 's Forget Paris 1 +56121 2811 recommend Big Bad Love only to Winger fans who have missed her since 1995 's Forget Paris 2 +56122 2811 recommend Big Bad Love only 3 +56123 2811 recommend Big Bad Love 3 +56124 2811 to Winger fans who have missed her since 1995 's Forget Paris 3 +56125 2811 Winger fans who have missed her since 1995 's Forget Paris 2 +56126 2811 Winger fans 2 +56127 2811 Winger 2 +56128 2811 who have missed her since 1995 's Forget Paris 2 +56129 2811 have missed her since 1995 's Forget Paris 2 +56130 2811 missed her since 1995 's Forget Paris 2 +56131 2811 missed her 2 +56132 2811 since 1995 's Forget Paris 2 +56133 2811 1995 's Forget Paris 3 +56134 2811 1995 's 2 +56135 2811 1995 2 +56136 2811 Forget Paris 2 +56137 2812 You watch for that sense of openness , the little surprises . 3 +56138 2812 watch for that sense of openness , the little surprises . 3 +56139 2812 watch for that sense of openness , the little surprises 3 +56140 2812 for that sense of openness , the little surprises 3 +56141 2812 that sense of openness , the little surprises 3 +56142 2812 that sense 2 +56143 2812 of openness , the little surprises 2 +56144 2812 openness , the little surprises 3 +56145 2812 the little surprises 2 +56146 2812 little surprises 2 +56147 2813 Jaunty fun , with its celeb-strewn backdrop well used . 2 +56148 2813 Jaunty 2 +56149 2813 fun , with its celeb-strewn backdrop well used . 3 +56150 2813 , with its celeb-strewn backdrop well used . 3 +56151 2813 with its celeb-strewn backdrop well used . 3 +56152 2813 with its celeb-strewn backdrop well used 3 +56153 2813 its celeb-strewn backdrop well used 3 +56154 2813 its celeb-strewn backdrop 2 +56155 2813 celeb-strewn backdrop 2 +56156 2813 celeb-strewn 2 +56157 2813 backdrop 2 +56158 2813 well used 3 +56159 2814 Simply a re-hash of the other seven films . 1 +56160 2814 Simply a re-hash of the other seven films 1 +56161 2814 a re-hash of the other seven films 1 +56162 2814 a re-hash 1 +56163 2814 re-hash 2 +56164 2814 of the other seven films 2 +56165 2814 the other seven films 2 +56166 2814 other seven films 2 +56167 2814 seven films 2 +56168 2815 Far too clever by half , Howard 's film is really a series of strung-together moments , with all the spaces in between filled with fantasies , daydreams , memories and one fantastic visual trope after another . 0 +56169 2815 Far too clever by half 2 +56170 2815 too clever by half 2 +56171 2815 clever by half 2 +56172 2815 , Howard 's film is really a series of strung-together moments , with all the spaces in between filled with fantasies , daydreams , memories and one fantastic visual trope after another . 1 +56173 2815 Howard 's film is really a series of strung-together moments , with all the spaces in between filled with fantasies , daydreams , memories and one fantastic visual trope after another . 2 +56174 2815 Howard 's film 2 +56175 2815 is really a series of strung-together moments , with all the spaces in between filled with fantasies , daydreams , memories and one fantastic visual trope after another . 2 +56176 2815 is really a series of strung-together moments , with all the spaces in between filled with fantasies , daydreams , memories and one fantastic visual trope after another 2 +56177 2815 is really a series of strung-together moments , 2 +56178 2815 is really a series of strung-together moments 2 +56179 2815 a series of strung-together moments 2 +56180 2815 of strung-together moments 1 +56181 2815 strung-together moments 1 +56182 2815 strung-together 2 +56183 2815 with all the spaces in between filled with fantasies , daydreams , memories and one fantastic visual trope after another 2 +56184 2815 all the spaces in between filled with fantasies , daydreams , memories and one fantastic visual trope after another 3 +56185 2815 all the spaces in between 2 +56186 2815 all the spaces 2 +56187 2815 the spaces 2 +56188 2815 filled with fantasies , daydreams , memories and one fantastic visual trope after another 3 +56189 2815 filled with fantasies , daydreams , memories and one fantastic visual trope 3 +56190 2815 with fantasies , daydreams , memories and one fantastic visual trope 3 +56191 2815 fantasies , daydreams , memories and one fantastic visual trope 2 +56192 2815 , daydreams , memories and one fantastic visual trope 3 +56193 2815 daydreams , memories and one fantastic visual trope 4 +56194 2815 daydreams 2 +56195 2815 , memories and one fantastic visual trope 3 +56196 2815 memories and one fantastic visual trope 3 +56197 2815 and one fantastic visual trope 2 +56198 2815 one fantastic visual trope 4 +56199 2815 fantastic visual trope 3 +56200 2815 visual trope 2 +56201 2815 trope 2 +56202 2816 The latest Adam Sandler assault and possibly the worst film of the year . 0 +56203 2816 The latest Adam Sandler assault and possibly the worst film of the year 0 +56204 2816 The latest Adam Sandler assault and possibly the worst film 1 +56205 2816 Adam Sandler assault and possibly the worst film 0 +56206 2816 Adam Sandler assault and 2 +56207 2816 Adam Sandler assault 1 +56208 2816 Sandler assault 2 +56209 2816 possibly the worst film 0 +56210 2817 Samuel Beckett applied to the Iranian voting process . 2 +56211 2817 Samuel Beckett 2 +56212 2817 Samuel 2 +56213 2817 Beckett 2 +56214 2817 applied to the Iranian voting process . 2 +56215 2817 applied to the Iranian voting process 2 +56216 2817 applied 2 +56217 2817 to the Iranian voting process 2 +56218 2817 the Iranian voting process 2 +56219 2817 Iranian voting process 2 +56220 2817 voting process 2 +56221 2818 There is only so much baked cardboard I need to chew . 1 +56222 2818 is only so much baked cardboard I need to chew . 1 +56223 2818 is only so much baked cardboard I need to chew 1 +56224 2818 only so much baked cardboard I need to chew 0 +56225 2818 only so much baked cardboard 0 +56226 2818 so much baked cardboard 2 +56227 2818 much baked cardboard 1 +56228 2818 baked cardboard 1 +56229 2818 baked 3 +56230 2818 cardboard 2 +56231 2818 I need to chew 2 +56232 2818 need to chew 2 +56233 2818 to chew 2 +56234 2819 A full-frontal attack on audience patience . 0 +56235 2819 A full-frontal attack on audience patience 1 +56236 2819 A full-frontal attack 2 +56237 2819 full-frontal attack 2 +56238 2819 full-frontal 2 +56239 2819 attack 1 +56240 2819 on audience patience 1 +56241 2819 audience patience 2 +56242 2820 This is one of those rare docs that paints a grand picture of an era and makes the journey feel like a party . 3 +56243 2820 is one of those rare docs that paints a grand picture of an era and makes the journey feel like a party . 4 +56244 2820 is one of those rare docs that paints a grand picture of an era and makes the journey feel like a party 4 +56245 2820 one of those rare docs that paints a grand picture of an era and makes the journey feel like a party 4 +56246 2820 of those rare docs that paints a grand picture of an era and makes the journey feel like a party 4 +56247 2820 those rare docs that paints a grand picture of an era and makes the journey feel like a party 3 +56248 2820 those rare docs 2 +56249 2820 rare docs 2 +56250 2820 docs 2 +56251 2820 that paints a grand picture of an era and makes the journey feel like a party 4 +56252 2820 paints a grand picture of an era and makes the journey feel like a party 3 +56253 2820 paints a grand picture of an era and 3 +56254 2820 paints a grand picture of an era 3 +56255 2820 a grand picture of an era 3 +56256 2820 a grand picture 4 +56257 2820 grand picture 3 +56258 2820 of an era 2 +56259 2820 makes the journey feel like a party 3 +56260 2820 the journey feel like a party 3 +56261 2820 the journey 2 +56262 2820 feel like a party 2 +56263 2820 like a party 3 +56264 2820 a party 2 +56265 2821 When you find yourself rooting for the monsters in a horror movie , you know the picture is in trouble . 0 +56266 2821 When you find yourself rooting for the monsters in a horror movie 2 +56267 2821 you find yourself rooting for the monsters in a horror movie 2 +56268 2821 find yourself rooting for the monsters in a horror movie 1 +56269 2821 yourself rooting for the monsters in a horror movie 1 +56270 2821 rooting for the monsters in a horror movie 1 +56271 2821 for the monsters in a horror movie 2 +56272 2821 the monsters in a horror movie 2 +56273 2821 the monsters 2 +56274 2821 in a horror movie 2 +56275 2821 a horror movie 2 +56276 2821 , you know the picture is in trouble . 1 +56277 2821 you know the picture is in trouble . 1 +56278 2821 know the picture is in trouble . 0 +56279 2821 know the picture is in trouble 2 +56280 2821 the picture is in trouble 1 +56281 2821 is in trouble 1 +56282 2822 A stylish but steady , and ultimately very satisfying , piece of character-driven storytelling . 4 +56283 2822 A stylish but steady , and ultimately very satisfying , piece of character-driven storytelling 4 +56284 2822 A stylish but steady , and ultimately very satisfying , piece 4 +56285 2822 stylish but steady , and ultimately very satisfying , piece 3 +56286 2822 stylish but steady , and ultimately very satisfying , 4 +56287 2822 stylish but steady , and ultimately very satisfying 4 +56288 2822 stylish but steady , and 3 +56289 2822 stylish but steady , 3 +56290 2822 stylish but steady 3 +56291 2822 stylish but 2 +56292 2822 steady 2 +56293 2822 ultimately very satisfying 4 +56294 2822 of character-driven storytelling 3 +56295 2822 character-driven storytelling 3 +56296 2822 character-driven 2 +56297 2823 A word of advice to the makers of The Singles Ward : Celebrity cameos do not automatically equal laughs . 0 +56298 2823 A word of advice to the makers of The Singles Ward 2 +56299 2823 A word of advice 2 +56300 2823 A word 2 +56301 2823 of advice 2 +56302 2823 to the makers of The Singles Ward 2 +56303 2823 the makers of The Singles Ward 2 +56304 2823 of The Singles Ward 2 +56305 2823 : Celebrity cameos do not automatically equal laughs . 1 +56306 2823 Celebrity cameos do not automatically equal laughs . 0 +56307 2823 Celebrity cameos do not automatically equal laughs 1 +56308 2823 Celebrity cameos 2 +56309 2823 Celebrity 2 +56310 2823 do not automatically equal laughs 1 +56311 2823 do not automatically 2 +56312 2823 equal laughs 3 +56313 2824 , with cheapo animation -LRB- like Saturday morning TV in the '60s -RRB- , a complex sword-and-sorcery plot and characters who all have big round eyes and Japanese names . 2 +56314 2824 with cheapo animation -LRB- like Saturday morning TV in the '60s -RRB- , a complex sword-and-sorcery plot and characters who all have big round eyes and Japanese names . 1 +56315 2824 with cheapo animation -LRB- like Saturday morning TV in the '60s -RRB- , a complex sword-and-sorcery plot and characters who all have big round eyes and Japanese names 1 +56316 2824 cheapo animation -LRB- like Saturday morning TV in the '60s -RRB- , a complex sword-and-sorcery plot and characters who all have big round eyes and Japanese names 1 +56317 2824 cheapo animation -LRB- like Saturday morning TV in the '60s -RRB- , a complex sword-and-sorcery plot and 2 +56318 2824 cheapo animation -LRB- like Saturday morning TV in the '60s -RRB- , a complex sword-and-sorcery plot 2 +56319 2824 cheapo animation -LRB- like Saturday morning TV in the '60s -RRB- , 1 +56320 2824 cheapo animation -LRB- like Saturday morning TV in the '60s -RRB- 1 +56321 2824 cheapo animation 1 +56322 2824 -LRB- like Saturday morning TV in the '60s -RRB- 3 +56323 2824 like Saturday morning TV in the '60s -RRB- 2 +56324 2824 like Saturday morning TV in the '60s 1 +56325 2824 Saturday morning TV in the '60s 2 +56326 2824 Saturday morning TV 2 +56327 2824 Saturday 2 +56328 2824 morning TV 2 +56329 2824 in the '60s 2 +56330 2824 the '60s 2 +56331 2824 a complex sword-and-sorcery plot 2 +56332 2824 complex sword-and-sorcery plot 2 +56333 2824 sword-and-sorcery plot 3 +56334 2824 sword-and-sorcery 1 +56335 2824 characters who all have big round eyes and Japanese names 2 +56336 2824 who all have big round eyes and Japanese names 2 +56337 2824 all have big round eyes and Japanese names 2 +56338 2824 have big round eyes and Japanese names 2 +56339 2824 big round eyes and Japanese names 2 +56340 2824 big round eyes and 3 +56341 2824 big round eyes 2 +56342 2824 round eyes 2 +56343 2824 Japanese names 2 +56344 2824 names 2 +56345 2825 This is a film living far too much in its own head . 1 +56346 2825 is a film living far too much in its own head . 1 +56347 2825 is a film living far too much in its own head 0 +56348 2825 a film living far too much in its own head 0 +56349 2825 living far too much in its own head 0 +56350 2825 living far too much 1 +56351 2825 in its own head 2 +56352 2825 its own head 2 +56353 2825 own head 2 +56354 2826 The bottom line with Nemesis is the same as it has been with all the films in the series : Fans will undoubtedly enjoy it , and the uncommitted need n't waste their time on it . 3 +56355 2826 The bottom line with Nemesis is the same as it has been with all the films in the series : Fans will undoubtedly enjoy it , and the uncommitted need n't waste their time on it 1 +56356 2826 The bottom line with Nemesis is the same as it has been with all the films in the series : 2 +56357 2826 The bottom line with Nemesis is the same as it has been with all the films in the series 2 +56358 2826 The bottom line with Nemesis 2 +56359 2826 The bottom line 2 +56360 2826 bottom line 2 +56361 2826 with Nemesis 2 +56362 2826 is the same as it has been with all the films in the series 2 +56363 2826 is the same 2 +56364 2826 as it has been with all the films in the series 2 +56365 2826 it has been with all the films in the series 2 +56366 2826 has been with all the films in the series 2 +56367 2826 been with all the films in the series 2 +56368 2826 been with all the films 2 +56369 2826 with all the films 2 +56370 2826 all the films 2 +56371 2826 Fans will undoubtedly enjoy it , and the uncommitted need n't waste their time on it 2 +56372 2826 Fans will undoubtedly enjoy it , and 3 +56373 2826 Fans will undoubtedly enjoy it , 4 +56374 2826 Fans will undoubtedly enjoy it 3 +56375 2826 will undoubtedly enjoy it 4 +56376 2826 will undoubtedly 2 +56377 2826 undoubtedly 2 +56378 2826 enjoy it 3 +56379 2826 the uncommitted need n't waste their time on it 2 +56380 2826 the uncommitted 2 +56381 2826 uncommitted 1 +56382 2826 need n't waste their time on it 1 +56383 2826 waste their time on it 1 +56384 2826 waste their time 1 +56385 2826 on it 3 +56386 2827 An obvious copy of one of the best films ever made , how could it not be ? 1 +56387 2827 An obvious copy of one of the best films 2 +56388 2827 An obvious copy 1 +56389 2827 obvious copy 1 +56390 2827 of one of the best films 4 +56391 2827 one of the best films 4 +56392 2827 of the best films 4 +56393 2827 ever made , how could it not be ? 2 +56394 2827 made , how could it not be ? 2 +56395 2827 made , 2 +56396 2827 how could it not be ? 2 +56397 2827 could it not be ? 2 +56398 2827 could it not be 2 +56399 2827 could it 2 +56400 2827 not be 2 +56401 2828 Mr. Goyer 's loose , unaccountable direction is technically sophisticated in the worst way . 0 +56402 2828 Mr. Goyer 's loose , unaccountable direction 1 +56403 2828 Mr. Goyer 's 2 +56404 2828 Goyer 's 2 +56405 2828 Goyer 2 +56406 2828 loose , unaccountable direction 0 +56407 2828 loose , unaccountable 1 +56408 2828 , unaccountable 2 +56409 2828 unaccountable 2 +56410 2828 is technically sophisticated in the worst way . 1 +56411 2828 is technically sophisticated in the worst way 0 +56412 2828 technically sophisticated in the worst way 1 +56413 2828 sophisticated in the worst way 1 +56414 2828 in the worst way 1 +56415 2828 the worst way 2 +56416 2828 worst way 1 +56417 2829 Mordantly funny and intimately knowing ... 3 +56418 2829 Mordantly funny and intimately knowing 3 +56419 2829 Mordantly funny and 3 +56420 2829 Mordantly funny 3 +56421 2829 Mordantly 2 +56422 2829 intimately knowing 2 +56423 2829 intimately 2 +56424 2830 ending . 2 +56425 2831 Fairly run-of-the-mill . 1 +56426 2831 run-of-the-mill . 1 +56427 2832 Dark and disturbing , yet compelling to watch . 2 +56428 2832 Dark and disturbing , yet compelling to watch 2 +56429 2832 disturbing , yet compelling to watch 3 +56430 2832 disturbing , yet compelling 3 +56431 2832 , yet compelling 3 +56432 2832 , yet 2 +56433 2833 Whether this is art imitating life or life imitating art , it 's an unhappy situation all around . 1 +56434 2833 Whether this is art imitating life or life imitating art 2 +56435 2833 this is art imitating life or life imitating art 2 +56436 2833 is art imitating life or life imitating art 2 +56437 2833 art imitating life or life imitating art 2 +56438 2833 imitating life or life imitating art 2 +56439 2833 imitating life or life 2 +56440 2833 imitating 2 +56441 2833 life or life 2 +56442 2833 life or 2 +56443 2833 imitating art 2 +56444 2833 , it 's an unhappy situation all around . 1 +56445 2833 it 's an unhappy situation all around . 1 +56446 2833 's an unhappy situation all around . 1 +56447 2833 's an unhappy situation all around 1 +56448 2833 's an unhappy situation 1 +56449 2833 an unhappy situation 2 +56450 2833 unhappy situation 1 +56451 2833 unhappy 1 +56452 2833 all around 2 +56453 2834 Like a veteran head cutter , Barbershop is tuned in to its community . 3 +56454 2834 Like a veteran head cutter 2 +56455 2834 a veteran head cutter 2 +56456 2834 veteran head cutter 2 +56457 2834 head cutter 1 +56458 2834 cutter 2 +56459 2834 , Barbershop is tuned in to its community . 3 +56460 2834 Barbershop is tuned in to its community . 3 +56461 2834 is tuned in to its community . 3 +56462 2834 is tuned in to its community 3 +56463 2834 tuned in to its community 2 +56464 2834 in to its community 2 +56465 2834 to its community 2 +56466 2834 its community 2 +56467 2835 The story is predictable , the jokes are typical Sandler fare , and the romance with Ryder is puzzling . 1 +56468 2835 The story is predictable , the jokes are typical Sandler fare , and the romance with Ryder is puzzling 1 +56469 2835 The story is predictable , the jokes are typical Sandler fare , and 1 +56470 2835 The story is predictable , the jokes are typical Sandler fare , 1 +56471 2835 The story is predictable 1 +56472 2835 , the jokes are typical Sandler fare , 2 +56473 2835 the jokes are typical Sandler fare , 2 +56474 2835 the jokes are typical Sandler fare 2 +56475 2835 are typical Sandler fare 1 +56476 2835 typical Sandler fare 2 +56477 2835 Sandler fare 2 +56478 2835 the romance with Ryder is puzzling 2 +56479 2835 the romance with Ryder 2 +56480 2835 the romance 2 +56481 2835 with Ryder 2 +56482 2835 Ryder 2 +56483 2835 is puzzling 2 +56484 2836 Tends to plod . 1 +56485 2836 Tends to plod 1 +56486 2836 to plod 2 +56487 2836 plod 1 +56488 2837 Formulaic to the 51st power , more like . 1 +56489 2837 Formulaic to the 51st power , more 2 +56490 2837 to the 51st power , more 2 +56491 2837 the 51st power , more 2 +56492 2837 the 51st power , 2 +56493 2837 the 51st power 2 +56494 2837 51st power 2 +56495 2837 51st 2 +56496 2837 like . 3 +56497 2838 Here Polanski looks back on those places he saw at childhood , and captures them by freeing them from artefact , and by showing them heartbreakingly drably . 2 +56498 2838 Polanski looks back on those places he saw at childhood , and captures them by freeing them from artefact , and by showing them heartbreakingly drably . 2 +56499 2838 looks back on those places he saw at childhood , and captures them by freeing them from artefact , and by showing them heartbreakingly drably . 3 +56500 2838 looks back on those places he saw at childhood , and captures them by freeing them from artefact , and by showing them heartbreakingly drably 1 +56501 2838 looks back 2 +56502 2838 on those places he saw at childhood , and captures them by freeing them from artefact , and by showing them heartbreakingly drably 2 +56503 2838 on those places he saw at childhood , and captures them by freeing them from artefact 2 +56504 2838 those places he saw at childhood , and captures them by freeing them from artefact 2 +56505 2838 those places 2 +56506 2838 he saw at childhood , and captures them by freeing them from artefact 2 +56507 2838 saw at childhood , and captures them by freeing them from artefact 3 +56508 2838 saw at childhood , and 2 +56509 2838 saw at childhood , 2 +56510 2838 saw at childhood 2 +56511 2838 at childhood 3 +56512 2838 captures them by freeing them from artefact 3 +56513 2838 captures them 2 +56514 2838 by freeing them from artefact 2 +56515 2838 freeing them from artefact 2 +56516 2838 freeing them 2 +56517 2838 freeing 3 +56518 2838 from artefact 2 +56519 2838 artefact 2 +56520 2838 , and by showing them heartbreakingly drably 2 +56521 2838 by showing them heartbreakingly drably 2 +56522 2838 showing them heartbreakingly drably 1 +56523 2838 them heartbreakingly drably 2 +56524 2838 heartbreakingly drably 2 +56525 2838 heartbreakingly 2 +56526 2838 drably 2 +56527 2839 The three leads produce adequate performances , but what 's missing from this material is any depth of feeling . 0 +56528 2839 The three leads produce adequate performances , but what 's missing from this material is any depth of feeling 1 +56529 2839 The three leads produce adequate performances , but 3 +56530 2839 The three leads produce adequate performances , 3 +56531 2839 The three leads produce adequate performances 2 +56532 2839 The three leads 2 +56533 2839 three leads 2 +56534 2839 produce adequate performances 3 +56535 2839 adequate performances 2 +56536 2839 what 's missing from this material is any depth of feeling 1 +56537 2839 what 's missing from this material 1 +56538 2839 's missing from this material 2 +56539 2839 missing from this material 1 +56540 2839 from this material 2 +56541 2839 this material 2 +56542 2839 is any depth of feeling 2 +56543 2839 any depth of feeling 2 +56544 2839 any depth 2 +56545 2839 of feeling 2 +56546 2840 For all its plot twists , and some of them verge on the bizarre as the film winds down , Blood Work is a strong , character-oriented piece . 2 +56547 2840 For all its plot twists , and some of them verge on the bizarre as the film winds down 2 +56548 2840 all its plot twists , and some of them verge on the bizarre as the film winds down 2 +56549 2840 all its plot twists , and 2 +56550 2840 all its plot twists , 2 +56551 2840 all its plot twists 2 +56552 2840 its plot twists 3 +56553 2840 some of them verge on the bizarre as the film winds down 2 +56554 2840 of them verge on the bizarre as the film winds down 1 +56555 2840 them verge on the bizarre as the film winds down 2 +56556 2840 them verge 2 +56557 2840 verge 2 +56558 2840 on the bizarre as the film winds down 2 +56559 2840 the bizarre as the film winds down 2 +56560 2840 the bizarre as the film winds 2 +56561 2840 bizarre as the film winds 2 +56562 2840 bizarre as the film 2 +56563 2840 as the film 2 +56564 2840 , Blood Work is a strong , character-oriented piece . 4 +56565 2840 Blood Work is a strong , character-oriented piece . 4 +56566 2840 Blood Work 2 +56567 2840 is a strong , character-oriented piece . 3 +56568 2840 is a strong , character-oriented piece 4 +56569 2840 a strong , character-oriented piece 4 +56570 2840 strong , character-oriented piece 3 +56571 2840 , character-oriented piece 3 +56572 2840 character-oriented piece 3 +56573 2840 character-oriented 3 +56574 2841 The lightest , most breezy movie Steven Spielberg has made in more than a decade . 3 +56575 2841 The lightest , most breezy movie Steven Spielberg 3 +56576 2841 The lightest , 2 +56577 2841 The lightest 2 +56578 2841 lightest 2 +56579 2841 most breezy movie Steven Spielberg 3 +56580 2841 most breezy movie 3 +56581 2841 breezy movie 3 +56582 2841 Steven Spielberg 2 +56583 2841 has made in more than a decade . 2 +56584 2841 has made in more than a decade 2 +56585 2841 made in more than a decade 2 +56586 2841 in more than a decade 2 +56587 2841 more than a decade 2 +56588 2842 In The New Guy , even the bull gets recycled . 1 +56589 2842 In The New Guy 2 +56590 2842 , even the bull gets recycled . 2 +56591 2842 even the bull gets recycled . 3 +56592 2842 even the bull 2 +56593 2842 the bull 2 +56594 2842 bull 1 +56595 2842 gets recycled . 2 +56596 2842 gets recycled 2 +56597 2843 Originality ai n't on the menu , but there 's never a dull moment in the giant spider invasion comic chiller . 3 +56598 2843 Originality ai n't on the menu , but there 's never a dull moment in the giant spider invasion comic chiller 3 +56599 2843 Originality ai n't on the menu , but 2 +56600 2843 Originality ai n't on the menu , 1 +56601 2843 Originality ai n't on the menu 1 +56602 2843 ai n't on the menu 2 +56603 2843 on the menu 2 +56604 2843 the menu 2 +56605 2843 menu 2 +56606 2843 there 's never a dull moment in the giant spider invasion comic chiller 3 +56607 2843 's never a dull moment in the giant spider invasion comic chiller 4 +56608 2843 a dull moment in the giant spider invasion comic chiller 2 +56609 2843 a dull moment 1 +56610 2843 dull moment 1 +56611 2843 in the giant spider invasion comic chiller 2 +56612 2843 the giant spider invasion comic chiller 2 +56613 2843 giant spider invasion comic chiller 3 +56614 2843 spider invasion comic chiller 3 +56615 2843 invasion comic chiller 2 +56616 2843 comic chiller 3 +56617 2844 It 's a ripper of a yarn and I for one enjoyed the thrill of the chill . 3 +56618 2844 It 's a ripper of a yarn and I for one enjoyed the thrill of the chill 4 +56619 2844 It 's a ripper of a yarn and 3 +56620 2844 It 's a ripper of a yarn 3 +56621 2844 's a ripper of a yarn 2 +56622 2844 a ripper of a yarn 2 +56623 2844 a ripper 2 +56624 2844 ripper 2 +56625 2844 of a yarn 2 +56626 2844 a yarn 2 +56627 2844 I for one enjoyed the thrill of the chill 3 +56628 2844 I for one 2 +56629 2844 for one 2 +56630 2844 enjoyed the thrill of the chill 4 +56631 2844 the thrill of the chill 3 +56632 2844 the thrill 3 +56633 2844 of the chill 2 +56634 2844 the chill 2 +56635 2845 The script is smart , not cloying . 3 +56636 2845 is smart , not cloying . 3 +56637 2845 is smart , not cloying 2 +56638 2845 smart , not cloying 4 +56639 2845 , not cloying 2 +56640 2845 not cloying 2 +56641 2846 Spectators will indeed sit open-mouthed before the screen , not screaming but yawning . 1 +56642 2846 Spectators 2 +56643 2846 will indeed sit open-mouthed before the screen , not screaming but yawning . 0 +56644 2846 will indeed sit open-mouthed before the screen , not screaming but yawning 1 +56645 2846 will indeed 2 +56646 2846 sit open-mouthed before the screen , not screaming but yawning 1 +56647 2846 open-mouthed before the screen , not screaming but yawning 0 +56648 2846 open-mouthed before the screen , not 2 +56649 2846 open-mouthed before the screen , 2 +56650 2846 open-mouthed before the screen 2 +56651 2846 open-mouthed 2 +56652 2846 before the screen 2 +56653 2846 screaming but yawning 1 +56654 2846 screaming but 2 +56655 2847 ... the picture 's cleverness is ironically muted by the very people who are intended to make it shine . 2 +56656 2847 the picture 's cleverness is ironically muted by the very people who are intended to make it shine . 1 +56657 2847 the picture 's cleverness is ironically muted by the very people who are intended to make it shine 2 +56658 2847 the picture 's cleverness 4 +56659 2847 is ironically muted by the very people who are intended to make it shine 0 +56660 2847 is ironically 2 +56661 2847 muted by the very people who are intended to make it shine 1 +56662 2847 muted 1 +56663 2847 by the very people who are intended to make it shine 2 +56664 2847 the very people who are intended to make it shine 1 +56665 2847 the very people 2 +56666 2847 very people 3 +56667 2847 who are intended to make it shine 2 +56668 2847 are intended to make it shine 2 +56669 2847 intended to make it shine 3 +56670 2847 to make it shine 3 +56671 2847 make it shine 3 +56672 2847 it shine 3 +56673 2848 You 'd be hard put to find a movie character more unattractive or odorous -LRB- than Leon -RRB- . 1 +56674 2848 'd be hard put to find a movie character more unattractive or odorous -LRB- than Leon -RRB- . 2 +56675 2848 'd be hard put to find a movie character more unattractive or odorous -LRB- than Leon -RRB- 1 +56676 2848 be hard put to find a movie character more unattractive or odorous -LRB- than Leon -RRB- 0 +56677 2848 hard put to find a movie character more unattractive or odorous -LRB- than Leon -RRB- 1 +56678 2848 put to find a movie character more unattractive or odorous -LRB- than Leon -RRB- 1 +56679 2848 to find a movie character more unattractive or odorous -LRB- than Leon -RRB- 1 +56680 2848 find a movie character more unattractive or odorous -LRB- than Leon -RRB- 0 +56681 2848 a movie character more unattractive or odorous -LRB- than Leon -RRB- 1 +56682 2848 a movie character more unattractive or odorous 2 +56683 2848 a movie character 2 +56684 2848 movie character 2 +56685 2848 more unattractive or odorous 1 +56686 2848 unattractive or odorous 0 +56687 2848 unattractive or 2 +56688 2848 unattractive 2 +56689 2848 odorous 2 +56690 2848 -LRB- than Leon -RRB- 3 +56691 2848 than Leon -RRB- 2 +56692 2848 than Leon 2 +56693 2849 Dismally dull sci-fi comedy . 0 +56694 2849 Dismally dull sci-fi comedy 1 +56695 2849 Dismally dull 2 +56696 2849 Dismally 1 +56697 2849 sci-fi comedy 2 +56698 2850 Never capitalizes on this concept and opts for the breezy and amateurish feel of an after school special on the subject of tolerance . 0 +56699 2850 capitalizes on this concept and opts for the breezy and amateurish feel of an after school special on the subject of tolerance . 1 +56700 2850 capitalizes on this concept and opts for the breezy and amateurish feel of an after school special on the subject of tolerance 1 +56701 2850 capitalizes on this concept and opts 2 +56702 2850 capitalizes 2 +56703 2850 on this concept and opts 2 +56704 2850 this concept and opts 2 +56705 2850 this concept and 2 +56706 2850 this concept 2 +56707 2850 for the breezy and amateurish feel of an after school special on the subject of tolerance 1 +56708 2850 the breezy and amateurish feel of an after school special on the subject of tolerance 2 +56709 2850 the breezy and amateurish feel 1 +56710 2850 breezy and amateurish feel 2 +56711 2850 breezy and amateurish 2 +56712 2850 breezy and 2 +56713 2850 of an after school special on the subject of tolerance 2 +56714 2850 an after school special on the subject of tolerance 2 +56715 2850 an after school special 3 +56716 2850 after school special 2 +56717 2850 school special 2 +56718 2850 on the subject of tolerance 2 +56719 2850 the subject of tolerance 2 +56720 2850 of tolerance 2 +56721 2851 PC stability notwithstanding , the film suffers from a simplistic narrative and a pat , fairy-tale conclusion . 1 +56722 2851 PC stability notwithstanding 1 +56723 2851 PC stability 2 +56724 2851 PC 2 +56725 2851 stability 2 +56726 2851 , the film suffers from a simplistic narrative and a pat , fairy-tale conclusion . 1 +56727 2851 the film suffers from a simplistic narrative and a pat , fairy-tale conclusion . 1 +56728 2851 suffers from a simplistic narrative and a pat , fairy-tale conclusion . 2 +56729 2851 suffers from a simplistic narrative and a pat , fairy-tale conclusion 0 +56730 2851 from a simplistic narrative and a pat , fairy-tale conclusion 2 +56731 2851 a simplistic narrative and a pat , fairy-tale conclusion 2 +56732 2851 a simplistic narrative and 3 +56733 2851 a simplistic narrative 2 +56734 2851 simplistic narrative 2 +56735 2851 a pat , fairy-tale conclusion 2 +56736 2851 pat , fairy-tale conclusion 3 +56737 2851 , fairy-tale conclusion 2 +56738 2851 fairy-tale conclusion 3 +56739 2852 A story about intelligent high school students that deals with first love sweetly but also seriously . 3 +56740 2852 A story about intelligent high school 3 +56741 2852 about intelligent high school 3 +56742 2852 intelligent high school 3 +56743 2852 high school 2 +56744 2852 students that deals with first love sweetly but also seriously . 3 +56745 2852 students that deals with first love sweetly but also seriously 3 +56746 2852 students that deals with first love sweetly 3 +56747 2852 that deals with first love sweetly 3 +56748 2852 deals with first love sweetly 3 +56749 2852 with first love sweetly 4 +56750 2852 first love sweetly 3 +56751 2852 love sweetly 3 +56752 2852 but also seriously 2 +56753 2852 also seriously 2 +56754 2853 Assured , vital and well wrought , the film is , arguably , the most accomplished work to date from Hong Kong 's versatile Stanley Kwan . 4 +56755 2853 Assured , vital and well wrought 4 +56756 2853 Assured , vital and 3 +56757 2853 Assured , vital 3 +56758 2853 well wrought 3 +56759 2853 wrought 2 +56760 2853 , the film is , arguably , the most accomplished work to date from Hong Kong 's versatile Stanley Kwan . 4 +56761 2853 the film is , arguably , the most accomplished work to date from Hong Kong 's versatile Stanley Kwan . 4 +56762 2853 is , arguably , the most accomplished work to date from Hong Kong 's versatile Stanley Kwan . 3 +56763 2853 is , arguably , the most accomplished work to date from Hong Kong 's versatile Stanley Kwan 4 +56764 2853 is , arguably , 2 +56765 2853 is , arguably 2 +56766 2853 arguably 2 +56767 2853 the most accomplished work to date from Hong Kong 's versatile Stanley Kwan 4 +56768 2853 the most accomplished work 3 +56769 2853 most accomplished work 4 +56770 2853 accomplished work 3 +56771 2853 to date from Hong Kong 's versatile Stanley Kwan 2 +56772 2853 date from Hong Kong 's versatile Stanley Kwan 2 +56773 2853 from Hong Kong 's versatile Stanley Kwan 2 +56774 2853 Hong Kong 's versatile Stanley Kwan 2 +56775 2853 Hong Kong 's 2 +56776 2853 Kong 's 2 +56777 2853 versatile Stanley Kwan 3 +56778 2853 versatile 2 +56779 2854 The most opaque , self-indulgent and just plain goofy an excuse for a movie as you can imagine . 1 +56780 2854 The most opaque , self-indulgent and just plain goofy an excuse for a movie as you can imagine 0 +56781 2854 The most opaque , self-indulgent and just plain goofy 1 +56782 2854 most opaque , self-indulgent and just plain goofy 2 +56783 2854 most opaque , self-indulgent and just plain 1 +56784 2854 most opaque , self-indulgent and 1 +56785 2854 most opaque , self-indulgent 1 +56786 2854 most opaque , 3 +56787 2854 most opaque 2 +56788 2854 opaque 2 +56789 2854 an excuse for a movie as you can imagine 2 +56790 2854 an excuse 1 +56791 2854 for a movie as you can imagine 2 +56792 2854 a movie as you can imagine 2 +56793 2854 as you can imagine 2 +56794 2855 Who needs mind-bending drugs when they can see this , the final part of the ` qatsi ' trilogy , directed by Godfrey Reggio , with music by Philip Glass ? 3 +56795 2855 needs mind-bending drugs when they can see this , the final part of the ` qatsi ' trilogy , directed by Godfrey Reggio , with music by Philip Glass ? 1 +56796 2855 needs mind-bending drugs when they can see this , the final part of the ` qatsi ' trilogy , directed by Godfrey Reggio , with music by Philip Glass 2 +56797 2855 mind-bending drugs when they can see this , the final part of the ` qatsi ' trilogy , directed by Godfrey Reggio , with music by Philip Glass 2 +56798 2855 mind-bending drugs 2 +56799 2855 mind-bending 3 +56800 2855 when they can see this , the final part of the ` qatsi ' trilogy , directed by Godfrey Reggio , with music by Philip Glass 2 +56801 2855 they can see this , the final part of the ` qatsi ' trilogy , directed by Godfrey Reggio , with music by Philip Glass 2 +56802 2855 can see this , the final part of the ` qatsi ' trilogy , directed by Godfrey Reggio , with music by Philip Glass 2 +56803 2855 see this , the final part of the ` qatsi ' trilogy , directed by Godfrey Reggio , with music by Philip Glass 2 +56804 2855 see this , the final part of the ` qatsi ' trilogy , directed by Godfrey Reggio , with music 3 +56805 2855 see this , the final part of the ` qatsi ' trilogy , directed by Godfrey Reggio , 2 +56806 2855 this , the final part of the ` qatsi ' trilogy , directed by Godfrey Reggio , 2 +56807 2855 this , 2 +56808 2855 the final part of the ` qatsi ' trilogy , directed by Godfrey Reggio , 2 +56809 2855 the final part 2 +56810 2855 final part 2 +56811 2855 of the ` qatsi ' trilogy , directed by Godfrey Reggio , 2 +56812 2855 the ` qatsi ' trilogy , directed by Godfrey Reggio , 2 +56813 2855 the ` qatsi ' trilogy , directed by Godfrey Reggio 2 +56814 2855 the ` qatsi ' trilogy , 2 +56815 2855 the ` qatsi ' trilogy 2 +56816 2855 ` qatsi ' trilogy 2 +56817 2855 qatsi ' trilogy 2 +56818 2855 qatsi 2 +56819 2855 ' trilogy 2 +56820 2855 trilogy 2 +56821 2855 directed by Godfrey Reggio 2 +56822 2855 by Godfrey Reggio 2 +56823 2855 Godfrey Reggio 2 +56824 2855 with music 2 +56825 2855 by Philip Glass 2 +56826 2855 Philip Glass 2 +56827 2856 True Hollywood Story . 2 +56828 2856 Hollywood Story . 2 +56829 2856 Story . 2 +56830 2857 The movie is amateurish , but it 's a minor treat . 3 +56831 2857 The movie is amateurish , but it 's a minor treat 2 +56832 2857 The movie is amateurish , but 1 +56833 2857 The movie is amateurish , 1 +56834 2857 The movie is amateurish 1 +56835 2857 is amateurish 1 +56836 2857 it 's a minor treat 2 +56837 2857 's a minor treat 3 +56838 2857 a minor treat 3 +56839 2857 minor treat 2 +56840 2858 ` You 'll laugh for not quite and hour and a half , but come out feeling strangely unsatisfied . 2 +56841 2858 You 'll laugh for not quite and hour and a half , but come out feeling strangely unsatisfied . 1 +56842 2858 'll laugh for not quite and hour and a half , but come out feeling strangely unsatisfied . 2 +56843 2858 'll laugh for not quite and hour and a half , but come out feeling strangely unsatisfied 1 +56844 2858 'll laugh for not quite and hour and a half , but 3 +56845 2858 'll laugh for not quite and hour and a half , 3 +56846 2858 'll laugh for not quite and hour and a half 2 +56847 2858 laugh for not quite and hour and a half 4 +56848 2858 for not quite and hour and a half 2 +56849 2858 not quite and hour and a half 2 +56850 2858 not quite and 2 +56851 2858 hour and a half 2 +56852 2858 hour and 2 +56853 2858 come out feeling strangely unsatisfied 1 +56854 2858 feeling strangely unsatisfied 1 +56855 2858 strangely unsatisfied 1 +56856 2858 unsatisfied 1 +56857 2859 I can easily imagine Benigni 's Pinocchio becoming a Christmas perennial . 4 +56858 2859 can easily imagine Benigni 's Pinocchio becoming a Christmas perennial . 4 +56859 2859 can easily imagine Benigni 's Pinocchio becoming a Christmas perennial 4 +56860 2859 can easily 2 +56861 2859 imagine Benigni 's Pinocchio becoming a Christmas perennial 3 +56862 2859 Benigni 's Pinocchio becoming a Christmas perennial 2 +56863 2859 becoming a Christmas perennial 3 +56864 2859 a Christmas perennial 3 +56865 2859 Christmas perennial 3 +56866 2859 perennial 2 +56867 2860 That 's why Sex and Lucia is so alluring . 3 +56868 2860 's why Sex and Lucia is so alluring . 3 +56869 2860 's why Sex and Lucia is so alluring 3 +56870 2860 why Sex and Lucia is so alluring 3 +56871 2860 Sex and Lucia is so alluring 3 +56872 2860 Sex and Lucia 2 +56873 2860 Sex and 2 +56874 2860 is so alluring 2 +56875 2860 so alluring 2 +56876 2861 Any movie that makes hard work seem heroic deserves a look . 3 +56877 2861 Any movie that makes hard work 2 +56878 2861 that makes hard work 2 +56879 2861 makes hard work 2 +56880 2861 hard work 2 +56881 2861 seem heroic deserves a look . 3 +56882 2861 seem heroic deserves a look 3 +56883 2861 heroic deserves a look 3 +56884 2861 deserves a look 3 +56885 2862 A lot of its gags and observations reflect a woman 's point-of-view . 2 +56886 2862 A lot of its gags and observations 2 +56887 2862 of its gags and observations 1 +56888 2862 its gags and observations 1 +56889 2862 gags and observations 2 +56890 2862 gags and 0 +56891 2862 reflect a woman 's point-of-view . 3 +56892 2862 reflect a woman 's point-of-view 2 +56893 2862 reflect 3 +56894 2862 a woman 's point-of-view 3 +56895 2862 a woman 's 2 +56896 2863 In my own very humble opinion , In Praise of Love lacks even the most fragmented charms I have found in almost all of his previous works . 0 +56897 2863 In my own very humble opinion 2 +56898 2863 my own very humble opinion 2 +56899 2863 own very humble opinion 2 +56900 2863 very humble opinion 2 +56901 2863 very humble 3 +56902 2863 humble 3 +56903 2863 , In Praise of Love lacks even the most fragmented charms I have found in almost all of his previous works . 0 +56904 2863 In Praise of Love lacks even the most fragmented charms I have found in almost all of his previous works . 1 +56905 2863 lacks even the most fragmented charms I have found in almost all of his previous works . 1 +56906 2863 lacks even the most fragmented charms I have found in almost all of his previous works 1 +56907 2863 even the most fragmented charms I have found in almost all of his previous works 2 +56908 2863 even the most fragmented charms 2 +56909 2863 the most fragmented charms 3 +56910 2863 most fragmented charms 2 +56911 2863 most fragmented 2 +56912 2863 fragmented 1 +56913 2863 I have found in almost all of his previous works 2 +56914 2863 have found in almost all of his previous works 2 +56915 2863 found in almost all of his previous works 3 +56916 2863 in almost all of his previous works 2 +56917 2863 almost all of his previous works 2 +56918 2863 of his previous works 2 +56919 2863 his previous works 2 +56920 2863 previous works 2 +56921 2864 There 's more repetition than creativity throughout the movie . 1 +56922 2864 's more repetition than creativity throughout the movie . 2 +56923 2864 's more repetition than creativity throughout the movie 1 +56924 2864 more repetition than creativity throughout the movie 1 +56925 2864 more repetition than creativity 1 +56926 2864 repetition than creativity 2 +56927 2864 repetition 2 +56928 2864 than creativity 2 +56929 2864 throughout the movie 2 +56930 2865 -LRB- A -RRB- boldly stroked , luridly coloured , uni-dimensional nonsense machine that strokes the eyeballs while it evaporates like so much crypt mist in the brain . 1 +56931 2865 boldly stroked , luridly coloured , uni-dimensional nonsense machine that strokes the eyeballs while it evaporates like so much crypt mist in the brain . 0 +56932 2865 stroked , luridly coloured , uni-dimensional nonsense machine that strokes the eyeballs while it evaporates like so much crypt mist in the brain . 0 +56933 2865 stroked , luridly coloured , uni-dimensional nonsense machine that strokes the eyeballs while it evaporates like so much crypt mist in the brain 0 +56934 2865 stroked 2 +56935 2865 , luridly coloured , uni-dimensional nonsense machine that strokes the eyeballs while it evaporates like so much crypt mist in the brain 1 +56936 2865 , luridly coloured , uni-dimensional nonsense machine 0 +56937 2865 , luridly coloured , 1 +56938 2865 luridly coloured , 2 +56939 2865 luridly 2 +56940 2865 coloured , 2 +56941 2865 coloured 2 +56942 2865 uni-dimensional nonsense machine 0 +56943 2865 uni-dimensional 1 +56944 2865 nonsense machine 1 +56945 2865 that strokes the eyeballs while it evaporates like so much crypt mist in the brain 1 +56946 2865 strokes the eyeballs while it evaporates like so much crypt mist in the brain 1 +56947 2865 strokes the eyeballs 3 +56948 2865 strokes 2 +56949 2865 the eyeballs 2 +56950 2865 eyeballs 3 +56951 2865 while it evaporates like so much crypt mist in the brain 1 +56952 2865 it evaporates like so much crypt mist in the brain 1 +56953 2865 evaporates like so much crypt mist in the brain 1 +56954 2865 evaporates 2 +56955 2865 like so much crypt mist in the brain 2 +56956 2865 so much crypt mist in the brain 1 +56957 2865 so much crypt mist 2 +56958 2865 so much crypt 2 +56959 2865 much crypt 2 +56960 2865 crypt 3 +56961 2865 mist 2 +56962 2866 ... one big laugh , three or four mild giggles , and a whole lot of not much else . 2 +56963 2866 one big laugh , three or four mild giggles , and a whole lot of not much else . 2 +56964 2866 one big laugh , three or four mild giggles , and a whole lot of not much else 2 +56965 2866 one big laugh , three or four mild giggles , and a whole lot 2 +56966 2866 one big laugh , three or four mild giggles , and 3 +56967 2866 one big laugh , three or four mild giggles , 2 +56968 2866 one big laugh , three or four mild giggles 2 +56969 2866 one big laugh , three or 2 +56970 2866 one big laugh , three 2 +56971 2866 one big laugh , 3 +56972 2866 one big laugh 4 +56973 2866 big laugh 3 +56974 2866 four mild giggles 2 +56975 2866 mild giggles 2 +56976 2866 of not much else 2 +56977 2866 not much else 1 +56978 2866 not much 1 +56979 2867 Affable if not timeless , Like Mike raises some worthwhile themes while delivering a wholesome fantasy for kids . 3 +56980 2867 Affable if not timeless 3 +56981 2867 Affable if not 2 +56982 2867 if not 2 +56983 2867 , Like Mike raises some worthwhile themes while delivering a wholesome fantasy for kids . 4 +56984 2867 Like Mike raises some worthwhile themes while delivering a wholesome fantasy for kids . 3 +56985 2867 Like Mike 2 +56986 2867 Mike 2 +56987 2867 raises some worthwhile themes while delivering a wholesome fantasy for kids . 3 +56988 2867 raises some worthwhile themes while delivering a wholesome fantasy for kids 4 +56989 2867 raises some worthwhile themes 3 +56990 2867 some worthwhile themes 3 +56991 2867 worthwhile themes 3 +56992 2867 while delivering a wholesome fantasy for kids 2 +56993 2867 delivering a wholesome fantasy for kids 3 +56994 2867 delivering 2 +56995 2867 a wholesome fantasy for kids 4 +56996 2867 a wholesome fantasy 3 +56997 2867 wholesome fantasy 3 +56998 2867 for kids 2 +56999 2868 Perhaps the film should be seen as a conversation starter . 2 +57000 2868 the film should be seen as a conversation starter . 3 +57001 2868 should be seen as a conversation starter . 2 +57002 2868 should be seen as a conversation starter 2 +57003 2868 be seen as a conversation starter 2 +57004 2868 seen as a conversation starter 2 +57005 2868 as a conversation starter 3 +57006 2868 a conversation starter 3 +57007 2868 conversation starter 3 +57008 2868 conversation 2 +57009 2868 starter 2 +57010 2869 It does give you a peek . 2 +57011 2869 does give you a peek . 2 +57012 2869 does give you a peek 2 +57013 2869 give you a peek 2 +57014 2870 Feels shrill , simple and soapy . 1 +57015 2870 shrill , simple and soapy . 3 +57016 2870 shrill , simple and soapy 2 +57017 2870 , simple and soapy 3 +57018 2870 simple and soapy 3 +57019 2870 soapy 2 +57020 2871 A wild comedy that could only spring from the demented mind of the writer of Being John Malkovich . 3 +57021 2871 A wild comedy that could only spring from the demented mind of the writer of Being John Malkovich 3 +57022 2871 A wild comedy that could only spring from the demented mind of the writer 3 +57023 2871 A wild comedy that could only spring from the demented mind 3 +57024 2871 A wild comedy 4 +57025 2871 wild comedy 3 +57026 2871 that could only spring from the demented mind 2 +57027 2871 could only spring from the demented mind 2 +57028 2871 spring from the demented mind 2 +57029 2871 from the demented mind 1 +57030 2871 the demented mind 1 +57031 2871 demented mind 2 +57032 2871 of the writer 2 +57033 2871 the writer 2 +57034 2871 of Being John Malkovich 2 +57035 2871 Being John Malkovich 2 +57036 2871 John Malkovich 2 +57037 2871 Malkovich 2 +57038 2872 The film is old-fashioned , occasionally charming and as subtle as boldface . 3 +57039 2872 is old-fashioned , occasionally charming and as subtle as boldface . 3 +57040 2872 is old-fashioned , occasionally charming and as subtle as boldface 2 +57041 2872 old-fashioned , occasionally charming and as subtle as boldface 2 +57042 2872 old-fashioned , occasionally charming and as subtle 3 +57043 2872 old-fashioned , occasionally charming and 3 +57044 2872 old-fashioned , occasionally charming 3 +57045 2872 old-fashioned , 2 +57046 2872 occasionally charming 2 +57047 2872 as subtle 2 +57048 2872 as boldface 2 +57049 2872 boldface 2 +57050 2873 Pure cinematic intoxication , a wildly inventive mixture of comedy and melodrama , tastelessness and swooning elegance . 3 +57051 2873 Pure cinematic intoxication , a wildly inventive mixture of comedy and melodrama , tastelessness and swooning elegance 4 +57052 2873 cinematic intoxication , a wildly inventive mixture of comedy and melodrama , tastelessness and swooning elegance 4 +57053 2873 cinematic intoxication , a wildly inventive mixture of comedy and melodrama , tastelessness and 3 +57054 2873 cinematic intoxication , a wildly inventive mixture of comedy and melodrama , tastelessness 3 +57055 2873 cinematic intoxication , a wildly inventive mixture of comedy and melodrama , 4 +57056 2873 cinematic intoxication , a wildly inventive mixture of comedy and melodrama 4 +57057 2873 cinematic intoxication , 2 +57058 2873 cinematic intoxication 3 +57059 2873 intoxication 2 +57060 2873 a wildly inventive mixture of comedy and melodrama 3 +57061 2873 a wildly inventive mixture 4 +57062 2873 wildly inventive mixture 4 +57063 2873 wildly inventive 3 +57064 2873 of comedy and melodrama 2 +57065 2873 comedy and melodrama 3 +57066 2873 swooning elegance 3 +57067 2873 swooning 2 +57068 2873 elegance 3 +57069 2874 A minor-league soccer remake of The Longest Yard . 1 +57070 2874 A minor-league soccer remake of The Longest Yard 2 +57071 2874 A minor-league soccer remake 1 +57072 2874 minor-league soccer remake 1 +57073 2874 minor-league 1 +57074 2874 soccer remake 2 +57075 2875 Everything was as superficial as the forced New Jersey lowbrow accent Uma had . 0 +57076 2875 was as superficial as the forced New Jersey lowbrow accent Uma had . 2 +57077 2875 was as superficial as the forced New Jersey lowbrow accent Uma had 1 +57078 2875 was as superficial 1 +57079 2875 as superficial 2 +57080 2875 as the forced New Jersey lowbrow accent Uma had 2 +57081 2875 the forced New Jersey lowbrow accent Uma had 1 +57082 2875 the forced New Jersey lowbrow accent Uma 1 +57083 2875 forced New Jersey lowbrow accent Uma 2 +57084 2875 New Jersey lowbrow accent Uma 2 +57085 2875 Jersey lowbrow accent Uma 1 +57086 2875 Jersey 2 +57087 2875 lowbrow accent Uma 2 +57088 2875 accent Uma 2 +57089 2875 Uma 2 +57090 2876 Godard uses his characters -- if that 's not too glorified a term -- as art things , mouthpieces , visual motifs , blanks . 1 +57091 2876 Godard uses his characters -- if that 's not too glorified a term -- as art things 1 +57092 2876 uses his characters -- if that 's not too glorified a term -- as art things 2 +57093 2876 his characters -- if that 's not too glorified a term -- as art things 2 +57094 2876 his characters -- if that 's not too glorified a term -- 1 +57095 2876 -- if that 's not too glorified a term -- 2 +57096 2876 if that 's not too glorified a term -- 2 +57097 2876 if that 's not too glorified a term 3 +57098 2876 that 's not too glorified a term 2 +57099 2876 's not too glorified a term 2 +57100 2876 's not too 2 +57101 2876 glorified a term 2 +57102 2876 glorified 3 +57103 2876 a term 2 +57104 2876 term 2 +57105 2876 as art things 2 +57106 2876 art things 2 +57107 2876 , mouthpieces , visual motifs , blanks . 1 +57108 2876 mouthpieces , visual motifs , blanks . 2 +57109 2876 mouthpieces , visual motifs , 2 +57110 2876 mouthpieces , visual motifs 2 +57111 2876 mouthpieces , 2 +57112 2876 mouthpieces 2 +57113 2876 visual motifs 2 +57114 2876 motifs 2 +57115 2876 blanks . 2 +57116 2877 Take Care is nicely performed by a quintet of actresses , but nonetheless it drags during its 112-minute length . 1 +57117 2877 Take Care is nicely performed by a quintet of actresses , but nonetheless it drags during its 112-minute length 2 +57118 2877 Take Care is nicely performed by a quintet of actresses , but 2 +57119 2877 Take Care is nicely performed by a quintet of actresses , 3 +57120 2877 Take Care is nicely performed by a quintet of actresses 4 +57121 2877 Take Care 2 +57122 2877 is nicely performed by a quintet of actresses 4 +57123 2877 is nicely 3 +57124 2877 performed by a quintet of actresses 2 +57125 2877 by a quintet of actresses 2 +57126 2877 a quintet of actresses 2 +57127 2877 a quintet 2 +57128 2877 quintet 2 +57129 2877 of actresses 2 +57130 2877 nonetheless it drags during its 112-minute length 1 +57131 2877 nonetheless 2 +57132 2877 it drags during its 112-minute length 0 +57133 2877 drags during its 112-minute length 0 +57134 2877 during its 112-minute length 2 +57135 2877 its 112-minute length 1 +57136 2877 112-minute length 2 +57137 2877 112-minute 3 +57138 2878 The bottom line , at least in my opinion , is Imposter makes a better short story than it does a film . 1 +57139 2878 The bottom line , at least in my opinion , 2 +57140 2878 The bottom line , at least in my opinion 2 +57141 2878 The bottom line , 2 +57142 2878 at least in my opinion 2 +57143 2878 in my opinion 2 +57144 2878 is Imposter makes a better short story than it does a film . 1 +57145 2878 is Imposter makes a better short story than it does a film 1 +57146 2878 Imposter makes a better short story than it does a film 1 +57147 2878 Imposter 2 +57148 2878 makes a better short story than it does a film 1 +57149 2878 makes a better short story 1 +57150 2878 a better short story 3 +57151 2878 better short story 2 +57152 2878 better short 2 +57153 2878 than it does a film 2 +57154 2878 it does a film 2 +57155 2878 does a film 2 +57156 2879 Formula 51 promises a new kind of high but delivers the same old bad trip . 1 +57157 2879 Formula 51 2 +57158 2879 51 2 +57159 2879 promises a new kind of high but delivers the same old bad trip . 1 +57160 2879 promises a new kind of high but delivers the same old bad trip 0 +57161 2879 promises a new kind of high but 2 +57162 2879 promises a new kind of high 3 +57163 2879 a new kind of high 3 +57164 2879 a new kind 2 +57165 2879 new kind 4 +57166 2879 of high 2 +57167 2879 delivers the same old bad trip 0 +57168 2879 the same old bad trip 1 +57169 2879 same old bad trip 1 +57170 2879 old bad trip 1 +57171 2879 bad trip 1 +57172 2880 With lines that feel like long soliloquies -- even as they are being framed in conversation -- Max is static , stilted . 2 +57173 2880 With lines that feel like long soliloquies 1 +57174 2880 lines that feel like long soliloquies 1 +57175 2880 that feel like long soliloquies 2 +57176 2880 feel like long soliloquies 2 +57177 2880 like long soliloquies 2 +57178 2880 long soliloquies 1 +57179 2880 soliloquies 2 +57180 2880 -- even as they are being framed in conversation -- Max is static , stilted . 1 +57181 2880 -- even as they are being framed in conversation -- 2 +57182 2880 even as they are being framed in conversation -- 3 +57183 2880 even as they are being framed in conversation 2 +57184 2880 as they are being framed in conversation 2 +57185 2880 they are being framed in conversation 2 +57186 2880 are being framed in conversation 2 +57187 2880 being framed in conversation 2 +57188 2880 framed in conversation 2 +57189 2880 framed 2 +57190 2880 in conversation 2 +57191 2880 Max is static , stilted . 1 +57192 2880 Max 2 +57193 2880 is static , stilted . 1 +57194 2880 is static , stilted 2 +57195 2880 static , stilted 1 +57196 2880 static , 2 +57197 2881 Directed without the expected flair or imagination by Hong Kong master John Woo , Windtalkers airs just about every cliche in the war movie compendium across its indulgent two-hour-and-fifteen-minute length . 1 +57198 2881 Directed without the expected flair or imagination by Hong Kong master John Woo 2 +57199 2881 Directed without the expected flair or imagination 1 +57200 2881 without the expected flair or imagination 2 +57201 2881 the expected flair or imagination 2 +57202 2881 the expected flair or 2 +57203 2881 the expected flair 2 +57204 2881 expected flair 3 +57205 2881 by Hong Kong master John Woo 2 +57206 2881 Hong Kong master John Woo 3 +57207 2881 Kong master John Woo 1 +57208 2881 master John Woo 2 +57209 2881 John Woo 2 +57210 2881 , Windtalkers airs just about every cliche in the war movie compendium across its indulgent two-hour-and-fifteen-minute length . 0 +57211 2881 Windtalkers airs just about every cliche in the war movie compendium across its indulgent two-hour-and-fifteen-minute length . 1 +57212 2881 airs just about every cliche in the war movie compendium across its indulgent two-hour-and-fifteen-minute length . 1 +57213 2881 airs just about every cliche in the war movie compendium across its indulgent two-hour-and-fifteen-minute length 1 +57214 2881 airs just 2 +57215 2881 about every cliche in the war movie compendium across its indulgent two-hour-and-fifteen-minute length 1 +57216 2881 every cliche in the war movie compendium across its indulgent two-hour-and-fifteen-minute length 1 +57217 2881 in the war movie compendium across its indulgent two-hour-and-fifteen-minute length 2 +57218 2881 the war movie compendium across its indulgent two-hour-and-fifteen-minute length 1 +57219 2881 the war movie compendium 3 +57220 2881 war movie compendium 2 +57221 2881 movie compendium 2 +57222 2881 across its indulgent two-hour-and-fifteen-minute length 3 +57223 2881 its indulgent two-hour-and-fifteen-minute length 1 +57224 2881 indulgent two-hour-and-fifteen-minute length 1 +57225 2881 two-hour-and-fifteen-minute length 2 +57226 2881 two-hour-and-fifteen-minute 2 +57227 2882 Aggravating and tedious . 0 +57228 2882 Aggravating and tedious 0 +57229 2882 Aggravating and 1 +57230 2882 Aggravating 1 +57231 2883 An undeniably moving film to experience , and ultimately that 's what makes it worth a recommendation . 3 +57232 2883 An undeniably moving film to experience , and ultimately that 's what makes it worth a recommendation 4 +57233 2883 An undeniably moving film to experience , and 4 +57234 2883 An undeniably moving film to experience , 4 +57235 2883 An undeniably moving film to experience 3 +57236 2883 An undeniably moving film 4 +57237 2883 undeniably moving film 4 +57238 2883 undeniably moving 4 +57239 2883 to experience 2 +57240 2883 ultimately that 's what makes it worth a recommendation 3 +57241 2883 that 's what makes it worth a recommendation 4 +57242 2883 's what makes it worth a recommendation 3 +57243 2883 what makes it worth a recommendation 3 +57244 2883 makes it worth a recommendation 3 +57245 2883 worth a recommendation 3 +57246 2883 a recommendation 3 +57247 2883 recommendation 2 +57248 2884 Frank Capra played this story straight . 3 +57249 2884 Frank Capra 2 +57250 2884 Capra 2 +57251 2884 played this story straight . 2 +57252 2884 played this story straight 3 +57253 2884 played this story 2 +57254 2885 Starts as an intense political and psychological thriller but is sabotaged by ticking time bombs and other Hollywood-action cliches . 0 +57255 2885 Starts as an intense political and psychological thriller 3 +57256 2885 as an intense political and psychological thriller 3 +57257 2885 an intense political and psychological thriller 4 +57258 2885 intense political and psychological thriller 4 +57259 2885 political and psychological thriller 3 +57260 2885 political and psychological 2 +57261 2885 political and 2 +57262 2885 but is sabotaged by ticking time bombs and other Hollywood-action cliches . 1 +57263 2885 is sabotaged by ticking time bombs and other Hollywood-action cliches . 1 +57264 2885 is sabotaged by ticking time bombs and other Hollywood-action cliches 1 +57265 2885 sabotaged by ticking time bombs and other Hollywood-action cliches 1 +57266 2885 sabotaged 1 +57267 2885 by ticking time bombs and other Hollywood-action cliches 2 +57268 2885 ticking time bombs and other Hollywood-action cliches 1 +57269 2885 ticking 2 +57270 2885 time bombs and other Hollywood-action cliches 2 +57271 2885 time bombs and 1 +57272 2885 time bombs 1 +57273 2885 bombs 1 +57274 2885 other Hollywood-action cliches 2 +57275 2885 Hollywood-action cliches 1 +57276 2885 Hollywood-action 2 +57277 2886 Cattaneo reworks the formula that made The Full Monty a smashing success ... but neglects to add the magic that made it all work . 1 +57278 2886 reworks the formula that made The Full Monty a smashing success ... but neglects to add the magic that made it all work . 2 +57279 2886 reworks the formula that made The Full Monty a smashing success ... but neglects to add the magic that made it all work 2 +57280 2886 reworks 3 +57281 2886 the formula that made The Full Monty a smashing success ... but neglects to add the magic that made it all work 2 +57282 2886 that made The Full Monty a smashing success ... but neglects to add the magic that made it all work 1 +57283 2886 made The Full Monty a smashing success ... but neglects to add the magic that made it all work 2 +57284 2886 made The Full Monty a smashing success ... but 3 +57285 2886 made The Full Monty a smashing success ... 3 +57286 2886 made The Full Monty a smashing success 3 +57287 2886 made The Full Monty 2 +57288 2886 a smashing success 4 +57289 2886 smashing success 4 +57290 2886 smashing 2 +57291 2886 neglects to add the magic that made it all work 1 +57292 2886 neglects 1 +57293 2886 to add the magic that made it all work 3 +57294 2886 add the magic that made it all work 2 +57295 2886 the magic that made it all work 3 +57296 2886 that made it all work 3 +57297 2886 made it all work 3 +57298 2886 it all work 2 +57299 2886 all work 2 +57300 2887 Obvious . 1 +57301 2888 Though overall an overwhelmingly positive portrayal , the film does n't ignore the more problematic aspects of Brown 's life . 3 +57302 2888 Though overall an overwhelmingly positive portrayal 3 +57303 2888 overall an overwhelmingly positive portrayal 4 +57304 2888 an overwhelmingly positive portrayal 3 +57305 2888 overwhelmingly positive portrayal 4 +57306 2888 overwhelmingly positive 2 +57307 2888 overwhelmingly 3 +57308 2888 , the film does n't ignore the more problematic aspects of Brown 's life . 2 +57309 2888 the film does n't ignore the more problematic aspects of Brown 's life . 3 +57310 2888 does n't ignore the more problematic aspects of Brown 's life . 3 +57311 2888 does n't ignore the more problematic aspects of Brown 's life 2 +57312 2888 ignore the more problematic aspects of Brown 's life 2 +57313 2888 the more problematic aspects of Brown 's life 2 +57314 2888 the more problematic aspects 1 +57315 2888 more problematic aspects 1 +57316 2888 more problematic 2 +57317 2888 of Brown 's life 2 +57318 2888 Brown 's life 2 +57319 2888 Brown 's 2 +57320 2889 Paid in Full is remarkably engaging despite being noticeably derivative of Goodfellas and at least a half dozen other trouble-in-the-ghetto flicks . 3 +57321 2889 is remarkably engaging despite being noticeably derivative of Goodfellas and at least a half dozen other trouble-in-the-ghetto flicks . 3 +57322 2889 is remarkably engaging despite being noticeably derivative of Goodfellas and at least a half dozen other trouble-in-the-ghetto flicks 3 +57323 2889 remarkably engaging despite being noticeably derivative of Goodfellas and at least a half dozen other trouble-in-the-ghetto flicks 4 +57324 2889 engaging despite being noticeably derivative of Goodfellas and at least a half dozen other trouble-in-the-ghetto flicks 3 +57325 2889 despite being noticeably derivative of Goodfellas and at least a half dozen other trouble-in-the-ghetto flicks 1 +57326 2889 being noticeably derivative of Goodfellas and at least a half dozen other trouble-in-the-ghetto flicks 1 +57327 2889 being noticeably derivative 2 +57328 2889 noticeably derivative 1 +57329 2889 noticeably 2 +57330 2889 of Goodfellas and at least a half dozen other trouble-in-the-ghetto flicks 2 +57331 2889 Goodfellas and at least a half dozen other trouble-in-the-ghetto flicks 1 +57332 2889 Goodfellas and 2 +57333 2889 Goodfellas 3 +57334 2889 at least a half dozen other trouble-in-the-ghetto flicks 2 +57335 2889 a half dozen other trouble-in-the-ghetto flicks 1 +57336 2889 a half dozen 3 +57337 2889 half dozen 2 +57338 2889 dozen 2 +57339 2889 other trouble-in-the-ghetto flicks 2 +57340 2889 trouble-in-the-ghetto flicks 2 +57341 2889 trouble-in-the-ghetto 2 +57342 2890 The big ending surprise almost saves the movie . 3 +57343 2890 The big ending surprise 3 +57344 2890 big ending surprise 3 +57345 2890 ending surprise 3 +57346 2890 almost saves the movie . 1 +57347 2890 saves the movie . 2 +57348 2890 saves the movie 2 +57349 2890 saves 3 +57350 2891 Problem is , we have no idea what in creation is going on . 1 +57351 2891 is , we have no idea what in creation is going on . 0 +57352 2891 is , we have no idea what in creation is going on 1 +57353 2891 we have no idea what in creation is going on 1 +57354 2891 have no idea what in creation is going on 1 +57355 2891 no idea what in creation is going on 1 +57356 2891 no idea 2 +57357 2891 what in creation is going on 2 +57358 2891 in creation is going on 2 +57359 2891 in creation 2 +57360 2891 is going on 2 +57361 2892 It 's as if a bored Cage spent the duration of the film 's shooting schedule waiting to scream : `` Got AIDS yet ? '' 0 +57362 2892 's as if a bored Cage spent the duration of the film 's shooting schedule waiting to scream : `` Got AIDS yet ? '' 0 +57363 2892 's as if a bored Cage spent the duration of the film 's shooting schedule waiting to scream : `` Got AIDS yet ? 1 +57364 2892 's as if a bored Cage spent the duration of the film 's shooting schedule waiting to scream : `` Got AIDS yet 0 +57365 2892 as if a bored Cage spent the duration of the film 's shooting schedule waiting to scream : `` Got AIDS yet 0 +57366 2892 if a bored Cage spent the duration of the film 's shooting schedule waiting to scream : `` Got AIDS yet 0 +57367 2892 a bored Cage spent the duration of the film 's shooting schedule waiting to scream : `` Got AIDS yet 0 +57368 2892 a bored Cage 1 +57369 2892 bored Cage 1 +57370 2892 spent the duration of the film 's shooting schedule waiting to scream : `` Got AIDS yet 1 +57371 2892 spent the duration of the film 's shooting schedule waiting to scream : `` 1 +57372 2892 spent the duration of the film 's shooting schedule waiting to scream : 1 +57373 2892 spent the duration of the film 's shooting schedule waiting to scream 0 +57374 2892 the duration of the film 's shooting schedule waiting to scream 1 +57375 2892 the duration 2 +57376 2892 duration 2 +57377 2892 of the film 's shooting schedule waiting to scream 1 +57378 2892 the film 's shooting schedule waiting to scream 2 +57379 2892 the film 's shooting schedule 2 +57380 2892 shooting schedule 2 +57381 2892 schedule 2 +57382 2892 waiting to scream 2 +57383 2892 to scream 2 +57384 2892 Got AIDS yet 2 +57385 2892 Got AIDS 1 +57386 2893 4Ever has the same sledgehammer appeal as Pokemon videos , but it breathes more on the big screen and induces headaches more slowly . 3 +57387 2893 4Ever has the same sledgehammer appeal as Pokemon videos , but it breathes more on the big screen and induces headaches more slowly 1 +57388 2893 4Ever has the same sledgehammer appeal as Pokemon videos , but 3 +57389 2893 4Ever has the same sledgehammer appeal as Pokemon videos , 1 +57390 2893 4Ever has the same sledgehammer appeal as Pokemon videos 2 +57391 2893 has the same sledgehammer appeal as Pokemon videos 0 +57392 2893 the same sledgehammer appeal as Pokemon videos 1 +57393 2893 the same sledgehammer appeal 2 +57394 2893 same sledgehammer appeal 3 +57395 2893 sledgehammer appeal 2 +57396 2893 as Pokemon videos 2 +57397 2893 Pokemon videos 2 +57398 2893 Pokemon 2 +57399 2893 it breathes more on the big screen and induces headaches more slowly 2 +57400 2893 breathes more on the big screen and induces headaches more slowly 2 +57401 2893 breathes more on the big screen and 2 +57402 2893 breathes more on the big screen 3 +57403 2893 breathes more 3 +57404 2893 breathes 2 +57405 2893 induces headaches more slowly 1 +57406 2893 induces headaches 0 +57407 2893 induces 2 +57408 2893 headaches 2 +57409 2893 more slowly 1 +57410 2894 A smart , steamy mix of road movie , coming-of-age story and political satire . 3 +57411 2894 A smart , steamy mix of road movie , coming-of-age story and political satire 4 +57412 2894 A smart , steamy mix 3 +57413 2894 smart , steamy mix 3 +57414 2894 , steamy mix 2 +57415 2894 steamy mix 2 +57416 2894 steamy 3 +57417 2894 of road movie , coming-of-age story and political satire 3 +57418 2894 road movie , coming-of-age story and political satire 3 +57419 2894 road movie , coming-of-age story and 3 +57420 2894 road movie , coming-of-age story 2 +57421 2894 road movie , 2 +57422 2894 coming-of-age story 2 +57423 2894 political satire 2 +57424 2895 Warm and exotic . 3 +57425 2895 Warm and exotic 4 +57426 2896 Steers , in his feature film debut , has created a brilliant motion picture . 4 +57427 2896 Steers , in his feature film debut , 2 +57428 2896 Steers , in his feature film debut 2 +57429 2896 Steers , 2 +57430 2896 in his feature film debut 2 +57431 2896 his feature film debut 2 +57432 2896 feature film debut 2 +57433 2896 film debut 2 +57434 2896 has created a brilliant motion picture . 4 +57435 2896 has created a brilliant motion picture 4 +57436 2896 created a brilliant motion picture 4 +57437 2896 a brilliant motion picture 4 +57438 2896 brilliant motion picture 4 +57439 2897 From beginning to end , this overheated melodrama plays like a student film . 2 +57440 2897 From beginning to end 2 +57441 2897 beginning to end 2 +57442 2897 , this overheated melodrama plays like a student film . 0 +57443 2897 this overheated melodrama plays like a student film . 1 +57444 2897 this overheated melodrama 1 +57445 2897 overheated melodrama 2 +57446 2897 overheated 2 +57447 2897 plays like a student film . 1 +57448 2897 plays like a student film 1 +57449 2897 like a student film 1 +57450 2897 a student film 3 +57451 2897 student film 2 +57452 2897 student 2 +57453 2898 The off-center humor is a constant , and the ensemble gives it a buoyant delivery . 3 +57454 2898 The off-center humor is a constant , and the ensemble gives it a buoyant delivery 4 +57455 2898 The off-center humor is a constant , and 2 +57456 2898 The off-center humor is a constant , 2 +57457 2898 The off-center humor is a constant 3 +57458 2898 The off-center humor 3 +57459 2898 off-center humor 2 +57460 2898 off-center 2 +57461 2898 is a constant 2 +57462 2898 a constant 2 +57463 2898 the ensemble gives it a buoyant delivery 4 +57464 2898 the ensemble 2 +57465 2898 gives it a buoyant delivery 3 +57466 2898 a buoyant delivery 3 +57467 2898 buoyant delivery 3 +57468 2899 overburdened with complicated plotting and banal dialogue 1 +57469 2899 overburdened 2 +57470 2899 with complicated plotting and banal dialogue 1 +57471 2899 complicated plotting and banal dialogue 1 +57472 2899 complicated plotting and 2 +57473 2899 complicated plotting 2 +57474 2899 banal dialogue 1 +57475 2900 Sometimes we feel as if the film careens from one colorful event to another without respite , but sometimes it must have seemed to Frida Kahlo as if her life did , too . 2 +57476 2900 Sometimes we feel as if the film careens from one colorful event to another without respite , but sometimes it must have seemed to Frida Kahlo as if her life did , too 3 +57477 2900 Sometimes we feel as if the film careens from one colorful event to another without respite , but 2 +57478 2900 Sometimes we feel as if the film careens from one colorful event to another without respite , 1 +57479 2900 Sometimes we feel as if the film careens from one colorful event to another without respite 2 +57480 2900 we feel as if the film careens from one colorful event to another without respite 3 +57481 2900 feel as if the film careens from one colorful event to another without respite 3 +57482 2900 as if the film careens from one colorful event to another without respite 3 +57483 2900 if the film careens from one colorful event to another without respite 2 +57484 2900 the film careens from one colorful event to another without respite 3 +57485 2900 careens from one colorful event to another without respite 2 +57486 2900 careens from one colorful event to another 3 +57487 2900 from one colorful event to another 3 +57488 2900 one colorful event to another 3 +57489 2900 one colorful event 3 +57490 2900 colorful event 3 +57491 2900 without respite 1 +57492 2900 sometimes it must have seemed to Frida Kahlo as if her life did , too 2 +57493 2900 it must have seemed to Frida Kahlo as if her life did , too 2 +57494 2900 must have seemed to Frida Kahlo as if her life did , too 2 +57495 2900 have seemed to Frida Kahlo as if her life did , too 2 +57496 2900 seemed to Frida Kahlo as if her life did , too 2 +57497 2900 seemed to Frida Kahlo 2 +57498 2900 seemed 2 +57499 2900 to Frida Kahlo 2 +57500 2900 Frida Kahlo 2 +57501 2900 as if her life did , too 2 +57502 2900 if her life did , too 2 +57503 2900 her life did , too 2 +57504 2900 her life 2 +57505 2900 did , too 2 +57506 2900 did , 2 +57507 2901 Yet this one makes up for in heart what it lacks in outright newness . 3 +57508 2901 this one makes up for in heart what it lacks in outright newness . 3 +57509 2901 makes up for in heart what it lacks in outright newness . 3 +57510 2901 makes up for in heart what it lacks in outright newness 3 +57511 2901 for in heart what it lacks in outright newness 2 +57512 2901 in heart what it lacks in outright newness 2 +57513 2901 heart what it lacks in outright newness 2 +57514 2901 what it lacks in outright newness 1 +57515 2901 it lacks in outright newness 0 +57516 2901 lacks in outright newness 1 +57517 2901 in outright newness 2 +57518 2901 outright newness 3 +57519 2901 outright 2 +57520 2901 newness 2 +57521 2902 -LRB- Fincher 's -RRB- camera sense and assured pacing make it an above-average thriller . 3 +57522 2902 -LRB- Fincher 's -RRB- camera sense and assured pacing 2 +57523 2902 -LRB- Fincher 's -RRB- camera sense and 2 +57524 2902 -LRB- Fincher 's -RRB- camera sense 2 +57525 2902 -LRB- Fincher 's -RRB- 2 +57526 2902 Fincher 's -RRB- 2 +57527 2902 Fincher 's 2 +57528 2902 Fincher 2 +57529 2902 camera sense 2 +57530 2902 assured pacing 2 +57531 2902 make it an above-average thriller . 3 +57532 2902 make it an above-average thriller 4 +57533 2902 it an above-average thriller 3 +57534 2902 an above-average thriller 4 +57535 2902 above-average thriller 3 +57536 2902 above-average 3 +57537 2903 The Pinochet Case is a searing album of remembrance from those who , having survived , suffered most . 2 +57538 2903 The Pinochet Case 2 +57539 2903 Pinochet Case 2 +57540 2903 is a searing album of remembrance from those who , having survived , suffered most . 3 +57541 2903 is a searing album of remembrance from those who , having survived , suffered most 2 +57542 2903 a searing album of remembrance from those who , having survived , suffered most 3 +57543 2903 a searing album 3 +57544 2903 searing album 2 +57545 2903 searing 2 +57546 2903 album 2 +57547 2903 of remembrance from those who , having survived , suffered most 2 +57548 2903 remembrance from those who , having survived , suffered most 2 +57549 2903 remembrance 3 +57550 2903 from those who , having survived , suffered most 2 +57551 2903 those who , having survived , suffered most 2 +57552 2903 who , having survived , suffered most 2 +57553 2903 , having survived , suffered most 2 +57554 2903 , having survived , 3 +57555 2903 having survived , 2 +57556 2903 having survived 2 +57557 2903 survived 2 +57558 2903 suffered most 1 +57559 2903 suffered 1 +57560 2904 However stale the material , Lawrence 's delivery remains perfect ; his great gift is that he can actually trick you into thinking some of this worn-out , pandering palaver is actually funny . 2 +57561 2904 However stale the material , Lawrence 's delivery remains perfect ; his great gift is that he can actually trick you into thinking some of this worn-out , pandering palaver is actually funny 3 +57562 2904 However stale the material , Lawrence 's delivery remains perfect ; 3 +57563 2904 However stale the material , Lawrence 's delivery remains perfect 2 +57564 2904 However stale the material 1 +57565 2904 stale the material 1 +57566 2904 , Lawrence 's delivery remains perfect 4 +57567 2904 Lawrence 's delivery remains perfect 4 +57568 2904 Lawrence 's delivery 2 +57569 2904 remains perfect 3 +57570 2904 his great gift is that he can actually trick you into thinking some of this worn-out , pandering palaver is actually funny 2 +57571 2904 his great gift 2 +57572 2904 great gift 3 +57573 2904 is that he can actually trick you into thinking some of this worn-out , pandering palaver is actually funny 2 +57574 2904 that he can actually trick you into thinking some of this worn-out , pandering palaver is actually funny 1 +57575 2904 he can actually trick you into thinking some of this worn-out , pandering palaver is actually funny 1 +57576 2904 can actually trick you into thinking some of this worn-out , pandering palaver is actually funny 1 +57577 2904 can actually 2 +57578 2904 trick you into thinking some of this worn-out , pandering palaver is actually funny 2 +57579 2904 trick you 1 +57580 2904 into thinking some of this worn-out , pandering palaver is actually funny 1 +57581 2904 thinking some of this worn-out , pandering palaver is actually funny 2 +57582 2904 some of this worn-out , pandering palaver is actually funny 3 +57583 2904 some of this worn-out , pandering palaver 1 +57584 2904 of this worn-out , pandering palaver 0 +57585 2904 this worn-out , pandering palaver 0 +57586 2904 worn-out , pandering palaver 2 +57587 2904 , pandering palaver 2 +57588 2904 pandering palaver 3 +57589 2904 pandering 1 +57590 2904 palaver 2 +57591 2904 is actually funny 3 +57592 2904 is actually 3 +57593 2905 Whatever the movie 's sentimental , hypocritical lessons about sexism , its true colors come out in various wet T-shirt and shower scenes . 1 +57594 2905 Whatever the movie 's sentimental , hypocritical lessons about sexism 1 +57595 2905 the movie 's sentimental , hypocritical lessons about sexism 2 +57596 2905 the movie 's sentimental , hypocritical lessons 1 +57597 2905 sentimental , hypocritical lessons 2 +57598 2905 sentimental , hypocritical 1 +57599 2905 , hypocritical 1 +57600 2905 hypocritical 1 +57601 2905 about sexism 2 +57602 2905 sexism 2 +57603 2905 , its true colors come out in various wet T-shirt and shower scenes . 1 +57604 2905 its true colors come out in various wet T-shirt and shower scenes . 2 +57605 2905 its true colors 2 +57606 2905 true colors 2 +57607 2905 colors 2 +57608 2905 come out in various wet T-shirt and shower scenes . 2 +57609 2905 come out in various wet T-shirt and shower scenes 1 +57610 2905 in various wet T-shirt and shower scenes 3 +57611 2905 various wet T-shirt and shower scenes 2 +57612 2905 wet T-shirt and shower scenes 2 +57613 2905 wet 2 +57614 2905 T-shirt and shower scenes 2 +57615 2905 T-shirt 2 +57616 2905 and shower scenes 2 +57617 2905 shower scenes 2 +57618 2905 shower 2 +57619 2906 All right , so it 's not a brilliant piece of filmmaking , but it is a funny -LRB- sometimes hilarious -RRB- comedy with a deft sense of humor about itself , a playful spirit and a game cast . 3 +57620 2906 All right 2 +57621 2906 , so it 's not a brilliant piece of filmmaking , but it is a funny -LRB- sometimes hilarious -RRB- comedy with a deft sense of humor about itself , a playful spirit and a game cast . 4 +57622 2906 so it 's not a brilliant piece of filmmaking , but it is a funny -LRB- sometimes hilarious -RRB- comedy with a deft sense of humor about itself , a playful spirit and a game cast . 3 +57623 2906 so it 's not a brilliant piece of filmmaking , but it is a funny -LRB- sometimes hilarious -RRB- comedy with a deft sense of humor about itself , a playful spirit and a game cast 3 +57624 2906 so it 's not a brilliant piece of filmmaking , but 1 +57625 2906 so it 's not a brilliant piece of filmmaking , 1 +57626 2906 so it 's not a brilliant piece of filmmaking 0 +57627 2906 it 's not a brilliant piece of filmmaking 1 +57628 2906 's not a brilliant piece of filmmaking 3 +57629 2906 a brilliant piece of filmmaking 4 +57630 2906 a brilliant piece 4 +57631 2906 brilliant piece 4 +57632 2906 of filmmaking 2 +57633 2906 it is a funny -LRB- sometimes hilarious -RRB- comedy with a deft sense of humor about itself , a playful spirit and a game cast 3 +57634 2906 is a funny -LRB- sometimes hilarious -RRB- comedy with a deft sense of humor about itself , a playful spirit and a game cast 3 +57635 2906 a funny -LRB- sometimes hilarious -RRB- comedy with a deft sense of humor about itself , a playful spirit and a game cast 4 +57636 2906 a funny -LRB- sometimes hilarious -RRB- comedy 4 +57637 2906 funny -LRB- sometimes hilarious -RRB- comedy 3 +57638 2906 funny -LRB- sometimes hilarious -RRB- 4 +57639 2906 -LRB- sometimes hilarious -RRB- 3 +57640 2906 sometimes hilarious -RRB- 3 +57641 2906 hilarious -RRB- 4 +57642 2906 with a deft sense of humor about itself , a playful spirit and a game cast 3 +57643 2906 a deft sense of humor about itself , a playful spirit and a game cast 3 +57644 2906 a deft sense 2 +57645 2906 deft sense 3 +57646 2906 of humor about itself , a playful spirit and a game cast 3 +57647 2906 humor about itself , a playful spirit and a game cast 3 +57648 2906 about itself , a playful spirit and a game cast 3 +57649 2906 itself , a playful spirit and a game cast 3 +57650 2906 itself , a playful spirit and 3 +57651 2906 itself , a playful spirit 3 +57652 2906 itself , 2 +57653 2906 a playful spirit 3 +57654 2906 playful spirit 3 +57655 2906 a game cast 2 +57656 2906 game cast 2 +57657 2907 Over the years , Hollywood has crafted a solid formula for successful animated movies , and Ice Age only improves on it , with terrific computer graphics , inventive action sequences and a droll sense of humor . 4 +57658 2907 , Hollywood has crafted a solid formula for successful animated movies , and Ice Age only improves on it , with terrific computer graphics , inventive action sequences and a droll sense of humor . 4 +57659 2907 Hollywood has crafted a solid formula for successful animated movies , and Ice Age only improves on it , with terrific computer graphics , inventive action sequences and a droll sense of humor . 4 +57660 2907 Hollywood has crafted a solid formula for successful animated movies , and Ice Age only improves on it , with terrific computer graphics , inventive action sequences and a droll sense of humor 4 +57661 2907 Hollywood has crafted a solid formula for successful animated movies , and 4 +57662 2907 Hollywood has crafted a solid formula for successful animated movies , 3 +57663 2907 Hollywood has crafted a solid formula for successful animated movies 3 +57664 2907 has crafted a solid formula for successful animated movies 3 +57665 2907 crafted a solid formula for successful animated movies 4 +57666 2907 a solid formula for successful animated movies 4 +57667 2907 a solid formula 3 +57668 2907 solid formula 3 +57669 2907 for successful animated movies 2 +57670 2907 successful animated movies 3 +57671 2907 Ice Age only improves on it , with terrific computer graphics , inventive action sequences and a droll sense of humor 3 +57672 2907 only improves on it , with terrific computer graphics , inventive action sequences and a droll sense of humor 3 +57673 2907 improves on it , with terrific computer graphics , inventive action sequences and a droll sense of humor 4 +57674 2907 improves on it , 3 +57675 2907 improves on it 2 +57676 2907 improves 3 +57677 2907 with terrific computer graphics , inventive action sequences and a droll sense of humor 4 +57678 2907 terrific computer graphics , inventive action sequences and a droll sense of humor 2 +57679 2907 terrific computer graphics , inventive action sequences and 2 +57680 2907 terrific computer graphics , inventive action sequences 4 +57681 2907 terrific computer graphics , 4 +57682 2907 terrific computer graphics 4 +57683 2907 computer graphics 2 +57684 2907 graphics 2 +57685 2907 inventive action sequences 4 +57686 2907 a droll sense of humor 2 +57687 2907 a droll sense 1 +57688 2907 droll sense 2 +57689 2908 He 's worked too hard on this movie . 2 +57690 2908 's worked too hard on this movie . 1 +57691 2908 's worked too hard on this movie 1 +57692 2908 worked too hard on this movie 1 +57693 2908 worked too hard 2 +57694 2908 on this movie 2 +57695 2909 If Welles was unhappy at the prospect of the human race splitting in two , he probably would n't be too crazy with his great-grandson 's movie splitting up in pretty much the same way . 1 +57696 2909 If Welles was unhappy at the prospect of the human race splitting in two 2 +57697 2909 Welles was unhappy at the prospect of the human race splitting in two 2 +57698 2909 was unhappy at the prospect of the human race splitting in two 2 +57699 2909 unhappy at the prospect of the human race splitting in two 1 +57700 2909 at the prospect of the human race splitting in two 2 +57701 2909 the prospect of the human race splitting in two 2 +57702 2909 of the human race splitting in two 2 +57703 2909 the human race splitting in two 1 +57704 2909 the human race splitting 2 +57705 2909 human race splitting 2 +57706 2909 race splitting 3 +57707 2909 splitting 2 +57708 2909 in two 2 +57709 2909 , he probably would n't be too crazy with his great-grandson 's movie splitting up in pretty much the same way . 2 +57710 2909 he probably would n't be too crazy with his great-grandson 's movie splitting up in pretty much the same way . 1 +57711 2909 probably would n't be too crazy with his great-grandson 's movie splitting up in pretty much the same way . 2 +57712 2909 would n't be too crazy with his great-grandson 's movie splitting up in pretty much the same way . 3 +57713 2909 would n't be too crazy with his great-grandson 's movie splitting up in pretty much the same way 2 +57714 2909 be too crazy with his great-grandson 's movie splitting up in pretty much the same way 2 +57715 2909 too crazy with his great-grandson 's movie splitting up in pretty much the same way 2 +57716 2909 crazy with his great-grandson 's movie splitting up in pretty much the same way 2 +57717 2909 with his great-grandson 's movie splitting up in pretty much the same way 2 +57718 2909 his great-grandson 's movie splitting up in pretty much the same way 2 +57719 2909 his great-grandson 's 2 +57720 2909 great-grandson 's 2 +57721 2909 great-grandson 2 +57722 2909 movie splitting up in pretty much the same way 2 +57723 2909 splitting up in pretty much the same way 2 +57724 2909 splitting up 2 +57725 2909 in pretty much the same way 2 +57726 2909 pretty much the same way 2 +57727 2909 pretty much 2 +57728 2910 The philosophical musings of the dialogue jar against the tawdry soap opera antics of the film 's action in a way that is surprisingly enjoyable . 2 +57729 2910 The philosophical musings of the dialogue jar against the tawdry soap opera antics of the film 's action in a way that is surprisingly enjoyable 3 +57730 2910 The philosophical musings of the dialogue jar against the tawdry soap opera antics of the film 's action 1 +57731 2910 The philosophical musings of the dialogue jar against the tawdry soap opera antics 1 +57732 2910 The philosophical musings of the dialogue jar 2 +57733 2910 The philosophical musings 2 +57734 2910 philosophical musings 3 +57735 2910 of the dialogue jar 2 +57736 2910 the dialogue jar 2 +57737 2910 dialogue jar 2 +57738 2910 jar 2 +57739 2910 against the tawdry soap opera antics 2 +57740 2910 the tawdry soap opera antics 2 +57741 2910 tawdry soap opera antics 1 +57742 2910 tawdry 1 +57743 2910 soap opera antics 2 +57744 2910 opera antics 2 +57745 2910 of the film 's action 2 +57746 2910 the film 's action 3 +57747 2910 in a way that is surprisingly enjoyable 4 +57748 2910 a way that is surprisingly enjoyable 4 +57749 2910 that is surprisingly enjoyable 4 +57750 2910 is surprisingly enjoyable 4 +57751 2910 surprisingly enjoyable 4 +57752 2911 Some people march to the beat of a different drum , and if you ever wondered what kind of houses those people live in , this documentary takes a look at 5 alternative housing options . 3 +57753 2911 Some people march to the beat of a different drum , and if you ever wondered what kind of houses those people live in , this documentary takes a look at 5 alternative housing options 3 +57754 2911 Some people march to the beat of a different drum , and 2 +57755 2911 Some people march to the beat of a different drum , 2 +57756 2911 Some people march to the beat of a different drum 3 +57757 2911 march to the beat of a different drum 2 +57758 2911 march 2 +57759 2911 to the beat of a different drum 2 +57760 2911 the beat of a different drum 3 +57761 2911 of a different drum 2 +57762 2911 a different drum 2 +57763 2911 different drum 2 +57764 2911 drum 2 +57765 2911 if you ever wondered what kind of houses those people live in , this documentary takes a look at 5 alternative housing options 2 +57766 2911 if you ever wondered what kind of houses those people live in 2 +57767 2911 you ever wondered what kind of houses those people live in 2 +57768 2911 ever wondered what kind of houses those people live in 2 +57769 2911 wondered what kind of houses those people live in 2 +57770 2911 wondered 2 +57771 2911 what kind of houses those people live in 2 +57772 2911 what kind of houses 2 +57773 2911 what kind 2 +57774 2911 of houses 2 +57775 2911 houses 2 +57776 2911 those people live in 2 +57777 2911 those people 2 +57778 2911 live in 2 +57779 2911 , this documentary takes a look at 5 alternative housing options 2 +57780 2911 this documentary takes a look at 5 alternative housing options 2 +57781 2911 this documentary 2 +57782 2911 takes a look at 5 alternative housing options 1 +57783 2911 a look at 5 alternative housing options 2 +57784 2911 at 5 alternative housing options 2 +57785 2911 5 alternative housing options 2 +57786 2911 5 2 +57787 2911 alternative housing options 3 +57788 2911 housing options 2 +57789 2911 housing 2 +57790 2911 options 2 +57791 2912 It 's up to -LRB- Watts -RRB- to lend credibility to this strange scenario , and her presence succeeds in making us believe . 3 +57792 2912 It 's up to -LRB- Watts -RRB- to lend credibility to this strange scenario , and her presence succeeds in making us believe 3 +57793 2912 It 's up to -LRB- Watts -RRB- to lend credibility to this strange scenario , and 3 +57794 2912 It 's up to -LRB- Watts -RRB- to lend credibility to this strange scenario , 2 +57795 2912 It 's up to -LRB- Watts -RRB- to lend credibility to this strange scenario 2 +57796 2912 's up to -LRB- Watts -RRB- to lend credibility to this strange scenario 2 +57797 2912 up to -LRB- Watts -RRB- to lend credibility to this strange scenario 2 +57798 2912 to -LRB- Watts -RRB- to lend credibility to this strange scenario 2 +57799 2912 -LRB- Watts -RRB- to lend credibility to this strange scenario 2 +57800 2912 -LRB- Watts -RRB- 2 +57801 2912 Watts -RRB- 2 +57802 2912 to lend credibility to this strange scenario 2 +57803 2912 lend credibility to this strange scenario 2 +57804 2912 lend credibility 2 +57805 2912 to this strange scenario 2 +57806 2912 this strange scenario 2 +57807 2912 strange scenario 2 +57808 2912 her presence succeeds in making us believe 3 +57809 2912 her presence 2 +57810 2912 succeeds in making us believe 3 +57811 2912 in making us believe 2 +57812 2912 making us believe 2 +57813 2912 us believe 2 +57814 2913 Noyce 's greatest mistake is thinking that we needed sweeping , dramatic , Hollywood moments to keep us 1 +57815 2913 Noyce 's greatest mistake 1 +57816 2913 Noyce 's 2 +57817 2913 greatest mistake 0 +57818 2913 is thinking that we needed sweeping , dramatic , Hollywood moments to keep us 1 +57819 2913 thinking that we needed sweeping , dramatic , Hollywood moments to keep us 2 +57820 2913 that we needed sweeping , dramatic , Hollywood moments to keep us 2 +57821 2913 we needed sweeping , dramatic , Hollywood moments to keep us 2 +57822 2913 needed sweeping , dramatic , Hollywood moments to keep us 1 +57823 2913 needed sweeping , dramatic , Hollywood moments 2 +57824 2913 sweeping , dramatic , Hollywood moments 3 +57825 2913 sweeping , dramatic , 3 +57826 2913 sweeping , dramatic 3 +57827 2913 sweeping , 3 +57828 2913 Hollywood moments 2 +57829 2913 to keep us 2 +57830 2914 it somehow managed to make its way past my crappola radar and find a small place in my heart 2 +57831 2914 somehow managed to make its way past my crappola radar and find a small place in my heart 3 +57832 2914 managed to make its way past my crappola radar and find a small place in my heart 3 +57833 2914 to make its way past my crappola radar and find a small place in my heart 3 +57834 2914 make its way past my crappola radar and find a small place in my heart 2 +57835 2914 make its way past my crappola radar and 3 +57836 2914 make its way past my crappola radar 2 +57837 2914 make its way 2 +57838 2914 its way 2 +57839 2914 past my crappola radar 1 +57840 2914 my crappola radar 1 +57841 2914 crappola radar 1 +57842 2914 crappola 1 +57843 2914 find a small place in my heart 3 +57844 2914 find a small place 2 +57845 2914 a small place 2 +57846 2914 small place 2 +57847 2914 in my heart 2 +57848 2914 my heart 2 +57849 2915 Diggs and Lathan are among the chief reasons Brown Sugar is such a sweet and sexy film . 4 +57850 2915 Diggs and Lathan 2 +57851 2915 Diggs and 2 +57852 2915 Diggs 2 +57853 2915 Lathan 2 +57854 2915 are among the chief reasons Brown Sugar is such a sweet and sexy film . 4 +57855 2915 are among the chief reasons Brown Sugar is such a sweet and sexy film 4 +57856 2915 among the chief reasons Brown Sugar is such a sweet and sexy film 3 +57857 2915 the chief reasons Brown Sugar is such a sweet and sexy film 4 +57858 2915 the chief reasons 2 +57859 2915 chief reasons 2 +57860 2915 Brown Sugar is such a sweet and sexy film 4 +57861 2915 is such a sweet and sexy film 4 +57862 2915 is such 2 +57863 2915 a sweet and sexy film 3 +57864 2915 sweet and sexy film 3 +57865 2915 sweet and sexy 3 +57866 2916 a wonderfully warm human drama that remains vividly in memory long after viewing 3 +57867 2916 a wonderfully warm human drama that remains vividly in memory long 4 +57868 2916 a wonderfully warm human drama 4 +57869 2916 wonderfully warm human drama 3 +57870 2916 wonderfully warm 4 +57871 2916 human drama 3 +57872 2916 that remains vividly in memory long 3 +57873 2916 remains vividly in memory long 3 +57874 2916 remains vividly in memory 3 +57875 2916 remains vividly 2 +57876 2916 in memory 3 +57877 2916 after viewing 2 +57878 2917 about the hard-partying 2 +57879 2917 the hard-partying 2 +57880 2917 hard-partying 2 +57881 2917 lives of gay men . 2 +57882 2917 lives of gay men 2 +57883 2917 of gay men 2 +57884 2917 gay men 2 +57885 2918 But the execution is a flop with the exception of about six gags that really work . 2 +57886 2918 the execution is a flop with the exception of about six gags that really work . 1 +57887 2918 is a flop with the exception of about six gags that really work . 0 +57888 2918 is a flop with the exception of about six gags that really work 1 +57889 2918 a flop with the exception of about six gags that really work 0 +57890 2918 a flop with the exception of about six gags 1 +57891 2918 a flop 0 +57892 2918 with the exception of about six gags 2 +57893 2918 the exception of about six gags 1 +57894 2918 the exception 2 +57895 2918 of about six gags 1 +57896 2918 about six gags 2 +57897 2918 about six 2 +57898 2918 that really work 2 +57899 2918 really work 3 +57900 2919 A sharp , amusing study of the cult of celebrity . 3 +57901 2919 A sharp , amusing study of the cult of celebrity 3 +57902 2919 A sharp , amusing study of the cult 3 +57903 2919 A sharp , amusing study 3 +57904 2919 sharp , amusing study 4 +57905 2919 , amusing study 3 +57906 2919 amusing study 3 +57907 2919 of the cult 2 +57908 2919 the cult 2 +57909 2919 of celebrity 2 +57910 2920 This humbling little film , fueled by the light comedic work of Zhao Benshan and the delicate ways of Dong Jie , is just the sort for those moviegoers who complain that ` they do n't make movies like they used to anymore . ' 3 +57911 2920 This humbling little film , fueled by the light comedic work of Zhao Benshan and the delicate ways of Dong Jie , 3 +57912 2920 This humbling little film , fueled by the light comedic work of Zhao Benshan and the delicate ways of Dong Jie 3 +57913 2920 This humbling little film , 3 +57914 2920 This humbling little film 2 +57915 2920 humbling little film 3 +57916 2920 humbling 2 +57917 2920 fueled by the light comedic work of Zhao Benshan and the delicate ways of Dong Jie 3 +57918 2920 fueled 2 +57919 2920 by the light comedic work of Zhao Benshan and the delicate ways of Dong Jie 2 +57920 2920 the light comedic work of Zhao Benshan and the delicate ways of Dong Jie 3 +57921 2920 the light comedic work of Zhao Benshan and 2 +57922 2920 the light comedic work of Zhao Benshan 2 +57923 2920 the light comedic work 3 +57924 2920 light comedic work 2 +57925 2920 comedic work 2 +57926 2920 of Zhao Benshan 2 +57927 2920 Zhao Benshan 2 +57928 2920 Zhao 2 +57929 2920 Benshan 2 +57930 2920 the delicate ways of Dong Jie 2 +57931 2920 the delicate ways 2 +57932 2920 delicate ways 2 +57933 2920 of Dong Jie 2 +57934 2920 Dong Jie 2 +57935 2920 Jie 2 +57936 2920 is just the sort for those moviegoers who complain that ` they do n't make movies like they used to anymore . ' 2 +57937 2920 is just the sort for those moviegoers who complain that ` they do n't make movies like they used to anymore . 3 +57938 2920 is just the sort for those moviegoers who complain that ` they do n't make movies like they used to anymore 2 +57939 2920 the sort for those moviegoers who complain that ` they do n't make movies like they used to anymore 3 +57940 2920 the sort 2 +57941 2920 for those moviegoers who complain that ` they do n't make movies like they used to anymore 1 +57942 2920 those moviegoers who complain that ` they do n't make movies like they used to anymore 2 +57943 2920 who complain that ` they do n't make movies like they used to anymore 2 +57944 2920 complain that ` they do n't make movies like they used to anymore 1 +57945 2920 complain 1 +57946 2920 that ` they do n't make movies like they used to anymore 1 +57947 2920 ` they do n't make movies like they used to anymore 1 +57948 2920 ` they 2 +57949 2920 do n't make movies like they used to anymore 1 +57950 2920 make movies like they used to anymore 2 +57951 2920 make movies 2 +57952 2920 like they used to anymore 2 +57953 2920 they used to anymore 3 +57954 2920 used to anymore 2 +57955 2920 to anymore 2 +57956 2920 anymore 2 +57957 2921 More than their unique residences , Home Movie is about the people who live in them , who have carved their own comfortable niche in the world and have been kind enough to share it . 4 +57958 2921 More than their unique residences 3 +57959 2921 than their unique residences 2 +57960 2921 their unique residences 2 +57961 2921 unique residences 3 +57962 2921 residences 2 +57963 2921 , Home Movie is about the people who live in them , who have carved their own comfortable niche in the world and have been kind enough to share it . 3 +57964 2921 Home Movie is about the people who live in them , who have carved their own comfortable niche in the world and have been kind enough to share it . 3 +57965 2921 is about the people who live in them , who have carved their own comfortable niche in the world and have been kind enough to share it . 4 +57966 2921 is about the people who live in them , who have carved their own comfortable niche in the world and have been kind enough to share it 3 +57967 2921 about the people who live in them , who have carved their own comfortable niche in the world and have been kind enough to share it 3 +57968 2921 the people who live in them , who have carved their own comfortable niche in the world and have been kind enough to share it 3 +57969 2921 who live in them , who have carved their own comfortable niche in the world and have been kind enough to share it 2 +57970 2921 live in them , who have carved their own comfortable niche in the world and have been kind enough to share it 3 +57971 2921 live in them , who have carved their own comfortable niche in the world and 2 +57972 2921 live in them , who have carved their own comfortable niche in the world 2 +57973 2921 in them , who have carved their own comfortable niche in the world 3 +57974 2921 them , who have carved their own comfortable niche in the world 3 +57975 2921 who have carved their own comfortable niche in the world 3 +57976 2921 have carved their own comfortable niche in the world 3 +57977 2921 carved their own comfortable niche in the world 3 +57978 2921 carved their own comfortable niche 2 +57979 2921 their own comfortable niche 3 +57980 2921 own comfortable niche 2 +57981 2921 comfortable niche 3 +57982 2921 niche 2 +57983 2921 in the world 2 +57984 2921 have been kind enough to share it 3 +57985 2921 been kind enough to share it 3 +57986 2921 kind enough to share it 2 +57987 2921 kind enough 2 +57988 2921 to share it 2 +57989 2921 share it 3 +57990 2922 No surprises . 1 +57991 2922 surprises . 2 +57992 2923 It is so earnest , so overwrought and so wildly implausible that it begs to be parodied . 2 +57993 2923 is so earnest , so overwrought and so wildly implausible that it begs to be parodied . 2 +57994 2923 is so earnest , so overwrought and so wildly implausible that it begs to be parodied 2 +57995 2923 is so earnest , so overwrought and so wildly implausible 2 +57996 2923 so earnest , so overwrought and so wildly implausible 1 +57997 2923 so earnest , so overwrought and 2 +57998 2923 so earnest , so overwrought 2 +57999 2923 so earnest , 2 +58000 2923 so earnest 2 +58001 2923 so overwrought 1 +58002 2923 so wildly implausible 2 +58003 2923 wildly implausible 1 +58004 2923 that it begs to be parodied 1 +58005 2923 it begs to be parodied 2 +58006 2923 begs to be parodied 1 +58007 2923 begs 2 +58008 2923 to be parodied 2 +58009 2923 be parodied 2 +58010 2923 parodied 2 +58011 2924 The film is enriched by an imaginatively mixed cast of antic spirits , headed by Christopher Plummer as the subtlest and most complexly evil Uncle Ralph I 've ever seen in the many film and stage adaptations of the work . 4 +58012 2924 is enriched by an imaginatively mixed cast of antic spirits , headed by Christopher Plummer as the subtlest and most complexly evil Uncle Ralph I 've ever seen in the many film and stage adaptations of the work . 4 +58013 2924 is enriched by an imaginatively mixed cast of antic spirits , headed by Christopher Plummer as the subtlest and most complexly evil Uncle Ralph I 've ever seen in the many film and stage adaptations of the work 4 +58014 2924 enriched by an imaginatively mixed cast of antic spirits , headed by Christopher Plummer as the subtlest and most complexly evil Uncle Ralph I 've ever seen in the many film and stage adaptations of the work 4 +58015 2924 enriched by an imaginatively mixed cast of antic spirits , headed by Christopher Plummer as the subtlest and most complexly evil Uncle Ralph I 've ever seen in the many film and 4 +58016 2924 enriched by an imaginatively mixed cast of antic spirits , headed by Christopher Plummer as the subtlest and most complexly evil Uncle Ralph I 've ever seen in the many film 4 +58017 2924 enriched by an imaginatively mixed cast of antic spirits , 3 +58018 2924 enriched by an imaginatively mixed cast of antic spirits 4 +58019 2924 by an imaginatively mixed cast of antic spirits 3 +58020 2924 an imaginatively mixed cast of antic spirits 3 +58021 2924 an imaginatively mixed cast 3 +58022 2924 imaginatively mixed cast 4 +58023 2924 imaginatively mixed 3 +58024 2924 imaginatively 3 +58025 2924 of antic spirits 2 +58026 2924 antic spirits 1 +58027 2924 antic 2 +58028 2924 headed by Christopher Plummer as the subtlest and most complexly evil Uncle Ralph I 've ever seen in the many film 4 +58029 2924 headed by Christopher Plummer 2 +58030 2924 by Christopher Plummer 2 +58031 2924 Christopher Plummer 2 +58032 2924 Plummer 2 +58033 2924 as the subtlest and most complexly evil Uncle Ralph I 've ever seen in the many film 2 +58034 2924 the subtlest and most complexly evil Uncle Ralph I 've ever seen in the many film 4 +58035 2924 the subtlest and most complexly evil Uncle Ralph 3 +58036 2924 subtlest and most complexly evil Uncle Ralph 1 +58037 2924 subtlest and most complexly evil 2 +58038 2924 subtlest and 2 +58039 2924 most complexly evil 2 +58040 2924 complexly evil 2 +58041 2924 complexly 2 +58042 2924 Uncle Ralph 3 +58043 2924 Uncle 2 +58044 2924 I 've ever seen in the many film 2 +58045 2924 've ever seen in the many film 2 +58046 2924 seen in the many film 2 +58047 2924 in the many film 2 +58048 2924 the many film 2 +58049 2924 many film 2 +58050 2924 stage adaptations of the work 2 +58051 2924 adaptations of the work 2 +58052 2924 adaptations 2 +58053 2924 of the work 2 +58054 2925 The problem is the needlessly poor quality of its archival prints and film footage . 0 +58055 2925 is the needlessly poor quality of its archival prints and film footage . 1 +58056 2925 is the needlessly poor quality of its archival prints and film footage 0 +58057 2925 the needlessly poor quality of its archival prints and film footage 1 +58058 2925 the needlessly poor quality 0 +58059 2925 needlessly poor quality 0 +58060 2925 needlessly 1 +58061 2925 poor quality 0 +58062 2925 of its archival prints and film footage 2 +58063 2925 its archival prints and film footage 2 +58064 2925 archival prints and film footage 2 +58065 2925 archival 2 +58066 2925 prints and film footage 2 +58067 2925 prints 2 +58068 2925 and film footage 2 +58069 2925 film footage 2 +58070 2926 Fulfills the minimum requirement of Disney animation . 2 +58071 2926 Fulfills the minimum requirement of Disney animation 0 +58072 2926 Fulfills 2 +58073 2926 the minimum requirement of Disney animation 1 +58074 2926 the minimum requirement 2 +58075 2926 minimum requirement 2 +58076 2926 minimum 2 +58077 2926 requirement 2 +58078 2927 With jump cuts , fast editing and lots of pyrotechnics , Yu clearly hopes to camouflage how bad his movie is . 0 +58079 2927 With jump cuts , fast editing and lots of pyrotechnics 2 +58080 2927 jump cuts , fast editing and lots of pyrotechnics 2 +58081 2927 jump cuts , fast editing and 2 +58082 2927 jump cuts , fast editing 1 +58083 2927 jump cuts , 2 +58084 2927 jump cuts 2 +58085 2927 jump 2 +58086 2927 fast editing 2 +58087 2927 lots of pyrotechnics 2 +58088 2927 of pyrotechnics 2 +58089 2927 , Yu clearly hopes to camouflage how bad his movie is . 1 +58090 2927 Yu clearly hopes to camouflage how bad his movie is . 0 +58091 2927 clearly hopes to camouflage how bad his movie is . 0 +58092 2927 hopes to camouflage how bad his movie is . 0 +58093 2927 hopes to camouflage how bad his movie is 0 +58094 2927 hopes 2 +58095 2927 to camouflage how bad his movie is 0 +58096 2927 camouflage how bad his movie is 0 +58097 2927 how bad his movie is 0 +58098 2927 how bad 2 +58099 2927 his movie is 2 +58100 2928 -LRB- While The Last Metro -RRB- was more melodramatic , confined to a single theater company and its strategies and deceptions , while Tavernier is more concerned with the entire period of history . 3 +58101 2928 While The Last Metro -RRB- was more melodramatic , confined to a single theater company and its strategies and deceptions , while Tavernier is more concerned with the entire period of history . 3 +58102 2928 While The Last Metro -RRB- was more melodramatic 2 +58103 2928 The Last Metro -RRB- was more melodramatic 2 +58104 2928 The Last Metro -RRB- 3 +58105 2928 Last Metro -RRB- 2 +58106 2928 Metro -RRB- 2 +58107 2928 Metro 2 +58108 2928 was more melodramatic 1 +58109 2928 more melodramatic 2 +58110 2928 , confined to a single theater company and its strategies and deceptions , while Tavernier is more concerned with the entire period of history . 2 +58111 2928 confined to a single theater company and its strategies and deceptions , while Tavernier is more concerned with the entire period of history . 2 +58112 2928 confined to a single theater company and its strategies and deceptions , while Tavernier is more concerned with the entire period of history 2 +58113 2928 confined to a single theater company and its strategies and deceptions , 2 +58114 2928 confined to a single theater company and its strategies and deceptions 2 +58115 2928 to a single theater company and its strategies and deceptions 2 +58116 2928 a single theater company and its strategies and deceptions 2 +58117 2928 a single theater company and 2 +58118 2928 a single theater company 2 +58119 2928 single theater company 2 +58120 2928 theater company 2 +58121 2928 its strategies and deceptions 2 +58122 2928 strategies and deceptions 2 +58123 2928 strategies and 2 +58124 2928 strategies 3 +58125 2928 while Tavernier is more concerned with the entire period of history 2 +58126 2928 Tavernier is more concerned with the entire period of history 3 +58127 2928 is more concerned with the entire period of history 2 +58128 2928 more concerned with the entire period of history 2 +58129 2928 concerned with the entire period of history 2 +58130 2928 with the entire period of history 2 +58131 2928 the entire period of history 2 +58132 2928 the entire period 2 +58133 2928 entire period 2 +58134 2929 Both the crime story and the love story are unusual . 2 +58135 2929 Both the crime story and the love story 3 +58136 2929 the crime story and the love story 3 +58137 2929 the crime story and 2 +58138 2929 the crime story 2 +58139 2929 are unusual . 2 +58140 2929 are unusual 2 +58141 2930 Every five minutes or so , someone gets clocked . 2 +58142 2930 Every five minutes or so 2 +58143 2930 Every five minutes or 2 +58144 2930 Every five minutes 2 +58145 2930 , someone gets clocked . 2 +58146 2930 someone gets clocked . 2 +58147 2930 gets clocked . 2 +58148 2930 gets clocked 2 +58149 2930 clocked 2 +58150 2931 Well , it 's not as pathetic as The Animal . 2 +58151 2931 , it 's not as pathetic as The Animal . 1 +58152 2931 it 's not as pathetic as The Animal . 3 +58153 2931 's not as pathetic as The Animal . 1 +58154 2931 's not as pathetic as The Animal 1 +58155 2931 as pathetic as The Animal 1 +58156 2931 pathetic as The Animal 1 +58157 2931 pathetic 0 +58158 2931 as The Animal 2 +58159 2931 The Animal 2 +58160 2932 Combines sharp comedy , old-fashioned monster movie atmospherics , and genuine heart to create a film that 's not merely about kicking undead \*\*\* , but also about dealing with regret and , ultimately , finding redemption . 4 +58161 2932 Combines sharp comedy , old-fashioned monster movie atmospherics , and genuine heart to create a film that 's not merely about kicking undead \*\*\* , but also about dealing with regret and , ultimately , finding redemption 4 +58162 2932 Combines sharp comedy , old-fashioned monster movie atmospherics , and genuine heart 3 +58163 2932 sharp comedy , old-fashioned monster movie atmospherics , and genuine heart 4 +58164 2932 sharp comedy , old-fashioned monster movie atmospherics , and 3 +58165 2932 sharp comedy , old-fashioned monster movie atmospherics , 3 +58166 2932 sharp comedy , old-fashioned monster movie atmospherics 3 +58167 2932 sharp comedy , 4 +58168 2932 sharp comedy 3 +58169 2932 old-fashioned monster movie atmospherics 2 +58170 2932 monster movie atmospherics 2 +58171 2932 movie atmospherics 2 +58172 2932 atmospherics 2 +58173 2932 genuine heart 3 +58174 2932 to create a film that 's not merely about kicking undead \*\*\* , but also about dealing with regret and , ultimately , finding redemption 3 +58175 2932 create a film that 's not merely about kicking undead \*\*\* , but also about dealing with regret and , ultimately , finding redemption 3 +58176 2932 create a film that 's not merely about kicking undead \*\*\* , but also 2 +58177 2932 create a film that 's not merely about kicking undead \*\*\* , but 2 +58178 2932 create a film that 's not merely about kicking undead \*\*\* , 3 +58179 2932 create a film that 's not merely about kicking undead \*\*\* 3 +58180 2932 a film that 's not merely about kicking undead \*\*\* 3 +58181 2932 that 's not merely about kicking undead \*\*\* 2 +58182 2932 's not merely about kicking undead \*\*\* 2 +58183 2932 's not merely 2 +58184 2932 about kicking undead \*\*\* 3 +58185 2932 kicking undead \*\*\* 1 +58186 2932 undead \*\*\* 2 +58187 2932 undead 2 +58188 2932 \*\*\* 2 +58189 2932 about dealing with regret and , ultimately , finding redemption 3 +58190 2932 dealing with regret and , ultimately , finding redemption 2 +58191 2932 with regret and , ultimately , finding redemption 1 +58192 2932 regret and , ultimately , finding redemption 3 +58193 2932 regret and , ultimately , 1 +58194 2932 regret and 1 +58195 2932 , ultimately , 2 +58196 2932 ultimately , 2 +58197 2932 finding redemption 2 +58198 2933 Moretti ... is the rare common-man artist who 's wise enough to recognize that there are few things in this world more complex -- and , as it turns out , more fragile -- than happiness . 3 +58199 2933 Moretti 2 +58200 2933 ... is the rare common-man artist who 's wise enough to recognize that there are few things in this world more complex -- and , as it turns out , more fragile -- than happiness . 2 +58201 2933 is the rare common-man artist who 's wise enough to recognize that there are few things in this world more complex -- and , as it turns out , more fragile -- than happiness . 3 +58202 2933 is the rare common-man artist who 's wise enough to recognize that there are few things in this world more complex -- and , as it turns out , more fragile -- than happiness 3 +58203 2933 the rare common-man artist who 's wise enough to recognize that there are few things in this world more complex -- and , as it turns out , more fragile -- than happiness 3 +58204 2933 the rare common-man artist 3 +58205 2933 rare common-man artist 2 +58206 2933 common-man artist 2 +58207 2933 common-man 2 +58208 2933 who 's wise enough to recognize that there are few things in this world more complex -- and , as it turns out , more fragile -- than happiness 3 +58209 2933 's wise enough to recognize that there are few things in this world more complex -- and , as it turns out , more fragile -- than happiness 3 +58210 2933 wise enough to recognize that there are few things in this world more complex -- and , as it turns out , more fragile -- than happiness 3 +58211 2933 wise enough 3 +58212 2933 to recognize that there are few things in this world more complex -- and , as it turns out , more fragile -- than happiness 3 +58213 2933 recognize that there are few things in this world more complex -- and , as it turns out , more fragile -- than happiness 2 +58214 2933 recognize that there are few things in this world more complex -- and , as it turns out , more fragile -- 2 +58215 2933 recognize that there are few things in this world more complex -- and , as it turns out , more fragile 3 +58216 2933 recognize 2 +58217 2933 that there are few things in this world more complex -- and , as it turns out , more fragile 2 +58218 2933 there are few things in this world more complex -- and , as it turns out , more fragile 2 +58219 2933 are few things in this world more complex -- and , as it turns out , more fragile 3 +58220 2933 few things in this world more complex -- and , as it turns out , more fragile 2 +58221 2933 few things in this world more complex -- and , as it turns out , 2 +58222 2933 few things in this world more complex -- and 2 +58223 2933 few things in this world more complex -- 3 +58224 2933 few things in this world more complex 2 +58225 2933 few things 2 +58226 2933 in this world more complex 2 +58227 2933 this world more complex 3 +58228 2933 this world 2 +58229 2933 more complex 3 +58230 2933 , as it turns out , 2 +58231 2933 as it turns out , 2 +58232 2933 as it turns out 2 +58233 2933 it turns out 2 +58234 2933 more fragile 2 +58235 2933 than happiness 2 +58236 2934 Routine and rather silly . 2 +58237 2934 Routine and rather silly 2 +58238 2934 and rather silly 2 +58239 2934 rather silly 1 +58240 2935 ` God help us , but Capra and Cooper are rolling over in their graves . ' 1 +58241 2935 God help us , but Capra and Cooper are rolling over in their graves . ' 0 +58242 2935 God help us , but Capra and Cooper are rolling over in their graves . 0 +58243 2935 God help us , but Capra and Cooper are rolling over in their graves 0 +58244 2935 God help us , but 2 +58245 2935 God help us , 2 +58246 2935 God help us 1 +58247 2935 Capra and Cooper are rolling over in their graves 1 +58248 2935 Capra and Cooper 2 +58249 2935 Capra and 2 +58250 2935 Cooper 2 +58251 2935 are rolling over in their graves 0 +58252 2935 rolling over in their graves 0 +58253 2935 rolling over 1 +58254 2935 in their graves 2 +58255 2935 their graves 2 +58256 2935 graves 2 +58257 2936 He gets his secretary to fax it . '' 2 +58258 2936 gets his secretary to fax it . '' 2 +58259 2936 gets his secretary to fax it . 2 +58260 2936 gets his secretary to fax it 2 +58261 2936 his secretary to fax it 2 +58262 2936 secretary to fax it 2 +58263 2936 to fax it 2 +58264 2937 Begins like a docu-drama but builds its multi-character story with a flourish . 4 +58265 2937 like a docu-drama but builds its multi-character story with a flourish . 3 +58266 2937 like a docu-drama but builds its multi-character story with a flourish 3 +58267 2937 like a docu-drama but 2 +58268 2937 like a docu-drama 2 +58269 2937 a docu-drama 2 +58270 2937 docu-drama 2 +58271 2937 builds its multi-character story with a flourish 4 +58272 2937 builds its multi-character story 3 +58273 2937 its multi-character story 2 +58274 2937 multi-character story 3 +58275 2937 multi-character 2 +58276 2937 with a flourish 3 +58277 2937 a flourish 3 +58278 2937 flourish 3 +58279 2938 Playing a role of almost Bergmanesque intensity ... Bisset is both convincing and radiant . 3 +58280 2938 Playing a role of almost Bergmanesque intensity ... Bisset is both convincing and radiant 3 +58281 2938 Playing a role of almost Bergmanesque intensity ... 3 +58282 2938 Playing a role of almost Bergmanesque intensity 3 +58283 2938 a role of almost Bergmanesque intensity 3 +58284 2938 of almost Bergmanesque intensity 3 +58285 2938 almost Bergmanesque intensity 1 +58286 2938 Bergmanesque intensity 2 +58287 2938 Bergmanesque 2 +58288 2938 Bisset is both convincing and radiant 4 +58289 2938 Bisset 3 +58290 2938 is both convincing and radiant 4 +58291 2938 both convincing and radiant 3 +58292 2938 convincing and radiant 3 +58293 2938 convincing and 2 +58294 2938 radiant 3 +58295 2939 If there was ever a movie where the upbeat ending feels like a copout , this is the one . 1 +58296 2939 If there was ever a movie where the upbeat ending feels like a copout 1 +58297 2939 there was ever a movie where the upbeat ending feels like a copout 1 +58298 2939 was ever a movie where the upbeat ending feels like a copout 1 +58299 2939 was ever 2 +58300 2939 a movie where the upbeat ending feels like a copout 2 +58301 2939 where the upbeat ending feels like a copout 1 +58302 2939 the upbeat ending feels like a copout 1 +58303 2939 the upbeat ending 4 +58304 2939 upbeat ending 3 +58305 2939 feels like a copout 1 +58306 2939 like a copout 1 +58307 2939 a copout 1 +58308 2939 copout 1 +58309 2939 , this is the one . 3 +58310 2939 this is the one . 3 +58311 2939 is the one . 2 +58312 2939 is the one 3 +58313 2940 There 's none of the happily-ever - after spangle of Monsoon Wedding in Late Marriage -- and that 's part of what makes Dover Kosashvili 's outstanding feature debut so potent . 4 +58314 2940 There 's none of the happily-ever - after spangle of Monsoon Wedding in Late Marriage -- and that 's part of what makes Dover Kosashvili 's outstanding feature debut so potent 4 +58315 2940 There 's none of the happily-ever - after spangle of Monsoon Wedding in Late Marriage -- and 2 +58316 2940 There 's none of the happily-ever - after spangle of Monsoon Wedding in Late Marriage -- 2 +58317 2940 There 's none of the happily-ever 2 +58318 2940 's none of the happily-ever 2 +58319 2940 none of the happily-ever 1 +58320 2940 of the happily-ever 2 +58321 2940 the happily-ever 2 +58322 2940 happily-ever 2 +58323 2940 - after spangle of Monsoon Wedding in Late Marriage -- 2 +58324 2940 after spangle of Monsoon Wedding in Late Marriage -- 2 +58325 2940 after spangle of Monsoon Wedding in Late Marriage 2 +58326 2940 spangle of Monsoon Wedding in Late Marriage 2 +58327 2940 spangle 2 +58328 2940 of Monsoon Wedding in Late Marriage 2 +58329 2940 Monsoon Wedding in Late Marriage 2 +58330 2940 in Late Marriage 2 +58331 2940 Late Marriage 2 +58332 2940 that 's part of what makes Dover Kosashvili 's outstanding feature debut so potent 3 +58333 2940 's part of what makes Dover Kosashvili 's outstanding feature debut so potent 4 +58334 2940 part of what makes Dover Kosashvili 's outstanding feature debut so potent 3 +58335 2940 of what makes Dover Kosashvili 's outstanding feature debut so potent 4 +58336 2940 what makes Dover Kosashvili 's outstanding feature debut so potent 3 +58337 2940 makes Dover Kosashvili 's outstanding feature debut so potent 4 +58338 2940 Dover Kosashvili 's outstanding feature debut so potent 3 +58339 2940 Dover Kosashvili 's outstanding feature debut 3 +58340 2940 Dover Kosashvili 's 2 +58341 2940 Kosashvili 's 2 +58342 2940 outstanding feature debut 4 +58343 2940 so potent 4 +58344 2941 As pure over-the-top trash , any John Waters movie has it beat by a country mile . 0 +58345 2941 As pure over-the-top trash 1 +58346 2941 pure over-the-top trash 0 +58347 2941 over-the-top trash 1 +58348 2941 , any John Waters movie has it beat by a country mile . 1 +58349 2941 any John Waters movie has it beat by a country mile . 1 +58350 2941 any John Waters movie 2 +58351 2941 John Waters movie 2 +58352 2941 Waters movie 2 +58353 2941 Waters 1 +58354 2941 has it beat by a country mile . 2 +58355 2941 has it beat by a country mile 1 +58356 2941 it beat by a country mile 2 +58357 2941 beat by a country mile 2 +58358 2941 by a country mile 2 +58359 2941 a country mile 2 +58360 2941 country mile 2 +58361 2942 -LRB- Reynolds -RRB- takes a classic story , casts attractive and talented actors and uses a magnificent landscape to create a feature film that is wickedly fun to watch . 4 +58362 2942 -LRB- Reynolds -RRB- 2 +58363 2942 Reynolds -RRB- 2 +58364 2942 Reynolds 2 +58365 2942 takes a classic story , casts attractive and talented actors and uses a magnificent landscape to create a feature film that is wickedly fun to watch . 4 +58366 2942 takes a classic story , casts attractive and talented actors and uses a magnificent landscape to create a feature film that is wickedly fun to watch 4 +58367 2942 takes a classic story , casts attractive and talented actors and 3 +58368 2942 takes a classic story , casts attractive and talented actors 4 +58369 2942 takes a classic story , 2 +58370 2942 takes a classic story 3 +58371 2942 a classic story 3 +58372 2942 classic story 3 +58373 2942 casts attractive and talented actors 3 +58374 2942 casts 2 +58375 2942 attractive and talented actors 4 +58376 2942 attractive and talented 4 +58377 2942 attractive and 3 +58378 2942 uses a magnificent landscape to create a feature film that is wickedly fun to watch 4 +58379 2942 a magnificent landscape to create a feature film that is wickedly fun to watch 4 +58380 2942 magnificent landscape to create a feature film that is wickedly fun to watch 4 +58381 2942 landscape to create a feature film that is wickedly fun to watch 3 +58382 2942 to create a feature film that is wickedly fun to watch 4 +58383 2942 create a feature film that is wickedly fun to watch 4 +58384 2942 a feature film that is wickedly fun to watch 4 +58385 2942 that is wickedly fun to watch 4 +58386 2942 is wickedly fun to watch 3 +58387 2942 is wickedly fun 4 +58388 2942 wickedly fun 4 +58389 2943 A time machine , a journey back to your childhood , when cares melted away in the dark theater , and films had the ability to mesmerize , astonish and entertain . 4 +58390 2943 A time machine , a journey back to your childhood , when cares melted away in the dark theater , and films had the ability to mesmerize , astonish and entertain 4 +58391 2943 A time machine , a journey back to your childhood , when cares melted away in the dark theater , and 3 +58392 2943 A time machine , a journey back to your childhood , when cares melted away in the dark theater , 4 +58393 2943 A time machine , a journey back to your childhood , when cares melted away in the dark theater 3 +58394 2943 A time machine , a journey back to your childhood , 3 +58395 2943 A time machine , a journey back to your childhood 3 +58396 2943 A time machine , 2 +58397 2943 A time machine 2 +58398 2943 time machine 2 +58399 2943 a journey back to your childhood 3 +58400 2943 a journey back 2 +58401 2943 journey back 2 +58402 2943 to your childhood 2 +58403 2943 your childhood 2 +58404 2943 when cares melted away in the dark theater 3 +58405 2943 when cares 2 +58406 2943 melted away in the dark theater 2 +58407 2943 melted away 2 +58408 2943 melted 2 +58409 2943 in the dark theater 2 +58410 2943 the dark theater 1 +58411 2943 dark theater 2 +58412 2943 films had the ability to mesmerize , astonish and entertain 4 +58413 2943 had the ability to mesmerize , astonish and entertain 4 +58414 2943 the ability to mesmerize , astonish and entertain 4 +58415 2943 the ability 2 +58416 2943 to mesmerize , astonish and entertain 3 +58417 2943 mesmerize , astonish and entertain 3 +58418 2943 mesmerize 3 +58419 2943 , astonish and entertain 4 +58420 2943 astonish and entertain 4 +58421 2943 astonish and 3 +58422 2943 astonish 3 +58423 2943 entertain 3 +58424 2944 I hate the feeling of having been slimed in the name of High Art . 0 +58425 2944 hate the feeling of having been slimed in the name of High Art . 0 +58426 2944 hate the feeling of having been slimed in the name of High Art 1 +58427 2944 the feeling of having been slimed in the name of High Art 0 +58428 2944 the feeling 2 +58429 2944 of having been slimed in the name of High Art 1 +58430 2944 having been slimed in the name of High Art 1 +58431 2944 been slimed in the name of High Art 1 +58432 2944 slimed in the name of High Art 1 +58433 2944 slimed 1 +58434 2944 in the name of High Art 2 +58435 2944 the name of High Art 3 +58436 2944 the name 2 +58437 2944 of High Art 3 +58438 2944 High Art 3 +58439 2945 The catch is that they 're stuck with a script that prevents them from firing on all cylinders . 0 +58440 2945 The catch 2 +58441 2945 is that they 're stuck with a script that prevents them from firing on all cylinders . 1 +58442 2945 is that they 're stuck with a script that prevents them from firing on all cylinders 1 +58443 2945 that they 're stuck with a script that prevents them from firing on all cylinders 1 +58444 2945 they 're stuck with a script that prevents them from firing on all cylinders 1 +58445 2945 're stuck with a script that prevents them from firing on all cylinders 1 +58446 2945 stuck with a script that prevents them from firing on all cylinders 0 +58447 2945 stuck 2 +58448 2945 with a script that prevents them from firing on all cylinders 1 +58449 2945 a script that prevents them from firing on all cylinders 1 +58450 2945 that prevents them from firing on all cylinders 1 +58451 2945 prevents them from firing on all cylinders 1 +58452 2945 prevents them 2 +58453 2945 prevents 1 +58454 2945 from firing on all cylinders 3 +58455 2945 firing on all cylinders 4 +58456 2945 on all cylinders 3 +58457 2945 all cylinders 2 +58458 2945 cylinders 2 +58459 2946 The images are usually abbreviated in favor of mushy obviousness and telegraphed pathos , particularly where Whitaker 's misfit artist is concerned . 2 +58460 2946 are usually abbreviated in favor of mushy obviousness and telegraphed pathos , particularly where Whitaker 's misfit artist is concerned . 1 +58461 2946 are usually abbreviated in favor of mushy obviousness and telegraphed pathos , particularly where Whitaker 's misfit artist is concerned 2 +58462 2946 are usually abbreviated in favor of mushy obviousness and 2 +58463 2946 are usually abbreviated in favor of mushy obviousness 2 +58464 2946 are usually 3 +58465 2946 abbreviated in favor of mushy obviousness 1 +58466 2946 abbreviated 2 +58467 2946 in favor of mushy obviousness 1 +58468 2946 favor of mushy obviousness 2 +58469 2946 of mushy obviousness 1 +58470 2946 mushy obviousness 2 +58471 2946 mushy 1 +58472 2946 obviousness 2 +58473 2946 telegraphed pathos , particularly where Whitaker 's misfit artist is concerned 2 +58474 2946 telegraphed pathos , particularly 2 +58475 2946 telegraphed pathos , 2 +58476 2946 telegraphed pathos 2 +58477 2946 where Whitaker 's misfit artist is concerned 2 +58478 2946 Whitaker 's misfit artist is concerned 2 +58479 2946 Whitaker 's misfit artist 2 +58480 2946 Whitaker 's 2 +58481 2946 Whitaker 2 +58482 2946 misfit artist 1 +58483 2946 misfit 2 +58484 2946 is concerned 2 +58485 2947 Just entertaining enough not to hate , too mediocre to love . 2 +58486 2947 Just entertaining enough not to hate 2 +58487 2947 Just entertaining 3 +58488 2947 enough not to hate 3 +58489 2947 not to hate 2 +58490 2947 , too mediocre to love . 0 +58491 2947 too mediocre to love . 1 +58492 2947 too mediocre 1 +58493 2947 to love . 3 +58494 2947 to love 2 +58495 2948 A movie more to be prescribed than recommended -- as visually bland as a dentist 's waiting room , complete with soothing Muzak and a cushion of predictable narrative rhythms . 0 +58496 2948 more to be prescribed than recommended -- as visually bland as a dentist 's waiting room , complete with soothing Muzak and a cushion of predictable narrative rhythms . 0 +58497 2948 more to be prescribed than recommended -- as visually bland as a dentist 's waiting room , complete with soothing Muzak and a cushion of predictable narrative rhythms 0 +58498 2948 to be prescribed than recommended -- as visually bland as a dentist 's waiting room , complete with soothing Muzak and a cushion of predictable narrative rhythms 1 +58499 2948 be prescribed than recommended -- as visually bland as a dentist 's waiting room , complete with soothing Muzak and a cushion of predictable narrative rhythms 0 +58500 2948 prescribed than recommended -- as visually bland as a dentist 's waiting room , complete with soothing Muzak and a cushion of predictable narrative rhythms 1 +58501 2948 prescribed 3 +58502 2948 than recommended -- as visually bland as a dentist 's waiting room , complete with soothing Muzak and a cushion of predictable narrative rhythms 3 +58503 2948 recommended -- as visually bland as a dentist 's waiting room , complete with soothing Muzak and a cushion of predictable narrative rhythms 1 +58504 2948 recommended -- as visually bland as a dentist 's waiting room , complete with soothing Muzak and 1 +58505 2948 recommended -- as visually bland as a dentist 's waiting room , complete with soothing Muzak 0 +58506 2948 recommended -- as visually bland as a dentist 's waiting room , 0 +58507 2948 recommended -- as visually bland as a dentist 's waiting room 1 +58508 2948 recommended -- 3 +58509 2948 as visually bland as a dentist 's waiting room 1 +58510 2948 as visually bland 1 +58511 2948 visually bland 1 +58512 2948 as a dentist 's waiting room 1 +58513 2948 a dentist 's waiting room 1 +58514 2948 a dentist 's 2 +58515 2948 dentist 's 2 +58516 2948 waiting room 2 +58517 2948 complete with soothing Muzak 2 +58518 2948 with soothing Muzak 2 +58519 2948 soothing Muzak 2 +58520 2948 soothing 2 +58521 2948 Muzak 2 +58522 2948 a cushion of predictable narrative rhythms 2 +58523 2948 a cushion 2 +58524 2948 cushion 2 +58525 2948 of predictable narrative rhythms 1 +58526 2948 predictable narrative rhythms 2 +58527 2948 narrative rhythms 2 +58528 2949 Takes a fresh and absorbing look at a figure whose legacy had begun to bronze . 3 +58529 2949 Takes a fresh and absorbing look at a figure whose legacy had begun to bronze 4 +58530 2949 Takes a fresh and absorbing look 4 +58531 2949 a fresh and absorbing look 4 +58532 2949 fresh and absorbing look 3 +58533 2949 fresh and absorbing 4 +58534 2949 at a figure whose legacy had begun to bronze 2 +58535 2949 a figure whose legacy had begun to bronze 2 +58536 2949 a figure 2 +58537 2949 whose legacy had begun to bronze 3 +58538 2949 whose legacy 2 +58539 2949 legacy 2 +58540 2949 had begun to bronze 2 +58541 2949 begun to bronze 2 +58542 2949 to bronze 2 +58543 2949 bronze 3 +58544 2950 The film does give a pretty good overall picture of the situation in Laramie following the murder of Matthew Shepard . 3 +58545 2950 does give a pretty good overall picture of the situation in Laramie following the murder of Matthew Shepard . 3 +58546 2950 does give a pretty good overall picture of the situation in Laramie following the murder of Matthew Shepard 3 +58547 2950 give a pretty good overall picture of the situation in Laramie following the murder of Matthew Shepard 3 +58548 2950 give a pretty good overall picture of the situation 3 +58549 2950 a pretty good overall picture of the situation 3 +58550 2950 a pretty good overall picture 4 +58551 2950 pretty good overall picture 3 +58552 2950 overall picture 2 +58553 2950 of the situation 2 +58554 2950 in Laramie following the murder of Matthew Shepard 1 +58555 2950 Laramie following the murder of Matthew Shepard 2 +58556 2950 Laramie 2 +58557 2950 following the murder of Matthew Shepard 2 +58558 2950 the murder of Matthew Shepard 2 +58559 2950 of Matthew Shepard 3 +58560 2950 Matthew Shepard 2 +58561 2950 Shepard 2 +58562 2951 At times THE GUYS taps into some powerful emotions , but this kind of material is more effective on stage . 2 +58563 2951 At times THE GUYS taps into some powerful emotions , but this kind of material is more effective on stage 2 +58564 2951 At times THE GUYS taps into some powerful emotions , but 3 +58565 2951 At times THE GUYS taps into some powerful emotions , 3 +58566 2951 At times THE GUYS taps into some powerful emotions 3 +58567 2951 THE GUYS taps into some powerful emotions 4 +58568 2951 taps into some powerful emotions 3 +58569 2951 into some powerful emotions 2 +58570 2951 some powerful emotions 3 +58571 2951 powerful emotions 3 +58572 2951 this kind of material is more effective on stage 1 +58573 2951 this kind of material 1 +58574 2951 is more effective on stage 1 +58575 2951 more effective on stage 1 +58576 2951 effective on stage 3 +58577 2951 on stage 2 +58578 2952 It 's a documentary that says that the alternate sexuality meant to set you free may require so much relationship maintenance that celibacy can start looking good . 2 +58579 2952 's a documentary that says that the alternate sexuality meant to set you free may require so much relationship maintenance that celibacy can start looking good . 1 +58580 2952 's a documentary that says that the alternate sexuality meant to set you free may require so much relationship maintenance that celibacy can start looking good 2 +58581 2952 a documentary that says that the alternate sexuality meant to set you free may require so much relationship maintenance that celibacy can start looking good 2 +58582 2952 that says that the alternate sexuality meant to set you free may require so much relationship maintenance that celibacy can start looking good 1 +58583 2952 says that the alternate sexuality meant to set you free may require so much relationship maintenance that celibacy can start looking good 1 +58584 2952 that the alternate sexuality meant to set you free may require so much relationship maintenance that celibacy can start looking good 2 +58585 2952 the alternate sexuality meant to set you free may require so much relationship maintenance that celibacy can start looking good 1 +58586 2952 the alternate sexuality meant to set you free 2 +58587 2952 the alternate sexuality 2 +58588 2952 alternate sexuality 3 +58589 2952 sexuality 2 +58590 2952 meant to set you free 2 +58591 2952 to set you free 2 +58592 2952 set you free 3 +58593 2952 you free 2 +58594 2952 may require so much relationship maintenance that celibacy can start looking good 1 +58595 2952 require so much relationship maintenance that celibacy can start looking good 2 +58596 2952 require so much 2 +58597 2952 relationship maintenance that celibacy can start looking good 1 +58598 2952 relationship maintenance 2 +58599 2952 maintenance 2 +58600 2952 that celibacy can start looking good 2 +58601 2952 celibacy can start looking good 2 +58602 2952 celibacy 2 +58603 2952 can start looking good 3 +58604 2952 start looking good 3 +58605 2952 looking good 3 +58606 2953 For those in search of something different , Wendigo is a genuinely bone-chilling tale . 3 +58607 2953 For those in search of something different 2 +58608 2953 those in search of something different 2 +58609 2953 in search of something different 2 +58610 2953 search of something different 3 +58611 2953 of something different 2 +58612 2953 , Wendigo is a genuinely bone-chilling tale . 4 +58613 2953 Wendigo is a genuinely bone-chilling tale . 3 +58614 2953 is a genuinely bone-chilling tale . 3 +58615 2953 is a genuinely bone-chilling tale 4 +58616 2953 a genuinely bone-chilling tale 3 +58617 2953 genuinely bone-chilling tale 3 +58618 2953 genuinely bone-chilling 3 +58619 2953 bone-chilling 3 +58620 2954 A riveting profile of law enforcement , and a visceral , nasty journey into an urban Hades . 3 +58621 2954 A riveting profile of law enforcement , and a visceral , nasty journey into an urban Hades 3 +58622 2954 A riveting profile of law enforcement , and a visceral , nasty journey 3 +58623 2954 A riveting profile 4 +58624 2954 riveting profile 3 +58625 2954 of law enforcement , and a visceral , nasty journey 1 +58626 2954 law enforcement , and a visceral , nasty journey 1 +58627 2954 law enforcement , and 2 +58628 2954 law enforcement , 2 +58629 2954 law enforcement 2 +58630 2954 enforcement 2 +58631 2954 a visceral , nasty journey 2 +58632 2954 visceral , nasty journey 1 +58633 2954 , nasty journey 1 +58634 2954 nasty journey 1 +58635 2954 into an urban Hades 1 +58636 2954 an urban Hades 2 +58637 2954 urban Hades 2 +58638 2954 Hades 2 +58639 2955 The movie slides downhill as soon as macho action conventions assert themselves . 0 +58640 2955 slides downhill as soon as macho action conventions assert themselves . 0 +58641 2955 slides downhill as soon as macho action conventions assert themselves 1 +58642 2955 slides 2 +58643 2955 downhill as soon as macho action conventions assert themselves 1 +58644 2955 downhill as soon 2 +58645 2955 as macho action conventions assert themselves 2 +58646 2955 macho action conventions assert themselves 2 +58647 2955 macho action conventions 2 +58648 2955 macho 2 +58649 2955 action conventions 2 +58650 2955 conventions 2 +58651 2955 assert themselves 2 +58652 2955 assert 1 +58653 2956 Peter Jackson has done the nearly impossible . 3 +58654 2956 has done the nearly impossible . 3 +58655 2956 has done the nearly impossible 3 +58656 2956 done the nearly impossible 3 +58657 2957 With its jerky hand-held camera and documentary feel , Bloody Sunday is a sobering recount of a very bleak day in Derry . 2 +58658 2957 With its jerky hand-held camera and documentary feel 2 +58659 2957 its jerky hand-held camera and documentary feel 2 +58660 2957 jerky hand-held camera and documentary feel 2 +58661 2957 jerky 0 +58662 2957 hand-held camera and documentary feel 3 +58663 2957 hand-held 2 +58664 2957 camera and documentary feel 2 +58665 2957 and documentary feel 2 +58666 2957 documentary feel 2 +58667 2957 , Bloody Sunday is a sobering recount of a very bleak day in Derry . 3 +58668 2957 Bloody Sunday is a sobering recount of a very bleak day in Derry . 2 +58669 2957 is a sobering recount of a very bleak day in Derry . 2 +58670 2957 is a sobering recount of a very bleak day in Derry 2 +58671 2957 a sobering recount of a very bleak day in Derry 3 +58672 2957 a sobering recount 2 +58673 2957 sobering recount 2 +58674 2957 of a very bleak day in Derry 2 +58675 2957 a very bleak day in Derry 2 +58676 2957 a very bleak day 1 +58677 2957 very bleak day 1 +58678 2957 very bleak 1 +58679 2957 in Derry 1 +58680 2957 Derry 2 +58681 2958 These characters become wearisome . 1 +58682 2958 become wearisome . 1 +58683 2958 become wearisome 1 +58684 2958 wearisome 0 +58685 2959 Earnest but heavy-handed . 2 +58686 2959 Earnest but heavy-handed 3 +58687 2959 Earnest but 2 +58688 2960 Until it goes off the rails in its final 10 or 15 minutes , Wendigo , Larry Fessenden 's spooky new thriller , is a refreshingly smart and newfangled variation on several themes derived from far less sophisticated and knowing horror films . 3 +58689 2960 Until it goes off the rails in its final 10 or 15 minutes 1 +58690 2960 it goes off the rails in its final 10 or 15 minutes 1 +58691 2960 goes off the rails in its final 10 or 15 minutes 0 +58692 2960 goes off 2 +58693 2960 the rails in its final 10 or 15 minutes 2 +58694 2960 the rails 2 +58695 2960 rails 2 +58696 2960 in its final 10 or 15 minutes 2 +58697 2960 its final 10 or 15 minutes 2 +58698 2960 final 10 or 15 minutes 2 +58699 2960 10 or 15 minutes 2 +58700 2960 or 15 minutes 2 +58701 2960 , Wendigo , Larry Fessenden 's spooky new thriller , is a refreshingly smart and newfangled variation on several themes derived from far less sophisticated and knowing horror films . 3 +58702 2960 Wendigo , Larry Fessenden 's spooky new thriller , is a refreshingly smart and newfangled variation on several themes derived from far less sophisticated and knowing horror films . 4 +58703 2960 Wendigo , Larry Fessenden 's spooky new thriller , 2 +58704 2960 Wendigo , Larry Fessenden 's spooky new thriller 2 +58705 2960 Wendigo , 2 +58706 2960 Larry Fessenden 's spooky new thriller 3 +58707 2960 Larry Fessenden 's 2 +58708 2960 Larry 2 +58709 2960 spooky new thriller 3 +58710 2960 new thriller 2 +58711 2960 is a refreshingly smart and newfangled variation on several themes derived from far less sophisticated and knowing horror films . 3 +58712 2960 is a refreshingly smart and newfangled variation on several themes derived from far less sophisticated and knowing horror films 4 +58713 2960 a refreshingly smart and newfangled variation on several themes derived from far less sophisticated and knowing horror films 4 +58714 2960 a refreshingly smart and newfangled variation 3 +58715 2960 refreshingly smart and newfangled variation 3 +58716 2960 refreshingly smart and newfangled 4 +58717 2960 smart and newfangled 3 +58718 2960 variation 2 +58719 2960 on several themes derived from far less sophisticated and knowing horror films 2 +58720 2960 several themes derived from far less sophisticated and knowing horror films 2 +58721 2960 several themes 2 +58722 2960 derived from far less sophisticated and knowing horror films 1 +58723 2960 derived 2 +58724 2960 from far less sophisticated and knowing horror films 2 +58725 2960 far less sophisticated and knowing horror films 2 +58726 2960 far less sophisticated and 1 +58727 2960 far less sophisticated 1 +58728 2960 far less 1 +58729 2960 knowing horror films 2 +58730 2960 horror films 2 +58731 2961 -LRB- Moore 's -RRB- better at fingering problems than finding solutions . 1 +58732 2961 Moore 's -RRB- better at fingering problems than finding solutions . 1 +58733 2961 's -RRB- better at fingering problems than finding solutions . 1 +58734 2961 's -RRB- better at fingering problems than finding solutions 1 +58735 2961 better at fingering problems than finding solutions 1 +58736 2961 better at 2 +58737 2961 fingering problems than finding solutions 1 +58738 2961 fingering 2 +58739 2961 problems than finding solutions 2 +58740 2961 than finding solutions 2 +58741 2961 finding solutions 2 +58742 2962 But for the most part , The Weight of Water comes off as a two-way time-switching myopic mystery that stalls in its lackluster gear of emotional blandness . 1 +58743 2962 for the most part , The Weight of Water comes off as a two-way time-switching myopic mystery that stalls in its lackluster gear of emotional blandness . 0 +58744 2962 , The Weight of Water comes off as a two-way time-switching myopic mystery that stalls in its lackluster gear of emotional blandness . 1 +58745 2962 The Weight of Water comes off as a two-way time-switching myopic mystery that stalls in its lackluster gear of emotional blandness . 0 +58746 2962 The Weight of Water 2 +58747 2962 of Water 2 +58748 2962 comes off as a two-way time-switching myopic mystery that stalls in its lackluster gear of emotional blandness . 1 +58749 2962 comes off as a two-way time-switching myopic mystery that stalls in its lackluster gear of emotional blandness 0 +58750 2962 as a two-way time-switching myopic mystery that stalls in its lackluster gear of emotional blandness 1 +58751 2962 a two-way time-switching myopic mystery that stalls in its lackluster gear of emotional blandness 0 +58752 2962 a two-way time-switching myopic mystery 2 +58753 2962 two-way time-switching myopic mystery 2 +58754 2962 two-way 3 +58755 2962 time-switching myopic mystery 2 +58756 2962 time-switching 2 +58757 2962 myopic mystery 2 +58758 2962 myopic 1 +58759 2962 that stalls in its lackluster gear of emotional blandness 0 +58760 2962 stalls in its lackluster gear of emotional blandness 1 +58761 2962 stalls 1 +58762 2962 in its lackluster gear of emotional blandness 0 +58763 2962 its lackluster gear of emotional blandness 0 +58764 2962 its lackluster gear 1 +58765 2962 lackluster gear 2 +58766 2962 lackluster 1 +58767 2962 of emotional blandness 1 +58768 2962 emotional blandness 1 +58769 2963 Heartwarming and gently comic even as the film breaks your heart . 3 +58770 2963 Heartwarming and gently comic even as the film breaks your heart 4 +58771 2963 Heartwarming and 3 +58772 2963 gently comic even as the film breaks your heart 4 +58773 2963 comic even as the film breaks your heart 2 +58774 2963 even as the film breaks your heart 2 +58775 2963 as the film breaks your heart 3 +58776 2963 the film breaks your heart 2 +58777 2963 breaks your heart 3 +58778 2964 The fluid motion is astounding on any number of levels 4 +58779 2964 The fluid motion 2 +58780 2964 fluid motion 2 +58781 2964 is astounding on any number of levels 3 +58782 2964 astounding on any number of levels 4 +58783 2964 on any number of levels 2 +58784 2964 any number of levels 2 +58785 2964 of levels 2 +58786 2964 the physical demands 2 +58787 2964 physical demands 2 +58788 2964 it implies in its wake the intractable , irreversible flow of history 2 +58789 2964 implies in its wake the intractable , irreversible flow of history 3 +58790 2964 implies in its wake 2 +58791 2964 in its wake 2 +58792 2964 its wake 2 +58793 2964 wake 2 +58794 2964 the intractable , irreversible flow of history 2 +58795 2964 the intractable , irreversible flow 2 +58796 2964 intractable , irreversible flow 2 +58797 2964 intractable 2 +58798 2964 , irreversible flow 2 +58799 2964 irreversible flow 2 +58800 2964 irreversible 2 +58801 2965 Despite terrific special effects and funnier gags , Harry Potter and the Chamber of Secrets finds a way to make J.K. Rowling 's marvelous series into a deadly bore . 0 +58802 2965 Despite terrific special effects and funnier gags 3 +58803 2965 terrific special effects and funnier gags 3 +58804 2965 terrific special effects and 4 +58805 2965 terrific special effects 4 +58806 2965 funnier gags 3 +58807 2965 , Harry Potter and the Chamber of Secrets finds a way to make J.K. Rowling 's marvelous series into a deadly bore . 0 +58808 2965 Harry Potter and the Chamber of Secrets finds a way to make J.K. Rowling 's marvelous series into a deadly bore . 0 +58809 2965 Harry Potter and the Chamber of Secrets 2 +58810 2965 Harry Potter and 2 +58811 2965 Harry Potter 2 +58812 2965 Potter 2 +58813 2965 the Chamber of Secrets 2 +58814 2965 the Chamber 2 +58815 2965 Chamber 2 +58816 2965 of Secrets 2 +58817 2965 finds a way to make J.K. Rowling 's marvelous series into a deadly bore . 0 +58818 2965 finds a way to make J.K. Rowling 's marvelous series into a deadly bore 1 +58819 2965 a way to make J.K. Rowling 's marvelous series into a deadly bore 0 +58820 2965 way to make J.K. Rowling 's marvelous series into a deadly bore 0 +58821 2965 to make J.K. Rowling 's marvelous series into a deadly bore 0 +58822 2965 make J.K. Rowling 's marvelous series into a deadly bore 1 +58823 2965 make J.K. Rowling 's marvelous series 3 +58824 2965 J.K. Rowling 's marvelous series 4 +58825 2965 J.K. Rowling 's 2 +58826 2965 J.K. 2 +58827 2965 Rowling 's 2 +58828 2965 Rowling 2 +58829 2965 marvelous series 4 +58830 2965 into a deadly bore 0 +58831 2965 a deadly bore 0 +58832 2965 deadly bore 0 +58833 2966 May be more genial than ingenious , but it gets the job done . 3 +58834 2966 May be more genial than ingenious , but it gets the job done 3 +58835 2966 May be more genial than ingenious , but 3 +58836 2966 May be more genial than ingenious , 2 +58837 2966 May be more genial than ingenious 2 +58838 2966 be more genial than ingenious 1 +58839 2966 more genial than ingenious 2 +58840 2966 genial than ingenious 1 +58841 2966 than ingenious 2 +58842 2966 ingenious 4 +58843 2966 it gets the job done 2 +58844 2966 gets the job done 3 +58845 2966 the job done 2 +58846 2967 is a mess . 0 +58847 2967 is a mess 2 +58848 2968 The only type of lives this glossy comedy-drama resembles are ones in formulaic mainstream movies . 1 +58849 2968 The only type of lives this glossy comedy-drama resembles 2 +58850 2968 The only type 2 +58851 2968 only type 2 +58852 2968 of lives this glossy comedy-drama resembles 2 +58853 2968 lives this glossy comedy-drama resembles 2 +58854 2968 this glossy comedy-drama resembles 2 +58855 2968 this glossy comedy-drama 2 +58856 2968 glossy comedy-drama 2 +58857 2968 are ones in formulaic mainstream movies . 2 +58858 2968 are ones in formulaic mainstream movies 2 +58859 2968 ones in formulaic mainstream movies 2 +58860 2968 in formulaic mainstream movies 2 +58861 2968 formulaic mainstream movies 2 +58862 2968 mainstream movies 2 +58863 2969 Surprisingly , the film is a hilarious adventure and I shamelessly enjoyed it . 3 +58864 2969 , the film is a hilarious adventure and I shamelessly enjoyed it . 3 +58865 2969 the film is a hilarious adventure and I shamelessly enjoyed it . 4 +58866 2969 the film is a hilarious adventure and I shamelessly enjoyed it 3 +58867 2969 the film is a hilarious adventure and 3 +58868 2969 the film is a hilarious adventure 4 +58869 2969 is a hilarious adventure 4 +58870 2969 a hilarious adventure 3 +58871 2969 hilarious adventure 3 +58872 2969 I shamelessly enjoyed it 4 +58873 2969 shamelessly enjoyed it 3 +58874 2969 shamelessly 2 +58875 2969 enjoyed it 3 +58876 2970 A clumsily manufactured exploitation flick , a style-free exercise in manipulation and mayhem . 1 +58877 2970 A clumsily manufactured exploitation flick , a style-free exercise in manipulation and mayhem 0 +58878 2970 A clumsily manufactured exploitation flick , 0 +58879 2970 A clumsily manufactured exploitation flick 0 +58880 2970 clumsily manufactured exploitation flick 1 +58881 2970 manufactured exploitation flick 2 +58882 2970 exploitation flick 1 +58883 2970 a style-free exercise in manipulation and mayhem 2 +58884 2970 a style-free exercise 2 +58885 2970 style-free exercise 2 +58886 2970 style-free 1 +58887 2970 in manipulation and mayhem 1 +58888 2970 manipulation and mayhem 2 +58889 2970 manipulation and 2 +58890 2970 manipulation 2 +58891 2971 Never lets go your emotions , taking them to surprising highs , sorrowful lows and hidden impulsive niches ... gorgeous , passionate , and at times uncommonly moving . 3 +58892 2971 lets go your emotions , taking them to surprising highs , sorrowful lows and hidden impulsive niches ... gorgeous , passionate , and at times uncommonly moving . 4 +58893 2971 lets go your emotions , taking them to surprising highs , sorrowful lows and hidden impulsive niches ... gorgeous , passionate , and at times uncommonly moving 3 +58894 2971 go your emotions , taking them to surprising highs , sorrowful lows and hidden impulsive niches ... gorgeous , passionate , and at times uncommonly moving 3 +58895 2971 go your emotions , 2 +58896 2971 go your emotions 2 +58897 2971 your emotions 2 +58898 2971 taking them to surprising highs , sorrowful lows and hidden impulsive niches ... gorgeous , passionate , and at times uncommonly moving 4 +58899 2971 taking them 3 +58900 2971 to surprising highs , sorrowful lows and hidden impulsive niches ... gorgeous , passionate , and at times uncommonly moving 4 +58901 2971 surprising highs , sorrowful lows and hidden impulsive niches ... gorgeous , passionate , and at times uncommonly moving 4 +58902 2971 surprising highs , sorrowful lows and hidden impulsive niches ... 3 +58903 2971 surprising highs , sorrowful lows and hidden impulsive niches 3 +58904 2971 surprising highs , sorrowful lows and 3 +58905 2971 surprising highs , sorrowful lows 2 +58906 2971 surprising highs , 3 +58907 2971 surprising highs 3 +58908 2971 highs 2 +58909 2971 sorrowful lows 1 +58910 2971 sorrowful 2 +58911 2971 lows 2 +58912 2971 hidden impulsive niches 2 +58913 2971 impulsive niches 2 +58914 2971 impulsive 2 +58915 2971 niches 3 +58916 2971 gorgeous , passionate , and at times uncommonly moving 4 +58917 2971 gorgeous , passionate 4 +58918 2971 , passionate 3 +58919 2971 , and at times uncommonly moving 4 +58920 2971 at times uncommonly moving 3 +58921 2971 times uncommonly moving 3 +58922 2971 uncommonly moving 3 +58923 2971 uncommonly 2 +58924 2972 Tsai has a well-deserved reputation as one of the cinema world 's great visual stylists , and in this film , every shot enhances the excellent performances . 3 +58925 2972 Tsai has a well-deserved reputation as one of the cinema world 's great visual stylists , and in this film , every shot enhances the excellent performances 4 +58926 2972 Tsai has a well-deserved reputation as one of the cinema world 's great visual stylists , and 3 +58927 2972 Tsai has a well-deserved reputation as one of the cinema world 's great visual stylists , 4 +58928 2972 Tsai has a well-deserved reputation as one of the cinema world 's great visual stylists 3 +58929 2972 has a well-deserved reputation as one of the cinema world 's great visual stylists 4 +58930 2972 a well-deserved reputation as one of the cinema world 's great visual stylists 4 +58931 2972 a well-deserved reputation as one 3 +58932 2972 a well-deserved reputation 3 +58933 2972 well-deserved reputation 3 +58934 2972 well-deserved 3 +58935 2972 of the cinema world 's great visual stylists 3 +58936 2972 the cinema world 's great visual stylists 3 +58937 2972 the cinema world 's 2 +58938 2972 cinema world 's 2 +58939 2972 great visual stylists 4 +58940 2972 visual stylists 2 +58941 2972 stylists 3 +58942 2972 in this film , every shot enhances the excellent performances 4 +58943 2972 , every shot enhances the excellent performances 4 +58944 2972 every shot enhances the excellent performances 4 +58945 2972 every shot 2 +58946 2972 enhances the excellent performances 4 +58947 2972 the excellent performances 4 +58948 2972 excellent performances 4 +58949 2973 Just consider what New Best Friend does not have , beginning with the minor omission of a screenplay . 1 +58950 2973 consider what New Best Friend does not have , beginning with the minor omission of a screenplay . 1 +58951 2973 consider what New Best Friend does not have , beginning with the minor omission of a screenplay 1 +58952 2973 what New Best Friend does not have , beginning with the minor omission of a screenplay 1 +58953 2973 New Best Friend does not have , beginning with the minor omission of a screenplay 1 +58954 2973 New Best Friend 2 +58955 2973 Best Friend 2 +58956 2973 does not have , beginning with the minor omission of a screenplay 1 +58957 2973 does not have , 2 +58958 2973 does not have 3 +58959 2973 beginning with the minor omission of a screenplay 1 +58960 2973 with the minor omission of a screenplay 2 +58961 2973 the minor omission of a screenplay 2 +58962 2973 the minor omission 2 +58963 2973 minor omission 2 +58964 2973 omission 2 +58965 2973 of a screenplay 2 +58966 2974 Munch 's screenplay is tenderly observant of his characters . 3 +58967 2974 Munch 's screenplay 2 +58968 2974 Munch 's 2 +58969 2974 Munch 2 +58970 2974 is tenderly observant of his characters . 3 +58971 2974 is tenderly observant of his characters 4 +58972 2974 tenderly observant of his characters 3 +58973 2974 tenderly 2 +58974 2974 observant of his characters 3 +58975 2975 In the long , dishonorable history of quickie teen-pop exploitation , Like Mike stands out for its only partly synthetic decency . 2 +58976 2975 In the long , dishonorable history of quickie teen-pop exploitation 1 +58977 2975 the long , dishonorable history of quickie teen-pop exploitation 0 +58978 2975 the long , dishonorable history 0 +58979 2975 long , dishonorable history 0 +58980 2975 , dishonorable history 1 +58981 2975 dishonorable history 2 +58982 2975 dishonorable 1 +58983 2975 of quickie teen-pop exploitation 1 +58984 2975 quickie teen-pop exploitation 1 +58985 2975 teen-pop exploitation 1 +58986 2975 teen-pop 3 +58987 2975 , Like Mike stands out for its only partly synthetic decency . 2 +58988 2975 Like Mike stands out for its only partly synthetic decency . 3 +58989 2975 stands out for its only partly synthetic decency . 2 +58990 2975 stands out for its only partly synthetic decency 2 +58991 2975 stands out 3 +58992 2975 for its only partly synthetic decency 2 +58993 2975 its only partly synthetic decency 2 +58994 2975 only partly synthetic decency 2 +58995 2975 only partly 2 +58996 2975 synthetic decency 2 +58997 2975 decency 2 +58998 2976 There 's no energy . 0 +58999 2976 's no energy . 1 +59000 2976 's no energy 1 +59001 2977 Lacking substance and soul , Crossroads comes up shorter than Britney 's cutoffs . 1 +59002 2977 Lacking substance and soul 1 +59003 2977 substance and soul 3 +59004 2977 substance and 2 +59005 2977 , Crossroads comes up shorter than Britney 's cutoffs . 0 +59006 2977 Crossroads comes up shorter than Britney 's cutoffs . 0 +59007 2977 comes up shorter than Britney 's cutoffs . 1 +59008 2977 comes up shorter than Britney 's cutoffs 0 +59009 2977 comes up 2 +59010 2977 shorter than Britney 's cutoffs 1 +59011 2977 than Britney 's cutoffs 2 +59012 2977 Britney 's cutoffs 1 +59013 2977 Britney 's 2 +59014 2977 cutoffs 2 +59015 2978 So unique and stubborn and charismatic that you want it to be better and more successful than it is . 2 +59016 2978 So unique and stubborn and charismatic 3 +59017 2978 So unique and 3 +59018 2978 So unique 3 +59019 2978 stubborn and charismatic 2 +59020 2978 stubborn and 2 +59021 2978 stubborn 2 +59022 2978 that you want it to be better and more successful than it is . 2 +59023 2978 that you want it to be better and more successful than it is 2 +59024 2978 you want it to be better and more successful than it is 1 +59025 2978 want it to be better and more successful than it is 1 +59026 2978 it to be better and more successful than it is 3 +59027 2978 to be better and more successful than it is 2 +59028 2978 be better and more successful than it is 2 +59029 2978 be better and more successful 3 +59030 2978 better and more successful 2 +59031 2978 better and 3 +59032 2978 than it is 2 +59033 2979 I 'm not saying that Ice Age does n't have some fairly pretty pictures , but there 's not enough substance in the story to actually give them life . 2 +59034 2979 I 'm not saying that Ice Age does n't have some fairly pretty pictures , but there 's not enough substance in the story to actually give them life 2 +59035 2979 I 'm not saying that Ice Age does n't have some fairly pretty pictures , but 2 +59036 2979 I 'm not saying that Ice Age does n't have some fairly pretty pictures , 2 +59037 2979 I 'm not saying that Ice Age does n't have some fairly pretty pictures 2 +59038 2979 'm not saying that Ice Age does n't have some fairly pretty pictures 2 +59039 2979 saying that Ice Age does n't have some fairly pretty pictures 2 +59040 2979 that Ice Age does n't have some fairly pretty pictures 2 +59041 2979 Ice Age does n't have some fairly pretty pictures 0 +59042 2979 does n't have some fairly pretty pictures 1 +59043 2979 have some fairly pretty pictures 3 +59044 2979 some fairly pretty pictures 2 +59045 2979 fairly pretty pictures 3 +59046 2979 fairly pretty 3 +59047 2979 there 's not enough substance in the story to actually give them life 0 +59048 2979 's not enough substance in the story to actually give them life 1 +59049 2979 enough substance in the story to actually give them life 3 +59050 2979 enough substance 3 +59051 2979 in the story to actually give them life 2 +59052 2979 the story to actually give them life 3 +59053 2979 story to actually give them life 2 +59054 2979 to actually give them life 2 +59055 2979 actually give them life 3 +59056 2979 give them life 2 +59057 2980 You do n't know whether to admire the film 's stately nature and call it classicism or be exasperated by a noticeable lack of pace . 1 +59058 2980 do n't know whether to admire the film 's stately nature and call it classicism or be exasperated by a noticeable lack of pace . 2 +59059 2980 do n't know whether to admire the film 's stately nature and call it classicism or be exasperated by a noticeable lack of pace 1 +59060 2980 know whether to admire the film 's stately nature and call it classicism or be exasperated by a noticeable lack of pace 2 +59061 2980 whether to admire the film 's stately nature and call it classicism or be exasperated by a noticeable lack of pace 1 +59062 2980 to admire the film 's stately nature and call it classicism or be exasperated by a noticeable lack of pace 2 +59063 2980 admire the film 's stately nature and call it classicism or be exasperated by a noticeable lack of pace 1 +59064 2980 admire the film 's stately nature and 4 +59065 2980 admire the film 's stately nature 3 +59066 2980 the film 's stately nature 2 +59067 2980 stately nature 2 +59068 2980 call it classicism or be exasperated by a noticeable lack of pace 0 +59069 2980 it classicism or be exasperated by a noticeable lack of pace 1 +59070 2980 classicism or be exasperated by a noticeable lack of pace 2 +59071 2980 classicism or 2 +59072 2980 classicism 2 +59073 2980 be exasperated by a noticeable lack of pace 0 +59074 2980 exasperated by a noticeable lack of pace 1 +59075 2980 exasperated 1 +59076 2980 by a noticeable lack of pace 1 +59077 2980 a noticeable lack of pace 1 +59078 2980 a noticeable lack 2 +59079 2980 noticeable lack 1 +59080 2980 noticeable 2 +59081 2980 of pace 2 +59082 2981 Without resorting to camp or parody , Haynes -LRB- like Sirk , but differently -RRB- has transformed the rhetoric of Hollywood melodrama into something provocative , rich , and strange . 4 +59083 2981 Without resorting to camp or parody 3 +59084 2981 resorting to camp or parody 1 +59085 2981 resorting 2 +59086 2981 to camp or parody 2 +59087 2981 camp or parody 2 +59088 2981 camp or 2 +59089 2981 , Haynes -LRB- like Sirk , but differently -RRB- has transformed the rhetoric of Hollywood melodrama into something provocative , rich , and strange . 3 +59090 2981 Haynes -LRB- like Sirk , but differently -RRB- has transformed the rhetoric of Hollywood melodrama into something provocative , rich , and strange . 3 +59091 2981 Haynes -LRB- like Sirk , but differently -RRB- 2 +59092 2981 Haynes -LRB- like Sirk , but differently 2 +59093 2981 Haynes -LRB- 2 +59094 2981 like Sirk , but differently 2 +59095 2981 like Sirk 2 +59096 2981 Sirk 3 +59097 2981 , but differently 2 +59098 2981 differently 2 +59099 2981 has transformed the rhetoric of Hollywood melodrama into something provocative , rich , and strange . 4 +59100 2981 has transformed the rhetoric of Hollywood melodrama into something provocative , rich , and strange 3 +59101 2981 transformed the rhetoric of Hollywood melodrama into something provocative , rich , and strange 3 +59102 2981 transformed the rhetoric of Hollywood melodrama 3 +59103 2981 the rhetoric of Hollywood melodrama 2 +59104 2981 the rhetoric 2 +59105 2981 rhetoric 2 +59106 2981 of Hollywood melodrama 2 +59107 2981 Hollywood melodrama 2 +59108 2981 into something provocative , rich , and strange 3 +59109 2981 something provocative , rich , and strange 3 +59110 2981 something provocative , 3 +59111 2981 something provocative 3 +59112 2981 rich , and strange 3 +59113 2981 , and strange 2 +59114 2982 There 's a lot to recommend Read My Lips . 3 +59115 2982 's a lot to recommend Read My Lips . 2 +59116 2982 's a lot to recommend Read My Lips 3 +59117 2982 a lot to recommend Read My Lips 3 +59118 2982 lot to recommend Read My Lips 4 +59119 2982 to recommend Read My Lips 2 +59120 2982 recommend Read My Lips 3 +59121 2983 It says a lot about a filmmaker when he can be wacky without clobbering the audience over the head and still maintain a sense of urgency and suspense . 2 +59122 2983 says a lot about a filmmaker when he can be wacky without clobbering the audience over the head and still maintain a sense of urgency and suspense . 3 +59123 2983 says a lot about a filmmaker when he can be wacky without clobbering the audience over the head and still maintain a sense of urgency and suspense 4 +59124 2983 a lot about a filmmaker when he can be wacky without clobbering the audience over the head and still maintain a sense of urgency and suspense 3 +59125 2983 about a filmmaker when he can be wacky without clobbering the audience over the head and still maintain a sense of urgency and suspense 3 +59126 2983 a filmmaker when he can be wacky without clobbering the audience over the head and still maintain a sense of urgency and suspense 3 +59127 2983 when he can be wacky without clobbering the audience over the head and still maintain a sense of urgency and suspense 3 +59128 2983 he can be wacky without clobbering the audience over the head and still maintain a sense of urgency and suspense 3 +59129 2983 can be wacky without clobbering the audience over the head and still maintain a sense of urgency and suspense 2 +59130 2983 be wacky without clobbering the audience over the head and still maintain a sense of urgency and suspense 3 +59131 2983 be wacky without clobbering the audience over the head and 3 +59132 2983 be wacky without clobbering the audience over the head 3 +59133 2983 wacky without clobbering the audience over the head 3 +59134 2983 wacky 2 +59135 2983 without clobbering the audience over the head 3 +59136 2983 clobbering the audience over the head 1 +59137 2983 clobbering the audience 1 +59138 2983 clobbering 2 +59139 2983 over the head 2 +59140 2983 still maintain a sense of urgency and suspense 2 +59141 2983 maintain a sense of urgency and suspense 3 +59142 2983 a sense of urgency and suspense 2 +59143 2983 of urgency and suspense 3 +59144 2983 urgency and suspense 3 +59145 2983 urgency and 2 +59146 2984 This Scarlet 's letter is A. . . 2 +59147 2984 This Scarlet 's letter 2 +59148 2984 This Scarlet 's 2 +59149 2984 Scarlet 's 2 +59150 2984 Scarlet 2 +59151 2984 letter 2 +59152 2984 is A. . . 3 +59153 2984 is A. . 3 +59154 2984 is A. 2 +59155 2984 A. 2 +59156 2985 I prefer Soderbergh 's concentration on his two lovers over Tarkovsky 's mostly male , mostly patriarchal debating societies . 2 +59157 2985 prefer Soderbergh 's concentration on his two lovers over Tarkovsky 's mostly male , mostly patriarchal debating societies . 2 +59158 2985 prefer Soderbergh 's concentration on his two lovers over Tarkovsky 's mostly male , mostly patriarchal debating societies 2 +59159 2985 prefer Soderbergh 's concentration on his two lovers 2 +59160 2985 prefer 2 +59161 2985 Soderbergh 's concentration on his two lovers 2 +59162 2985 Soderbergh 's concentration 2 +59163 2985 on his two lovers 2 +59164 2985 his two lovers 2 +59165 2985 two lovers 2 +59166 2985 over Tarkovsky 's mostly male , mostly patriarchal debating societies 2 +59167 2985 Tarkovsky 's mostly male , mostly patriarchal debating societies 1 +59168 2985 mostly male , mostly patriarchal debating societies 2 +59169 2985 mostly male 2 +59170 2985 , mostly patriarchal debating societies 2 +59171 2985 mostly patriarchal debating societies 2 +59172 2985 mostly patriarchal 2 +59173 2985 patriarchal 2 +59174 2985 debating societies 2 +59175 2985 debating 2 +59176 2985 societies 2 +59177 2986 A compassionate , moving portrait of an American -LRB- and an America -RRB- always reaching for something just outside his grasp . 4 +59178 2986 A compassionate , moving portrait of an American -LRB- and an America -RRB- always reaching for something just outside his grasp 3 +59179 2986 A compassionate , 3 +59180 2986 A compassionate 3 +59181 2986 compassionate 3 +59182 2986 moving portrait of an American -LRB- and an America -RRB- always reaching for something just outside his grasp 3 +59183 2986 moving portrait 3 +59184 2986 of an American -LRB- and an America -RRB- always reaching for something just outside his grasp 2 +59185 2986 an American -LRB- and an America -RRB- always reaching for something just outside his grasp 1 +59186 2986 an American -LRB- and an America -RRB- 2 +59187 2986 an American -LRB- and an America 2 +59188 2986 an American -LRB- and 2 +59189 2986 an American -LRB- 2 +59190 2986 an America 2 +59191 2986 always reaching for something just outside his grasp 2 +59192 2986 reaching for something just outside his grasp 2 +59193 2986 for something just outside his grasp 2 +59194 2986 something just outside his grasp 2 +59195 2986 something just 2 +59196 2986 outside his grasp 1 +59197 2986 his grasp 2 +59198 2987 Bella is the picture of health with boundless energy until a few days before she dies . 2 +59199 2987 Bella 2 +59200 2987 is the picture of health with boundless energy until a few days before she dies . 3 +59201 2987 is the picture of health with boundless energy until a few days before she dies 3 +59202 2987 is the picture of health with boundless energy until a few days 2 +59203 2987 is the picture of health with boundless energy 3 +59204 2987 the picture of health with boundless energy 3 +59205 2987 of health with boundless energy 2 +59206 2987 health with boundless energy 3 +59207 2987 health 2 +59208 2987 with boundless energy 3 +59209 2987 boundless energy 3 +59210 2987 boundless 2 +59211 2987 until a few days 2 +59212 2987 a few days 2 +59213 2987 few days 2 +59214 2987 before she dies 1 +59215 2987 she dies 1 +59216 2987 dies 1 +59217 2988 A charming but slight comedy . 3 +59218 2988 A charming but slight comedy 3 +59219 2988 charming but slight comedy 3 +59220 2988 charming but slight 3 +59221 2988 charming but 2 +59222 2989 ... post-September 11 , `` The Sum Of All Fears '' seems more tacky and reprehensible , manipulating our collective fear without bestowing the subject with the intelligence or sincerity it unequivocally deserves . 0 +59223 2989 post-September 11 , `` The Sum Of All Fears '' seems more tacky and reprehensible , manipulating our collective fear without bestowing the subject with the intelligence or sincerity it unequivocally deserves . 0 +59224 2989 post-September 11 , `` The Sum Of All Fears '' 2 +59225 2989 post-September 11 , 2 +59226 2989 post-September 11 2 +59227 2989 post-September 2 +59228 2989 11 2 +59229 2989 `` The Sum Of All Fears '' 2 +59230 2989 The Sum Of All Fears '' 2 +59231 2989 Sum Of All Fears '' 2 +59232 2989 Sum Of All Fears 2 +59233 2989 seems more tacky and reprehensible , manipulating our collective fear without bestowing the subject with the intelligence or sincerity it unequivocally deserves . 1 +59234 2989 seems more tacky and reprehensible , manipulating our collective fear without bestowing the subject with the intelligence or sincerity it unequivocally deserves 1 +59235 2989 seems more tacky and reprehensible , 1 +59236 2989 seems more tacky and reprehensible 1 +59237 2989 more tacky and reprehensible 1 +59238 2989 tacky and reprehensible 1 +59239 2989 tacky and 1 +59240 2989 reprehensible 1 +59241 2989 manipulating our collective fear without bestowing the subject with the intelligence or sincerity it unequivocally deserves 0 +59242 2989 manipulating our collective fear 3 +59243 2989 manipulating 2 +59244 2989 our collective fear 2 +59245 2989 collective fear 2 +59246 2989 collective 3 +59247 2989 without bestowing the subject with the intelligence or sincerity it unequivocally deserves 1 +59248 2989 bestowing the subject with the intelligence or sincerity it unequivocally deserves 2 +59249 2989 bestowing the subject 2 +59250 2989 bestowing 2 +59251 2989 with the intelligence or sincerity it unequivocally deserves 4 +59252 2989 the intelligence or sincerity it unequivocally deserves 3 +59253 2989 the intelligence or sincerity 2 +59254 2989 intelligence or sincerity 2 +59255 2989 intelligence or 2 +59256 2989 it unequivocally deserves 2 +59257 2989 unequivocally deserves 2 +59258 2989 unequivocally 3 +59259 2990 A hit - and-miss affair , consistently amusing but not as outrageous or funny as Cho may have intended or as imaginative as one might have hoped . 1 +59260 2990 A hit - and-miss affair , 1 +59261 2990 A hit - and-miss affair 2 +59262 2990 A hit - 3 +59263 2990 A hit 3 +59264 2990 and-miss affair 2 +59265 2990 and-miss 2 +59266 2990 consistently amusing but not as outrageous or funny as Cho may have intended or as imaginative as one might have hoped . 2 +59267 2990 consistently amusing but not as outrageous or funny as Cho may have intended or as imaginative as one might have hoped 2 +59268 2990 consistently amusing but not as outrageous or funny 3 +59269 2990 consistently amusing but 3 +59270 2990 consistently amusing 3 +59271 2990 not as outrageous or funny 1 +59272 2990 as outrageous or funny 2 +59273 2990 outrageous or funny 3 +59274 2990 outrageous or 2 +59275 2990 as Cho may have intended or as imaginative as one might have hoped 2 +59276 2990 as Cho may have intended or 2 +59277 2990 as Cho may have intended 2 +59278 2990 Cho may have intended 2 +59279 2990 may have intended 2 +59280 2990 have intended 2 +59281 2990 as imaginative as one might have hoped 3 +59282 2990 imaginative as one might have hoped 3 +59283 2990 imaginative as one 2 +59284 2990 might have hoped 2 +59285 2990 have hoped 2 +59286 2991 The setting is so cool that it chills the characters , reducing our emotional stake in the outcome of `` Intacto 's '' dangerous and seductively stylish game . 2 +59287 2991 The setting 2 +59288 2991 is so cool that it chills the characters , reducing our emotional stake in the outcome of `` Intacto 's '' dangerous and seductively stylish game . 2 +59289 2991 is so cool that it chills the characters , reducing our emotional stake in the outcome of `` Intacto 's '' dangerous and seductively stylish game 3 +59290 2991 is so cool 3 +59291 2991 so cool 3 +59292 2991 that it chills the characters , reducing our emotional stake in the outcome of `` Intacto 's '' dangerous and seductively stylish game 2 +59293 2991 it chills the characters , reducing our emotional stake in the outcome of `` Intacto 's '' dangerous and seductively stylish game 1 +59294 2991 chills the characters , reducing our emotional stake in the outcome of `` Intacto 's '' dangerous and seductively stylish game 2 +59295 2991 chills the characters , 2 +59296 2991 chills the characters 2 +59297 2991 reducing our emotional stake in the outcome of `` Intacto 's '' dangerous and seductively stylish game 2 +59298 2991 reducing our emotional stake 3 +59299 2991 reducing 2 +59300 2991 our emotional stake 2 +59301 2991 emotional stake 2 +59302 2991 stake 2 +59303 2991 in the outcome of `` Intacto 's '' dangerous and seductively stylish game 2 +59304 2991 the outcome of `` Intacto 's '' dangerous and seductively stylish game 4 +59305 2991 the outcome of `` Intacto 's '' dangerous and 2 +59306 2991 the outcome of `` Intacto 's '' dangerous 2 +59307 2991 of `` Intacto 's '' dangerous 2 +59308 2991 `` Intacto 's '' dangerous 2 +59309 2991 Intacto 's '' dangerous 2 +59310 2991 Intacto 's 2 +59311 2991 Intacto 2 +59312 2991 '' dangerous 1 +59313 2991 seductively stylish game 3 +59314 2991 seductively stylish 3 +59315 2991 seductively 2 +59316 2992 If you think it 's a riot to see Rob Schneider in a young woman 's clothes , then you 'll enjoy The Hot Chick . 3 +59317 2992 If you think it 's a riot to see Rob Schneider in a young woman 's clothes 2 +59318 2992 you think it 's a riot to see Rob Schneider in a young woman 's clothes 2 +59319 2992 think it 's a riot to see Rob Schneider in a young woman 's clothes 2 +59320 2992 it 's a riot to see Rob Schneider in a young woman 's clothes 3 +59321 2992 's a riot to see Rob Schneider in a young woman 's clothes 3 +59322 2992 a riot to see Rob Schneider in a young woman 's clothes 3 +59323 2992 riot to see Rob Schneider in a young woman 's clothes 2 +59324 2992 riot 2 +59325 2992 to see Rob Schneider in a young woman 's clothes 2 +59326 2992 see Rob Schneider in a young woman 's clothes 2 +59327 2992 Rob Schneider in a young woman 's clothes 2 +59328 2992 in a young woman 's clothes 2 +59329 2992 a young woman 's clothes 2 +59330 2992 , then you 'll enjoy The Hot Chick . 4 +59331 2992 then you 'll enjoy The Hot Chick . 2 +59332 2992 you 'll enjoy The Hot Chick . 3 +59333 2992 'll enjoy The Hot Chick . 3 +59334 2992 'll enjoy The Hot Chick 2 +59335 2992 enjoy The Hot Chick 3 +59336 2992 The Hot Chick 2 +59337 2992 Hot Chick 2 +59338 2993 Ice Age wo n't drop your jaw , but it will warm your heart , and I 'm giving it a strong thumbs up . 3 +59339 2993 Ice Age wo n't drop your jaw , but it will warm your heart , and I 'm giving it a strong thumbs up 4 +59340 2993 Ice Age wo n't drop your jaw , but 3 +59341 2993 Ice Age wo n't drop your jaw , 1 +59342 2993 Ice Age wo n't drop your jaw 1 +59343 2993 wo n't drop your jaw 2 +59344 2993 drop your jaw 3 +59345 2993 your jaw 2 +59346 2993 jaw 2 +59347 2993 it will warm your heart , and I 'm giving it a strong thumbs up 4 +59348 2993 it will warm your heart , and 4 +59349 2993 it will warm your heart , 4 +59350 2993 it will warm your heart 4 +59351 2993 will warm your heart 3 +59352 2993 warm your heart 3 +59353 2993 I 'm giving it a strong thumbs up 4 +59354 2993 'm giving it a strong thumbs up 4 +59355 2993 giving it a strong thumbs up 4 +59356 2993 giving it 2 +59357 2993 a strong thumbs up 4 +59358 2993 a strong thumbs 3 +59359 2993 strong thumbs 2 +59360 2994 Beneath the uncanny , inevitable and seemingly shrewd facade of movie-biz farce ... lies a plot cobbled together from largely flat and uncreative moments . 0 +59361 2994 Beneath the uncanny , inevitable and seemingly shrewd facade of movie-biz farce 2 +59362 2994 the uncanny , inevitable and seemingly shrewd facade of movie-biz farce 1 +59363 2994 the uncanny , inevitable and seemingly shrewd facade 2 +59364 2994 uncanny , inevitable and seemingly shrewd facade 2 +59365 2994 , inevitable and seemingly shrewd facade 2 +59366 2994 inevitable and seemingly shrewd facade 2 +59367 2994 inevitable and seemingly 2 +59368 2994 inevitable and 1 +59369 2994 shrewd facade 2 +59370 2994 shrewd 2 +59371 2994 facade 2 +59372 2994 of movie-biz farce 2 +59373 2994 movie-biz farce 2 +59374 2994 movie-biz 1 +59375 2994 ... lies a plot cobbled together from largely flat and uncreative moments . 0 +59376 2994 lies a plot cobbled together from largely flat and uncreative moments . 1 +59377 2994 lies a plot cobbled together from largely flat and uncreative moments 1 +59378 2994 a plot cobbled together from largely flat and uncreative moments 0 +59379 2994 cobbled together from largely flat and uncreative moments 0 +59380 2994 from largely flat and uncreative moments 0 +59381 2994 largely flat and uncreative moments 1 +59382 2994 largely flat and uncreative 1 +59383 2994 flat and uncreative 1 +59384 2994 flat and 1 +59385 2994 uncreative 1 +59386 2995 Slow , silly and unintentionally hilarious . 2 +59387 2995 Slow , silly and unintentionally hilarious 2 +59388 2995 Slow , silly and unintentionally 0 +59389 2995 Slow , 2 +59390 2995 silly and unintentionally 1 +59391 2995 silly and 1 +59392 2996 Imamura has said that Warm Water Under a Red Bridge is a poem to the enduring strengths of women . 3 +59393 2996 has said that Warm Water Under a Red Bridge is a poem to the enduring strengths of women . 2 +59394 2996 has said that Warm Water Under a Red Bridge is a poem to the enduring strengths of women 3 +59395 2996 said that Warm Water Under a Red Bridge is a poem to the enduring strengths of women 3 +59396 2996 that Warm Water Under a Red Bridge is a poem to the enduring strengths of women 3 +59397 2996 Warm Water Under a Red Bridge is a poem to the enduring strengths of women 2 +59398 2996 Warm Water 2 +59399 2996 Under a Red Bridge is a poem to the enduring strengths of women 4 +59400 2996 is a poem to the enduring strengths of women 4 +59401 2996 a poem to the enduring strengths of women 3 +59402 2996 to the enduring strengths of women 4 +59403 2996 the enduring strengths of women 3 +59404 2996 the enduring strengths 3 +59405 2996 enduring strengths 3 +59406 2996 strengths 2 +59407 2996 of women 2 +59408 2997 Thanks to a small star with big heart , this family film sequel is plenty of fun for all . 4 +59409 2997 Thanks to a small star with big heart 3 +59410 2997 to a small star with big heart 3 +59411 2997 a small star with big heart 3 +59412 2997 a small star 2 +59413 2997 small star 2 +59414 2997 with big heart 3 +59415 2997 , this family film sequel is plenty of fun for all . 4 +59416 2997 this family film sequel is plenty of fun for all . 3 +59417 2997 this family film sequel 2 +59418 2997 family film sequel 3 +59419 2997 film sequel 2 +59420 2997 is plenty of fun for all . 3 +59421 2997 is plenty of fun for all 3 +59422 2997 plenty of fun for all 4 +59423 2997 of fun for all 3 +59424 2997 fun for all 4 +59425 2997 for all 2 +59426 2998 What makes the film special is the refreshingly unhibited enthusiasm that the people , in spite of clearly evident poverty and hardship , bring to their music . 3 +59427 2998 What makes the film special 3 +59428 2998 makes the film special 4 +59429 2998 the film special 3 +59430 2998 film special 2 +59431 2998 is the refreshingly unhibited enthusiasm that the people , in spite of clearly evident poverty and hardship , bring to their music . 4 +59432 2998 is the refreshingly unhibited enthusiasm that the people , in spite of clearly evident poverty and hardship , bring to their music 3 +59433 2998 is the refreshingly unhibited enthusiasm 4 +59434 2998 the refreshingly unhibited enthusiasm 4 +59435 2998 refreshingly unhibited enthusiasm 4 +59436 2998 refreshingly unhibited 3 +59437 2998 unhibited 3 +59438 2998 that the people , in spite of clearly evident poverty and hardship , bring to their music 2 +59439 2998 the people , in spite of clearly evident poverty and hardship , bring to their music 2 +59440 2998 , in spite of clearly evident poverty and hardship , bring to their music 3 +59441 2998 in spite of clearly evident poverty and hardship , bring to their music 2 +59442 2998 in spite of clearly evident poverty and hardship 3 +59443 2998 spite of clearly evident poverty and hardship 1 +59444 2998 of clearly evident poverty and hardship 2 +59445 2998 clearly evident poverty and hardship 1 +59446 2998 clearly evident 2 +59447 2998 evident 2 +59448 2998 poverty and hardship 2 +59449 2998 poverty and 2 +59450 2998 hardship 2 +59451 2998 , bring to their music 2 +59452 2998 bring to their music 2 +59453 2998 to their music 2 +59454 2998 their music 2 +59455 2999 The story the movie tells is of Brian De Palma 's addiction to the junk-calorie suspense tropes that have all but ruined his career . 1 +59456 2999 The story the movie tells 2 +59457 2999 the movie tells 2 +59458 2999 is of Brian De Palma 's addiction to the junk-calorie suspense tropes that have all but ruined his career . 1 +59459 2999 is of Brian De Palma 's addiction to the junk-calorie suspense tropes that have all but ruined his career 0 +59460 2999 is of Brian De Palma 's addiction 2 +59461 2999 of Brian De Palma 's addiction 2 +59462 2999 Brian De Palma 's addiction 2 +59463 2999 Brian De Palma 's 2 +59464 2999 De Palma 's 2 +59465 2999 Palma 's 2 +59466 2999 Palma 2 +59467 2999 addiction 2 +59468 2999 to the junk-calorie suspense tropes that have all but ruined his career 1 +59469 2999 the junk-calorie suspense tropes that have all but ruined his career 1 +59470 2999 the junk-calorie suspense tropes 1 +59471 2999 junk-calorie suspense tropes 1 +59472 2999 junk-calorie 1 +59473 2999 suspense tropes 2 +59474 2999 that have all but ruined his career 1 +59475 2999 have all but ruined his career 1 +59476 2999 have all but 2 +59477 2999 ruined his career 1 +59478 2999 ruined 1 +59479 2999 his career 2 +59480 3000 But the nerve-raked acting , the crackle of lines , the impressive stagings of hardware , make for some robust and scary entertainment . 4 +59481 3000 the nerve-raked acting , the crackle of lines , the impressive stagings of hardware , make for some robust and scary entertainment . 3 +59482 3000 the nerve-raked acting , the crackle of lines , the impressive stagings of hardware , 2 +59483 3000 the nerve-raked acting , the crackle of lines , the impressive stagings of hardware 2 +59484 3000 the nerve-raked acting , 1 +59485 3000 the nerve-raked acting 2 +59486 3000 nerve-raked acting 2 +59487 3000 nerve-raked 2 +59488 3000 the crackle of lines , the impressive stagings of hardware 3 +59489 3000 the crackle 2 +59490 3000 crackle 2 +59491 3000 of lines , the impressive stagings of hardware 2 +59492 3000 lines , the impressive stagings of hardware 3 +59493 3000 lines , 2 +59494 3000 the impressive stagings of hardware 3 +59495 3000 the impressive stagings 2 +59496 3000 impressive stagings 3 +59497 3000 stagings 2 +59498 3000 of hardware 2 +59499 3000 hardware 2 +59500 3000 make for some robust and scary entertainment . 4 +59501 3000 make for some robust and scary entertainment 4 +59502 3000 for some robust and scary entertainment 3 +59503 3000 some robust and scary entertainment 3 +59504 3000 robust and scary entertainment 2 +59505 3000 robust and scary 3 +59506 3000 robust and 2 +59507 3000 robust 3 +59508 3001 a terrible adaptation of a play that only ever walked the delicate tightrope between farcical and loathsome . 0 +59509 3001 a terrible adaptation of a play that only ever walked the delicate tightrope between farcical and loathsome 0 +59510 3001 a terrible adaptation 0 +59511 3001 terrible adaptation 0 +59512 3001 of a play that only ever walked the delicate tightrope between farcical and loathsome 1 +59513 3001 a play that only ever walked the delicate tightrope between farcical and loathsome 0 +59514 3001 a play 2 +59515 3001 that only ever walked the delicate tightrope between farcical and loathsome 1 +59516 3001 only ever walked the delicate tightrope between farcical and loathsome 2 +59517 3001 ever walked the delicate tightrope between farcical and loathsome 2 +59518 3001 walked the delicate tightrope between farcical and loathsome 1 +59519 3001 the delicate tightrope between farcical and loathsome 1 +59520 3001 the delicate tightrope 2 +59521 3001 delicate tightrope 2 +59522 3001 tightrope 2 +59523 3001 between farcical and loathsome 0 +59524 3001 farcical and loathsome 0 +59525 3001 farcical and 2 +59526 3001 farcical 2 +59527 3001 loathsome 1 +59528 3002 Even accepting this in the right frame of mind can only provide it with so much leniency . 1 +59529 3002 accepting this in the right frame of mind can only provide it with so much leniency . 3 +59530 3002 accepting this in the right frame of mind 2 +59531 3002 this in the right frame of mind 3 +59532 3002 in the right frame of mind 2 +59533 3002 the right frame of mind 3 +59534 3002 the right frame 2 +59535 3002 right frame 2 +59536 3002 of mind 2 +59537 3002 can only provide it with so much leniency . 1 +59538 3002 can only provide it with so much leniency 2 +59539 3002 provide it with so much leniency 2 +59540 3002 provide it 2 +59541 3002 with so much leniency 2 +59542 3002 so much leniency 1 +59543 3002 leniency 2 +59544 3003 A hypnotic cyber hymn and a cruel story of youth culture . 3 +59545 3003 A hypnotic 2 +59546 3003 cyber hymn and a cruel story of youth culture . 2 +59547 3003 cyber hymn and a cruel story of youth culture 2 +59548 3003 cyber 2 +59549 3003 hymn and a cruel story of youth culture 1 +59550 3003 hymn and 2 +59551 3003 hymn 2 +59552 3003 a cruel story of youth culture 2 +59553 3003 a cruel story 1 +59554 3003 cruel story 1 +59555 3003 of youth culture 2 +59556 3003 youth culture 2 +59557 3004 What soured me on The Santa Clause 2 was that Santa bumps up against 21st century reality so hard , it 's icky . 0 +59558 3004 What soured me on The Santa Clause 2 was that Santa bumps up against 21st century reality so hard 2 +59559 3004 soured me on The Santa Clause 2 was that Santa bumps up against 21st century reality so hard 0 +59560 3004 soured 2 +59561 3004 me on The Santa Clause 2 was that Santa bumps up against 21st century reality so hard 2 +59562 3004 me on The Santa Clause 2 2 +59563 3004 on The Santa Clause 2 3 +59564 3004 was that Santa bumps up against 21st century reality so hard 3 +59565 3004 that Santa bumps up against 21st century reality so hard 1 +59566 3004 Santa bumps up against 21st century reality so hard 1 +59567 3004 bumps up against 21st century reality so hard 2 +59568 3004 bumps up 2 +59569 3004 bumps 2 +59570 3004 against 21st century reality so hard 2 +59571 3004 21st century reality so hard 2 +59572 3004 21st century reality 2 +59573 3004 21st 2 +59574 3004 century reality 2 +59575 3004 so hard 2 +59576 3004 , it 's icky . 1 +59577 3004 it 's icky . 1 +59578 3004 's icky . 1 +59579 3004 's icky 1 +59580 3004 icky 0 +59581 3005 Often lingers just as long on the irrelevant as on the engaging , which gradually turns What Time Is It There ? 1 +59582 3005 lingers just as long on the irrelevant as on the engaging , which gradually turns What Time Is It There ? 2 +59583 3005 lingers 2 +59584 3005 just as long on the irrelevant as on the engaging , which gradually turns What Time Is It There ? 2 +59585 3005 as long on the irrelevant as on the engaging , which gradually turns What Time Is It There ? 1 +59586 3005 as long on the irrelevant as on the engaging , which gradually turns What Time Is It There 2 +59587 3005 long on the irrelevant as on the engaging , which gradually turns What Time Is It There 2 +59588 3005 long on the irrelevant as on the engaging , which gradually turns What Time 1 +59589 3005 on the irrelevant as on the engaging , which gradually turns What Time 1 +59590 3005 the irrelevant as on the engaging , which gradually turns What Time 1 +59591 3005 irrelevant as on the engaging , which gradually turns What Time 2 +59592 3005 irrelevant as on the engaging , which gradually turns What 1 +59593 3005 as on the engaging , which gradually turns What 2 +59594 3005 on the engaging , which gradually turns What 2 +59595 3005 the engaging , which gradually turns What 2 +59596 3005 the engaging , 3 +59597 3005 the engaging 2 +59598 3005 which gradually turns What 2 +59599 3005 gradually turns What 2 +59600 3005 turns What 2 +59601 3005 Is It There 2 +59602 3005 It There 2 +59603 3006 Superb production values & Christian Bale 's charisma make up for a derivative plot . 3 +59604 3006 Superb production values & Christian Bale 's charisma make up for a derivative plot 2 +59605 3006 production values & Christian Bale 's charisma make up for a derivative plot 3 +59606 3006 production values & 2 +59607 3006 Christian Bale 's charisma make up for a derivative plot 3 +59608 3006 Christian Bale 's 2 +59609 3006 Bale 's 2 +59610 3006 charisma make up for a derivative plot 2 +59611 3006 make up for a derivative plot 3 +59612 3006 for a derivative plot 2 +59613 3006 a derivative plot 2 +59614 3006 derivative plot 2 +59615 3007 Happy Times maintains an appealing veneer without becoming too cute about it . 3 +59616 3007 Happy Times 2 +59617 3007 maintains an appealing veneer without becoming too cute about it . 3 +59618 3007 maintains an appealing veneer without becoming too cute about it 3 +59619 3007 maintains an appealing veneer 3 +59620 3007 an appealing veneer 3 +59621 3007 appealing veneer 3 +59622 3007 veneer 2 +59623 3007 without becoming too cute about it 2 +59624 3007 becoming too cute about it 1 +59625 3007 becoming too cute 2 +59626 3008 As a story of dramatic enlightenment , the screenplay by Billy Ray and Terry George leaves something to be desired . 1 +59627 3008 As a story of dramatic enlightenment 3 +59628 3008 a story of dramatic enlightenment 3 +59629 3008 of dramatic enlightenment 3 +59630 3008 dramatic enlightenment 2 +59631 3008 enlightenment 3 +59632 3008 , the screenplay by Billy Ray and Terry George leaves something to be desired . 1 +59633 3008 the screenplay by Billy Ray and Terry George leaves something to be desired . 1 +59634 3008 the screenplay by Billy Ray and Terry George 2 +59635 3008 by Billy Ray and Terry George 2 +59636 3008 Billy Ray and Terry George 2 +59637 3008 Billy Ray and 2 +59638 3008 Billy Ray 2 +59639 3008 Billy 2 +59640 3008 Terry George 2 +59641 3008 leaves something to be desired . 0 +59642 3008 leaves something to be desired 1 +59643 3008 leaves something 2 +59644 3009 A bad movie that happened to good actors . 0 +59645 3009 A bad movie that 0 +59646 3009 A bad movie 0 +59647 3009 happened to good actors . 2 +59648 3009 happened to good actors 3 +59649 3009 to good actors 3 +59650 3010 It 's a bad sign when you 're rooting for the film to hurry up and get to its subjects ' deaths just so the documentary will be over , but it 's indicative of how uncompelling the movie is unless it happens to cover your particular area of interest . 0 +59651 3010 It 's a bad sign when you 're rooting for the film to hurry up and get to its subjects ' deaths just so the documentary will be over , but it 's indicative of how uncompelling the movie is unless it happens to cover your particular area of interest 0 +59652 3010 It 's a bad sign when you 're rooting for the film to hurry up and get to its subjects ' deaths just so the documentary will be over , but 0 +59653 3010 It 's a bad sign when you 're rooting for the film to hurry up and get to its subjects ' deaths just so the documentary will be over , 0 +59654 3010 It 's a bad sign when you 're rooting for the film to hurry up and get to its subjects ' deaths just so the documentary will be over 0 +59655 3010 's a bad sign when you 're rooting for the film to hurry up and get to its subjects ' deaths just so the documentary will be over 0 +59656 3010 a bad sign when you 're rooting for the film to hurry up and get to its subjects ' deaths just so the documentary will be over 0 +59657 3010 when you 're rooting for the film to hurry up and get to its subjects ' deaths just so the documentary will be over 0 +59658 3010 you 're rooting for the film to hurry up and get to its subjects ' deaths just so the documentary will be over 0 +59659 3010 're rooting for the film to hurry up and get to its subjects ' deaths just so the documentary will be over 0 +59660 3010 rooting for the film to hurry up and get to its subjects ' deaths just so the documentary will be over 1 +59661 3010 rooting for the film 3 +59662 3010 for the film 2 +59663 3010 to hurry up and get to its subjects ' deaths just so the documentary will be over 1 +59664 3010 hurry up and get to its subjects ' deaths just so the documentary will be over 0 +59665 3010 hurry up and 2 +59666 3010 hurry up 2 +59667 3010 hurry 2 +59668 3010 get to its subjects ' deaths just so the documentary will be over 1 +59669 3010 get to its subjects ' deaths 2 +59670 3010 to its subjects ' deaths 2 +59671 3010 its subjects ' deaths 2 +59672 3010 its subjects ' 2 +59673 3010 subjects ' 2 +59674 3010 deaths 1 +59675 3010 just so the documentary will be over 1 +59676 3010 so the documentary will be over 2 +59677 3010 the documentary will be over 2 +59678 3010 will be over 2 +59679 3010 it 's indicative of how uncompelling the movie is unless it happens to cover your particular area of interest 2 +59680 3010 's indicative of how uncompelling the movie is unless it happens to cover your particular area of interest 1 +59681 3010 indicative of how uncompelling the movie is unless it happens to cover your particular area of interest 1 +59682 3010 indicative 2 +59683 3010 of how uncompelling the movie is unless it happens to cover your particular area of interest 1 +59684 3010 how uncompelling the movie is unless it happens to cover your particular area of interest 1 +59685 3010 uncompelling the movie is unless it happens to cover your particular area of interest 1 +59686 3010 uncompelling the movie 1 +59687 3010 uncompelling 0 +59688 3010 is unless it happens to cover your particular area of interest 2 +59689 3010 unless it happens to cover your particular area of interest 1 +59690 3010 it happens to cover your particular area of interest 2 +59691 3010 happens to cover your particular area of interest 2 +59692 3010 to cover your particular area of interest 2 +59693 3010 cover your particular area of interest 2 +59694 3010 cover 2 +59695 3010 your particular area of interest 2 +59696 3010 your particular area 2 +59697 3010 particular area 2 +59698 3010 of interest 3 +59699 3011 Confessions may not be a straightforward bio , nor does it offer much in the way of Barris ' motivations , but the film is an oddly fascinating depiction of an architect of pop culture . 3 +59700 3011 Confessions may not be a straightforward bio , nor does it offer much in the way of Barris ' motivations , but the film is an oddly fascinating depiction of an architect of pop culture 3 +59701 3011 Confessions may not be a straightforward bio , nor does it offer much in the way of Barris ' motivations , but 2 +59702 3011 Confessions may not be a straightforward bio , nor does it offer much in the way of Barris ' motivations , 2 +59703 3011 Confessions may not be a straightforward bio , nor does it offer much in the way of Barris ' motivations 2 +59704 3011 Confessions may not be a straightforward bio , nor 2 +59705 3011 Confessions may not be a straightforward bio , 2 +59706 3011 Confessions may not be a straightforward bio 1 +59707 3011 Confessions 2 +59708 3011 may not be a straightforward bio 1 +59709 3011 be a straightforward bio 3 +59710 3011 a straightforward bio 2 +59711 3011 straightforward bio 2 +59712 3011 bio 2 +59713 3011 does it offer much in the way of Barris ' motivations 2 +59714 3011 does it 2 +59715 3011 offer much in the way of Barris ' motivations 2 +59716 3011 in the way of Barris ' motivations 2 +59717 3011 the way of Barris ' motivations 2 +59718 3011 of Barris ' motivations 2 +59719 3011 Barris ' motivations 2 +59720 3011 Barris ' 2 +59721 3011 Barris 2 +59722 3011 the film is an oddly fascinating depiction of an architect of pop culture 3 +59723 3011 is an oddly fascinating depiction of an architect of pop culture 3 +59724 3011 an oddly fascinating depiction of an architect of pop culture 3 +59725 3011 an oddly fascinating depiction 3 +59726 3011 oddly fascinating depiction 3 +59727 3011 oddly fascinating 3 +59728 3011 of an architect of pop culture 2 +59729 3011 an architect of pop culture 3 +59730 3011 an architect 2 +59731 3011 architect 2 +59732 3011 of pop culture 2 +59733 3012 The acting is amateurish , the cinematography is atrocious , the direction is clumsy , the writing is insipid and the violence is at once luridly graphic and laughably unconvincing . 0 +59734 3012 The acting is amateurish , the cinematography is atrocious , the direction is clumsy , the writing is insipid and the violence is at once luridly graphic and laughably unconvincing 1 +59735 3012 The acting is amateurish , the cinematography is atrocious , the direction is clumsy , the writing is insipid and 0 +59736 3012 The acting is amateurish , the cinematography is atrocious , the direction is clumsy , the writing is insipid 0 +59737 3012 The acting is amateurish , the cinematography is atrocious , the direction is clumsy , 0 +59738 3012 The acting is amateurish , the cinematography is atrocious , the direction is clumsy 0 +59739 3012 The acting is amateurish , the cinematography is atrocious , 0 +59740 3012 The acting is amateurish , the cinematography is atrocious 0 +59741 3012 The acting is amateurish , 0 +59742 3012 The acting is amateurish 1 +59743 3012 the cinematography is atrocious 0 +59744 3012 the cinematography 2 +59745 3012 is atrocious 1 +59746 3012 the direction is clumsy 1 +59747 3012 is clumsy 1 +59748 3012 the writing is insipid 1 +59749 3012 is insipid 1 +59750 3012 the violence is at once luridly graphic and laughably unconvincing 1 +59751 3012 the violence 1 +59752 3012 is at once luridly graphic and laughably unconvincing 1 +59753 3012 luridly graphic and laughably unconvincing 1 +59754 3012 luridly graphic and 1 +59755 3012 luridly graphic 2 +59756 3012 laughably unconvincing 1 +59757 3013 Sean Penn , you owe Nicolas Cage an apology . 2 +59758 3013 Sean Penn 2 +59759 3013 , you owe Nicolas Cage an apology . 2 +59760 3013 you owe Nicolas Cage an apology . 1 +59761 3013 owe Nicolas Cage an apology . 1 +59762 3013 owe Nicolas Cage an apology 2 +59763 3013 owe Nicolas Cage 2 +59764 3013 Nicolas Cage 2 +59765 3013 Nicolas 2 +59766 3013 an apology 2 +59767 3013 apology 2 +59768 3014 There is a real subject here , and it is handled with intelligence and care . 4 +59769 3014 There is a real subject here , and it is handled with intelligence and care 4 +59770 3014 There is a real subject here , and 3 +59771 3014 There is a real subject here , 2 +59772 3014 There is a real subject here 3 +59773 3014 is a real subject here 2 +59774 3014 is a real subject 2 +59775 3014 a real subject 2 +59776 3014 real subject 2 +59777 3014 it is handled with intelligence and care 3 +59778 3014 is handled with intelligence and care 4 +59779 3014 handled with intelligence and care 3 +59780 3014 with intelligence and care 3 +59781 3014 intelligence and care 2 +59782 3015 Sade achieves the near-impossible : It turns the Marquis de Sade into a dullard . 0 +59783 3015 Sade achieves the near-impossible : It turns the Marquis de Sade into a dullard 1 +59784 3015 Sade achieves the near-impossible : 3 +59785 3015 Sade achieves the near-impossible 3 +59786 3015 achieves the near-impossible 4 +59787 3015 the near-impossible 2 +59788 3015 near-impossible 2 +59789 3015 It turns the Marquis de Sade into a dullard 2 +59790 3015 turns the Marquis de Sade into a dullard 1 +59791 3015 turns the Marquis de Sade 2 +59792 3015 the Marquis de Sade 2 +59793 3015 Marquis de Sade 2 +59794 3015 Marquis 3 +59795 3015 into a dullard 1 +59796 3015 a dullard 1 +59797 3015 dullard 1 +59798 3016 My advice is to skip the film and pick up the soundtrack . 1 +59799 3016 My advice 2 +59800 3016 is to skip the film and pick up the soundtrack . 2 +59801 3016 is to skip the film and pick up the soundtrack 1 +59802 3016 to skip the film and pick up the soundtrack 1 +59803 3016 skip the film and pick up the soundtrack 0 +59804 3016 skip the film and 0 +59805 3016 skip the film 1 +59806 3016 pick up the soundtrack 2 +59807 3017 So beautifully acted and directed , it 's clear that Washington most certainly has a new career ahead of him if he so chooses . 4 +59808 3017 beautifully acted and directed , it 's clear that Washington most certainly has a new career ahead of him if he so chooses . 4 +59809 3017 acted and directed , it 's clear that Washington most certainly has a new career ahead of him if he so chooses . 3 +59810 3017 acted and directed , it 's clear that Washington most certainly has a new career ahead of him if he so chooses 3 +59811 3017 acted and directed , it 's clear that Washington most certainly has a new career ahead of him 3 +59812 3017 acted and directed 1 +59813 3017 acted and 2 +59814 3017 , it 's clear that Washington most certainly has a new career ahead of him 3 +59815 3017 it 's clear that Washington most certainly has a new career ahead of him 3 +59816 3017 's clear that Washington most certainly has a new career ahead of him 4 +59817 3017 's clear 2 +59818 3017 that Washington most certainly has a new career ahead of him 3 +59819 3017 Washington most certainly has a new career ahead of him 3 +59820 3017 most certainly has a new career ahead of him 3 +59821 3017 most certainly 2 +59822 3017 has a new career ahead of him 3 +59823 3017 a new career ahead of him 2 +59824 3017 a new career 2 +59825 3017 new career 2 +59826 3017 ahead of him 2 +59827 3017 of him 2 +59828 3017 if he so chooses 2 +59829 3017 he so chooses 2 +59830 3017 so chooses 2 +59831 3018 Lovingly photographed in the manner of a Golden Book sprung to life , Stuart Little 2 manages sweetness largely without stickiness . 4 +59832 3018 Lovingly photographed in the manner of a Golden Book sprung to life 4 +59833 3018 Lovingly 3 +59834 3018 photographed in the manner of a Golden Book sprung to life 3 +59835 3018 in the manner of a Golden Book sprung to life 3 +59836 3018 the manner of a Golden Book sprung to life 3 +59837 3018 of a Golden Book sprung to life 3 +59838 3018 a Golden Book sprung to life 3 +59839 3018 a Golden Book 2 +59840 3018 Golden Book 4 +59841 3018 Golden 3 +59842 3018 sprung to life 3 +59843 3018 sprung 2 +59844 3018 , Stuart Little 2 manages sweetness largely without stickiness . 3 +59845 3018 Stuart Little 2 manages sweetness largely without stickiness . 4 +59846 3018 manages sweetness largely without stickiness . 3 +59847 3018 manages sweetness largely without stickiness 3 +59848 3018 manages sweetness largely 2 +59849 3018 manages sweetness 3 +59850 3018 without stickiness 3 +59851 3018 stickiness 2 +59852 3019 is the kind of movie that 's critic-proof , simply because it aims so low . 1 +59853 3019 is the kind of movie that 's critic-proof , simply because it aims so low 0 +59854 3019 the kind of movie that 's critic-proof , simply because it aims so low 1 +59855 3019 that 's critic-proof , simply because it aims so low 1 +59856 3019 's critic-proof , simply because it aims so low 0 +59857 3019 's critic-proof , simply 2 +59858 3019 's critic-proof , 2 +59859 3019 's critic-proof 2 +59860 3019 critic-proof 4 +59861 3019 because it aims so low 1 +59862 3019 it aims so low 1 +59863 3019 aims so low 1 +59864 3019 so low 1 +59865 3020 If I want music , I 'll buy the soundtrack . 1 +59866 3020 If I want music 2 +59867 3020 I want music 2 +59868 3020 want music 2 +59869 3020 , I 'll buy the soundtrack . 3 +59870 3020 I 'll buy the soundtrack . 3 +59871 3020 'll buy the soundtrack . 3 +59872 3020 'll buy the soundtrack 2 +59873 3020 buy the soundtrack 3 +59874 3021 A delightful entree in the tradition of food movies . 4 +59875 3021 A delightful entree in the tradition of food movies 3 +59876 3021 A delightful entree in the tradition 4 +59877 3021 A delightful entree 3 +59878 3021 delightful entree 4 +59879 3021 entree 2 +59880 3021 in the tradition 3 +59881 3021 of food movies 2 +59882 3021 food movies 2 +59883 3022 Spare but quietly effective retelling . 3 +59884 3022 Spare but quietly effective retelling 2 +59885 3022 but quietly effective retelling 3 +59886 3022 but quietly effective 3 +59887 3022 but quietly 2 +59888 3023 Despite a performance of sustained intelligence from Stanford and another of subtle humour from Bebe Neuwirth , as an older woman who seduces Oscar , the film founders on its lack of empathy for the social milieu - rich New York intelligentsia - and its off 2 +59889 3023 Despite a performance of sustained intelligence from Stanford and another of subtle humour from Bebe Neuwirth 2 +59890 3023 a performance of sustained intelligence from Stanford and another of subtle humour from Bebe Neuwirth 4 +59891 3023 a performance 2 +59892 3023 of sustained intelligence from Stanford and another of subtle humour from Bebe Neuwirth 4 +59893 3023 sustained intelligence from Stanford and another of subtle humour from Bebe Neuwirth 2 +59894 3023 sustained intelligence from Stanford and 2 +59895 3023 sustained intelligence from Stanford 3 +59896 3023 sustained intelligence 2 +59897 3023 sustained 2 +59898 3023 from Stanford 2 +59899 3023 Stanford 2 +59900 3023 another of subtle humour from Bebe Neuwirth 3 +59901 3023 of subtle humour from Bebe Neuwirth 3 +59902 3023 subtle humour from Bebe Neuwirth 3 +59903 3023 subtle humour 3 +59904 3023 from Bebe Neuwirth 2 +59905 3023 Bebe Neuwirth 2 +59906 3023 Bebe 2 +59907 3023 Neuwirth 2 +59908 3023 , as an older woman who seduces Oscar , the film founders on its lack of empathy for the social milieu - rich New York intelligentsia - and its off 1 +59909 3023 as an older woman who seduces Oscar , the film founders on its lack of empathy for the social milieu - rich New York intelligentsia - and its off 1 +59910 3023 as an older woman who seduces Oscar 2 +59911 3023 an older woman who seduces Oscar 2 +59912 3023 an older woman 2 +59913 3023 older woman 2 +59914 3023 who seduces Oscar 2 +59915 3023 seduces Oscar 2 +59916 3023 seduces 2 +59917 3023 , the film founders on its lack of empathy for the social milieu - rich New York intelligentsia - and its off 1 +59918 3023 the film founders on its lack of empathy for the social milieu - rich New York intelligentsia - and its off 1 +59919 3023 founders on its lack of empathy for the social milieu - rich New York intelligentsia - and its off 2 +59920 3023 founders on its lack of empathy 1 +59921 3023 founders 2 +59922 3023 on its lack of empathy 1 +59923 3023 its lack of empathy 1 +59924 3023 its lack 2 +59925 3023 for the social milieu - rich New York intelligentsia - and its off 2 +59926 3023 the social milieu - rich New York intelligentsia - and its off 2 +59927 3023 the social milieu - rich New York intelligentsia - and 2 +59928 3023 the social milieu - rich New York intelligentsia - 3 +59929 3023 the social milieu - rich New York intelligentsia 2 +59930 3023 the social milieu - 2 +59931 3023 the social milieu 2 +59932 3023 social milieu 2 +59933 3023 milieu 2 +59934 3023 rich New York intelligentsia 2 +59935 3023 New York intelligentsia 2 +59936 3023 York intelligentsia 3 +59937 3023 intelligentsia 3 +59938 3023 its off 2 +59939 3024 Though it flirts with bathos and pathos and the further Oprahfication of the world as we know it , it still cuts all the way down to broken bone . 2 +59940 3024 Though it flirts with bathos and pathos and the further Oprahfication of the world as we know it 2 +59941 3024 it flirts with bathos and pathos and the further Oprahfication of the world as we know it 2 +59942 3024 flirts with bathos and pathos and the further Oprahfication of the world as we know it 1 +59943 3024 flirts with bathos and pathos and the further Oprahfication of the world 2 +59944 3024 with bathos and pathos and the further Oprahfication of the world 1 +59945 3024 bathos and pathos and the further Oprahfication of the world 2 +59946 3024 bathos and pathos and 2 +59947 3024 bathos and pathos 2 +59948 3024 bathos and 2 +59949 3024 bathos 2 +59950 3024 the further Oprahfication of the world 1 +59951 3024 the further Oprahfication 2 +59952 3024 further Oprahfication 1 +59953 3024 Oprahfication 1 +59954 3024 , it still cuts all the way down to broken bone . 1 +59955 3024 it still cuts all the way down to broken bone . 1 +59956 3024 still cuts all the way down to broken bone . 3 +59957 3024 still cuts all the way down to broken bone 1 +59958 3024 cuts all the way down to broken bone 2 +59959 3024 cuts all the way down 2 +59960 3024 cuts all the way 2 +59961 3024 to broken bone 2 +59962 3024 broken bone 2 +59963 3025 This is one baaaaaaaaad movie . 0 +59964 3025 is one baaaaaaaaad movie . 0 +59965 3025 is one baaaaaaaaad movie 0 +59966 3025 one baaaaaaaaad movie 0 +59967 3025 baaaaaaaaad movie 0 +59968 3025 baaaaaaaaad 0 +59969 3026 a delightful romantic comedy with plenty of bite . 3 +59970 3026 a delightful romantic comedy with plenty of bite 4 +59971 3026 a delightful romantic comedy with plenty 4 +59972 3026 a delightful romantic comedy 3 +59973 3026 delightful romantic comedy 4 +59974 3026 with plenty 2 +59975 3026 of bite 2 +59976 3027 It must be the end of the world : the best film so far this year is a franchise sequel starring Wesley Snipes . 3 +59977 3027 It must be the end of the world : the best film so far this year is a franchise sequel starring Wesley Snipes 3 +59978 3027 It must be the end of the world : 1 +59979 3027 It must be the end of the world 2 +59980 3027 must be the end of the world 1 +59981 3027 be the end of the world 3 +59982 3027 the end of the world 1 +59983 3027 the best film so far this year is a franchise sequel starring Wesley Snipes 4 +59984 3027 the best film 4 +59985 3027 so far this year is a franchise sequel starring Wesley Snipes 2 +59986 3027 this year is a franchise sequel starring Wesley Snipes 3 +59987 3027 is a franchise sequel starring Wesley Snipes 2 +59988 3027 a franchise sequel starring Wesley Snipes 2 +59989 3027 a franchise sequel 2 +59990 3027 franchise sequel 2 +59991 3027 starring Wesley Snipes 2 +59992 3027 Wesley Snipes 2 +59993 3027 Wesley 2 +59994 3027 Snipes 2 +59995 3028 What -LRB- Denis -RRB- accomplishes in his chilling , unnerving film is a double portrait of two young women whose lives were as claustrophic , suffocating and chilly as the attics to which they were inevitably consigned . 3 +59996 3028 What -LRB- Denis -RRB- accomplishes in his chilling , unnerving film 3 +59997 3028 -LRB- Denis -RRB- accomplishes in his chilling , unnerving film 3 +59998 3028 Denis -RRB- accomplishes in his chilling , unnerving film 4 +59999 3028 Denis 2 +60000 3028 -RRB- accomplishes in his chilling , unnerving film 2 +60001 3028 accomplishes in his chilling , unnerving film 3 +60002 3028 in his chilling , unnerving film 3 +60003 3028 his chilling , unnerving film 2 +60004 3028 chilling , unnerving film 3 +60005 3028 chilling , unnerving 2 +60006 3028 , unnerving 2 +60007 3028 is a double portrait of two young women whose lives were as claustrophic , suffocating and chilly as the attics to which they were inevitably consigned . 2 +60008 3028 is a double portrait of two young women whose lives were as claustrophic , suffocating and chilly as the attics to which they were inevitably consigned 2 +60009 3028 a double portrait of two young women whose lives were as claustrophic , suffocating and chilly as the attics to which they were inevitably consigned 2 +60010 3028 a double portrait 2 +60011 3028 double portrait 2 +60012 3028 of two young women whose lives were as claustrophic , suffocating and chilly as the attics to which they were inevitably consigned 2 +60013 3028 two young women whose lives were as claustrophic , suffocating and chilly as the attics to which they were inevitably consigned 1 +60014 3028 two young women 2 +60015 3028 whose lives were as claustrophic , suffocating and chilly as the attics to which they were inevitably consigned 1 +60016 3028 whose lives 2 +60017 3028 were as claustrophic , suffocating and chilly as the attics to which they were inevitably consigned 1 +60018 3028 as claustrophic , suffocating and chilly as the attics to which they were inevitably consigned 1 +60019 3028 as claustrophic , suffocating and chilly 0 +60020 3028 claustrophic , suffocating and chilly 0 +60021 3028 claustrophic 2 +60022 3028 , suffocating and chilly 2 +60023 3028 suffocating and chilly 2 +60024 3028 as the attics to which they were inevitably consigned 2 +60025 3028 the attics to which they were inevitably consigned 2 +60026 3028 the attics 2 +60027 3028 attics 2 +60028 3028 to which they were inevitably consigned 2 +60029 3028 they were inevitably consigned 2 +60030 3028 were inevitably consigned 2 +60031 3028 inevitably consigned 1 +60032 3028 inevitably 2 +60033 3028 consigned 2 +60034 3029 It is about irrational , unexplainable life and it seems so real because it does not attempt to filter out the complexity . 3 +60035 3029 It is about irrational , unexplainable life and it seems so real because it does not attempt to filter out the complexity 4 +60036 3029 It is about irrational , unexplainable life and 2 +60037 3029 It is about irrational , unexplainable life 2 +60038 3029 is about irrational , unexplainable life 2 +60039 3029 about irrational , unexplainable life 2 +60040 3029 irrational , unexplainable life 2 +60041 3029 , unexplainable life 2 +60042 3029 unexplainable life 2 +60043 3029 unexplainable 1 +60044 3029 it seems so real because it does not attempt to filter out the complexity 3 +60045 3029 seems so real because it does not attempt to filter out the complexity 3 +60046 3029 seems so real 3 +60047 3029 so real 3 +60048 3029 because it does not attempt to filter out the complexity 2 +60049 3029 it does not attempt to filter out the complexity 3 +60050 3029 does not attempt to filter out the complexity 2 +60051 3029 attempt to filter out the complexity 2 +60052 3029 to filter out the complexity 2 +60053 3029 filter out the complexity 3 +60054 3029 filter out 2 +60055 3029 filter 2 +60056 3029 the complexity 2 +60057 3030 The writing is clever and the cast is appealing . 4 +60058 3030 The writing is clever and the cast is appealing 4 +60059 3030 The writing is clever and 3 +60060 3030 The writing is clever 4 +60061 3030 is clever 3 +60062 3030 the cast is appealing 3 +60063 3030 is appealing 3 +60064 3031 Davis the performer is plenty fetching enough , but she needs to shake up the mix , and work in something that does n't feel like a half-baked stand-up routine . 2 +60065 3031 Davis the performer is plenty fetching enough , but she needs to shake up the mix , and work in something that does n't feel like a half-baked stand-up routine 1 +60066 3031 Davis the performer is plenty fetching enough , but 2 +60067 3031 Davis the performer is plenty fetching enough , 3 +60068 3031 Davis the performer is plenty fetching enough 2 +60069 3031 Davis the performer 2 +60070 3031 the performer 2 +60071 3031 performer 2 +60072 3031 is plenty fetching enough 3 +60073 3031 is plenty 2 +60074 3031 fetching enough 2 +60075 3031 fetching 3 +60076 3031 she needs to shake up the mix , and work in something that does n't feel like a half-baked stand-up routine 0 +60077 3031 needs to shake up the mix , and work in something that does n't feel like a half-baked stand-up routine 1 +60078 3031 to shake up the mix , and work in something that does n't feel like a half-baked stand-up routine 2 +60079 3031 shake up the mix , and work in something that does n't feel like a half-baked stand-up routine 1 +60080 3031 shake up the mix , and 2 +60081 3031 shake up the mix , 2 +60082 3031 shake up the mix 2 +60083 3031 shake up 2 +60084 3031 the mix 2 +60085 3031 work in something that does n't feel like a half-baked stand-up routine 0 +60086 3031 in something that does n't feel like a half-baked stand-up routine 2 +60087 3031 something that does n't feel like a half-baked stand-up routine 3 +60088 3031 that does n't feel like a half-baked stand-up routine 2 +60089 3031 does n't feel like a half-baked stand-up routine 3 +60090 3031 feel like a half-baked stand-up routine 1 +60091 3031 like a half-baked stand-up routine 1 +60092 3031 a half-baked stand-up routine 3 +60093 3031 half-baked stand-up routine 1 +60094 3031 stand-up routine 2 +60095 3032 Certainly the big finish was n't something Galinsky and Hawley could have planned for ... but part of being a good documentarian is being there when the rope snaps . 3 +60096 3032 Certainly the big finish was n't something Galinsky and Hawley could have planned for ... but part of being a good documentarian is being there when the rope snaps 2 +60097 3032 Certainly the big finish was n't something Galinsky and Hawley could have planned for ... 2 +60098 3032 Certainly the big finish was n't something Galinsky and Hawley could have planned for 2 +60099 3032 the big finish was n't something Galinsky and Hawley could have planned for 2 +60100 3032 was n't something Galinsky and Hawley could have planned for 2 +60101 3032 something Galinsky and Hawley could have planned for 2 +60102 3032 Galinsky and Hawley could have planned for 2 +60103 3032 Galinsky and Hawley 2 +60104 3032 Galinsky and 2 +60105 3032 Galinsky 2 +60106 3032 Hawley 2 +60107 3032 could have planned for 2 +60108 3032 have planned for 2 +60109 3032 planned for 2 +60110 3032 planned 2 +60111 3032 but part of being a good documentarian is being there when the rope snaps 2 +60112 3032 part of being a good documentarian is being there when the rope snaps 2 +60113 3032 part of being a good documentarian 3 +60114 3032 of being a good documentarian 3 +60115 3032 being a good documentarian 3 +60116 3032 a good documentarian 3 +60117 3032 good documentarian 3 +60118 3032 documentarian 3 +60119 3032 is being there when the rope snaps 2 +60120 3032 being there when the rope snaps 2 +60121 3032 there when the rope snaps 2 +60122 3032 when the rope snaps 2 +60123 3032 the rope snaps 1 +60124 3032 the rope 2 +60125 3032 rope 2 +60126 3033 While easier to sit through than most of Jaglom 's self-conscious and gratingly irritating films , it 's still tainted by cliches , painful improbability and murky points . 1 +60127 3033 While easier to sit through than most of Jaglom 's self-conscious and gratingly irritating films 2 +60128 3033 easier to sit through than most of Jaglom 's self-conscious and gratingly irritating films 1 +60129 3033 to sit through than most of Jaglom 's self-conscious and gratingly irritating films 0 +60130 3033 sit through than most of Jaglom 's self-conscious and gratingly irritating films 2 +60131 3033 than most of Jaglom 's self-conscious and gratingly irritating films 1 +60132 3033 most of Jaglom 's self-conscious and gratingly irritating films 1 +60133 3033 of Jaglom 's self-conscious and gratingly irritating films 1 +60134 3033 Jaglom 's self-conscious and gratingly irritating films 1 +60135 3033 self-conscious and gratingly irritating films 2 +60136 3033 self-conscious and gratingly 2 +60137 3033 self-conscious and 2 +60138 3033 gratingly 2 +60139 3033 irritating films 1 +60140 3033 , it 's still tainted by cliches , painful improbability and murky points . 1 +60141 3033 it 's still tainted by cliches , painful improbability and murky points . 0 +60142 3033 's still tainted by cliches , painful improbability and murky points . 2 +60143 3033 's still tainted by cliches , painful improbability and murky points 1 +60144 3033 tainted by cliches , painful improbability and murky points 0 +60145 3033 tainted 1 +60146 3033 by cliches , painful improbability and murky points 1 +60147 3033 cliches , painful improbability and murky points 2 +60148 3033 cliches , painful improbability and murky 0 +60149 3033 cliches , painful improbability and 1 +60150 3033 cliches , painful improbability 1 +60151 3033 , painful improbability 1 +60152 3033 painful improbability 1 +60153 3033 improbability 2 +60154 3034 Poignant if familiar story of a young person suspended between two cultures . 3 +60155 3034 Poignant if familiar story of a young person 3 +60156 3034 Poignant if familiar story 2 +60157 3034 if familiar story 2 +60158 3034 if familiar 2 +60159 3034 of a young person 2 +60160 3034 a young person 2 +60161 3034 young person 2 +60162 3034 suspended between two cultures . 2 +60163 3034 suspended between two cultures 2 +60164 3034 suspended 2 +60165 3034 between two cultures 2 +60166 3034 two cultures 2 +60167 3035 Despite some comic sparks , Welcome to Collinwood never catches fire . 1 +60168 3035 Despite some comic sparks 2 +60169 3035 some comic sparks 3 +60170 3035 comic sparks 3 +60171 3035 sparks 2 +60172 3035 , Welcome to Collinwood never catches fire . 1 +60173 3035 Welcome to Collinwood never catches fire . 1 +60174 3035 Welcome to Collinwood 2 +60175 3035 to Collinwood 2 +60176 3035 Collinwood 2 +60177 3035 never catches fire . 2 +60178 3035 catches fire . 2 +60179 3035 catches fire 2 +60180 3036 Even more baffling is that it 's funny . 2 +60181 3036 Even more baffling 2 +60182 3036 more baffling 1 +60183 3036 is that it 's funny . 3 +60184 3036 is that it 's funny 3 +60185 3036 that it 's funny 3 +60186 3036 it 's funny 4 +60187 3037 An old-fashioned but emotionally stirring adventure tale of the kind they rarely make anymore . 3 +60188 3037 An old-fashioned but emotionally stirring adventure tale of the kind they 3 +60189 3037 An old-fashioned but emotionally stirring adventure tale 4 +60190 3037 old-fashioned but emotionally stirring adventure tale 3 +60191 3037 old-fashioned but emotionally stirring 3 +60192 3037 old-fashioned but 2 +60193 3037 emotionally stirring 3 +60194 3037 adventure tale 2 +60195 3037 of the kind they 2 +60196 3037 the kind they 2 +60197 3037 kind they 2 +60198 3037 rarely make anymore . 2 +60199 3037 make anymore . 2 +60200 3037 make anymore 2 +60201 3038 Not many movies have that kind of impact on me these days . 4 +60202 3038 Not many movies 2 +60203 3038 many movies 2 +60204 3038 have that kind of impact on me these days . 2 +60205 3038 have that kind of impact on me these days 3 +60206 3038 that kind of impact on me these days 3 +60207 3038 that kind 2 +60208 3038 of impact on me these days 2 +60209 3038 impact on me these days 2 +60210 3038 impact on me 2 +60211 3038 on me 2 +60212 3039 There 's a spontaneity to The Chateau , a sense of light-heartedness , that makes it attractive throughout . 3 +60213 3039 's a spontaneity to The Chateau , a sense of light-heartedness , that makes it attractive throughout . 4 +60214 3039 's a spontaneity to The Chateau , a sense of light-heartedness , that makes it attractive throughout 2 +60215 3039 a spontaneity to The Chateau , a sense of light-heartedness , that makes it attractive throughout 3 +60216 3039 a spontaneity 3 +60217 3039 spontaneity 2 +60218 3039 to The Chateau , a sense of light-heartedness , that makes it attractive throughout 3 +60219 3039 The Chateau , a sense of light-heartedness , that makes it attractive throughout 3 +60220 3039 The Chateau , 2 +60221 3039 a sense of light-heartedness , that makes it attractive throughout 4 +60222 3039 of light-heartedness , that makes it attractive throughout 3 +60223 3039 light-heartedness , that makes it attractive throughout 3 +60224 3039 light-heartedness , 2 +60225 3039 light-heartedness 2 +60226 3039 that makes it attractive throughout 3 +60227 3039 makes it attractive throughout 3 +60228 3039 it attractive throughout 3 +60229 3039 attractive throughout 4 +60230 3040 A very capable nailbiter . 3 +60231 3040 A very capable nailbiter 2 +60232 3040 very capable nailbiter 4 +60233 3040 very capable 3 +60234 3040 nailbiter 2 +60235 3041 It 's not just a feel-good movie , it 's a feel movie . 3 +60236 3041 It 's not just a feel-good movie 3 +60237 3041 's not just a feel-good movie 3 +60238 3041 's not just 2 +60239 3041 a feel-good movie 3 +60240 3041 feel-good movie 3 +60241 3041 , it 's a feel movie . 2 +60242 3041 it 's a feel movie . 2 +60243 3041 's a feel movie . 2 +60244 3041 's a feel movie 2 +60245 3041 a feel movie 3 +60246 3041 feel movie 2 +60247 3042 The sound of GUNFIRE and cell phones RINGING . 2 +60248 3042 The sound of GUNFIRE and cell phones 2 +60249 3042 The sound 2 +60250 3042 of GUNFIRE and cell phones 2 +60251 3042 GUNFIRE and cell phones 2 +60252 3042 GUNFIRE 2 +60253 3042 and cell phones 2 +60254 3042 RINGING . 2 +60255 3043 But one thing 's for sure : It never comes close to being either funny or scary . 0 +60256 3043 But one thing 's for sure : It never comes close to being either funny or scary 1 +60257 3043 But one thing 's for sure : 2 +60258 3043 But one thing 's for sure 2 +60259 3043 one thing 's for sure 2 +60260 3043 's for sure 2 +60261 3043 It never comes close to being either funny or scary 0 +60262 3043 never comes close to being either funny or scary 0 +60263 3043 comes close to being either funny or scary 2 +60264 3043 close to being either funny or scary 2 +60265 3043 to being either funny or scary 2 +60266 3043 being either funny or scary 2 +60267 3043 either funny or scary 2 +60268 3043 funny or scary 2 +60269 3044 Soderbergh seems capable only of delivering artfully lighted , earnest inquiries that lack the kind of genuine depth that would make them redeemable . 2 +60270 3044 seems capable only of delivering artfully lighted , earnest inquiries that lack the kind of genuine depth that would make them redeemable . 2 +60271 3044 seems capable only of delivering artfully lighted , earnest inquiries that lack the kind of genuine depth that would make them redeemable 1 +60272 3044 capable only of delivering artfully lighted , earnest inquiries that lack the kind of genuine depth that would make them redeemable 2 +60273 3044 capable only of delivering artfully lighted , earnest inquiries 2 +60274 3044 capable only of delivering 1 +60275 3044 capable only of 2 +60276 3044 only of 2 +60277 3044 artfully lighted , earnest inquiries 3 +60278 3044 artfully lighted 3 +60279 3044 artfully 4 +60280 3044 lighted 2 +60281 3044 , earnest inquiries 2 +60282 3044 earnest inquiries 3 +60283 3044 inquiries 2 +60284 3044 that lack the kind of genuine depth that would make them redeemable 1 +60285 3044 lack the kind of genuine depth that would make them redeemable 1 +60286 3044 the kind of genuine depth that would make them redeemable 2 +60287 3044 the kind of genuine depth 3 +60288 3044 of genuine depth 3 +60289 3044 genuine depth 4 +60290 3044 that would make them redeemable 2 +60291 3044 would make them redeemable 2 +60292 3044 make them redeemable 2 +60293 3044 them redeemable 2 +60294 3044 redeemable 3 +60295 3045 It has more in common with a fireworks display than a movie , which normally is expected to have characters and a storyline . 1 +60296 3045 has more in common with a fireworks display than a movie , which normally is expected to have characters and a storyline . 0 +60297 3045 has more in common with a fireworks display than a movie , which normally is expected to have characters and a storyline 1 +60298 3045 more in common with a fireworks display than a movie , which normally is expected to have characters and a storyline 0 +60299 3045 more in common with a fireworks 2 +60300 3045 more in common 2 +60301 3045 in common 2 +60302 3045 with a fireworks 2 +60303 3045 a fireworks 3 +60304 3045 fireworks 2 +60305 3045 display than a movie , which normally is expected to have characters and a storyline 1 +60306 3045 than a movie , which normally is expected to have characters and a storyline 1 +60307 3045 a movie , which normally is expected to have characters and a storyline 1 +60308 3045 which normally is expected to have characters and a storyline 2 +60309 3045 normally is expected to have characters and a storyline 2 +60310 3045 normally 2 +60311 3045 is expected to have characters and a storyline 2 +60312 3045 expected to have characters and a storyline 2 +60313 3045 to have characters and a storyline 2 +60314 3045 have characters and a storyline 2 +60315 3045 characters and a storyline 2 +60316 3046 Co-writer\/director Jonathan Parker 's attempts to fashion a Brazil-like , hyper-real satire fall dreadfully short . 0 +60317 3046 Co-writer\/director Jonathan Parker 's attempts to fashion a Brazil-like , hyper-real satire 2 +60318 3046 Co-writer\/director Jonathan Parker 's 2 +60319 3046 Co-writer\/director 2 +60320 3046 attempts to fashion a Brazil-like , hyper-real satire 1 +60321 3046 to fashion a Brazil-like , hyper-real satire 2 +60322 3046 fashion a Brazil-like , hyper-real satire 3 +60323 3046 a Brazil-like , hyper-real satire 1 +60324 3046 Brazil-like , hyper-real satire 3 +60325 3046 Brazil-like 2 +60326 3046 , hyper-real satire 2 +60327 3046 hyper-real satire 2 +60328 3046 hyper-real 2 +60329 3046 fall dreadfully short . 1 +60330 3046 fall dreadfully short 0 +60331 3046 dreadfully short 1 +60332 3046 dreadfully 1 +60333 3047 Novak contemplates a heartland so overwhelmed by its lack of purpose that it seeks excitement in manufactured high drama . 1 +60334 3047 Novak 2 +60335 3047 contemplates a heartland so overwhelmed by its lack of purpose that it seeks excitement in manufactured high drama . 1 +60336 3047 contemplates a heartland so overwhelmed by its lack of purpose that it seeks excitement in manufactured high drama 2 +60337 3047 contemplates 2 +60338 3047 a heartland so overwhelmed by its lack of purpose that it seeks excitement in manufactured high drama 1 +60339 3047 a heartland 2 +60340 3047 heartland 2 +60341 3047 so overwhelmed by its lack of purpose that it seeks excitement in manufactured high drama 1 +60342 3047 overwhelmed by its lack of purpose that it seeks excitement in manufactured high drama 1 +60343 3047 overwhelmed by its lack of purpose 1 +60344 3047 by its lack of purpose 1 +60345 3047 its lack of purpose 1 +60346 3047 that it seeks excitement in manufactured high drama 2 +60347 3047 it seeks excitement in manufactured high drama 1 +60348 3047 seeks excitement in manufactured high drama 2 +60349 3047 seeks 2 +60350 3047 excitement in manufactured high drama 1 +60351 3047 in manufactured high drama 2 +60352 3047 manufactured high drama 2 +60353 3047 high drama 2 +60354 3048 Blue Crush is so prolonged and boring it is n't even close to being the barn-burningly bad movie it promised it would be . 1 +60355 3048 is so prolonged and boring it is n't even close to being the barn-burningly bad movie it promised it would be . 0 +60356 3048 is so prolonged and boring it is n't even close to being the barn-burningly bad movie it promised it would be 0 +60357 3048 is so prolonged and boring 0 +60358 3048 so prolonged and boring 0 +60359 3048 prolonged and boring 0 +60360 3048 prolonged and 2 +60361 3048 prolonged 2 +60362 3048 it is n't even close to being the barn-burningly bad movie it promised it would be 2 +60363 3048 is n't even close to being the barn-burningly bad movie it promised it would be 2 +60364 3048 even close to being the barn-burningly bad movie it promised it would be 0 +60365 3048 close to being the barn-burningly bad movie it promised it would be 1 +60366 3048 to being the barn-burningly bad movie it promised it would be 0 +60367 3048 being the barn-burningly bad movie it promised it would be 0 +60368 3048 the barn-burningly bad movie it promised it would be 1 +60369 3048 the barn-burningly bad movie 0 +60370 3048 barn-burningly bad movie 1 +60371 3048 barn-burningly 1 +60372 3048 it promised it would be 3 +60373 3048 promised it would be 2 +60374 3048 it would be 3 +60375 3048 would be 2 +60376 3049 Viewers will need all the luck they can muster just figuring out who 's who in this pretentious mess . 0 +60377 3049 will need all the luck they can muster just figuring out who 's who in this pretentious mess . 2 +60378 3049 will need all the luck they can muster just figuring out who 's who in this pretentious mess 0 +60379 3049 need all the luck they can muster just figuring out who 's who in this pretentious mess 0 +60380 3049 need all the luck they can muster just figuring out who 's who 2 +60381 3049 all the luck they can muster just figuring out who 's who 2 +60382 3049 all the luck 2 +60383 3049 the luck 2 +60384 3049 they can muster just figuring out who 's who 2 +60385 3049 can muster just figuring out who 's who 2 +60386 3049 muster just figuring out who 's who 2 +60387 3049 muster just 2 +60388 3049 figuring out who 's who 2 +60389 3049 figuring out 2 +60390 3049 figuring 2 +60391 3049 in this pretentious mess 0 +60392 3049 this pretentious mess 1 +60393 3050 Like an Afterschool Special with costumes by Gianni Versace , Mad Love looks better than it feels . 1 +60394 3050 Like an Afterschool Special with costumes by Gianni Versace 2 +60395 3050 an Afterschool Special with costumes by Gianni Versace 2 +60396 3050 an Afterschool Special 2 +60397 3050 Afterschool Special 2 +60398 3050 Afterschool 2 +60399 3050 with costumes by Gianni Versace 2 +60400 3050 costumes by Gianni Versace 2 +60401 3050 by Gianni Versace 2 +60402 3050 Gianni Versace 2 +60403 3050 Gianni 2 +60404 3050 Versace 3 +60405 3050 , Mad Love looks better than it feels . 1 +60406 3050 Mad Love looks better than it feels . 2 +60407 3050 Mad Love 2 +60408 3050 Mad 2 +60409 3050 looks better than it feels . 2 +60410 3050 looks better than it feels 2 +60411 3050 better than it feels 2 +60412 3050 than it feels 2 +60413 3050 it feels 2 +60414 3051 The basic premise is intriguing but quickly becomes distasteful and downright creepy . 1 +60415 3051 The basic premise 2 +60416 3051 basic premise 2 +60417 3051 is intriguing but quickly becomes distasteful and downright creepy . 0 +60418 3051 is intriguing but quickly becomes distasteful and downright creepy 1 +60419 3051 is intriguing but 2 +60420 3051 is intriguing 3 +60421 3051 quickly becomes distasteful and downright creepy 0 +60422 3051 becomes distasteful and downright creepy 1 +60423 3051 distasteful and downright creepy 0 +60424 3051 distasteful and 1 +60425 3051 distasteful 0 +60426 3052 The mystery of Enigma is how a rich historical subject , combined with so much first-rate talent ... could have yielded such a flat , plodding picture . 1 +60427 3052 The mystery of Enigma 2 +60428 3052 of Enigma 2 +60429 3052 is how a rich historical subject , combined with so much first-rate talent ... could have yielded such a flat , plodding picture . 1 +60430 3052 is how a rich historical subject , combined with so much first-rate talent ... could have yielded such a flat , plodding picture 1 +60431 3052 how a rich historical subject , combined with so much first-rate talent ... could have yielded such a flat , plodding picture 1 +60432 3052 a rich historical subject , combined with so much first-rate talent ... could have yielded such a flat , plodding picture 2 +60433 3052 a rich historical subject 3 +60434 3052 rich historical subject 3 +60435 3052 historical subject 2 +60436 3052 , combined with so much first-rate talent ... could have yielded such a flat , plodding picture 1 +60437 3052 combined with so much first-rate talent ... could have yielded such a flat , plodding picture 0 +60438 3052 combined with so much first-rate talent 4 +60439 3052 with so much first-rate talent 3 +60440 3052 so much first-rate talent 4 +60441 3052 so much first-rate 3 +60442 3052 much first-rate 3 +60443 3052 ... could have yielded such a flat , plodding picture 2 +60444 3052 could have yielded such a flat , plodding picture 1 +60445 3052 have yielded such a flat , plodding picture 2 +60446 3052 yielded such a flat , plodding picture 0 +60447 3052 yielded 2 +60448 3052 such a flat , plodding picture 0 +60449 3052 a flat , plodding picture 1 +60450 3052 flat , plodding picture 1 +60451 3052 , plodding picture 1 +60452 3052 plodding picture 0 +60453 3053 It could have been something special , but two things drag it down to mediocrity -- director Clare Peploe 's misunderstanding of Marivaux 's rhythms , and Mira Sorvino 's limitations as a classical actress . 0 +60454 3053 It could have been something special , but two things drag it down to mediocrity -- director Clare Peploe 's misunderstanding of Marivaux 's rhythms , and Mira Sorvino 's limitations as a classical actress 1 +60455 3053 It could have been something special , but 2 +60456 3053 It could have been something special , 2 +60457 3053 It could have been something special 1 +60458 3053 could have been something special 2 +60459 3053 have been something special 2 +60460 3053 been something special 2 +60461 3053 something special 4 +60462 3053 two things drag it down to mediocrity -- director Clare Peploe 's misunderstanding of Marivaux 's rhythms , and Mira Sorvino 's limitations as a classical actress 1 +60463 3053 drag it down to mediocrity -- director Clare Peploe 's misunderstanding of Marivaux 's rhythms , and Mira Sorvino 's limitations as a classical actress 0 +60464 3053 drag it down to mediocrity -- 0 +60465 3053 drag it down to mediocrity 0 +60466 3053 drag it 2 +60467 3053 down to mediocrity 1 +60468 3053 to mediocrity 1 +60469 3053 director Clare Peploe 's misunderstanding of Marivaux 's rhythms , and Mira Sorvino 's limitations as a classical actress 2 +60470 3053 director Clare Peploe 's 2 +60471 3053 Clare Peploe 's 2 +60472 3053 Clare 2 +60473 3053 Peploe 's 2 +60474 3053 Peploe 2 +60475 3053 misunderstanding of Marivaux 's rhythms , and Mira Sorvino 's limitations as a classical actress 1 +60476 3053 misunderstanding 2 +60477 3053 of Marivaux 's rhythms , and Mira Sorvino 's limitations as a classical actress 1 +60478 3053 Marivaux 's rhythms , and Mira Sorvino 's limitations as a classical actress 1 +60479 3053 Marivaux 's rhythms , and 2 +60480 3053 Marivaux 's rhythms , 2 +60481 3053 Marivaux 's rhythms 2 +60482 3053 Marivaux 's 2 +60483 3053 Marivaux 2 +60484 3053 Mira Sorvino 's limitations as a classical actress 1 +60485 3053 Mira Sorvino 's limitations 1 +60486 3053 Mira Sorvino 's 2 +60487 3053 Mira 2 +60488 3053 Sorvino 's 2 +60489 3053 limitations 1 +60490 3053 as a classical actress 2 +60491 3053 a classical actress 3 +60492 3053 classical actress 3 +60493 3054 Steadfastly uncinematic but powerfully dramatic . 3 +60494 3054 Steadfastly uncinematic but powerfully 2 +60495 3054 Steadfastly 2 +60496 3054 uncinematic but powerfully 2 +60497 3054 uncinematic but 1 +60498 3054 dramatic . 2 +60499 3055 At once emotional and richly analytical , the Cosby-Seinfeld encounter alone confirms the serious weight behind this superficially loose , larky documentary . 2 +60500 3055 At once emotional and richly analytical 4 +60501 3055 once emotional and richly analytical 3 +60502 3055 once emotional and richly 3 +60503 3055 once emotional and 2 +60504 3055 once emotional 2 +60505 3055 , the Cosby-Seinfeld encounter alone confirms the serious weight behind this superficially loose , larky documentary . 1 +60506 3055 the Cosby-Seinfeld encounter alone confirms the serious weight behind this superficially loose , larky documentary . 2 +60507 3055 the Cosby-Seinfeld encounter 2 +60508 3055 Cosby-Seinfeld encounter 2 +60509 3055 Cosby-Seinfeld 2 +60510 3055 alone confirms the serious weight behind this superficially loose , larky documentary . 2 +60511 3055 confirms the serious weight behind this superficially loose , larky documentary . 2 +60512 3055 confirms the serious weight behind this superficially loose , larky documentary 2 +60513 3055 confirms 2 +60514 3055 the serious weight behind this superficially loose , larky documentary 2 +60515 3055 the serious weight 3 +60516 3055 serious weight 2 +60517 3055 behind this superficially loose , larky documentary 1 +60518 3055 this superficially loose , larky documentary 1 +60519 3055 superficially loose , larky documentary 1 +60520 3055 superficially loose 1 +60521 3055 , larky documentary 2 +60522 3055 larky documentary 2 +60523 3055 larky 2 +60524 3056 A summary of the plot does n't quite do justice to the awfulness of the movie , for that comes through all too painfully in the execution . 0 +60525 3056 A summary of the plot 2 +60526 3056 A summary 2 +60527 3056 summary 2 +60528 3056 of the plot 2 +60529 3056 does n't quite do justice to the awfulness of the movie , for that comes through all too painfully in the execution . 0 +60530 3056 does n't quite do justice to the awfulness of the movie , for that comes through all too painfully in the execution 0 +60531 3056 do justice to the awfulness of the movie , for that comes through all too painfully in the execution 0 +60532 3056 do justice to the awfulness of the movie , 0 +60533 3056 do justice to the awfulness of the movie 0 +60534 3056 do justice 3 +60535 3056 to the awfulness of the movie 0 +60536 3056 the awfulness of the movie 1 +60537 3056 the awfulness 2 +60538 3056 awfulness 1 +60539 3056 for that comes through all too painfully in the execution 1 +60540 3056 that comes through all too painfully in the execution 1 +60541 3056 comes through all too painfully in the execution 1 +60542 3056 comes through all too painfully 2 +60543 3056 through all too painfully 1 +60544 3056 all too painfully 2 +60545 3056 too painfully 1 +60546 3057 Big Fat Liar is little more than Home Alone raised to a new , self-deprecating level . 0 +60547 3057 Big Fat Liar 2 +60548 3057 Fat Liar 2 +60549 3057 is little more than Home Alone raised to a new , self-deprecating level . 1 +60550 3057 is little more than Home Alone raised to a new , self-deprecating level 1 +60551 3057 is little more 2 +60552 3057 than Home Alone raised to a new , self-deprecating level 1 +60553 3057 Home Alone raised to a new , self-deprecating level 2 +60554 3057 Home Alone 2 +60555 3057 raised to a new , self-deprecating level 3 +60556 3057 to a new , self-deprecating level 1 +60557 3057 a new , self-deprecating level 1 +60558 3057 new , self-deprecating level 2 +60559 3057 , self-deprecating level 2 +60560 3057 self-deprecating level 2 +60561 3058 Young Everlyn Sampi , as the courageous Molly Craig , simply radiates star-power potential in this remarkable and memorable film . 4 +60562 3058 Young Everlyn Sampi , as the courageous Molly Craig , 3 +60563 3058 Young Everlyn Sampi , as the courageous Molly Craig 3 +60564 3058 Young Everlyn Sampi , 2 +60565 3058 Young Everlyn Sampi 2 +60566 3058 Everlyn Sampi 2 +60567 3058 Everlyn 2 +60568 3058 Sampi 2 +60569 3058 as the courageous Molly Craig 2 +60570 3058 the courageous Molly Craig 3 +60571 3058 courageous Molly Craig 3 +60572 3058 courageous 3 +60573 3058 Molly Craig 2 +60574 3058 Molly 2 +60575 3058 Craig 2 +60576 3058 simply radiates star-power potential in this remarkable and memorable film . 4 +60577 3058 radiates star-power potential in this remarkable and memorable film . 4 +60578 3058 radiates star-power potential in this remarkable and memorable film 4 +60579 3058 radiates 2 +60580 3058 star-power potential in this remarkable and memorable film 4 +60581 3058 star-power potential 3 +60582 3058 star-power 2 +60583 3058 in this remarkable and memorable film 4 +60584 3058 this remarkable and memorable film 4 +60585 3058 remarkable and memorable film 4 +60586 3058 remarkable and memorable 4 +60587 3058 remarkable and 3 +60588 3059 ... the story simply putters along looking for astute observations and coming up blank . 1 +60589 3059 the story simply putters along looking for astute observations and coming up blank . 1 +60590 3059 simply putters along looking for astute observations and coming up blank . 1 +60591 3059 putters along looking for astute observations and coming up blank . 1 +60592 3059 putters along looking for astute observations and coming up blank 1 +60593 3059 putters 1 +60594 3059 along looking for astute observations and coming up blank 1 +60595 3059 looking for astute observations and coming up blank 1 +60596 3059 looking for astute observations and 2 +60597 3059 looking for astute observations 2 +60598 3059 for astute observations 2 +60599 3059 astute observations 2 +60600 3059 coming up blank 2 +60601 3059 coming up 2 +60602 3060 It is also beautifully acted . 4 +60603 3060 is also beautifully acted . 3 +60604 3060 is also beautifully acted 3 +60605 3060 beautifully acted 3 +60606 3061 Incoherence reigns . 1 +60607 3061 reigns . 2 +60608 3061 reigns 2 +60609 3062 The wanton slipperiness of \* Corpus and its amiable jerking and reshaping of physical time and space would make it a great piece to watch with kids and use to introduce video as art . 4 +60610 3062 The wanton slipperiness of \* Corpus and its amiable jerking and reshaping of physical time and space 2 +60611 3062 The wanton slipperiness 1 +60612 3062 wanton slipperiness 2 +60613 3062 wanton 2 +60614 3062 slipperiness 2 +60615 3062 of \* Corpus and its amiable jerking and reshaping of physical time and space 2 +60616 3062 \* Corpus and its amiable jerking and reshaping of physical time and space 3 +60617 3062 \* Corpus and its amiable jerking and 2 +60618 3062 \* Corpus and its amiable jerking 1 +60619 3062 \* Corpus and 2 +60620 3062 \* Corpus 2 +60621 3062 Corpus 2 +60622 3062 its amiable jerking 1 +60623 3062 amiable jerking 2 +60624 3062 jerking 2 +60625 3062 reshaping of physical time and space 2 +60626 3062 reshaping 2 +60627 3062 of physical time and space 2 +60628 3062 physical time and space 2 +60629 3062 time and space 2 +60630 3062 would make it a great piece to watch with kids and use to introduce video as art . 4 +60631 3062 would make it a great piece to watch with kids and use to introduce video as art 3 +60632 3062 make it a great piece to watch with kids and use to introduce video as art 4 +60633 3062 make it 2 +60634 3062 a great piece to watch with kids and use to introduce video as art 4 +60635 3062 great piece to watch with kids and use to introduce video as art 4 +60636 3062 piece to watch with kids and use to introduce video as art 4 +60637 3062 to watch with kids and use to introduce video as art 3 +60638 3062 watch with kids and use to introduce video as art 3 +60639 3062 watch with kids and 2 +60640 3062 watch with kids 2 +60641 3062 with kids 2 +60642 3062 use to introduce video as art 2 +60643 3062 to introduce video as art 2 +60644 3062 introduce video as art 3 +60645 3062 introduce video 2 +60646 3062 introduce 2 +60647 3062 as art 2 +60648 3063 77 minutes of Pokemon may not last 4ever , it just seems like it does . 1 +60649 3063 77 minutes of Pokemon may not last 4ever 2 +60650 3063 77 minutes of Pokemon 1 +60651 3063 77 minutes 2 +60652 3063 77 2 +60653 3063 of Pokemon 2 +60654 3063 may not last 4ever 2 +60655 3063 last 4ever 2 +60656 3063 , it just seems like it does . 2 +60657 3063 it just seems like it does . 2 +60658 3063 just seems like it does . 2 +60659 3063 seems like it does . 2 +60660 3063 seems like it does 2 +60661 3063 like it does 2 +60662 3064 a joyous occasion 4 +60663 3064 joyous occasion 3 +60664 3064 occasion 1 +60665 3065 more precious than perspicacious 3 +60666 3065 precious than perspicacious 3 +60667 3065 than perspicacious 2 +60668 3065 perspicacious 2 +60669 3066 -LRB- T -RRB- he script is n't up to the level of the direction , nor are the uneven performances by the cast members , who seem bound and determined to duplicate Bela Lugosi 's now-cliched vampire accent . 1 +60670 3066 -LRB- T -RRB- he script is n't up to the level of the direction 1 +60671 3066 -LRB- T -RRB- 2 +60672 3066 T -RRB- 2 +60673 3066 he script is n't up to the level of the direction 3 +60674 3066 script is n't up to the level of the direction 1 +60675 3066 is n't up to the level of the direction 2 +60676 3066 up to the level of the direction 2 +60677 3066 to the level of the direction 2 +60678 3066 the level of the direction 2 +60679 3066 of the direction 2 +60680 3066 , nor are the uneven performances by the cast members , who seem bound and determined to duplicate Bela Lugosi 's now-cliched vampire accent . 1 +60681 3066 nor are the uneven performances by the cast members , who seem bound and determined to duplicate Bela Lugosi 's now-cliched vampire accent . 2 +60682 3066 are the uneven performances by the cast members , who seem bound and determined to duplicate Bela Lugosi 's now-cliched vampire accent . 1 +60683 3066 are the uneven performances by the cast members , who seem bound and determined to duplicate Bela Lugosi 's now-cliched vampire accent 1 +60684 3066 the uneven performances by the cast members , who seem bound and determined to duplicate Bela Lugosi 's now-cliched vampire accent 1 +60685 3066 the uneven performances 2 +60686 3066 by the cast members , who seem bound and determined to duplicate Bela Lugosi 's now-cliched vampire accent 1 +60687 3066 the cast members , who seem bound and determined to duplicate Bela Lugosi 's now-cliched vampire accent 1 +60688 3066 the cast members , 2 +60689 3066 the cast members 2 +60690 3066 cast members 2 +60691 3066 who seem bound and determined to duplicate Bela Lugosi 's now-cliched vampire accent 1 +60692 3066 seem bound and determined to duplicate Bela Lugosi 's now-cliched vampire accent 1 +60693 3066 seem bound and determined 2 +60694 3066 bound and determined 2 +60695 3066 bound and 2 +60696 3066 to duplicate Bela Lugosi 's now-cliched vampire accent 2 +60697 3066 duplicate Bela Lugosi 's now-cliched vampire accent 2 +60698 3066 duplicate 2 +60699 3066 Bela Lugosi 's now-cliched vampire accent 2 +60700 3066 Bela Lugosi 's 2 +60701 3066 Bela 2 +60702 3066 Lugosi 's 2 +60703 3066 Lugosi 2 +60704 3066 now-cliched vampire accent 2 +60705 3066 now-cliched 2 +60706 3066 vampire accent 2 +60707 3067 Its cast full of caffeinated comedy performances more than make up for its logical loopholes , which fly by so fast there 's no time to think about them anyway . 3 +60708 3067 Its cast full of caffeinated comedy performances 3 +60709 3067 Its cast full 2 +60710 3067 cast full 2 +60711 3067 of caffeinated comedy performances 2 +60712 3067 caffeinated comedy performances 2 +60713 3067 comedy performances 2 +60714 3067 more than make up for its logical loopholes , which fly by so fast there 's no time to think about them anyway . 3 +60715 3067 more than make up for its logical loopholes , which fly by so fast there 's no time to think about them anyway 3 +60716 3067 make up for its logical loopholes , which fly by so fast there 's no time to think about them anyway 2 +60717 3067 for its logical loopholes , which fly by so fast there 's no time to think about them anyway 1 +60718 3067 its logical loopholes , which fly by so fast there 's no time to think about them anyway 1 +60719 3067 its logical loopholes , 1 +60720 3067 its logical loopholes 2 +60721 3067 logical loopholes 2 +60722 3067 logical 3 +60723 3067 loopholes 2 +60724 3067 which fly by so fast there 's no time to think about them anyway 1 +60725 3067 fly by so fast there 's no time to think about them anyway 2 +60726 3067 fly 2 +60727 3067 by so fast there 's no time to think about them anyway 2 +60728 3067 so fast there 's no time to think about them anyway 2 +60729 3067 so fast 2 +60730 3067 there 's no time to think about them anyway 2 +60731 3067 's no time to think about them anyway 2 +60732 3067 no time to think about them anyway 2 +60733 3067 time to think about them anyway 2 +60734 3067 to think about them anyway 2 +60735 3067 think about them anyway 2 +60736 3067 think about them 2 +60737 3068 A sluggish pace and lack of genuine narrative hem the movie in every bit as much as life hems in the spirits of these young women . 1 +60738 3068 A sluggish pace and lack of genuine narrative 0 +60739 3068 A sluggish pace and lack 2 +60740 3068 sluggish pace and lack 1 +60741 3068 pace and lack 2 +60742 3068 pace and 2 +60743 3068 of genuine narrative 2 +60744 3068 genuine narrative 4 +60745 3068 hem the movie in every bit as much as life hems in the spirits of these young women . 2 +60746 3068 hem the movie in every bit as much as life hems in the spirits of these young women 2 +60747 3068 hem the movie in every bit as much as life hems 2 +60748 3068 hem the movie 2 +60749 3068 hem 2 +60750 3068 in every bit as much as life hems 2 +60751 3068 every bit as much as life hems 2 +60752 3068 every bit as much 2 +60753 3068 bit as much 2 +60754 3068 as life hems 2 +60755 3068 life hems 2 +60756 3068 hems 2 +60757 3068 in the spirits of these young women 2 +60758 3068 the spirits of these young women 3 +60759 3068 the spirits 2 +60760 3068 of these young women 3 +60761 3068 these young women 2 +60762 3069 The Chateau has one very funny joke and a few other decent ones , but all it amounts to is a mildly funny , sometimes tedious , ultimately insignificant film . 1 +60763 3069 The Chateau has one very funny joke and a few other decent ones , but all it amounts to is a mildly funny , sometimes tedious , ultimately insignificant film 1 +60764 3069 The Chateau has one very funny joke and a few other decent ones , but 1 +60765 3069 The Chateau has one very funny joke and a few other decent ones , 3 +60766 3069 The Chateau has one very funny joke and a few other decent ones 3 +60767 3069 has one very funny joke and a few other decent ones 3 +60768 3069 one very funny joke and a few other decent ones 3 +60769 3069 one very funny joke and 3 +60770 3069 one very funny joke 2 +60771 3069 very funny joke 3 +60772 3069 a few other decent ones 3 +60773 3069 few other decent ones 2 +60774 3069 other decent ones 2 +60775 3069 decent ones 3 +60776 3069 all it amounts to is a mildly funny , sometimes tedious , ultimately insignificant film 1 +60777 3069 it amounts to is a mildly funny , sometimes tedious , ultimately insignificant film 1 +60778 3069 amounts to is a mildly funny , sometimes tedious , ultimately insignificant film 1 +60779 3069 to is a mildly funny , sometimes tedious , ultimately insignificant film 2 +60780 3069 is a mildly funny , sometimes tedious , ultimately insignificant film 1 +60781 3069 a mildly funny , sometimes tedious , ultimately insignificant film 2 +60782 3069 a mildly funny , sometimes tedious , ultimately insignificant 1 +60783 3069 mildly funny , sometimes tedious , ultimately insignificant 1 +60784 3069 mildly funny , sometimes tedious , 2 +60785 3069 mildly funny , sometimes tedious 2 +60786 3069 mildly funny , 2 +60787 3069 sometimes tedious 1 +60788 3069 ultimately insignificant 0 +60789 3069 insignificant 1 +60790 3070 This harrowing journey into combat hell vividly captures the chaotic insanity and personal tragedies that are all too abundant when human hatred spews forth unchecked . 2 +60791 3070 This harrowing journey into combat hell 1 +60792 3070 This harrowing journey 2 +60793 3070 harrowing journey 3 +60794 3070 into combat hell 1 +60795 3070 combat hell 1 +60796 3070 combat 2 +60797 3070 vividly captures the chaotic insanity and personal tragedies that are all too abundant when human hatred spews forth unchecked . 4 +60798 3070 captures the chaotic insanity and personal tragedies that are all too abundant when human hatred spews forth unchecked . 3 +60799 3070 captures the chaotic insanity and personal tragedies that are all too abundant when human hatred spews forth unchecked 3 +60800 3070 the chaotic insanity and personal tragedies that are all too abundant when human hatred spews forth unchecked 2 +60801 3070 the chaotic insanity and 1 +60802 3070 the chaotic insanity 2 +60803 3070 chaotic insanity 1 +60804 3070 personal tragedies that are all too abundant when human hatred spews forth unchecked 2 +60805 3070 personal tragedies 1 +60806 3070 that are all too abundant when human hatred spews forth unchecked 0 +60807 3070 are all too abundant when human hatred spews forth unchecked 1 +60808 3070 are all too abundant 2 +60809 3070 are all 2 +60810 3070 too abundant 1 +60811 3070 when human hatred spews forth unchecked 0 +60812 3070 human hatred spews forth unchecked 0 +60813 3070 human hatred 1 +60814 3070 hatred 1 +60815 3070 spews forth unchecked 0 +60816 3070 spews 2 +60817 3070 forth unchecked 2 +60818 3070 unchecked 1 +60819 3071 While Holm is terrific as both men and Hjejle quite appealing , the film fails to make the most out of the intriguing premise . 2 +60820 3071 While Holm is terrific as both men and Hjejle quite appealing 3 +60821 3071 Holm is terrific as both men and Hjejle quite appealing 4 +60822 3071 Holm is terrific as both men and 4 +60823 3071 Holm is terrific as both men 4 +60824 3071 is terrific as both men 4 +60825 3071 terrific as both men 3 +60826 3071 as both men 2 +60827 3071 as both 2 +60828 3071 Hjejle quite appealing 3 +60829 3071 Hjejle 2 +60830 3071 quite appealing 4 +60831 3071 , the film fails to make the most out of the intriguing premise . 1 +60832 3071 the film fails to make the most out of the intriguing premise . 2 +60833 3071 fails to make the most out of the intriguing premise . 1 +60834 3071 fails to make the most out of the intriguing premise 2 +60835 3071 to make the most out of the intriguing premise 3 +60836 3071 make the most out of the intriguing premise 3 +60837 3071 make the most out 2 +60838 3071 make the most 2 +60839 3071 of the intriguing premise 3 +60840 3071 the intriguing premise 3 +60841 3071 intriguing premise 3 +60842 3072 That rare documentary that incorporates so much of human experience -- drama , conflict , tears and surprise -- that it transcends the normal divisions between fiction and nonfiction film . 4 +60843 3072 That rare documentary that incorporates so much of human experience -- drama , conflict , tears and surprise -- that it transcends the normal divisions between fiction and nonfiction film 4 +60844 3072 That rare documentary that incorporates so much 3 +60845 3072 That rare documentary 3 +60846 3072 rare documentary 3 +60847 3072 that incorporates so much 2 +60848 3072 incorporates so much 3 +60849 3072 of human experience -- drama , conflict , tears and surprise -- that it transcends the normal divisions between fiction and nonfiction film 3 +60850 3072 human experience -- drama , conflict , tears and surprise -- that it transcends the normal divisions between fiction and nonfiction film 4 +60851 3072 human experience -- drama , conflict , tears and surprise -- 3 +60852 3072 human experience 2 +60853 3072 -- drama , conflict , tears and surprise -- 3 +60854 3072 drama , conflict , tears and surprise -- 3 +60855 3072 drama , conflict , tears and surprise 3 +60856 3072 drama , conflict , tears and 2 +60857 3072 drama , conflict , tears 2 +60858 3072 drama , conflict , 3 +60859 3072 drama , conflict 2 +60860 3072 tears 1 +60861 3072 that it transcends the normal divisions between fiction and nonfiction film 3 +60862 3072 it transcends the normal divisions between fiction and nonfiction film 3 +60863 3072 transcends the normal divisions between fiction and nonfiction film 3 +60864 3072 the normal divisions between fiction and nonfiction film 2 +60865 3072 the normal divisions 2 +60866 3072 normal divisions 2 +60867 3072 normal 2 +60868 3072 divisions 2 +60869 3072 between fiction and nonfiction film 2 +60870 3072 fiction and nonfiction film 2 +60871 3072 and nonfiction film 2 +60872 3072 nonfiction film 2 +60873 3072 nonfiction 2 +60874 3073 A refreshing change from the usual whoopee-cushion effort aimed at the youth market . 4 +60875 3073 A refreshing change from the usual whoopee-cushion effort 3 +60876 3073 A refreshing change 3 +60877 3073 refreshing change 3 +60878 3073 from the usual whoopee-cushion effort 2 +60879 3073 the usual whoopee-cushion effort 1 +60880 3073 usual whoopee-cushion effort 1 +60881 3073 whoopee-cushion effort 2 +60882 3073 whoopee-cushion 2 +60883 3073 aimed at the youth market . 2 +60884 3073 aimed at the youth market 2 +60885 3073 at the youth market 2 +60886 3073 the youth market 2 +60887 3073 youth market 2 +60888 3074 A compelling motion picture that illustrates an American tragedy . 4 +60889 3074 A compelling motion 3 +60890 3074 compelling motion 4 +60891 3074 picture that illustrates an American tragedy . 2 +60892 3074 picture that illustrates an American tragedy 3 +60893 3074 that illustrates an American tragedy 2 +60894 3074 illustrates an American tragedy 2 +60895 3074 an American tragedy 1 +60896 3074 American tragedy 2 +60897 3075 At once disarmingly straightforward and strikingly devious . 4 +60898 3075 disarmingly straightforward and strikingly devious . 2 +60899 3075 disarmingly straightforward and strikingly devious 4 +60900 3075 disarmingly 3 +60901 3075 straightforward and strikingly devious 3 +60902 3075 straightforward and 2 +60903 3075 strikingly devious 3 +60904 3075 strikingly 2 +60905 3075 devious 2 +60906 3076 Much like its easily dismissive take on the upscale lifestyle , there is n't much there here . 0 +60907 3076 Much like its easily dismissive take on the upscale lifestyle 2 +60908 3076 Much like its easily dismissive 1 +60909 3076 like its easily dismissive 2 +60910 3076 its easily dismissive 1 +60911 3076 easily dismissive 1 +60912 3076 dismissive 2 +60913 3076 take on the upscale lifestyle 3 +60914 3076 on the upscale lifestyle 2 +60915 3076 the upscale lifestyle 3 +60916 3076 upscale lifestyle 2 +60917 3076 , there is n't much there here . 1 +60918 3076 there is n't much there here . 1 +60919 3076 is n't much there here . 1 +60920 3076 is n't much there here 2 +60921 3076 is n't much 2 +60922 3076 there here 2 +60923 3077 Robin Williams departs from his fun friendly demeanor in exchange for a darker unnerving role . 2 +60924 3077 Robin Williams 2 +60925 3077 Robin 2 +60926 3077 departs from his fun friendly demeanor in exchange for a darker unnerving role . 2 +60927 3077 departs from his fun friendly demeanor in exchange for a darker unnerving role 2 +60928 3077 departs 2 +60929 3077 from his fun friendly demeanor in exchange for a darker unnerving role 3 +60930 3077 his fun friendly demeanor in exchange for a darker unnerving role 2 +60931 3077 his fun friendly demeanor 4 +60932 3077 fun friendly demeanor 3 +60933 3077 friendly demeanor 3 +60934 3077 friendly 3 +60935 3077 demeanor 2 +60936 3077 in exchange for a darker unnerving role 2 +60937 3077 exchange for a darker unnerving role 2 +60938 3077 exchange 2 +60939 3077 for a darker unnerving role 2 +60940 3077 a darker unnerving role 2 +60941 3077 darker unnerving role 2 +60942 3077 darker unnerving 2 +60943 3078 This may be the first cartoon ever to look as if it were being shown on the projection television screen of a sports bar . 1 +60944 3078 may be the first cartoon ever to look as if it were being shown on the projection television screen of a sports bar . 1 +60945 3078 may be the first cartoon ever to look as if it were being shown on the projection television screen of a sports bar 1 +60946 3078 be the first cartoon ever to look as if it were being shown on the projection television screen of a sports bar 2 +60947 3078 be the first cartoon 2 +60948 3078 the first cartoon 2 +60949 3078 first cartoon 2 +60950 3078 ever to look as if it were being shown on the projection television screen of a sports bar 1 +60951 3078 to look as if it were being shown on the projection television screen of a sports bar 1 +60952 3078 look as if it were being shown on the projection television screen of a sports bar 0 +60953 3078 as if it were being shown on the projection television screen of a sports bar 2 +60954 3078 if it were being shown on the projection television screen of a sports bar 2 +60955 3078 it were being shown on the projection television screen of a sports bar 2 +60956 3078 were being shown on the projection television screen of a sports bar 2 +60957 3078 being shown on the projection television screen of a sports bar 2 +60958 3078 shown on the projection television screen of a sports bar 2 +60959 3078 on the projection television screen of a sports bar 2 +60960 3078 the projection television screen of a sports bar 2 +60961 3078 the projection television screen 2 +60962 3078 projection television screen 2 +60963 3078 projection 2 +60964 3078 television screen 3 +60965 3078 of a sports bar 2 +60966 3078 a sports bar 2 +60967 3078 sports bar 2 +60968 3079 For a film that celebrates radical , nonconformist values , What to Do in Case of Fire ? 2 +60969 3079 For a film 2 +60970 3079 that celebrates radical , nonconformist values , What to Do in Case of Fire ? 3 +60971 3079 celebrates radical , nonconformist values , What to Do in Case of Fire ? 2 +60972 3079 celebrates radical , nonconformist values , What to Do in Case of Fire 3 +60973 3079 radical , nonconformist values , What to Do in Case of Fire 2 +60974 3079 radical , nonconformist values , 2 +60975 3079 radical , nonconformist values 2 +60976 3079 , nonconformist values 2 +60977 3079 nonconformist values 2 +60978 3079 nonconformist 3 +60979 3079 What to Do in Case of Fire 2 +60980 3079 to Do in Case of Fire 2 +60981 3079 Do in Case of Fire 2 +60982 3079 in Case of Fire 1 +60983 3079 Case of Fire 2 +60984 3080 The film grows on you . 3 +60985 3080 grows on you . 3 +60986 3081 Imperfect ? 1 +60987 3081 Imperfect 1 +60988 3082 Allegiance to Chekhov , which director Michael Cacoyannis displays with somber earnestness in the new adaptation of The Cherry Orchard , is a particularly vexing handicap . 1 +60989 3082 Allegiance to Chekhov , which director Michael Cacoyannis displays with somber earnestness in the new adaptation of The Cherry Orchard , 3 +60990 3082 Allegiance to Chekhov , which director Michael Cacoyannis displays with somber earnestness in the new adaptation of The Cherry Orchard 2 +60991 3082 Allegiance to Chekhov , 2 +60992 3082 Allegiance to Chekhov 3 +60993 3082 Allegiance 2 +60994 3082 to Chekhov 2 +60995 3082 which director Michael Cacoyannis displays with somber earnestness in the new adaptation of The Cherry Orchard 3 +60996 3082 director Michael Cacoyannis displays with somber earnestness in the new adaptation of The Cherry Orchard 3 +60997 3082 director Michael Cacoyannis 3 +60998 3082 Michael Cacoyannis 2 +60999 3082 displays with somber earnestness in the new adaptation of The Cherry Orchard 3 +61000 3082 displays 2 +61001 3082 with somber earnestness in the new adaptation of The Cherry Orchard 2 +61002 3082 somber earnestness in the new adaptation of The Cherry Orchard 3 +61003 3082 somber earnestness 2 +61004 3082 in the new adaptation of The Cherry Orchard 2 +61005 3082 the new adaptation of The Cherry Orchard 2 +61006 3082 the new adaptation 2 +61007 3082 new adaptation 3 +61008 3082 of The Cherry Orchard 2 +61009 3082 is a particularly vexing handicap . 2 +61010 3082 is a particularly vexing handicap 1 +61011 3082 a particularly vexing handicap 2 +61012 3082 particularly vexing handicap 2 +61013 3082 particularly vexing 2 +61014 3082 vexing 2 +61015 3082 handicap 2 +61016 3083 On that score , the film certainly does n't disappoint . 4 +61017 3083 On that score 2 +61018 3083 that score 2 +61019 3083 , the film certainly does n't disappoint . 4 +61020 3083 the film certainly does n't disappoint . 3 +61021 3083 certainly does n't disappoint . 3 +61022 3083 does n't disappoint . 3 +61023 3083 does n't disappoint 3 +61024 3084 Angela Gheorghiu as famous prima donna Floria Tosca , Roberto Alagna as her lover Mario Cavaradossi , and Ruggero as the villainous , lecherous police chief Scarpia , all sing beautifully and act adequately . 3 +61025 3084 Angela Gheorghiu as famous prima donna Floria Tosca , Roberto Alagna as her lover Mario Cavaradossi , and Ruggero as the villainous , lecherous police chief Scarpia , 2 +61026 3084 Angela Gheorghiu 2 +61027 3084 Angela 2 +61028 3084 Gheorghiu 2 +61029 3084 as famous prima donna Floria Tosca , Roberto Alagna as her lover Mario Cavaradossi , and Ruggero as the villainous , lecherous police chief Scarpia , 3 +61030 3084 famous prima donna Floria Tosca , Roberto Alagna as her lover Mario Cavaradossi , and Ruggero as the villainous , lecherous police chief Scarpia , 2 +61031 3084 famous prima donna Floria Tosca , Roberto Alagna as her lover Mario Cavaradossi , and Ruggero as the villainous , lecherous police chief Scarpia 2 +61032 3084 famous prima donna Floria Tosca , 2 +61033 3084 famous prima donna Floria Tosca 2 +61034 3084 prima donna Floria Tosca 2 +61035 3084 prima 3 +61036 3084 donna Floria Tosca 2 +61037 3084 donna 3 +61038 3084 Floria Tosca 2 +61039 3084 Floria 2 +61040 3084 Roberto Alagna as her lover Mario Cavaradossi , and Ruggero as the villainous , lecherous police chief Scarpia 2 +61041 3084 Roberto Alagna 2 +61042 3084 Roberto 2 +61043 3084 Alagna 2 +61044 3084 as her lover Mario Cavaradossi , and Ruggero as the villainous , lecherous police chief Scarpia 2 +61045 3084 her lover Mario Cavaradossi , and Ruggero as the villainous , lecherous police chief Scarpia 2 +61046 3084 her lover Mario Cavaradossi , and 2 +61047 3084 her lover Mario Cavaradossi , 2 +61048 3084 her lover Mario Cavaradossi 2 +61049 3084 her lover 2 +61050 3084 lover 2 +61051 3084 Mario Cavaradossi 2 +61052 3084 Mario 2 +61053 3084 Cavaradossi 2 +61054 3084 Ruggero as the villainous , lecherous police chief Scarpia 2 +61055 3084 Ruggero 2 +61056 3084 as the villainous , lecherous police chief Scarpia 1 +61057 3084 the villainous , lecherous police chief Scarpia 2 +61058 3084 villainous , lecherous police chief Scarpia 2 +61059 3084 villainous , lecherous 2 +61060 3084 villainous 1 +61061 3084 , lecherous 1 +61062 3084 lecherous 1 +61063 3084 police chief Scarpia 2 +61064 3084 chief Scarpia 2 +61065 3084 Scarpia 2 +61066 3084 all sing beautifully and act adequately . 3 +61067 3084 sing beautifully and act adequately . 3 +61068 3084 sing beautifully and act adequately 3 +61069 3084 sing beautifully and 3 +61070 3084 sing beautifully 3 +61071 3084 act adequately 2 +61072 3084 adequately 3 +61073 3085 Has a customarily jovial air but a deficit of flim-flam inventiveness . 1 +61074 3085 Has a customarily jovial air but a deficit of flim-flam inventiveness 2 +61075 3085 Has a customarily jovial air but a deficit of flim-flam 2 +61076 3085 a customarily jovial air but a deficit of flim-flam 2 +61077 3085 a customarily jovial air 3 +61078 3085 customarily jovial air 2 +61079 3085 customarily 2 +61080 3085 jovial air 4 +61081 3085 jovial 3 +61082 3085 but a deficit of flim-flam 2 +61083 3085 a deficit of flim-flam 1 +61084 3085 a deficit 1 +61085 3085 deficit 1 +61086 3085 of flim-flam 2 +61087 3085 flim-flam 2 +61088 3086 Fessenden continues to do interesting work , and it would be nice to see what he could make with a decent budget . 3 +61089 3086 Fessenden continues to do interesting work , and it would be nice to see what he could make with a decent budget 4 +61090 3086 Fessenden continues to do interesting work , and 4 +61091 3086 Fessenden continues to do interesting work , 4 +61092 3086 Fessenden continues to do interesting work 3 +61093 3086 continues to do interesting work 3 +61094 3086 to do interesting work 2 +61095 3086 do interesting work 2 +61096 3086 interesting work 3 +61097 3086 it would be nice to see what he could make with a decent budget 3 +61098 3086 would be nice to see what he could make with a decent budget 2 +61099 3086 be nice to see what he could make with a decent budget 2 +61100 3086 nice to see what he could make with a decent budget 3 +61101 3086 to see what he could make with a decent budget 2 +61102 3086 see what he could make with a decent budget 3 +61103 3086 what he could make with a decent budget 3 +61104 3086 he could make with a decent budget 2 +61105 3086 could make with a decent budget 2 +61106 3086 make with a decent budget 2 +61107 3086 with a decent budget 2 +61108 3086 a decent budget 2 +61109 3086 decent budget 2 +61110 3087 Elegant , mannered and teasing . 3 +61111 3087 Elegant , mannered and teasing 4 +61112 3087 Elegant , 3 +61113 3087 mannered and teasing 2 +61114 3087 mannered and 2 +61115 3087 mannered 3 +61116 3087 teasing 1 +61117 3088 Foster and Whitaker are especially fine . 4 +61118 3088 Foster and Whitaker 2 +61119 3088 Foster and 2 +61120 3088 are especially fine . 3 +61121 3088 are especially fine 3 +61122 3088 especially fine 4 +61123 3089 I do n't blame Eddie Murphy but should n't Owen Wilson know a movie must have a story and a script ? 0 +61124 3089 I do n't blame Eddie Murphy but should n't 1 +61125 3089 do n't blame Eddie Murphy but should n't 1 +61126 3089 do n't blame Eddie Murphy but 1 +61127 3089 do n't blame Eddie Murphy 2 +61128 3089 blame Eddie Murphy 1 +61129 3089 Eddie Murphy 2 +61130 3089 Owen Wilson know a movie must have a story and a script ? 1 +61131 3089 know a movie must have a story and a script ? 2 +61132 3089 know a movie must have a story and a script 2 +61133 3089 a movie must have a story and a script 2 +61134 3089 must have a story and a script 2 +61135 3089 have a story and a script 3 +61136 3089 a story and a script 2 +61137 3089 a story and 2 +61138 3090 It 's a boring movie about a boring man , made watchable by a bravura performance from a consummate actor incapable of being boring . 3 +61139 3090 's a boring movie about a boring man , made watchable by a bravura performance from a consummate actor incapable of being boring . 1 +61140 3090 's a boring movie about a boring man , made watchable by a bravura performance from a consummate actor incapable of being boring 3 +61141 3090 a boring movie about a boring man , made watchable by a bravura performance from a consummate actor incapable of being boring 2 +61142 3090 a boring movie 0 +61143 3090 boring movie 1 +61144 3090 about a boring man , made watchable by a bravura performance from a consummate actor incapable of being boring 2 +61145 3090 a boring man , made watchable by a bravura performance from a consummate actor incapable of being boring 2 +61146 3090 a boring man , 1 +61147 3090 a boring man 1 +61148 3090 boring man 0 +61149 3090 made watchable by a bravura performance from a consummate actor incapable of being boring 2 +61150 3090 made watchable by a bravura performance 3 +61151 3090 watchable by a bravura performance 3 +61152 3090 by a bravura performance 3 +61153 3090 a bravura performance 4 +61154 3090 bravura performance 3 +61155 3090 bravura 3 +61156 3090 from a consummate actor incapable of being boring 3 +61157 3090 a consummate actor incapable of being boring 3 +61158 3090 a consummate actor 3 +61159 3090 consummate actor 3 +61160 3090 consummate 3 +61161 3090 incapable of being boring 3 +61162 3090 of being boring 1 +61163 3090 being boring 1 +61164 3091 ... a gleefully grungy , hilariously wicked black comedy ... 4 +61165 3091 a gleefully grungy , hilariously wicked black comedy ... 4 +61166 3091 a gleefully grungy 3 +61167 3091 a gleefully 3 +61168 3091 grungy 2 +61169 3091 , hilariously wicked black comedy ... 4 +61170 3091 hilariously wicked black comedy ... 4 +61171 3091 hilariously wicked black comedy 4 +61172 3091 wicked black comedy 3 +61173 3091 wicked 3 +61174 3092 ... manages to deliver a fair bit of vampire fun . 3 +61175 3092 manages to deliver a fair bit of vampire fun . 3 +61176 3092 manages to deliver a fair bit of vampire fun 2 +61177 3092 to deliver a fair bit of vampire fun 3 +61178 3092 deliver a fair bit of vampire fun 3 +61179 3092 a fair bit of vampire fun 3 +61180 3092 a fair bit 3 +61181 3092 fair bit 2 +61182 3092 of vampire fun 3 +61183 3092 vampire fun 3 +61184 3093 Nothing wrong with performances here , but the whiney characters bugged me . 1 +61185 3093 Nothing wrong with performances here , but the whiney characters bugged me 1 +61186 3093 Nothing wrong with performances here , but 2 +61187 3093 Nothing wrong with performances here , 3 +61188 3093 Nothing wrong with performances here 3 +61189 3093 wrong with performances here 1 +61190 3093 with performances here 2 +61191 3093 performances here 2 +61192 3093 the whiney characters bugged me 1 +61193 3093 the whiney characters 2 +61194 3093 whiney characters 2 +61195 3093 whiney 1 +61196 3093 bugged me 1 +61197 3093 bugged 2 +61198 3094 This kind of hands-on storytelling is ultimately what makes Shanghai Ghetto move beyond a good , dry , reliable textbook and what allows it to rank with its worthy predecessors . 3 +61199 3094 This kind of hands-on storytelling 3 +61200 3094 of hands-on storytelling 2 +61201 3094 hands-on storytelling 3 +61202 3094 hands-on 2 +61203 3094 is ultimately what makes Shanghai Ghetto move beyond a good , dry , reliable textbook and what allows it to rank with its worthy predecessors . 3 +61204 3094 is ultimately what makes Shanghai Ghetto move beyond a good , dry , reliable textbook and what allows it to rank with its worthy predecessors 4 +61205 3094 what makes Shanghai Ghetto move beyond a good , dry , reliable textbook and what allows it to rank with its worthy predecessors 3 +61206 3094 what makes Shanghai Ghetto move beyond a good , dry , reliable textbook and 2 +61207 3094 what makes Shanghai Ghetto move beyond a good , dry , reliable textbook 3 +61208 3094 makes Shanghai Ghetto move beyond a good , dry , reliable textbook 3 +61209 3094 Shanghai Ghetto move beyond a good , dry , reliable textbook 2 +61210 3094 move beyond a good , dry , reliable textbook 2 +61211 3094 beyond a good , dry , reliable textbook 2 +61212 3094 a good , dry , reliable textbook 2 +61213 3094 good , dry , reliable textbook 3 +61214 3094 , dry , reliable textbook 2 +61215 3094 dry , reliable textbook 1 +61216 3094 , reliable textbook 2 +61217 3094 reliable textbook 3 +61218 3094 reliable 3 +61219 3094 what allows it to rank with its worthy predecessors 3 +61220 3094 allows it to rank with its worthy predecessors 3 +61221 3094 it to rank with its worthy predecessors 2 +61222 3094 to rank with its worthy predecessors 3 +61223 3094 rank with its worthy predecessors 3 +61224 3094 with its worthy predecessors 2 +61225 3094 its worthy predecessors 3 +61226 3094 worthy predecessors 3 +61227 3095 If villainous vampires are your cup of blood , Blade 2 is definitely a cut above the rest . 3 +61228 3095 If villainous vampires are your cup of blood 2 +61229 3095 villainous vampires are your cup of blood 2 +61230 3095 villainous vampires 2 +61231 3095 vampires 2 +61232 3095 are your cup of blood 3 +61233 3095 your cup of blood 2 +61234 3095 your cup 2 +61235 3095 cup 2 +61236 3095 of blood 2 +61237 3095 , Blade 2 is definitely a cut above the rest . 4 +61238 3095 Blade 2 is definitely a cut above the rest . 4 +61239 3095 Blade 2 3 +61240 3095 is definitely a cut above the rest . 3 +61241 3095 is definitely a cut above the rest 4 +61242 3095 a cut above the rest 4 +61243 3095 a cut 2 +61244 3095 above the rest 3 +61245 3096 It provides a grim , upsetting glimpse at the lives of some of the 1.2 million Palestinians who live in the crowded cities and refugee camps of Gaza . 2 +61246 3096 provides a grim , upsetting glimpse at the lives of some of the 1.2 million Palestinians who live in the crowded cities and refugee camps of Gaza . 2 +61247 3096 provides a grim , upsetting glimpse at the lives of some of the 1.2 million Palestinians who live in the crowded cities and refugee camps of Gaza 3 +61248 3096 provides a grim , upsetting glimpse 1 +61249 3096 a grim , upsetting glimpse 2 +61250 3096 grim , upsetting glimpse 1 +61251 3096 , upsetting glimpse 2 +61252 3096 upsetting glimpse 1 +61253 3096 upsetting 1 +61254 3096 at the lives of some of the 1.2 million Palestinians who live in the crowded cities and refugee camps of Gaza 2 +61255 3096 the lives of some of the 1.2 million Palestinians who live in the crowded cities and refugee camps of Gaza 2 +61256 3096 of some of the 1.2 million Palestinians who live in the crowded cities and refugee camps of Gaza 2 +61257 3096 some of the 1.2 million Palestinians who live in the crowded cities and refugee camps of Gaza 2 +61258 3096 of the 1.2 million Palestinians who live in the crowded cities and refugee camps of Gaza 2 +61259 3096 the 1.2 million Palestinians who live in the crowded cities and refugee camps of Gaza 2 +61260 3096 the 1.2 million Palestinians 1 +61261 3096 1.2 million Palestinians 2 +61262 3096 1.2 million 2 +61263 3096 1.2 2 +61264 3096 Palestinians 2 +61265 3096 who live in the crowded cities and refugee camps of Gaza 2 +61266 3096 live in the crowded cities and refugee camps of Gaza 2 +61267 3096 in the crowded cities and refugee camps of Gaza 2 +61268 3096 the crowded cities and refugee camps of Gaza 1 +61269 3096 the crowded cities and refugee camps 1 +61270 3096 crowded cities and refugee camps 2 +61271 3096 crowded 2 +61272 3096 cities and refugee camps 2 +61273 3096 cities 2 +61274 3096 and refugee camps 2 +61275 3096 refugee camps 2 +61276 3096 refugee 2 +61277 3096 camps 2 +61278 3096 of Gaza 2 +61279 3096 Gaza 2 +61280 3097 Still , the updated Dickensian sensibility of writer Craig Bartlett 's story is appealing . 3 +61281 3097 , the updated Dickensian sensibility of writer Craig Bartlett 's story is appealing . 3 +61282 3097 the updated Dickensian sensibility of writer Craig Bartlett 's story is appealing . 3 +61283 3097 the updated Dickensian sensibility of writer Craig Bartlett 's story 3 +61284 3097 the updated Dickensian sensibility 2 +61285 3097 updated Dickensian sensibility 3 +61286 3097 updated 2 +61287 3097 Dickensian sensibility 2 +61288 3097 of writer Craig Bartlett 's story 2 +61289 3097 writer Craig Bartlett 's story 2 +61290 3097 writer Craig Bartlett 's 2 +61291 3097 Craig Bartlett 's 2 +61292 3097 is appealing . 3 +61293 3098 You 'd have to be a most hard-hearted person not to be moved by this drama . 3 +61294 3098 'd have to be a most hard-hearted person not to be moved by this drama . 4 +61295 3098 'd have to be a most hard-hearted person not to be moved by this drama 3 +61296 3098 have to be a most hard-hearted person not to be moved by this drama 4 +61297 3098 to be a most hard-hearted person not to be moved by this drama 3 +61298 3098 be a most hard-hearted person not to be moved by this drama 3 +61299 3098 be a most hard-hearted person 1 +61300 3098 a most hard-hearted person 1 +61301 3098 most hard-hearted person 2 +61302 3098 hard-hearted person 2 +61303 3098 hard-hearted 2 +61304 3098 not to be moved by this drama 1 +61305 3098 to be moved by this drama 3 +61306 3098 be moved by this drama 3 +61307 3098 moved by this drama 3 +61308 3098 by this drama 2 +61309 3098 this drama 2 +61310 3099 The re - enactments , however fascinating they may be as history , are too crude to serve the work especially well . 1 +61311 3099 The re 2 +61312 3099 re 2 +61313 3099 - enactments , however fascinating they may be as history , are too crude to serve the work especially well . 2 +61314 3099 enactments , however fascinating they may be as history , are too crude to serve the work especially well . 1 +61315 3099 enactments , however fascinating they may be as history , are too crude to serve the work especially well 1 +61316 3099 enactments , however fascinating they may be as history , 3 +61317 3099 enactments , however fascinating they may be as history 2 +61318 3099 enactments , 2 +61319 3099 enactments 2 +61320 3099 however fascinating they may be as history 2 +61321 3099 fascinating they may be as history 3 +61322 3099 they may be as history 1 +61323 3099 may be as history 3 +61324 3099 be as history 2 +61325 3099 as history 3 +61326 3099 are too crude to serve the work especially well 1 +61327 3099 too crude to serve the work especially well 1 +61328 3099 crude to serve the work especially well 3 +61329 3099 to serve the work especially well 3 +61330 3099 serve the work especially well 3 +61331 3099 serve the work 2 +61332 3099 especially well 3 +61333 3100 It also shows how deeply felt emotions can draw people together across the walls that might otherwise separate them . 3 +61334 3100 also shows how deeply felt emotions can draw people together across the walls that might otherwise separate them . 3 +61335 3100 shows how deeply felt emotions can draw people together across the walls that might otherwise separate them . 4 +61336 3100 shows how deeply felt emotions can draw people together across the walls that might otherwise separate them 3 +61337 3100 how deeply felt emotions can draw people together across the walls that might otherwise separate them 3 +61338 3100 how deeply 2 +61339 3100 felt emotions can draw people together across the walls that might otherwise separate them 3 +61340 3100 emotions can draw people together across the walls that might otherwise separate them 3 +61341 3100 can draw people together across the walls that might otherwise separate them 4 +61342 3100 draw people together across the walls that might otherwise separate them 3 +61343 3100 draw people together 3 +61344 3100 draw people 2 +61345 3100 across the walls that might otherwise separate them 2 +61346 3100 the walls that might otherwise separate them 2 +61347 3100 the walls 2 +61348 3100 that might otherwise separate them 1 +61349 3100 might otherwise separate them 2 +61350 3100 might otherwise 2 +61351 3101 The entire movie has a truncated feeling , but what 's available is lovely and lovable . 2 +61352 3101 The entire movie has a truncated feeling , but what 's available is lovely and lovable 3 +61353 3101 The entire movie has a truncated feeling , but 2 +61354 3101 The entire movie has a truncated feeling , 1 +61355 3101 The entire movie has a truncated feeling 1 +61356 3101 has a truncated feeling 2 +61357 3101 a truncated feeling 2 +61358 3101 truncated feeling 2 +61359 3101 truncated 1 +61360 3101 what 's available is lovely and lovable 2 +61361 3101 what 's available 2 +61362 3101 's available 2 +61363 3101 is lovely and lovable 3 +61364 3101 lovely and lovable 3 +61365 3101 lovely and 3 +61366 3102 It 's also curious to note that this film , like the similarly ill-timed Antitrust , is easily as bad at a fraction the budget . 0 +61367 3102 's also curious to note that this film , like the similarly ill-timed Antitrust , is easily as bad at a fraction the budget . 0 +61368 3102 's also curious to note that this film , like the similarly ill-timed Antitrust , is easily as bad at a fraction the budget 2 +61369 3102 curious to note that this film , like the similarly ill-timed Antitrust , is easily as bad at a fraction the budget 1 +61370 3102 to note that this film , like the similarly ill-timed Antitrust , is easily as bad at a fraction the budget 1 +61371 3102 note that this film , like the similarly ill-timed Antitrust , is easily as bad at a fraction the budget 1 +61372 3102 that this film , like the similarly ill-timed Antitrust , is easily as bad at a fraction the budget 1 +61373 3102 this film , like the similarly ill-timed Antitrust , is easily as bad at a fraction the budget 0 +61374 3102 this film , like the similarly ill-timed Antitrust , 1 +61375 3102 this film , like the similarly ill-timed Antitrust 2 +61376 3102 like the similarly ill-timed Antitrust 1 +61377 3102 the similarly ill-timed Antitrust 1 +61378 3102 similarly ill-timed Antitrust 1 +61379 3102 similarly ill-timed 1 +61380 3102 ill-timed 1 +61381 3102 Antitrust 2 +61382 3102 is easily as bad at a fraction the budget 0 +61383 3102 is easily 3 +61384 3102 as bad at a fraction the budget 1 +61385 3102 bad at a fraction the budget 0 +61386 3102 at a fraction the budget 2 +61387 3102 a fraction the budget 2 +61388 3102 a fraction 2 +61389 3102 fraction 3 +61390 3102 the budget 2 +61391 3103 Shows moments of promise but ultimately succumbs to cliches and pat storytelling . 1 +61392 3103 Shows moments of promise but ultimately succumbs to cliches and pat storytelling 1 +61393 3103 Shows moments of promise but 3 +61394 3103 Shows moments of promise 3 +61395 3103 moments of promise 3 +61396 3103 of promise 3 +61397 3103 ultimately succumbs to cliches and pat storytelling 1 +61398 3103 succumbs to cliches and pat storytelling 1 +61399 3103 to cliches and pat storytelling 1 +61400 3103 cliches and pat storytelling 0 +61401 3103 and pat storytelling 1 +61402 3103 pat storytelling 2 +61403 3104 It might be ` easier ' to watch on video at home , but that should n't stop die-hard French film connoisseurs from going out and enjoying the big-screen experience . 3 +61404 3104 It might be ` easier ' to watch on video at home , but that should n't stop die-hard French film connoisseurs from going out and enjoying the big-screen experience 3 +61405 3104 It might be ` easier ' to watch on video at home , but 2 +61406 3104 It might be ` easier ' to watch on video at home , 2 +61407 3104 It might be ` easier ' to watch on video at home 1 +61408 3104 might be ` easier ' to watch on video at home 2 +61409 3104 be ` easier ' to watch on video at home 2 +61410 3104 be ` easier ' 2 +61411 3104 be ` easier 2 +61412 3104 be ` 2 +61413 3104 to watch on video at home 2 +61414 3104 watch on video at home 1 +61415 3104 watch on video 2 +61416 3104 on video 2 +61417 3104 that should n't stop die-hard French film connoisseurs from going out and enjoying the big-screen experience 3 +61418 3104 should n't stop die-hard French film connoisseurs from going out and enjoying the big-screen experience 2 +61419 3104 stop die-hard French film connoisseurs from going out and enjoying the big-screen experience 2 +61420 3104 stop die-hard French film connoisseurs 2 +61421 3104 die-hard French film connoisseurs 3 +61422 3104 die-hard 2 +61423 3104 French film connoisseurs 2 +61424 3104 film connoisseurs 2 +61425 3104 connoisseurs 2 +61426 3104 from going out and enjoying the big-screen experience 2 +61427 3104 going out and enjoying the big-screen experience 3 +61428 3104 going out and 2 +61429 3104 going out 2 +61430 3104 enjoying the big-screen experience 4 +61431 3104 the big-screen experience 2 +61432 3104 big-screen experience 3 +61433 3105 With its paint fights , motorized scooter chases and dewy-eyed sentiment 2 +61434 3105 its paint fights , motorized scooter chases and dewy-eyed sentiment 2 +61435 3105 its paint fights , motorized scooter chases and 2 +61436 3105 its paint fights , motorized scooter chases 1 +61437 3105 its paint fights , 2 +61438 3105 its paint fights 2 +61439 3105 paint fights 2 +61440 3105 paint 2 +61441 3105 motorized scooter chases 2 +61442 3105 motorized 2 +61443 3105 scooter chases 2 +61444 3105 dewy-eyed sentiment 2 +61445 3105 dewy-eyed 2 +61446 3105 a pretty listless collection 1 +61447 3105 pretty listless collection 1 +61448 3105 pretty listless 1 +61449 3105 kid-movie 2 +61450 3106 Enticing and often funny documentary . 4 +61451 3106 Enticing and often funny documentary 4 +61452 3106 Enticing and often 3 +61453 3106 Enticing and 3 +61454 3106 Enticing 2 +61455 3106 funny documentary 4 +61456 3107 Though its story is only surface deep , the visuals and enveloping sounds of Blue Crush make this surprisingly decent flick worth a summertime look-see . 3 +61457 3107 Though its story is only surface deep 3 +61458 3107 its story is only surface deep 1 +61459 3107 is only surface deep 2 +61460 3107 is only surface 2 +61461 3107 only surface 2 +61462 3107 , the visuals and enveloping sounds of Blue Crush make this surprisingly decent flick worth a summertime look-see . 3 +61463 3107 the visuals and enveloping sounds of Blue Crush make this surprisingly decent flick worth a summertime look-see . 3 +61464 3107 the visuals and enveloping sounds of Blue Crush 2 +61465 3107 the visuals and enveloping sounds 2 +61466 3107 visuals and enveloping sounds 3 +61467 3107 and enveloping sounds 2 +61468 3107 enveloping sounds 3 +61469 3107 of Blue Crush 2 +61470 3107 make this surprisingly decent flick worth a summertime look-see . 4 +61471 3107 make this surprisingly decent flick worth a summertime look-see 3 +61472 3107 make this surprisingly decent flick 3 +61473 3107 this surprisingly decent flick 3 +61474 3107 surprisingly decent flick 4 +61475 3107 surprisingly decent 3 +61476 3107 worth a summertime look-see 3 +61477 3107 a summertime look-see 3 +61478 3107 summertime look-see 2 +61479 3107 look-see 2 +61480 3108 Here 's my advice , Kev . 2 +61481 3108 's my advice , Kev . 2 +61482 3108 's my advice , Kev 2 +61483 3108 my advice , Kev 2 +61484 3108 my advice , 2 +61485 3108 Kev 2 +61486 3109 Like all of Egoyan 's work , Ararat is fiercely intelligent and uncommonly ambitious . 3 +61487 3109 Like all of Egoyan 's work 2 +61488 3109 all of Egoyan 's work 2 +61489 3109 of Egoyan 's work 2 +61490 3109 Egoyan 's work 2 +61491 3109 Egoyan 's 2 +61492 3109 Egoyan 2 +61493 3109 , Ararat is fiercely intelligent and uncommonly ambitious . 3 +61494 3109 Ararat is fiercely intelligent and uncommonly ambitious . 3 +61495 3109 is fiercely intelligent and uncommonly ambitious . 4 +61496 3109 is fiercely intelligent and uncommonly ambitious 3 +61497 3109 fiercely intelligent and uncommonly ambitious 4 +61498 3109 fiercely intelligent and 3 +61499 3109 fiercely intelligent 3 +61500 3109 uncommonly ambitious 3 +61501 3110 The 3-D vistas from orbit , with the space station suspended like a huge set of wind chimes over the great blue globe , are stanzas of breathtaking , awe-inspiring visual poetry . 4 +61502 3110 The 3-D vistas from orbit , with the space station suspended like a huge set of wind chimes over the great blue globe , 3 +61503 3110 The 3-D vistas from orbit , with the space station suspended like a huge set of wind chimes over the great blue globe 3 +61504 3110 The 3-D vistas from orbit , 2 +61505 3110 The 3-D vistas from orbit 3 +61506 3110 The 3-D vistas 2 +61507 3110 3-D vistas 2 +61508 3110 3-D 1 +61509 3110 vistas 2 +61510 3110 from orbit 2 +61511 3110 orbit 2 +61512 3110 with the space station suspended like a huge set of wind chimes over the great blue globe 2 +61513 3110 the space station suspended like a huge set of wind chimes over the great blue globe 2 +61514 3110 the space station 2 +61515 3110 space station 2 +61516 3110 suspended like a huge set of wind chimes over the great blue globe 2 +61517 3110 suspended like a huge set of wind chimes 2 +61518 3110 like a huge set of wind chimes 2 +61519 3110 a huge set of wind chimes 2 +61520 3110 a huge set 2 +61521 3110 huge set 2 +61522 3110 of wind chimes 2 +61523 3110 wind chimes 3 +61524 3110 chimes 2 +61525 3110 over the great blue globe 2 +61526 3110 the great blue globe 2 +61527 3110 great blue globe 2 +61528 3110 blue globe 2 +61529 3110 globe 2 +61530 3110 are stanzas of breathtaking , awe-inspiring visual poetry . 4 +61531 3110 are stanzas of breathtaking , awe-inspiring visual poetry 4 +61532 3110 stanzas of breathtaking , awe-inspiring visual poetry 3 +61533 3110 stanzas 2 +61534 3110 of breathtaking , awe-inspiring visual poetry 4 +61535 3110 breathtaking , awe-inspiring visual poetry 4 +61536 3110 breathtaking 4 +61537 3110 , awe-inspiring visual poetry 3 +61538 3110 awe-inspiring visual poetry 4 +61539 3110 awe-inspiring 4 +61540 3110 visual poetry 3 +61541 3111 turns a potentially interesting idea into an excruciating film school experience that plays better only for the film 's publicists or for people who take as many drugs as the film 's characters 0 +61542 3111 turns a potentially interesting idea into an excruciating film 1 +61543 3111 turns a potentially interesting idea 2 +61544 3111 a potentially interesting idea 2 +61545 3111 potentially interesting idea 3 +61546 3111 potentially interesting 3 +61547 3111 into an excruciating film 0 +61548 3111 an excruciating film 0 +61549 3111 excruciating film 1 +61550 3111 school experience that plays better only for the film 's publicists or for people who take as many drugs as the film 's characters 1 +61551 3111 school experience 2 +61552 3111 that plays better only for the film 's publicists or for people who take as many drugs as the film 's characters 1 +61553 3111 plays better only for the film 's publicists or for people who take as many drugs as the film 's characters 0 +61554 3111 plays better 2 +61555 3111 only for the film 's publicists or for people who take as many drugs as the film 's characters 1 +61556 3111 for the film 's publicists or for people who take as many drugs as the film 's characters 1 +61557 3111 for the film 's publicists or 2 +61558 3111 for the film 's publicists 2 +61559 3111 the film 's publicists 2 +61560 3111 publicists 2 +61561 3111 for people who take as many drugs as the film 's characters 1 +61562 3111 people who take as many drugs as the film 's characters 2 +61563 3111 who take as many drugs as the film 's characters 1 +61564 3111 take as many drugs as the film 's characters 1 +61565 3111 as many drugs as the film 's characters 2 +61566 3111 many drugs as the film 's characters 2 +61567 3111 many drugs 2 +61568 3111 as the film 's characters 2 +61569 3111 the film 's characters 2 +61570 3112 Arliss Howard 's ambitious , moving , and adventurous directorial debut , Big Bad Love , meets so many of the challenges it poses for itself that one can forgive the film its flaws . 4 +61571 3112 Arliss Howard 's ambitious , moving , and adventurous directorial debut , Big Bad Love , 3 +61572 3112 Arliss Howard 's ambitious , moving , and adventurous directorial debut , Big Bad Love 4 +61573 3112 Arliss Howard 's ambitious , moving , and adventurous directorial debut , 3 +61574 3112 Arliss Howard 's ambitious , moving , and adventurous directorial debut 3 +61575 3112 Arliss Howard 's 2 +61576 3112 Arliss 2 +61577 3112 ambitious , moving , and adventurous directorial debut 4 +61578 3112 , moving , and adventurous directorial debut 4 +61579 3112 moving , and adventurous directorial debut 3 +61580 3112 moving , and adventurous 4 +61581 3112 , and adventurous 2 +61582 3112 meets so many of the challenges it poses for itself that one can forgive the film its flaws . 3 +61583 3112 meets so many of the challenges it poses for itself that one can forgive the film its flaws 3 +61584 3112 meets 2 +61585 3112 so many of the challenges it poses for itself that one can forgive the film its flaws 3 +61586 3112 so many of the challenges 2 +61587 3112 of the challenges 2 +61588 3112 the challenges 2 +61589 3112 it poses for itself that one can forgive the film its flaws 2 +61590 3112 poses for itself that one can forgive the film its flaws 3 +61591 3112 poses for itself 2 +61592 3112 poses 2 +61593 3112 for itself 2 +61594 3112 that one can forgive the film its flaws 2 +61595 3112 one can forgive the film its flaws 2 +61596 3112 can forgive the film its flaws 2 +61597 3112 forgive the film its flaws 2 +61598 3112 the film its flaws 1 +61599 3113 But , no , we get another scene , and then another . 2 +61600 3113 , no , we get another scene , and then another . 1 +61601 3113 no , we get another scene , and then another . 1 +61602 3113 , we get another scene , and then another . 2 +61603 3113 we get another scene , and then another . 2 +61604 3113 get another scene , and then another . 2 +61605 3113 get another scene , and then another 2 +61606 3113 another scene , and then another 2 +61607 3113 another scene , and then 2 +61608 3113 another scene , and 2 +61609 3113 another scene , 2 +61610 3113 another scene 2 +61611 3114 Seagal ran out of movies years ago , and this is just the proof . 0 +61612 3114 Seagal ran out of movies years ago , and this is just the proof 1 +61613 3114 Seagal ran out of movies years ago , and 1 +61614 3114 Seagal ran out of movies years ago , 0 +61615 3114 Seagal ran out of movies years ago 1 +61616 3114 ran out of movies years ago 2 +61617 3114 ran out 2 +61618 3114 ran 2 +61619 3114 of movies years ago 2 +61620 3114 movies years ago 2 +61621 3114 movies years 2 +61622 3114 this is just the proof 2 +61623 3114 is just the proof 2 +61624 3114 the proof 2 +61625 3115 There is no substitute for on-screen chemistry , and when Friel pulls the strings that make Williams sink into melancholia , the reaction in Williams is as visceral as a gut punch . 4 +61626 3115 There is no substitute for on-screen chemistry , and when Friel pulls the strings that make Williams sink into melancholia , the reaction in Williams is as visceral as a gut punch 3 +61627 3115 There is no substitute for on-screen chemistry , and 3 +61628 3115 There is no substitute for on-screen chemistry , 2 +61629 3115 There is no substitute for on-screen chemistry 3 +61630 3115 is no substitute for on-screen chemistry 1 +61631 3115 no substitute for on-screen chemistry 3 +61632 3115 no substitute 2 +61633 3115 for on-screen chemistry 3 +61634 3115 on-screen chemistry 3 +61635 3115 on-screen 2 +61636 3115 when Friel pulls the strings that make Williams sink into melancholia , the reaction in Williams is as visceral as a gut punch 2 +61637 3115 when Friel pulls the strings that make Williams sink into melancholia 2 +61638 3115 Friel pulls the strings that make Williams sink into melancholia 1 +61639 3115 pulls the strings that make Williams sink into melancholia 3 +61640 3115 the strings that make Williams sink into melancholia 2 +61641 3115 the strings 2 +61642 3115 that make Williams sink into melancholia 1 +61643 3115 make Williams sink into melancholia 2 +61644 3115 Williams sink into melancholia 2 +61645 3115 sink into melancholia 1 +61646 3115 into melancholia 1 +61647 3115 melancholia 2 +61648 3115 , the reaction in Williams is as visceral as a gut punch 2 +61649 3115 the reaction in Williams is as visceral as a gut punch 3 +61650 3115 the reaction in Williams 2 +61651 3115 the reaction 2 +61652 3115 in Williams 2 +61653 3115 is as visceral as a gut punch 3 +61654 3115 is as visceral 2 +61655 3115 as visceral 2 +61656 3115 as a gut punch 2 +61657 3115 a gut punch 1 +61658 3115 a gut 2 +61659 3115 gut 2 +61660 3116 -LRB- Javier Bardem is -RRB- one of the few reasons to watch the film , which director Gerardo Vera has drenched in swoony music and fever-pitched melodrama . 2 +61661 3116 Javier Bardem is -RRB- one of the few reasons to watch the film , which director Gerardo Vera has drenched in swoony music and fever-pitched melodrama . 2 +61662 3116 Javier Bardem 2 +61663 3116 Javier 2 +61664 3116 Bardem 2 +61665 3116 is -RRB- one of the few reasons to watch the film , which director Gerardo Vera has drenched in swoony music and fever-pitched melodrama . 2 +61666 3116 is -RRB- one of the few reasons to watch the film , which director Gerardo Vera has drenched in swoony music and fever-pitched melodrama 3 +61667 3116 one of the few reasons to watch the film , which director Gerardo Vera has drenched in swoony music and fever-pitched melodrama 2 +61668 3116 one of the few 2 +61669 3116 of the few 2 +61670 3116 the few 2 +61671 3116 reasons to watch the film , which director Gerardo Vera has drenched in swoony music and fever-pitched melodrama 3 +61672 3116 to watch the film , which director Gerardo Vera has drenched in swoony music and fever-pitched melodrama 2 +61673 3116 watch the film , which director Gerardo Vera has drenched in swoony music and fever-pitched melodrama 3 +61674 3116 the film , which director Gerardo Vera has drenched in swoony music and fever-pitched melodrama 3 +61675 3116 which director Gerardo Vera has drenched in swoony music and fever-pitched melodrama 2 +61676 3116 director Gerardo Vera has drenched in swoony music and fever-pitched melodrama 2 +61677 3116 director Gerardo Vera 2 +61678 3116 Gerardo Vera 2 +61679 3116 Gerardo 2 +61680 3116 Vera 2 +61681 3116 has drenched in swoony music and fever-pitched melodrama 1 +61682 3116 drenched in swoony music and fever-pitched melodrama 1 +61683 3116 drenched 2 +61684 3116 in swoony music and fever-pitched melodrama 2 +61685 3116 swoony music and fever-pitched melodrama 3 +61686 3116 swoony music and 2 +61687 3116 swoony music 2 +61688 3116 swoony 1 +61689 3116 fever-pitched melodrama 3 +61690 3116 fever-pitched 2 +61691 3117 Occasionally interesting but essentially unpersuasive , a footnote to a still evolving story . 2 +61692 3117 Occasionally interesting but essentially unpersuasive , a footnote to a still evolving story 2 +61693 3117 Occasionally interesting but essentially unpersuasive , 2 +61694 3117 Occasionally interesting but essentially unpersuasive 1 +61695 3117 interesting but essentially unpersuasive 2 +61696 3117 interesting but 2 +61697 3117 essentially unpersuasive 1 +61698 3117 unpersuasive 1 +61699 3117 a footnote to a still evolving story 2 +61700 3117 a footnote 2 +61701 3117 to a still evolving story 2 +61702 3117 a still evolving story 2 +61703 3117 still evolving story 2 +61704 3117 still evolving 2 +61705 3117 evolving 3 +61706 3118 The script ? 1 +61707 3118 script ? 2 +61708 3119 No cliche escapes the perfervid treatment of gang warfare called ces Wild . 1 +61709 3119 No cliche escapes the perfervid treatment of gang warfare 1 +61710 3119 No cliche 2 +61711 3119 escapes the perfervid treatment of gang warfare 2 +61712 3119 the perfervid treatment of gang warfare 2 +61713 3119 the perfervid treatment 2 +61714 3119 perfervid treatment 2 +61715 3119 perfervid 2 +61716 3119 of gang warfare 2 +61717 3119 gang warfare 2 +61718 3119 warfare 2 +61719 3119 called ces Wild . 2 +61720 3119 called ces Wild 2 +61721 3119 ces Wild 2 +61722 3119 ces 2 +61723 3120 The movie is so resolutely cobbled together out of older movies that it even uses a totally unnecessary prologue , just because it seems obligatory . 0 +61724 3120 is so resolutely cobbled together out of older movies that it even uses a totally unnecessary prologue , just because it seems obligatory . 1 +61725 3120 is so resolutely cobbled together out of older movies that it even uses a totally unnecessary prologue , just because it seems obligatory 1 +61726 3120 is so resolutely cobbled together out of older movies 2 +61727 3120 is so resolutely 3 +61728 3120 so resolutely 2 +61729 3120 cobbled together out of older movies 1 +61730 3120 cobbled together out 2 +61731 3120 of older movies 2 +61732 3120 older movies 2 +61733 3120 that it even uses a totally unnecessary prologue , just because it seems obligatory 1 +61734 3120 it even uses a totally unnecessary prologue , just because it seems obligatory 1 +61735 3120 even uses a totally unnecessary prologue , just because it seems obligatory 1 +61736 3120 uses a totally unnecessary prologue , just because it seems obligatory 1 +61737 3120 uses a totally unnecessary prologue , 1 +61738 3120 uses a totally unnecessary prologue 2 +61739 3120 a totally unnecessary prologue 2 +61740 3120 totally unnecessary prologue 0 +61741 3120 totally unnecessary 2 +61742 3120 prologue 2 +61743 3120 just because it seems obligatory 1 +61744 3120 because it seems obligatory 2 +61745 3120 it seems obligatory 2 +61746 3120 seems obligatory 2 +61747 3120 obligatory 2 +61748 3121 A few hours after you 've seen it , you forget you 've been to the movies . 1 +61749 3121 A few hours after you 've seen it 2 +61750 3121 A few hours 2 +61751 3121 few hours 2 +61752 3121 after you 've seen it 2 +61753 3121 you 've seen it 2 +61754 3121 've seen it 2 +61755 3121 , you forget you 've been to the movies . 2 +61756 3121 you forget you 've been to the movies . 3 +61757 3121 forget you 've been to the movies . 2 +61758 3121 forget you 've been to the movies 2 +61759 3121 you 've been to the movies 2 +61760 3121 've been to the movies 2 +61761 3121 been to the movies 2 +61762 3122 ... with the gifted Pearce on hand to keep things on semi-stable ground dramatically , this retooled Machine is ultimately effective enough at achieving the modest , crowd-pleasing goals it sets for itself . 4 +61763 3122 with the gifted Pearce on hand to keep things on semi-stable ground dramatically , this retooled Machine is ultimately effective enough at achieving the modest , crowd-pleasing goals it sets for itself . 3 +61764 3122 with the gifted Pearce on hand to keep things on semi-stable ground dramatically 3 +61765 3122 the gifted Pearce on hand to keep things on semi-stable ground dramatically 3 +61766 3122 the gifted Pearce on hand 3 +61767 3122 the gifted Pearce 3 +61768 3122 gifted Pearce 2 +61769 3122 Pearce 2 +61770 3122 to keep things on semi-stable ground dramatically 2 +61771 3122 keep things on semi-stable ground dramatically 2 +61772 3122 keep things on semi-stable ground 2 +61773 3122 things on semi-stable ground 2 +61774 3122 on semi-stable ground 2 +61775 3122 semi-stable ground 2 +61776 3122 semi-stable 2 +61777 3122 , this retooled Machine is ultimately effective enough at achieving the modest , crowd-pleasing goals it sets for itself . 3 +61778 3122 this retooled Machine is ultimately effective enough at achieving the modest , crowd-pleasing goals it sets for itself . 3 +61779 3122 this retooled Machine 2 +61780 3122 retooled Machine 2 +61781 3122 retooled 2 +61782 3122 is ultimately effective enough at achieving the modest , crowd-pleasing goals it sets for itself . 3 +61783 3122 is ultimately effective enough at achieving the modest , crowd-pleasing goals it sets for itself 3 +61784 3122 effective enough at achieving the modest , crowd-pleasing goals it sets for itself 3 +61785 3122 effective enough 3 +61786 3122 at achieving the modest , crowd-pleasing goals it sets for itself 3 +61787 3122 achieving the modest , crowd-pleasing goals it sets for itself 3 +61788 3122 the modest , crowd-pleasing goals it sets for itself 3 +61789 3122 the modest , crowd-pleasing goals 2 +61790 3122 modest , crowd-pleasing goals 4 +61791 3122 , crowd-pleasing goals 3 +61792 3122 crowd-pleasing goals 4 +61793 3122 crowd-pleasing 3 +61794 3122 goals 3 +61795 3122 it sets for itself 2 +61796 3122 sets for itself 2 +61797 3123 Oh , James ! 3 +61798 3123 , James ! 2 +61799 3123 James ! 2 +61800 3124 The picture seems uncertain whether it wants to be an acidic all-male All About Eve or a lush , swooning melodrama in the Intermezzo strain . 1 +61801 3124 seems uncertain whether it wants to be an acidic all-male All About Eve or a lush , swooning melodrama in the Intermezzo strain . 1 +61802 3124 seems uncertain whether it wants to be an acidic all-male All About Eve or a lush , swooning melodrama in the Intermezzo strain 1 +61803 3124 seems uncertain 1 +61804 3124 whether it wants to be an acidic all-male All About Eve or a lush , swooning melodrama in the Intermezzo strain 2 +61805 3124 it wants to be an acidic all-male All About Eve or a lush , swooning melodrama in the Intermezzo strain 1 +61806 3124 wants to be an acidic all-male All About Eve or a lush , swooning melodrama in the Intermezzo strain 2 +61807 3124 to be an acidic all-male All About Eve or a lush , swooning melodrama in the Intermezzo strain 1 +61808 3124 be an acidic all-male All About Eve or a lush , swooning melodrama in the Intermezzo strain 2 +61809 3124 an acidic all-male All About Eve or a lush , swooning melodrama in the Intermezzo strain 2 +61810 3124 an acidic all-male All About Eve or 2 +61811 3124 an acidic all-male All About Eve 1 +61812 3124 an acidic all-male 2 +61813 3124 acidic all-male 1 +61814 3124 acidic 2 +61815 3124 all-male 2 +61816 3124 All About Eve 2 +61817 3124 About Eve 2 +61818 3124 Eve 2 +61819 3124 a lush , swooning melodrama in the Intermezzo strain 3 +61820 3124 a lush , swooning melodrama 3 +61821 3124 lush , swooning melodrama 3 +61822 3124 , swooning melodrama 2 +61823 3124 swooning melodrama 3 +61824 3124 in the Intermezzo strain 2 +61825 3124 the Intermezzo strain 2 +61826 3124 Intermezzo strain 3 +61827 3124 Intermezzo 2 +61828 3125 The cast is phenomenal , especially the women . 4 +61829 3125 is phenomenal , especially the women . 4 +61830 3125 is phenomenal , especially the women 4 +61831 3125 phenomenal , especially the women 2 +61832 3125 phenomenal , especially 4 +61833 3125 phenomenal , 4 +61834 3125 phenomenal 4 +61835 3126 The movie is our story as much as it is Schmidt 's , no matter if it 's viewed as a self-reflection or cautionary tale . 2 +61836 3126 is our story as much as it is Schmidt 's , no matter if it 's viewed as a self-reflection or cautionary tale . 3 +61837 3126 is our story as much as it is Schmidt 's , no matter if it 's viewed as a self-reflection or cautionary tale 2 +61838 3126 is our story 2 +61839 3126 our story 2 +61840 3126 as much as it is Schmidt 's , no matter if it 's viewed as a self-reflection or cautionary tale 2 +61841 3126 as it is Schmidt 's , no matter if it 's viewed as a self-reflection or cautionary tale 3 +61842 3126 it is Schmidt 's , no matter if it 's viewed as a self-reflection or cautionary tale 3 +61843 3126 is Schmidt 's , no matter if it 's viewed as a self-reflection or cautionary tale 2 +61844 3126 Schmidt 's , no matter if it 's viewed as a self-reflection or cautionary tale 2 +61845 3126 Schmidt 's , 2 +61846 3126 Schmidt 's 2 +61847 3126 no matter if it 's viewed as a self-reflection or cautionary tale 2 +61848 3126 if it 's viewed as a self-reflection or cautionary tale 2 +61849 3126 it 's viewed as a self-reflection or cautionary tale 2 +61850 3126 's viewed as a self-reflection or cautionary tale 3 +61851 3126 viewed as a self-reflection or cautionary tale 3 +61852 3126 as a self-reflection or cautionary tale 2 +61853 3126 a self-reflection or cautionary tale 2 +61854 3126 self-reflection or cautionary tale 2 +61855 3126 or cautionary tale 2 +61856 3127 The movie weighs no more than a glass of flat champagne . 1 +61857 3127 weighs no more than a glass of flat champagne . 1 +61858 3127 weighs no more than a glass of flat champagne 1 +61859 3127 weighs no more 2 +61860 3127 weighs 2 +61861 3127 no more 1 +61862 3127 than a glass of flat champagne 2 +61863 3127 a glass of flat champagne 1 +61864 3127 a glass 2 +61865 3127 of flat champagne 1 +61866 3127 flat champagne 1 +61867 3127 champagne 2 +61868 3128 Too silly to take seriously . 1 +61869 3128 Too silly 2 +61870 3128 to take seriously . 2 +61871 3128 to take seriously 2 +61872 3128 take seriously 2 +61873 3129 It is also a testament to the integrity and vision of the band . 3 +61874 3129 is also a testament to the integrity and vision of the band . 2 +61875 3129 is also a testament to the integrity and vision of the band 3 +61876 3129 a testament to the integrity and vision of the band 3 +61877 3129 to the integrity and vision of the band 3 +61878 3129 the integrity and vision of the band 2 +61879 3129 the integrity and vision 3 +61880 3129 integrity and vision 2 +61881 3129 integrity and 2 +61882 3129 of the band 3 +61883 3130 Frequent flurries of creative belly laughs and genuinely enthusiastic performances ... keep the movie slaloming through its hackneyed elements with enjoyable ease . 3 +61884 3130 Frequent flurries of creative belly laughs and genuinely enthusiastic performances 4 +61885 3130 Frequent flurries of creative belly laughs and 4 +61886 3130 Frequent flurries of creative belly laughs 3 +61887 3130 Frequent flurries 2 +61888 3130 flurries 2 +61889 3130 of creative belly laughs 4 +61890 3130 creative belly laughs 4 +61891 3130 genuinely enthusiastic performances 4 +61892 3130 genuinely enthusiastic 3 +61893 3130 ... keep the movie slaloming through its hackneyed elements with enjoyable ease . 3 +61894 3130 keep the movie slaloming through its hackneyed elements with enjoyable ease . 3 +61895 3130 keep the movie slaloming through its hackneyed elements with enjoyable ease 3 +61896 3130 the movie slaloming through its hackneyed elements with enjoyable ease 3 +61897 3130 slaloming through its hackneyed elements with enjoyable ease 3 +61898 3130 slaloming through its hackneyed elements 1 +61899 3130 slaloming 2 +61900 3130 through its hackneyed elements 1 +61901 3130 its hackneyed elements 2 +61902 3130 hackneyed elements 1 +61903 3130 with enjoyable ease 3 +61904 3130 enjoyable ease 3 +61905 3131 It 's also not smart or barbed enough for older viewers -- not everyone thinks poo-poo jokes are ` edgy . ' 0 +61906 3131 It 's also not smart or barbed enough for older viewers -- not everyone thinks poo-poo jokes are ` edgy . 1 +61907 3131 It 's also not smart or barbed enough for older viewers -- not everyone thinks poo-poo jokes are ` edgy 0 +61908 3131 It 's also not smart or barbed enough for older viewers -- not 1 +61909 3131 It 's also not smart or barbed enough for older viewers -- 1 +61910 3131 It 's also not smart or barbed enough for older viewers 1 +61911 3131 's also not smart or barbed enough for older viewers 1 +61912 3131 not smart or barbed enough for older viewers 1 +61913 3131 not smart or 1 +61914 3131 not smart 0 +61915 3131 barbed enough for older viewers 2 +61916 3131 barbed enough 2 +61917 3131 barbed 2 +61918 3131 for older viewers 2 +61919 3131 older viewers 2 +61920 3131 everyone thinks poo-poo jokes are ` edgy 1 +61921 3131 thinks poo-poo jokes are ` edgy 1 +61922 3131 poo-poo jokes are ` edgy 1 +61923 3131 poo-poo jokes 1 +61924 3131 poo-poo 1 +61925 3131 are ` edgy 2 +61926 3131 are ` 2 +61927 3132 There are many definitions of ` time waster ' but this movie must surely be one of them . 0 +61928 3132 There are many definitions of ` time waster ' but this movie must surely be one of them 0 +61929 3132 There are many definitions of ` time waster ' but 1 +61930 3132 There are many definitions of ` time waster ' 1 +61931 3132 are many definitions of ` time waster ' 1 +61932 3132 many definitions of ` time waster ' 0 +61933 3132 many definitions 2 +61934 3132 definitions 2 +61935 3132 of ` time waster ' 2 +61936 3132 ` time waster ' 1 +61937 3132 time waster ' 1 +61938 3132 waster ' 1 +61939 3132 waster 2 +61940 3132 this movie must surely be one of them 2 +61941 3132 must surely be one of them 2 +61942 3132 must surely 2 +61943 3132 be one of them 2 +61944 3133 once she lets her love depraved leads meet , -LRB- Denis ' -RRB- story becomes a hopeless , unsatisfying muddle 0 +61945 3133 she lets her love depraved leads meet , -LRB- Denis ' -RRB- story becomes a hopeless , unsatisfying muddle 1 +61946 3133 lets her love depraved leads meet , -LRB- Denis ' -RRB- story becomes a hopeless , unsatisfying muddle 1 +61947 3133 her love depraved leads meet , -LRB- Denis ' -RRB- story becomes a hopeless , unsatisfying muddle 1 +61948 3133 her love depraved leads meet , 2 +61949 3133 her love depraved leads meet 2 +61950 3133 her love depraved 2 +61951 3133 love depraved 2 +61952 3133 leads meet 2 +61953 3133 -LRB- Denis ' -RRB- story becomes a hopeless , unsatisfying muddle 1 +61954 3133 Denis ' -RRB- story becomes a hopeless , unsatisfying muddle 0 +61955 3133 Denis ' 2 +61956 3133 -RRB- story becomes a hopeless , unsatisfying muddle 0 +61957 3133 story becomes a hopeless , unsatisfying muddle 0 +61958 3133 becomes a hopeless , unsatisfying muddle 1 +61959 3133 a hopeless , unsatisfying muddle 1 +61960 3133 hopeless , unsatisfying muddle 0 +61961 3133 , unsatisfying muddle 2 +61962 3133 unsatisfying muddle 1 +61963 3134 It 's like an all-star salute to Disney 's cheesy commercialism . 1 +61964 3134 's like an all-star salute to Disney 's cheesy commercialism . 2 +61965 3134 's like an all-star salute to Disney 's cheesy commercialism 2 +61966 3134 's like an all-star salute 3 +61967 3134 like an all-star salute 3 +61968 3134 an all-star salute 3 +61969 3134 all-star salute 3 +61970 3134 all-star 3 +61971 3134 salute 2 +61972 3134 to Disney 's cheesy commercialism 2 +61973 3134 Disney 's cheesy commercialism 2 +61974 3134 cheesy commercialism 1 +61975 3135 Gooding is the energetic frontman , and it 's hard to resist his enthusiasm , even if the filmmakers come up with nothing original in the way of slapstick sequences . 3 +61976 3135 Gooding is the energetic frontman , and it 's hard to resist his enthusiasm , even if the filmmakers come up with nothing original in the way of slapstick sequences 3 +61977 3135 Gooding is the energetic frontman , and 3 +61978 3135 Gooding is the energetic frontman , 3 +61979 3135 Gooding is the energetic frontman 4 +61980 3135 is the energetic frontman 3 +61981 3135 the energetic frontman 3 +61982 3135 energetic frontman 3 +61983 3135 frontman 2 +61984 3135 it 's hard to resist his enthusiasm , even if the filmmakers come up with nothing original in the way of slapstick sequences 3 +61985 3135 's hard to resist his enthusiasm , even if the filmmakers come up with nothing original in the way of slapstick sequences 2 +61986 3135 's hard to resist his enthusiasm , 3 +61987 3135 's hard to resist his enthusiasm 4 +61988 3135 hard to resist his enthusiasm 3 +61989 3135 to resist his enthusiasm 2 +61990 3135 resist his enthusiasm 2 +61991 3135 resist 1 +61992 3135 his enthusiasm 2 +61993 3135 even if the filmmakers come up with nothing original in the way of slapstick sequences 2 +61994 3135 if the filmmakers come up with nothing original in the way of slapstick sequences 1 +61995 3135 the filmmakers come up with nothing original in the way of slapstick sequences 1 +61996 3135 come up with nothing original in the way of slapstick sequences 2 +61997 3135 with nothing original in the way of slapstick sequences 1 +61998 3135 nothing original in the way of slapstick sequences 0 +61999 3135 nothing original 1 +62000 3135 in the way of slapstick sequences 2 +62001 3135 the way of slapstick sequences 2 +62002 3135 of slapstick sequences 3 +62003 3135 slapstick sequences 3 +62004 3136 The path Ice Age follows most closely , though , is the one established by Warner Bros. giant Chuck Jones , who died a matter of weeks before the movie 's release . 2 +62005 3136 The path Ice Age follows most closely 2 +62006 3136 Ice Age follows most closely 2 +62007 3136 follows most closely 2 +62008 3136 most closely 3 +62009 3136 , though , is the one established by Warner Bros. giant Chuck Jones , who died a matter of weeks before the movie 's release . 2 +62010 3136 though , is the one established by Warner Bros. giant Chuck Jones , who died a matter of weeks before the movie 's release . 2 +62011 3136 , is the one established by Warner Bros. giant Chuck Jones , who died a matter of weeks before the movie 's release . 2 +62012 3136 is the one established by Warner Bros. giant Chuck Jones , who died a matter of weeks before the movie 's release . 2 +62013 3136 is the one established by Warner Bros. giant Chuck Jones , who died a matter of weeks before the movie 's release 2 +62014 3136 the one established by Warner Bros. giant Chuck Jones , who died a matter of weeks before the movie 's release 2 +62015 3136 established by Warner Bros. giant Chuck Jones , who died a matter of weeks before the movie 's release 2 +62016 3136 by Warner Bros. giant Chuck Jones , who died a matter of weeks before the movie 's release 2 +62017 3136 Warner Bros. giant Chuck Jones , who died a matter of weeks before the movie 's release 2 +62018 3136 Warner Bros. giant Chuck Jones , 2 +62019 3136 Warner Bros. giant Chuck Jones 2 +62020 3136 Warner 2 +62021 3136 Bros. giant Chuck Jones 2 +62022 3136 Bros. 2 +62023 3136 giant Chuck Jones 3 +62024 3136 Chuck Jones 2 +62025 3136 who died a matter of weeks before the movie 's release 1 +62026 3136 died a matter of weeks before the movie 's release 1 +62027 3136 died a matter of weeks 1 +62028 3136 died 1 +62029 3136 a matter of weeks 2 +62030 3136 of weeks 3 +62031 3136 before the movie 's release 2 +62032 3136 the movie 's release 2 +62033 3137 It 's sweet and fluffy at the time , but it may leave you feeling a little sticky and unsatisfied . 1 +62034 3137 It 's sweet and fluffy at the time , but it may leave you feeling a little sticky and unsatisfied 2 +62035 3137 It 's sweet and fluffy at the time , but 3 +62036 3137 It 's sweet and fluffy at the time , 3 +62037 3137 It 's sweet and fluffy at the time 4 +62038 3137 's sweet and fluffy at the time 3 +62039 3137 's sweet and fluffy 2 +62040 3137 sweet and fluffy 3 +62041 3137 fluffy 2 +62042 3137 at the time 2 +62043 3137 it may leave you feeling a little sticky and unsatisfied 1 +62044 3137 may leave you feeling a little sticky and unsatisfied 2 +62045 3137 leave you feeling a little sticky and unsatisfied 1 +62046 3137 you feeling a little sticky and unsatisfied 1 +62047 3137 feeling a little sticky and unsatisfied 1 +62048 3137 a little sticky and unsatisfied 2 +62049 3137 little sticky and unsatisfied 0 +62050 3137 sticky and unsatisfied 1 +62051 3137 sticky and 2 +62052 3137 sticky 2 +62053 3138 With few respites , Marshall keeps the energy humming , and his edits , unlike those in Moulin Rouge , are crisp and purposeful without overdoing it . 4 +62054 3138 With few respites 3 +62055 3138 few respites 2 +62056 3138 respites 2 +62057 3138 , Marshall keeps the energy humming , and his edits , unlike those in Moulin Rouge , are crisp and purposeful without overdoing it . 3 +62058 3138 Marshall keeps the energy humming , and his edits , unlike those in Moulin Rouge , are crisp and purposeful without overdoing it . 3 +62059 3138 Marshall keeps the energy humming , and his edits , unlike those in Moulin Rouge , are crisp and purposeful without overdoing it 4 +62060 3138 Marshall keeps the energy humming , and 3 +62061 3138 Marshall keeps the energy humming , 3 +62062 3138 Marshall keeps the energy humming 2 +62063 3138 Marshall 2 +62064 3138 keeps the energy humming 3 +62065 3138 the energy humming 3 +62066 3138 energy humming 2 +62067 3138 humming 2 +62068 3138 his edits , unlike those in Moulin Rouge , are crisp and purposeful without overdoing it 4 +62069 3138 his edits 2 +62070 3138 , unlike those in Moulin Rouge , are crisp and purposeful without overdoing it 3 +62071 3138 unlike those in Moulin Rouge , are crisp and purposeful without overdoing it 3 +62072 3138 unlike those in Moulin Rouge 2 +62073 3138 those in Moulin Rouge 2 +62074 3138 in Moulin Rouge 2 +62075 3138 Moulin Rouge 3 +62076 3138 Moulin 2 +62077 3138 , are crisp and purposeful without overdoing it 4 +62078 3138 are crisp and purposeful without overdoing it 3 +62079 3138 crisp and purposeful without overdoing it 4 +62080 3138 crisp and purposeful 3 +62081 3138 crisp and 3 +62082 3138 purposeful 2 +62083 3138 without overdoing it 3 +62084 3138 overdoing it 1 +62085 3138 overdoing 1 +62086 3139 ... is there a deeper , more direct connection between these women , one that spans time and reveals meaning ? 2 +62087 3139 is there a deeper , more direct connection between these women , one that spans time and reveals meaning ? 2 +62088 3139 is there a deeper , more direct connection between these women , one that spans time and reveals meaning 2 +62089 3139 there a deeper , more direct connection between these women , one that spans time and reveals meaning 3 +62090 3139 there a deeper , more direct connection 2 +62091 3139 a deeper , more direct connection 3 +62092 3139 deeper , more direct connection 3 +62093 3139 deeper , more 2 +62094 3139 , more 2 +62095 3139 direct connection 2 +62096 3139 direct 2 +62097 3139 between these women , one that spans time and reveals meaning 3 +62098 3139 these women , one that spans time and reveals meaning 3 +62099 3139 these women , 2 +62100 3139 these women 2 +62101 3139 one that spans time and reveals meaning 3 +62102 3139 that spans time and reveals meaning 3 +62103 3139 spans time and reveals meaning 3 +62104 3139 spans time and 2 +62105 3139 spans time 2 +62106 3139 spans 2 +62107 3139 reveals meaning 3 +62108 3140 The most ingenious film comedy since Being John Malkovich . 4 +62109 3140 The most ingenious film comedy since Being John Malkovich 4 +62110 3140 The most ingenious film 4 +62111 3140 most ingenious film 4 +62112 3140 most ingenious 4 +62113 3140 comedy since Being John Malkovich 3 +62114 3140 since Being John Malkovich 2 +62115 3141 The setting turns out to be more interesting than any of the character dramas , which never reach satisfying conclusions . 1 +62116 3141 turns out to be more interesting than any of the character dramas , which never reach satisfying conclusions . 3 +62117 3141 turns out to be more interesting than any of the character dramas , which never reach satisfying conclusions 3 +62118 3141 to be more interesting than any of the character dramas , which never reach satisfying conclusions 2 +62119 3141 be more interesting than any of the character dramas , which never reach satisfying conclusions 2 +62120 3141 more interesting than any of the character dramas , which never reach satisfying conclusions 2 +62121 3141 interesting than any of the character dramas , which never reach satisfying conclusions 3 +62122 3141 than any of the character dramas , which never reach satisfying conclusions 2 +62123 3141 any of the character dramas , which never reach satisfying conclusions 1 +62124 3141 of the character dramas , which never reach satisfying conclusions 1 +62125 3141 the character dramas , which never reach satisfying conclusions 0 +62126 3141 the character dramas , 2 +62127 3141 the character dramas 2 +62128 3141 character dramas 2 +62129 3141 dramas 2 +62130 3141 which never reach satisfying conclusions 1 +62131 3141 never reach satisfying conclusions 1 +62132 3141 reach satisfying conclusions 3 +62133 3141 satisfying conclusions 3 +62134 3141 conclusions 2 +62135 3142 An engrossing portrait of uncompromising artists trying to create something original against the backdrop of a corporate music industry that only seems to care about the bottom line . 3 +62136 3142 An engrossing portrait of uncompromising artists trying to create something original against the backdrop of a corporate music industry that only seems to care about the bottom line 3 +62137 3142 An engrossing portrait of uncompromising artists trying to create something original against the backdrop 3 +62138 3142 An engrossing portrait of uncompromising artists trying to create something original 3 +62139 3142 An engrossing portrait 3 +62140 3142 engrossing portrait 3 +62141 3142 of uncompromising artists trying to create something original 2 +62142 3142 uncompromising artists trying to create something original 3 +62143 3142 uncompromising artists 2 +62144 3142 trying to create something original 3 +62145 3142 to create something original 3 +62146 3142 create something original 3 +62147 3142 something original 3 +62148 3142 against the backdrop 2 +62149 3142 the backdrop 2 +62150 3142 of a corporate music industry that only seems to care about the bottom line 2 +62151 3142 a corporate music industry that only seems to care about the bottom line 2 +62152 3142 a corporate music industry 2 +62153 3142 corporate music industry 2 +62154 3142 corporate 2 +62155 3142 music industry 2 +62156 3142 that only seems to care about the bottom line 1 +62157 3142 only seems to care about the bottom line 1 +62158 3142 seems to care about the bottom line 2 +62159 3142 to care about the bottom line 2 +62160 3142 care about the bottom line 2 +62161 3142 about the bottom line 2 +62162 3143 A smart and funny , albeit sometimes superficial , cautionary tale of a technology in search of an artist . 3 +62163 3143 A smart and funny , albeit sometimes superficial , cautionary tale of a technology in search of an artist 4 +62164 3143 A smart and funny , albeit sometimes superficial , cautionary tale of a technology in search 3 +62165 3143 A smart and funny 3 +62166 3143 smart and funny 4 +62167 3143 , albeit sometimes superficial , cautionary tale of a technology in search 2 +62168 3143 albeit sometimes superficial , cautionary tale of a technology in search 2 +62169 3143 albeit sometimes 2 +62170 3143 superficial , cautionary tale of a technology in search 2 +62171 3143 superficial , cautionary tale 2 +62172 3143 , cautionary tale 2 +62173 3143 of a technology in search 2 +62174 3143 a technology in search 2 +62175 3143 a technology 2 +62176 3143 in search 2 +62177 3143 of an artist 2 +62178 3144 -LRB- Fiji diver Rusi Vulakoro and the married couple Howard and Michelle Hall -RRB- show us the world they love and make us love it , too . 4 +62179 3144 -LRB- Fiji diver Rusi Vulakoro and the married couple Howard and Michelle Hall -RRB- show us the world they love and make 3 +62180 3144 -LRB- Fiji diver Rusi Vulakoro and the married couple Howard and Michelle Hall -RRB- 3 +62181 3144 Fiji diver Rusi Vulakoro and the married couple Howard and Michelle Hall -RRB- 3 +62182 3144 Fiji diver Rusi Vulakoro and the married couple Howard and Michelle Hall 2 +62183 3144 Fiji diver Rusi Vulakoro and 2 +62184 3144 Fiji diver Rusi Vulakoro 2 +62185 3144 Fiji 2 +62186 3144 diver Rusi Vulakoro 2 +62187 3144 diver 2 +62188 3144 Rusi Vulakoro 3 +62189 3144 Rusi 2 +62190 3144 Vulakoro 2 +62191 3144 the married couple Howard and Michelle Hall 2 +62192 3144 married couple Howard and Michelle Hall 2 +62193 3144 married 2 +62194 3144 couple Howard and Michelle Hall 2 +62195 3144 Howard and Michelle Hall 2 +62196 3144 and Michelle Hall 2 +62197 3144 Michelle Hall 2 +62198 3144 Michelle 2 +62199 3144 Hall 2 +62200 3144 show us the world they love and make 2 +62201 3144 the world they love and make 3 +62202 3144 they love and make 3 +62203 3144 love and make 2 +62204 3144 us love it , too . 3 +62205 3144 love it , too . 3 +62206 3144 love it , too 4 +62207 3144 love it , 3 +62208 3144 love it 4 +62209 3145 This would-be ` James Bond for the Extreme Generation ' pic is one big , dumb action movie . 0 +62210 3145 This would-be ` James Bond for the Extreme Generation ' pic 2 +62211 3145 This would-be ` James Bond 2 +62212 3145 would-be ` James Bond 2 +62213 3145 ` James Bond 2 +62214 3145 James Bond 2 +62215 3145 for the Extreme Generation ' pic 2 +62216 3145 the Extreme Generation ' pic 2 +62217 3145 the Extreme Generation ' 3 +62218 3145 Extreme Generation ' 2 +62219 3145 Generation ' 2 +62220 3145 is one big , dumb action movie . 0 +62221 3145 is one big , dumb action movie 0 +62222 3145 is one 2 +62223 3145 big , dumb action movie 1 +62224 3145 , dumb action movie 0 +62225 3145 dumb action movie 1 +62226 3146 We have an actor who is great fun to watch performing in a film that is only mildly diverting . 2 +62227 3146 have an actor who is great fun to watch performing in a film that is only mildly diverting . 3 +62228 3146 have an actor who is great fun to watch performing in a film that is only mildly diverting 2 +62229 3146 an actor who is great fun to watch performing in a film that is only mildly diverting 2 +62230 3146 an actor 2 +62231 3146 who is great fun to watch performing in a film that is only mildly diverting 3 +62232 3146 is great fun to watch performing in a film that is only mildly diverting 3 +62233 3146 great fun to watch performing in a film that is only mildly diverting 3 +62234 3146 fun to watch performing in a film that is only mildly diverting 2 +62235 3146 to watch performing in a film that is only mildly diverting 1 +62236 3146 watch performing in a film that is only mildly diverting 1 +62237 3146 performing in a film that is only mildly diverting 1 +62238 3146 performing 2 +62239 3146 in a film that is only mildly diverting 2 +62240 3146 a film that is only mildly diverting 1 +62241 3146 that is only mildly diverting 2 +62242 3146 is only mildly diverting 2 +62243 3146 is only mildly 2 +62244 3146 only mildly 2 +62245 3147 The directing and story are disjointed , flaws that have to be laid squarely on Taylor 's doorstep . 0 +62246 3147 The directing and story 2 +62247 3147 directing and story 2 +62248 3147 directing and 2 +62249 3147 are disjointed , flaws that have to be laid squarely on Taylor 's doorstep . 1 +62250 3147 are disjointed , flaws that have to be laid squarely on Taylor 's doorstep 2 +62251 3147 disjointed , flaws that have to be laid squarely on Taylor 's doorstep 1 +62252 3147 disjointed , 1 +62253 3147 disjointed 1 +62254 3147 flaws that have to be laid squarely on Taylor 's doorstep 2 +62255 3147 that have to be laid squarely on Taylor 's doorstep 2 +62256 3147 have to be laid squarely on Taylor 's doorstep 2 +62257 3147 to be laid squarely on Taylor 's doorstep 2 +62258 3147 be laid squarely on Taylor 's doorstep 2 +62259 3147 laid squarely on Taylor 's doorstep 2 +62260 3147 laid squarely 2 +62261 3147 on Taylor 's doorstep 2 +62262 3147 Taylor 's doorstep 2 +62263 3148 If you 're not totally weirded - out by the notion of cinema as community-therapy spectacle , Quitting hits home with disorienting force . 2 +62264 3148 If you 're not totally weirded - out by the notion of cinema as community-therapy spectacle 1 +62265 3148 you 're not totally weirded - out by the notion of cinema as community-therapy spectacle 2 +62266 3148 're not totally weirded - out by the notion of cinema as community-therapy spectacle 2 +62267 3148 're not totally weirded - out by the notion of cinema 2 +62268 3148 totally weirded - out by the notion of cinema 0 +62269 3148 totally weirded - 1 +62270 3148 totally weirded 1 +62271 3148 weirded 1 +62272 3148 out by the notion of cinema 2 +62273 3148 by the notion of cinema 2 +62274 3148 the notion of cinema 2 +62275 3148 the notion 2 +62276 3148 as community-therapy spectacle 2 +62277 3148 community-therapy spectacle 2 +62278 3148 community-therapy 2 +62279 3148 , Quitting hits home with disorienting force . 3 +62280 3148 Quitting hits home with disorienting force . 3 +62281 3148 hits home with disorienting force . 4 +62282 3148 hits home with disorienting force 3 +62283 3148 hits home 3 +62284 3148 with disorienting force 1 +62285 3148 disorienting force 1 +62286 3148 disorienting 1 +62287 3149 Imagine -LRB- if possible -RRB- a Pasolini film without passion or politics , or an Almodovar movie without beauty or humor , and you have some idea of the glum , numb experience of watching O Fantasma . 0 +62288 3149 Imagine -LRB- if possible -RRB- a Pasolini film without passion or politics , or an Almodovar movie without beauty or humor , and you have some idea of the glum , numb experience of watching O Fantasma 1 +62289 3149 Imagine -LRB- if possible -RRB- a Pasolini film without passion or politics , or an Almodovar movie without beauty or humor , and 1 +62290 3149 Imagine -LRB- if possible -RRB- a Pasolini film without passion or politics , or an Almodovar movie without beauty or humor , 1 +62291 3149 Imagine -LRB- if possible -RRB- a Pasolini film without passion or politics , or an Almodovar movie without beauty or humor 2 +62292 3149 Imagine -LRB- if possible -RRB- a Pasolini film without passion or politics , or 2 +62293 3149 Imagine -LRB- if possible -RRB- a Pasolini film without passion or politics , 1 +62294 3149 Imagine -LRB- if possible -RRB- a Pasolini film without passion or politics 0 +62295 3149 Imagine -LRB- if possible -RRB- 2 +62296 3149 -LRB- if possible -RRB- 2 +62297 3149 if possible -RRB- 2 +62298 3149 possible -RRB- 2 +62299 3149 a Pasolini film without passion or politics 1 +62300 3149 a Pasolini film 2 +62301 3149 Pasolini film 2 +62302 3149 Pasolini 2 +62303 3149 without passion or politics 1 +62304 3149 passion or politics 2 +62305 3149 passion or 2 +62306 3149 an Almodovar movie without beauty or humor 2 +62307 3149 an Almodovar movie 2 +62308 3149 Almodovar movie 2 +62309 3149 Almodovar 2 +62310 3149 without beauty or humor 0 +62311 3149 beauty or humor 3 +62312 3149 beauty or 2 +62313 3149 you have some idea of the glum , numb experience of watching O Fantasma 1 +62314 3149 have some idea of the glum , numb experience of watching O Fantasma 1 +62315 3149 some idea of the glum , numb experience of watching O Fantasma 1 +62316 3149 some idea 2 +62317 3149 of the glum , numb experience of watching O Fantasma 1 +62318 3149 the glum , numb experience of watching O Fantasma 1 +62319 3149 the glum , 2 +62320 3149 the glum 2 +62321 3149 numb experience of watching O Fantasma 1 +62322 3149 numb experience 1 +62323 3149 numb 1 +62324 3149 of watching O Fantasma 2 +62325 3149 watching O Fantasma 2 +62326 3149 O Fantasma 2 +62327 3149 Fantasma 2 +62328 3150 Did we really need a remake of `` Charade ? '' 1 +62329 3150 Did we really need a remake of `` Charade ? 1 +62330 3150 Did we really need a remake of `` Charade 1 +62331 3150 Did we 2 +62332 3150 really need a remake of `` Charade 3 +62333 3150 need a remake of `` Charade 2 +62334 3150 a remake of `` Charade 2 +62335 3150 a remake 2 +62336 3150 of `` Charade 2 +62337 3150 Charade 2 +62338 3151 Exciting documentary . 4 +62339 3151 Exciting documentary 3 +62340 3152 As comedic spotlights go , Notorious C.H.O. hits all the verbal marks it should . 3 +62341 3152 As comedic spotlights go 2 +62342 3152 comedic spotlights go 2 +62343 3152 comedic spotlights 2 +62344 3152 spotlights 2 +62345 3152 , Notorious C.H.O. hits all the verbal marks it should . 3 +62346 3152 Notorious C.H.O. hits all the verbal marks it should . 4 +62347 3152 Notorious C.H.O. 2 +62348 3152 hits all the verbal marks it should . 3 +62349 3152 hits all the verbal marks it should 4 +62350 3152 all the verbal marks it should 3 +62351 3152 all the verbal marks 2 +62352 3152 the verbal marks 2 +62353 3152 verbal marks 2 +62354 3152 it should 2 +62355 3153 Blade II is as estrogen-free as movies get , so you might want to leave your date behind for this one , or she 's gonna make you feel like you owe her big-time . 2 +62356 3153 Blade II is as estrogen-free as movies get , so you might want to leave your date behind for this one , or she 's gonna make you feel like you owe her big-time 1 +62357 3153 Blade II is as estrogen-free as movies get , so you might want to leave your date behind for this one , or 2 +62358 3153 Blade II is as estrogen-free as movies get , so you might want to leave your date behind for this one , 2 +62359 3153 Blade II is as estrogen-free as movies get , so you might want to leave your date behind for this one 3 +62360 3153 Blade II is as estrogen-free as movies get , so 1 +62361 3153 Blade II is as estrogen-free as movies get , 3 +62362 3153 Blade II is as estrogen-free as movies get 3 +62363 3153 Blade II 2 +62364 3153 is as estrogen-free as movies get 2 +62365 3153 is as estrogen-free 2 +62366 3153 as estrogen-free 2 +62367 3153 estrogen-free 1 +62368 3153 as movies get 2 +62369 3153 movies get 2 +62370 3153 you might want to leave your date behind for this one 1 +62371 3153 might want to leave your date behind for this one 1 +62372 3153 want to leave your date behind for this one 1 +62373 3153 to leave your date behind for this one 1 +62374 3153 leave your date behind for this one 1 +62375 3153 leave your date behind 2 +62376 3153 leave your date 1 +62377 3153 for this one 2 +62378 3153 she 's gonna make you feel like you owe her big-time 2 +62379 3153 she 's gonna 2 +62380 3153 she 's 2 +62381 3153 gonna 2 +62382 3153 make you feel like you owe her big-time 2 +62383 3153 you feel like you owe her big-time 3 +62384 3153 feel like you owe her big-time 2 +62385 3153 like you owe her big-time 2 +62386 3153 you owe her big-time 2 +62387 3153 owe her big-time 2 +62388 3153 her big-time 2 +62389 3153 big-time 3 +62390 3154 What makes the movie work -- to an admittedly limited extent -- is the commitment of two genuinely engaging performers . 2 +62391 3154 makes the movie work -- to an admittedly limited extent -- is the commitment of two genuinely engaging performers . 3 +62392 3154 makes the movie work -- to an admittedly limited extent -- is the commitment of two genuinely engaging performers 3 +62393 3154 the movie work -- to an admittedly limited extent -- is the commitment of two genuinely engaging performers 3 +62394 3154 the movie work -- to an admittedly limited extent -- 2 +62395 3154 the movie work -- to an admittedly limited extent 2 +62396 3154 the movie work -- 2 +62397 3154 the movie work 2 +62398 3154 to an admittedly limited extent 2 +62399 3154 an admittedly limited extent 1 +62400 3154 admittedly limited extent 1 +62401 3154 admittedly limited 1 +62402 3154 is the commitment of two genuinely engaging performers 3 +62403 3154 the commitment of two genuinely engaging performers 3 +62404 3154 the commitment 2 +62405 3154 of two genuinely engaging performers 3 +62406 3154 two genuinely engaging performers 4 +62407 3154 genuinely engaging performers 4 +62408 3154 engaging performers 3 +62409 3155 And neither do cliches , no matter how ` inside ' they are . 1 +62410 3155 neither do cliches , no matter how ` inside ' they are . 1 +62411 3155 do cliches , no matter how ` inside ' they are . 2 +62412 3155 do cliches , no matter how ` inside ' they are 1 +62413 3155 cliches , no matter how ` inside ' they are 2 +62414 3155 cliches , 2 +62415 3155 no matter how ` inside ' they are 2 +62416 3155 how ` inside ' they are 2 +62417 3155 how ` inside ' 2 +62418 3155 ` inside ' 2 +62419 3155 inside ' 2 +62420 3155 they are 2 +62421 3156 In its own way 2 +62422 3156 its own way 2 +62423 3156 own way 2 +62424 3156 Joshua 2 +62425 3156 as blasphemous and nonsensical 1 +62426 3156 blasphemous and nonsensical 0 +62427 3156 blasphemous and 1 +62428 3156 blasphemous 2 +62429 3156 Luis 2 +62430 3156 without the latter 's attendant intelligence , poetry , passion , and genius 2 +62431 3156 the latter 's attendant intelligence , poetry , passion , and genius 4 +62432 3156 the latter 's attendant intelligence , 2 +62433 3156 the latter 's attendant intelligence 1 +62434 3156 attendant intelligence 2 +62435 3156 poetry , passion , and genius 4 +62436 3156 , passion , and genius 4 +62437 3156 passion , and genius 4 +62438 3156 , and genius 3 +62439 3156 genius 4 +62440 3157 The movie is virtually without context -- journalistic or historical . 0 +62441 3157 is virtually without context -- journalistic or historical . 0 +62442 3157 is virtually without context -- journalistic or historical 1 +62443 3157 is virtually 2 +62444 3157 without context -- journalistic or historical 1 +62445 3157 context -- journalistic or historical 2 +62446 3157 -- journalistic or historical 2 +62447 3157 journalistic or historical 3 +62448 3157 journalistic or 2 +62449 3158 If it 's not entirely memorable , the movie is certainly easy to watch . 3 +62450 3158 If it 's not entirely memorable 1 +62451 3158 it 's not entirely memorable 1 +62452 3158 's not entirely memorable 1 +62453 3158 entirely memorable 4 +62454 3158 , the movie is certainly easy to watch . 3 +62455 3158 the movie is certainly easy to watch . 3 +62456 3158 is certainly easy to watch . 4 +62457 3158 is certainly easy to watch 3 +62458 3158 easy to watch 3 +62459 3159 An odd , haphazard , and inconsequential romantic comedy . 1 +62460 3159 An odd , haphazard , and inconsequential romantic comedy 1 +62461 3159 odd , haphazard , and inconsequential romantic comedy 2 +62462 3159 odd , haphazard , and inconsequential romantic 0 +62463 3159 , haphazard , and inconsequential romantic 1 +62464 3159 haphazard , and inconsequential romantic 1 +62465 3159 haphazard 2 +62466 3159 , and inconsequential romantic 2 +62467 3159 and inconsequential romantic 2 +62468 3159 inconsequential romantic 2 +62469 3160 Too much of Nemesis has a tired , talky feel . 1 +62470 3160 Too much of Nemesis 2 +62471 3160 of Nemesis 2 +62472 3160 has a tired , talky feel . 0 +62473 3160 has a tired , talky feel 1 +62474 3160 a tired , talky feel 1 +62475 3160 tired , talky feel 1 +62476 3160 tired , talky 1 +62477 3160 , talky 2 +62478 3161 How many more times will indie filmmakers subject us to boring , self-important stories of how horrible we are to ourselves and each other ? 1 +62479 3161 How many more times 2 +62480 3161 How many more 2 +62481 3161 How many 2 +62482 3161 will indie filmmakers subject us to boring , self-important stories of how horrible we are to ourselves and each other ? 2 +62483 3161 will indie filmmakers subject us to boring , self-important stories of how horrible we are to ourselves and each other 1 +62484 3161 will indie filmmakers 2 +62485 3161 indie filmmakers 2 +62486 3161 subject us to boring , self-important stories of how horrible we are to ourselves and each other 1 +62487 3161 subject us 2 +62488 3161 to boring , self-important stories of how horrible we are to ourselves and each other 0 +62489 3161 boring , self-important stories of how horrible we are to ourselves and each other 1 +62490 3161 boring , self-important stories 1 +62491 3161 , self-important stories 1 +62492 3161 self-important stories 2 +62493 3161 of how horrible we are to ourselves and each other 3 +62494 3161 how horrible we are to ourselves and each other 1 +62495 3161 how horrible 0 +62496 3161 we are to ourselves and each other 2 +62497 3161 are to ourselves and each other 3 +62498 3161 to ourselves and each other 2 +62499 3161 ourselves and each other 2 +62500 3161 ourselves and 3 +62501 3162 While the transgressive trappings -LRB- especially the frank sex scenes -RRB- ensure that the film is never dull , Rodrigues 's beast-within metaphor is ultimately rather silly and overwrought , making the ambiguous ending seem goofy rather than provocative . 1 +62502 3162 While the transgressive trappings -LRB- especially the frank sex scenes -RRB- ensure that the film is never dull 3 +62503 3162 the transgressive trappings -LRB- especially the frank sex scenes -RRB- ensure that the film is never dull 2 +62504 3162 the transgressive 2 +62505 3162 transgressive 2 +62506 3162 trappings -LRB- especially the frank sex scenes -RRB- ensure that the film is never dull 3 +62507 3162 trappings 2 +62508 3162 -LRB- especially the frank sex scenes -RRB- ensure that the film is never dull 3 +62509 3162 especially the frank sex scenes -RRB- ensure that the film is never dull 4 +62510 3162 especially the frank sex scenes 2 +62511 3162 the frank sex scenes 2 +62512 3162 frank sex scenes 2 +62513 3162 -RRB- ensure that the film is never dull 3 +62514 3162 ensure that the film is never dull 3 +62515 3162 ensure 2 +62516 3162 that the film is never dull 3 +62517 3162 the film is never dull 4 +62518 3162 , Rodrigues 's beast-within metaphor is ultimately rather silly and overwrought , making the ambiguous ending seem goofy rather than provocative . 1 +62519 3162 Rodrigues 's beast-within metaphor is ultimately rather silly and overwrought , making the ambiguous ending seem goofy rather than provocative . 1 +62520 3162 Rodrigues 's beast-within metaphor 2 +62521 3162 Rodrigues 's 3 +62522 3162 beast-within metaphor 2 +62523 3162 beast-within 2 +62524 3162 is ultimately rather silly and overwrought , making the ambiguous ending seem goofy rather than provocative . 0 +62525 3162 is ultimately rather silly and overwrought , making the ambiguous ending seem goofy rather than provocative 1 +62526 3162 is ultimately rather silly and overwrought , 1 +62527 3162 is ultimately rather silly and overwrought 2 +62528 3162 rather silly and overwrought 2 +62529 3162 silly and overwrought 1 +62530 3162 making the ambiguous ending seem goofy rather than provocative 0 +62531 3162 the ambiguous ending seem goofy rather than provocative 1 +62532 3162 the ambiguous ending 2 +62533 3162 ambiguous ending 1 +62534 3162 seem goofy rather than provocative 1 +62535 3162 seem goofy 1 +62536 3162 rather than provocative 1 +62537 3162 than provocative 2 +62538 3163 An awkward hybrid of genres that just does n't work . 1 +62539 3163 An awkward hybrid of genres that just does n't work 1 +62540 3163 An awkward hybrid 1 +62541 3163 awkward hybrid 1 +62542 3163 of genres that just does n't work 1 +62543 3163 genres that just does n't work 0 +62544 3163 that just does n't work 1 +62545 3163 just does n't work 1 +62546 3163 does n't work 1 +62547 3164 Beautifully crafted and brutally honest , Promises offers an unexpected window into the complexities of the Middle East struggle and into the humanity of its people . 4 +62548 3164 Beautifully crafted and brutally honest 4 +62549 3164 Beautifully crafted and 3 +62550 3164 Beautifully crafted 3 +62551 3164 brutally honest 3 +62552 3164 , Promises offers an unexpected window into the complexities of the Middle East struggle and into the humanity of its people . 3 +62553 3164 Promises offers an unexpected window into the complexities of the Middle East struggle and into the humanity of its people . 3 +62554 3164 offers an unexpected window into the complexities of the Middle East struggle and into the humanity of its people . 3 +62555 3164 offers an unexpected window into the complexities of the Middle East struggle and into the humanity of its people 3 +62556 3164 offers an unexpected window 3 +62557 3164 an unexpected window 2 +62558 3164 unexpected window 2 +62559 3164 window 2 +62560 3164 into the complexities of the Middle East struggle and into the humanity of its people 2 +62561 3164 into the complexities of the Middle East struggle and 3 +62562 3164 into the complexities of the Middle East struggle 2 +62563 3164 the complexities of the Middle East struggle 2 +62564 3164 the complexities 2 +62565 3164 complexities 1 +62566 3164 of the Middle East struggle 2 +62567 3164 the Middle East struggle 2 +62568 3164 Middle East struggle 2 +62569 3164 Middle East 1 +62570 3164 into the humanity of its people 2 +62571 3164 the humanity of its people 4 +62572 3164 of its people 2 +62573 3164 its people 2 +62574 3165 In Auteil 's less dramatic but equally incisive performance , he 's a charismatic charmer likely to seduce and conquer . 3 +62575 3165 In Auteil 's less dramatic but equally incisive performance 3 +62576 3165 Auteil 's less dramatic but equally incisive performance 3 +62577 3165 Auteil 's 2 +62578 3165 Auteil 2 +62579 3165 less dramatic but equally incisive performance 2 +62580 3165 less dramatic but equally incisive 2 +62581 3165 less dramatic but 2 +62582 3165 less dramatic 2 +62583 3165 equally incisive 2 +62584 3165 , he 's a charismatic charmer likely to seduce and conquer . 3 +62585 3165 he 's a charismatic charmer likely to seduce and conquer . 3 +62586 3165 's a charismatic charmer likely to seduce and conquer . 3 +62587 3165 's a charismatic charmer likely to seduce and conquer 3 +62588 3165 a charismatic charmer likely to seduce and conquer 3 +62589 3165 a charismatic charmer 3 +62590 3165 charismatic charmer 4 +62591 3165 likely to seduce and conquer 3 +62592 3165 to seduce and conquer 3 +62593 3165 seduce and conquer 3 +62594 3165 seduce and 3 +62595 3165 seduce 2 +62596 3166 Marvelously entertaining and deliriously joyous documentary . 4 +62597 3166 Marvelously entertaining and deliriously 4 +62598 3166 Marvelously entertaining and 3 +62599 3166 Marvelously entertaining 4 +62600 3166 Marvelously 4 +62601 3166 deliriously 2 +62602 3166 joyous documentary . 4 +62603 3166 joyous documentary 4 +62604 3167 It 's a square , sentimental drama that satisfies , as comfort food often can . 3 +62605 3167 's a square , sentimental drama that satisfies , as comfort food often can . 3 +62606 3167 's a square , sentimental drama that satisfies , as comfort food often can 3 +62607 3167 a square , sentimental drama that satisfies , as comfort food often can 4 +62608 3167 a square , sentimental drama 2 +62609 3167 square , sentimental drama 2 +62610 3167 , sentimental drama 2 +62611 3167 sentimental drama 2 +62612 3167 that satisfies , as comfort food often can 3 +62613 3167 satisfies , as comfort food often can 3 +62614 3167 satisfies , 3 +62615 3167 satisfies 4 +62616 3167 as comfort food often can 3 +62617 3167 comfort food often can 2 +62618 3167 comfort food 3 +62619 3167 often can 2 +62620 3168 If Sinise 's character had a brain his ordeal would be over in five minutes but instead the plot goes out of its way to introduce obstacles for him to stumble over . 2 +62621 3168 If Sinise 's character had a brain his ordeal would be over in five minutes but instead the plot 1 +62622 3168 Sinise 's character had a brain his ordeal would be over in five minutes but instead the plot 2 +62623 3168 Sinise 's character 2 +62624 3168 Sinise 's 2 +62625 3168 Sinise 2 +62626 3168 had a brain his ordeal would be over in five minutes but instead the plot 1 +62627 3168 a brain his ordeal would be over in five minutes but instead the plot 2 +62628 3168 a brain 2 +62629 3168 his ordeal would be over in five minutes but instead the plot 2 +62630 3168 his ordeal 1 +62631 3168 ordeal 2 +62632 3168 would be over in five minutes but instead the plot 0 +62633 3168 be over in five minutes but instead the plot 2 +62634 3168 over in five minutes but instead the plot 2 +62635 3168 in five minutes but instead the plot 2 +62636 3168 five minutes but instead the plot 2 +62637 3168 five minutes but instead 3 +62638 3168 but instead 2 +62639 3168 goes out of its way to introduce obstacles for him to stumble over . 2 +62640 3168 goes out of its way to introduce obstacles for him to stumble over 1 +62641 3168 of its way to introduce obstacles for him to stumble over 2 +62642 3168 its way to introduce obstacles for him to stumble over 2 +62643 3168 way to introduce obstacles for him to stumble over 2 +62644 3168 to introduce obstacles for him to stumble over 2 +62645 3168 introduce obstacles for him to stumble over 2 +62646 3168 introduce obstacles for him 2 +62647 3168 obstacles for him 2 +62648 3168 for him 2 +62649 3168 to stumble over 2 +62650 3168 stumble over 2 +62651 3169 Sluggish , tonally uneven . 0 +62652 3169 Sluggish , tonally uneven 1 +62653 3169 Sluggish , 1 +62654 3169 tonally uneven 0 +62655 3169 tonally 2 +62656 3170 The film affords us intriguing glimpses of the insights gleaned from a lifetime of spiritual inquiry , but Ram Dass : Fierce Grace does n't organize it with any particular insight . 2 +62657 3170 The film affords us intriguing glimpses of the insights gleaned from a lifetime of spiritual inquiry , but Ram Dass : Fierce Grace does n't organize it with any particular insight 2 +62658 3170 The film affords us intriguing glimpses of the insights gleaned from a lifetime of spiritual inquiry , but 3 +62659 3170 The film affords us intriguing glimpses of the insights gleaned from a lifetime of spiritual inquiry , 3 +62660 3170 The film affords us intriguing glimpses of the insights gleaned from a lifetime of spiritual inquiry 2 +62661 3170 affords us intriguing glimpses of the insights gleaned from a lifetime of spiritual inquiry 3 +62662 3170 affords 2 +62663 3170 us intriguing glimpses of the insights gleaned from a lifetime of spiritual inquiry 3 +62664 3170 intriguing glimpses of the insights gleaned from a lifetime of spiritual inquiry 2 +62665 3170 intriguing glimpses 3 +62666 3170 glimpses 2 +62667 3170 of the insights gleaned from a lifetime of spiritual inquiry 2 +62668 3170 the insights gleaned from a lifetime of spiritual inquiry 3 +62669 3170 the insights 2 +62670 3170 gleaned from a lifetime of spiritual inquiry 3 +62671 3170 from a lifetime of spiritual inquiry 2 +62672 3170 a lifetime of spiritual inquiry 2 +62673 3170 a lifetime 3 +62674 3170 of spiritual inquiry 2 +62675 3170 spiritual inquiry 3 +62676 3170 Ram Dass : Fierce Grace does n't organize it with any particular insight 1 +62677 3170 Ram Dass : Fierce Grace 2 +62678 3170 Ram Dass : 2 +62679 3170 Ram Dass 2 +62680 3170 does n't organize it with any particular insight 1 +62681 3170 organize it with any particular insight 2 +62682 3170 organize it 2 +62683 3170 organize 2 +62684 3170 with any particular insight 2 +62685 3170 any particular insight 2 +62686 3170 particular insight 2 +62687 3171 The story is a rather simplistic one : grief drives her , love drives him , and a second chance to find love in the most unlikely place - it struck a chord in me . 3 +62688 3171 The story is a rather simplistic one : grief drives her , love drives him , and a second chance to find love in the most unlikely place - it struck a chord in me 3 +62689 3171 The story is a rather simplistic one : grief drives her , love drives him , and a second chance to find love in the most unlikely place - 2 +62690 3171 The story is a rather simplistic one : grief drives her , love drives him , and a second chance to find love in the most unlikely place 2 +62691 3171 is a rather simplistic one : grief drives her , love drives him , and a second chance to find love in the most unlikely place 2 +62692 3171 a rather simplistic one : grief drives her , love drives him , and a second chance to find love in the most unlikely place 3 +62693 3171 a rather simplistic one : grief drives her , love drives him , and 2 +62694 3171 a rather simplistic one : grief drives her , love drives him , 2 +62695 3171 a rather simplistic one : grief drives her , love drives him 1 +62696 3171 a rather simplistic one : grief drives her , 2 +62697 3171 a rather simplistic one : grief drives her 2 +62698 3171 a rather simplistic one : 2 +62699 3171 a rather simplistic one 2 +62700 3171 rather simplistic one 2 +62701 3171 grief drives her 1 +62702 3171 grief drives 2 +62703 3171 drives 2 +62704 3171 love drives him 2 +62705 3171 love drives 2 +62706 3171 a second chance to find love in the most unlikely place 3 +62707 3171 second chance to find love in the most unlikely place 3 +62708 3171 chance to find love in the most unlikely place 3 +62709 3171 to find love in the most unlikely place 2 +62710 3171 find love in the most unlikely place 3 +62711 3171 find love 3 +62712 3171 in the most unlikely place 2 +62713 3171 the most unlikely place 2 +62714 3171 most unlikely place 2 +62715 3171 most unlikely 2 +62716 3171 it struck a chord in me 3 +62717 3171 struck a chord in me 3 +62718 3171 struck a chord 2 +62719 3171 a chord 2 +62720 3171 in me 3 +62721 3172 A bit of a downer and a little over-dramatic at times , but this is a beautiful film for people who like their romances to have that French realism . 3 +62722 3172 A bit of a downer and a little over-dramatic at times , but this is a beautiful film for people who like their romances to have that French realism 3 +62723 3172 A bit of a downer and a little over-dramatic at times , but 1 +62724 3172 A bit of a downer and a little over-dramatic at times , 1 +62725 3172 A bit of a downer and a little over-dramatic at times 1 +62726 3172 A bit of a downer and a little 1 +62727 3172 of a downer and a little 2 +62728 3172 a downer and a little 1 +62729 3172 a downer and 1 +62730 3172 a downer 2 +62731 3172 downer 0 +62732 3172 over-dramatic at times 1 +62733 3172 over-dramatic 1 +62734 3172 this is a beautiful film for people who like their romances to have that French realism 3 +62735 3172 is a beautiful film for people who like their romances to have that French realism 4 +62736 3172 a beautiful film for people who like their romances to have that French realism 4 +62737 3172 for people who like their romances to have that French realism 3 +62738 3172 people who like their romances to have that French realism 3 +62739 3172 who like their romances to have that French realism 2 +62740 3172 like their romances to have that French realism 3 +62741 3172 like their romances 2 +62742 3172 their romances 3 +62743 3172 to have that French realism 2 +62744 3172 have that French realism 2 +62745 3172 that French realism 2 +62746 3172 French realism 2 +62747 3173 A big meal of cliches that the talented cast generally chokes on . 1 +62748 3173 A big meal of cliches that the talented cast generally 2 +62749 3173 A big meal 2 +62750 3173 big meal 2 +62751 3173 meal 3 +62752 3173 of cliches that the talented cast generally 1 +62753 3173 cliches that the talented cast generally 2 +62754 3173 that the talented cast generally 3 +62755 3173 the talented cast generally 3 +62756 3173 the talented 3 +62757 3173 cast generally 2 +62758 3173 chokes on . 1 +62759 3173 chokes on 2 +62760 3174 entertaining enough , but nothing new 1 +62761 3174 enough , but nothing new 1 +62762 3174 enough , but 2 +62763 3174 enough , 2 +62764 3174 nothing new 0 +62765 3175 Beautifully shot , delicately scored and powered by a set of heartfelt performances , it 's a lyrical endeavour . 4 +62766 3175 Beautifully shot , delicately scored and powered by a set of heartfelt performances 4 +62767 3175 Beautifully shot , delicately 4 +62768 3175 scored and powered by a set of heartfelt performances 3 +62769 3175 scored and powered 3 +62770 3175 scored and 2 +62771 3175 scored 2 +62772 3175 powered 2 +62773 3175 by a set of heartfelt performances 3 +62774 3175 a set of heartfelt performances 3 +62775 3175 a set 2 +62776 3175 of heartfelt performances 3 +62777 3175 heartfelt performances 3 +62778 3175 , it 's a lyrical endeavour . 4 +62779 3175 it 's a lyrical endeavour . 3 +62780 3175 's a lyrical endeavour . 3 +62781 3175 's a lyrical endeavour 2 +62782 3175 a lyrical endeavour 2 +62783 3175 lyrical endeavour 2 +62784 3176 Hartley adds enough quirky and satirical touches in the screenplay to keep the film entertaining . 4 +62785 3176 adds enough quirky and satirical touches in the screenplay to keep the film entertaining . 3 +62786 3176 adds enough quirky and satirical touches in the screenplay to keep the film entertaining 3 +62787 3176 adds enough quirky and satirical touches 3 +62788 3176 enough quirky and satirical touches 3 +62789 3176 quirky and satirical touches 3 +62790 3176 and satirical touches 3 +62791 3176 satirical touches 3 +62792 3176 satirical 2 +62793 3176 in the screenplay to keep the film entertaining 3 +62794 3176 the screenplay to keep the film entertaining 3 +62795 3176 screenplay to keep the film entertaining 3 +62796 3176 to keep the film entertaining 3 +62797 3176 keep the film entertaining 3 +62798 3176 the film entertaining 2 +62799 3177 Something for everyone . 3 +62800 3177 Something for everyone 4 +62801 3178 The problem is that for the most part , the film is deadly dull . 0 +62802 3178 is that for the most part , the film is deadly dull . 0 +62803 3178 is that for the most part , the film is deadly dull 0 +62804 3178 that for the most part , the film is deadly dull 0 +62805 3178 for the most part , the film is deadly dull 0 +62806 3178 , the film is deadly dull 0 +62807 3178 the film is deadly dull 0 +62808 3178 is deadly dull 0 +62809 3179 A fine , rousing , G-rated family film , aimed mainly at little kids but with plenty of entertainment value to keep grown-ups from squirming in their seats . 4 +62810 3179 A fine , rousing , G-rated family film , 3 +62811 3179 A fine , rousing , G-rated family film 3 +62812 3179 A fine , 3 +62813 3179 A fine 2 +62814 3179 rousing , G-rated family film 3 +62815 3179 rousing , 3 +62816 3179 rousing 3 +62817 3179 G-rated family film 2 +62818 3179 G-rated 2 +62819 3179 aimed mainly at little kids but with plenty of entertainment value to keep grown-ups from squirming in their seats . 4 +62820 3179 aimed mainly at little kids but with plenty of entertainment value to keep grown-ups from squirming in their seats 3 +62821 3179 aimed mainly at little kids but with plenty of entertainment value 3 +62822 3179 aimed mainly 2 +62823 3179 at little kids but with plenty of entertainment value 3 +62824 3179 at little kids but 2 +62825 3179 at little kids 2 +62826 3179 little kids 2 +62827 3179 with plenty of entertainment value 4 +62828 3179 plenty of entertainment value 4 +62829 3179 of entertainment value 2 +62830 3179 to keep grown-ups from squirming in their seats 3 +62831 3179 keep grown-ups from squirming in their seats 3 +62832 3179 keep grown-ups 2 +62833 3179 from squirming in their seats 1 +62834 3179 squirming in their seats 3 +62835 3179 squirming 1 +62836 3179 in their seats 2 +62837 3179 their seats 3 +62838 3180 Fifty years after the fact , the world 's political situation seems little different , and -LRB- director Phillip -RRB- Noyce brings out the allegory with remarkable skill . 4 +62839 3180 Fifty years after the fact 2 +62840 3180 Fifty years 2 +62841 3180 after the fact 2 +62842 3180 , the world 's political situation seems little different , and -LRB- director Phillip -RRB- Noyce brings out the allegory with remarkable skill . 4 +62843 3180 the world 's political situation seems little different , and -LRB- director Phillip -RRB- Noyce brings out the allegory with remarkable skill . 4 +62844 3180 the world 's political situation seems little different , and -LRB- director Phillip -RRB- Noyce brings out the allegory with remarkable skill 4 +62845 3180 the world 's political situation seems little different , and -LRB- director Phillip -RRB- 2 +62846 3180 the world 's political situation seems little different , and 2 +62847 3180 the world 's political situation seems little different , 2 +62848 3180 the world 's political situation seems little different 2 +62849 3180 the world 's political situation 1 +62850 3180 political situation 2 +62851 3180 seems little different 1 +62852 3180 little different 2 +62853 3180 -LRB- director Phillip -RRB- 2 +62854 3180 director Phillip -RRB- 2 +62855 3180 director Phillip 2 +62856 3180 Noyce brings out the allegory with remarkable skill 4 +62857 3180 brings out the allegory with remarkable skill 4 +62858 3180 brings out 2 +62859 3180 the allegory with remarkable skill 4 +62860 3180 the allegory 2 +62861 3180 with remarkable skill 4 +62862 3180 remarkable skill 3 +62863 3181 Australian filmmaker David Flatman uses the huge-screen format to make an old-fashioned nature film that educates viewers with words and pictures while entertaining them . 4 +62864 3181 Australian filmmaker David Flatman 2 +62865 3181 filmmaker David Flatman 2 +62866 3181 David Flatman 2 +62867 3181 Flatman 2 +62868 3181 uses the huge-screen format to make an old-fashioned nature film that educates viewers with words and pictures while entertaining them . 4 +62869 3181 uses the huge-screen format to make an old-fashioned nature film that educates viewers with words and pictures while entertaining them 3 +62870 3181 the huge-screen format to make an old-fashioned nature film that educates viewers with words and pictures while entertaining them 3 +62871 3181 huge-screen format to make an old-fashioned nature film that educates viewers with words and pictures while entertaining them 3 +62872 3181 huge-screen 3 +62873 3181 format to make an old-fashioned nature film that educates viewers with words and pictures while entertaining them 3 +62874 3181 to make an old-fashioned nature film that educates viewers with words and pictures while entertaining them 3 +62875 3181 make an old-fashioned nature film that educates viewers with words and pictures while entertaining them 3 +62876 3181 an old-fashioned nature film that educates viewers with words and pictures while entertaining them 4 +62877 3181 an old-fashioned nature film 2 +62878 3181 old-fashioned nature film 2 +62879 3181 nature film 2 +62880 3181 that educates viewers with words and pictures while entertaining them 3 +62881 3181 educates viewers with words and pictures while entertaining them 4 +62882 3181 educates viewers with words and pictures 3 +62883 3181 educates viewers 3 +62884 3181 educates 3 +62885 3181 with words and pictures 2 +62886 3181 words and pictures 2 +62887 3181 words and 3 +62888 3181 while entertaining them 2 +62889 3181 entertaining them 2 +62890 3182 Thoroughly engrossing and ultimately tragic . 1 +62891 3182 Thoroughly engrossing and ultimately tragic 2 +62892 3182 Thoroughly engrossing and 3 +62893 3182 Thoroughly engrossing 4 +62894 3182 ultimately tragic 1 +62895 3183 ... a spoof comedy that carries its share of laughs -- sometimes a chuckle , sometimes a guffaw and , to my great pleasure , the occasional belly laugh . 4 +62896 3183 a spoof comedy that carries its share of laughs -- sometimes a chuckle , sometimes a guffaw and , to my great pleasure , the occasional belly laugh . 3 +62897 3183 a spoof comedy that carries its share of laughs -- sometimes a chuckle , sometimes a guffaw and , to my great pleasure , the occasional belly laugh 4 +62898 3183 a spoof comedy 3 +62899 3183 spoof comedy 2 +62900 3183 that carries its share of laughs -- sometimes a chuckle , sometimes a guffaw and , to my great pleasure , the occasional belly laugh 3 +62901 3183 carries its share of laughs -- sometimes a chuckle , sometimes a guffaw and , to my great pleasure , the occasional belly laugh 3 +62902 3183 its share of laughs -- sometimes a chuckle , sometimes a guffaw and , to my great pleasure , the occasional belly laugh 3 +62903 3183 of laughs -- sometimes a chuckle , sometimes a guffaw and , to my great pleasure , the occasional belly laugh 3 +62904 3183 laughs -- sometimes a chuckle , sometimes a guffaw and , to my great pleasure , the occasional belly laugh 3 +62905 3183 laughs -- sometimes a chuckle , sometimes a guffaw and , to my great pleasure , 4 +62906 3183 laughs -- sometimes a chuckle , sometimes a guffaw and 3 +62907 3183 laughs -- sometimes a chuckle , sometimes a guffaw 2 +62908 3183 laughs -- sometimes a chuckle , 2 +62909 3183 laughs -- sometimes a chuckle 3 +62910 3183 laughs -- 3 +62911 3183 sometimes a chuckle 3 +62912 3183 a chuckle 3 +62913 3183 chuckle 3 +62914 3183 sometimes a guffaw 2 +62915 3183 a guffaw 2 +62916 3183 guffaw 2 +62917 3183 , to my great pleasure , 3 +62918 3183 to my great pleasure , 3 +62919 3183 to my great pleasure 4 +62920 3183 my great pleasure 3 +62921 3183 great pleasure 4 +62922 3183 the occasional belly laugh 3 +62923 3183 occasional belly laugh 3 +62924 3183 belly laugh 3 +62925 3184 Has all the complexity and realistic human behavior of an episode of General Hospital . 1 +62926 3184 Has all the complexity and realistic human behavior of an episode of General Hospital 1 +62927 3184 all the complexity and realistic human behavior of an episode of General Hospital 1 +62928 3184 all the complexity and 3 +62929 3184 all the complexity 2 +62930 3184 realistic human behavior of an episode of General Hospital 3 +62931 3184 realistic human behavior 2 +62932 3184 human behavior 2 +62933 3184 of an episode of General Hospital 2 +62934 3184 an episode of General Hospital 2 +62935 3184 of General Hospital 2 +62936 3184 General Hospital 2 +62937 3184 Hospital 2 +62938 3185 Eight Legged Freaks is clever and funny , is amused by its special effects , and leaves you feeling like you 've seen a movie instead of an endless trailer . 3 +62939 3185 is clever and funny , is amused by its special effects , and leaves you feeling like you 've seen a movie instead of an endless trailer . 3 +62940 3185 is clever and funny , is amused by its special effects , and leaves you feeling like you 've seen a movie instead of an endless trailer 3 +62941 3185 is clever and funny , is amused by its special effects , and 4 +62942 3185 is clever and funny , is amused by its special effects , 3 +62943 3185 is clever and funny , is amused by its special effects 3 +62944 3185 is clever and funny , 4 +62945 3185 is clever and funny 4 +62946 3185 clever and funny 3 +62947 3185 is amused by its special effects 3 +62948 3185 amused by its special effects 3 +62949 3185 by its special effects 2 +62950 3185 its special effects 2 +62951 3185 leaves you feeling like you 've seen a movie instead of an endless trailer 2 +62952 3185 you feeling like you 've seen a movie instead of an endless trailer 3 +62953 3185 feeling like you 've seen a movie instead of an endless trailer 3 +62954 3185 like you 've seen a movie instead of an endless trailer 3 +62955 3185 you 've seen a movie instead of an endless trailer 3 +62956 3185 've seen a movie instead of an endless trailer 3 +62957 3185 seen a movie instead of an endless trailer 2 +62958 3185 a movie instead of an endless trailer 1 +62959 3185 instead of an endless trailer 2 +62960 3185 of an endless trailer 2 +62961 3185 an endless trailer 1 +62962 3185 endless trailer 1 +62963 3185 trailer 2 +62964 3186 Sitting through the last reel -LRB- spoiler alert ! -RRB- 2 +62965 3186 Sitting through the last reel 2 +62966 3186 through the last reel 2 +62967 3186 the last reel 2 +62968 3186 last reel 2 +62969 3186 -LRB- spoiler alert ! -RRB- 2 +62970 3186 spoiler alert ! -RRB- 1 +62971 3186 spoiler 2 +62972 3186 alert ! -RRB- 2 +62973 3186 alert ! 2 +62974 3187 A small gem from Belgium . 4 +62975 3187 A small gem from Belgium 3 +62976 3188 Hugh Grant , who has a good line in charm , has never been more charming than in About a Boy . 4 +62977 3188 Hugh Grant , who has a good line in charm , 3 +62978 3188 Hugh Grant , who has a good line in charm 4 +62979 3188 Hugh Grant , 2 +62980 3188 who has a good line in charm 2 +62981 3188 has a good line in charm 3 +62982 3188 a good line in charm 3 +62983 3188 a good line 3 +62984 3188 good line 3 +62985 3188 in charm 3 +62986 3188 has never been more charming than in About a Boy . 3 +62987 3188 has never been more charming than in About a Boy 4 +62988 3188 been more charming than in About a Boy 3 +62989 3188 more charming than in About a Boy 3 +62990 3188 charming than in About a Boy 3 +62991 3188 than in About a Boy 2 +62992 3188 in About a Boy 2 +62993 3189 In addition to sporting one of the worst titles in recent cinematic history , Ballistic : Ecks Vs. Sever also features terrible , banal dialogue ; convenient , hole-ridden plotting ; superficial characters and a rather dull , unimaginative car chase . 0 +62994 3189 In addition to sporting one of the worst titles in recent cinematic history 0 +62995 3189 addition to sporting one of the worst titles in recent cinematic history 0 +62996 3189 to sporting one of the worst titles in recent cinematic history 0 +62997 3189 sporting one of the worst titles in recent cinematic history 1 +62998 3189 sporting 2 +62999 3189 one of the worst titles in recent cinematic history 0 +63000 3189 of the worst titles in recent cinematic history 0 +63001 3189 the worst titles in recent cinematic history 0 +63002 3189 the worst titles 0 +63003 3189 worst titles 0 +63004 3189 titles 2 +63005 3189 in recent cinematic history 2 +63006 3189 recent cinematic history 2 +63007 3189 cinematic history 2 +63008 3189 , Ballistic : Ecks Vs. Sever also features terrible , banal dialogue ; convenient , hole-ridden plotting ; superficial characters and a rather dull , unimaginative car chase . 0 +63009 3189 Ballistic : Ecks Vs. Sever also features terrible , banal dialogue ; convenient , hole-ridden plotting ; superficial characters and a rather dull , unimaginative car chase . 0 +63010 3189 Ballistic : Ecks Vs. Sever 2 +63011 3189 Ballistic : 3 +63012 3189 Ballistic 2 +63013 3189 Ecks Vs. Sever 2 +63014 3189 Ecks 2 +63015 3189 Vs. Sever 2 +63016 3189 Sever 2 +63017 3189 also features terrible , banal dialogue ; convenient , hole-ridden plotting ; superficial characters and a rather dull , unimaginative car chase . 0 +63018 3189 features terrible , banal dialogue ; convenient , hole-ridden plotting ; superficial characters and a rather dull , unimaginative car chase . 0 +63019 3189 features terrible , banal dialogue ; convenient , hole-ridden plotting ; superficial characters and a rather dull , unimaginative car chase 0 +63020 3189 terrible , banal dialogue ; convenient , hole-ridden plotting ; superficial characters and a rather dull , unimaginative car chase 0 +63021 3189 terrible , banal dialogue ; convenient , hole-ridden plotting ; superficial characters and 0 +63022 3189 terrible , banal dialogue ; convenient , hole-ridden plotting ; superficial characters 0 +63023 3189 terrible , banal dialogue ; convenient , hole-ridden plotting ; 0 +63024 3189 terrible , banal dialogue ; convenient , hole-ridden plotting 0 +63025 3189 terrible , banal dialogue ; 0 +63026 3189 terrible , banal dialogue 1 +63027 3189 , banal dialogue 2 +63028 3189 convenient , hole-ridden plotting 2 +63029 3189 , hole-ridden plotting 0 +63030 3189 hole-ridden plotting 1 +63031 3189 hole-ridden 1 +63032 3189 superficial characters 1 +63033 3189 a rather dull , unimaginative car chase 1 +63034 3189 rather dull , unimaginative car chase 0 +63035 3189 rather dull , unimaginative 0 +63036 3189 dull , unimaginative 0 +63037 3189 car chase 3 +63038 3190 For proof of that on the cinematic front , look no further than this 20th anniversary edition of the film that Spielberg calls , retrospectively , his most personal work yet . 3 +63039 3190 For proof of that on the cinematic front , look no further than this 20th anniversary edition of the film that Spielberg calls 3 +63040 3190 proof of that on the cinematic front , look no further than this 20th anniversary edition of the film that Spielberg calls 3 +63041 3190 of that on the cinematic front , look no further than this 20th anniversary edition of the film that Spielberg calls 3 +63042 3190 that on the cinematic front , look no further than this 20th anniversary edition of the film that Spielberg calls 3 +63043 3190 on the cinematic front , look no further than this 20th anniversary edition of the film that Spielberg calls 3 +63044 3190 on the cinematic front 3 +63045 3190 the cinematic front 2 +63046 3190 cinematic front 2 +63047 3190 , look no further than this 20th anniversary edition of the film that Spielberg calls 3 +63048 3190 look no further than this 20th anniversary edition of the film that Spielberg calls 2 +63049 3190 look no further than this 20th anniversary edition of the film 2 +63050 3190 look no further 3 +63051 3190 no further 2 +63052 3190 than this 20th anniversary edition of the film 2 +63053 3190 this 20th anniversary edition of the film 3 +63054 3190 this 20th anniversary edition 2 +63055 3190 20th anniversary edition 3 +63056 3190 anniversary edition 2 +63057 3190 anniversary 2 +63058 3190 that Spielberg calls 2 +63059 3190 Spielberg calls 2 +63060 3190 , retrospectively , his most personal work yet . 3 +63061 3190 retrospectively , his most personal work yet . 3 +63062 3190 retrospectively 2 +63063 3190 , his most personal work yet . 3 +63064 3190 his most personal work yet . 3 +63065 3190 his most personal 3 +63066 3190 most personal 3 +63067 3190 work yet . 2 +63068 3190 work yet 2 +63069 3191 Carrying this wafer-thin movie on his nimble shoulders , Chan wades through putrid writing , direction and timing with a smile that says , ` If I stay positive , maybe I can channel one of my greatest pictures , Drunken Master . ' 1 +63070 3191 Carrying this wafer-thin movie on his nimble shoulders 1 +63071 3191 Carrying this wafer-thin movie 1 +63072 3191 this wafer-thin movie 1 +63073 3191 wafer-thin movie 1 +63074 3191 wafer-thin 1 +63075 3191 on his nimble shoulders 2 +63076 3191 his nimble shoulders 2 +63077 3191 nimble shoulders 3 +63078 3191 nimble 2 +63079 3191 , Chan wades through putrid writing , direction and timing with a smile that says , ` If I stay positive , maybe I can channel one of my greatest pictures , Drunken Master . ' 2 +63080 3191 Chan wades through putrid writing , direction and timing with a smile that says , ` If I stay positive , maybe I can channel one of my greatest pictures , Drunken Master . ' 1 +63081 3191 Chan wades 2 +63082 3191 wades 2 +63083 3191 through putrid writing , direction and timing with a smile that says , ` If I stay positive , maybe I can channel one of my greatest pictures , Drunken Master . ' 1 +63084 3191 putrid writing , direction and timing with a smile that says , ` If I stay positive , maybe I can channel one of my greatest pictures , Drunken Master . ' 1 +63085 3191 putrid writing , direction and timing with a smile that says , ` If I stay positive , maybe I can channel one of my greatest pictures , Drunken Master . 1 +63086 3191 putrid writing , direction and timing with a smile that says , ` If I stay positive , maybe I can channel one of my greatest pictures , Drunken Master 0 +63087 3191 putrid writing , direction and timing 0 +63088 3191 writing , direction and timing 2 +63089 3191 , direction and timing 2 +63090 3191 direction and timing 2 +63091 3191 with a smile that says , ` If I stay positive , maybe I can channel one of my greatest pictures , Drunken Master 3 +63092 3191 a smile that says , ` If I stay positive , maybe I can channel one of my greatest pictures , Drunken Master 2 +63093 3191 that says , ` If I stay positive , maybe I can channel one of my greatest pictures , Drunken Master 2 +63094 3191 says , ` If I stay positive , maybe I can channel one of my greatest pictures , Drunken Master 2 +63095 3191 says , ` 2 +63096 3191 says , 2 +63097 3191 If I stay positive , maybe I can channel one of my greatest pictures , Drunken Master 3 +63098 3191 If I stay positive 3 +63099 3191 I stay positive 3 +63100 3191 stay positive 3 +63101 3191 , maybe I can channel one of my greatest pictures , Drunken Master 3 +63102 3191 maybe I can channel one of my greatest pictures , Drunken Master 2 +63103 3191 I can channel one of my greatest pictures , Drunken Master 3 +63104 3191 can channel one of my greatest pictures , Drunken Master 2 +63105 3191 channel one of my greatest pictures , Drunken Master 2 +63106 3191 one of my greatest pictures , Drunken Master 3 +63107 3191 of my greatest pictures , Drunken Master 3 +63108 3191 my greatest pictures , Drunken Master 4 +63109 3191 my greatest pictures , 4 +63110 3191 my greatest pictures 3 +63111 3191 greatest pictures 3 +63112 3191 Drunken Master 2 +63113 3191 Drunken 2 +63114 3192 Skins has a desolate air , but Eyre , a Native American raised by white parents , manages to infuse the rocky path to sibling reconciliation with flashes of warmth and gentle humor . 3 +63115 3192 Skins has a desolate air , but Eyre , a Native American raised by white parents , manages to infuse the rocky path to sibling reconciliation with flashes of warmth and gentle humor 4 +63116 3192 Skins has a desolate air , but 2 +63117 3192 Skins has a desolate air , 2 +63118 3192 Skins has a desolate air 1 +63119 3192 Skins 2 +63120 3192 has a desolate air 2 +63121 3192 a desolate air 2 +63122 3192 desolate air 2 +63123 3192 desolate 1 +63124 3192 Eyre , a Native American raised by white parents , manages to infuse the rocky path to sibling reconciliation with flashes of warmth and gentle humor 3 +63125 3192 Eyre , a Native American raised by white parents , 2 +63126 3192 Eyre , a Native American raised by white parents 2 +63127 3192 Eyre , 2 +63128 3192 a Native American raised by white parents 2 +63129 3192 a Native American 3 +63130 3192 Native American 2 +63131 3192 Native 2 +63132 3192 raised by white parents 2 +63133 3192 by white parents 2 +63134 3192 white parents 2 +63135 3192 manages to infuse the rocky path to sibling reconciliation with flashes of warmth and gentle humor 3 +63136 3192 to infuse the rocky path to sibling reconciliation with flashes of warmth and gentle humor 3 +63137 3192 infuse the rocky path to sibling reconciliation with flashes of warmth and gentle humor 4 +63138 3192 infuse the rocky path 2 +63139 3192 infuse 2 +63140 3192 the rocky path 2 +63141 3192 rocky path 2 +63142 3192 to sibling reconciliation with flashes of warmth and gentle humor 3 +63143 3192 sibling reconciliation with flashes of warmth and gentle humor 3 +63144 3192 sibling reconciliation 2 +63145 3192 reconciliation 2 +63146 3192 with flashes of warmth and gentle humor 3 +63147 3192 flashes of warmth and gentle humor 3 +63148 3192 flashes 2 +63149 3192 of warmth and gentle humor 4 +63150 3192 warmth and gentle humor 3 +63151 3192 warmth and gentle 3 +63152 3193 The bland outweighs the nifty , and Cletis Tout never becomes the clever crime comedy it thinks it is . 2 +63153 3193 The bland outweighs the nifty , and Cletis Tout never becomes the clever crime comedy it thinks it is 0 +63154 3193 The bland outweighs the nifty , and 1 +63155 3193 The bland outweighs the nifty , 1 +63156 3193 The bland outweighs the nifty 3 +63157 3193 The bland 1 +63158 3193 outweighs the nifty 2 +63159 3193 the nifty 3 +63160 3193 Cletis Tout never becomes the clever crime comedy it thinks it is 1 +63161 3193 never becomes the clever crime comedy it thinks it is 1 +63162 3193 becomes the clever crime comedy it thinks it is 3 +63163 3193 the clever crime comedy it thinks it is 2 +63164 3193 the clever crime comedy 4 +63165 3193 clever crime comedy 4 +63166 3194 While Hoffman 's performance is great , the subject matter goes nowhere . 2 +63167 3194 While Hoffman 's performance is great 3 +63168 3194 Hoffman 's performance is great 4 +63169 3194 Hoffman 's performance 2 +63170 3194 Hoffman 's 2 +63171 3194 Hoffman 2 +63172 3194 is great 4 +63173 3194 , the subject matter goes nowhere . 1 +63174 3194 the subject matter goes nowhere . 1 +63175 3194 goes nowhere . 1 +63176 3195 It 's impossible to indulge the fanciful daydreams of Janice Beard -LRB- Eileen Walsh -RRB- when her real-life persona is so charmless and vacant . 1 +63177 3195 's impossible to indulge the fanciful daydreams of Janice Beard -LRB- Eileen Walsh -RRB- when her real-life persona is so charmless and vacant . 2 +63178 3195 's impossible to indulge the fanciful daydreams of Janice Beard -LRB- Eileen Walsh -RRB- when her real-life persona is so charmless and vacant 2 +63179 3195 impossible to indulge the fanciful daydreams of Janice Beard -LRB- Eileen Walsh -RRB- when her real-life persona is so charmless and vacant 1 +63180 3195 to indulge the fanciful daydreams of Janice Beard -LRB- Eileen Walsh -RRB- when her real-life persona is so charmless and vacant 1 +63181 3195 indulge the fanciful daydreams of Janice Beard -LRB- Eileen Walsh -RRB- when her real-life persona is so charmless and vacant 1 +63182 3195 indulge 2 +63183 3195 the fanciful daydreams of Janice Beard -LRB- Eileen Walsh -RRB- when her real-life persona is so charmless and vacant 2 +63184 3195 the fanciful daydreams 2 +63185 3195 fanciful daydreams 2 +63186 3195 of Janice Beard -LRB- Eileen Walsh -RRB- when her real-life persona is so charmless and vacant 1 +63187 3195 Janice Beard -LRB- Eileen Walsh -RRB- when her real-life persona is so charmless and vacant 2 +63188 3195 Janice Beard -LRB- Eileen Walsh -RRB- 2 +63189 3195 -LRB- Eileen Walsh -RRB- 2 +63190 3195 Eileen Walsh -RRB- 2 +63191 3195 Eileen Walsh 2 +63192 3195 Eileen 2 +63193 3195 Walsh 2 +63194 3195 when her real-life persona is so charmless and vacant 1 +63195 3195 her real-life persona is so charmless and vacant 0 +63196 3195 her real-life persona 2 +63197 3195 real-life persona 3 +63198 3195 is so charmless and vacant 1 +63199 3195 so charmless and vacant 1 +63200 3195 charmless and vacant 1 +63201 3195 charmless and 1 +63202 3195 charmless 1 +63203 3195 vacant 1 +63204 3196 Otto-Sallies has a real filmmaker 's eye . 3 +63205 3196 Otto-Sallies 2 +63206 3196 has a real filmmaker 's eye . 3 +63207 3196 has a real filmmaker 's eye 3 +63208 3196 a real filmmaker 's eye 3 +63209 3196 a real filmmaker 's 2 +63210 3196 real filmmaker 's 3 +63211 3197 An incredibly thoughtful , deeply meditative picture that neatly and effectively captures the debilitating grief felt in the immediate aftermath of the terrorist attacks . 3 +63212 3197 An incredibly thoughtful , deeply meditative picture that neatly and effectively captures the debilitating grief 3 +63213 3197 An incredibly thoughtful , deeply meditative picture 4 +63214 3197 incredibly thoughtful , deeply meditative picture 4 +63215 3197 incredibly thoughtful 4 +63216 3197 , deeply meditative picture 2 +63217 3197 deeply meditative picture 4 +63218 3197 deeply meditative 3 +63219 3197 that neatly and effectively captures the debilitating grief 3 +63220 3197 neatly and effectively captures the debilitating grief 3 +63221 3197 neatly and effectively 3 +63222 3197 neatly and 2 +63223 3197 effectively 2 +63224 3197 captures the debilitating grief 3 +63225 3197 the debilitating grief 2 +63226 3197 debilitating grief 2 +63227 3197 debilitating 1 +63228 3197 felt in the immediate aftermath of the terrorist attacks . 2 +63229 3197 felt in the immediate aftermath of the terrorist attacks 2 +63230 3197 in the immediate aftermath of the terrorist attacks 3 +63231 3197 the immediate aftermath of the terrorist attacks 1 +63232 3197 the immediate aftermath 3 +63233 3197 immediate aftermath 2 +63234 3197 aftermath 2 +63235 3197 of the terrorist attacks 2 +63236 3197 the terrorist attacks 2 +63237 3198 A jaw-droppingly beautiful work 4 +63238 3198 jaw-droppingly beautiful work 4 +63239 3198 jaw-droppingly 2 +63240 3198 beautiful work 3 +63241 3198 upends 2 +63242 3198 of Japanese animation 2 +63243 3198 Japanese animation 2 +63244 3198 while delivering a more than satisfactory amount of carnage 3 +63245 3198 delivering a more than satisfactory amount of carnage 3 +63246 3198 a more than satisfactory amount of carnage 3 +63247 3198 a more than satisfactory amount 2 +63248 3198 more than satisfactory amount 2 +63249 3198 more than satisfactory 3 +63250 3198 than satisfactory 2 +63251 3198 satisfactory 2 +63252 3198 of carnage 1 +63253 3198 carnage 2 +63254 3199 A supernatural mystery that does n't know whether it wants to be a suspenseful horror movie or a weepy melodrama . 1 +63255 3199 A supernatural mystery that does n't 2 +63256 3199 A supernatural mystery 2 +63257 3199 supernatural mystery 2 +63258 3199 that does n't 2 +63259 3199 know whether it wants to be a suspenseful horror movie or a weepy melodrama . 1 +63260 3199 know whether it wants to be a suspenseful horror movie or a weepy melodrama 1 +63261 3199 whether it wants to be a suspenseful horror movie or a weepy melodrama 2 +63262 3199 it wants to be a suspenseful horror movie or a weepy melodrama 2 +63263 3199 wants to be a suspenseful horror movie or a weepy melodrama 1 +63264 3199 to be a suspenseful horror movie or a weepy melodrama 3 +63265 3199 be a suspenseful horror movie or a weepy melodrama 2 +63266 3199 a suspenseful horror movie or a weepy melodrama 2 +63267 3199 a suspenseful horror movie or 2 +63268 3199 a suspenseful horror movie 3 +63269 3199 suspenseful horror movie 3 +63270 3199 a weepy melodrama 1 +63271 3199 weepy melodrama 1 +63272 3199 weepy 1 +63273 3200 There 's no denying that Burns is a filmmaker with a bright future ahead of him . 4 +63274 3200 's no denying that Burns is a filmmaker with a bright future ahead of him . 3 +63275 3200 's no denying that Burns is a filmmaker with a bright future ahead of him 4 +63276 3200 no denying that Burns is a filmmaker with a bright future ahead of him 4 +63277 3200 denying that Burns is a filmmaker with a bright future ahead of him 3 +63278 3200 that Burns is a filmmaker with a bright future ahead of him 3 +63279 3200 Burns is a filmmaker with a bright future ahead of him 4 +63280 3200 is a filmmaker with a bright future ahead of him 4 +63281 3200 a filmmaker with a bright future ahead of him 3 +63282 3200 with a bright future ahead of him 3 +63283 3200 a bright future ahead of him 3 +63284 3200 a bright future 4 +63285 3200 bright future 3 +63286 3200 bright 3 +63287 3201 A movie version of a paint-by-numbers picture . 0 +63288 3201 A movie version of a paint-by-numbers picture 0 +63289 3201 A movie version 2 +63290 3201 movie version 3 +63291 3201 of a paint-by-numbers picture 1 +63292 3201 a paint-by-numbers picture 1 +63293 3201 paint-by-numbers picture 1 +63294 3201 paint-by-numbers 1 +63295 3202 An effortlessly accomplished and richly resonant work . 4 +63296 3202 An effortlessly 2 +63297 3202 accomplished and richly resonant work . 4 +63298 3202 accomplished and richly resonant work 4 +63299 3202 accomplished and 3 +63300 3202 richly resonant work 3 +63301 3202 resonant work 2 +63302 3203 This is a movie you can trust . 4 +63303 3203 is a movie you can trust . 3 +63304 3203 is a movie you can trust 3 +63305 3203 a movie you can trust 3 +63306 3203 you can trust 2 +63307 3203 can trust 3 +63308 3204 Trapped wo n't score points for political correctness , but it may cause parents a few sleepless hours -- a sign of its effectiveness . 3 +63309 3204 Trapped wo n't score points for political correctness , but it may cause parents a few sleepless hours -- a sign of its effectiveness 2 +63310 3204 Trapped wo n't score points for political correctness , but 2 +63311 3204 Trapped wo n't score points for political correctness , 1 +63312 3204 Trapped wo n't score points for political correctness 1 +63313 3204 Trapped 1 +63314 3204 wo n't score points for political correctness 1 +63315 3204 score points for political correctness 3 +63316 3204 points for political correctness 2 +63317 3204 for political correctness 2 +63318 3204 it may cause parents a few sleepless hours -- a sign of its effectiveness 4 +63319 3204 may cause parents a few sleepless hours -- a sign of its effectiveness 4 +63320 3204 cause parents a few sleepless hours -- a sign of its effectiveness 2 +63321 3204 cause parents a few sleepless hours -- 1 +63322 3204 cause parents a few sleepless hours 1 +63323 3204 cause parents 2 +63324 3204 a few sleepless hours 2 +63325 3204 few sleepless hours 1 +63326 3204 sleepless hours 2 +63327 3204 a sign of its effectiveness 2 +63328 3204 a sign 2 +63329 3204 of its effectiveness 2 +63330 3204 its effectiveness 3 +63331 3205 ` Blue Crush ' swims away with the Sleeper Movie of the Summer award . 3 +63332 3205 Blue Crush ' swims away with the Sleeper Movie of the Summer award . 2 +63333 3205 ' swims away with the Sleeper Movie of the Summer award . 3 +63334 3205 swims away with the Sleeper Movie of the Summer award . 2 +63335 3205 swims away with the Sleeper Movie of the Summer award 1 +63336 3205 swims away 2 +63337 3205 with the Sleeper Movie of the Summer award 2 +63338 3205 the Sleeper Movie of the Summer award 2 +63339 3205 the Sleeper Movie 2 +63340 3205 Sleeper Movie 2 +63341 3205 of the Summer award 2 +63342 3205 the Summer award 2 +63343 3205 Summer award 2 +63344 3206 -LRB- `` Safe Conduct '' -RRB- is a long movie at 163 minutes but it fills the time with drama , romance , tragedy , bravery , political intrigue , partisans and sabotage . 3 +63345 3206 -LRB- `` Safe Conduct '' -RRB- is a long movie at 163 minutes but it fills the time with drama , romance , tragedy , bravery , political intrigue , partisans and sabotage 3 +63346 3206 -LRB- `` Safe Conduct '' -RRB- is a long movie at 163 minutes but 3 +63347 3206 -LRB- `` Safe Conduct '' -RRB- is a long movie at 163 minutes 1 +63348 3206 -LRB- `` Safe Conduct '' -RRB- 2 +63349 3206 `` Safe Conduct '' -RRB- 2 +63350 3206 Safe Conduct '' -RRB- 2 +63351 3206 Safe Conduct '' 2 +63352 3206 Safe Conduct 2 +63353 3206 is a long movie at 163 minutes 2 +63354 3206 a long movie at 163 minutes 2 +63355 3206 a long movie 2 +63356 3206 long movie 2 +63357 3206 at 163 minutes 2 +63358 3206 163 minutes 2 +63359 3206 163 2 +63360 3206 it fills the time with drama , romance , tragedy , bravery , political intrigue , partisans and sabotage 2 +63361 3206 fills the time with drama , romance , tragedy , bravery , political intrigue , partisans and sabotage 3 +63362 3206 the time with drama , romance , tragedy , bravery , political intrigue , partisans and sabotage 2 +63363 3206 with drama , romance , tragedy , bravery , political intrigue , partisans and sabotage 3 +63364 3206 drama , romance , tragedy , bravery , political intrigue , partisans and sabotage 3 +63365 3206 , romance , tragedy , bravery , political intrigue , partisans and sabotage 2 +63366 3206 romance , tragedy , bravery , political intrigue , partisans and sabotage 2 +63367 3206 , tragedy , bravery , political intrigue , partisans and sabotage 3 +63368 3206 tragedy , bravery , political intrigue , partisans and sabotage 3 +63369 3206 , bravery , political intrigue , partisans and sabotage 2 +63370 3206 bravery , political intrigue , partisans and sabotage 2 +63371 3206 , political intrigue , partisans and sabotage 3 +63372 3206 political intrigue , partisans and sabotage 2 +63373 3206 intrigue , partisans and sabotage 2 +63374 3206 , partisans and sabotage 1 +63375 3206 partisans and sabotage 2 +63376 3206 partisans and 2 +63377 3206 partisans 2 +63378 3206 sabotage 1 +63379 3207 Not bad , but not all that good . 2 +63380 3207 Not bad 2 +63381 3207 , but not all that good . 1 +63382 3207 , but not all that good 1 +63383 3207 not all that good 1 +63384 3207 all that good 2 +63385 3208 Expands the limits of what a film can be , taking us into the lives of women to whom we might not give a second look if we passed them on the street . 3 +63386 3208 Expands the limits of what a film can be , taking us into the lives of women to whom we might not give a second look if we passed them on the street 3 +63387 3208 the limits of what a film can be , taking us into the lives of women to whom we might not give a second look if we passed them on the street 2 +63388 3208 the limits of what a film can be , 1 +63389 3208 the limits of what a film can be 2 +63390 3208 the limits 2 +63391 3208 of what a film can be 2 +63392 3208 what a film can be 3 +63393 3208 a film can be 2 +63394 3208 taking us into the lives of women to whom we might not give a second look if we passed them on the street 2 +63395 3208 taking us 2 +63396 3208 into the lives of women to whom we might not give a second look if we passed them on the street 2 +63397 3208 the lives of women to whom we might not give a second look if we passed them on the street 2 +63398 3208 of women to whom we might not give a second look if we passed them on the street 2 +63399 3208 women to whom we might not give a second look if we passed them on the street 2 +63400 3208 to whom we might not give a second look if we passed them on the street 1 +63401 3208 we might not give a second look if we passed them on the street 2 +63402 3208 might not give a second look if we passed them on the street 1 +63403 3208 give a second look if we passed them on the street 3 +63404 3208 give a second look 3 +63405 3208 if we passed them on the street 2 +63406 3208 we passed them on the street 2 +63407 3208 passed them on the street 2 +63408 3208 passed them 2 +63409 3208 passed 2 +63410 3208 on the street 2 +63411 3208 the street 2 +63412 3209 Triumph of Love is a very silly movie , but the silliness has a pedigree . 2 +63413 3209 Triumph of Love is a very silly movie , but the silliness has a pedigree 2 +63414 3209 Triumph of Love is a very silly movie , but 2 +63415 3209 Triumph of Love is a very silly movie , 1 +63416 3209 Triumph of Love is a very silly movie 1 +63417 3209 Triumph of Love 2 +63418 3209 is a very silly movie 3 +63419 3209 a very silly movie 2 +63420 3209 very silly movie 2 +63421 3209 very silly 2 +63422 3209 the silliness has a pedigree 3 +63423 3209 the silliness 3 +63424 3209 silliness 1 +63425 3209 has a pedigree 2 +63426 3209 a pedigree 2 +63427 3210 For all its problems ... The Lady and the Duke surprisingly manages never to grow boring ... which proves that Rohmer still has a sense of his audience . 3 +63428 3210 For all its problems 2 +63429 3210 all its problems 1 +63430 3210 its problems 2 +63431 3210 ... The Lady and the Duke surprisingly manages never to grow boring ... which proves that Rohmer still has a sense of his audience . 4 +63432 3210 The Lady and the Duke surprisingly manages never to grow boring ... which proves that Rohmer still has a sense of his audience . 3 +63433 3210 The Lady and the Duke surprisingly 3 +63434 3210 The Lady and 2 +63435 3210 The Lady 2 +63436 3210 Lady 2 +63437 3210 the Duke surprisingly 2 +63438 3210 Duke surprisingly 2 +63439 3210 Duke 2 +63440 3210 manages never to grow boring ... which proves that Rohmer still has a sense of his audience . 4 +63441 3210 manages never to grow boring ... which proves that Rohmer still has a sense of his audience 3 +63442 3210 manages never 2 +63443 3210 to grow boring ... which proves that Rohmer still has a sense of his audience 3 +63444 3210 grow boring ... which proves that Rohmer still has a sense of his audience 1 +63445 3210 grow boring ... 1 +63446 3210 grow boring 1 +63447 3210 which proves that Rohmer still has a sense of his audience 3 +63448 3210 proves that Rohmer still has a sense of his audience 2 +63449 3210 that Rohmer still has a sense of his audience 3 +63450 3210 Rohmer still has a sense of his audience 3 +63451 3210 Rohmer 2 +63452 3210 still has a sense of his audience 4 +63453 3210 has a sense of his audience 3 +63454 3210 a sense of his audience 2 +63455 3210 of his audience 2 +63456 3211 The campy results make Mel Brooks ' Borscht Belt schtick look sophisticated . 3 +63457 3211 The campy results 2 +63458 3211 campy results 2 +63459 3211 make Mel Brooks ' Borscht Belt schtick look sophisticated . 2 +63460 3211 make Mel Brooks ' Borscht Belt schtick look sophisticated 3 +63461 3211 Mel Brooks ' Borscht Belt schtick look sophisticated 3 +63462 3211 Mel Brooks ' Borscht Belt schtick 2 +63463 3211 Mel Brooks ' 2 +63464 3211 Brooks ' 2 +63465 3211 Borscht Belt schtick 2 +63466 3211 Borscht 1 +63467 3211 Belt schtick 2 +63468 3211 Belt 2 +63469 3211 schtick 2 +63470 3211 look sophisticated 3 +63471 3212 Clint Eastwood 's Blood Work is a lot like a well-made PB & J sandwich : familiar , fairly uneventful and boasting no real surprises -- but still quite tasty and inviting all the same . 3 +63472 3212 Clint Eastwood 's Blood Work 2 +63473 3212 is a lot like a well-made PB & J sandwich : familiar , fairly uneventful and boasting no real surprises -- but still quite tasty and inviting all the same . 3 +63474 3212 is a lot like a well-made PB & J sandwich : familiar , fairly uneventful and boasting no real surprises -- but still quite tasty and inviting all the same 3 +63475 3212 a lot like a well-made PB & J sandwich : familiar , fairly uneventful and boasting no real surprises -- but still quite tasty and inviting all the same 3 +63476 3212 a lot like a well-made PB & J sandwich : 3 +63477 3212 a lot like a well-made PB & J sandwich 4 +63478 3212 like a well-made PB & J sandwich 3 +63479 3212 a well-made PB & J sandwich 3 +63480 3212 well-made PB & J sandwich 3 +63481 3212 PB & J sandwich 2 +63482 3212 PB 2 +63483 3212 & J sandwich 2 +63484 3212 J sandwich 2 +63485 3212 J 2 +63486 3212 sandwich 2 +63487 3212 familiar , fairly uneventful and boasting no real surprises -- but still quite tasty and inviting all the same 3 +63488 3212 , fairly uneventful and boasting no real surprises -- but still quite tasty and inviting all the same 2 +63489 3212 fairly uneventful and boasting no real surprises -- but still quite tasty and inviting all the same 2 +63490 3212 fairly uneventful and 1 +63491 3212 fairly uneventful 1 +63492 3212 boasting no real surprises -- but still quite tasty and inviting all the same 2 +63493 3212 boasting 2 +63494 3212 no real surprises -- but still quite tasty and inviting all the same 3 +63495 3212 no real surprises 1 +63496 3212 real surprises 2 +63497 3212 -- but still quite tasty and inviting all the same 4 +63498 3212 but still quite tasty and inviting all the same 3 +63499 3212 but still 2 +63500 3212 quite tasty and inviting all the same 3 +63501 3212 quite tasty and 3 +63502 3212 quite tasty 3 +63503 3212 inviting all the same 3 +63504 3212 all the same 2 +63505 3213 Bravado Kathy ! 3 +63506 3213 Bravado 2 +63507 3213 Kathy ! 2 +63508 3213 Kathy 2 +63509 3214 About Schmidt is undoubtedly one of the finest films of the year . 4 +63510 3214 is undoubtedly one of the finest films of the year . 4 +63511 3214 is undoubtedly one of the finest films of the year 4 +63512 3214 is undoubtedly 2 +63513 3214 one of the finest films of the year 4 +63514 3214 of the finest films of the year 4 +63515 3214 the finest films of the year 4 +63516 3214 the finest films 4 +63517 3214 finest films 4 +63518 3215 A powerful , chilling , and affecting study of one man 's dying fall . 4 +63519 3215 A powerful , chilling , and affecting study of one man 3 +63520 3215 A powerful , chilling , and affecting study 4 +63521 3215 powerful , chilling , and affecting study 3 +63522 3215 , chilling , and affecting study 2 +63523 3215 chilling , and affecting study 3 +63524 3215 chilling , and affecting 3 +63525 3215 , and affecting 2 +63526 3215 's dying fall . 2 +63527 3215 's dying fall 2 +63528 3215 dying fall 1 +63529 3216 There is no denying the power of Polanski 's film ... 3 +63530 3216 is no denying the power of Polanski 's film ... 4 +63531 3216 is no denying the power of Polanski 's film 3 +63532 3216 no denying the power of Polanski 's film 3 +63533 3216 denying the power of Polanski 's film 2 +63534 3216 the power of Polanski 's film 3 +63535 3216 of Polanski 's film 2 +63536 3216 Polanski 's film 2 +63537 3216 Polanski 's 2 +63538 3217 Except for Paymer as the boss who ultimately expresses empathy for Bartleby 's pain , the performances are so stylized as to be drained of human emotion . 2 +63539 3217 Except for Paymer as the boss who ultimately expresses empathy for Bartleby 's pain 2 +63540 3217 for Paymer as the boss who ultimately expresses empathy for Bartleby 's pain 2 +63541 3217 Paymer as the boss who ultimately expresses empathy for Bartleby 's pain 2 +63542 3217 Paymer 2 +63543 3217 as the boss who ultimately expresses empathy for Bartleby 's pain 2 +63544 3217 the boss who ultimately expresses empathy for Bartleby 's pain 2 +63545 3217 the boss 2 +63546 3217 boss 2 +63547 3217 who ultimately expresses empathy for Bartleby 's pain 2 +63548 3217 ultimately expresses empathy for Bartleby 's pain 2 +63549 3217 expresses empathy for Bartleby 's pain 2 +63550 3217 expresses empathy 3 +63551 3217 expresses 2 +63552 3217 for Bartleby 's pain 2 +63553 3217 Bartleby 's pain 2 +63554 3217 Bartleby 's 2 +63555 3217 pain 2 +63556 3217 , the performances are so stylized as to be drained of human emotion . 1 +63557 3217 the performances are so stylized as to be drained of human emotion . 2 +63558 3217 are so stylized as to be drained of human emotion . 1 +63559 3217 are so stylized as to be drained of human emotion 1 +63560 3217 so stylized as to be drained of human emotion 1 +63561 3217 stylized as to be drained of human emotion 2 +63562 3217 as to be drained of human emotion 2 +63563 3217 to be drained of human emotion 1 +63564 3217 be drained of human emotion 2 +63565 3217 drained of human emotion 1 +63566 3217 drained 2 +63567 3217 of human emotion 2 +63568 3217 human emotion 3 +63569 3218 Absolutely not . 1 +63570 3218 not . 2 +63571 3219 The film is an earnest try at beachcombing verismo , but it would be even more indistinct than it is were it not for the striking , quietly vulnerable personality of Ms. Ambrose . 1 +63572 3219 The film is an earnest try at beachcombing verismo , but it would be even more indistinct than it is were it not for the striking , quietly vulnerable personality of Ms. Ambrose 3 +63573 3219 The film is an earnest try at beachcombing verismo , but 2 +63574 3219 The film is an earnest try at beachcombing verismo , 2 +63575 3219 The film is an earnest try at beachcombing verismo 3 +63576 3219 is an earnest try at beachcombing verismo 2 +63577 3219 an earnest try at beachcombing verismo 3 +63578 3219 an earnest try 2 +63579 3219 earnest try 2 +63580 3219 at beachcombing verismo 2 +63581 3219 beachcombing verismo 2 +63582 3219 beachcombing 2 +63583 3219 verismo 2 +63584 3219 it would be even more indistinct than it is were it not for the striking , quietly vulnerable personality of Ms. Ambrose 2 +63585 3219 would be even more indistinct than it is were it not for the striking , quietly vulnerable personality of Ms. Ambrose 2 +63586 3219 be even more indistinct than it is were it not for the striking , quietly vulnerable personality of Ms. Ambrose 2 +63587 3219 even more indistinct than it is were it not for the striking , quietly vulnerable personality of Ms. Ambrose 3 +63588 3219 even more indistinct 1 +63589 3219 more indistinct 2 +63590 3219 indistinct 2 +63591 3219 than it is were it not for the striking , quietly vulnerable personality of Ms. Ambrose 2 +63592 3219 it is were it not for the striking , quietly vulnerable personality of Ms. Ambrose 3 +63593 3219 is were it not for the striking , quietly vulnerable personality of Ms. Ambrose 3 +63594 3219 were it not for the striking , quietly vulnerable personality of Ms. Ambrose 3 +63595 3219 not for the striking , quietly vulnerable personality of Ms. Ambrose 3 +63596 3219 for the striking , quietly vulnerable personality of Ms. Ambrose 3 +63597 3219 the striking , quietly vulnerable personality of Ms. Ambrose 3 +63598 3219 the striking , quietly vulnerable personality 3 +63599 3219 striking , quietly vulnerable personality 3 +63600 3219 , quietly vulnerable personality 2 +63601 3219 quietly vulnerable personality 2 +63602 3219 quietly vulnerable 3 +63603 3219 of Ms. Ambrose 2 +63604 3219 Ms. Ambrose 2 +63605 3219 Ambrose 2 +63606 3220 The movie , like Bartleby , is something of a stiff -- an extra-dry office comedy that seems twice as long as its 83 minutes . 1 +63607 3220 , like Bartleby , is something of a stiff -- an extra-dry office comedy that seems twice as long as its 83 minutes . 0 +63608 3220 like Bartleby , is something of a stiff -- an extra-dry office comedy that seems twice as long as its 83 minutes . 0 +63609 3220 like Bartleby 2 +63610 3220 , is something of a stiff -- an extra-dry office comedy that seems twice as long as its 83 minutes . 0 +63611 3220 is something of a stiff -- an extra-dry office comedy that seems twice as long as its 83 minutes . 1 +63612 3220 is something of a stiff -- an extra-dry office comedy that seems twice as long as its 83 minutes 0 +63613 3220 something of a stiff -- an extra-dry office comedy that seems twice as long as its 83 minutes 2 +63614 3220 something of a stiff -- 1 +63615 3220 something of a stiff 1 +63616 3220 of a stiff 2 +63617 3220 a stiff 1 +63618 3220 an extra-dry office comedy that seems twice as long as its 83 minutes 1 +63619 3220 an extra-dry office comedy 2 +63620 3220 extra-dry office comedy 2 +63621 3220 extra-dry 1 +63622 3220 office comedy 2 +63623 3220 office 2 +63624 3220 that seems twice as long as its 83 minutes 1 +63625 3220 seems twice as long as its 83 minutes 0 +63626 3220 seems twice as long 1 +63627 3220 twice as long 2 +63628 3220 as its 83 minutes 2 +63629 3220 its 83 minutes 2 +63630 3220 83 minutes 2 +63631 3220 83 2 +63632 3221 In the end , though , it is only mildly amusing when it could have been so much more . 2 +63633 3221 , though , it is only mildly amusing when it could have been so much more . 2 +63634 3221 though , it is only mildly amusing when it could have been so much more . 2 +63635 3221 , it is only mildly amusing when it could have been so much more . 2 +63636 3221 it is only mildly amusing when it could have been so much more . 1 +63637 3221 is only mildly amusing when it could have been so much more . 2 +63638 3221 is only mildly amusing when it could have been so much more 1 +63639 3221 is only mildly amusing 2 +63640 3221 is only 2 +63641 3221 when it could have been so much more 1 +63642 3221 it could have been so much more 1 +63643 3221 could have been so much more 1 +63644 3221 have been so much more 2 +63645 3222 It 's a very tasteful rock and roll movie . 3 +63646 3222 's a very tasteful rock and roll movie . 4 +63647 3222 's a very tasteful rock and roll movie 4 +63648 3222 a very tasteful rock and roll movie 4 +63649 3222 a very tasteful rock and 3 +63650 3222 a very tasteful rock 2 +63651 3222 very tasteful rock 3 +63652 3222 very tasteful 3 +63653 3222 roll movie 2 +63654 3223 Spielberg has managed to marry science fiction with film noir and action flicks with philosophical inquiry . 3 +63655 3223 has managed to marry science fiction with film noir and action flicks with philosophical inquiry . 3 +63656 3223 has managed to marry science fiction with film noir and action flicks with philosophical inquiry 3 +63657 3223 managed to marry science fiction with film noir and action flicks with philosophical inquiry 2 +63658 3223 to marry science fiction with film noir and action flicks with philosophical inquiry 3 +63659 3223 marry science fiction with film noir and action flicks with philosophical inquiry 2 +63660 3223 marry science fiction with film noir and action flicks 3 +63661 3223 marry science fiction 2 +63662 3223 marry 2 +63663 3223 with film noir and action flicks 2 +63664 3223 film noir and action flicks 2 +63665 3223 noir and action flicks 2 +63666 3223 and action flicks 2 +63667 3223 action flicks 2 +63668 3223 with philosophical inquiry 2 +63669 3223 philosophical inquiry 2 +63670 3224 Although What Time offers Tsai 's usual style and themes , it has a more colorful , more playful tone than his other films . 4 +63671 3224 Although What Time offers Tsai 's usual style and themes 2 +63672 3224 What Time offers Tsai 's usual style and themes 3 +63673 3224 What Time 2 +63674 3224 offers Tsai 's usual style and themes 2 +63675 3224 Tsai 's usual style and themes 3 +63676 3224 Tsai 's 2 +63677 3224 usual style and themes 2 +63678 3224 style and themes 2 +63679 3224 , it has a more colorful , more playful tone than his other films . 3 +63680 3224 it has a more colorful , more playful tone than his other films . 3 +63681 3224 has a more colorful , more playful tone than his other films . 3 +63682 3224 has a more colorful , more playful tone than his other films 3 +63683 3224 a more colorful , more playful tone than his other films 3 +63684 3224 a more colorful , more playful tone 3 +63685 3224 more colorful , more playful tone 3 +63686 3224 more colorful 3 +63687 3224 , more playful tone 3 +63688 3224 more playful tone 3 +63689 3224 more playful 3 +63690 3224 than his other films 2 +63691 3224 his other films 2 +63692 3225 It 's a diverting enough hour-and-a-half for the family audience . 3 +63693 3225 's a diverting enough hour-and-a-half for the family audience . 3 +63694 3225 's a diverting enough hour-and-a-half for the family audience 3 +63695 3225 a diverting enough hour-and-a-half for the family audience 3 +63696 3225 a diverting enough hour-and-a-half 2 +63697 3225 diverting enough hour-and-a-half 2 +63698 3225 enough hour-and-a-half 2 +63699 3225 hour-and-a-half 2 +63700 3225 for the family audience 2 +63701 3225 the family audience 2 +63702 3225 family audience 3 +63703 3226 High Crimes carries almost no organic intrigue as a government \/ Marine\/legal mystery , and that 's because the movie serves up all of that stuff , nearly subliminally , as the old-hat province of male intrigue . 1 +63704 3226 High Crimes carries almost no organic intrigue as a government \/ Marine\/legal mystery , and that 's because the movie serves up all of that stuff , nearly subliminally , as the old-hat province of male intrigue 1 +63705 3226 High Crimes carries almost no organic intrigue as a government \/ Marine\/legal mystery , and 1 +63706 3226 High Crimes carries almost no organic intrigue as a government \/ Marine\/legal mystery , 1 +63707 3226 High Crimes carries almost no organic intrigue as a government \/ Marine\/legal mystery 1 +63708 3226 carries almost no organic intrigue as a government \/ Marine\/legal mystery 1 +63709 3226 carries almost no organic intrigue 1 +63710 3226 almost no organic intrigue 1 +63711 3226 no organic intrigue 1 +63712 3226 organic intrigue 3 +63713 3226 organic 3 +63714 3226 as a government \/ Marine\/legal mystery 2 +63715 3226 a government \/ Marine\/legal mystery 2 +63716 3226 government \/ Marine\/legal mystery 2 +63717 3226 government 2 +63718 3226 \/ Marine\/legal mystery 2 +63719 3226 Marine\/legal mystery 2 +63720 3226 Marine\/legal 2 +63721 3226 that 's because the movie serves up all of that stuff , nearly subliminally , as the old-hat province of male intrigue 2 +63722 3226 's because the movie serves up all of that stuff , nearly subliminally , as the old-hat province of male intrigue 2 +63723 3226 because the movie serves up all of that stuff , nearly subliminally , as the old-hat province of male intrigue 1 +63724 3226 the movie serves up all of that stuff , nearly subliminally , as the old-hat province of male intrigue 2 +63725 3226 serves up all of that stuff , nearly subliminally , as the old-hat province of male intrigue 2 +63726 3226 serves up all of that stuff , nearly subliminally , 3 +63727 3226 serves up all of that stuff , nearly subliminally 3 +63728 3226 serves up all of that stuff , 2 +63729 3226 serves up all of that stuff 3 +63730 3226 serves up 2 +63731 3226 all of that stuff 2 +63732 3226 of that stuff 2 +63733 3226 that stuff 2 +63734 3226 nearly subliminally 2 +63735 3226 subliminally 2 +63736 3226 as the old-hat province of male intrigue 1 +63737 3226 the old-hat province of male intrigue 2 +63738 3226 the old-hat province 2 +63739 3226 old-hat province 1 +63740 3226 province 2 +63741 3226 of male intrigue 2 +63742 3226 male intrigue 2 +63743 3227 Anybody who enjoys quirky , fun , popcorn movies with a touch of silliness and a little bloodshed . 3 +63744 3227 Anybody who enjoys quirky , fun , popcorn movies with a touch of silliness and a little 4 +63745 3227 Anybody 2 +63746 3227 who enjoys quirky , fun , popcorn movies with a touch of silliness and a little 3 +63747 3227 enjoys quirky , fun , popcorn movies with a touch of silliness and a little 4 +63748 3227 enjoys quirky , fun , popcorn movies 3 +63749 3227 enjoys 3 +63750 3227 quirky , fun , popcorn movies 3 +63751 3227 , fun , popcorn movies 3 +63752 3227 fun , popcorn movies 3 +63753 3227 , popcorn movies 2 +63754 3227 popcorn movies 2 +63755 3227 with a touch of silliness and a little 2 +63756 3227 a touch of silliness and a little 2 +63757 3227 of silliness and a little 2 +63758 3227 silliness and a little 2 +63759 3227 silliness and 3 +63760 3227 bloodshed . 2 +63761 3227 bloodshed 2 +63762 3228 A waste of fearless purity in the acting craft . 1 +63763 3228 A waste of fearless purity in the acting craft 2 +63764 3228 A waste of fearless purity 1 +63765 3228 A waste 0 +63766 3228 of fearless purity 2 +63767 3228 fearless purity 3 +63768 3228 purity 2 +63769 3228 in the acting craft 2 +63770 3228 the acting craft 2 +63771 3228 acting craft 2 +63772 3229 The ethos of the Chelsea Hotel may shape Hawke 's artistic aspirations , but he has n't yet coordinated his own DV poetry with the Beat he hears in his soul . 1 +63773 3229 The ethos of the Chelsea Hotel may shape Hawke 's artistic aspirations , but he has n't yet coordinated his own DV poetry with the Beat he hears in his soul 1 +63774 3229 The ethos of the Chelsea Hotel may shape Hawke 's artistic aspirations , but 2 +63775 3229 The ethos of the Chelsea Hotel may shape Hawke 's artistic aspirations , 2 +63776 3229 The ethos of the Chelsea Hotel may shape Hawke 's artistic aspirations 2 +63777 3229 The ethos of the Chelsea Hotel 3 +63778 3229 The ethos 2 +63779 3229 ethos 2 +63780 3229 of the Chelsea Hotel 2 +63781 3229 the Chelsea Hotel 2 +63782 3229 Chelsea Hotel 3 +63783 3229 may shape Hawke 's artistic aspirations 3 +63784 3229 shape Hawke 's artistic aspirations 2 +63785 3229 shape 2 +63786 3229 Hawke 's artistic aspirations 2 +63787 3229 artistic aspirations 3 +63788 3229 he has n't yet coordinated his own DV poetry with the Beat he hears in his soul 2 +63789 3229 has n't yet coordinated his own DV poetry with the Beat he hears in his soul 2 +63790 3229 has n't yet 2 +63791 3229 coordinated his own DV poetry with the Beat he hears in his soul 2 +63792 3229 coordinated his own DV poetry 3 +63793 3229 coordinated 3 +63794 3229 his own DV poetry 2 +63795 3229 own DV poetry 2 +63796 3229 DV poetry 2 +63797 3229 with the Beat he hears in his soul 2 +63798 3229 the Beat he hears in his soul 3 +63799 3229 he hears in his soul 2 +63800 3229 hears in his soul 2 +63801 3229 hears 2 +63802 3229 in his soul 2 +63803 3229 his soul 2 +63804 3230 With a tighter editorial process and firmer direction this material could work , especially since the actresses in the lead roles are all more than competent , but as is , Personal Velocity seems to be idling in neutral . 1 +63805 3230 With a tighter editorial process and firmer direction this material could work , especially since the actresses in the lead roles are all more than competent , but as is , Personal Velocity seems to be idling in neutral 1 +63806 3230 With a tighter editorial process and firmer direction this material could work , especially since the actresses in the lead roles are all more than competent , but 2 +63807 3230 With a tighter editorial process and firmer direction this material could work , especially since the actresses in the lead roles are all more than competent , 2 +63808 3230 With a tighter editorial process and firmer direction this material could work , especially since the actresses in the lead roles are all more than competent 3 +63809 3230 With a tighter editorial process and firmer direction 2 +63810 3230 a tighter editorial process and firmer direction 2 +63811 3230 a tighter editorial process and 2 +63812 3230 a tighter editorial process 2 +63813 3230 tighter editorial process 2 +63814 3230 tighter 2 +63815 3230 editorial process 3 +63816 3230 editorial 2 +63817 3230 firmer direction 2 +63818 3230 firmer 2 +63819 3230 this material could work , especially since the actresses in the lead roles are all more than competent 3 +63820 3230 could work , especially since the actresses in the lead roles are all more than competent 3 +63821 3230 work , especially since the actresses in the lead roles are all more than competent 3 +63822 3230 work , especially 2 +63823 3230 work , 2 +63824 3230 since the actresses in the lead roles are all more than competent 2 +63825 3230 the actresses in the lead roles are all more than competent 4 +63826 3230 the actresses in the lead roles 2 +63827 3230 in the lead roles 2 +63828 3230 the lead roles 2 +63829 3230 lead roles 2 +63830 3230 are all more than competent 3 +63831 3230 more than competent 3 +63832 3230 competent 3 +63833 3230 as is , Personal Velocity seems to be idling in neutral 2 +63834 3230 as is 2 +63835 3230 , Personal Velocity seems to be idling in neutral 2 +63836 3230 Personal Velocity seems to be idling in neutral 1 +63837 3230 seems to be idling in neutral 2 +63838 3230 to be idling in neutral 2 +63839 3230 be idling in neutral 2 +63840 3230 idling in neutral 1 +63841 3230 idling 2 +63842 3230 in neutral 2 +63843 3230 neutral 2 +63844 3231 A bold -LRB- and lovely -RRB- experiment that will almost certainly bore most audiences into their own brightly colored dreams . 3 +63845 3231 A bold -LRB- and lovely -RRB- experiment that will 3 +63846 3231 A bold -LRB- and lovely -RRB- experiment 3 +63847 3231 bold -LRB- and lovely -RRB- experiment 3 +63848 3231 bold 3 +63849 3231 -LRB- and lovely -RRB- experiment 3 +63850 3231 -LRB- and lovely -RRB- 4 +63851 3231 -LRB- and lovely 3 +63852 3231 that will 2 +63853 3231 almost certainly bore most audiences into their own brightly colored dreams . 2 +63854 3231 almost certainly 2 +63855 3231 bore most audiences into their own brightly colored dreams . 1 +63856 3231 bore most audiences into their own brightly colored dreams 1 +63857 3231 bore most audiences 0 +63858 3231 most audiences 2 +63859 3231 into their own brightly colored dreams 2 +63860 3231 their own brightly colored dreams 3 +63861 3231 own brightly colored dreams 3 +63862 3231 brightly colored dreams 3 +63863 3231 colored dreams 2 +63864 3231 colored 2 +63865 3232 As spent screen series go , Star Trek : Nemesis is even more suggestive of a 65th class reunion mixer where only eight surviving members show up -- and there 's nothing to drink . 2 +63866 3232 As spent screen series go 2 +63867 3232 spent screen series go 2 +63868 3232 spent screen series 1 +63869 3232 screen series 2 +63870 3232 , Star Trek : Nemesis is even more suggestive of a 65th class reunion mixer where only eight surviving members show up -- and there 's nothing to drink . 1 +63871 3232 Star Trek : Nemesis is even more suggestive of a 65th class reunion mixer where only eight surviving members show up -- and there 's nothing to drink . 0 +63872 3232 Star Trek : Nemesis is even more suggestive of a 65th class reunion mixer where only eight surviving members show up -- and there 's nothing to drink 1 +63873 3232 Star Trek : Nemesis is even more suggestive of a 65th class reunion mixer where only eight surviving members show up -- and 1 +63874 3232 Star Trek : Nemesis is even more suggestive of a 65th class reunion mixer where only eight surviving members show up -- 1 +63875 3232 Star Trek : Nemesis is even more suggestive of a 65th class reunion mixer where only eight surviving members show up 1 +63876 3232 Star Trek : Nemesis 2 +63877 3232 Star Trek : 2 +63878 3232 is even more suggestive of a 65th class reunion mixer where only eight surviving members show up 1 +63879 3232 is even more suggestive of a 65th class reunion mixer 1 +63880 3232 even more suggestive of a 65th class reunion mixer 2 +63881 3232 even more suggestive 2 +63882 3232 more suggestive 2 +63883 3232 of a 65th class reunion mixer 2 +63884 3232 a 65th class reunion mixer 1 +63885 3232 65th class reunion mixer 2 +63886 3232 65th 2 +63887 3232 class reunion mixer 3 +63888 3232 reunion mixer 2 +63889 3232 mixer 2 +63890 3232 where only eight surviving members show up 2 +63891 3232 only eight surviving members show up 2 +63892 3232 only eight surviving members 2 +63893 3232 only eight 2 +63894 3232 surviving members 2 +63895 3232 surviving 2 +63896 3232 show up 2 +63897 3232 there 's nothing to drink 2 +63898 3232 's nothing to drink 2 +63899 3232 nothing to drink 3 +63900 3232 to drink 2 +63901 3233 Not a bad premise , but the execution is lackluster at best . 2 +63902 3233 Not a bad premise 3 +63903 3233 a bad premise 1 +63904 3233 bad premise 1 +63905 3233 , but the execution is lackluster at best . 1 +63906 3233 , but the execution is lackluster at best 2 +63907 3233 the execution is lackluster at best 1 +63908 3233 is lackluster at best 1 +63909 3233 lackluster at best 0 +63910 3234 ... the same tired old gags , modernized for the extreme sports generation . 2 +63911 3234 the same tired old gags , modernized for the extreme sports generation . 0 +63912 3234 the same tired old gags , modernized for the extreme sports generation 1 +63913 3234 the same tired old gags , 1 +63914 3234 the same tired old gags 1 +63915 3234 same tired old gags 1 +63916 3234 tired old gags 1 +63917 3234 old gags 1 +63918 3234 modernized for the extreme sports generation 3 +63919 3234 modernized 3 +63920 3234 for the extreme sports generation 2 +63921 3234 the extreme sports generation 2 +63922 3234 extreme sports generation 2 +63923 3234 sports generation 2 +63924 3235 Abderrahmane Sissako 's Heremakono -LRB- Waiting for Happiness -RRB- is an elegiac portrait of a transit city on the West African coast struggling against foreign influences . 2 +63925 3235 Abderrahmane Sissako 's Heremakono -LRB- Waiting for Happiness -RRB- 2 +63926 3235 Abderrahmane Sissako 's Heremakono 2 +63927 3235 Abderrahmane Sissako 's 2 +63928 3235 Abderrahmane 2 +63929 3235 Sissako 's 2 +63930 3235 Sissako 2 +63931 3235 Heremakono 2 +63932 3235 -LRB- Waiting for Happiness -RRB- 2 +63933 3235 Waiting for Happiness -RRB- 2 +63934 3235 Waiting for Happiness 2 +63935 3235 for Happiness 3 +63936 3235 is an elegiac portrait of a transit city on the West African coast struggling against foreign influences . 3 +63937 3235 is an elegiac portrait of a transit city on the West African coast struggling against foreign influences 3 +63938 3235 an elegiac portrait of a transit city on the West African coast struggling against foreign influences 3 +63939 3235 an elegiac portrait 3 +63940 3235 elegiac portrait 3 +63941 3235 elegiac 2 +63942 3235 of a transit city on the West African coast struggling against foreign influences 2 +63943 3235 a transit city on the West African coast struggling against foreign influences 2 +63944 3235 a transit city 2 +63945 3235 transit city 2 +63946 3235 transit 2 +63947 3235 on the West African coast struggling against foreign influences 2 +63948 3235 the West African coast struggling against foreign influences 1 +63949 3235 the West African coast 2 +63950 3235 West African coast 2 +63951 3235 West African 2 +63952 3235 coast 2 +63953 3235 struggling against foreign influences 2 +63954 3235 against foreign influences 2 +63955 3235 foreign influences 2 +63956 3235 influences 2 +63957 3236 There are far worse messages to teach a young audience , which will probably be perfectly happy with the sloppy slapstick comedy . 2 +63958 3236 are far worse messages to teach a young audience , which will probably be perfectly happy with the sloppy slapstick comedy . 3 +63959 3236 are far worse messages to teach a young audience , which will probably be perfectly happy with the sloppy slapstick comedy 1 +63960 3236 are far worse 1 +63961 3236 far worse 1 +63962 3236 messages to teach a young audience , which will probably be perfectly happy with the sloppy slapstick comedy 1 +63963 3236 to teach a young audience , which will probably be perfectly happy with the sloppy slapstick comedy 3 +63964 3236 teach a young audience , which will probably be perfectly happy with the sloppy slapstick comedy 2 +63965 3236 teach 2 +63966 3236 a young audience , which will probably be perfectly happy with the sloppy slapstick comedy 1 +63967 3236 a young audience , 2 +63968 3236 a young audience 2 +63969 3236 which will probably be perfectly happy with the sloppy slapstick comedy 3 +63970 3236 will probably be perfectly happy with the sloppy slapstick comedy 3 +63971 3236 be perfectly happy with the sloppy slapstick comedy 2 +63972 3236 perfectly happy with the sloppy slapstick comedy 3 +63973 3236 happy with the sloppy slapstick comedy 2 +63974 3236 with the sloppy slapstick comedy 0 +63975 3236 the sloppy slapstick comedy 2 +63976 3236 sloppy slapstick comedy 2 +63977 3237 It may sound like a mere disease-of - the-week TV movie , but A Song For Martin is made infinitely more wrenching by the performances of real-life spouses Seldahl and Wollter . 2 +63978 3237 It may sound like a mere disease-of - the-week TV movie , but A Song For Martin is made infinitely more wrenching by the performances of real-life spouses Seldahl and Wollter 3 +63979 3237 It may sound like a mere disease-of - the-week TV movie , but 1 +63980 3237 It may sound like a mere disease-of - the-week TV movie , 2 +63981 3237 It may sound like a mere disease-of - the-week TV movie 2 +63982 3237 may sound like a mere disease-of - the-week TV movie 2 +63983 3237 sound like a mere disease-of - the-week TV movie 1 +63984 3237 like a mere disease-of - the-week TV movie 0 +63985 3237 a mere disease-of - the-week TV movie 0 +63986 3237 a mere disease-of - 1 +63987 3237 a mere disease-of 2 +63988 3237 mere disease-of 2 +63989 3237 disease-of 2 +63990 3237 the-week TV movie 2 +63991 3237 the-week 2 +63992 3237 TV movie 2 +63993 3237 A Song For Martin is made infinitely more wrenching by the performances of real-life spouses Seldahl and Wollter 3 +63994 3237 A Song 3 +63995 3237 For Martin is made infinitely more wrenching by the performances of real-life spouses Seldahl and Wollter 4 +63996 3237 For Martin 2 +63997 3237 is made infinitely more wrenching by the performances of real-life spouses Seldahl and Wollter 3 +63998 3237 made infinitely more wrenching by the performances of real-life spouses Seldahl and Wollter 3 +63999 3237 made infinitely more wrenching 2 +64000 3237 infinitely more wrenching 3 +64001 3237 infinitely 2 +64002 3237 more wrenching 1 +64003 3237 wrenching 2 +64004 3237 by the performances of real-life spouses Seldahl and Wollter 2 +64005 3237 the performances of real-life spouses Seldahl and Wollter 2 +64006 3237 of real-life spouses Seldahl and Wollter 2 +64007 3237 real-life spouses Seldahl and Wollter 2 +64008 3237 spouses Seldahl and Wollter 2 +64009 3237 Seldahl and Wollter 2 +64010 3237 Seldahl and 2 +64011 3237 Seldahl 2 +64012 3237 Wollter 2 +64013 3238 Resurrection has the dubious distinction of being a really bad imitation of the really bad Blair Witch Project . 1 +64014 3238 has the dubious distinction of being a really bad imitation of the really bad Blair Witch Project . 1 +64015 3238 has the dubious distinction of being a really bad imitation of the really bad Blair Witch Project 0 +64016 3238 the dubious distinction of being a really bad imitation of the really bad Blair Witch Project 0 +64017 3238 the dubious distinction 2 +64018 3238 dubious distinction 2 +64019 3238 dubious 1 +64020 3238 distinction 2 +64021 3238 of being a really bad imitation of the really bad Blair Witch Project 0 +64022 3238 being a really bad imitation of the really bad Blair Witch Project 0 +64023 3238 a really bad imitation of the really bad Blair Witch Project 2 +64024 3238 a really bad imitation 0 +64025 3238 really bad imitation 0 +64026 3238 really bad 0 +64027 3238 of the really bad Blair Witch Project 1 +64028 3238 the really bad Blair Witch Project 0 +64029 3238 really bad Blair Witch Project 0 +64030 3238 Blair Witch Project 2 +64031 3238 Witch Project 2 +64032 3239 A very depressing movie of many missed opportunities . 0 +64033 3239 A very depressing movie of many 1 +64034 3239 A very depressing movie 0 +64035 3239 very depressing movie 0 +64036 3239 very depressing 1 +64037 3239 of many 2 +64038 3239 missed opportunities . 1 +64039 3239 missed opportunities 2 +64040 3240 This is a fragmented film , once a good idea that was followed by the bad idea to turn it into a movie . 0 +64041 3240 is a fragmented film , once a good idea that was followed by the bad idea to turn it into a movie . 0 +64042 3240 is a fragmented film , once a good idea that was followed by the bad idea to turn it into a movie 2 +64043 3240 is a fragmented film , 1 +64044 3240 is a fragmented film 1 +64045 3240 a fragmented film 1 +64046 3240 fragmented film 1 +64047 3240 once a good idea that was followed by the bad idea to turn it into a movie 1 +64048 3240 a good idea that was followed by the bad idea to turn it into a movie 1 +64049 3240 a good idea that was followed by the bad idea 2 +64050 3240 a good idea 3 +64051 3240 good idea 3 +64052 3240 that was followed by the bad idea 1 +64053 3240 was followed by the bad idea 1 +64054 3240 followed by the bad idea 1 +64055 3240 by the bad idea 2 +64056 3240 the bad idea 2 +64057 3240 bad idea 0 +64058 3240 to turn it into a movie 2 +64059 3240 turn it into a movie 2 +64060 3240 into a movie 2 +64061 3241 A stupid , derivative horror film that substitutes extreme gore for suspense . 0 +64062 3241 A stupid , derivative horror film that substitutes extreme 1 +64063 3241 A stupid , derivative horror film 0 +64064 3241 stupid , derivative horror film 0 +64065 3241 , derivative horror film 2 +64066 3241 derivative horror film 1 +64067 3241 that substitutes extreme 2 +64068 3241 substitutes extreme 2 +64069 3241 gore for suspense . 1 +64070 3241 gore for suspense 1 +64071 3241 gore 1 +64072 3241 for suspense 2 +64073 3242 In XXX , Diesel is that rare creature -- an action hero with table manners , and one who proves that elegance is more than tattoo deep . 4 +64074 3242 In XXX 2 +64075 3242 XXX 1 +64076 3242 , Diesel is that rare creature -- an action hero with table manners , and one who proves that elegance is more than tattoo deep . 3 +64077 3242 Diesel is that rare creature -- an action hero with table manners , and one who proves that elegance is more than tattoo deep . 4 +64078 3242 is that rare creature -- an action hero with table manners , and one who proves that elegance is more than tattoo deep . 3 +64079 3242 is that rare creature -- an action hero with table manners , and one who proves that elegance is more than tattoo deep 3 +64080 3242 that rare creature -- an action hero with table manners , and one who proves that elegance is more than tattoo deep 3 +64081 3242 that rare creature -- 3 +64082 3242 that rare creature 2 +64083 3242 rare creature 2 +64084 3242 an action hero with table manners , and one who proves that elegance is more than tattoo deep 3 +64085 3242 an action hero with table manners , and 2 +64086 3242 an action hero with table manners , 3 +64087 3242 an action hero with table manners 3 +64088 3242 with table manners 3 +64089 3242 table manners 2 +64090 3242 manners 2 +64091 3242 one who proves that elegance is more than tattoo deep 3 +64092 3242 who proves that elegance is more than tattoo deep 3 +64093 3242 proves that elegance is more than tattoo deep 3 +64094 3242 that elegance is more than tattoo deep 2 +64095 3242 elegance is more than tattoo deep 2 +64096 3242 is more than tattoo deep 2 +64097 3242 is more than tattoo 2 +64098 3242 more than tattoo 2 +64099 3242 than tattoo 2 +64100 3243 The funny thing is , I did n't mind all this contrived nonsense a bit . 2 +64101 3243 The funny thing 3 +64102 3243 funny thing 3 +64103 3243 is , I did n't mind all this contrived nonsense a bit . 2 +64104 3243 is , I did n't mind all this contrived nonsense a bit 3 +64105 3243 I did n't mind all this contrived nonsense a bit 2 +64106 3243 did n't mind all this contrived nonsense a bit 2 +64107 3243 mind all this contrived nonsense a bit 2 +64108 3243 all this contrived nonsense a bit 0 +64109 3243 all this contrived nonsense 1 +64110 3243 this contrived nonsense 1 +64111 3243 contrived nonsense 0 +64112 3244 The charm of Revolution OS is rather the way it introduces you to new , fervently held ideas and fanciful thinkers . 3 +64113 3244 The charm of Revolution OS 3 +64114 3244 of Revolution OS 2 +64115 3244 Revolution OS 2 +64116 3244 OS 2 +64117 3244 is rather the way it introduces you to new , fervently held ideas and fanciful thinkers . 3 +64118 3244 is rather the way it introduces you to new , fervently held ideas and fanciful thinkers 3 +64119 3244 is rather 2 +64120 3244 the way it introduces you to new , fervently held ideas and fanciful thinkers 3 +64121 3244 it introduces you to new , fervently held ideas and fanciful thinkers 3 +64122 3244 introduces you to new , fervently held ideas and fanciful thinkers 3 +64123 3244 introduces you 2 +64124 3244 to new , fervently held ideas and fanciful thinkers 2 +64125 3244 new , fervently held ideas and fanciful thinkers 4 +64126 3244 new , fervently held ideas and 2 +64127 3244 new , fervently held ideas 2 +64128 3244 , fervently held ideas 2 +64129 3244 fervently held ideas 2 +64130 3244 held ideas 2 +64131 3244 fanciful thinkers 3 +64132 3244 thinkers 2 +64133 3245 With or without ballast tanks , K-19 sinks to a Harrison Ford low . 1 +64134 3245 With or without ballast tanks 2 +64135 3245 or without ballast tanks 2 +64136 3245 without ballast tanks 2 +64137 3245 ballast tanks 2 +64138 3245 ballast 2 +64139 3245 , K-19 sinks to a Harrison Ford low . 1 +64140 3245 K-19 sinks to a Harrison Ford low . 0 +64141 3245 sinks to a Harrison Ford low . 1 +64142 3245 sinks to a Harrison Ford low 2 +64143 3245 to a Harrison Ford low 1 +64144 3245 a Harrison Ford low 1 +64145 3245 Harrison Ford low 1 +64146 3245 Ford low 2 +64147 3246 -LRB- Screenwriter -RRB- Pimental took the Farrelly Brothers comedy and feminized it , but it is a rather poor imitation . 2 +64148 3246 -LRB- Screenwriter -RRB- Pimental took the Farrelly Brothers comedy and feminized it , but it is a rather poor imitation 1 +64149 3246 -LRB- Screenwriter -RRB- Pimental took the Farrelly Brothers comedy and feminized it , but 2 +64150 3246 -LRB- Screenwriter -RRB- Pimental took the Farrelly Brothers comedy and feminized it , 3 +64151 3246 -LRB- Screenwriter -RRB- Pimental took the Farrelly Brothers comedy and feminized it 2 +64152 3246 -LRB- Screenwriter -RRB- Pimental 2 +64153 3246 Screenwriter -RRB- Pimental 2 +64154 3246 -RRB- Pimental 2 +64155 3246 Pimental 2 +64156 3246 took the Farrelly Brothers comedy and feminized it 2 +64157 3246 took the Farrelly Brothers comedy and 2 +64158 3246 took the Farrelly Brothers comedy 2 +64159 3246 the Farrelly Brothers comedy 2 +64160 3246 Farrelly Brothers comedy 2 +64161 3246 Farrelly 2 +64162 3246 Brothers comedy 2 +64163 3246 feminized it 2 +64164 3246 feminized 2 +64165 3246 it is a rather poor imitation 1 +64166 3246 is a rather poor imitation 1 +64167 3246 a rather poor imitation 0 +64168 3246 rather poor imitation 2 +64169 3246 rather poor 2 +64170 3247 A surprisingly sweet and gentle comedy . 3 +64171 3247 A surprisingly sweet and gentle comedy 4 +64172 3247 surprisingly sweet and gentle comedy 4 +64173 3247 surprisingly sweet and gentle 4 +64174 3247 sweet and gentle 3 +64175 3248 While kids will probably eat the whole thing up , most adults will be way ahead of the plot . 2 +64176 3248 While kids will probably eat the whole thing up 2 +64177 3248 kids will probably eat the whole thing up 3 +64178 3248 will probably eat the whole thing up 2 +64179 3248 eat the whole thing up 3 +64180 3248 eat the whole thing 2 +64181 3248 , most adults will be way ahead of the plot . 2 +64182 3248 most adults will be way ahead of the plot . 1 +64183 3248 most adults 2 +64184 3248 will be way ahead of the plot . 2 +64185 3248 will be way ahead of the plot 2 +64186 3248 be way ahead of the plot 2 +64187 3248 way ahead of the plot 2 +64188 3248 ahead of the plot 2 +64189 3249 Predictable and cloying , though Brown Sugar is so earnest in its yearning for the days before rap went nihilistic that it summons more spirit and bite than your average formulaic romantic quadrangle . 3 +64190 3249 Predictable and cloying , though Brown Sugar is so earnest in its yearning for the days before rap went nihilistic that it summons more spirit and bite than your average formulaic romantic quadrangle 2 +64191 3249 Predictable and cloying , 1 +64192 3249 though Brown Sugar is so earnest in its yearning for the days before rap went nihilistic that it summons more spirit and bite than your average formulaic romantic quadrangle 3 +64193 3249 Brown Sugar is so earnest in its yearning for the days before rap went nihilistic that it summons more spirit and bite than your average formulaic romantic quadrangle 2 +64194 3249 is so earnest in its yearning for the days before rap went nihilistic that it summons more spirit and bite than your average formulaic romantic quadrangle 2 +64195 3249 is so earnest in its yearning for the days 3 +64196 3249 is so earnest 2 +64197 3249 in its yearning for the days 1 +64198 3249 its yearning for the days 2 +64199 3249 its yearning 2 +64200 3249 for the days 2 +64201 3249 the days 2 +64202 3249 before rap went nihilistic that it summons more spirit and bite than your average formulaic romantic quadrangle 2 +64203 3249 rap went nihilistic that it summons more spirit and bite than your average formulaic romantic quadrangle 2 +64204 3249 rap 2 +64205 3249 went nihilistic that it summons more spirit and bite than your average formulaic romantic quadrangle 2 +64206 3249 went nihilistic 2 +64207 3249 nihilistic 2 +64208 3249 that it summons more spirit and bite than your average formulaic romantic quadrangle 2 +64209 3249 it summons more spirit and bite than your average formulaic romantic quadrangle 3 +64210 3249 summons more spirit and bite than your average formulaic romantic quadrangle 3 +64211 3249 summons 2 +64212 3249 more spirit and bite than your average formulaic romantic quadrangle 3 +64213 3249 more spirit and bite 3 +64214 3249 spirit and bite 2 +64215 3249 spirit and 2 +64216 3249 than your average formulaic romantic quadrangle 2 +64217 3249 your average formulaic romantic quadrangle 2 +64218 3249 average formulaic romantic quadrangle 1 +64219 3249 formulaic romantic quadrangle 2 +64220 3249 romantic quadrangle 2 +64221 3249 quadrangle 2 +64222 3250 It 's about individual moments of mood , and an aimlessness that 's actually sort of amazing . 4 +64223 3250 's about individual moments of mood , and an aimlessness that 's actually sort of amazing . 4 +64224 3250 's about individual moments of mood , and an aimlessness that 's actually sort of amazing 2 +64225 3250 about individual moments of mood , and an aimlessness that 's actually sort of amazing 2 +64226 3250 individual moments of mood , and an aimlessness that 's actually sort of amazing 3 +64227 3250 individual moments of mood , and 2 +64228 3250 individual moments of mood , 2 +64229 3250 individual moments of mood 2 +64230 3250 individual moments 2 +64231 3250 of mood 2 +64232 3250 an aimlessness that 's actually sort of amazing 3 +64233 3250 an aimlessness 1 +64234 3250 that 's actually sort of amazing 3 +64235 3250 's actually sort of amazing 4 +64236 3250 sort of amazing 3 +64237 3250 sort of 2 +64238 3251 Hollywood 's answer to an air ball . 2 +64239 3251 Hollywood 's 2 +64240 3251 answer to an air ball . 2 +64241 3251 answer to an air ball 2 +64242 3251 to an air ball 1 +64243 3251 an air ball 2 +64244 3251 air ball 1 +64245 3252 It 's a smart , solid , kinetically-charged spy flick worthy of a couple hours of summertime and a bucket of popcorn . 4 +64246 3252 's a smart , solid , kinetically-charged spy flick worthy of a couple hours of summertime and a bucket of popcorn . 4 +64247 3252 's a smart , solid , kinetically-charged spy flick worthy of a couple hours of summertime and a bucket of popcorn 4 +64248 3252 a smart , solid , kinetically-charged spy flick worthy of a couple hours of summertime and a bucket of popcorn 4 +64249 3252 a smart , solid , kinetically-charged spy flick worthy 4 +64250 3252 smart , solid , kinetically-charged spy flick worthy 4 +64251 3252 , solid , kinetically-charged spy flick worthy 3 +64252 3252 solid , kinetically-charged spy flick worthy 3 +64253 3252 , kinetically-charged spy flick worthy 3 +64254 3252 kinetically-charged spy flick worthy 4 +64255 3252 kinetically-charged 2 +64256 3252 spy flick worthy 3 +64257 3252 flick worthy 3 +64258 3252 of a couple hours of summertime and a bucket of popcorn 2 +64259 3252 a couple hours of summertime and a bucket of popcorn 3 +64260 3252 a couple hours of summertime and 2 +64261 3252 a couple hours of summertime 3 +64262 3252 a couple hours 2 +64263 3252 couple hours 2 +64264 3252 of summertime 2 +64265 3252 a bucket of popcorn 2 +64266 3252 a bucket 2 +64267 3252 bucket 2 +64268 3252 of popcorn 2 +64269 3253 A sensitive , cultivated treatment of Greene 's work as well as a remarkably faithful one . 4 +64270 3253 A sensitive , cultivated treatment of Greene 2 +64271 3253 A sensitive , cultivated treatment 3 +64272 3253 sensitive , cultivated treatment 3 +64273 3253 , cultivated treatment 2 +64274 3253 cultivated treatment 2 +64275 3253 cultivated 3 +64276 3253 of Greene 2 +64277 3253 's work as well as a remarkably faithful one . 3 +64278 3253 's work as well as a remarkably faithful one 3 +64279 3253 work as well as a remarkably faithful one 3 +64280 3253 work as well as 2 +64281 3253 a remarkably faithful one 3 +64282 3253 remarkably faithful one 3 +64283 3253 remarkably faithful 2 +64284 3254 A stylish thriller . 4 +64285 3254 stylish thriller . 3 +64286 3254 thriller . 2 +64287 3255 For those who pride themselves on sophisticated , discerning taste , this might not seem like the proper cup of tea , however it is almost guaranteed that even the stuffiest cinema goers will laugh their \*\*\* off for an hour-and-a-half . 4 +64288 3255 For those who pride themselves on sophisticated , discerning taste 2 +64289 3255 those who pride themselves on sophisticated , discerning taste 2 +64290 3255 who pride themselves on sophisticated , discerning taste 2 +64291 3255 pride themselves on sophisticated , discerning taste 3 +64292 3255 pride themselves 2 +64293 3255 on sophisticated , discerning taste 3 +64294 3255 sophisticated , discerning taste 4 +64295 3255 , discerning taste 3 +64296 3255 discerning taste 3 +64297 3255 discerning 2 +64298 3255 , this might not seem like the proper cup of tea , however it is almost guaranteed that even the stuffiest cinema goers will laugh their \*\*\* off for an hour-and-a-half . 4 +64299 3255 this might not seem like the proper cup of tea , however it is almost guaranteed that even the stuffiest cinema goers will laugh their \*\*\* off for an hour-and-a-half . 4 +64300 3255 this might not seem like the proper cup of tea , however it is almost guaranteed that even the stuffiest cinema goers will laugh their \*\*\* off for an hour-and-a-half 4 +64301 3255 this might not seem like the proper cup of tea , however 2 +64302 3255 this might not seem like the proper cup of tea , 1 +64303 3255 this might not seem like the proper cup of tea 2 +64304 3255 might not seem like the proper cup of tea 1 +64305 3255 seem like the proper cup of tea 3 +64306 3255 like the proper cup of tea 2 +64307 3255 the proper cup of tea 2 +64308 3255 the proper cup 2 +64309 3255 proper cup 2 +64310 3255 of tea 2 +64311 3255 it is almost guaranteed that even the stuffiest cinema goers will laugh their \*\*\* off for an hour-and-a-half 4 +64312 3255 is almost guaranteed that even the stuffiest cinema goers will laugh their \*\*\* off for an hour-and-a-half 4 +64313 3255 almost guaranteed that even the stuffiest cinema goers will laugh their \*\*\* off for an hour-and-a-half 3 +64314 3255 almost guaranteed 2 +64315 3255 that even the stuffiest cinema goers will laugh their \*\*\* off for an hour-and-a-half 4 +64316 3255 even the stuffiest cinema goers will laugh their \*\*\* off for an hour-and-a-half 4 +64317 3255 even the stuffiest cinema goers 3 +64318 3255 the stuffiest cinema goers 1 +64319 3255 stuffiest cinema goers 1 +64320 3255 stuffiest 1 +64321 3255 cinema goers 2 +64322 3255 goers 2 +64323 3255 will laugh their \*\*\* off for an hour-and-a-half 4 +64324 3255 laugh their \*\*\* off for an hour-and-a-half 3 +64325 3255 laugh their \*\*\* off 3 +64326 3255 laugh their \*\*\* 2 +64327 3255 their \*\*\* 2 +64328 3255 for an hour-and-a-half 2 +64329 3255 an hour-and-a-half 2 +64330 3256 As refreshing as a drink from a woodland stream . 3 +64331 3256 As refreshing 3 +64332 3256 as a drink from a woodland stream . 2 +64333 3256 drink from a woodland stream . 2 +64334 3256 drink from a woodland stream 2 +64335 3256 from a woodland stream 3 +64336 3256 a woodland stream 2 +64337 3256 woodland stream 2 +64338 3256 woodland 2 +64339 3257 But the movie that does n't really deliver for country music fans or for family audiences 0 +64340 3257 the movie that does n't really deliver for country music fans or for family audiences 1 +64341 3257 the movie that 2 +64342 3257 movie that 2 +64343 3257 does n't really deliver for country music fans or for family audiences 1 +64344 3257 deliver for country music fans or for family audiences 2 +64345 3257 for country music fans or for family audiences 2 +64346 3257 for country music fans or 2 +64347 3257 for country music fans 2 +64348 3257 country music fans 2 +64349 3257 music fans 3 +64350 3257 for family audiences 2 +64351 3257 family audiences 2 +64352 3258 Alternates between deadpan comedy and heartbreaking loneliness and is n't afraid to provoke introspection in both its characters and its audience . 3 +64353 3258 Alternates between deadpan comedy and heartbreaking 3 +64354 3258 Alternates 2 +64355 3258 between deadpan comedy and heartbreaking 3 +64356 3258 deadpan comedy and heartbreaking 2 +64357 3258 comedy and heartbreaking 2 +64358 3258 loneliness and is n't afraid to provoke introspection in both its characters and its audience . 3 +64359 3258 loneliness and is n't afraid to provoke introspection in both its characters and its audience 3 +64360 3258 is n't afraid to provoke introspection in both its characters and its audience 3 +64361 3258 afraid to provoke introspection in both its characters and its audience 1 +64362 3258 afraid 2 +64363 3258 to provoke introspection in both its characters and its audience 3 +64364 3258 provoke introspection in both its characters and its audience 3 +64365 3258 provoke introspection 2 +64366 3258 introspection 2 +64367 3258 in both its characters and its audience 2 +64368 3258 both its characters and its audience 2 +64369 3258 its characters and its audience 3 +64370 3258 its characters and 2 +64371 3259 Unfolds in a low-key , organic way that encourages you to accept it as life and go with its flow . 3 +64372 3259 Unfolds in a low-key , organic way that encourages you to accept it as life and go with its flow 3 +64373 3259 in a low-key , organic way that encourages you to accept it as life and go with its flow 4 +64374 3259 a low-key , organic way that encourages you to accept it as life and go with its flow 3 +64375 3259 a low-key , organic way 3 +64376 3259 low-key , organic way 2 +64377 3259 , organic way 2 +64378 3259 organic way 2 +64379 3259 that encourages you to accept it as life and go with its flow 3 +64380 3259 encourages you to accept it as life and go with its flow 4 +64381 3259 encourages 2 +64382 3259 you to accept it as life and go with its flow 3 +64383 3259 to accept it as life and go with its flow 2 +64384 3259 accept it as life and go with its flow 3 +64385 3259 accept it as life and 1 +64386 3259 accept it as life 2 +64387 3259 accept it 2 +64388 3259 as life 2 +64389 3259 go with its flow 2 +64390 3259 with its flow 2 +64391 3259 its flow 2 +64392 3260 Brown 's saga , like many before his , makes for snappy prose but a stumblebum of a movie . 2 +64393 3260 Brown 's saga 2 +64394 3260 , like many before his , makes for snappy prose but a stumblebum of a movie . 1 +64395 3260 like many before his , makes for snappy prose but a stumblebum of a movie . 1 +64396 3260 like many before his 2 +64397 3260 many before his 3 +64398 3260 before his 2 +64399 3260 , makes for snappy prose but a stumblebum of a movie . 2 +64400 3260 makes for snappy prose but a stumblebum of a movie . 1 +64401 3260 makes for snappy prose but a stumblebum of a movie 1 +64402 3260 for snappy prose but a stumblebum of a movie 2 +64403 3260 snappy prose but a stumblebum of a movie 1 +64404 3260 snappy prose 2 +64405 3260 snappy 3 +64406 3260 but a stumblebum of a movie 1 +64407 3260 a stumblebum of a movie 2 +64408 3260 a stumblebum 0 +64409 3260 stumblebum 2 +64410 3261 A perfectly competent and often imaginative film that lacks what little Lilo & Stitch had in spades -- charisma . 2 +64411 3261 A perfectly competent and often imaginative film that lacks what little Lilo & Stitch had in 2 +64412 3261 A perfectly competent and often imaginative film 4 +64413 3261 perfectly competent and often imaginative film 4 +64414 3261 perfectly competent and often imaginative 3 +64415 3261 perfectly competent and 3 +64416 3261 perfectly competent 3 +64417 3261 often imaginative 3 +64418 3261 that lacks what little Lilo & Stitch had in 2 +64419 3261 lacks what little Lilo & Stitch had in 1 +64420 3261 what little Lilo & Stitch had in 2 +64421 3261 little Lilo & Stitch had in 2 +64422 3261 Lilo & Stitch had in 2 +64423 3261 had in 2 +64424 3261 spades -- charisma . 2 +64425 3261 spades -- charisma 2 +64426 3261 spades -- 2 +64427 3261 spades 2 +64428 3262 The one-liners are snappy , the situations volatile and the comic opportunities richly rewarded . 4 +64429 3262 The one-liners are snappy , the situations volatile and the comic opportunities richly rewarded 4 +64430 3262 The one-liners are snappy , the situations volatile and 3 +64431 3262 The one-liners are snappy , the situations volatile 3 +64432 3262 The one-liners are snappy , 2 +64433 3262 The one-liners are snappy 3 +64434 3262 The one-liners 2 +64435 3262 are snappy 2 +64436 3262 the situations volatile 2 +64437 3262 the comic opportunities richly rewarded 4 +64438 3262 the comic opportunities 2 +64439 3262 comic opportunities 2 +64440 3262 richly rewarded 4 +64441 3263 This is a picture that Maik , the firebrand turned savvy ad man , would be envious of : it hijacks the heat of revolution and turns it into a sales tool . 2 +64442 3263 This is a picture that Maik , the firebrand turned savvy ad man , would be envious of : it hijacks the heat of revolution and turns it into a sales tool 3 +64443 3263 This is a picture that Maik , the firebrand turned savvy ad man , would be envious of : 3 +64444 3263 This is a picture that Maik , the firebrand turned savvy ad man , would be envious of 3 +64445 3263 is a picture that Maik , the firebrand turned savvy ad man , would be envious of 3 +64446 3263 is a picture 2 +64447 3263 that Maik , the firebrand turned savvy ad man , would be envious of 2 +64448 3263 Maik , the firebrand turned savvy ad man , would be envious of 3 +64449 3263 Maik , the firebrand turned savvy ad man , 3 +64450 3263 Maik , the firebrand turned savvy ad man 2 +64451 3263 Maik , 2 +64452 3263 Maik 2 +64453 3263 the firebrand turned savvy ad man 2 +64454 3263 the firebrand 2 +64455 3263 firebrand 2 +64456 3263 turned savvy ad man 2 +64457 3263 savvy ad man 2 +64458 3263 ad man 2 +64459 3263 would be envious of 3 +64460 3263 be envious of 2 +64461 3263 envious of 2 +64462 3263 envious 2 +64463 3263 it hijacks the heat of revolution and turns it into a sales tool 2 +64464 3263 hijacks the heat of revolution and turns it into a sales tool 1 +64465 3263 hijacks the heat of revolution and 2 +64466 3263 hijacks the heat of revolution 1 +64467 3263 hijacks 2 +64468 3263 the heat of revolution 2 +64469 3263 of revolution 2 +64470 3263 turns it into a sales tool 2 +64471 3263 turns it 2 +64472 3263 into a sales tool 2 +64473 3263 a sales tool 1 +64474 3263 sales tool 2 +64475 3263 sales 2 +64476 3264 The charm of the first movie is still there , and the story feels like the logical , unforced continuation of the careers of a pair of spy kids . 3 +64477 3264 The charm of the first movie is still there , and the story feels like the logical , unforced continuation of the careers of a pair of spy kids 3 +64478 3264 The charm of the first movie is still there , and 3 +64479 3264 The charm of the first movie is still there , 3 +64480 3264 The charm of the first movie is still there 4 +64481 3264 The charm of the first movie 4 +64482 3264 of the first movie 2 +64483 3264 the first movie 3 +64484 3264 is still there 2 +64485 3264 the story feels like the logical , unforced continuation of the careers of a pair of spy kids 3 +64486 3264 feels like the logical , unforced continuation of the careers of a pair of spy kids 3 +64487 3264 like the logical , unforced continuation of the careers of a pair of spy kids 3 +64488 3264 the logical , unforced continuation of the careers of a pair of spy kids 2 +64489 3264 the logical , unforced continuation 2 +64490 3264 logical , unforced continuation 3 +64491 3264 , unforced continuation 2 +64492 3264 unforced continuation 3 +64493 3264 continuation 2 +64494 3264 of the careers of a pair of spy kids 2 +64495 3264 the careers of a pair of spy kids 2 +64496 3264 the careers 2 +64497 3264 careers 2 +64498 3264 of a pair of spy kids 2 +64499 3264 a pair of spy kids 2 +64500 3264 of spy kids 2 +64501 3265 Whatever about warning kids about the dangers of ouija boards , someone should dispense the same advice to film directors . 2 +64502 3265 Whatever about warning kids about the dangers of ouija boards 2 +64503 3265 about warning kids about the dangers of ouija boards 3 +64504 3265 warning kids about the dangers of ouija boards 2 +64505 3265 warning kids 2 +64506 3265 about the dangers of ouija boards 2 +64507 3265 the dangers of ouija boards 1 +64508 3265 the dangers 1 +64509 3265 dangers 1 +64510 3265 of ouija boards 2 +64511 3265 ouija boards 2 +64512 3265 ouija 2 +64513 3265 boards 2 +64514 3265 , someone should dispense the same advice to film directors . 1 +64515 3265 someone should dispense the same advice to film directors . 2 +64516 3265 should dispense the same advice to film directors . 1 +64517 3265 should dispense the same advice to film directors 2 +64518 3265 dispense the same advice to film directors 3 +64519 3265 dispense the same advice 2 +64520 3265 dispense 2 +64521 3265 the same advice 2 +64522 3265 same advice 2 +64523 3265 to film directors 2 +64524 3266 -LRB- Siegel -RRB- and co-writers Lisa Bazadona and Grace Woodard have relied too much on convention in creating the characters who surround Frankie . 1 +64525 3266 -LRB- Siegel -RRB- and co-writers Lisa Bazadona and Grace Woodard 2 +64526 3266 -LRB- Siegel -RRB- and 2 +64527 3266 -LRB- Siegel -RRB- 2 +64528 3266 Siegel -RRB- 2 +64529 3266 co-writers Lisa Bazadona and Grace Woodard 3 +64530 3266 co-writers 2 +64531 3266 Lisa Bazadona and Grace Woodard 2 +64532 3266 Bazadona and Grace Woodard 2 +64533 3266 Bazadona 2 +64534 3266 and Grace Woodard 2 +64535 3266 Grace Woodard 2 +64536 3266 Woodard 2 +64537 3266 have relied too much on convention in creating the characters who surround Frankie . 1 +64538 3266 have relied too much on convention in creating the characters who surround Frankie 2 +64539 3266 relied too much on convention in creating the characters who surround Frankie 2 +64540 3266 relied too much on convention 1 +64541 3266 relied too much 1 +64542 3266 relied 2 +64543 3266 on convention 2 +64544 3266 convention 2 +64545 3266 in creating the characters who surround Frankie 2 +64546 3266 creating the characters who surround Frankie 1 +64547 3266 the characters who surround Frankie 2 +64548 3266 who surround Frankie 2 +64549 3266 surround Frankie 2 +64550 3266 Frankie 2 +64551 3267 What Bloody Sunday lacks in clarity , it makes up for with a great , fiery passion . 2 +64552 3267 What Bloody Sunday lacks in clarity 2 +64553 3267 Bloody Sunday lacks in clarity 0 +64554 3267 lacks in clarity 1 +64555 3267 in clarity 3 +64556 3267 , it makes up for with a great , fiery passion . 4 +64557 3267 it makes up for with a great , fiery passion . 4 +64558 3267 makes up for with a great , fiery passion . 3 +64559 3267 makes up for with a great , fiery passion 3 +64560 3267 for with a great , fiery passion 3 +64561 3267 with a great , fiery passion 3 +64562 3267 a great , fiery passion 3 +64563 3267 great , fiery passion 4 +64564 3267 , fiery passion 3 +64565 3267 fiery passion 4 +64566 3267 fiery 4 +64567 3268 Supposedly , Pokemon ca n't be killed , but Pokemon 4Ever practically assures that the pocket monster movie franchise is nearly ready to keel over . 1 +64568 3268 Supposedly , Pokemon ca n't be killed , but Pokemon 4Ever practically assures that the pocket monster movie franchise is nearly ready to keel over 1 +64569 3268 Supposedly , Pokemon ca n't be killed , but 2 +64570 3268 Supposedly , Pokemon ca n't be killed , 2 +64571 3268 Supposedly , Pokemon ca n't be killed 2 +64572 3268 Supposedly 2 +64573 3268 , Pokemon ca n't be killed 2 +64574 3268 Pokemon ca n't be killed 2 +64575 3268 ca n't be killed 2 +64576 3268 be killed 1 +64577 3268 Pokemon 4Ever practically assures that the pocket monster movie franchise is nearly ready to keel over 0 +64578 3268 Pokemon 4Ever 4 +64579 3268 practically assures that the pocket monster movie franchise is nearly ready to keel over 1 +64580 3268 assures that the pocket monster movie franchise is nearly ready to keel over 1 +64581 3268 assures 2 +64582 3268 that the pocket monster movie franchise is nearly ready to keel over 1 +64583 3268 the pocket monster movie franchise is nearly ready to keel over 1 +64584 3268 the pocket monster movie franchise 2 +64585 3268 pocket monster movie franchise 2 +64586 3268 pocket 2 +64587 3268 monster movie franchise 2 +64588 3268 movie franchise 2 +64589 3268 is nearly ready to keel over 2 +64590 3268 is nearly ready 2 +64591 3268 nearly ready 2 +64592 3268 to keel over 1 +64593 3268 keel over 2 +64594 3268 keel 2 +64595 3269 Allen 's underestimated charm delivers more goodies than lumps of coal . 3 +64596 3269 Allen 's underestimated charm 2 +64597 3269 underestimated charm 3 +64598 3269 delivers more goodies than lumps of coal . 3 +64599 3269 delivers more goodies than lumps of coal 3 +64600 3269 delivers more goodies 3 +64601 3269 more goodies 3 +64602 3269 goodies 4 +64603 3269 than lumps of coal 2 +64604 3269 lumps of coal 1 +64605 3269 lumps 2 +64606 3269 of coal 2 +64607 3270 The hook is the drama within the drama , as an unsolved murder and an unresolved moral conflict jockey for the spotlight . 3 +64608 3270 is the drama within the drama , as an unsolved murder and an unresolved moral conflict jockey for the spotlight . 2 +64609 3270 is the drama within the drama , as an unsolved murder and an unresolved moral conflict jockey for the spotlight 2 +64610 3270 is the drama within the drama , 2 +64611 3270 is the drama within the drama 3 +64612 3270 the drama within the drama 2 +64613 3270 within the drama 2 +64614 3270 as an unsolved murder and an unresolved moral conflict jockey for the spotlight 2 +64615 3270 an unsolved murder and an unresolved moral conflict jockey for the spotlight 1 +64616 3270 an unsolved murder and 2 +64617 3270 an unsolved murder 2 +64618 3270 unsolved murder 2 +64619 3270 unsolved 2 +64620 3270 an unresolved moral conflict jockey for the spotlight 2 +64621 3270 an unresolved moral conflict jockey 2 +64622 3270 unresolved moral conflict jockey 2 +64623 3270 unresolved 2 +64624 3270 moral conflict jockey 2 +64625 3270 conflict jockey 2 +64626 3270 jockey 2 +64627 3270 for the spotlight 2 +64628 3270 the spotlight 3 +64629 3270 spotlight 2 +64630 3271 I thought the relationships were wonderful , the comedy was funny , and the love ` real ' . 4 +64631 3271 I thought the relationships were wonderful , the comedy was funny , and the love ` real ' 3 +64632 3271 I thought the relationships were wonderful , the comedy was funny , and 4 +64633 3271 I thought the relationships were wonderful , the comedy was funny , 4 +64634 3271 I thought the relationships were wonderful , the comedy was funny 4 +64635 3271 I thought the relationships were wonderful , 4 +64636 3271 I thought the relationships were wonderful 2 +64637 3271 thought the relationships were wonderful 4 +64638 3271 the relationships were wonderful 4 +64639 3271 were wonderful 3 +64640 3271 the comedy was funny 3 +64641 3271 was funny 3 +64642 3271 the love ` real ' 2 +64643 3271 ` real ' 2 +64644 3271 real ' 2 +64645 3272 There are moments of hilarity to be had . 3 +64646 3272 are moments of hilarity to be had . 3 +64647 3272 are moments of hilarity to be had 3 +64648 3272 moments of hilarity to be had 3 +64649 3272 moments of hilarity 3 +64650 3272 of hilarity 2 +64651 3272 to be had 2 +64652 3272 be had 2 +64653 3273 One problem with the movie , directed by Joel Schumacher , is that it jams too many prefabricated story elements into the running time . 1 +64654 3273 One problem with the movie , directed by Joel Schumacher , 1 +64655 3273 One problem with the movie , directed by Joel Schumacher 1 +64656 3273 One problem with the movie , 1 +64657 3273 One problem with the movie 1 +64658 3273 with the movie 2 +64659 3273 directed by Joel Schumacher 2 +64660 3273 by Joel Schumacher 2 +64661 3273 Joel Schumacher 2 +64662 3273 is that it jams too many prefabricated story elements into the running time . 1 +64663 3273 is that it jams too many prefabricated story elements into the running time 1 +64664 3273 that it jams too many prefabricated story elements into the running time 1 +64665 3273 it jams too many prefabricated story elements into the running time 2 +64666 3273 jams too many prefabricated story elements into the running time 1 +64667 3273 jams too many prefabricated story elements 1 +64668 3273 jams 2 +64669 3273 too many prefabricated story elements 1 +64670 3273 prefabricated story elements 1 +64671 3273 prefabricated 1 +64672 3273 story elements 2 +64673 3273 into the running time 2 +64674 3273 the running time 2 +64675 3274 It 's one long bore . 1 +64676 3274 It 's one 2 +64677 3274 long bore . 0 +64678 3274 bore . 1 +64679 3275 In spite of featuring a script credited to no fewer than five writers , apparently nobody here bothered to check it twice . 1 +64680 3275 In spite of featuring a script credited to no fewer than five writers 3 +64681 3275 spite of featuring a script credited to no fewer than five writers 2 +64682 3275 of featuring a script credited to no fewer than five writers 2 +64683 3275 featuring a script credited to no fewer than five writers 2 +64684 3275 a script credited to no fewer than five writers 2 +64685 3275 credited to no fewer than five writers 2 +64686 3275 to no fewer than five writers 2 +64687 3275 no fewer than five writers 2 +64688 3275 no fewer than five 2 +64689 3275 fewer than five 2 +64690 3275 than five 2 +64691 3275 , apparently nobody here bothered to check it twice . 1 +64692 3275 apparently nobody here bothered to check it twice . 1 +64693 3275 nobody here bothered to check it twice . 3 +64694 3275 here bothered to check it twice . 2 +64695 3275 bothered to check it twice . 2 +64696 3275 bothered to check it twice 2 +64697 3275 to check it twice 2 +64698 3275 check it twice 2 +64699 3276 The scriptwriters are no less a menace to society than the film 's characters . 1 +64700 3276 The scriptwriters 2 +64701 3276 scriptwriters 2 +64702 3276 are no less a menace to society than the film 's characters . 1 +64703 3276 are no less a menace to society than the film 's characters 2 +64704 3276 are no less 2 +64705 3276 no less 2 +64706 3276 a menace to society than the film 's characters 2 +64707 3276 a menace 1 +64708 3276 menace 1 +64709 3276 to society than the film 's characters 2 +64710 3276 society than the film 's characters 2 +64711 3276 than the film 's characters 2 +64712 3277 Like Mike is a slight and uninventive movie : Like the exalted Michael Jordan referred to in the title , many can aspire but none can equal . 1 +64713 3277 Like Mike is a slight and uninventive movie : Like the exalted Michael Jordan referred to in the title , many can aspire but none can equal 1 +64714 3277 Like Mike is a slight and uninventive movie : 1 +64715 3277 Like Mike is a slight and uninventive movie 1 +64716 3277 is a slight and uninventive movie 1 +64717 3277 a slight and uninventive movie 1 +64718 3277 slight and uninventive movie 2 +64719 3277 slight and uninventive 1 +64720 3277 uninventive 1 +64721 3277 Like the exalted Michael Jordan referred to in the title , many can aspire but none can equal 2 +64722 3277 Like the exalted 2 +64723 3277 the exalted 2 +64724 3277 Michael Jordan referred to in the title , many can aspire but none can equal 3 +64725 3277 Michael Jordan 2 +64726 3277 Jordan 2 +64727 3277 referred to in the title , many can aspire but none can equal 1 +64728 3277 referred to 2 +64729 3277 in the title , many can aspire but none can equal 2 +64730 3277 the title , many can aspire but none can equal 1 +64731 3277 the title , 2 +64732 3277 many can aspire but none can equal 3 +64733 3277 can aspire but none can equal 1 +64734 3277 aspire but none can equal 2 +64735 3277 aspire 2 +64736 3277 but none can equal 2 +64737 3277 none can equal 4 +64738 3277 can equal 2 +64739 3278 The most wondrous love story in years , it is a great film . 4 +64740 3278 The most wondrous love story in years 4 +64741 3278 The most wondrous love story 4 +64742 3278 most wondrous love story 4 +64743 3278 wondrous love story 3 +64744 3278 , it is a great film . 4 +64745 3278 it is a great film . 4 +64746 3278 is a great film . 4 +64747 3278 is a great film 4 +64748 3279 A prison comedy that never really busts out of its comfy little cell . 1 +64749 3279 A prison comedy that never really busts out of its comfy little cell 1 +64750 3279 A prison comedy 2 +64751 3279 prison comedy 2 +64752 3279 that never really busts out of its comfy little cell 1 +64753 3279 never really busts out of its comfy little cell 1 +64754 3279 really busts out of its comfy little cell 3 +64755 3279 busts out of its comfy little cell 3 +64756 3279 busts out 2 +64757 3279 busts 2 +64758 3279 of its comfy little cell 2 +64759 3279 its comfy little cell 2 +64760 3279 comfy little cell 2 +64761 3279 comfy 3 +64762 3279 little cell 2 +64763 3280 Writer-director Randall Wallace has bitten off more than he or anyone else could chew , and his movie veers like a drunken driver through heavy traffic . 1 +64764 3280 Writer-director Randall Wallace has bitten off more than he or anyone else could chew , and his movie veers like a drunken driver through heavy traffic 1 +64765 3280 Writer-director Randall Wallace has bitten off more than he or anyone else could chew , and 1 +64766 3280 Writer-director Randall Wallace has bitten off more than he or anyone else could chew , 1 +64767 3280 Writer-director Randall Wallace has bitten off more than he or anyone else could chew 0 +64768 3280 Writer-director Randall Wallace 2 +64769 3280 Randall Wallace 3 +64770 3280 Randall 2 +64771 3280 has bitten off more than he or anyone else could chew 1 +64772 3280 bitten off more than he or anyone else could chew 1 +64773 3280 bitten 2 +64774 3280 off more than he or anyone else could chew 1 +64775 3280 than he or anyone else could chew 2 +64776 3280 he or anyone else could chew 2 +64777 3280 he or anyone else 1 +64778 3280 he or 2 +64779 3280 could chew 2 +64780 3280 his movie veers like a drunken driver through heavy traffic 0 +64781 3280 veers like a drunken driver through heavy traffic 0 +64782 3280 veers like a drunken driver 1 +64783 3280 like a drunken driver 1 +64784 3280 a drunken driver 2 +64785 3280 drunken driver 1 +64786 3280 driver 2 +64787 3280 through heavy traffic 2 +64788 3280 heavy traffic 2 +64789 3281 Contrived as this may sound , Mr. Rose 's updating works surprisingly well . 3 +64790 3281 Contrived as this may sound 1 +64791 3281 as this may sound 2 +64792 3281 this may sound 2 +64793 3281 may sound 2 +64794 3281 , Mr. Rose 's updating works surprisingly well . 4 +64795 3281 Mr. Rose 's updating works surprisingly well . 3 +64796 3281 Mr. Rose 2 +64797 3281 Rose 2 +64798 3281 's updating works surprisingly well . 3 +64799 3281 's updating works surprisingly well 3 +64800 3281 updating works surprisingly well 4 +64801 3281 updating works 2 +64802 3281 surprisingly well 4 +64803 3282 If it were any more of a turkey , it would gobble in Dolby Digital stereo . 0 +64804 3282 If it were any more of a turkey 1 +64805 3282 it were any more of a turkey 0 +64806 3282 were any more of a turkey 1 +64807 3282 were any more 2 +64808 3282 of a turkey 2 +64809 3282 a turkey 1 +64810 3282 turkey 2 +64811 3282 , it would gobble in Dolby Digital stereo . 1 +64812 3282 it would gobble in Dolby Digital stereo . 2 +64813 3282 would gobble in Dolby Digital stereo . 2 +64814 3282 would gobble in Dolby Digital stereo 3 +64815 3282 gobble in Dolby Digital stereo 2 +64816 3282 gobble 2 +64817 3282 in Dolby Digital stereo 2 +64818 3282 Dolby Digital stereo 2 +64819 3282 Dolby 2 +64820 3282 Digital stereo 2 +64821 3282 stereo 2 +64822 3283 A culture-clash comedy that , in addition to being very funny , captures some of the discomfort and embarrassment of being a bumbling American in Europe . 3 +64823 3283 A culture-clash comedy that , in addition to being very funny , 3 +64824 3283 A culture-clash comedy that , in addition to being very funny 4 +64825 3283 A culture-clash comedy that , 2 +64826 3283 A culture-clash comedy that 2 +64827 3283 A culture-clash comedy 3 +64828 3283 culture-clash comedy 3 +64829 3283 culture-clash 2 +64830 3283 in addition to being very funny 3 +64831 3283 addition to being very funny 3 +64832 3283 to being very funny 3 +64833 3283 being very funny 4 +64834 3283 captures some of the discomfort and embarrassment of being a bumbling American in Europe . 2 +64835 3283 captures some of the discomfort and embarrassment of being a bumbling American in Europe 1 +64836 3283 some of the discomfort and embarrassment of being a bumbling American in Europe 1 +64837 3283 of the discomfort and embarrassment of being a bumbling American in Europe 1 +64838 3283 the discomfort and embarrassment of being a bumbling American in Europe 1 +64839 3283 the discomfort and embarrassment 1 +64840 3283 discomfort and embarrassment 0 +64841 3283 discomfort and 2 +64842 3283 embarrassment 2 +64843 3283 of being a bumbling American in Europe 2 +64844 3283 being a bumbling American in Europe 2 +64845 3283 a bumbling American in Europe 2 +64846 3283 a bumbling American 2 +64847 3283 bumbling American 2 +64848 3283 bumbling 1 +64849 3283 in Europe 2 +64850 3283 Europe 2 +64851 3284 Even if it is generally amusing from time to time , I Spy has all the same problems the majority of action comedies have . 1 +64852 3284 Even if it is generally amusing from time to time 2 +64853 3284 if it is generally amusing from time to time 3 +64854 3284 it is generally amusing from time to time 3 +64855 3284 is generally amusing from time to time 3 +64856 3284 is generally amusing from time 3 +64857 3284 generally amusing from time 3 +64858 3284 amusing from time 3 +64859 3284 from time 2 +64860 3284 to time 2 +64861 3284 , I Spy has all the same problems the majority of action comedies have . 1 +64862 3284 I Spy has all the same problems the majority of action comedies have . 1 +64863 3284 Spy has all the same problems the majority of action comedies have . 1 +64864 3284 has all the same problems the majority of action comedies have . 0 +64865 3284 has all the same problems the majority of action comedies have 1 +64866 3284 all the same problems the majority of action comedies have 1 +64867 3284 all the same problems 2 +64868 3284 the same problems 1 +64869 3284 same problems 2 +64870 3284 the majority of action comedies have 2 +64871 3284 the majority of action comedies 2 +64872 3284 the majority 2 +64873 3284 of action comedies 2 +64874 3284 action comedies 2 +64875 3285 What the audience feels is exhaustion , from watching a movie that is dark -LRB- dark green , to be exact -RRB- , sour , bloody and mean . 1 +64876 3285 What the audience feels 2 +64877 3285 the audience feels 2 +64878 3285 is exhaustion , from watching a movie that is dark -LRB- dark green , to be exact -RRB- , sour , bloody and mean . 1 +64879 3285 is exhaustion , from watching a movie that is dark -LRB- dark green , to be exact -RRB- , sour , bloody and mean 1 +64880 3285 exhaustion , from watching a movie that is dark -LRB- dark green , to be exact -RRB- , sour , bloody and mean 0 +64881 3285 exhaustion , from watching a movie that is dark -LRB- dark green , to be exact -RRB- , 1 +64882 3285 exhaustion , from watching a movie that is dark -LRB- dark green , to be exact -RRB- 1 +64883 3285 exhaustion , 2 +64884 3285 exhaustion 2 +64885 3285 from watching a movie that is dark -LRB- dark green , to be exact -RRB- 2 +64886 3285 watching a movie that is dark -LRB- dark green , to be exact -RRB- 2 +64887 3285 a movie that is dark -LRB- dark green , to be exact -RRB- 2 +64888 3285 a movie that is dark 2 +64889 3285 that is dark 1 +64890 3285 is dark 2 +64891 3285 -LRB- dark green , to be exact -RRB- 2 +64892 3285 dark green , to be exact -RRB- 2 +64893 3285 dark green , to be exact 2 +64894 3285 dark green , 2 +64895 3285 dark green 2 +64896 3285 to be exact 2 +64897 3285 be exact 2 +64898 3285 sour , bloody and mean 1 +64899 3285 , bloody and mean 1 +64900 3285 bloody and mean 2 +64901 3285 bloody and 2 +64902 3286 On a cutting room floor somewhere lies ... footage that might have made No Such Thing a trenchant , ironic cultural satire instead of a frustrating misfire . 0 +64903 3286 On a cutting room floor 2 +64904 3286 a cutting room floor 2 +64905 3286 cutting room floor 2 +64906 3286 room floor 2 +64907 3286 somewhere lies ... footage that might have made No Such Thing a trenchant , ironic cultural satire instead of a frustrating misfire . 0 +64908 3286 lies ... footage that might have made No Such Thing a trenchant , ironic cultural satire instead of a frustrating misfire . 1 +64909 3286 lies ... footage that might have made No Such Thing a trenchant , ironic cultural satire instead of a frustrating misfire 1 +64910 3286 lies ... 1 +64911 3286 footage that might have made No Such Thing a trenchant , ironic cultural satire instead of a frustrating misfire 1 +64912 3286 footage that might have made No Such Thing 2 +64913 3286 that might have made No Such Thing 3 +64914 3286 might have made No Such Thing 2 +64915 3286 have made No Such Thing 2 +64916 3286 made No Such Thing 1 +64917 3286 a trenchant , ironic cultural satire instead of a frustrating misfire 3 +64918 3286 a trenchant , ironic cultural satire 2 +64919 3286 trenchant , ironic cultural satire 2 +64920 3286 trenchant 2 +64921 3286 , ironic cultural satire 2 +64922 3286 ironic cultural satire 3 +64923 3286 cultural satire 3 +64924 3286 instead of a frustrating misfire 2 +64925 3286 of a frustrating misfire 1 +64926 3286 a frustrating misfire 1 +64927 3286 frustrating misfire 1 +64928 3287 Colorful and deceptively buoyant until it suddenly pulls the rug out from under you , Burkinabe filmmaker Dani Kouyate 's reworking of a folk story whose roots go back to 7th-century oral traditions is also a pointed political allegory . 2 +64929 3287 Colorful and deceptively buoyant until it suddenly pulls the rug out from under you 3 +64930 3287 Colorful and deceptively buoyant 3 +64931 3287 and deceptively buoyant 2 +64932 3287 deceptively buoyant 3 +64933 3287 until it suddenly pulls the rug out from under you 2 +64934 3287 it suddenly pulls the rug out from under you 2 +64935 3287 suddenly pulls the rug out from under you 3 +64936 3287 suddenly 2 +64937 3287 pulls the rug out from under you 3 +64938 3287 pulls the rug out 2 +64939 3287 pulls the rug 2 +64940 3287 from under you 2 +64941 3287 under you 2 +64942 3287 , Burkinabe filmmaker Dani Kouyate 's reworking of a folk story whose roots go back to 7th-century oral traditions is also a pointed political allegory . 3 +64943 3287 Burkinabe filmmaker Dani Kouyate 's reworking of a folk story whose roots go back to 7th-century oral traditions is also a pointed political allegory . 3 +64944 3287 Burkinabe filmmaker Dani Kouyate 's reworking of a folk story whose roots go back to 7th-century oral traditions 2 +64945 3287 Burkinabe filmmaker Dani Kouyate 's reworking 2 +64946 3287 Burkinabe filmmaker Dani Kouyate 's 2 +64947 3287 Burkinabe 2 +64948 3287 filmmaker Dani Kouyate 's 2 +64949 3287 Dani Kouyate 's 2 +64950 3287 Dani 2 +64951 3287 Kouyate 's 2 +64952 3287 of a folk story whose roots go back to 7th-century oral traditions 2 +64953 3287 a folk story whose roots go back to 7th-century oral traditions 2 +64954 3287 a folk story 2 +64955 3287 folk story 2 +64956 3287 whose roots go back to 7th-century oral traditions 2 +64957 3287 whose roots 2 +64958 3287 go back to 7th-century oral traditions 2 +64959 3287 go back 2 +64960 3287 to 7th-century oral traditions 2 +64961 3287 7th-century oral traditions 2 +64962 3287 7th-century 2 +64963 3287 oral traditions 2 +64964 3287 oral 2 +64965 3287 is also a pointed political allegory . 1 +64966 3287 is also a pointed political allegory 3 +64967 3287 a pointed political allegory 3 +64968 3287 pointed political allegory 2 +64969 3287 political allegory 2 +64970 3288 Arteta directs one of the best ensemble casts of the year 4 +64971 3288 Arteta 2 +64972 3288 directs one of the best ensemble casts of the year 4 +64973 3288 one of the best ensemble casts of the year 4 +64974 3288 of the best ensemble casts of the year 4 +64975 3288 the best ensemble casts of the year 4 +64976 3288 the best ensemble casts 4 +64977 3288 best ensemble casts 3 +64978 3288 ensemble casts 2 +64979 3289 Nothing happens , and it happens to flat characters . 1 +64980 3289 Nothing happens , and it happens to flat characters 1 +64981 3289 Nothing happens , and 1 +64982 3289 Nothing happens , 1 +64983 3289 Nothing happens 1 +64984 3289 it happens to flat characters 1 +64985 3289 happens to flat characters 2 +64986 3289 to flat characters 1 +64987 3289 flat characters 1 +64988 3290 Lee 's achievement extends to his supple understanding of the role that Brown played in American culture as an athlete , a movie star , and an image of black indomitability . 3 +64989 3290 Lee 's achievement 3 +64990 3290 Lee 's 2 +64991 3290 extends to his supple understanding of the role that Brown played in American culture as an athlete , a movie star , and an image of black indomitability . 3 +64992 3290 extends to his supple understanding of the role that Brown played in American culture as an athlete , a movie star , and an image of black indomitability 3 +64993 3290 extends to his supple understanding of the role 3 +64994 3290 extends 2 +64995 3290 to his supple understanding of the role 3 +64996 3290 his supple understanding of the role 3 +64997 3290 his supple understanding 2 +64998 3290 supple understanding 2 +64999 3290 supple 2 +65000 3290 of the role 2 +65001 3290 that Brown played in American culture as an athlete , a movie star , and an image of black indomitability 3 +65002 3290 Brown played in American culture as an athlete , a movie star , and an image of black indomitability 3 +65003 3290 played in American culture as an athlete , a movie star , and an image of black indomitability 2 +65004 3290 played in American culture 2 +65005 3290 in American culture 2 +65006 3290 American culture 2 +65007 3290 as an athlete , a movie star , and an image of black indomitability 2 +65008 3290 an athlete , a movie star , and an image of black indomitability 2 +65009 3290 an athlete , a movie star , and 3 +65010 3290 an athlete , a movie star , 3 +65011 3290 an athlete , a movie star 3 +65012 3290 an athlete , 2 +65013 3290 an athlete 3 +65014 3290 athlete 2 +65015 3290 a movie star 3 +65016 3290 movie star 2 +65017 3290 an image of black indomitability 2 +65018 3290 an image 2 +65019 3290 of black indomitability 1 +65020 3290 black indomitability 1 +65021 3290 indomitability 2 +65022 3291 This rush to profits has created a predictably efficient piece of business notable largely for its overwhelming creepiness , for an eagerness to create images you wish you had n't seen , which , in this day and age , is of course the point . 3 +65023 3291 This rush to profits 1 +65024 3291 This rush 2 +65025 3291 to profits 2 +65026 3291 profits 3 +65027 3291 has created a predictably efficient piece of business notable largely for its overwhelming creepiness , for an eagerness to create images you wish you had n't seen , which , in this day and age , is of course the point . 3 +65028 3291 has created a predictably efficient piece of business notable largely for its overwhelming creepiness , for an eagerness to create images you wish you had n't seen , which , in this day and age , is of course the point 3 +65029 3291 created a predictably efficient piece of business notable largely for its overwhelming creepiness , for an eagerness to create images you wish you had n't seen , which , in this day and age , is of course the point 3 +65030 3291 a predictably efficient piece of business notable largely for its overwhelming creepiness , for an eagerness to create images you wish you had n't seen , which , in this day and age , is of course the point 3 +65031 3291 a predictably efficient piece of business notable largely for its overwhelming creepiness , for an eagerness to create images you wish you had n't seen , 2 +65032 3291 a predictably efficient piece of business notable largely for its overwhelming creepiness , for an eagerness to create images you wish you had n't seen 3 +65033 3291 a predictably efficient piece 3 +65034 3291 predictably efficient piece 3 +65035 3291 predictably efficient 3 +65036 3291 of business notable largely for its overwhelming creepiness , for an eagerness to create images you wish you had n't seen 1 +65037 3291 business notable largely for its overwhelming creepiness , for an eagerness to create images you wish you had n't seen 1 +65038 3291 notable largely for its overwhelming creepiness , for an eagerness to create images you wish you had n't seen 2 +65039 3291 notable largely for its overwhelming creepiness , for an eagerness 3 +65040 3291 notable largely 2 +65041 3291 for its overwhelming creepiness , for an eagerness 2 +65042 3291 for its overwhelming creepiness 1 +65043 3291 its overwhelming creepiness 2 +65044 3291 overwhelming creepiness 2 +65045 3291 creepiness 1 +65046 3291 , for an eagerness 2 +65047 3291 for an eagerness 3 +65048 3291 an eagerness 2 +65049 3291 eagerness 2 +65050 3291 to create images you wish you had n't seen 0 +65051 3291 create images you wish you had n't seen 1 +65052 3291 images you wish you had n't seen 1 +65053 3291 you wish you had n't seen 0 +65054 3291 wish you had n't seen 1 +65055 3291 you had n't seen 2 +65056 3291 had n't seen 2 +65057 3291 had n't 2 +65058 3291 which , in this day and age , is of course the point 2 +65059 3291 , in this day and age , is of course the point 2 +65060 3291 in this day and age , is of course the point 2 +65061 3291 in this day and age 2 +65062 3291 this day and age 2 +65063 3291 day and age 2 +65064 3291 day and 2 +65065 3291 , is of course the point 2 +65066 3291 is of course the point 2 +65067 3291 of course the point 2 +65068 3291 course the point 2 +65069 3292 It is an unstinting look at a collaboration between damaged people that may or may not qual 3 +65070 3292 is an unstinting look at a collaboration between damaged people that may or may not qual 2 +65071 3292 an unstinting look at a collaboration between damaged people that may or may not qual 2 +65072 3292 an unstinting look at a collaboration between damaged people 2 +65073 3292 an unstinting look 2 +65074 3292 unstinting look 2 +65075 3292 unstinting 1 +65076 3292 at a collaboration between damaged people 2 +65077 3292 a collaboration between damaged people 2 +65078 3292 a collaboration 2 +65079 3292 collaboration 2 +65080 3292 between damaged people 2 +65081 3292 damaged people 2 +65082 3292 that may or may not qual 2 +65083 3292 may or may not qual 2 +65084 3292 may or may not 2 +65085 3292 may or may 2 +65086 3292 may or 2 +65087 3292 qual 2 +65088 3293 The milieu is wholly unconvincing ... and the histrionics reach a truly annoying pitch . 1 +65089 3293 The milieu is wholly unconvincing ... and the histrionics reach a truly annoying pitch 0 +65090 3293 The milieu is wholly unconvincing ... and 1 +65091 3293 The milieu is wholly unconvincing ... 1 +65092 3293 The milieu is wholly unconvincing 1 +65093 3293 The milieu 2 +65094 3293 is wholly unconvincing 1 +65095 3293 wholly unconvincing 1 +65096 3293 the histrionics reach a truly annoying pitch 1 +65097 3293 the histrionics 2 +65098 3293 reach a truly annoying pitch 1 +65099 3293 a truly annoying pitch 0 +65100 3293 truly annoying pitch 0 +65101 3293 truly annoying 1 +65102 3294 Every potential twist is telegraphed well in advance , every performance respectably muted ; the movie itself seems to have been made under the influence of Rohypnol . 2 +65103 3294 Every potential twist 2 +65104 3294 potential twist 2 +65105 3294 is telegraphed well in advance , every performance respectably muted ; the movie itself seems to have been made under the influence of Rohypnol . 1 +65106 3294 is telegraphed well in advance , every performance respectably muted ; the movie itself seems to have been made under the influence of Rohypnol 1 +65107 3294 telegraphed well in advance , every performance respectably muted ; the movie itself seems to have been made under the influence of Rohypnol 2 +65108 3294 telegraphed well in advance , 2 +65109 3294 telegraphed well in advance 2 +65110 3294 telegraphed well 3 +65111 3294 every performance respectably muted ; the movie itself seems to have been made under the influence of Rohypnol 2 +65112 3294 every performance respectably muted ; 2 +65113 3294 every performance respectably muted 2 +65114 3294 every performance 2 +65115 3294 respectably muted 2 +65116 3294 respectably 3 +65117 3294 the movie itself seems to have been made under the influence of Rohypnol 0 +65118 3294 itself seems to have been made under the influence of Rohypnol 2 +65119 3294 seems to have been made under the influence of Rohypnol 0 +65120 3294 to have been made under the influence of Rohypnol 1 +65121 3294 have been made under the influence of Rohypnol 2 +65122 3294 been made under the influence of Rohypnol 1 +65123 3294 made under the influence of Rohypnol 0 +65124 3294 under the influence of Rohypnol 2 +65125 3294 the influence of Rohypnol 2 +65126 3294 the influence 2 +65127 3294 of Rohypnol 2 +65128 3294 Rohypnol 2 +65129 3295 ` Men in Black II creates a new threat for the MIB , but recycles the same premise . 2 +65130 3295 Men in Black II creates a new threat for the MIB , but recycles the same premise . 1 +65131 3295 creates a new threat for the MIB , but recycles the same premise . 2 +65132 3295 creates a new threat for the MIB , but recycles the same premise 1 +65133 3295 creates a new threat for the MIB , but 2 +65134 3295 creates a new threat for the MIB , 2 +65135 3295 creates a new threat for the MIB 2 +65136 3295 a new threat for the MIB 2 +65137 3295 a new threat 2 +65138 3295 new threat 2 +65139 3295 for the MIB 2 +65140 3295 the MIB 2 +65141 3295 recycles the same premise 1 +65142 3295 recycles 2 +65143 3295 the same premise 2 +65144 3295 same premise 1 +65145 3296 A bracing , unblinking work that serves as a painful elegy and sobering cautionary tale . 3 +65146 3296 A bracing , unblinking work that serves as a painful elegy and sobering cautionary tale 4 +65147 3296 A bracing , 2 +65148 3296 A bracing 3 +65149 3296 unblinking work that serves as a painful elegy and sobering cautionary tale 2 +65150 3296 unblinking work 3 +65151 3296 that serves as a painful elegy and sobering cautionary tale 3 +65152 3296 serves as a painful elegy and sobering cautionary tale 3 +65153 3296 as a painful elegy and sobering cautionary tale 3 +65154 3296 a painful elegy and sobering cautionary tale 2 +65155 3296 a painful elegy and 1 +65156 3296 a painful elegy 2 +65157 3296 painful elegy 1 +65158 3296 elegy 2 +65159 3296 sobering cautionary tale 3 +65160 3297 Pacino is the best he 's been in years and Keener is marvelous . 4 +65161 3297 Pacino is the best he 's been in years and Keener is marvelous 3 +65162 3297 Pacino is the best he 's been in years and 4 +65163 3297 Pacino is the best he 's been in years 4 +65164 3297 is the best he 's been in years 4 +65165 3297 the best he 's been in years 4 +65166 3297 he 's been in years 1 +65167 3297 's been in years 2 +65168 3297 been in years 2 +65169 3297 Keener is marvelous 4 +65170 3297 Keener 2 +65171 3297 is marvelous 4 +65172 3298 An awkwardly garish showcase that diverges from anything remotely probing or penetrating . 0 +65173 3298 An awkwardly garish showcase that diverges from anything 1 +65174 3298 An awkwardly garish showcase 1 +65175 3298 awkwardly garish showcase 1 +65176 3298 garish showcase 1 +65177 3298 garish 2 +65178 3298 that diverges from anything 2 +65179 3298 diverges from anything 3 +65180 3298 diverges 2 +65181 3298 from anything 2 +65182 3298 remotely probing or penetrating . 1 +65183 3298 remotely probing or penetrating 2 +65184 3298 probing or penetrating 3 +65185 3298 probing or 2 +65186 3299 His work with actors is particularly impressive . 4 +65187 3299 His work with actors 2 +65188 3299 with actors 2 +65189 3299 is particularly impressive . 3 +65190 3299 is particularly impressive 3 +65191 3299 particularly impressive 3 +65192 3300 ... while Dark Water is n't a complete wash -LRB- no pun intended -RRB- , watched side-by-side with Ringu , it ultimately comes off as a pale successor . 1 +65193 3300 while Dark Water is n't a complete wash -LRB- no pun intended -RRB- , watched side-by-side with Ringu , it ultimately comes off as a pale successor . 1 +65194 3300 while Dark Water is n't a complete wash -LRB- no pun intended -RRB- , watched side-by-side with Ringu 2 +65195 3300 Dark Water is n't a complete wash -LRB- no pun intended -RRB- , watched side-by-side with Ringu 2 +65196 3300 Dark Water 2 +65197 3300 is n't a complete wash -LRB- no pun intended -RRB- , watched side-by-side with Ringu 2 +65198 3300 a complete wash -LRB- no pun intended -RRB- , watched side-by-side with Ringu 2 +65199 3300 a complete wash -LRB- no pun intended -RRB- , 1 +65200 3300 a complete wash -LRB- no pun intended -RRB- 2 +65201 3300 a complete wash 1 +65202 3300 complete wash 1 +65203 3300 wash 2 +65204 3300 -LRB- no pun intended -RRB- 2 +65205 3300 no pun intended -RRB- 2 +65206 3300 no pun intended 2 +65207 3300 no pun 2 +65208 3300 watched side-by-side with Ringu 2 +65209 3300 watched side-by-side 2 +65210 3300 watched 2 +65211 3300 side-by-side 2 +65212 3300 with Ringu 2 +65213 3300 , it ultimately comes off as a pale successor . 1 +65214 3300 it ultimately comes off as a pale successor . 2 +65215 3300 ultimately comes off as a pale successor . 0 +65216 3300 comes off as a pale successor . 0 +65217 3300 comes off as a pale successor 1 +65218 3300 as a pale successor 1 +65219 3300 a pale successor 1 +65220 3300 pale successor 1 +65221 3300 successor 2 +65222 3301 ... bibbidy-bobbidi-bland . 0 +65223 3301 bibbidy-bobbidi-bland . 0 +65224 3301 bibbidy-bobbidi-bland 0 +65225 3302 It 's light on the chills and heavy on the atmospheric weirdness , and there are moments of jaw-droppingly odd behavior -- yet I found it weirdly appealing . 3 +65226 3302 It 's light on the chills and heavy on the atmospheric weirdness , and there are moments of jaw-droppingly odd behavior -- yet I found it weirdly appealing 3 +65227 3302 It 's light on the chills and heavy on the atmospheric weirdness , and there are moments of jaw-droppingly odd behavior -- 2 +65228 3302 It 's light on the chills and heavy on the atmospheric weirdness , and there are moments of jaw-droppingly odd behavior 1 +65229 3302 It 's light on the chills and heavy on the atmospheric weirdness , and 2 +65230 3302 It 's light on the chills and heavy on the atmospheric weirdness , 3 +65231 3302 It 's light on the chills and heavy on the atmospheric weirdness 1 +65232 3302 's light on the chills and heavy on the atmospheric weirdness 2 +65233 3302 light on the chills and heavy on the atmospheric weirdness 2 +65234 3302 light on the chills and 2 +65235 3302 light on the chills 2 +65236 3302 on the chills 2 +65237 3302 the chills 1 +65238 3302 heavy on the atmospheric weirdness 1 +65239 3302 on the atmospheric weirdness 2 +65240 3302 the atmospheric weirdness 2 +65241 3302 atmospheric weirdness 3 +65242 3302 weirdness 1 +65243 3302 there are moments of jaw-droppingly odd behavior 2 +65244 3302 are moments of jaw-droppingly odd behavior 2 +65245 3302 moments of jaw-droppingly odd behavior 3 +65246 3302 of jaw-droppingly odd behavior 2 +65247 3302 jaw-droppingly odd behavior 2 +65248 3302 odd behavior 2 +65249 3302 yet I found it weirdly appealing 3 +65250 3302 I found it weirdly appealing 3 +65251 3302 found it weirdly appealing 3 +65252 3302 it weirdly appealing 3 +65253 3302 weirdly appealing 3 +65254 3303 They kept much of the plot but jettisoned the stuff that would make this a moving experience for people who have n't read the book . 1 +65255 3303 kept much of the plot but jettisoned the stuff that would make this a moving experience for people who have n't read the book . 2 +65256 3303 kept much of the plot but jettisoned the stuff that would make this a moving experience for people who have n't read the book 1 +65257 3303 kept much of the plot but 2 +65258 3303 kept much of the plot 3 +65259 3303 kept 2 +65260 3303 much of the plot 2 +65261 3303 jettisoned the stuff that would make this a moving experience for people who have n't read the book 2 +65262 3303 jettisoned 2 +65263 3303 the stuff that would make this a moving experience for people who have n't read the book 2 +65264 3303 the stuff 2 +65265 3303 that would make this a moving experience for people who have n't read the book 3 +65266 3303 would make this a moving experience for people who have n't read the book 3 +65267 3303 make this a moving experience for people who have n't read the book 3 +65268 3303 this a moving experience for people who have n't read the book 3 +65269 3303 a moving experience for people who have n't read the book 4 +65270 3303 a moving experience 4 +65271 3303 moving experience 4 +65272 3303 for people who have n't read the book 2 +65273 3303 people who have n't read the book 2 +65274 3303 who have n't read the book 2 +65275 3303 have n't read the book 2 +65276 3304 Oh , and more entertaining , too . 3 +65277 3304 , and more entertaining , too . 2 +65278 3304 and more entertaining , too . 3 +65279 3304 and more entertaining , too 3 +65280 3304 more entertaining , too 3 +65281 3304 more entertaining , 3 +65282 3305 This little film is so slovenly done , so primitive in technique , that it ca n't really be called animation . 0 +65283 3305 This little film 2 +65284 3305 is so slovenly done , so primitive in technique , that it ca n't really be called animation . 0 +65285 3305 is so slovenly done , so primitive in technique , that it ca n't really be called animation 1 +65286 3305 slovenly done , so primitive in technique , that it ca n't really be called animation 0 +65287 3305 slovenly 2 +65288 3305 done , so primitive in technique , that it ca n't really be called animation 1 +65289 3305 done , so primitive in technique , 1 +65290 3305 done , so primitive in technique 1 +65291 3305 so primitive in technique 1 +65292 3305 primitive in technique 2 +65293 3305 primitive 2 +65294 3305 in technique 2 +65295 3305 that it ca n't really be called animation 1 +65296 3305 it ca n't really be called animation 1 +65297 3305 ca n't really be called animation 1 +65298 3305 ca n't really 2 +65299 3305 be called animation 3 +65300 3305 called animation 2 +65301 3306 the film never rises above a conventional , two dimension tale 1 +65302 3306 never rises above a conventional , two dimension tale 2 +65303 3306 rises above a conventional , two dimension tale 2 +65304 3306 above a conventional , two dimension tale 2 +65305 3306 a conventional , two dimension tale 2 +65306 3306 a conventional , 2 +65307 3306 a conventional 2 +65308 3306 two dimension tale 3 +65309 3306 dimension tale 2 +65310 3307 The audience when I saw this one was chuckling at all the wrong times , and that 's a bad sign when they 're supposed to be having a collective heart attack . 1 +65311 3307 The audience when I saw this one was chuckling at all the wrong times , and that 's a bad sign when they 're supposed to be having a collective heart attack 1 +65312 3307 The audience when I saw this one was chuckling at all the wrong times , and 1 +65313 3307 The audience when I saw this one was chuckling at all the wrong times , 2 +65314 3307 The audience when I saw this one was chuckling at all the wrong times 2 +65315 3307 The audience when I saw this one 2 +65316 3307 when I saw this one 2 +65317 3307 I saw this one 3 +65318 3307 saw this one 2 +65319 3307 was chuckling at all the wrong times 1 +65320 3307 chuckling at all the wrong times 2 +65321 3307 chuckling 2 +65322 3307 at all the wrong times 1 +65323 3307 all the wrong times 2 +65324 3307 the wrong times 1 +65325 3307 wrong times 2 +65326 3307 that 's a bad sign when they 're supposed to be having a collective heart attack 1 +65327 3307 's a bad sign when they 're supposed to be having a collective heart attack 1 +65328 3307 a bad sign when they 're supposed to be having a collective heart attack 0 +65329 3307 when they 're supposed to be having a collective heart attack 2 +65330 3307 they 're supposed to be having a collective heart attack 2 +65331 3307 're supposed to be having a collective heart attack 2 +65332 3307 supposed to be having a collective heart attack 2 +65333 3307 to be having a collective heart attack 2 +65334 3307 be having a collective heart attack 2 +65335 3307 having a collective heart attack 2 +65336 3307 a collective heart attack 1 +65337 3307 collective heart attack 1 +65338 3307 heart attack 1 +65339 3308 This is historical filmmaking without the balm of right-thinking ideology , either liberal or conservative . 3 +65340 3308 is historical filmmaking without the balm of right-thinking ideology , either liberal or conservative . 3 +65341 3308 is historical filmmaking without the balm of right-thinking ideology , either liberal or conservative 3 +65342 3308 is historical 2 +65343 3308 filmmaking without the balm of right-thinking ideology , either liberal or conservative 3 +65344 3308 filmmaking without the balm of right-thinking ideology 2 +65345 3308 without the balm of right-thinking ideology 2 +65346 3308 the balm of right-thinking ideology 2 +65347 3308 the balm 2 +65348 3308 balm 2 +65349 3308 of right-thinking ideology 2 +65350 3308 right-thinking ideology 2 +65351 3308 ideology 2 +65352 3308 , either liberal or conservative 2 +65353 3308 , either 2 +65354 3308 liberal or conservative 2 +65355 3308 liberal or 2 +65356 3308 liberal 2 +65357 3309 Sayles is making a statement about the inability of dreams and aspirations to carry forward into the next generation . 2 +65358 3309 Sayles 2 +65359 3309 is making a statement about the inability of dreams and aspirations to carry forward into the next generation . 2 +65360 3309 is making a statement about the inability of dreams and aspirations to carry forward into the next generation 2 +65361 3309 making a statement about the inability of dreams and aspirations to carry forward into the next generation 3 +65362 3309 making a statement about the inability of dreams and aspirations 2 +65363 3309 making a statement 3 +65364 3309 a statement 2 +65365 3309 statement 2 +65366 3309 about the inability of dreams and aspirations 1 +65367 3309 the inability of dreams and aspirations 2 +65368 3309 the inability 1 +65369 3309 of dreams and aspirations 2 +65370 3309 dreams and aspirations 3 +65371 3309 dreams and 2 +65372 3309 to carry forward into the next generation 2 +65373 3309 carry forward into the next generation 3 +65374 3309 carry forward 2 +65375 3309 forward 2 +65376 3309 into the next generation 2 +65377 3309 the next generation 3 +65378 3309 next generation 2 +65379 3310 Extremely bad . 0 +65380 3310 Extremely bad 0 +65381 3311 The somber pacing and lack of dramatic fireworks make Green Dragon seem more like medicine than entertainment . 0 +65382 3311 The somber pacing and lack of dramatic fireworks 1 +65383 3311 The somber pacing and lack 1 +65384 3311 somber pacing and lack 1 +65385 3311 pacing and lack 1 +65386 3311 pacing and 2 +65387 3311 of dramatic fireworks 3 +65388 3311 dramatic fireworks 2 +65389 3311 make Green Dragon seem more like medicine than entertainment . 1 +65390 3311 make Green Dragon seem more like medicine than entertainment 1 +65391 3311 Green Dragon seem more like medicine than entertainment 1 +65392 3311 Green Dragon 2 +65393 3311 seem more like medicine than entertainment 2 +65394 3311 seem more like medicine 1 +65395 3311 more like medicine 2 +65396 3311 like medicine 2 +65397 3311 than entertainment 2 +65398 3312 Handsome and sophisticated approach to the workplace romantic comedy . 3 +65399 3312 Handsome and sophisticated 2 +65400 3312 Handsome and 3 +65401 3312 approach to the workplace romantic comedy . 3 +65402 3312 approach to the workplace romantic comedy 3 +65403 3312 approach to the workplace 2 +65404 3312 to the workplace 2 +65405 3312 the workplace 2 +65406 3312 workplace 2 +65407 3313 A moving and solidly entertaining comedy\/drama that should bolster director and co-writer 4 +65408 3313 A moving and solidly entertaining comedy\/drama 4 +65409 3313 moving and solidly entertaining comedy\/drama 4 +65410 3313 moving and solidly entertaining 3 +65411 3313 comedy\/drama 2 +65412 3313 that should bolster director and co-writer 3 +65413 3313 should bolster director and co-writer 3 +65414 3313 bolster director and co-writer 3 +65415 3313 bolster 2 +65416 3313 director and co-writer 2 +65417 3313 director and 2 +65418 3313 Campanella 's 2 +65419 3314 More of a career curio than a major work . 2 +65420 3314 More of a career curio than a major work 2 +65421 3314 More of a career curio 2 +65422 3314 of a career curio 2 +65423 3314 a career curio 2 +65424 3314 career curio 2 +65425 3314 curio 2 +65426 3314 than a major work 2 +65427 3314 a major work 3 +65428 3314 major work 2 +65429 3315 A rude black comedy about the catalytic effect a holy fool has upon those around him in the cutthroat world of children 's television . 1 +65430 3315 A rude black comedy about the catalytic effect a holy fool 1 +65431 3315 A rude black comedy 1 +65432 3315 rude black comedy 1 +65433 3315 about the catalytic effect a holy fool 2 +65434 3315 the catalytic effect a holy fool 2 +65435 3315 the catalytic effect 2 +65436 3315 catalytic effect 2 +65437 3315 catalytic 2 +65438 3315 a holy fool 1 +65439 3315 holy fool 2 +65440 3315 holy 2 +65441 3315 has upon those around him in the cutthroat world of children 's television . 2 +65442 3315 has upon those around him in the cutthroat world of children 's television 2 +65443 3315 upon those around him in the cutthroat world of children 's television 2 +65444 3315 those around him in the cutthroat world of children 's television 2 +65445 3315 those around him 2 +65446 3315 around him 2 +65447 3315 in the cutthroat world of children 's television 2 +65448 3315 the cutthroat world of children 's television 2 +65449 3315 the cutthroat world 2 +65450 3315 cutthroat world 2 +65451 3315 cutthroat 2 +65452 3315 of children 's television 2 +65453 3315 children 's television 2 +65454 3316 It 's obvious -LRB- Je-Gyu is -RRB- trying for poetry ; what he gets instead has all the lyricism of a limerick scrawled in a public restroom . 2 +65455 3316 It 's obvious -LRB- Je-Gyu is -RRB- trying for poetry ; what he gets instead has all the lyricism of a limerick scrawled in a public restroom 0 +65456 3316 It 's obvious -LRB- Je-Gyu is -RRB- trying for poetry ; 1 +65457 3316 It 's obvious -LRB- Je-Gyu is -RRB- trying for poetry 2 +65458 3316 's obvious -LRB- Je-Gyu is -RRB- trying for poetry 2 +65459 3316 obvious -LRB- Je-Gyu is -RRB- trying for poetry 3 +65460 3316 obvious -LRB- Je-Gyu is -RRB- 2 +65461 3316 -LRB- Je-Gyu is -RRB- 2 +65462 3316 Je-Gyu is -RRB- 2 +65463 3316 Je-Gyu is 2 +65464 3316 Je-Gyu 2 +65465 3316 trying for poetry 2 +65466 3316 what he gets instead has all the lyricism of a limerick scrawled in a public restroom 1 +65467 3316 what he gets 2 +65468 3316 he gets 2 +65469 3316 instead has all the lyricism of a limerick scrawled in a public restroom 1 +65470 3316 has all the lyricism of a limerick scrawled in a public restroom 1 +65471 3316 all the lyricism of a limerick scrawled in a public restroom 1 +65472 3316 all the lyricism 2 +65473 3316 the lyricism 2 +65474 3316 lyricism 2 +65475 3316 of a limerick scrawled in a public restroom 2 +65476 3316 a limerick scrawled in a public restroom 1 +65477 3316 a limerick 2 +65478 3316 limerick 2 +65479 3316 scrawled in a public restroom 2 +65480 3316 scrawled 1 +65481 3316 in a public restroom 2 +65482 3316 a public restroom 2 +65483 3316 public restroom 2 +65484 3316 restroom 2 +65485 3317 The movie 's ultimate point -- that everyone should be themselves -- is trite , but the screenwriter and director Michel Gondry restate it to the point of ridiculousness . 0 +65486 3317 The movie 's ultimate point -- that everyone should be themselves -- is trite , but the screenwriter and director Michel Gondry restate it to the point of ridiculousness 1 +65487 3317 The movie 's ultimate point -- that everyone should be themselves -- is trite , but 1 +65488 3317 The movie 's ultimate point -- that everyone should be themselves -- is trite , 1 +65489 3317 The movie 's ultimate point -- that everyone should be themselves -- is trite 1 +65490 3317 The movie 's ultimate point -- that everyone should be themselves -- 2 +65491 3317 ultimate point -- that everyone should be themselves -- 3 +65492 3317 point -- that everyone should be themselves -- 2 +65493 3317 -- that everyone should be themselves -- 2 +65494 3317 that everyone should be themselves -- 2 +65495 3317 that everyone should be themselves 2 +65496 3317 everyone should be themselves 2 +65497 3317 should be themselves 3 +65498 3317 be themselves 1 +65499 3317 is trite 1 +65500 3317 the screenwriter and director Michel Gondry restate it to the point of ridiculousness 1 +65501 3317 the screenwriter and director Michel Gondry 2 +65502 3317 the screenwriter and 2 +65503 3317 the screenwriter 2 +65504 3317 director Michel Gondry 2 +65505 3317 Michel Gondry 2 +65506 3317 Michel 3 +65507 3317 Gondry 2 +65508 3317 restate it to the point of ridiculousness 2 +65509 3317 restate it 2 +65510 3317 restate 1 +65511 3317 to the point of ridiculousness 0 +65512 3317 the point of ridiculousness 0 +65513 3317 of ridiculousness 1 +65514 3318 Ringu is a disaster of a story , full of holes and completely lacking in chills . 0 +65515 3318 is a disaster of a story , full of holes and completely lacking in chills . 0 +65516 3318 is a disaster of a story , full of holes and completely lacking in chills 0 +65517 3318 a disaster of a story , full of holes and completely lacking in chills 0 +65518 3318 a disaster of a story , 1 +65519 3318 a disaster of a story 0 +65520 3318 a disaster 0 +65521 3318 full of holes and completely lacking in chills 0 +65522 3318 of holes and completely lacking in chills 1 +65523 3318 holes and completely lacking in chills 0 +65524 3318 holes and 2 +65525 3318 completely lacking in chills 1 +65526 3318 lacking in chills 1 +65527 3318 in chills 2 +65528 3319 Hopelessly inane , humorless and under-inspired . 0 +65529 3319 inane , humorless and under-inspired . 1 +65530 3319 inane , humorless and under-inspired 0 +65531 3319 , humorless and under-inspired 1 +65532 3319 humorless and under-inspired 2 +65533 3319 humorless and 1 +65534 3319 under-inspired 0 +65535 3320 A high-spirited buddy movie about the reunion of Berlin anarchists who face arrest 15 years after their crime . 3 +65536 3320 A high-spirited buddy movie about the reunion of Berlin 3 +65537 3320 A high-spirited buddy movie 4 +65538 3320 high-spirited buddy movie 3 +65539 3320 high-spirited 3 +65540 3320 buddy movie 2 +65541 3320 buddy 2 +65542 3320 about the reunion of Berlin 2 +65543 3320 the reunion of Berlin 2 +65544 3320 the reunion 3 +65545 3320 of Berlin 2 +65546 3320 Berlin 3 +65547 3320 anarchists who face arrest 15 years after their crime . 2 +65548 3320 anarchists who face arrest 15 years after their crime 3 +65549 3320 anarchists 2 +65550 3320 who face arrest 15 years after their crime 2 +65551 3320 face arrest 15 years after their crime 1 +65552 3320 arrest 15 years after their crime 2 +65553 3320 arrest 15 years 2 +65554 3320 arrest 2 +65555 3320 after their crime 2 +65556 3320 their crime 2 +65557 3321 The thing about guys like Evans is this : You 're never quite sure where self-promotion ends and the truth begins . 1 +65558 3321 The thing about guys like Evans is this : You 're never quite sure where self-promotion ends and the truth begins 1 +65559 3321 The thing about guys like Evans is this : 2 +65560 3321 The thing about guys like Evans is this 2 +65561 3321 The thing about guys like Evans 2 +65562 3321 about guys like Evans 2 +65563 3321 guys like Evans 2 +65564 3321 like Evans 2 +65565 3321 is this 2 +65566 3321 You 're never quite sure where self-promotion ends and the truth begins 1 +65567 3321 're never quite sure where self-promotion ends and the truth begins 0 +65568 3321 're never 2 +65569 3321 quite sure where self-promotion ends and the truth begins 1 +65570 3321 sure where self-promotion ends and the truth begins 1 +65571 3321 where self-promotion ends and the truth begins 2 +65572 3321 self-promotion ends and the truth begins 2 +65573 3321 self-promotion ends and the truth 2 +65574 3321 self-promotion ends and 3 +65575 3321 self-promotion ends 2 +65576 3321 self-promotion 1 +65577 3322 They were right . 2 +65578 3322 were right . 2 +65579 3322 were right 2 +65580 3323 a huge disappointment coming , as it does , from filmmakers and performers of this calibre 0 +65581 3323 a huge disappointment coming , as it does , 0 +65582 3323 a huge disappointment coming , as it does 1 +65583 3323 a huge disappointment coming , 1 +65584 3323 a huge disappointment coming 0 +65585 3323 huge disappointment coming 0 +65586 3323 disappointment coming 0 +65587 3323 as it does 2 +65588 3323 from filmmakers and performers of this calibre 2 +65589 3323 filmmakers and performers of this calibre 3 +65590 3323 filmmakers and performers 2 +65591 3323 of this calibre 2 +65592 3323 this calibre 2 +65593 3323 calibre 2 +65594 3324 A banal , virulently unpleasant excuse for a romantic comedy . 0 +65595 3324 A banal , virulently unpleasant excuse for a romantic comedy 0 +65596 3324 A banal , virulently unpleasant excuse 0 +65597 3324 banal , virulently unpleasant excuse 0 +65598 3324 , virulently unpleasant excuse 0 +65599 3324 virulently unpleasant excuse 1 +65600 3324 virulently 2 +65601 3324 unpleasant excuse 1 +65602 3324 for a romantic comedy 2 +65603 3325 Humorless , self-conscious art drivel , made without a glimmer of intelligence or invention . 0 +65604 3325 Humorless , self-conscious art drivel , 0 +65605 3325 Humorless , self-conscious art drivel 0 +65606 3325 Humorless , 0 +65607 3325 self-conscious art drivel 0 +65608 3325 art drivel 2 +65609 3325 drivel 1 +65610 3325 made without a glimmer of intelligence or invention . 2 +65611 3325 made without a glimmer of intelligence or invention 1 +65612 3325 without a glimmer of intelligence or invention 0 +65613 3325 a glimmer of intelligence or invention 3 +65614 3325 a glimmer 3 +65615 3325 glimmer 2 +65616 3325 of intelligence or invention 3 +65617 3325 intelligence or invention 3 +65618 3326 It 's rare that a movie can be as intelligent as this one is in every regard except its storyline ; everything that 's good is ultimately scuttled by a plot that 's just too boring and obvious . 1 +65619 3326 It 's rare that a movie can be as intelligent as this one is in every regard except its storyline ; everything that 's good is ultimately scuttled by a plot that 's just too boring and obvious 1 +65620 3326 It 's rare that a movie can be as intelligent as this one is in every regard except its storyline ; 3 +65621 3326 It 's rare that a movie can be as intelligent as this one is in every regard except its storyline 1 +65622 3326 's rare that a movie can be as intelligent as this one is in every regard except its storyline 2 +65623 3326 's rare 3 +65624 3326 that a movie can be as intelligent as this one is in every regard except its storyline 1 +65625 3326 a movie can be as intelligent as this one is in every regard except its storyline 2 +65626 3326 can be as intelligent as this one is in every regard except its storyline 3 +65627 3326 be as intelligent as this one is in every regard except its storyline 2 +65628 3326 be as intelligent 3 +65629 3326 as intelligent 3 +65630 3326 as this one is in every regard except its storyline 2 +65631 3326 this one is in every regard except its storyline 2 +65632 3326 is in every regard except its storyline 2 +65633 3326 in every regard except its storyline 2 +65634 3326 every regard except its storyline 2 +65635 3326 except its storyline 2 +65636 3326 its storyline 2 +65637 3326 everything that 's good is ultimately scuttled by a plot that 's just too boring and obvious 1 +65638 3326 everything that 's good 3 +65639 3326 that 's good 3 +65640 3326 is ultimately scuttled by a plot that 's just too boring and obvious 0 +65641 3326 scuttled by a plot that 's just too boring and obvious 1 +65642 3326 scuttled 1 +65643 3326 by a plot that 's just too boring and obvious 0 +65644 3326 a plot that 's just too boring and obvious 1 +65645 3326 that 's just too boring and obvious 0 +65646 3326 's just too boring and obvious 0 +65647 3326 too boring and obvious 0 +65648 3326 boring and obvious 1 +65649 3327 Peralta 's mythmaking could have used some informed , adult hindsight . 2 +65650 3327 Peralta 's mythmaking 2 +65651 3327 Peralta 's 3 +65652 3327 mythmaking 2 +65653 3327 could have used some informed , adult hindsight . 1 +65654 3327 could have used some informed , adult hindsight 1 +65655 3327 have used some informed , adult hindsight 2 +65656 3327 used some informed , adult hindsight 2 +65657 3327 some informed , adult hindsight 2 +65658 3327 informed , adult hindsight 3 +65659 3327 informed 2 +65660 3327 , adult hindsight 2 +65661 3327 adult hindsight 2 +65662 3327 hindsight 2 +65663 3328 Meyjes 's movie , like Max Rothman 's future , does not work . 1 +65664 3328 Meyjes 's movie 2 +65665 3328 Meyjes 's 2 +65666 3328 , like Max Rothman 's future , does not work . 1 +65667 3328 like Max Rothman 's future , does not work . 1 +65668 3328 like Max Rothman 's future 2 +65669 3328 Max Rothman 's future 2 +65670 3328 Max Rothman 's 2 +65671 3328 Rothman 's 2 +65672 3328 Rothman 2 +65673 3328 , does not work . 1 +65674 3328 does not work . 1 +65675 3328 does not work 1 +65676 3329 All comedy is subversive , but this unrelenting bleak insistence on opting out of any opportunity for finding meaning in relationships or work just becomes sad . 0 +65677 3329 All comedy is subversive , but this unrelenting bleak insistence on opting out of any opportunity for finding meaning in relationships or work just becomes sad 0 +65678 3329 All comedy is subversive , but 2 +65679 3329 All comedy is subversive , 3 +65680 3329 All comedy is subversive 2 +65681 3329 All comedy 3 +65682 3329 is subversive 2 +65683 3329 this unrelenting bleak insistence on opting out of any opportunity for finding meaning in relationships or work just becomes sad 2 +65684 3329 this unrelenting bleak insistence on opting out of any opportunity for finding meaning in relationships or work 1 +65685 3329 this unrelenting bleak insistence 1 +65686 3329 unrelenting bleak insistence 1 +65687 3329 unrelenting 2 +65688 3329 bleak insistence 2 +65689 3329 insistence 2 +65690 3329 on opting out of any opportunity for finding meaning in relationships or work 3 +65691 3329 opting out of any opportunity for finding meaning in relationships or work 2 +65692 3329 opting out 2 +65693 3329 opting 2 +65694 3329 of any opportunity for finding meaning in relationships or work 3 +65695 3329 any opportunity for finding meaning in relationships or work 2 +65696 3329 any opportunity 2 +65697 3329 for finding meaning in relationships or work 3 +65698 3329 finding meaning in relationships or work 2 +65699 3329 meaning in relationships or work 3 +65700 3329 in relationships or work 2 +65701 3329 relationships or work 2 +65702 3329 relationships or 2 +65703 3329 just becomes sad 1 +65704 3329 becomes sad 2 +65705 3330 Technically and artistically inept . 1 +65706 3330 Technically and artistically inept 1 +65707 3330 and artistically inept 0 +65708 3330 artistically inept 1 +65709 3330 artistically 3 +65710 3331 An average B-movie with no aspirations to be anything more . 1 +65711 3331 An average B-movie with no aspirations to be anything more 1 +65712 3331 An average B-movie with no aspirations 1 +65713 3331 An average B-movie 1 +65714 3331 average B-movie 2 +65715 3331 with no aspirations 1 +65716 3331 no aspirations 1 +65717 3331 to be anything more 2 +65718 3331 be anything more 2 +65719 3332 If you ever wanted to be an astronaut , this is the ultimate movie experience - it 's informative and breathtakingly spectacular . 4 +65720 3332 If you ever wanted to be an astronaut , this is the ultimate movie experience - it 's informative and breathtakingly spectacular 3 +65721 3332 If you ever wanted to be an astronaut , this is the ultimate movie experience - 4 +65722 3332 If you ever wanted to be an astronaut , this is the ultimate movie experience 4 +65723 3332 If you ever wanted to be an astronaut 2 +65724 3332 you ever wanted to be an astronaut 2 +65725 3332 ever wanted to be an astronaut 2 +65726 3332 wanted to be an astronaut 2 +65727 3332 to be an astronaut 2 +65728 3332 be an astronaut 3 +65729 3332 an astronaut 2 +65730 3332 astronaut 2 +65731 3332 , this is the ultimate movie experience 4 +65732 3332 this is the ultimate movie experience 4 +65733 3332 is the ultimate movie experience 4 +65734 3332 the ultimate movie experience 4 +65735 3332 ultimate movie experience 4 +65736 3332 it 's informative and breathtakingly spectacular 4 +65737 3332 's informative and breathtakingly spectacular 4 +65738 3332 informative and breathtakingly spectacular 4 +65739 3332 informative and 3 +65740 3332 breathtakingly spectacular 4 +65741 3333 It 's a loathsome movie , it really is and it makes absolutely no sense . 0 +65742 3333 It 's a loathsome movie , it really is and it makes absolutely no sense 0 +65743 3333 It 's a loathsome movie , it really is and 0 +65744 3333 It 's a loathsome movie , it really is 0 +65745 3333 It 's a loathsome movie , 0 +65746 3333 It 's a loathsome movie 0 +65747 3333 's a loathsome movie 1 +65748 3333 a loathsome movie 0 +65749 3333 loathsome movie 0 +65750 3333 it really is 2 +65751 3333 really is 2 +65752 3333 it makes absolutely no sense 0 +65753 3333 makes absolutely no sense 0 +65754 3333 absolutely no sense 2 +65755 3334 The movie 's captivating details are all in the performances , from Foreman 's barking-mad Taylor to Thewlis 's smoothly sinister Freddie and Bettany\/McDowell 's hard-eyed gangster . 4 +65756 3334 The movie 's captivating details 3 +65757 3334 captivating details 3 +65758 3334 are all in the performances , from Foreman 's barking-mad Taylor to Thewlis 's smoothly sinister Freddie and Bettany\/McDowell 's hard-eyed gangster . 3 +65759 3334 are all in the performances , from Foreman 's barking-mad Taylor to Thewlis 's smoothly sinister Freddie and Bettany\/McDowell 's hard-eyed gangster 3 +65760 3334 are all in the performances , 2 +65761 3334 are all in the performances 2 +65762 3334 in the performances 2 +65763 3334 from Foreman 's barking-mad Taylor to Thewlis 's smoothly sinister Freddie and Bettany\/McDowell 's hard-eyed gangster 2 +65764 3334 Foreman 's barking-mad Taylor to Thewlis 's smoothly sinister Freddie and Bettany\/McDowell 's hard-eyed gangster 3 +65765 3334 Foreman 's barking-mad Taylor to Thewlis 's smoothly sinister Freddie and 2 +65766 3334 Foreman 's barking-mad Taylor to Thewlis 's smoothly sinister Freddie 2 +65767 3334 Foreman 's barking-mad Taylor to 2 +65768 3334 Foreman 's barking-mad Taylor 2 +65769 3334 Foreman 's 2 +65770 3334 Foreman 2 +65771 3334 barking-mad Taylor 2 +65772 3334 barking-mad 2 +65773 3334 Thewlis 's smoothly sinister Freddie 2 +65774 3334 Thewlis 's 2 +65775 3334 Thewlis 2 +65776 3334 smoothly sinister Freddie 3 +65777 3334 sinister Freddie 2 +65778 3334 Freddie 2 +65779 3334 Bettany\/McDowell 's hard-eyed gangster 2 +65780 3334 Bettany\/McDowell 's 2 +65781 3334 Bettany\/McDowell 2 +65782 3334 hard-eyed gangster 2 +65783 3334 hard-eyed 2 +65784 3335 This is mild-mannered , been-there material given a pedestrian spin by a director who needed a touch of the flamboyant , the outrageous . 2 +65785 3335 is mild-mannered , been-there material given a pedestrian spin by a director who needed a touch of the flamboyant , the outrageous . 2 +65786 3335 is mild-mannered , been-there material given a pedestrian spin by a director who needed a touch of the flamboyant , the outrageous 0 +65787 3335 mild-mannered , been-there material given a pedestrian spin by a director who needed a touch of the flamboyant , the outrageous 2 +65788 3335 mild-mannered , been-there material 1 +65789 3335 mild-mannered 2 +65790 3335 , been-there material 2 +65791 3335 been-there material 1 +65792 3335 been-there 2 +65793 3335 given a pedestrian spin by a director who needed a touch of the flamboyant , the outrageous 2 +65794 3335 given a pedestrian spin 3 +65795 3335 a pedestrian spin 2 +65796 3335 pedestrian spin 2 +65797 3335 by a director who needed a touch of the flamboyant , the outrageous 2 +65798 3335 a director who needed a touch of the flamboyant , the outrageous 2 +65799 3335 who needed a touch of the flamboyant , the outrageous 2 +65800 3335 needed a touch of the flamboyant , the outrageous 1 +65801 3335 a touch of the flamboyant , the outrageous 3 +65802 3335 of the flamboyant , the outrageous 2 +65803 3335 the flamboyant , the outrageous 3 +65804 3335 the flamboyant , 2 +65805 3335 the flamboyant 2 +65806 3335 the outrageous 2 +65807 3336 Smart and taut . 4 +65808 3336 Smart and taut 3 +65809 3337 Matters play out realistically if not always fairly . 3 +65810 3337 play out realistically if not always fairly . 3 +65811 3337 play out realistically if not always fairly 3 +65812 3337 play out 2 +65813 3337 realistically if not always fairly 2 +65814 3337 if not always fairly 2 +65815 3337 not always fairly 2 +65816 3337 always fairly 3 +65817 3338 Giggling at the absurdities and inconsistencies is part of the fun . 3 +65818 3338 Giggling at the absurdities and inconsistencies 1 +65819 3338 Giggling 3 +65820 3338 at the absurdities and inconsistencies 1 +65821 3338 the absurdities and inconsistencies 1 +65822 3338 absurdities and inconsistencies 0 +65823 3338 inconsistencies 1 +65824 3338 is part of the fun . 2 +65825 3338 is part of the fun 3 +65826 3338 part of the fun 3 +65827 3338 of the fun 2 +65828 3339 Hope keeps arising that the movie will live up to the apparent skills of its makers and the talents of its actors , but it does n't . 2 +65829 3339 Hope keeps arising that the movie will live up to the apparent skills of its makers and the talents of its actors , but it does n't 1 +65830 3339 Hope keeps arising that the movie will live up to the apparent skills of its makers and the talents of its actors , but 2 +65831 3339 Hope keeps arising that the movie will live up to the apparent skills of its makers and the talents of its actors , 2 +65832 3339 Hope keeps arising that the movie will live up to the apparent skills of its makers and the talents of its actors 2 +65833 3339 keeps arising that the movie will live up to the apparent skills of its makers and the talents of its actors 3 +65834 3339 arising that the movie will live up to the apparent skills of its makers and the talents of its actors 3 +65835 3339 arising 2 +65836 3339 that the movie will live up to the apparent skills of its makers and the talents of its actors 4 +65837 3339 the movie will live up to the apparent skills of its makers and the talents of its actors 3 +65838 3339 will live up to the apparent skills of its makers and the talents of its actors 3 +65839 3339 live up to the apparent skills of its makers and the talents of its actors 3 +65840 3339 to the apparent skills of its makers and the talents of its actors 3 +65841 3339 the apparent skills of its makers and the talents of its actors 3 +65842 3339 the apparent skills of its makers and 2 +65843 3339 the apparent skills of its makers 2 +65844 3339 the apparent skills 3 +65845 3339 apparent skills 2 +65846 3339 of its makers 2 +65847 3339 its makers 2 +65848 3339 the talents of its actors 2 +65849 3339 the talents 2 +65850 3339 of its actors 3 +65851 3339 its actors 2 +65852 3340 Symbolically , Warm Water Under a Red Bridge is a celebration of feminine energy , a tribute to the power of women to heal . 3 +65853 3340 Symbolically 2 +65854 3340 , Warm Water Under a Red Bridge is a celebration of feminine energy , a tribute to the power of women to heal . 3 +65855 3340 Warm Water Under a Red Bridge is a celebration of feminine energy , a tribute to the power of women to heal . 3 +65856 3340 Under a Red Bridge is a celebration of feminine energy , a tribute to the power of women to heal . 3 +65857 3340 is a celebration of feminine energy , a tribute to the power of women to heal . 4 +65858 3340 is a celebration of feminine energy , a tribute to the power of women to heal 4 +65859 3340 a celebration of feminine energy , a tribute to the power of women to heal 3 +65860 3340 a celebration 3 +65861 3340 of feminine energy , a tribute to the power of women to heal 3 +65862 3340 feminine energy , a tribute to the power of women to heal 4 +65863 3340 feminine energy , 2 +65864 3340 feminine energy 2 +65865 3340 feminine 2 +65866 3340 a tribute to the power of women to heal 3 +65867 3340 to the power of women to heal 3 +65868 3340 the power of women to heal 2 +65869 3340 of women to heal 2 +65870 3340 women to heal 2 +65871 3340 to heal 2 +65872 3341 It uses some of the figures from the real-life story to portray themselves in the film . 3 +65873 3341 uses some of the figures from the real-life story to portray themselves in the film . 3 +65874 3341 uses some of the figures from the real-life story to portray themselves in the film 2 +65875 3341 uses some of the figures 2 +65876 3341 some of the figures 2 +65877 3341 of the figures 2 +65878 3341 the figures 2 +65879 3341 from the real-life story to portray themselves in the film 3 +65880 3341 the real-life story to portray themselves in the film 2 +65881 3341 real-life story to portray themselves in the film 2 +65882 3341 story to portray themselves in the film 2 +65883 3341 to portray themselves in the film 2 +65884 3341 portray themselves in the film 2 +65885 3341 portray themselves 3 +65886 3342 What might have been readily dismissed as the tiresome rant of an aging filmmaker still thumbing his nose at convention takes a surprising , subtle turn at the midway point . 1 +65887 3342 What might have been readily dismissed as the tiresome rant of an aging filmmaker still thumbing his nose at convention 2 +65888 3342 might have been readily dismissed as the tiresome rant of an aging filmmaker still thumbing his nose at convention 1 +65889 3342 have been readily dismissed as the tiresome rant of an aging filmmaker still thumbing his nose at convention 1 +65890 3342 been readily dismissed as the tiresome rant of an aging filmmaker still thumbing his nose at convention 1 +65891 3342 readily dismissed as the tiresome rant of an aging filmmaker still thumbing his nose at convention 1 +65892 3342 readily 2 +65893 3342 dismissed as the tiresome rant of an aging filmmaker still thumbing his nose at convention 0 +65894 3342 as the tiresome rant of an aging filmmaker still thumbing his nose at convention 0 +65895 3342 the tiresome rant of an aging filmmaker still thumbing his nose at convention 1 +65896 3342 the tiresome rant 1 +65897 3342 tiresome rant 1 +65898 3342 rant 1 +65899 3342 of an aging filmmaker still thumbing his nose at convention 1 +65900 3342 an aging filmmaker still thumbing his nose at convention 3 +65901 3342 an aging filmmaker 2 +65902 3342 aging filmmaker 2 +65903 3342 still thumbing his nose at convention 2 +65904 3342 thumbing his nose at convention 2 +65905 3342 thumbing his nose 2 +65906 3342 thumbing 2 +65907 3342 his nose 2 +65908 3342 at convention 2 +65909 3342 takes a surprising , subtle turn at the midway point . 3 +65910 3342 takes a surprising , subtle turn at the midway point 3 +65911 3342 a surprising , subtle turn at the midway point 3 +65912 3342 a surprising , subtle turn 3 +65913 3342 surprising , subtle turn 3 +65914 3342 surprising , subtle 3 +65915 3342 , subtle 2 +65916 3342 at the midway point 2 +65917 3342 the midway point 2 +65918 3342 midway point 3 +65919 3342 midway 2 +65920 3343 Cusack 's just brilliant in this . 4 +65921 3343 Cusack 2 +65922 3343 's just brilliant in this . 4 +65923 3343 's just brilliant in this 3 +65924 3343 just brilliant in this 3 +65925 3343 brilliant in this 3 +65926 3344 It 's an odd show , pregnant with moods , stillborn except as a harsh conceptual exercise . 1 +65927 3344 's an odd show , pregnant with moods , stillborn except as a harsh conceptual exercise . 2 +65928 3344 's an odd show , pregnant with moods , stillborn except as a harsh conceptual exercise 1 +65929 3344 an odd show , pregnant with moods , stillborn except as a harsh conceptual exercise 1 +65930 3344 an odd show , pregnant with moods , 1 +65931 3344 an odd show , pregnant with moods 2 +65932 3344 an odd show , 2 +65933 3344 an odd show 1 +65934 3344 odd show 2 +65935 3344 pregnant with moods 2 +65936 3344 with moods 2 +65937 3344 stillborn except as a harsh conceptual exercise 0 +65938 3344 stillborn 1 +65939 3344 except as a harsh conceptual exercise 1 +65940 3344 as a harsh conceptual exercise 2 +65941 3344 a harsh conceptual exercise 2 +65942 3344 harsh conceptual exercise 1 +65943 3344 conceptual exercise 2 +65944 3344 conceptual 2 +65945 3345 A dark-as-pitch comedy that frequently veers into corny sentimentality , probably would not improve much after a therapeutic zap of shock treatment . 1 +65946 3345 A dark-as-pitch comedy that frequently veers into corny sentimentality , probably 1 +65947 3345 A dark-as-pitch comedy 1 +65948 3345 dark-as-pitch comedy 2 +65949 3345 dark-as-pitch 1 +65950 3345 that frequently veers into corny sentimentality , probably 2 +65951 3345 frequently veers into corny sentimentality , probably 1 +65952 3345 veers into corny sentimentality , probably 1 +65953 3345 veers into corny sentimentality , 1 +65954 3345 veers into corny sentimentality 2 +65955 3345 into corny sentimentality 1 +65956 3345 corny sentimentality 1 +65957 3345 would not improve much after a therapeutic zap of shock treatment . 1 +65958 3345 would not improve much after a therapeutic zap of shock treatment 1 +65959 3345 improve much after a therapeutic zap of shock treatment 2 +65960 3345 improve much 2 +65961 3345 after a therapeutic zap of shock treatment 2 +65962 3345 a therapeutic zap of shock treatment 3 +65963 3345 a therapeutic zap 2 +65964 3345 therapeutic zap 2 +65965 3345 therapeutic 2 +65966 3345 zap 2 +65967 3345 of shock treatment 2 +65968 3345 shock treatment 2 +65969 3346 Even the digressions are funny . 3 +65970 3346 Even the digressions 2 +65971 3346 the digressions 2 +65972 3346 digressions 2 +65973 3346 are funny . 3 +65974 3347 This submarine drama earns the right to be favorably compared to Das Boot . 3 +65975 3347 This submarine drama 2 +65976 3347 submarine drama 2 +65977 3347 submarine 2 +65978 3347 earns the right to be favorably compared to Das Boot . 3 +65979 3347 earns the right to be favorably compared to Das Boot 4 +65980 3347 the right to be favorably compared to Das Boot 3 +65981 3347 right to be favorably compared to Das Boot 2 +65982 3347 to be favorably compared to Das Boot 3 +65983 3347 be favorably compared to Das Boot 2 +65984 3347 favorably compared to Das Boot 3 +65985 3347 favorably 3 +65986 3347 compared to Das Boot 2 +65987 3347 compared 2 +65988 3347 to Das Boot 2 +65989 3347 Das Boot 2 +65990 3347 Das 2 +65991 3347 Boot 2 +65992 3348 What 's so fun about this silly , outrageous , ingenious thriller is the director 's talent . 4 +65993 3348 What 's so fun about this silly , outrageous , ingenious thriller 4 +65994 3348 's so fun about this silly , outrageous , ingenious thriller 4 +65995 3348 's so 2 +65996 3348 fun about this silly , outrageous , ingenious thriller 4 +65997 3348 about this silly , outrageous , ingenious thriller 3 +65998 3348 this silly , outrageous , ingenious thriller 4 +65999 3348 silly , outrageous , ingenious thriller 4 +66000 3348 silly , outrageous , ingenious 4 +66001 3348 , outrageous , ingenious 3 +66002 3348 outrageous , ingenious 4 +66003 3348 , ingenious 4 +66004 3348 is the director 's talent . 3 +66005 3348 is the director 's talent 3 +66006 3348 the director 's talent 3 +66007 3349 ... the cast portrays their cartoon counterparts well ... but quite frankly , Scoob and Shag do n't eat enough during the film . ' 1 +66008 3349 the cast portrays their cartoon counterparts well ... but quite frankly , Scoob and Shag do n't eat enough during the film . ' 2 +66009 3349 the cast portrays their cartoon counterparts well ... but quite frankly 3 +66010 3349 cast portrays their cartoon counterparts well ... but quite frankly 2 +66011 3349 portrays their cartoon counterparts well ... but quite frankly 2 +66012 3349 portrays their cartoon counterparts well ... but quite 3 +66013 3349 portrays their cartoon counterparts well ... but 2 +66014 3349 portrays their cartoon counterparts well ... 4 +66015 3349 portrays their cartoon counterparts well 3 +66016 3349 portrays their cartoon counterparts 2 +66017 3349 their cartoon counterparts 2 +66018 3349 cartoon counterparts 2 +66019 3349 , Scoob and Shag do n't eat enough during the film . ' 1 +66020 3349 Scoob and Shag do n't eat enough during the film . ' 1 +66021 3349 Scoob and Shag 2 +66022 3349 Scoob and 2 +66023 3349 Scoob 3 +66024 3349 Shag 2 +66025 3349 do n't eat enough during the film . ' 2 +66026 3349 do n't eat enough during the film . 2 +66027 3349 do n't eat enough during the film 2 +66028 3349 eat enough during the film 2 +66029 3349 eat enough 2 +66030 3349 during the film 2 +66031 3350 There is a subversive element to this Disney cartoon , providing unexpected fizzability . 3 +66032 3350 is a subversive element to this Disney cartoon , providing unexpected fizzability . 2 +66033 3350 is a subversive element to this Disney cartoon , providing unexpected fizzability 2 +66034 3350 is a subversive element to this Disney cartoon , 2 +66035 3350 is a subversive element to this Disney cartoon 2 +66036 3350 a subversive element to this Disney cartoon 2 +66037 3350 a subversive element 2 +66038 3350 subversive element 2 +66039 3350 to this Disney cartoon 2 +66040 3350 this Disney cartoon 2 +66041 3350 Disney cartoon 2 +66042 3350 providing unexpected fizzability 2 +66043 3350 providing 2 +66044 3350 unexpected fizzability 2 +66045 3350 fizzability 1 +66046 3351 I know we 're not supposed to take it seriously , but I ca n't shake the thought that Undercover Brother missed an opportunity to strongly present some profound social commentary . 2 +66047 3351 I know we 're not supposed to take it seriously , but I ca n't shake the thought that Undercover Brother missed an opportunity to strongly present some profound social commentary 1 +66048 3351 I know we 're not supposed to take it seriously , but 2 +66049 3351 I know we 're not supposed to take it seriously , 2 +66050 3351 I know we 're not supposed to take it seriously 2 +66051 3351 know we 're not supposed to take it seriously 1 +66052 3351 we 're not supposed to take it seriously 1 +66053 3351 're not supposed to take it seriously 2 +66054 3351 supposed to take it seriously 2 +66055 3351 to take it seriously 2 +66056 3351 take it seriously 3 +66057 3351 take it 3 +66058 3351 I ca n't shake the thought that Undercover Brother missed an opportunity to strongly present some profound social commentary 1 +66059 3351 ca n't shake the thought that Undercover Brother missed an opportunity to strongly present some profound social commentary 1 +66060 3351 shake the thought that Undercover Brother missed an opportunity to strongly present some profound social commentary 3 +66061 3351 shake the thought 2 +66062 3351 the thought 2 +66063 3351 that Undercover Brother missed an opportunity to strongly present some profound social commentary 1 +66064 3351 Undercover Brother missed an opportunity to strongly present some profound social commentary 1 +66065 3351 Undercover Brother 2 +66066 3351 Undercover 2 +66067 3351 missed an opportunity to strongly present some profound social commentary 1 +66068 3351 an opportunity to strongly present some profound social commentary 1 +66069 3351 opportunity to strongly present some profound social commentary 3 +66070 3351 to strongly present some profound social commentary 2 +66071 3351 strongly present some profound social commentary 3 +66072 3351 present some profound social commentary 3 +66073 3351 some profound social commentary 3 +66074 3351 profound social commentary 3 +66075 3352 As a good old-fashioned adventure for kids , Spirit : Stallion of the Cimarron is a winner . 3 +66076 3352 As a good old-fashioned adventure for kids , Spirit 4 +66077 3352 a good old-fashioned adventure for kids , Spirit 2 +66078 3352 a good old-fashioned adventure 3 +66079 3352 good old-fashioned adventure 3 +66080 3352 old-fashioned adventure 3 +66081 3352 for kids , Spirit 3 +66082 3352 kids , Spirit 3 +66083 3352 kids , 2 +66084 3352 : Stallion of the Cimarron is a winner . 4 +66085 3352 Stallion of the Cimarron is a winner . 4 +66086 3352 Stallion of the Cimarron 2 +66087 3352 Stallion 2 +66088 3352 of the Cimarron 2 +66089 3352 the Cimarron 2 +66090 3352 Cimarron 2 +66091 3352 is a winner . 3 +66092 3352 is a winner 3 +66093 3352 a winner 4 +66094 3353 Even if you 're an Elvis person , you wo n't find anything to get excited about on this DVD . 0 +66095 3353 Even if you 're an Elvis person 2 +66096 3353 if you 're an Elvis person 2 +66097 3353 you 're an Elvis person 3 +66098 3353 're an Elvis person 2 +66099 3353 an Elvis person 2 +66100 3353 Elvis person 2 +66101 3353 , you wo n't find anything to get excited about on this DVD . 1 +66102 3353 you wo n't find anything to get excited about on this DVD . 1 +66103 3353 wo n't find anything to get excited about on this DVD . 2 +66104 3353 wo n't find anything to get excited about on this DVD 1 +66105 3353 find anything to get excited about on this DVD 1 +66106 3353 to get excited about on this DVD 3 +66107 3353 get excited about on this DVD 3 +66108 3353 excited about on this DVD 4 +66109 3353 about on this DVD 2 +66110 3353 on this DVD 2 +66111 3353 this DVD 3 +66112 3354 A journey spanning nearly three decades of bittersweet camaraderie and history , in which we feel that we truly know what makes Holly and Marina tick , and our hearts go out to them as both continue to negotiate their imperfect , love-hate relationship . 3 +66113 3354 A journey spanning nearly three decades of bittersweet camaraderie and history , in which we feel that we truly know what makes Holly and Marina tick , and our hearts go out to them as both continue to negotiate their imperfect , love-hate relationship 3 +66114 3354 A journey spanning nearly three decades of bittersweet camaraderie and history , in which we feel that we truly know what makes Holly and Marina tick , and 3 +66115 3354 A journey spanning nearly three decades of bittersweet camaraderie and history , in which we feel that we truly know what makes Holly and Marina tick , 3 +66116 3354 A journey spanning nearly three decades of bittersweet camaraderie and history , in which we feel that we truly know what makes Holly and Marina tick 3 +66117 3354 A journey 3 +66118 3354 spanning nearly three decades of bittersweet camaraderie and history , in which we feel that we truly know what makes Holly and Marina tick 3 +66119 3354 spanning 2 +66120 3354 nearly three decades of bittersweet camaraderie and history , in which we feel that we truly know what makes Holly and Marina tick 2 +66121 3354 nearly three decades of bittersweet camaraderie and history , 2 +66122 3354 nearly three decades of bittersweet camaraderie and history 3 +66123 3354 nearly three decades 2 +66124 3354 of bittersweet camaraderie and history 3 +66125 3354 bittersweet camaraderie and history 3 +66126 3354 camaraderie and history 2 +66127 3354 camaraderie and 2 +66128 3354 camaraderie 3 +66129 3354 in which we feel that we truly know what makes Holly and Marina tick 2 +66130 3354 we feel that we truly know what makes Holly and Marina tick 3 +66131 3354 feel that we truly know what makes Holly and Marina tick 3 +66132 3354 that we truly know what makes Holly and Marina tick 2 +66133 3354 we truly know what makes Holly and Marina tick 2 +66134 3354 truly know what makes Holly and Marina tick 2 +66135 3354 know what makes Holly and Marina tick 2 +66136 3354 what makes Holly and Marina tick 2 +66137 3354 makes Holly and Marina tick 2 +66138 3354 Holly and Marina tick 2 +66139 3354 Holly and Marina 2 +66140 3354 Holly and 2 +66141 3354 tick 2 +66142 3354 our hearts go out to them as both continue to negotiate their imperfect , love-hate relationship 2 +66143 3354 our hearts 2 +66144 3354 go out to them as both continue to negotiate their imperfect , love-hate relationship 2 +66145 3354 go out to them 2 +66146 3354 go out 2 +66147 3354 as both continue to negotiate their imperfect , love-hate relationship 2 +66148 3354 both continue to negotiate their imperfect , love-hate relationship 2 +66149 3354 continue to negotiate their imperfect , love-hate relationship 2 +66150 3354 continue 2 +66151 3354 to negotiate their imperfect , love-hate relationship 2 +66152 3354 negotiate their imperfect , love-hate relationship 1 +66153 3354 their imperfect , love-hate relationship 2 +66154 3354 imperfect , love-hate relationship 1 +66155 3354 imperfect , love-hate 2 +66156 3354 , love-hate 2 +66157 3354 love-hate 2 +66158 3355 Lacks the spirit of the previous two , and makes all those jokes about hos and even more unmentionable subjects seem like mere splashing around in the muck . 0 +66159 3355 Lacks the spirit of the previous two , and makes all those jokes about hos and even more unmentionable subjects seem like mere splashing around in the muck 1 +66160 3355 Lacks the spirit of the previous two , and makes all those jokes about hos and 2 +66161 3355 Lacks the spirit of the previous two , and makes all those jokes about hos 1 +66162 3355 Lacks the spirit of the previous two , and 1 +66163 3355 Lacks the spirit of the previous two , 1 +66164 3355 Lacks the spirit of the previous two 1 +66165 3355 the spirit of the previous two 2 +66166 3355 the spirit 3 +66167 3355 of the previous two 3 +66168 3355 the previous two 2 +66169 3355 previous two 2 +66170 3355 makes all those jokes about hos 2 +66171 3355 makes all those jokes 2 +66172 3355 all those jokes 2 +66173 3355 those jokes 2 +66174 3355 about hos 2 +66175 3355 hos 2 +66176 3355 even more unmentionable subjects seem like mere splashing around in the muck 1 +66177 3355 even more unmentionable subjects 2 +66178 3355 more unmentionable subjects 1 +66179 3355 unmentionable subjects 2 +66180 3355 seem like mere splashing around in the muck 1 +66181 3355 seem like mere splashing around 2 +66182 3355 like mere splashing around 1 +66183 3355 mere splashing around 2 +66184 3355 splashing around 2 +66185 3355 splashing 2 +66186 3355 in the muck 2 +66187 3355 the muck 1 +66188 3355 muck 1 +66189 3356 The work of an artist tormented by his heritage , using his storytelling ability to honor the many faceless victims . 3 +66190 3356 The work of an artist 3 +66191 3356 tormented by his heritage , using his storytelling ability to honor the many faceless victims . 2 +66192 3356 tormented by his heritage , using his storytelling ability to honor the many faceless victims 3 +66193 3356 tormented by his heritage , 2 +66194 3356 tormented by his heritage 1 +66195 3356 tormented 2 +66196 3356 by his heritage 2 +66197 3356 his heritage 2 +66198 3356 heritage 2 +66199 3356 using his storytelling ability to honor the many faceless victims 2 +66200 3356 using his storytelling ability 3 +66201 3356 his storytelling ability 2 +66202 3356 storytelling ability 3 +66203 3356 to honor the many faceless victims 3 +66204 3356 honor the many faceless victims 3 +66205 3356 the many faceless victims 2 +66206 3356 many faceless victims 2 +66207 3356 faceless victims 2 +66208 3356 faceless 2 +66209 3357 Resident Evil is n't a product of its cinematic predecessors so much as an MTV , sugar hysteria , and PlayStation cocktail . 1 +66210 3357 is n't a product of its cinematic predecessors so much as an MTV , sugar hysteria , and PlayStation cocktail . 1 +66211 3357 is n't a product of its cinematic predecessors so much as an MTV , sugar hysteria , and PlayStation cocktail 1 +66212 3357 a product of its cinematic predecessors so much as an MTV , sugar hysteria , and PlayStation cocktail 2 +66213 3357 a product of its cinematic predecessors so much as 2 +66214 3357 a product of its cinematic predecessors so much 2 +66215 3357 a product of its cinematic predecessors so 2 +66216 3357 a product of its cinematic predecessors 2 +66217 3357 a product 2 +66218 3357 of its cinematic predecessors 2 +66219 3357 its cinematic predecessors 2 +66220 3357 cinematic predecessors 2 +66221 3357 an MTV , sugar hysteria , and PlayStation cocktail 2 +66222 3357 an MTV , sugar hysteria , and 1 +66223 3357 an MTV , sugar hysteria , 1 +66224 3357 an MTV , sugar hysteria 3 +66225 3357 an MTV , 2 +66226 3357 an MTV 2 +66227 3357 sugar hysteria 2 +66228 3357 hysteria 2 +66229 3357 PlayStation cocktail 1 +66230 3357 PlayStation 2 +66231 3357 cocktail 3 +66232 3358 Too stagey , talky -- and long -- for its own good . 1 +66233 3358 Too stagey , talky 0 +66234 3358 Too stagey , 1 +66235 3358 Too stagey 1 +66236 3358 -- and long -- for its own good . 2 +66237 3358 -- and long -- for its own good 1 +66238 3358 -- and long -- 2 +66239 3358 -- and long 2 +66240 3359 The gorgeously elaborate continuation of `` The Lord of the Rings '' trilogy is so huge that a column of words can not adequately describe co-writer\/director Peter Jackson 's expanded vision of J.R.R. Tolkien 's Middle-earth . 4 +66241 3359 The gorgeously elaborate continuation of `` The Lord of the Rings '' trilogy 4 +66242 3359 The gorgeously elaborate continuation 4 +66243 3359 gorgeously elaborate continuation 4 +66244 3359 elaborate continuation 3 +66245 3359 of `` The Lord of the Rings '' trilogy 2 +66246 3359 The Lord of the Rings '' trilogy 2 +66247 3359 Lord of the Rings '' trilogy 2 +66248 3359 Lord of the Rings 2 +66249 3359 of the Rings 2 +66250 3359 the Rings 2 +66251 3359 '' trilogy 2 +66252 3359 is so huge that a column of words can not adequately describe co-writer\/director Peter Jackson 's expanded vision of J.R.R. Tolkien 's Middle-earth . 2 +66253 3359 is so huge that a column of words can not adequately describe co-writer\/director Peter Jackson 's expanded vision of J.R.R. Tolkien 's Middle-earth 3 +66254 3359 is so huge 2 +66255 3359 so huge 2 +66256 3359 that a column of words can not adequately describe co-writer\/director Peter Jackson 's expanded vision of J.R.R. Tolkien 's Middle-earth 2 +66257 3359 a column of words can not adequately describe co-writer\/director Peter Jackson 's expanded vision of J.R.R. Tolkien 's Middle-earth 3 +66258 3359 a column of words 2 +66259 3359 a column 2 +66260 3359 column 2 +66261 3359 of words 2 +66262 3359 can not adequately describe co-writer\/director Peter Jackson 's expanded vision of J.R.R. Tolkien 's Middle-earth 2 +66263 3359 can not adequately 2 +66264 3359 describe co-writer\/director Peter Jackson 's expanded vision of J.R.R. Tolkien 's Middle-earth 2 +66265 3359 co-writer\/director Peter Jackson 's expanded vision of J.R.R. Tolkien 's Middle-earth 2 +66266 3359 co-writer\/director Peter Jackson 's expanded vision 3 +66267 3359 co-writer\/director Peter Jackson 's 2 +66268 3359 Peter Jackson 's 2 +66269 3359 expanded vision 3 +66270 3359 expanded 2 +66271 3359 of J.R.R. Tolkien 's Middle-earth 2 +66272 3359 J.R.R. Tolkien 's Middle-earth 2 +66273 3359 J.R.R. Tolkien 's 2 +66274 3359 J.R.R. 2 +66275 3359 Tolkien 's 2 +66276 3359 Middle-earth 2 +66277 3360 No thanks . 1 +66278 3360 thanks . 2 +66279 3361 This off-putting French romantic comedy 1 +66280 3361 off-putting French romantic comedy 2 +66281 3361 French romantic comedy 2 +66282 3361 test severely 2 +66283 3361 the indulgence 2 +66284 3362 It 's never laugh-out-loud funny , but it is frequently amusing . 3 +66285 3362 It 's never laugh-out-loud funny , but it is frequently amusing 3 +66286 3362 It 's never laugh-out-loud funny , but 2 +66287 3362 It 's never laugh-out-loud funny , 1 +66288 3362 It 's never laugh-out-loud funny 2 +66289 3362 's never laugh-out-loud funny 2 +66290 3362 laugh-out-loud funny 3 +66291 3362 it is frequently amusing 2 +66292 3362 is frequently amusing 3 +66293 3362 is frequently 2 +66294 3363 Amari has dressed up this little parable in a fairly irresistible package full of privileged moments and memorable performances . 4 +66295 3363 Amari 2 +66296 3363 has dressed up this little parable in a fairly irresistible package full of privileged moments and memorable performances . 4 +66297 3363 has dressed up this little parable in a fairly irresistible package full of privileged moments and memorable performances 3 +66298 3363 dressed up this little parable in a fairly irresistible package full of privileged moments and memorable performances 4 +66299 3363 dressed up this little parable 3 +66300 3363 this little parable 2 +66301 3363 little parable 2 +66302 3363 in a fairly irresistible package full of privileged moments and memorable performances 4 +66303 3363 a fairly irresistible package full of privileged moments and memorable performances 4 +66304 3363 a fairly irresistible package 3 +66305 3363 fairly irresistible package 4 +66306 3363 irresistible package 3 +66307 3363 irresistible 3 +66308 3363 package 2 +66309 3363 full of privileged moments and memorable performances 4 +66310 3363 of privileged moments and memorable performances 3 +66311 3363 privileged moments and memorable performances 3 +66312 3363 privileged moments and 3 +66313 3363 privileged moments 2 +66314 3363 privileged 2 +66315 3363 memorable performances 3 +66316 3364 As banal as the telling may be -- and at times , All My Loved Ones more than flirts with kitsch -- the tale commands attention . 3 +66317 3364 As banal as the telling may be 1 +66318 3364 banal as the telling may be 2 +66319 3364 banal as the telling 1 +66320 3364 as the telling 2 +66321 3364 the telling 2 +66322 3364 -- and at times , All My Loved Ones more than flirts with kitsch -- the tale commands attention . 3 +66323 3364 -- and at times , All My Loved Ones more than flirts with kitsch -- 2 +66324 3364 -- and at times , All My Loved Ones more than flirts with kitsch 2 +66325 3364 -- and at times , All 3 +66326 3364 at times , All 2 +66327 3364 times , All 2 +66328 3364 times , 2 +66329 3364 My Loved Ones more than flirts with kitsch 2 +66330 3364 My Loved Ones 3 +66331 3364 Loved Ones 3 +66332 3364 more than flirts with kitsch 2 +66333 3364 flirts with kitsch 2 +66334 3364 with kitsch 2 +66335 3364 kitsch 2 +66336 3364 the tale commands attention . 3 +66337 3364 commands attention . 3 +66338 3364 commands attention 3 +66339 3365 An acceptable way to pass a little over an hour with moviegoers ages 8-10 , but it 's unlikely to inspire anything more than a visit to McDonald 's , let alone some savvy street activism . 1 +66340 3365 An acceptable way to pass a little over an hour with moviegoers ages 8-10 , but it 's unlikely to inspire anything more than a visit to McDonald 's , let alone some savvy street activism 2 +66341 3365 An acceptable way to pass a little over an hour with moviegoers ages 8-10 , but 2 +66342 3365 An acceptable way to pass a little over an hour with moviegoers ages 8-10 , 3 +66343 3365 An acceptable way to pass a little over an hour with moviegoers ages 8-10 2 +66344 3365 An acceptable way to pass a little over an hour with moviegoers ages 3 +66345 3365 acceptable way to pass a little over an hour with moviegoers ages 2 +66346 3365 way to pass a little over an hour with moviegoers ages 2 +66347 3365 to pass a little over an hour with moviegoers ages 2 +66348 3365 pass a little over an hour with moviegoers ages 2 +66349 3365 pass a little over an hour 2 +66350 3365 pass a little 2 +66351 3365 over an hour 2 +66352 3365 with moviegoers ages 2 +66353 3365 moviegoers ages 2 +66354 3365 8-10 2 +66355 3365 it 's unlikely to inspire anything more than a visit to McDonald 's , let alone some savvy street activism 0 +66356 3365 's unlikely to inspire anything more than a visit to McDonald 's , let alone some savvy street activism 1 +66357 3365 unlikely to inspire anything more than a visit to McDonald 's , let alone some savvy street activism 0 +66358 3365 to inspire anything more than a visit to McDonald 's , let alone some savvy street activism 1 +66359 3365 inspire anything more than a visit to McDonald 's , let alone some savvy street activism 2 +66360 3365 inspire anything more than a visit to McDonald 's , let alone 1 +66361 3365 inspire 3 +66362 3365 anything more than a visit to McDonald 's , let alone 3 +66363 3365 than a visit to McDonald 's , let alone 2 +66364 3365 a visit to McDonald 's , let alone 1 +66365 3365 a visit to McDonald 's , 2 +66366 3365 a visit to McDonald 's 2 +66367 3365 a visit 2 +66368 3365 to McDonald 's 2 +66369 3365 McDonald 's 2 +66370 3365 McDonald 2 +66371 3365 some savvy street activism 3 +66372 3365 savvy street activism 3 +66373 3365 street activism 2 +66374 3365 activism 2 +66375 3366 The thing just never gets off the ground . 0 +66376 3366 just never gets off the ground . 0 +66377 3366 never gets off the ground . 0 +66378 3366 never gets off the ground 2 +66379 3366 gets off the ground 2 +66380 3366 gets off 2 +66381 3366 the ground 2 +66382 3367 Who is this movie for ? 2 +66383 3367 is this movie for ? 2 +66384 3367 is this movie for 2 +66385 3367 this movie for 2 +66386 3368 I 've never seen or heard anything quite like this film , and I recommend it for its originality alone . 4 +66387 3368 I 've never seen or heard anything quite like this film , and I recommend it for its originality alone 4 +66388 3368 I 've never seen or heard anything quite like this film , and 3 +66389 3368 I 've never seen or heard anything quite like this film , 3 +66390 3368 I 've never seen or heard anything quite like this film 4 +66391 3368 've never seen or heard anything quite like this film 2 +66392 3368 never seen or heard anything quite like this film 2 +66393 3368 seen or heard anything quite like this film 3 +66394 3368 seen or heard 2 +66395 3368 seen or 2 +66396 3368 anything quite like this film 2 +66397 3368 anything quite 2 +66398 3368 like this film 3 +66399 3368 I recommend it for its originality alone 3 +66400 3368 recommend it for its originality alone 4 +66401 3368 recommend it for its originality 3 +66402 3368 for its originality 3 +66403 3368 its originality 3 +66404 3369 It 's a feel-good movie about which you can actually feel good . 4 +66405 3369 's a feel-good movie about which you can actually feel good . 4 +66406 3369 's a feel-good movie about which you can actually feel good 4 +66407 3369 a feel-good movie about which you can actually feel good 4 +66408 3369 about which you can actually feel good 4 +66409 3369 about which 2 +66410 3369 you can actually feel good 3 +66411 3369 can actually feel good 3 +66412 3370 One of the best inside-show-biz yarns ever . 4 +66413 3370 One of the best inside-show-biz 2 +66414 3370 of the best inside-show-biz 3 +66415 3370 the best inside-show-biz 3 +66416 3370 best inside-show-biz 3 +66417 3370 inside-show-biz 2 +66418 3370 yarns ever . 2 +66419 3370 yarns ever 3 +66420 3370 yarns 2 +66421 3371 There must be an audience that enjoys the Friday series , but I would n't be interested in knowing any of them personally . 0 +66422 3371 There must be an audience that enjoys the Friday series , but I would n't be interested in knowing any of them personally 0 +66423 3371 There must be an audience that enjoys the Friday series , but 3 +66424 3371 There must be an audience that enjoys the Friday series , 2 +66425 3371 There must be an audience that enjoys the Friday series 2 +66426 3371 must be an audience that enjoys the Friday series 2 +66427 3371 be an audience that enjoys the Friday series 2 +66428 3371 an audience that enjoys the Friday series 2 +66429 3371 an audience 2 +66430 3371 that enjoys the Friday series 2 +66431 3371 enjoys the Friday series 3 +66432 3371 the Friday series 2 +66433 3371 Friday series 2 +66434 3371 I would n't be interested in knowing any of them personally 2 +66435 3371 would n't be interested in knowing any of them personally 2 +66436 3371 be interested in knowing any of them personally 3 +66437 3371 interested in knowing any of them personally 2 +66438 3371 in knowing any of them personally 2 +66439 3371 knowing any of them personally 2 +66440 3371 knowing any of them 2 +66441 3371 any of them 2 +66442 3372 Formula 51 has dulled your senses faster and deeper than any recreational drug on the market . 2 +66443 3372 has dulled your senses faster and deeper than any recreational drug on the market . 2 +66444 3372 has dulled your senses faster and deeper than any recreational drug on the market 0 +66445 3372 dulled your senses faster and deeper than any recreational drug on the market 1 +66446 3372 dulled your senses faster and deeper 1 +66447 3372 dulled your senses 1 +66448 3372 dulled 1 +66449 3372 your senses 2 +66450 3372 faster and deeper 3 +66451 3372 faster and 2 +66452 3372 than any recreational drug on the market 2 +66453 3372 any recreational drug on the market 2 +66454 3372 any recreational drug 3 +66455 3372 recreational drug 3 +66456 3372 recreational 2 +66457 3372 on the market 2 +66458 3372 the market 2 +66459 3373 Is `` Ballistic '' worth the price of admission ? 2 +66460 3373 Is `` Ballistic '' worth the price of admission 2 +66461 3373 Is `` Ballistic '' worth 2 +66462 3373 `` Ballistic '' worth 2 +66463 3373 Ballistic '' worth 2 +66464 3373 '' worth 3 +66465 3374 McTiernan 's remake may be lighter on its feet -- the sober-minded original was as graceful as a tap-dancing rhino -- but it is just as boring and as obvious . 1 +66466 3374 McTiernan 's remake may be lighter on its feet -- the sober-minded original was as graceful as a tap-dancing rhino -- but it is just as boring and as obvious 0 +66467 3374 McTiernan 's remake may be lighter on its feet -- the sober-minded original was as graceful as a tap-dancing rhino -- but 2 +66468 3374 McTiernan 's remake may be lighter on its feet -- the sober-minded original was as graceful as a tap-dancing rhino -- 2 +66469 3374 McTiernan 's remake may be lighter on its feet 3 +66470 3374 McTiernan 's remake 2 +66471 3374 McTiernan 's 2 +66472 3374 McTiernan 2 +66473 3374 may be lighter on its feet 2 +66474 3374 be lighter on its feet 2 +66475 3374 be lighter 2 +66476 3374 lighter 3 +66477 3374 on its feet 2 +66478 3374 its feet 2 +66479 3374 -- the sober-minded original was as graceful as a tap-dancing rhino -- 0 +66480 3374 the sober-minded original was as graceful as a tap-dancing rhino -- 2 +66481 3374 the sober-minded original was as graceful as a tap-dancing rhino 2 +66482 3374 the sober-minded original 2 +66483 3374 sober-minded original 2 +66484 3374 sober-minded 2 +66485 3374 was as graceful as a tap-dancing rhino 2 +66486 3374 was as graceful 3 +66487 3374 as graceful 3 +66488 3374 as a tap-dancing rhino 2 +66489 3374 a tap-dancing rhino 1 +66490 3374 tap-dancing rhino 2 +66491 3374 tap-dancing 2 +66492 3374 rhino 2 +66493 3374 it is just as boring and as obvious 2 +66494 3374 is just as boring and as obvious 0 +66495 3374 as boring and as obvious 1 +66496 3374 as boring and 1 +66497 3374 as boring 1 +66498 3374 as obvious 2 +66499 3375 Gives us a lot to chew on , but not all of it has been properly digested . 2 +66500 3375 Gives us a lot to chew on , but not all of it 2 +66501 3375 a lot to chew on , but not all of it 2 +66502 3375 a lot to chew on , but not 2 +66503 3375 a lot to chew on , 2 +66504 3375 a lot to chew on 2 +66505 3375 lot to chew on 2 +66506 3375 to chew on 2 +66507 3375 chew on 2 +66508 3375 has been properly digested . 3 +66509 3375 has been properly digested 3 +66510 3375 been properly digested 3 +66511 3375 properly digested 3 +66512 3375 digested 2 +66513 3376 Klein , charming in comedies like American Pie and dead-on in Election , delivers one of the saddest action hero performances ever witnessed . 1 +66514 3376 Klein , charming in comedies like American Pie and dead-on in Election , 3 +66515 3376 Klein , charming in comedies like American Pie and dead-on in Election 2 +66516 3376 Klein , 2 +66517 3376 Klein 1 +66518 3376 charming in comedies like American Pie and dead-on in Election 3 +66519 3376 charming in comedies like American Pie and 3 +66520 3376 charming in comedies like American Pie 3 +66521 3376 in comedies like American Pie 2 +66522 3376 comedies like American Pie 2 +66523 3376 like American Pie 2 +66524 3376 American Pie 2 +66525 3376 Pie 2 +66526 3376 dead-on in Election 3 +66527 3376 dead-on 3 +66528 3376 in Election 2 +66529 3376 Election 2 +66530 3376 delivers one of the saddest action hero performances ever witnessed . 2 +66531 3376 delivers one of the saddest action hero performances ever witnessed 1 +66532 3376 one of the saddest action hero performances ever witnessed 0 +66533 3376 of the saddest action hero performances ever witnessed 1 +66534 3376 the saddest action hero performances ever witnessed 0 +66535 3376 the saddest action hero performances 2 +66536 3376 saddest action hero performances 0 +66537 3376 saddest 0 +66538 3376 action hero performances 3 +66539 3376 hero performances 3 +66540 3376 ever witnessed 2 +66541 3376 witnessed 2 +66542 3377 Brainy , artistic and muted , almost to the point of suffocation . 2 +66543 3377 Brainy 2 +66544 3377 , artistic and muted , almost to the point of suffocation . 1 +66545 3377 artistic and muted , almost to the point of suffocation . 1 +66546 3377 artistic and muted , almost to the point of suffocation 0 +66547 3377 artistic and muted , almost 2 +66548 3377 artistic and muted , 2 +66549 3377 artistic and muted 2 +66550 3377 artistic and 2 +66551 3377 to the point of suffocation 1 +66552 3377 the point of suffocation 1 +66553 3377 of suffocation 2 +66554 3377 suffocation 1 +66555 3378 The self-serious Equilibrium makes its point too well ; a movie , like life , is n't much fun without the highs and lows . 1 +66556 3378 The self-serious Equilibrium makes its point too well ; a movie , like life , is n't much fun without the highs and lows 2 +66557 3378 The self-serious Equilibrium makes its point too well ; 1 +66558 3378 The self-serious Equilibrium makes its point too well 2 +66559 3378 The self-serious Equilibrium 1 +66560 3378 self-serious Equilibrium 2 +66561 3378 self-serious 2 +66562 3378 Equilibrium 2 +66563 3378 makes its point too well 3 +66564 3378 makes its point 3 +66565 3378 too well 2 +66566 3378 a movie , like life , is n't much fun without the highs and lows 2 +66567 3378 , like life , is n't much fun without the highs and lows 3 +66568 3378 like life , is n't much fun without the highs and lows 2 +66569 3378 like life 3 +66570 3378 , is n't much fun without the highs and lows 2 +66571 3378 is n't much fun without the highs and lows 1 +66572 3378 is n't much fun 1 +66573 3378 much fun 4 +66574 3378 without the highs and lows 2 +66575 3378 the highs and lows 3 +66576 3378 highs and lows 2 +66577 3378 highs and 2 +66578 3379 Equlibrium could pass for a thirteen-year-old 's book report on the totalitarian themes of 1984 and Farenheit 451 . 1 +66579 3379 Equlibrium 2 +66580 3379 could pass for a thirteen-year-old 's book report on the totalitarian themes of 1984 and Farenheit 451 . 2 +66581 3379 could pass for a thirteen-year-old 's book report on the totalitarian themes of 1984 and Farenheit 451 0 +66582 3379 pass for a thirteen-year-old 's book report on the totalitarian themes of 1984 and Farenheit 451 0 +66583 3379 pass for a thirteen-year-old 's book report 1 +66584 3379 for a thirteen-year-old 's book report 1 +66585 3379 a thirteen-year-old 's book report 3 +66586 3379 a thirteen-year-old 's 2 +66587 3379 thirteen-year-old 's 2 +66588 3379 thirteen-year-old 2 +66589 3379 book report 1 +66590 3379 on the totalitarian themes of 1984 and Farenheit 451 2 +66591 3379 the totalitarian themes of 1984 and Farenheit 451 2 +66592 3379 the totalitarian themes 2 +66593 3379 totalitarian themes 2 +66594 3379 totalitarian 1 +66595 3379 of 1984 and Farenheit 451 2 +66596 3379 1984 and Farenheit 451 2 +66597 3379 1984 and 2 +66598 3379 Farenheit 451 2 +66599 3379 Farenheit 2 +66600 3380 And it 's harder still to believe that anyone in his right mind would want to see the it . 0 +66601 3380 it 's harder still to believe that anyone in his right mind would want to see the it . 0 +66602 3380 's harder still to believe that anyone in his right mind would want to see the it . 0 +66603 3380 's harder still to believe that anyone in his right mind would want to see the it 0 +66604 3380 's harder 2 +66605 3380 harder 2 +66606 3380 still to believe that anyone in his right mind would want to see the it 0 +66607 3380 to believe that anyone in his right mind would want to see the it 1 +66608 3380 believe that anyone in his right mind would want to see the it 2 +66609 3380 that anyone in his right mind would want to see the it 0 +66610 3380 anyone in his right mind would want to see the it 3 +66611 3380 would want to see the it 2 +66612 3380 want to see the it 2 +66613 3380 to see the it 2 +66614 3380 see the it 3 +66615 3380 the it 2 +66616 3381 Loud , silly , stupid and pointless . 0 +66617 3381 Loud , silly , stupid and pointless 1 +66618 3381 Loud , 2 +66619 3381 silly , stupid and pointless 1 +66620 3381 , stupid and pointless 1 +66621 3381 stupid and pointless 0 +66622 3381 stupid and 1 +66623 3382 Calculated swill . 2 +66624 3382 swill . 1 +66625 3382 swill 1 +66626 3383 Merely -LRB- and literally -RRB- tosses around sex toys and offers half-hearted paeans to empowerment that are repeatedly undercut by the brutality of the jokes , most at women 's expense . 0 +66627 3383 -LRB- and literally -RRB- tosses around sex toys and offers half-hearted paeans to empowerment that are repeatedly undercut by the brutality of the jokes , most at women 's expense . 0 +66628 3383 -LRB- and literally -RRB- 2 +66629 3383 and literally -RRB- 2 +66630 3383 and literally 2 +66631 3383 tosses around sex toys and offers half-hearted paeans to empowerment that are repeatedly undercut by the brutality of the jokes , most at women 's expense . 0 +66632 3383 tosses around sex toys and offers half-hearted paeans to empowerment that are repeatedly undercut by the brutality of the jokes , most at women 's expense 1 +66633 3383 tosses around sex toys and offers half-hearted paeans to empowerment 1 +66634 3383 tosses around sex toys and offers 1 +66635 3383 around sex toys and offers 2 +66636 3383 sex toys and offers 1 +66637 3383 toys and offers 2 +66638 3383 toys and 2 +66639 3383 toys 2 +66640 3383 half-hearted paeans to empowerment 2 +66641 3383 half-hearted 1 +66642 3383 paeans to empowerment 2 +66643 3383 paeans 2 +66644 3383 to empowerment 2 +66645 3383 that are repeatedly undercut by the brutality of the jokes , most at women 's expense 1 +66646 3383 are repeatedly undercut by the brutality of the jokes , most at women 's expense 1 +66647 3383 repeatedly undercut by the brutality of the jokes , most at women 's expense 2 +66648 3383 undercut by the brutality of the jokes , most at women 's expense 1 +66649 3383 by the brutality of the jokes , most at women 's expense 1 +66650 3383 the brutality of the jokes , most at women 's expense 1 +66651 3383 the brutality 1 +66652 3383 brutality 2 +66653 3383 of the jokes , most at women 's expense 1 +66654 3383 the jokes , most at women 's expense 1 +66655 3383 the jokes , 3 +66656 3383 most at women 's expense 1 +66657 3383 at women 's expense 2 +66658 3383 women 's expense 2 +66659 3383 women 's 2 +66660 3384 Jackson shamefully strolls through this mess with a smug grin , inexplicably wearing a kilt and carrying a bag of golf clubs over one shoulder . 1 +66661 3384 shamefully strolls through this mess with a smug grin , inexplicably wearing a kilt and carrying a bag of golf clubs over one shoulder . 1 +66662 3384 shamefully 1 +66663 3384 strolls through this mess with a smug grin , inexplicably wearing a kilt and carrying a bag of golf clubs over one shoulder . 1 +66664 3384 strolls through this mess with a smug grin , inexplicably wearing a kilt and carrying a bag of golf clubs over one shoulder 1 +66665 3384 strolls through this mess with a smug grin , 1 +66666 3384 strolls through this mess with a smug grin 2 +66667 3384 strolls through this mess 2 +66668 3384 strolls 3 +66669 3384 through this mess 0 +66670 3384 this mess 1 +66671 3384 with a smug grin 2 +66672 3384 a smug grin 2 +66673 3384 smug grin 1 +66674 3384 grin 3 +66675 3384 inexplicably wearing a kilt and carrying a bag of golf clubs over one shoulder 2 +66676 3384 inexplicably 2 +66677 3384 wearing a kilt and carrying a bag of golf clubs over one shoulder 2 +66678 3384 wearing a kilt and 2 +66679 3384 wearing a kilt 2 +66680 3384 wearing 2 +66681 3384 a kilt 1 +66682 3384 kilt 2 +66683 3384 carrying a bag of golf clubs over one shoulder 2 +66684 3384 a bag of golf clubs over one shoulder 2 +66685 3384 a bag 2 +66686 3384 of golf clubs over one shoulder 2 +66687 3384 golf clubs over one shoulder 2 +66688 3384 golf clubs 2 +66689 3384 golf 2 +66690 3384 clubs 2 +66691 3384 over one shoulder 2 +66692 3384 one shoulder 2 +66693 3384 shoulder 2 +66694 3385 Unspeakable , of course , barely begins to describe the plot and its complications . 0 +66695 3385 Unspeakable , of course , 2 +66696 3385 Unspeakable , of course 2 +66697 3385 Unspeakable , 2 +66698 3385 Unspeakable 1 +66699 3385 barely begins to describe the plot and its complications . 2 +66700 3385 begins to describe the plot and its complications . 2 +66701 3385 begins to describe the plot and its complications 2 +66702 3385 to describe the plot and its complications 2 +66703 3385 describe the plot and its complications 2 +66704 3385 the plot and its complications 2 +66705 3385 its complications 2 +66706 3386 As the sulking , moody male hustler in the title role , -LRB- Franco -RRB- has all of Dean 's mannerisms and self-indulgence , but none of his sweetness and vulnerability . 1 +66707 3386 As the sulking , moody male hustler in the title role 2 +66708 3386 the sulking , moody male hustler in the title role 2 +66709 3386 the sulking , moody male hustler 1 +66710 3386 sulking , moody male hustler 2 +66711 3386 sulking 2 +66712 3386 , moody male hustler 2 +66713 3386 moody male hustler 1 +66714 3386 male hustler 2 +66715 3386 hustler 2 +66716 3386 , -LRB- Franco -RRB- has all of Dean 's mannerisms and self-indulgence , but none of his sweetness and vulnerability . 2 +66717 3386 -LRB- Franco -RRB- has all of Dean 's mannerisms and self-indulgence , but none of his sweetness and vulnerability . 2 +66718 3386 -LRB- Franco -RRB- 2 +66719 3386 Franco -RRB- 2 +66720 3386 Franco 2 +66721 3386 has all of Dean 's mannerisms and self-indulgence , but none of his sweetness and vulnerability . 1 +66722 3386 has all of Dean 's mannerisms and self-indulgence , but none of his sweetness and vulnerability 1 +66723 3386 all of Dean 's mannerisms and self-indulgence , but none of his sweetness and vulnerability 1 +66724 3386 all of Dean 's mannerisms and self-indulgence , but 1 +66725 3386 all of Dean 's mannerisms and self-indulgence , 1 +66726 3386 all of Dean 's mannerisms and self-indulgence 2 +66727 3386 of Dean 's mannerisms and self-indulgence 2 +66728 3386 Dean 's mannerisms and self-indulgence 2 +66729 3386 Dean 's 2 +66730 3386 Dean 2 +66731 3386 mannerisms and self-indulgence 3 +66732 3386 mannerisms and 2 +66733 3386 mannerisms 2 +66734 3386 self-indulgence 2 +66735 3386 none of his sweetness and vulnerability 2 +66736 3386 of his sweetness and vulnerability 3 +66737 3386 his sweetness and vulnerability 3 +66738 3386 sweetness and vulnerability 3 +66739 3386 sweetness and 3 +66740 3386 vulnerability 2 +66741 3387 Driven by a fantastic dual performance from Ian Holm ... the film is funny , insightfully human and a delightful lark for history buffs . 4 +66742 3387 Driven by a fantastic dual performance from Ian Holm ... the film is funny , insightfully human and a delightful lark for history buffs 3 +66743 3387 Driven by a fantastic dual performance from Ian Holm ... 3 +66744 3387 Driven by a fantastic dual performance from Ian Holm 4 +66745 3387 Driven 2 +66746 3387 by a fantastic dual performance from Ian Holm 4 +66747 3387 a fantastic dual performance from Ian Holm 3 +66748 3387 a fantastic dual performance 4 +66749 3387 fantastic dual performance 4 +66750 3387 dual performance 2 +66751 3387 dual 2 +66752 3387 from Ian Holm 2 +66753 3387 the film is funny , insightfully human and a delightful lark for history buffs 4 +66754 3387 is funny , insightfully human and a delightful lark for history buffs 4 +66755 3387 is funny , insightfully human and 3 +66756 3387 is funny , insightfully human 4 +66757 3387 funny , insightfully human 3 +66758 3387 , insightfully human 3 +66759 3387 insightfully human 2 +66760 3387 insightfully 4 +66761 3387 a delightful lark for history buffs 3 +66762 3387 a delightful lark 3 +66763 3387 delightful lark 2 +66764 3387 lark 2 +66765 3387 for history buffs 3 +66766 3387 history buffs 2 +66767 3388 While the film is not entirely successful , it still manages to string together enough charming moments to work . 3 +66768 3388 While the film is not entirely successful 1 +66769 3388 the film is not entirely successful 0 +66770 3388 is not entirely successful 1 +66771 3388 entirely successful 4 +66772 3388 , it still manages to string together enough charming moments to work . 3 +66773 3388 it still manages to string together enough charming moments to work . 2 +66774 3388 still manages to string together enough charming moments to work . 3 +66775 3388 manages to string together enough charming moments to work . 3 +66776 3388 manages to string together enough charming moments to work 3 +66777 3388 to string together enough charming moments to work 3 +66778 3388 string together enough charming moments to work 3 +66779 3388 string together enough charming moments 3 +66780 3388 string together 2 +66781 3388 enough charming moments 3 +66782 3388 enough charming 2 +66783 3389 But the problem with Wendigo , for all its effective moments , is n't really one of resources . 1 +66784 3389 the problem with Wendigo , for all its effective moments , is n't really one of resources . 1 +66785 3389 the problem with Wendigo , for all its effective moments , 2 +66786 3389 the problem with Wendigo , for all its effective moments 2 +66787 3389 the problem with Wendigo , 1 +66788 3389 the problem with Wendigo 1 +66789 3389 with Wendigo 2 +66790 3389 for all its effective moments 2 +66791 3389 all its effective moments 3 +66792 3389 its effective moments 2 +66793 3389 is n't really one of resources . 2 +66794 3389 is n't really one of resources 1 +66795 3389 is n't really 2 +66796 3389 one of resources 2 +66797 3389 of resources 2 +66798 3389 resources 2 +66799 3390 If we 're to slap protagonist Genevieve LePlouff because she 's French , do we have that same option to slap her creators because they 're clueless and inept ? 0 +66800 3390 If we 're to slap protagonist Genevieve LePlouff because she 's French 2 +66801 3390 we 're to slap protagonist Genevieve LePlouff because she 's French 1 +66802 3390 're to slap protagonist Genevieve LePlouff because she 's French 2 +66803 3390 're to slap protagonist Genevieve LePlouff 2 +66804 3390 to slap protagonist Genevieve LePlouff 2 +66805 3390 slap protagonist Genevieve LePlouff 2 +66806 3390 protagonist Genevieve LePlouff 2 +66807 3390 Genevieve LePlouff 2 +66808 3390 Genevieve 2 +66809 3390 LePlouff 2 +66810 3390 because she 's French 2 +66811 3390 she 's French 2 +66812 3390 's French 2 +66813 3390 , do we have that same option to slap her creators because they 're clueless and inept ? 0 +66814 3390 do we have that same option to slap her creators because they 're clueless and inept ? 1 +66815 3390 do we have that same option to slap her creators because they 're clueless and inept 1 +66816 3390 do we 2 +66817 3390 have that same option to slap her creators because they 're clueless and inept 0 +66818 3390 that same option to slap her creators because they 're clueless and inept 1 +66819 3390 same option to slap her creators because they 're clueless and inept 1 +66820 3390 option to slap her creators because they 're clueless and inept 0 +66821 3390 to slap her creators because they 're clueless and inept 1 +66822 3390 slap her creators because they 're clueless and inept 2 +66823 3390 slap her creators 2 +66824 3390 her creators 2 +66825 3390 because they 're clueless and inept 0 +66826 3390 they 're clueless and inept 1 +66827 3390 're clueless and inept 0 +66828 3390 clueless and inept 1 +66829 3390 clueless and 1 +66830 3391 This is an exercise in chilling style , and Twohy films the sub , inside and out , with an eye on preserving a sense of mystery . 4 +66831 3391 is an exercise in chilling style , and Twohy films the sub , inside and out , with an eye on preserving a sense of mystery . 3 +66832 3391 is an exercise in chilling style , and Twohy films the sub , inside and out , with an eye on preserving a sense of mystery 3 +66833 3391 is an exercise in chilling style , and Twohy films the sub , inside and out , 3 +66834 3391 is an exercise in chilling style , and Twohy films the sub , inside and out 3 +66835 3391 an exercise in chilling style , and Twohy films the sub , inside and out 3 +66836 3391 an exercise in chilling style , and 2 +66837 3391 an exercise in chilling style , 4 +66838 3391 an exercise in chilling style 3 +66839 3391 in chilling style 3 +66840 3391 chilling style 3 +66841 3391 Twohy films the sub , inside and out 2 +66842 3391 Twohy films the sub , 2 +66843 3391 Twohy films the sub 2 +66844 3391 Twohy films 2 +66845 3391 the sub 2 +66846 3391 sub 1 +66847 3391 inside and out 2 +66848 3391 inside and 2 +66849 3391 with an eye on preserving a sense of mystery 3 +66850 3391 an eye on preserving a sense of mystery 3 +66851 3391 an eye 2 +66852 3391 on preserving a sense of mystery 2 +66853 3391 preserving a sense of mystery 3 +66854 3391 preserving 3 +66855 3391 a sense of mystery 3 +66856 3392 A sobering and powerful documentary about the most severe kind of personal loss : rejection by one 's mother . 3 +66857 3392 A sobering and powerful documentary about the most severe kind of personal loss : rejection by one 's mother 3 +66858 3392 A sobering and powerful documentary about the most severe kind of personal loss : 3 +66859 3392 A sobering and powerful documentary about the most severe kind of personal loss 4 +66860 3392 A sobering and powerful documentary 4 +66861 3392 sobering and powerful documentary 3 +66862 3392 and powerful documentary 4 +66863 3392 powerful documentary 4 +66864 3392 about the most severe kind of personal loss 2 +66865 3392 the most severe kind of personal loss 2 +66866 3392 the most severe kind 1 +66867 3392 most severe kind 2 +66868 3392 most severe 1 +66869 3392 of personal loss 2 +66870 3392 personal loss 1 +66871 3392 rejection by one 's mother 1 +66872 3392 rejection 2 +66873 3392 by one 's mother 2 +66874 3392 one 's mother 2 +66875 3393 Contradicts everything we 've come to expect from movies nowadays . 3 +66876 3393 everything we 've come to expect from movies nowadays . 3 +66877 3393 everything we 've come to expect from movies nowadays 2 +66878 3393 we 've come to expect from movies nowadays 2 +66879 3393 've come to expect from movies nowadays 2 +66880 3393 come to expect from movies nowadays 2 +66881 3393 to expect from movies nowadays 2 +66882 3393 expect from movies nowadays 2 +66883 3393 expect from movies 1 +66884 3393 from movies 2 +66885 3393 nowadays 2 +66886 3394 By that measure , it is a failure . 0 +66887 3394 By that measure 2 +66888 3394 that measure 2 +66889 3394 , it is a failure . 0 +66890 3394 it is a failure . 0 +66891 3394 is a failure . 0 +66892 3394 is a failure 0 +66893 3394 a failure 0 +66894 3394 failure 0 +66895 3395 Feels like nothing quite so much as a middle-aged moviemaker 's attempt to surround himself with beautiful , half-naked women . 2 +66896 3395 like nothing quite so much as a middle-aged moviemaker 's attempt to surround himself with beautiful , half-naked women . 2 +66897 3395 like nothing quite so much as a middle-aged moviemaker 's attempt to surround himself with beautiful , half-naked women 1 +66898 3395 nothing quite so much as a middle-aged moviemaker 's attempt to surround himself with beautiful , half-naked women 1 +66899 3395 nothing quite so much 2 +66900 3395 nothing quite so 2 +66901 3395 quite so 2 +66902 3395 as a middle-aged moviemaker 's attempt to surround himself with beautiful , half-naked women 2 +66903 3395 a middle-aged moviemaker 's attempt to surround himself with beautiful , half-naked women 1 +66904 3395 a middle-aged moviemaker 's 2 +66905 3395 middle-aged moviemaker 's 2 +66906 3395 moviemaker 's 2 +66907 3395 moviemaker 2 +66908 3395 attempt to surround himself with beautiful , half-naked women 2 +66909 3395 to surround himself with beautiful , half-naked women 2 +66910 3395 surround himself with beautiful , half-naked women 2 +66911 3395 surround himself 2 +66912 3395 with beautiful , half-naked women 3 +66913 3395 beautiful , half-naked women 2 +66914 3395 , half-naked women 2 +66915 3395 half-naked women 2 +66916 3395 half-naked 2 +66917 3396 Enjoyably fast-moving , hard-hitting documentary . 4 +66918 3396 Enjoyably fast-moving 4 +66919 3396 fast-moving 3 +66920 3396 , hard-hitting documentary . 3 +66921 3396 hard-hitting documentary . 4 +66922 3396 hard-hitting documentary 3 +66923 3396 hard-hitting 3 +66924 3397 I 'm happy to have seen it -- not as an alternate version , but as the ultimate exercise in viewing deleted scenes . 2 +66925 3397 'm happy to have seen it -- not as an alternate version , but as the ultimate exercise in viewing deleted scenes . 3 +66926 3397 'm happy to have seen it -- not as an alternate version , but as the ultimate exercise in viewing deleted scenes 3 +66927 3397 'm happy to have seen it -- 4 +66928 3397 'm happy to have seen it 4 +66929 3397 happy to have seen it 3 +66930 3397 to have seen it 2 +66931 3397 have seen it 2 +66932 3397 not as an alternate version , but as the ultimate exercise in viewing deleted scenes 2 +66933 3397 an alternate version , but as the ultimate exercise in viewing deleted scenes 2 +66934 3397 an alternate version , but as 2 +66935 3397 an alternate version , 2 +66936 3397 an alternate version 2 +66937 3397 alternate version 2 +66938 3397 the ultimate exercise in viewing deleted scenes 3 +66939 3397 the ultimate exercise 2 +66940 3397 ultimate exercise 2 +66941 3397 in viewing deleted scenes 2 +66942 3397 viewing deleted scenes 2 +66943 3397 deleted scenes 2 +66944 3397 deleted 1 +66945 3398 If Borstal Boy is n't especially realistic , it is an engaging nostalgia piece . 2 +66946 3398 If Borstal Boy is n't especially realistic 1 +66947 3398 Borstal Boy is n't especially realistic 1 +66948 3398 Borstal Boy 2 +66949 3398 Borstal 2 +66950 3398 is n't especially realistic 1 +66951 3398 especially realistic 3 +66952 3398 , it is an engaging nostalgia piece . 3 +66953 3398 it is an engaging nostalgia piece . 2 +66954 3398 is an engaging nostalgia piece . 3 +66955 3398 is an engaging nostalgia piece 4 +66956 3398 an engaging nostalgia piece 4 +66957 3398 engaging nostalgia piece 3 +66958 3399 Stirs potentially enticing ingredients into an uneasy blend of Ghost and Close Encounters of the Third Kind . 2 +66959 3399 Stirs potentially enticing ingredients into an uneasy blend of Ghost and Close Encounters of the Third Kind 2 +66960 3399 Stirs potentially enticing ingredients 2 +66961 3399 potentially enticing ingredients 3 +66962 3399 potentially enticing 3 +66963 3399 into an uneasy blend of Ghost and Close Encounters of the Third Kind 1 +66964 3399 an uneasy blend of Ghost and Close Encounters of the Third Kind 2 +66965 3399 an uneasy blend of Ghost and 2 +66966 3399 an uneasy blend of Ghost 1 +66967 3399 an uneasy blend 1 +66968 3399 uneasy blend 1 +66969 3399 of Ghost 2 +66970 3399 Close Encounters of the Third Kind 2 +66971 3399 Close Encounters 2 +66972 3399 of the Third Kind 2 +66973 3399 the Third Kind 2 +66974 3399 Third Kind 2 +66975 3400 I loved this film . 4 +66976 3400 loved this film . 4 +66977 3400 loved this film 4 +66978 3401 Weirdly , Broomfield has compelling new material but he does n't unveil it until the end , after endless scenes of him wheedling reluctant witnesses and pointing his camera through the smeared windshield of his rental car . 1 +66979 3401 , Broomfield has compelling new material but he does n't unveil it until the end , after endless scenes of him wheedling reluctant witnesses and pointing his camera through the smeared windshield of his rental car . 1 +66980 3401 Broomfield has compelling new material but he does n't unveil it until the end , after endless scenes of him wheedling reluctant witnesses and pointing his camera through the smeared windshield of his rental car . 1 +66981 3401 Broomfield has compelling new material but he does n't unveil it until the end , after endless scenes of him wheedling reluctant witnesses and pointing his camera through the smeared windshield of his rental car 1 +66982 3401 Broomfield has compelling new material but 2 +66983 3401 Broomfield has compelling new material 3 +66984 3401 has compelling new material 3 +66985 3401 compelling new material 3 +66986 3401 new material 2 +66987 3401 he does n't unveil it until the end , after endless scenes of him wheedling reluctant witnesses and pointing his camera through the smeared windshield of his rental car 3 +66988 3401 does n't unveil it until the end , after endless scenes of him wheedling reluctant witnesses and pointing his camera through the smeared windshield of his rental car 2 +66989 3401 unveil it until the end , after endless scenes of him wheedling reluctant witnesses and pointing his camera through the smeared windshield of his rental car 1 +66990 3401 unveil it until the end , 2 +66991 3401 unveil it until the end 2 +66992 3401 unveil it 2 +66993 3401 unveil 2 +66994 3401 after endless scenes of him wheedling reluctant witnesses and pointing his camera through the smeared windshield of his rental car 2 +66995 3401 endless scenes of him wheedling reluctant witnesses and pointing his camera through the smeared windshield of his rental car 2 +66996 3401 endless scenes 2 +66997 3401 of him wheedling reluctant witnesses and pointing his camera through the smeared windshield of his rental car 1 +66998 3401 him wheedling reluctant witnesses and pointing his camera through the smeared windshield of his rental car 2 +66999 3401 wheedling reluctant witnesses and pointing his camera through the smeared windshield of his rental car 2 +67000 3401 wheedling reluctant witnesses and 2 +67001 3401 wheedling reluctant witnesses 1 +67002 3401 wheedling 2 +67003 3401 reluctant witnesses 2 +67004 3401 witnesses 2 +67005 3401 pointing his camera through the smeared windshield of his rental car 1 +67006 3401 pointing his camera 2 +67007 3401 pointing 2 +67008 3401 his camera 2 +67009 3401 through the smeared windshield of his rental car 2 +67010 3401 the smeared windshield of his rental car 2 +67011 3401 the smeared windshield 2 +67012 3401 smeared windshield 2 +67013 3401 smeared 2 +67014 3401 windshield 3 +67015 3401 of his rental car 3 +67016 3401 his rental car 3 +67017 3401 rental car 2 +67018 3402 Like the Tuck family themselves , this movie just goes on and on and on and on 0 +67019 3402 Like the Tuck family themselves 2 +67020 3402 the Tuck family themselves 2 +67021 3402 the Tuck family 2 +67022 3402 Tuck family 2 +67023 3402 , this movie just goes on and on and on and on 1 +67024 3402 this movie just goes on and on and on and on 1 +67025 3402 just goes on and on and on and on 1 +67026 3402 goes on and on and on and on 1 +67027 3402 on and on and on and on 2 +67028 3402 on and on and 2 +67029 3403 Once one experiences Mr. Haneke 's own sadistic tendencies toward his audience , one is left with a sour taste in one 's mouth , and little else . 0 +67030 3403 Once one experiences Mr. Haneke 's own sadistic tendencies toward his audience 2 +67031 3403 one experiences Mr. Haneke 's own sadistic tendencies toward his audience 1 +67032 3403 experiences Mr. Haneke 's own sadistic tendencies toward his audience 2 +67033 3403 Mr. Haneke 's own sadistic tendencies toward his audience 1 +67034 3403 Mr. Haneke 's own sadistic tendencies 1 +67035 3403 Mr. Haneke 's 2 +67036 3403 Haneke 's 2 +67037 3403 Haneke 2 +67038 3403 own sadistic tendencies 2 +67039 3403 sadistic tendencies 2 +67040 3403 tendencies 2 +67041 3403 toward his audience 2 +67042 3403 , one is left with a sour taste in one 's mouth , and little else . 1 +67043 3403 one is left with a sour taste in one 's mouth , and little else . 1 +67044 3403 is left with a sour taste in one 's mouth , and little else . 0 +67045 3403 is left with a sour taste in one 's mouth , and little else 1 +67046 3403 left with a sour taste in one 's mouth , and little else 0 +67047 3403 with a sour taste in one 's mouth , and little else 0 +67048 3403 a sour taste in one 's mouth , and little else 1 +67049 3403 a sour taste in one 's mouth , and 2 +67050 3403 a sour taste in one 's mouth , 0 +67051 3403 a sour taste in one 's mouth 1 +67052 3403 in one 's mouth 2 +67053 3403 one 's mouth 2 +67054 3404 Nettelbeck has crafted an engaging fantasy of flavours and emotions , one part romance novel , one part recipe book . 3 +67055 3404 Nettelbeck 2 +67056 3404 has crafted an engaging fantasy of flavours and emotions , one part romance novel , one part recipe book . 4 +67057 3404 has crafted an engaging fantasy of flavours and emotions , one part romance novel , one part recipe book 3 +67058 3404 crafted an engaging fantasy of flavours and emotions , one part romance novel , one part recipe book 4 +67059 3404 an engaging fantasy of flavours and emotions , one part romance novel , one part recipe book 3 +67060 3404 an engaging fantasy 4 +67061 3404 engaging fantasy 4 +67062 3404 of flavours and emotions , one part romance novel , one part recipe book 2 +67063 3404 flavours and emotions , one part romance novel , one part recipe book 2 +67064 3404 flavours and emotions , 2 +67065 3404 flavours and emotions 3 +67066 3404 flavours and 2 +67067 3404 flavours 3 +67068 3404 one part romance novel , one part recipe book 2 +67069 3404 one part romance novel , 3 +67070 3404 one part romance novel 2 +67071 3404 part romance novel 2 +67072 3404 romance novel 2 +67073 3404 one part recipe book 2 +67074 3404 part recipe book 2 +67075 3404 recipe book 2 +67076 3405 Return to Never Land is much more P.C. than the original version -LRB- no more racist portraits of Indians , for instance -RRB- , but the excitement is missing . 1 +67077 3405 Return to Never Land is much more P.C. than the original version -LRB- no more racist portraits of Indians , for instance -RRB- , but the excitement is missing 1 +67078 3405 Return to Never Land is much more P.C. than the original version -LRB- no more racist portraits of Indians , for instance -RRB- , but 2 +67079 3405 Return to Never Land is much more P.C. than the original version -LRB- no more racist portraits of Indians , for instance -RRB- , 2 +67080 3405 Return to Never Land is much more P.C. than the original version -LRB- no more racist portraits of Indians , for instance -RRB- 2 +67081 3405 Return to Never Land 2 +67082 3405 to Never Land 2 +67083 3405 Never Land 2 +67084 3405 is much more P.C. than the original version -LRB- no more racist portraits of Indians , for instance -RRB- 3 +67085 3405 is much more 2 +67086 3405 P.C. than the original version -LRB- no more racist portraits of Indians , for instance -RRB- 2 +67087 3405 P.C. 2 +67088 3405 than the original version -LRB- no more racist portraits of Indians , for instance -RRB- 2 +67089 3405 the original version -LRB- no more racist portraits of Indians , for instance -RRB- 2 +67090 3405 -LRB- no more racist portraits of Indians , for instance -RRB- 3 +67091 3405 no more racist portraits of Indians , for instance -RRB- 1 +67092 3405 no more racist portraits of Indians , for instance 2 +67093 3405 no more racist portraits of Indians , 2 +67094 3405 no more racist portraits of Indians 2 +67095 3405 no more racist portraits 2 +67096 3405 more racist portraits 1 +67097 3405 racist portraits 1 +67098 3405 portraits 2 +67099 3405 of Indians 2 +67100 3405 Indians 2 +67101 3405 the excitement is missing 1 +67102 3406 ... manages to fall closer in quality to Silence than to the abysmal Hannibal . 2 +67103 3406 manages to fall closer in quality to Silence than to the abysmal Hannibal . 2 +67104 3406 manages to fall closer in quality to Silence than to the abysmal Hannibal 3 +67105 3406 to fall closer in quality to Silence than to the abysmal Hannibal 3 +67106 3406 fall closer in quality to Silence than to the abysmal Hannibal 2 +67107 3406 fall closer in quality to Silence 2 +67108 3406 fall closer in quality 2 +67109 3406 closer in quality 3 +67110 3406 in quality 2 +67111 3406 to Silence 2 +67112 3406 than to the abysmal Hannibal 2 +67113 3406 to the abysmal Hannibal 1 +67114 3406 the abysmal Hannibal 1 +67115 3406 abysmal Hannibal 1 +67116 3406 abysmal 1 +67117 3407 The Transporter bombards the viewer with so many explosions and side snap kicks that it ends up being surprisingly dull . 1 +67118 3407 The Transporter bombards the viewer with so many explosions and side snap kicks that it ends up being surprisingly dull 1 +67119 3407 The Transporter bombards the viewer with so many explosions and 1 +67120 3407 The Transporter bombards the viewer with so many explosions 2 +67121 3407 The Transporter 2 +67122 3407 Transporter 2 +67123 3407 bombards the viewer with so many explosions 2 +67124 3407 bombards 2 +67125 3407 the viewer with so many explosions 2 +67126 3407 with so many explosions 2 +67127 3407 so many explosions 3 +67128 3407 side snap kicks that it ends up being surprisingly dull 1 +67129 3407 side snap 2 +67130 3407 snap 2 +67131 3407 kicks that it ends up being surprisingly dull 1 +67132 3407 that it ends up being surprisingly dull 1 +67133 3407 it ends up being surprisingly dull 1 +67134 3407 ends up being surprisingly dull 1 +67135 3407 being surprisingly dull 0 +67136 3407 surprisingly dull 2 +67137 3408 -LRB- Janey -RRB- forgets about her other obligations , leading to a tragedy which is somehow guessable from the first few minutes , maybe because it echoes the by now intolerable morbidity of so many recent movies . 1 +67138 3408 -LRB- Janey -RRB- 2 +67139 3408 Janey -RRB- 2 +67140 3408 Janey 3 +67141 3408 forgets about her other obligations , leading to a tragedy which is somehow guessable from the first few minutes , maybe because it echoes the by now intolerable morbidity of so many recent movies . 1 +67142 3408 forgets about her other obligations , leading to a tragedy which is somehow guessable from the first few minutes , maybe because it echoes the by now intolerable morbidity of so many recent movies 1 +67143 3408 forgets about her other obligations , 2 +67144 3408 forgets about her other obligations 2 +67145 3408 about her other obligations 2 +67146 3408 her other obligations 2 +67147 3408 other obligations 2 +67148 3408 obligations 2 +67149 3408 leading to a tragedy which is somehow guessable from the first few minutes , maybe because it echoes the by now intolerable morbidity of so many recent movies 0 +67150 3408 to a tragedy which is somehow guessable from the first few minutes , maybe because it echoes the by now intolerable morbidity of so many recent movies 0 +67151 3408 a tragedy which is somehow guessable from the first few minutes , maybe because it echoes the by now intolerable morbidity of so many recent movies 0 +67152 3408 which is somehow guessable from the first few minutes , maybe because it echoes the by now intolerable morbidity of so many recent movies 1 +67153 3408 is somehow guessable from the first few minutes , maybe because it echoes the by now intolerable morbidity of so many recent movies 2 +67154 3408 is somehow guessable from the first few minutes , 1 +67155 3408 is somehow guessable from the first few minutes 2 +67156 3408 is somehow 2 +67157 3408 guessable from the first few minutes 1 +67158 3408 guessable 2 +67159 3408 from the first few minutes 2 +67160 3408 the first few minutes 2 +67161 3408 first few minutes 2 +67162 3408 maybe because it echoes the by now intolerable morbidity of so many recent movies 1 +67163 3408 because it echoes the by now intolerable morbidity of so many recent movies 1 +67164 3408 it echoes the by now intolerable morbidity of so many recent movies 2 +67165 3408 echoes the by now intolerable morbidity of so many recent movies 1 +67166 3408 echoes 3 +67167 3408 the by now intolerable morbidity of so many recent movies 2 +67168 3408 the by now intolerable morbidity 1 +67169 3408 by now intolerable morbidity 1 +67170 3408 by now intolerable 1 +67171 3408 by now 2 +67172 3408 morbidity 2 +67173 3408 of so many recent movies 2 +67174 3408 so many recent movies 2 +67175 3408 recent movies 2 +67176 3409 He 's just a sad aristocrat in tattered finery , and the film seems as deflated as he does . 1 +67177 3409 He 's just a sad aristocrat in tattered finery , and the film seems as deflated as he does 1 +67178 3409 He 's just a sad aristocrat in tattered finery , and 2 +67179 3409 He 's just a sad aristocrat in tattered finery , 1 +67180 3409 He 's just a sad aristocrat in tattered finery 1 +67181 3409 's just a sad aristocrat in tattered finery 2 +67182 3409 a sad aristocrat in tattered finery 1 +67183 3409 a sad aristocrat 2 +67184 3409 sad aristocrat 2 +67185 3409 aristocrat 2 +67186 3409 in tattered finery 2 +67187 3409 tattered finery 2 +67188 3409 finery 3 +67189 3409 the film seems as deflated as he does 0 +67190 3409 seems as deflated as he does 1 +67191 3409 as deflated as he does 1 +67192 3409 deflated as he does 1 +67193 3409 deflated 1 +67194 3409 as he does 2 +67195 3409 he does 2 +67196 3410 Reign of Fire is hardly the most original fantasy film ever made -- beyond Road Warrior , it owes enormous debts to Aliens and every previous dragon drama -- but that barely makes it any less entertaining . 3 +67197 3410 Reign of Fire is hardly the most original fantasy film ever made -- beyond Road Warrior , it owes enormous debts to Aliens and every previous dragon drama -- but that barely makes it any less entertaining 3 +67198 3410 Reign of Fire is hardly the most original fantasy film ever made -- beyond Road Warrior , it owes enormous debts to Aliens and every previous dragon drama -- but 2 +67199 3410 Reign of Fire is hardly the most original fantasy film ever made -- beyond Road Warrior , it owes enormous debts to Aliens and every previous dragon drama -- 2 +67200 3410 Reign of Fire is hardly the most original fantasy film ever made -- beyond Road Warrior , it owes enormous debts to Aliens and every previous dragon drama 3 +67201 3410 Reign of Fire is hardly the most original fantasy film ever made -- 1 +67202 3410 Reign of Fire is hardly the most original fantasy film ever made 0 +67203 3410 is hardly the most original fantasy film ever made 1 +67204 3410 the most original fantasy film ever made 4 +67205 3410 the most original fantasy film 4 +67206 3410 most original fantasy film 3 +67207 3410 original fantasy film 3 +67208 3410 fantasy film 2 +67209 3410 beyond Road Warrior , it owes enormous debts to Aliens and every previous dragon drama 3 +67210 3410 beyond Road Warrior 2 +67211 3410 , it owes enormous debts to Aliens and every previous dragon drama 2 +67212 3410 it owes enormous debts to Aliens and every previous dragon drama 2 +67213 3410 owes enormous debts to Aliens and every previous dragon drama 3 +67214 3410 owes enormous debts 1 +67215 3410 enormous debts 2 +67216 3410 debts 1 +67217 3410 to Aliens and every previous dragon drama 2 +67218 3410 Aliens and every previous dragon drama 2 +67219 3410 Aliens and 3 +67220 3410 every previous dragon drama 2 +67221 3410 previous dragon drama 2 +67222 3410 dragon drama 2 +67223 3410 that barely makes it any less entertaining 2 +67224 3410 barely makes it any less entertaining 3 +67225 3410 makes it any less entertaining 2 +67226 3410 it any less entertaining 2 +67227 3410 less entertaining 1 +67228 3411 One just waits grimly for the next shock without developing much attachment to the characters . 2 +67229 3411 just waits grimly for the next shock without developing much attachment to the characters . 1 +67230 3411 waits grimly for the next shock without developing much attachment to the characters . 1 +67231 3411 waits grimly for the next shock without developing much attachment to the characters 1 +67232 3411 waits grimly for the next shock 2 +67233 3411 waits 2 +67234 3411 grimly for the next shock 1 +67235 3411 grimly 1 +67236 3411 for the next shock 2 +67237 3411 the next shock 2 +67238 3411 next shock 2 +67239 3411 without developing much attachment to the characters 2 +67240 3411 developing much attachment to the characters 2 +67241 3411 developing much attachment 2 +67242 3411 much attachment 2 +67243 3411 attachment 2 +67244 3411 to the characters 2 +67245 3412 While the story does seem pretty unbelievable at times , it 's awfully entertaining to watch . 3 +67246 3412 While the story does seem pretty unbelievable at times 2 +67247 3412 the story does seem pretty unbelievable at times 1 +67248 3412 does seem pretty unbelievable at times 1 +67249 3412 seem pretty unbelievable at times 2 +67250 3412 seem pretty unbelievable 2 +67251 3412 pretty unbelievable 1 +67252 3412 , it 's awfully entertaining to watch . 3 +67253 3412 it 's awfully entertaining to watch . 3 +67254 3412 's awfully entertaining to watch . 4 +67255 3412 's awfully entertaining to watch 4 +67256 3412 's awfully entertaining 3 +67257 3412 awfully entertaining 3 +67258 3413 90 punitive minutes of eardrum-dicing gunplay , screeching-metal smashups , and flaccid odd-couple sniping . 0 +67259 3413 90 punitive minutes of eardrum-dicing gunplay , screeching-metal smashups , and flaccid odd-couple sniping 1 +67260 3413 90 punitive minutes 0 +67261 3413 punitive minutes 1 +67262 3413 punitive 2 +67263 3413 of eardrum-dicing gunplay , screeching-metal smashups , and flaccid odd-couple sniping 2 +67264 3413 eardrum-dicing gunplay , screeching-metal smashups , and flaccid odd-couple sniping 2 +67265 3413 eardrum-dicing gunplay , screeching-metal smashups , and 2 +67266 3413 eardrum-dicing gunplay , screeching-metal smashups , 3 +67267 3413 eardrum-dicing gunplay , screeching-metal smashups 2 +67268 3413 eardrum-dicing gunplay , 2 +67269 3413 eardrum-dicing gunplay 2 +67270 3413 eardrum-dicing 2 +67271 3413 screeching-metal smashups 2 +67272 3413 screeching-metal 1 +67273 3413 smashups 2 +67274 3413 flaccid odd-couple sniping 1 +67275 3413 flaccid 1 +67276 3413 odd-couple sniping 2 +67277 3413 odd-couple 2 +67278 3413 sniping 2 +67279 3414 Pleasant but not more than recycled jock piffle . 1 +67280 3414 Pleasant but not more than recycled jock 2 +67281 3414 Pleasant but not 3 +67282 3414 more than recycled jock 1 +67283 3414 more than recycled 2 +67284 3414 than recycled 2 +67285 3414 jock 2 +67286 3414 piffle . 1 +67287 3415 Despite the surface attractions -- Conrad L. Hall 's cinematography will likely be nominated for an Oscar next year -- there 's something impressive and yet lacking about everything . 3 +67288 3415 Despite the surface attractions 1 +67289 3415 the surface attractions 2 +67290 3415 surface attractions 2 +67291 3415 attractions 2 +67292 3415 -- Conrad L. Hall 's cinematography will likely be nominated for an Oscar next year -- there 's something impressive and yet lacking about everything . 3 +67293 3415 -- Conrad L. Hall 's cinematography will likely be nominated for an Oscar next year -- 4 +67294 3415 Conrad L. Hall 's cinematography will likely be nominated for an Oscar next year -- 4 +67295 3415 Conrad L. Hall 's cinematography will likely be nominated for an Oscar next year 4 +67296 3415 Conrad L. Hall 's cinematography 2 +67297 3415 Conrad L. Hall 's 2 +67298 3415 Conrad 2 +67299 3415 L. Hall 's 2 +67300 3415 L. 2 +67301 3415 Hall 's 2 +67302 3415 will likely be nominated for an Oscar next year 4 +67303 3415 will likely 3 +67304 3415 be nominated for an Oscar next year 4 +67305 3415 nominated for an Oscar next year 3 +67306 3415 nominated for an Oscar 4 +67307 3415 nominated 2 +67308 3415 for an Oscar 2 +67309 3415 an Oscar 4 +67310 3415 next year 2 +67311 3415 there 's something impressive and yet lacking about everything . 2 +67312 3415 's something impressive and yet lacking about everything . 1 +67313 3415 's something impressive and yet lacking about everything 2 +67314 3415 something impressive and yet lacking about everything 3 +67315 3415 impressive and yet lacking about everything 1 +67316 3415 impressive and 4 +67317 3415 yet lacking about everything 1 +67318 3415 lacking about everything 0 +67319 3415 about everything 2 +67320 3416 By its modest , straight-ahead standards , Undisputed scores a direct hit . 3 +67321 3416 By its modest , straight-ahead standards 2 +67322 3416 its modest , straight-ahead standards 2 +67323 3416 modest , straight-ahead standards 3 +67324 3416 , straight-ahead standards 2 +67325 3416 straight-ahead standards 2 +67326 3416 straight-ahead 3 +67327 3416 , Undisputed scores a direct hit . 3 +67328 3416 Undisputed scores a direct hit . 3 +67329 3416 Undisputed 3 +67330 3416 scores a direct hit . 4 +67331 3416 scores a direct hit 3 +67332 3416 a direct hit 3 +67333 3416 direct hit 3 +67334 3417 The most compelling performance of the year adds substantial depth to this shocking testament to anti-Semitism and neo-fascism . 4 +67335 3417 The most compelling performance of the year 4 +67336 3417 The most compelling performance 4 +67337 3417 most compelling performance 3 +67338 3417 most compelling 3 +67339 3417 adds substantial depth to this shocking testament to anti-Semitism and neo-fascism . 4 +67340 3417 adds substantial depth to this shocking testament to anti-Semitism and neo-fascism 3 +67341 3417 adds substantial depth 3 +67342 3417 substantial depth 3 +67343 3417 to this shocking testament to anti-Semitism and neo-fascism 0 +67344 3417 this shocking testament to anti-Semitism and neo-fascism 1 +67345 3417 this shocking testament 2 +67346 3417 shocking testament 2 +67347 3417 to anti-Semitism and neo-fascism 2 +67348 3417 anti-Semitism and neo-fascism 1 +67349 3417 anti-Semitism and 2 +67350 3417 anti-Semitism 2 +67351 3417 neo-fascism 1 +67352 3418 It 's clear why Deuces Wild , which was shot two years ago , has been gathering dust on MGM 's shelf . 1 +67353 3418 's clear why Deuces Wild , which was shot two years ago , has been gathering dust on MGM 's shelf . 1 +67354 3418 's clear why Deuces Wild , which was shot two years ago , has been gathering dust on MGM 's shelf 1 +67355 3418 why Deuces Wild , which was shot two years ago , has been gathering dust on MGM 's shelf 2 +67356 3418 Deuces Wild , which was shot two years ago , has been gathering dust on MGM 's shelf 1 +67357 3418 Deuces Wild , which was shot two years ago , 2 +67358 3418 Deuces Wild , which was shot two years ago 2 +67359 3418 Deuces Wild , 2 +67360 3418 which was shot two years ago 3 +67361 3418 was shot two years ago 2 +67362 3418 shot two years ago 1 +67363 3418 two years ago 2 +67364 3418 has been gathering dust on MGM 's shelf 1 +67365 3418 been gathering dust on MGM 's shelf 1 +67366 3418 gathering dust on MGM 's shelf 1 +67367 3418 gathering dust 1 +67368 3418 gathering 2 +67369 3418 dust 2 +67370 3418 on MGM 's shelf 1 +67371 3418 MGM 's shelf 2 +67372 3418 MGM 's 2 +67373 3418 MGM 2 +67374 3419 Teens only . 2 +67375 3419 Teens only 2 +67376 3420 If The Full Monty was a freshman fluke , Lucky Break is -LRB- Cattaneo -RRB- sophomore slump . 1 +67377 3420 If The Full Monty was a freshman fluke 1 +67378 3420 The Full Monty was a freshman fluke 1 +67379 3420 was a freshman fluke 1 +67380 3420 a freshman fluke 2 +67381 3420 freshman fluke 1 +67382 3420 freshman 3 +67383 3420 fluke 1 +67384 3420 , Lucky Break is -LRB- Cattaneo -RRB- sophomore slump . 2 +67385 3420 Lucky Break is -LRB- Cattaneo -RRB- sophomore slump . 1 +67386 3420 is -LRB- Cattaneo -RRB- sophomore slump . 1 +67387 3420 is -LRB- Cattaneo -RRB- sophomore slump 1 +67388 3420 -LRB- Cattaneo -RRB- sophomore slump 1 +67389 3420 -LRB- Cattaneo -RRB- 2 +67390 3420 Cattaneo -RRB- 2 +67391 3420 sophomore slump 1 +67392 3420 sophomore 2 +67393 3420 slump 1 +67394 3421 Hard-core slasher aficionados will find things to like ... but overall the Halloween series has lost its edge . 1 +67395 3421 Hard-core slasher aficionados will find things to like ... but overall the Halloween series has lost its edge 1 +67396 3421 Hard-core slasher aficionados will find things to like ... 2 +67397 3421 Hard-core slasher aficionados will find things to like 3 +67398 3421 Hard-core slasher aficionados 2 +67399 3421 Hard-core 2 +67400 3421 slasher aficionados 2 +67401 3421 will find things to like 3 +67402 3421 find things to like 2 +67403 3421 things to like 3 +67404 3421 to like 3 +67405 3421 but overall the Halloween series has lost its edge 1 +67406 3421 overall the Halloween series has lost its edge 1 +67407 3421 the Halloween series has lost its edge 1 +67408 3421 the Halloween series 2 +67409 3421 Halloween series 2 +67410 3421 has lost its edge 1 +67411 3421 lost its edge 1 +67412 3421 its edge 2 +67413 3422 Derailed by bad writing and possibly also by some of that extensive post-production reworking to aim the film at young males in the throes of their first full flush of testosterone . 0 +67414 3422 Derailed by bad writing and possibly also by some of that extensive post-production reworking to aim the film at young males in the throes of their first full flush of testosterone 2 +67415 3422 Derailed by bad writing and 1 +67416 3422 Derailed by bad writing 0 +67417 3422 Derailed 1 +67418 3422 by bad writing 1 +67419 3422 bad writing 0 +67420 3422 possibly also by some of that extensive post-production reworking to aim the film at young males in the throes of their first full flush of testosterone 2 +67421 3422 also by some of that extensive post-production reworking to aim the film at young males in the throes of their first full flush of testosterone 2 +67422 3422 also by some of that extensive post-production 2 +67423 3422 by some of that extensive post-production 2 +67424 3422 some of that extensive post-production 2 +67425 3422 of that extensive post-production 2 +67426 3422 that extensive post-production 2 +67427 3422 extensive post-production 3 +67428 3422 extensive 2 +67429 3422 post-production 2 +67430 3422 reworking to aim the film at young males in the throes of their first full flush of testosterone 1 +67431 3422 to aim the film at young males in the throes of their first full flush of testosterone 2 +67432 3422 aim the film at young males in the throes of their first full flush of testosterone 2 +67433 3422 aim the film 2 +67434 3422 at young males in the throes of their first full flush of testosterone 2 +67435 3422 young males in the throes of their first full flush of testosterone 2 +67436 3422 young males 2 +67437 3422 males 2 +67438 3422 in the throes of their first full flush of testosterone 2 +67439 3422 the throes of their first full flush of testosterone 3 +67440 3422 the throes 2 +67441 3422 throes 2 +67442 3422 of their first full flush of testosterone 1 +67443 3422 their first full flush of testosterone 2 +67444 3422 their first full flush 2 +67445 3422 first full flush 3 +67446 3422 full flush 1 +67447 3422 flush 2 +67448 3422 of testosterone 2 +67449 3422 testosterone 2 +67450 3423 I liked it just enough . 3 +67451 3423 liked it just enough . 3 +67452 3423 liked it just enough 3 +67453 3423 it just enough 2 +67454 3423 just enough 2 +67455 3424 Garcia and the other actors help make the wobbly premise work . 3 +67456 3424 Garcia and the other actors help 2 +67457 3424 Garcia and 2 +67458 3424 Garcia 2 +67459 3424 the other actors help 2 +67460 3424 other actors help 2 +67461 3424 actors help 2 +67462 3424 make the wobbly premise work . 2 +67463 3424 make the wobbly premise work 2 +67464 3424 the wobbly premise work 1 +67465 3424 wobbly premise work 1 +67466 3424 wobbly 1 +67467 3424 premise work 2 +67468 3425 Gloriously straight from the vagina . 2 +67469 3425 Gloriously straight from the vagina 2 +67470 3425 straight from the vagina 2 +67471 3425 from the vagina 2 +67472 3425 the vagina 2 +67473 3425 vagina 2 +67474 3426 The only entertainment you 'll derive from this choppy and sloppy affair will be from unintentional giggles -- several of them . 0 +67475 3426 The only entertainment you 'll derive from this choppy and sloppy affair 0 +67476 3426 The only entertainment 3 +67477 3426 only entertainment 2 +67478 3426 you 'll derive from this choppy and sloppy affair 1 +67479 3426 'll derive from this choppy and sloppy affair 0 +67480 3426 derive from this choppy and sloppy affair 0 +67481 3426 from this choppy and sloppy affair 0 +67482 3426 this choppy and sloppy affair 0 +67483 3426 choppy and sloppy affair 1 +67484 3426 choppy and sloppy 0 +67485 3426 choppy and 1 +67486 3426 will be from unintentional giggles -- several of them . 0 +67487 3426 will be from unintentional giggles -- several of them 2 +67488 3426 be from unintentional giggles -- several of them 2 +67489 3426 from unintentional giggles -- several of them 2 +67490 3426 unintentional giggles -- several of them 2 +67491 3426 unintentional giggles -- 2 +67492 3426 unintentional giggles 2 +67493 3426 several of them 2 +67494 3427 A movie that sends you out of the theater feeling like you 've actually spent time living in another community . 3 +67495 3427 A movie that sends you out of the theater feeling 2 +67496 3427 that sends you out of the theater feeling 3 +67497 3427 sends you out of the theater feeling 2 +67498 3427 sends you out 2 +67499 3427 of the theater feeling 3 +67500 3427 the theater feeling 2 +67501 3427 theater feeling 3 +67502 3427 like you 've actually spent time living in another community . 2 +67503 3427 like you 've actually spent time living in another community 3 +67504 3427 you 've actually spent time living in another community 3 +67505 3427 've actually spent time living in another community 2 +67506 3427 've actually 2 +67507 3427 spent time living in another community 2 +67508 3427 time living in another community 2 +67509 3427 time living 2 +67510 3427 in another community 2 +67511 3427 another community 2 +67512 3428 ... a story , an old and scary one , about the monsters we make , and the vengeance they take . 2 +67513 3428 a story , an old and scary one , about the monsters we make , and the vengeance they take . 3 +67514 3428 a story , an old and scary one , about the monsters we make , and the vengeance they 2 +67515 3428 a story , an old and scary one , 2 +67516 3428 a story , an old and scary one 2 +67517 3428 a story , 2 +67518 3428 an old and scary one 1 +67519 3428 old and scary one 1 +67520 3428 old and scary 2 +67521 3428 old and 1 +67522 3428 about the monsters we make , and the vengeance they 3 +67523 3428 the monsters we make , and the vengeance they 2 +67524 3428 we make , and the vengeance they 2 +67525 3428 we make , and 2 +67526 3428 we make , 2 +67527 3428 we make 2 +67528 3428 the vengeance they 2 +67529 3428 the vengeance 2 +67530 3428 vengeance 1 +67531 3428 take . 2 +67532 3429 It has a dashing and resourceful hero ; a lisping , reptilian villain ; big fights ; big hair ; lavish period scenery ; and a story just complicated enough to let you bask in your own cleverness as you figure it out . 3 +67533 3429 has a dashing and resourceful hero ; a lisping , reptilian villain ; big fights ; big hair ; lavish period scenery ; and a story just complicated enough to let you bask in your own cleverness as you figure it out . 3 +67534 3429 has a dashing and resourceful hero ; a lisping , reptilian villain ; big fights ; big hair ; lavish period scenery ; and a story just complicated enough to let you bask in your own cleverness as you figure it out 4 +67535 3429 has a dashing and resourceful hero ; a lisping , reptilian villain ; big fights ; big hair ; lavish period scenery ; and a story just 4 +67536 3429 has a dashing and resourceful hero ; a lisping , reptilian villain ; big fights ; big hair ; lavish period scenery ; and a story 3 +67537 3429 a dashing and resourceful hero ; a lisping , reptilian villain ; big fights ; big hair ; lavish period scenery ; and a story 4 +67538 3429 a dashing and resourceful hero ; a lisping , reptilian villain ; big fights ; big hair ; lavish period scenery ; and 3 +67539 3429 a dashing and resourceful hero ; a lisping , reptilian villain ; big fights ; big hair ; lavish period scenery ; 4 +67540 3429 a dashing and resourceful hero ; a lisping , reptilian villain ; big fights ; big hair ; lavish period scenery 2 +67541 3429 a dashing and resourceful hero ; a lisping , reptilian villain ; big fights ; big hair ; 3 +67542 3429 a dashing and resourceful hero ; a lisping , reptilian villain ; big fights ; big hair 3 +67543 3429 a dashing and resourceful hero ; a lisping , reptilian villain ; big fights ; 2 +67544 3429 a dashing and resourceful hero ; a lisping , reptilian villain ; big fights 3 +67545 3429 a dashing and resourceful hero ; a lisping , reptilian villain ; 3 +67546 3429 a dashing and resourceful hero ; a lisping , reptilian villain 3 +67547 3429 a dashing and resourceful hero ; 3 +67548 3429 a dashing and resourceful hero 3 +67549 3429 dashing and resourceful hero 3 +67550 3429 dashing 3 +67551 3429 and resourceful hero 3 +67552 3429 resourceful hero 3 +67553 3429 resourceful 3 +67554 3429 a lisping , reptilian villain 2 +67555 3429 lisping , reptilian villain 2 +67556 3429 lisping 2 +67557 3429 , reptilian villain 2 +67558 3429 reptilian villain 2 +67559 3429 reptilian 2 +67560 3429 big fights 2 +67561 3429 big hair 2 +67562 3429 lavish period scenery 3 +67563 3429 period scenery 2 +67564 3429 complicated enough to let you bask in your own cleverness as you figure it out 3 +67565 3429 enough to let you bask in your own cleverness as you figure it out 3 +67566 3429 to let you bask in your own cleverness as you figure it out 3 +67567 3429 let you bask in your own cleverness as you figure it out 3 +67568 3429 you bask in your own cleverness as you figure it out 3 +67569 3429 bask in your own cleverness as you figure it out 2 +67570 3429 bask in your own cleverness 3 +67571 3429 bask 2 +67572 3429 in your own cleverness 2 +67573 3429 your own cleverness 3 +67574 3429 as you figure it out 2 +67575 3429 you figure it out 2 +67576 3429 figure it out 2 +67577 3429 figure it 2 +67578 3430 Those 24-and-unders looking for their own Caddyshack to adopt as a generational signpost may have to keep on looking . 1 +67579 3430 Those 24-and-unders looking for their own Caddyshack to adopt as a generational signpost 2 +67580 3430 Those 24-and-unders 2 +67581 3430 24-and-unders 2 +67582 3430 looking for their own Caddyshack to adopt as a generational signpost 2 +67583 3430 looking for their own Caddyshack 2 +67584 3430 for their own Caddyshack 2 +67585 3430 their own Caddyshack 2 +67586 3430 own Caddyshack 2 +67587 3430 to adopt as a generational signpost 3 +67588 3430 adopt as a generational signpost 2 +67589 3430 adopt 2 +67590 3430 as a generational signpost 2 +67591 3430 a generational signpost 3 +67592 3430 generational signpost 3 +67593 3430 generational 2 +67594 3430 signpost 2 +67595 3430 may have to keep on looking . 1 +67596 3430 may have to keep on looking 2 +67597 3430 have to keep on looking 2 +67598 3430 to keep on looking 2 +67599 3430 keep on looking 2 +67600 3430 on looking 2 +67601 3431 There is n't one moment in the film that surprises or delights . 0 +67602 3431 is n't one moment in the film that surprises or delights . 0 +67603 3431 is n't one moment in the film that surprises or delights 0 +67604 3431 one moment in the film that surprises or delights 3 +67605 3431 in the film that surprises or delights 3 +67606 3431 the film that surprises or delights 3 +67607 3431 that surprises or delights 3 +67608 3431 surprises or delights 3 +67609 3431 surprises or 2 +67610 3432 What a great way to spend 4 units of your day . 3 +67611 3432 What a great way to spend 4 units of your day 4 +67612 3432 a great way to spend 4 units of your day 3 +67613 3432 a great way 4 +67614 3432 great way 3 +67615 3432 to spend 4 units of your day 2 +67616 3432 spend 4 units of your day 2 +67617 3432 4 units of your day 2 +67618 3432 4 units 2 +67619 3432 4 2 +67620 3432 of your day 2 +67621 3432 your day 2 +67622 3433 ... very funny , very enjoyable ... 4 +67623 3433 very funny , very enjoyable ... 4 +67624 3433 , very enjoyable ... 4 +67625 3433 very enjoyable ... 3 +67626 3433 enjoyable ... 3 +67627 3434 Despite the film 's shortcomings , the stories are quietly moving . 3 +67628 3434 Despite the film 's shortcomings 2 +67629 3434 the film 's shortcomings 1 +67630 3434 , the stories are quietly moving . 3 +67631 3434 the stories are quietly moving . 4 +67632 3434 the stories 2 +67633 3434 are quietly moving . 2 +67634 3434 are quietly moving 3 +67635 3434 are quietly 2 +67636 3435 I do n't think most of the people who loved the 1989 Paradiso will prefer this new version . 1 +67637 3435 do n't think most of the people who loved the 1989 Paradiso will prefer this new version . 1 +67638 3435 do n't think most of the people who loved the 1989 Paradiso will prefer this new version 0 +67639 3435 think most of the people who loved the 1989 Paradiso will prefer this new version 4 +67640 3435 most of the people who loved the 1989 Paradiso will prefer this new version 3 +67641 3435 of the people who loved the 1989 Paradiso will prefer this new version 4 +67642 3435 the people who loved the 1989 Paradiso will prefer this new version 3 +67643 3435 who loved the 1989 Paradiso will prefer this new version 2 +67644 3435 loved the 1989 Paradiso will prefer this new version 3 +67645 3435 the 1989 Paradiso will prefer this new version 3 +67646 3435 the 1989 Paradiso 2 +67647 3435 1989 Paradiso 2 +67648 3435 1989 2 +67649 3435 will prefer this new version 3 +67650 3435 prefer this new version 3 +67651 3436 Whether or not you 're enlightened by any of Derrida 's lectures on `` the other '' and `` the self , '' Derrida is an undeniably fascinating and playful fellow . 4 +67652 3436 Whether or not you 're enlightened by any of Derrida 's lectures on `` the other '' and `` the self 2 +67653 3436 or not you 're enlightened by any of Derrida 's lectures on `` the other '' and `` the self 2 +67654 3436 or not you 're enlightened by any of Derrida 's 2 +67655 3436 or not 2 +67656 3436 you 're enlightened by any of Derrida 's 3 +67657 3436 're enlightened by any of Derrida 's 2 +67658 3436 enlightened by any of Derrida 's 3 +67659 3436 enlightened 3 +67660 3436 by any of Derrida 's 2 +67661 3436 any of Derrida 's 2 +67662 3436 of Derrida 's 2 +67663 3436 Derrida 's 2 +67664 3436 lectures on `` the other '' and `` the self 2 +67665 3436 on `` the other '' and `` the self 2 +67666 3436 `` the other '' and `` the self 2 +67667 3436 the other '' and `` the self 2 +67668 3436 the other '' and `` 2 +67669 3436 the other '' and 2 +67670 3436 the other '' 2 +67671 3436 the self 2 +67672 3436 self 2 +67673 3436 , '' Derrida is an undeniably fascinating and playful fellow . 3 +67674 3436 '' Derrida is an undeniably fascinating and playful fellow . 3 +67675 3436 Derrida is an undeniably fascinating and playful fellow . 3 +67676 3436 is an undeniably fascinating and playful fellow . 3 +67677 3436 is an undeniably fascinating and playful fellow 3 +67678 3436 an undeniably fascinating and playful fellow 4 +67679 3436 undeniably fascinating and playful fellow 4 +67680 3436 undeniably fascinating and playful 4 +67681 3436 fascinating and playful 3 +67682 3436 fascinating and 4 +67683 3437 Adam Sandler 's heart may be in the right place , but he needs to pull his head out of his butt 1 +67684 3437 Adam Sandler 's heart may be in the right place , but 2 +67685 3437 Adam Sandler 's heart may be in the right place , 2 +67686 3437 Adam Sandler 's heart may be in the right place 4 +67687 3437 Adam Sandler 's heart 2 +67688 3437 may be in the right place 2 +67689 3437 be in the right place 2 +67690 3437 he needs to pull his head out of his butt 0 +67691 3437 needs to pull his head out of his butt 0 +67692 3437 to pull his head out of his butt 1 +67693 3437 pull his head out of his butt 0 +67694 3437 pull his head out 2 +67695 3437 pull his head 2 +67696 3437 of his butt 2 +67697 3437 his butt 2 +67698 3437 butt 2 +67699 3438 Suffers from all the excesses of the genre . 1 +67700 3438 Suffers from all the excesses of the genre 1 +67701 3438 Suffers from all the excesses 1 +67702 3438 from all the excesses 2 +67703 3438 all the excesses 2 +67704 3438 the excesses 2 +67705 3439 This amiable picture talks tough , but it 's all bluster -- in the end it 's as sweet as Greenfingers ... 3 +67706 3439 This amiable picture talks tough , but it 's all bluster -- in the end it 's as sweet as Greenfingers 3 +67707 3439 This amiable picture talks tough , but 2 +67708 3439 This amiable picture talks tough , 2 +67709 3439 This amiable picture talks tough 2 +67710 3439 This amiable picture 3 +67711 3439 amiable picture 3 +67712 3439 talks tough 2 +67713 3439 talks 2 +67714 3439 it 's all bluster -- in the end it 's as sweet as Greenfingers 3 +67715 3439 's all bluster -- in the end it 's as sweet as Greenfingers 3 +67716 3439 's all bluster -- 2 +67717 3439 's all bluster 2 +67718 3439 all bluster 1 +67719 3439 bluster 2 +67720 3439 in the end it 's as sweet as Greenfingers 3 +67721 3439 the end it 's as sweet as Greenfingers 3 +67722 3439 it 's as sweet as Greenfingers 2 +67723 3439 's as sweet as Greenfingers 3 +67724 3439 as sweet as Greenfingers 2 +67725 3439 sweet as Greenfingers 3 +67726 3439 as Greenfingers 2 +67727 3439 Greenfingers 2 +67728 3440 Shows that Jackie Chan is getting older , and that 's something I would rather live in denial about 1 +67729 3440 that Jackie Chan is getting older , and that 's something I would rather live in denial about 2 +67730 3440 that Jackie Chan is getting older , and 2 +67731 3440 that Jackie Chan is getting older , 2 +67732 3440 that Jackie Chan is getting older 1 +67733 3440 Jackie Chan is getting older 2 +67734 3440 is getting older 2 +67735 3440 getting older 2 +67736 3440 that 's something I would rather live in denial about 1 +67737 3440 's something I would rather live in denial about 1 +67738 3440 something I would rather live in denial about 1 +67739 3440 I would rather live in denial about 2 +67740 3440 would rather live in denial about 2 +67741 3440 would rather 2 +67742 3440 live in denial about 1 +67743 3440 in denial about 1 +67744 3440 denial about 2 +67745 3440 denial 2 +67746 3441 There 's no point in extracting the bare bones of Byatt 's plot for purposes of bland Hollywood romance . 1 +67747 3441 's no point in extracting the bare bones of Byatt 's plot for purposes of bland Hollywood romance . 1 +67748 3441 's no point in extracting the bare bones of Byatt 's plot for purposes of bland Hollywood romance 1 +67749 3441 no point in extracting the bare bones of Byatt 's plot for purposes of bland Hollywood romance 1 +67750 3441 in extracting the bare bones of Byatt 's plot for purposes of bland Hollywood romance 2 +67751 3441 extracting the bare bones of Byatt 's plot for purposes of bland Hollywood romance 2 +67752 3441 extracting the bare bones of Byatt 's plot 2 +67753 3441 extracting 2 +67754 3441 the bare bones of Byatt 's plot 2 +67755 3441 the bare bones 2 +67756 3441 bare bones 2 +67757 3441 bare 2 +67758 3441 bones 2 +67759 3441 of Byatt 's plot 2 +67760 3441 Byatt 's plot 2 +67761 3441 Byatt 's 2 +67762 3441 Byatt 2 +67763 3441 for purposes of bland Hollywood romance 1 +67764 3441 purposes of bland Hollywood romance 1 +67765 3441 purposes 2 +67766 3441 of bland Hollywood romance 1 +67767 3441 bland Hollywood romance 1 +67768 3441 Hollywood romance 3 +67769 3442 Whenever you think you 've seen the end of the movie , we cut to a new scene , which also appears to be the end . 1 +67770 3442 Whenever you think you 've seen the end of the movie 2 +67771 3442 you think you 've seen the end of the movie 2 +67772 3442 think you 've seen the end of the movie 2 +67773 3442 you 've seen the end of the movie 2 +67774 3442 've seen the end of the movie 2 +67775 3442 seen the end of the movie 2 +67776 3442 , we cut to a new scene , which also appears to be the end . 2 +67777 3442 we cut to a new scene , which also appears to be the end . 1 +67778 3442 cut to a new scene , which also appears to be the end . 1 +67779 3442 cut to a new scene , which also appears to be the end 1 +67780 3442 to a new scene , which also appears to be the end 1 +67781 3442 a new scene , which also appears to be the end 2 +67782 3442 a new scene , 2 +67783 3442 a new scene 3 +67784 3442 new scene 2 +67785 3442 which also appears to be the end 2 +67786 3442 also appears to be the end 2 +67787 3442 appears to be the end 2 +67788 3442 to be the end 2 +67789 3442 be the end 2 +67790 3443 The film occasionally tries the viewer 's patience with slow pacing and a main character who sometimes defies sympathy , but it ultimately satisfies with its moving story . 3 +67791 3443 The film occasionally tries the viewer 's patience with slow pacing and a main character who sometimes defies sympathy , but it ultimately satisfies with its moving story 3 +67792 3443 The film occasionally tries the viewer 's patience with slow pacing and a main character who sometimes defies sympathy , but 2 +67793 3443 The film occasionally tries the viewer 's patience with slow pacing and a main character who sometimes defies sympathy , 2 +67794 3443 The film occasionally tries the viewer 's patience with slow pacing and a main character who sometimes defies sympathy 1 +67795 3443 occasionally tries the viewer 's patience with slow pacing and a main character who sometimes defies sympathy 2 +67796 3443 tries the viewer 's patience with slow pacing and a main character who sometimes defies sympathy 1 +67797 3443 the viewer 's patience with slow pacing and a main character who sometimes defies sympathy 2 +67798 3443 the viewer 's patience with slow pacing and 1 +67799 3443 the viewer 's patience with slow pacing 2 +67800 3443 the viewer 's patience 1 +67801 3443 the viewer 's 2 +67802 3443 viewer 's 2 +67803 3443 with slow pacing 1 +67804 3443 slow pacing 1 +67805 3443 a main character who sometimes defies sympathy 1 +67806 3443 a main character 2 +67807 3443 main character 2 +67808 3443 who sometimes defies sympathy 1 +67809 3443 sometimes defies sympathy 2 +67810 3443 defies sympathy 2 +67811 3443 it ultimately satisfies with its moving story 3 +67812 3443 ultimately satisfies with its moving story 3 +67813 3443 satisfies with its moving story 3 +67814 3443 with its moving story 3 +67815 3443 its moving story 3 +67816 3443 moving story 3 +67817 3444 P.T. Anderson understands the grandness of romance and how love is the great equalizer that can calm us of our daily ills and bring out joys in our lives that we never knew were possible . 4 +67818 3444 P.T. Anderson understands the grandness of romance and how love is the great equalizer that can calm us of our daily ills and bring out joys in our lives that we never knew were possible 3 +67819 3444 P.T. Anderson understands the grandness of romance and 3 +67820 3444 P.T. Anderson understands the grandness of romance 3 +67821 3444 P.T. Anderson 2 +67822 3444 P.T. 2 +67823 3444 understands the grandness of romance 4 +67824 3444 the grandness of romance 3 +67825 3444 the grandness 3 +67826 3444 grandness 3 +67827 3444 of romance 2 +67828 3444 how love is the great equalizer that can calm us of our daily ills and bring out joys in our lives that we never knew were possible 4 +67829 3444 how love is the great equalizer that can calm us of our daily ills and bring out joys in our lives that we never knew 3 +67830 3444 love is the great equalizer that can calm us of our daily ills and bring out joys in our lives that we never knew 3 +67831 3444 is the great equalizer that can calm us of our daily ills and bring out joys in our lives that we never knew 3 +67832 3444 the great equalizer that can calm us of our daily ills and bring out joys in our lives that we never knew 3 +67833 3444 the great equalizer 2 +67834 3444 great equalizer 3 +67835 3444 equalizer 2 +67836 3444 that can calm us of our daily ills and bring out joys in our lives that we never knew 3 +67837 3444 can calm us of our daily ills and bring out joys in our lives that we never knew 2 +67838 3444 calm us of our daily ills and bring out joys in our lives that we never knew 3 +67839 3444 calm us of our daily ills and 2 +67840 3444 calm us of our daily ills 2 +67841 3444 calm us 2 +67842 3444 calm 2 +67843 3444 of our daily ills 2 +67844 3444 our daily ills 2 +67845 3444 daily ills 2 +67846 3444 ills 1 +67847 3444 bring out joys in our lives that we never knew 4 +67848 3444 bring out joys in our lives 3 +67849 3444 joys in our lives 3 +67850 3444 in our lives 2 +67851 3444 that we never knew 2 +67852 3444 we never knew 2 +67853 3444 never knew 2 +67854 3444 were possible 2 +67855 3445 Absolutely -LRB- and unintentionally -RRB- terrifying . 2 +67856 3445 -LRB- and unintentionally -RRB- terrifying . 1 +67857 3445 -LRB- and unintentionally -RRB- 2 +67858 3445 -LRB- and unintentionally 1 +67859 3445 terrifying . 2 +67860 3446 Like a grinning Jack O ' Lantern , its apparent glee is derived from a lobotomy , having had all its vital essence scooped out and discarded . 1 +67861 3446 Like a grinning Jack O ' Lantern 2 +67862 3446 a grinning Jack O ' Lantern 2 +67863 3446 a grinning Jack O ' 2 +67864 3446 grinning Jack O ' 2 +67865 3446 Jack O ' 3 +67866 3446 O ' 2 +67867 3446 Lantern 2 +67868 3446 , its apparent glee is derived from a lobotomy , having had all its vital essence scooped out and discarded . 0 +67869 3446 its apparent glee is derived from a lobotomy , having had all its vital essence scooped out and discarded . 0 +67870 3446 its apparent glee 3 +67871 3446 apparent glee 2 +67872 3446 glee 3 +67873 3446 is derived from a lobotomy , having had all its vital essence scooped out and discarded . 1 +67874 3446 is derived from a lobotomy , having had all its vital essence scooped out and discarded 0 +67875 3446 derived from a lobotomy , having had all its vital essence scooped out and discarded 0 +67876 3446 derived from a lobotomy , 1 +67877 3446 derived from a lobotomy 0 +67878 3446 from a lobotomy 2 +67879 3446 a lobotomy 1 +67880 3446 lobotomy 1 +67881 3446 having had all its vital essence scooped out and discarded 1 +67882 3446 had all its vital essence scooped out and discarded 1 +67883 3446 had all its vital essence scooped out and 1 +67884 3446 had all its vital essence scooped out 1 +67885 3446 had all its vital essence scooped 1 +67886 3446 all its vital essence scooped 2 +67887 3446 its vital essence scooped 2 +67888 3446 vital essence scooped 2 +67889 3446 essence scooped 2 +67890 3446 scooped 2 +67891 3446 discarded 1 +67892 3447 A movie that will thrill you , touch you and make you laugh as well . 3 +67893 3447 A movie that will thrill you , touch you and make you 4 +67894 3447 that will thrill you , touch you and make you 3 +67895 3447 will thrill you , touch you and make you 4 +67896 3447 thrill you , touch you and make you 4 +67897 3447 thrill you , touch you and 4 +67898 3447 thrill you , touch you 3 +67899 3447 thrill you , 3 +67900 3447 thrill you 3 +67901 3447 touch you 2 +67902 3447 laugh as well . 3 +67903 3447 laugh as well 2 +67904 3448 George Lucas returns as a visionary with a tale full of nuance and character dimension . 3 +67905 3448 George Lucas 2 +67906 3448 Lucas 2 +67907 3448 returns as a visionary with a tale full of nuance and character dimension . 3 +67908 3448 returns as a visionary with a tale full of nuance and character dimension 4 +67909 3448 as a visionary with a tale full of nuance and character dimension 3 +67910 3448 a visionary with a tale full of nuance and character dimension 3 +67911 3448 with a tale full of nuance and character dimension 3 +67912 3448 a tale full of nuance and character dimension 3 +67913 3448 a tale 2 +67914 3448 full of nuance and character dimension 3 +67915 3448 of nuance and character dimension 2 +67916 3448 nuance and character dimension 2 +67917 3448 and character dimension 2 +67918 3448 character dimension 2 +67919 3449 A sad and rote exercise in milking a played-out idea -- a straight guy has to dress up in drag -- that shockingly manages to be even worse than its title would imply . 1 +67920 3449 A sad and rote exercise in milking a played-out idea -- a straight guy has to dress up in drag -- that shockingly manages to be even worse than its title 1 +67921 3449 A sad and rote exercise 1 +67922 3449 sad and rote exercise 1 +67923 3449 and rote exercise 2 +67924 3449 rote exercise 2 +67925 3449 in milking a played-out idea -- a straight guy has to dress up in drag -- that shockingly manages to be even worse than its title 1 +67926 3449 milking a played-out idea -- a straight guy has to dress up in drag -- that shockingly manages to be even worse than its title 0 +67927 3449 milking 2 +67928 3449 a played-out idea -- a straight guy has to dress up in drag -- that shockingly manages to be even worse than its title 0 +67929 3449 a played-out idea -- a straight guy has to dress up in drag -- 1 +67930 3449 a played-out idea 1 +67931 3449 played-out idea 1 +67932 3449 played-out 1 +67933 3449 -- a straight guy has to dress up in drag -- 1 +67934 3449 a straight guy has to dress up in drag -- 2 +67935 3449 a straight guy has to dress up in drag 2 +67936 3449 a straight guy 2 +67937 3449 straight guy 2 +67938 3449 has to dress up in drag 2 +67939 3449 to dress up in drag 2 +67940 3449 dress up in drag 1 +67941 3449 dress up 2 +67942 3449 dress 2 +67943 3449 that shockingly manages to be even worse than its title 1 +67944 3449 shockingly manages to be even worse than its title 1 +67945 3449 manages to be even worse than its title 0 +67946 3449 to be even worse than its title 0 +67947 3449 be even worse than its title 0 +67948 3449 even worse than its title 0 +67949 3449 than its title 2 +67950 3449 would imply . 2 +67951 3449 would imply 2 +67952 3449 imply 2 +67953 3450 One of the most depressing movie-going experiences I can think of is to sit through about 90 minutes of a so-called ` comedy ' and not laugh once . 1 +67954 3450 One of the most depressing movie-going experiences I can think of 0 +67955 3450 of the most depressing movie-going experiences I can think of 1 +67956 3450 the most depressing movie-going experiences I can think of 0 +67957 3450 the most depressing movie-going experiences 1 +67958 3450 most depressing movie-going experiences 0 +67959 3450 most depressing 1 +67960 3450 movie-going experiences 2 +67961 3450 I can think of 2 +67962 3450 can think of 2 +67963 3450 think of 2 +67964 3450 is to sit through about 90 minutes of a so-called ` comedy ' and not laugh once . 0 +67965 3450 is to sit through about 90 minutes of a so-called ` comedy ' and not laugh once 1 +67966 3450 to sit through about 90 minutes of a so-called ` comedy ' and not laugh once 0 +67967 3450 sit through about 90 minutes of a so-called ` comedy ' and not laugh once 0 +67968 3450 sit through about 90 minutes of a so-called ` comedy ' and not laugh 0 +67969 3450 through about 90 minutes of a so-called ` comedy ' and not laugh 0 +67970 3450 about 90 minutes of a so-called ` comedy ' and not laugh 1 +67971 3450 about 90 minutes 2 +67972 3450 about 90 2 +67973 3450 of a so-called ` comedy ' and not laugh 1 +67974 3450 a so-called ` comedy ' and not laugh 1 +67975 3450 a so-called ` comedy ' and 2 +67976 3450 a so-called ` comedy ' 1 +67977 3450 so-called ` comedy ' 1 +67978 3450 so-called 2 +67979 3450 ` comedy ' 2 +67980 3450 comedy ' 2 +67981 3450 not laugh 2 +67982 3451 This remake of Lina Wertmuller 's 1975 eroti-comedy might just be the biggest husband-and-wife disaster since John and Bo Derek made the ridiculous Bolero . 1 +67983 3451 This remake of Lina Wertmuller 's 1975 eroti-comedy might just be the biggest husband-and-wife disaster since John and Bo Derek made the ridiculous Bolero 0 +67984 3451 This remake of Lina Wertmuller 's 1975 eroti-comedy might just be the biggest husband-and-wife disaster since John and 0 +67985 3451 This remake of Lina Wertmuller 's 1975 eroti-comedy might just be the biggest husband-and-wife disaster since John 0 +67986 3451 This remake of Lina Wertmuller 's 1975 eroti-comedy 2 +67987 3451 This remake 2 +67988 3451 of Lina Wertmuller 's 1975 eroti-comedy 2 +67989 3451 Lina Wertmuller 's 1975 eroti-comedy 2 +67990 3451 Lina Wertmuller 's 2 +67991 3451 Lina 3 +67992 3451 1975 eroti-comedy 2 +67993 3451 eroti-comedy 1 +67994 3451 might just be the biggest husband-and-wife disaster since John 1 +67995 3451 might just 2 +67996 3451 be the biggest husband-and-wife disaster since John 0 +67997 3451 the biggest husband-and-wife disaster since John 0 +67998 3451 the biggest husband-and-wife disaster 1 +67999 3451 biggest husband-and-wife disaster 1 +68000 3451 husband-and-wife disaster 1 +68001 3451 husband-and-wife 2 +68002 3451 since John 2 +68003 3451 Bo Derek made the ridiculous Bolero 1 +68004 3451 Bo Derek 3 +68005 3451 Bo 2 +68006 3451 Derek 2 +68007 3451 made the ridiculous Bolero 2 +68008 3451 the ridiculous Bolero 1 +68009 3451 ridiculous Bolero 1 +68010 3452 Others , more attuned to the anarchist maxim that ` the urge to destroy is also a creative urge ' , or more willing to see with their own eyes , will find Morrison 's iconoclastic uses of technology to be liberating . 4 +68011 3452 , more attuned to the anarchist maxim that ` the urge to destroy is also a creative urge ' , or more willing to see with their own eyes , will find Morrison 's iconoclastic uses of technology to be liberating . 2 +68012 3452 more attuned to the anarchist maxim that ` the urge to destroy is also a creative urge ' , or more willing to see with their own eyes , will find Morrison 's iconoclastic uses of technology to be liberating . 3 +68013 3452 more attuned to the anarchist maxim that ` the urge to destroy is also a creative urge ' , or more willing to see with their own eyes 2 +68014 3452 more attuned to the anarchist maxim that ` the urge to destroy is also a creative urge ' , or 2 +68015 3452 more attuned to the anarchist maxim that ` the urge to destroy is also a creative urge ' , 2 +68016 3452 more attuned to the anarchist maxim that ` the urge to destroy is also a creative urge ' 3 +68017 3452 attuned to the anarchist maxim that ` the urge to destroy is also a creative urge ' 2 +68018 3452 attuned 3 +68019 3452 to the anarchist maxim that ` the urge to destroy is also a creative urge ' 2 +68020 3452 the anarchist maxim that ` the urge to destroy is also a creative urge ' 1 +68021 3452 the anarchist maxim 2 +68022 3452 anarchist maxim 1 +68023 3452 anarchist 2 +68024 3452 maxim 2 +68025 3452 that ` the urge to destroy is also a creative urge ' 2 +68026 3452 that ` the urge to destroy is also a creative urge 2 +68027 3452 that ` 2 +68028 3452 the urge to destroy is also a creative urge 2 +68029 3452 urge to destroy is also a creative urge 2 +68030 3452 to destroy is also a creative urge 2 +68031 3452 destroy is also a creative urge 1 +68032 3452 is also a creative urge 3 +68033 3452 a creative urge 3 +68034 3452 creative urge 3 +68035 3452 more willing to see with their own eyes 2 +68036 3452 willing to see with their own eyes 2 +68037 3452 willing 2 +68038 3452 to see with their own eyes 2 +68039 3452 see with their own eyes 2 +68040 3452 with their own eyes 2 +68041 3452 their own eyes 2 +68042 3452 own eyes 2 +68043 3452 , will find Morrison 's iconoclastic uses of technology to be liberating . 3 +68044 3452 will find Morrison 's iconoclastic uses of technology to be liberating . 3 +68045 3452 will find Morrison 's iconoclastic uses of technology to be liberating 4 +68046 3452 find Morrison 's iconoclastic uses of technology to be liberating 4 +68047 3452 find Morrison 's iconoclastic uses of technology 3 +68048 3452 Morrison 's iconoclastic uses of technology 2 +68049 3452 Morrison 's iconoclastic uses 2 +68050 3452 iconoclastic uses 3 +68051 3452 iconoclastic 2 +68052 3452 of technology 2 +68053 3452 to be liberating 3 +68054 3452 be liberating 3 +68055 3453 Norton is magnetic as Graham . 3 +68056 3453 is magnetic as Graham . 2 +68057 3453 is magnetic as Graham 3 +68058 3453 magnetic as Graham 3 +68059 3453 as Graham 2 +68060 3453 Graham 2 +68061 3454 Some Body often looks like an episode of the TV show Blind Date , only less technically proficient and without the pop-up comments . 1 +68062 3454 often looks like an episode of the TV show Blind Date , only less technically proficient and without the pop-up comments . 1 +68063 3454 looks like an episode of the TV show Blind Date , only less technically proficient and without the pop-up comments . 1 +68064 3454 looks like an episode of the TV show Blind Date , only less technically proficient and without the pop-up comments 1 +68065 3454 like an episode of the TV show Blind Date , only less technically proficient and without the pop-up comments 1 +68066 3454 an episode of the TV show Blind Date , only less technically proficient and without the pop-up comments 2 +68067 3454 an episode of the TV 2 +68068 3454 of the TV 2 +68069 3454 the TV 2 +68070 3454 show Blind Date , only less technically proficient and without the pop-up comments 2 +68071 3454 show Blind Date , only less 1 +68072 3454 Blind Date , only less 1 +68073 3454 Blind Date , 2 +68074 3454 Blind Date 2 +68075 3454 only less 2 +68076 3454 technically proficient and without the pop-up comments 3 +68077 3454 technically proficient and 3 +68078 3454 technically proficient 3 +68079 3454 without the pop-up comments 2 +68080 3454 the pop-up comments 2 +68081 3454 pop-up comments 2 +68082 3454 pop-up 2 +68083 3455 A dull , inconsistent , dishonest female bonding picture . 0 +68084 3455 A dull , inconsistent , dishonest female bonding 1 +68085 3455 dull , inconsistent , dishonest female bonding 0 +68086 3455 dull , inconsistent , dishonest 1 +68087 3455 , inconsistent , dishonest 0 +68088 3455 inconsistent , dishonest 1 +68089 3455 , dishonest 1 +68090 3455 dishonest 1 +68091 3455 female bonding 2 +68092 3455 bonding 2 +68093 3455 picture . 2 +68094 3456 Happily stays close to the ground in a spare and simple manner and does n't pummel us with phony imagery or music . 4 +68095 3456 stays close to the ground in a spare and simple manner and does n't pummel us with phony imagery or music . 2 +68096 3456 stays close to the ground in a spare and simple manner and does n't pummel us with phony imagery or music 4 +68097 3456 stays close to the ground in a spare and simple manner and 3 +68098 3456 stays close to the ground in a spare and simple manner 3 +68099 3456 stays close to the ground 3 +68100 3456 close to the ground 2 +68101 3456 to the ground 2 +68102 3456 in a spare and simple manner 2 +68103 3456 a spare and simple manner 2 +68104 3456 spare and simple manner 2 +68105 3456 and simple manner 2 +68106 3456 simple manner 2 +68107 3456 does n't pummel us with phony imagery or music 3 +68108 3456 pummel us with phony imagery or music 1 +68109 3456 pummel us 1 +68110 3456 pummel 2 +68111 3456 with phony imagery or music 1 +68112 3456 phony imagery or music 1 +68113 3456 imagery or music 2 +68114 3456 imagery or 2 +68115 3457 I found myself growing more and more frustrated and detached as Vincent became more and more abhorrent . 1 +68116 3457 found myself growing more and more frustrated and detached as Vincent became more and more abhorrent . 0 +68117 3457 found myself growing more and more frustrated and detached as Vincent became more and more abhorrent 1 +68118 3457 found myself 2 +68119 3457 growing more and more frustrated and detached as Vincent became more and more abhorrent 2 +68120 3457 more and more frustrated and detached as Vincent became more and more abhorrent 1 +68121 3457 more and more 2 +68122 3457 frustrated and detached as Vincent became more and more abhorrent 2 +68123 3457 frustrated and detached 1 +68124 3457 frustrated and 2 +68125 3457 frustrated 1 +68126 3457 as Vincent became more and more abhorrent 1 +68127 3457 Vincent became more and more abhorrent 1 +68128 3457 became more and more abhorrent 2 +68129 3457 more and more abhorrent 1 +68130 3457 more abhorrent 1 +68131 3458 A rehash of every gangster movie from the past decade . 1 +68132 3458 A rehash of every gangster movie from the past decade 2 +68133 3458 A rehash of every gangster movie 1 +68134 3458 A rehash 1 +68135 3458 of every gangster movie 2 +68136 3458 every gangster movie 2 +68137 3458 from the past decade 2 +68138 3458 the past decade 2 +68139 3458 past decade 2 +68140 3459 Impostor is a step down for director Gary Fleder . 1 +68141 3459 is a step down for director Gary Fleder . 1 +68142 3459 is a step down for director Gary Fleder 1 +68143 3459 is a step down 1 +68144 3459 a step down 1 +68145 3459 a step 2 +68146 3459 for director Gary Fleder 2 +68147 3459 director Gary Fleder 2 +68148 3459 Gary Fleder 2 +68149 3459 Fleder 2 +68150 3460 Just because A Walk to Remember is shrewd enough to activate girlish tear ducts does n't mean it 's good enough for our girls . 1 +68151 3460 Just because A Walk to Remember 3 +68152 3460 because A Walk to Remember 2 +68153 3460 A Walk to Remember 2 +68154 3460 Walk to Remember 3 +68155 3460 to Remember 2 +68156 3460 is shrewd enough to activate girlish tear ducts does n't mean it 's good enough for our girls . 1 +68157 3460 is shrewd enough to activate girlish tear ducts does n't mean it 's good enough for our girls 1 +68158 3460 shrewd enough to activate girlish tear ducts does n't mean it 's good enough for our girls 1 +68159 3460 shrewd enough 1 +68160 3460 to activate girlish tear ducts does n't mean it 's good enough for our girls 1 +68161 3460 activate girlish tear ducts does n't mean it 's good enough for our girls 2 +68162 3460 activate 2 +68163 3460 girlish tear ducts does n't mean it 's good enough for our girls 1 +68164 3460 girlish 2 +68165 3460 tear ducts does n't mean it 's good enough for our girls 1 +68166 3460 tear 2 +68167 3460 ducts does n't mean it 's good enough for our girls 1 +68168 3460 ducts 2 +68169 3460 does n't mean it 's good enough for our girls 1 +68170 3460 mean it 's good enough for our girls 3 +68171 3460 it 's good enough for our girls 3 +68172 3460 it 's good enough 2 +68173 3460 good enough 3 +68174 3460 for our girls 2 +68175 3460 our girls 2 +68176 3461 The fact that it is n't very good is almost beside the point . 1 +68177 3461 The fact that it is n't very good 0 +68178 3461 that it is n't very good 1 +68179 3461 it is n't very good 0 +68180 3461 is n't very good 1 +68181 3461 is almost beside the point . 2 +68182 3461 is almost beside the point 2 +68183 3461 is almost 1 +68184 3461 beside the point 2 +68185 3461 beside 2 +68186 3462 He has improved upon the first and taken it a step further , richer and deeper . 3 +68187 3462 has improved upon the first and taken it a step further , richer and deeper . 4 +68188 3462 has improved upon the first and taken it a step further , richer and deeper 3 +68189 3462 improved upon the first and taken it a step further , richer and deeper 3 +68190 3462 improved upon the first and 3 +68191 3462 improved upon the first 3 +68192 3462 upon the first 2 +68193 3462 taken it a step further , richer and deeper 3 +68194 3462 it a step further , richer and deeper 3 +68195 3462 a step further , richer and deeper 4 +68196 3462 a step further , richer and 3 +68197 3462 a step further , richer 3 +68198 3462 a step further , 3 +68199 3462 a step further 2 +68200 3463 While this gentle and affecting melodrama will have luvvies in raptures , it 's far too slight and introspective to appeal to anything wider than a niche audience . 2 +68201 3463 While this gentle and affecting melodrama will have luvvies in raptures 3 +68202 3463 this gentle and affecting melodrama will have luvvies in raptures 3 +68203 3463 this gentle and affecting melodrama 2 +68204 3463 gentle and affecting melodrama 3 +68205 3463 gentle and affecting 3 +68206 3463 will have luvvies in raptures 2 +68207 3463 have luvvies in raptures 2 +68208 3463 luvvies in raptures 2 +68209 3463 luvvies 2 +68210 3463 in raptures 2 +68211 3463 raptures 2 +68212 3463 , it 's far too slight and introspective to appeal to anything wider than a niche audience . 1 +68213 3463 it 's far too slight and introspective to appeal to anything wider than a niche audience . 1 +68214 3463 's far too slight and introspective to appeal to anything wider than a niche audience . 1 +68215 3463 's far too slight and introspective to appeal to anything wider than a niche audience 1 +68216 3463 far too slight and introspective to appeal to anything wider than a niche audience 2 +68217 3463 too slight and introspective to appeal to anything wider than a niche audience 1 +68218 3463 slight and introspective to appeal to anything wider than a niche audience 1 +68219 3463 slight and introspective 3 +68220 3463 to appeal to anything wider than a niche audience 2 +68221 3463 appeal to anything wider than a niche audience 2 +68222 3463 appeal to anything 2 +68223 3463 to anything 2 +68224 3463 wider than a niche audience 2 +68225 3463 wider 2 +68226 3463 than a niche audience 2 +68227 3463 a niche audience 2 +68228 3463 niche audience 2 +68229 3464 Where Tom Green stages his gags as assaults on America 's knee-jerk moral sanctimony , Jackass lacks aspirations of social upheaval . 1 +68230 3464 Where Tom Green stages his gags as assaults on America 's knee-jerk moral sanctimony 1 +68231 3464 Tom Green stages his gags as assaults on America 's knee-jerk moral sanctimony 1 +68232 3464 Tom Green 2 +68233 3464 stages his gags as assaults on America 's knee-jerk moral sanctimony 1 +68234 3464 stages his gags 1 +68235 3464 stages 2 +68236 3464 his gags 2 +68237 3464 as assaults on America 's knee-jerk moral sanctimony 1 +68238 3464 assaults on America 's knee-jerk moral sanctimony 1 +68239 3464 assaults 2 +68240 3464 on America 's knee-jerk moral sanctimony 2 +68241 3464 America 's knee-jerk moral sanctimony 1 +68242 3464 America 's 2 +68243 3464 knee-jerk moral sanctimony 2 +68244 3464 knee-jerk 2 +68245 3464 moral sanctimony 2 +68246 3464 sanctimony 2 +68247 3464 , Jackass lacks aspirations of social upheaval . 1 +68248 3464 Jackass lacks aspirations of social upheaval . 1 +68249 3464 lacks aspirations of social upheaval . 1 +68250 3464 lacks aspirations of social upheaval 1 +68251 3464 aspirations of social upheaval 2 +68252 3464 of social upheaval 2 +68253 3464 social upheaval 2 +68254 3464 upheaval 2 +68255 3465 A crude teen-oriented variation on a theme that the playwright Craig Lucas explored with infinitely more grace and eloquence in his Prelude to a Kiss . 2 +68256 3465 A crude 1 +68257 3465 teen-oriented variation on a theme that the playwright Craig Lucas explored with infinitely more grace and eloquence in his Prelude to a Kiss . 1 +68258 3465 teen-oriented variation on a theme that the playwright Craig Lucas explored with infinitely more grace and eloquence in his Prelude to a Kiss 2 +68259 3465 teen-oriented variation on a theme 2 +68260 3465 teen-oriented variation 2 +68261 3465 teen-oriented 2 +68262 3465 on a theme 2 +68263 3465 a theme 2 +68264 3465 that the playwright Craig Lucas explored with infinitely more grace and eloquence in his Prelude to a Kiss 1 +68265 3465 the playwright Craig Lucas explored with infinitely more grace and eloquence in his Prelude to a Kiss 3 +68266 3465 the playwright Craig Lucas 2 +68267 3465 playwright Craig Lucas 2 +68268 3465 Craig Lucas 2 +68269 3465 explored with infinitely more grace and eloquence in his Prelude to a Kiss 3 +68270 3465 explored with infinitely more grace and eloquence in his Prelude 2 +68271 3465 explored with infinitely more grace and eloquence 4 +68272 3465 explored 2 +68273 3465 with infinitely more grace and eloquence 2 +68274 3465 infinitely more grace and eloquence 3 +68275 3465 infinitely more 2 +68276 3465 grace and eloquence 3 +68277 3465 eloquence 3 +68278 3465 in his Prelude 2 +68279 3465 his Prelude 2 +68280 3465 Prelude 2 +68281 3465 to a Kiss 2 +68282 3465 a Kiss 3 +68283 3466 In Death to Smoochy , we do n't get Williams ' usual tear and a smile , just sneers and bile , and the spectacle is nothing short of refreshing . 3 +68284 3466 In Death to Smoochy 2 +68285 3466 Death to Smoochy 2 +68286 3466 , we do n't get Williams ' usual tear and a smile , just sneers and bile , and the spectacle is nothing short of refreshing . 3 +68287 3466 we do n't get Williams ' usual tear and a smile , just sneers and bile , and the spectacle is nothing short of refreshing . 1 +68288 3466 we do n't get Williams ' usual tear and a smile , just sneers and bile , and the spectacle is nothing short of refreshing 2 +68289 3466 we do n't get Williams ' usual tear and a smile , just sneers and bile , and 1 +68290 3466 we do n't get Williams ' usual tear and a smile , just sneers and bile , 0 +68291 3466 we do n't get Williams ' usual tear and a smile , just sneers and bile 2 +68292 3466 do n't get Williams ' usual tear and a smile , just sneers and bile 1 +68293 3466 get Williams ' usual tear and a smile , just sneers and bile 2 +68294 3466 Williams ' usual tear and a smile , just sneers and bile 1 +68295 3466 Williams ' usual tear and 2 +68296 3466 Williams ' usual tear 2 +68297 3466 Williams ' 2 +68298 3466 usual tear 3 +68299 3466 a smile , just sneers and bile 1 +68300 3466 a smile , just sneers and 2 +68301 3466 a smile , just sneers 2 +68302 3466 a smile , 2 +68303 3466 just sneers 1 +68304 3466 sneers 2 +68305 3466 the spectacle is nothing short of refreshing 2 +68306 3466 is nothing short of refreshing 4 +68307 3466 nothing short of refreshing 3 +68308 3466 short of refreshing 2 +68309 3466 of refreshing 2 +68310 3467 Like being trapped inside a huge video game , where exciting , inane images keep popping past your head and the same illogical things keep happening over and over again . 2 +68311 3467 Like being trapped inside a huge video game 2 +68312 3467 being trapped inside a huge video game 2 +68313 3467 trapped inside a huge video game 1 +68314 3467 inside a huge video game 2 +68315 3467 a huge video game 2 +68316 3467 huge video game 2 +68317 3467 video game 2 +68318 3467 , where exciting , inane images keep popping past your head and the same illogical things keep happening over and over again . 1 +68319 3467 where exciting , inane images keep popping past your head and the same illogical things keep happening over and over again . 2 +68320 3467 where exciting , inane images keep popping past your head and the same illogical things keep happening over and over again 2 +68321 3467 where exciting , inane images keep popping past your head and 2 +68322 3467 where exciting , inane images keep popping past your head 2 +68323 3467 where exciting 3 +68324 3467 , inane images keep popping past your head 1 +68325 3467 inane images keep popping past your head 1 +68326 3467 inane images 2 +68327 3467 keep popping past your head 2 +68328 3467 popping past your head 2 +68329 3467 popping 2 +68330 3467 past your head 3 +68331 3467 the same illogical things keep happening over and over again 1 +68332 3467 the same illogical things 1 +68333 3467 same illogical things 1 +68334 3467 illogical things 2 +68335 3467 illogical 1 +68336 3467 keep happening over and over again 2 +68337 3467 happening over and over again 2 +68338 3467 happening over and over 2 +68339 3467 over and over 2 +68340 3467 over and 2 +68341 3468 A journey that is as difficult for the audience to take as it is for the protagonist -- yet it 's potentially just as rewarding . 3 +68342 3468 A journey that is as difficult for the audience to take as it is for the protagonist -- yet it 's potentially just as rewarding 3 +68343 3468 A journey that is as difficult for the audience to take as it is for the protagonist -- 2 +68344 3468 A journey that is as difficult for the audience to take as it is for the protagonist 1 +68345 3468 A journey that is as difficult for the audience to take as it 1 +68346 3468 that is as difficult for the audience to take as it 1 +68347 3468 is as difficult for the audience to take as it 1 +68348 3468 is as difficult for the audience 1 +68349 3468 as difficult for the audience 2 +68350 3468 difficult for the audience 1 +68351 3468 to take as it 2 +68352 3468 take as it 2 +68353 3468 is for the protagonist 2 +68354 3468 yet it 's potentially just as rewarding 3 +68355 3468 it 's potentially just as rewarding 3 +68356 3468 's potentially just as rewarding 3 +68357 3468 potentially just as rewarding 3 +68358 3468 just as rewarding 3 +68359 3468 as rewarding 3 +68360 3469 A mature , deeply felt fantasy of a director 's travel through 300 years of Russian history . 3 +68361 3469 A mature 2 +68362 3469 , deeply felt fantasy of a director 's travel through 300 years of Russian history . 2 +68363 3469 deeply felt fantasy of a director 's travel through 300 years of Russian history . 3 +68364 3469 felt fantasy of a director 's travel through 300 years of Russian history . 2 +68365 3469 felt fantasy of a director 's travel through 300 years of Russian history 2 +68366 3469 felt fantasy of a director 's travel 3 +68367 3469 fantasy of a director 's travel 3 +68368 3469 of a director 's travel 2 +68369 3469 a director 's travel 2 +68370 3469 a director 's 2 +68371 3469 through 300 years of Russian history 2 +68372 3469 300 years of Russian history 2 +68373 3469 of Russian history 2 +68374 3469 Russian history 2 +68375 3470 The genius of the work speaks volumes , offering up a hallucinatory dreamscape that frustrates and captivates . 4 +68376 3470 The genius of the work 4 +68377 3470 The genius 3 +68378 3470 speaks volumes , offering up a hallucinatory dreamscape that frustrates and captivates . 3 +68379 3470 speaks volumes , offering up a hallucinatory dreamscape that frustrates and captivates 3 +68380 3470 speaks volumes , 3 +68381 3470 speaks volumes 3 +68382 3470 volumes 2 +68383 3470 offering up a hallucinatory dreamscape that frustrates and captivates 2 +68384 3470 offering up 2 +68385 3470 a hallucinatory dreamscape that frustrates and captivates 3 +68386 3470 a hallucinatory dreamscape 3 +68387 3470 hallucinatory dreamscape 2 +68388 3470 dreamscape 2 +68389 3470 that frustrates and captivates 2 +68390 3470 frustrates and captivates 3 +68391 3470 frustrates and 1 +68392 3470 frustrates 1 +68393 3470 captivates 3 +68394 3471 Even these tales of just seven children seem at times too many , although in reality they are not enough . 2 +68395 3471 Even these tales of just seven children 2 +68396 3471 Even these tales 2 +68397 3471 these tales 2 +68398 3471 tales 2 +68399 3471 of just seven children 2 +68400 3471 just seven children 2 +68401 3471 seven children 2 +68402 3471 seem at times too many , although in reality they are not enough . 2 +68403 3471 seem at times too many , although in reality they are not enough 1 +68404 3471 seem at times too many , 1 +68405 3471 seem at times too many 1 +68406 3471 at times too many 1 +68407 3471 times too many 2 +68408 3471 although in reality they are not enough 2 +68409 3471 in reality they are not enough 1 +68410 3471 in reality 2 +68411 3471 they are not enough 1 +68412 3471 are not enough 2 +68413 3472 Adroit but finally a trifle flat , Mad Love does n't galvanize its outrage the way , say , Jane Campion might have done , but at least it possesses some . 1 +68414 3472 Adroit but finally a trifle flat , Mad Love does n't galvanize its outrage the way , say , Jane Campion might have done , but at least it possesses some 2 +68415 3472 Adroit but finally a trifle flat , Mad Love does n't galvanize its outrage the way , say , Jane Campion might have done , but 2 +68416 3472 Adroit but finally a trifle flat , Mad Love does n't galvanize its outrage the way , say , Jane Campion might have done , 2 +68417 3472 Adroit but finally a trifle flat , Mad Love does n't galvanize its outrage the way , say 1 +68418 3472 Adroit but finally a trifle flat 2 +68419 3472 Adroit but finally 3 +68420 3472 Adroit but 2 +68421 3472 Adroit 3 +68422 3472 a trifle flat 1 +68423 3472 , Mad Love does n't galvanize its outrage the way , say 2 +68424 3472 , Mad Love does n't galvanize its outrage the way , 2 +68425 3472 Mad Love does n't galvanize its outrage the way , 1 +68426 3472 Mad Love does n't galvanize its outrage the way 2 +68427 3472 does n't galvanize its outrage the way 2 +68428 3472 galvanize its outrage the way 2 +68429 3472 galvanize 2 +68430 3472 its outrage the way 2 +68431 3472 its outrage 2 +68432 3472 , Jane Campion might have done , 2 +68433 3472 Jane Campion might have done , 2 +68434 3472 Jane Campion might have done 2 +68435 3472 Jane Campion 2 +68436 3472 Campion 2 +68437 3472 might have done 2 +68438 3472 have done 2 +68439 3472 at least it possesses some 2 +68440 3472 it possesses some 2 +68441 3472 possesses some 2 +68442 3473 -LRB- The digital effects -RRB- reminded me of Terry Gilliam 's rudimentary old Monty Python cartoons , in which he would cut out figures from drawings and photographs and paste them together . 2 +68443 3473 The digital effects -RRB- reminded me of Terry Gilliam 's rudimentary old Monty Python cartoons , in which he would cut out figures from drawings and photographs and paste them together . 2 +68444 3473 The digital effects 2 +68445 3473 digital effects 2 +68446 3473 -RRB- reminded me of Terry Gilliam 's rudimentary old Monty Python cartoons , in which he would cut out figures from drawings and photographs and paste them together . 2 +68447 3473 reminded me of Terry Gilliam 's rudimentary old Monty Python cartoons , in which he would cut out figures from drawings and photographs and paste them together . 2 +68448 3473 reminded me of Terry Gilliam 's rudimentary old Monty Python cartoons , in which he would cut out figures from drawings and photographs and paste them together 2 +68449 3473 me of Terry Gilliam 's rudimentary old Monty Python cartoons , in which he would cut out figures from drawings and photographs and paste them together 2 +68450 3473 me of Terry Gilliam 's rudimentary old Monty Python cartoons , 2 +68451 3473 me of Terry Gilliam 's rudimentary old Monty Python cartoons 2 +68452 3473 of Terry Gilliam 's rudimentary old Monty Python cartoons 2 +68453 3473 Terry Gilliam 's rudimentary old Monty Python cartoons 2 +68454 3473 rudimentary old Monty Python cartoons 2 +68455 3473 rudimentary 2 +68456 3473 old Monty Python cartoons 3 +68457 3473 Monty Python cartoons 2 +68458 3473 Python cartoons 2 +68459 3473 Python 3 +68460 3473 in which he would cut out figures from drawings and photographs and paste them together 3 +68461 3473 he would cut out figures from drawings and photographs and paste them together 2 +68462 3473 would cut out figures from drawings and photographs and paste them together 2 +68463 3473 cut out figures from drawings and photographs and paste them together 2 +68464 3473 cut out figures from drawings and photographs and 2 +68465 3473 cut out figures from drawings and photographs 2 +68466 3473 cut out figures 1 +68467 3473 cut out 2 +68468 3473 from drawings and photographs 2 +68469 3473 drawings and photographs 2 +68470 3473 drawings and 2 +68471 3473 photographs 2 +68472 3473 paste them together 2 +68473 3473 paste them 2 +68474 3473 paste 2 +68475 3474 A thought-provoking look at how Western foreign policy - however well intentioned - can wreak havoc in other cultures . 2 +68476 3474 A thought-provoking 2 +68477 3474 look at how Western foreign policy - however well intentioned - can wreak havoc in other cultures . 2 +68478 3474 look at how Western foreign policy - however well intentioned - can wreak havoc in other cultures 1 +68479 3474 at how Western foreign policy - however well intentioned - can wreak havoc in other cultures 2 +68480 3474 how Western foreign policy - however well intentioned - can wreak havoc in other cultures 2 +68481 3474 Western foreign policy - however well intentioned - can wreak havoc in other cultures 1 +68482 3474 Western foreign policy - however well intentioned - 2 +68483 3474 Western foreign policy 2 +68484 3474 - however well intentioned - 2 +68485 3474 however well intentioned - 2 +68486 3474 however well intentioned 1 +68487 3474 well intentioned 3 +68488 3474 intentioned 2 +68489 3474 can wreak havoc in other cultures 1 +68490 3474 wreak havoc in other cultures 1 +68491 3474 wreak havoc 2 +68492 3474 wreak 1 +68493 3474 havoc 1 +68494 3474 in other cultures 2 +68495 3474 other cultures 2 +68496 3475 Sensual , funny and , in the end , very touching . 4 +68497 3475 Sensual , funny and , in the end , very touching 4 +68498 3475 Sensual , 3 +68499 3475 funny and , in the end , very touching 4 +68500 3475 funny and , in the end , 3 +68501 3475 , in the end , 2 +68502 3475 in the end , 2 +68503 3475 very touching 4 +68504 3476 Overall , it 's a very entertaining , thought-provoking film with a simple message : God is love . 4 +68505 3476 Overall , it 's a very entertaining , thought-provoking film with a simple message : God is love 4 +68506 3476 Overall , it 's a very entertaining , thought-provoking film with a simple message : 4 +68507 3476 Overall , it 's a very entertaining , thought-provoking film with a simple message 4 +68508 3476 , it 's a very entertaining , thought-provoking film with a simple message 4 +68509 3476 it 's a very entertaining , thought-provoking film with a simple message 4 +68510 3476 's a very entertaining , thought-provoking film with a simple message 3 +68511 3476 a very entertaining , thought-provoking film with a simple message 4 +68512 3476 a very entertaining , thought-provoking film 4 +68513 3476 very entertaining , thought-provoking film 3 +68514 3476 very entertaining 4 +68515 3476 , thought-provoking film 4 +68516 3476 thought-provoking film 3 +68517 3476 with a simple message 2 +68518 3476 a simple message 3 +68519 3476 simple message 3 +68520 3476 God is love 2 +68521 3476 is love 2 +68522 3477 Arnie blows things up . 2 +68523 3477 Arnie blows things up 2 +68524 3477 blows things up 2 +68525 3477 blows things 2 +68526 3477 blows 1 +68527 3478 Rarely does a film so graceless and devoid of merit as this one come along . 0 +68528 3478 does a film so graceless and devoid of merit as this one come along . 0 +68529 3478 does a film so graceless and devoid of merit as this one come along 0 +68530 3478 a film so graceless and devoid of merit as this one come along 0 +68531 3478 a film so graceless and devoid 1 +68532 3478 so graceless and devoid 0 +68533 3478 graceless and devoid 1 +68534 3478 graceless and 1 +68535 3478 graceless 1 +68536 3478 of merit as this one come along 2 +68537 3478 merit as this one come along 2 +68538 3478 as this one come along 2 +68539 3478 this one come along 2 +68540 3478 come along 2 +68541 3479 Gangster No. 1 is solid , satisfying fare for adults . 4 +68542 3479 Gangster No. 1 2 +68543 3479 No. 1 4 +68544 3479 is solid , satisfying fare for adults . 3 +68545 3479 is solid , satisfying fare for adults 3 +68546 3479 solid , satisfying fare for adults 4 +68547 3479 solid , satisfying fare 3 +68548 3479 solid , satisfying 3 +68549 3479 , satisfying 3 +68550 3480 As each of them searches for their place in the world , Miller digs into their very minds to find an unblinking , flawed humanity . 3 +68551 3480 As each of them searches for their place in the world 2 +68552 3480 each of them searches for their place in the world 2 +68553 3480 each of them 2 +68554 3480 searches for their place in the world 2 +68555 3480 for their place in the world 2 +68556 3480 their place in the world 3 +68557 3480 their place 2 +68558 3480 , Miller digs into their very minds to find an unblinking , flawed humanity . 3 +68559 3480 Miller digs into their very minds to find an unblinking , flawed humanity . 3 +68560 3480 digs into their very minds to find an unblinking , flawed humanity . 3 +68561 3480 digs into their very minds to find an unblinking , flawed humanity 2 +68562 3480 digs into their very minds 3 +68563 3480 into their very minds 2 +68564 3480 their very minds 2 +68565 3480 very minds 3 +68566 3480 to find an unblinking , flawed humanity 2 +68567 3480 find an unblinking , flawed humanity 2 +68568 3480 an unblinking , flawed humanity 2 +68569 3480 unblinking , flawed humanity 2 +68570 3480 , flawed humanity 1 +68571 3480 flawed humanity 3 +68572 3481 Lovely and Amazing is Holofcener 's deep , uncompromising curtsy to women she knows , and very likely is . 3 +68573 3481 Lovely and Amazing 3 +68574 3481 is Holofcener 's deep , uncompromising curtsy to women she knows , and very likely is . 3 +68575 3481 is Holofcener 's deep , uncompromising curtsy to women she knows , and very likely is 3 +68576 3481 Holofcener 's deep , uncompromising curtsy to women she knows , and very likely is 2 +68577 3481 Holofcener 's deep , uncompromising curtsy 2 +68578 3481 deep , uncompromising curtsy 1 +68579 3481 deep , uncompromising 3 +68580 3481 , uncompromising 1 +68581 3481 curtsy 2 +68582 3481 to women she knows , and very likely is 2 +68583 3481 women she knows , and very likely is 2 +68584 3481 she knows , and very likely is 2 +68585 3481 knows , and very likely is 3 +68586 3481 knows , and very likely 3 +68587 3481 knows , and 2 +68588 3481 very likely 2 +68589 3482 Insomnia is one of the year 's best films and Pacino gives one of his most daring , and complicated , performances . 4 +68590 3482 Insomnia is one of the year 's best films and Pacino gives one of his most daring , and complicated , performances 4 +68591 3482 Insomnia is one of the year 's best films and 4 +68592 3482 Insomnia is one of the year 's best films 4 +68593 3482 is one of the year 's best films 4 +68594 3482 one of the year 's best films 4 +68595 3482 of the year 's best films 3 +68596 3482 the year 's best films 4 +68597 3482 Pacino gives one of his most daring , and complicated , performances 3 +68598 3482 gives one of his most daring , and complicated , performances 4 +68599 3482 one of his most daring , and complicated , performances 4 +68600 3482 of his most daring , and complicated , performances 3 +68601 3482 his most daring , and complicated , performances 4 +68602 3482 most daring , and complicated , performances 3 +68603 3482 most daring , and complicated , 2 +68604 3482 most daring , and complicated 3 +68605 3482 most daring , and 3 +68606 3482 most daring , 3 +68607 3482 most daring 3 +68608 3483 A metaphor for a modern-day urban China searching for its identity . 3 +68609 3483 A metaphor for a modern-day urban China searching for its identity 2 +68610 3483 A metaphor for a modern-day urban China 3 +68611 3483 A metaphor 2 +68612 3483 for a modern-day urban China 2 +68613 3483 a modern-day urban China 2 +68614 3483 modern-day urban China 2 +68615 3483 urban China 2 +68616 3483 China 2 +68617 3483 searching for its identity 1 +68618 3483 for its identity 2 +68619 3483 its identity 2 +68620 3484 Enigma is well-made , but it 's just too dry and too placid . 1 +68621 3484 Enigma is well-made , but it 's just too dry and too placid 2 +68622 3484 Enigma is well-made , but 2 +68623 3484 Enigma is well-made , 3 +68624 3484 Enigma is well-made 3 +68625 3484 is well-made 4 +68626 3484 it 's just too dry and too placid 1 +68627 3484 's just too dry and too placid 1 +68628 3484 too dry and too placid 1 +68629 3484 too dry and 1 +68630 3484 too dry 1 +68631 3484 too placid 1 +68632 3485 It 's that good . 4 +68633 3485 's that good . 3 +68634 3485 's that good 3 +68635 3485 that good 3 +68636 3486 Well-meant but unoriginal . 1 +68637 3486 Well-meant but unoriginal 1 +68638 3486 Well-meant but 1 +68639 3486 Well-meant 3 +68640 3487 If you like peace , you 'll like Promises . 3 +68641 3487 If you like peace 2 +68642 3487 you like peace 3 +68643 3487 like peace 3 +68644 3487 , you 'll like Promises . 3 +68645 3487 you 'll like Promises . 3 +68646 3487 'll like Promises . 2 +68647 3487 'll like Promises 2 +68648 3487 like Promises 2 +68649 3488 Do you say `` hi '' to your lover when you wake up in the morning ? 2 +68650 3488 Do you say `` hi '' to your lover when you wake up in the morning 2 +68651 3488 say `` hi '' to your lover when you wake up in the morning 2 +68652 3488 say `` hi '' 2 +68653 3488 `` hi '' 3 +68654 3488 `` hi 2 +68655 3488 hi 2 +68656 3488 to your lover when you wake up in the morning 2 +68657 3488 your lover when you wake up in the morning 2 +68658 3488 your lover 2 +68659 3488 when you wake up in the morning 2 +68660 3488 you wake up in the morning 2 +68661 3488 wake up in the morning 2 +68662 3488 wake up 2 +68663 3489 Despite an impressive roster of stars and direction from Kathryn Bigelow , The Weight of Water is oppressively heavy . 1 +68664 3489 Despite an impressive roster of stars and direction from Kathryn Bigelow 3 +68665 3489 an impressive roster of stars and direction from Kathryn Bigelow 4 +68666 3489 an impressive roster of stars and direction 4 +68667 3489 an impressive roster 4 +68668 3489 impressive roster 4 +68669 3489 roster 2 +68670 3489 of stars and direction 2 +68671 3489 stars and direction 2 +68672 3489 stars and 2 +68673 3489 from Kathryn Bigelow 2 +68674 3489 Kathryn Bigelow 2 +68675 3489 Kathryn 2 +68676 3489 , The Weight of Water is oppressively heavy . 1 +68677 3489 The Weight of Water is oppressively heavy . 2 +68678 3489 is oppressively heavy . 0 +68679 3489 is oppressively heavy 1 +68680 3489 oppressively heavy 0 +68681 3490 For a film that 's being advertised as a comedy , Sweet Home Alabama is n't as funny as you 'd hoped . 1 +68682 3490 For a film that 's being advertised as a comedy 2 +68683 3490 a film that 's being advertised as a comedy 2 +68684 3490 that 's being advertised as a comedy 2 +68685 3490 's being advertised as a comedy 2 +68686 3490 being advertised as a comedy 2 +68687 3490 advertised as a comedy 2 +68688 3490 advertised 2 +68689 3490 as a comedy 3 +68690 3490 , Sweet Home Alabama is n't as funny as you 'd hoped . 1 +68691 3490 Sweet Home Alabama is n't as funny as you 'd hoped . 1 +68692 3490 is n't as funny as you 'd hoped . 1 +68693 3490 is n't as funny as you 'd hoped 1 +68694 3490 as you 'd hoped 2 +68695 3490 you 'd hoped 2 +68696 3490 'd hoped 2 +68697 3491 Behan 's memoir is great material for a film -- rowdy , brawny and lyrical in the best Irish sense -- but Sheridan has settled for a lugubrious romance . 1 +68698 3491 Behan 's memoir is great material for a film -- rowdy , brawny and lyrical in the best Irish sense -- but Sheridan has settled for a lugubrious romance 2 +68699 3491 Behan 's memoir is great material for a film -- rowdy , brawny and lyrical in the best Irish sense -- but 2 +68700 3491 Behan 's memoir is great material for a film -- rowdy , brawny and lyrical in the best Irish sense -- 3 +68701 3491 Behan 's memoir is great material for a film -- rowdy , brawny and lyrical in the best Irish sense 4 +68702 3491 Behan 's memoir 2 +68703 3491 Behan 's 2 +68704 3491 memoir 2 +68705 3491 is great material for a film -- rowdy , brawny and lyrical in the best Irish sense 4 +68706 3491 great material for a film -- rowdy , brawny and lyrical in the best Irish sense 4 +68707 3491 great material 4 +68708 3491 for a film -- rowdy , brawny and lyrical in the best Irish sense 3 +68709 3491 a film -- rowdy , brawny and lyrical in the best Irish sense 3 +68710 3491 a film -- rowdy , brawny and lyrical 2 +68711 3491 a film -- rowdy , 2 +68712 3491 a film -- rowdy 2 +68713 3491 a film -- 2 +68714 3491 brawny and lyrical 2 +68715 3491 brawny and 2 +68716 3491 brawny 2 +68717 3491 in the best Irish sense 3 +68718 3491 the best Irish sense 3 +68719 3491 best Irish sense 3 +68720 3491 Irish sense 2 +68721 3491 Sheridan has settled for a lugubrious romance 1 +68722 3491 has settled for a lugubrious romance 1 +68723 3491 settled for a lugubrious romance 1 +68724 3491 settled 2 +68725 3491 for a lugubrious romance 2 +68726 3491 a lugubrious romance 2 +68727 3491 lugubrious romance 2 +68728 3491 lugubrious 2 +68729 3492 It would work much better as a one-hour TV documentary . 2 +68730 3492 would work much better as a one-hour TV documentary . 1 +68731 3492 would work much better as a one-hour TV documentary 2 +68732 3492 work much better as a one-hour TV documentary 1 +68733 3492 work much better 2 +68734 3492 as a one-hour TV documentary 2 +68735 3492 a one-hour TV documentary 2 +68736 3492 one-hour TV documentary 2 +68737 3492 one-hour 2 +68738 3492 TV documentary 2 +68739 3493 It 's usually a bad sign when directors abandon their scripts and go where the moment takes them , but Olympia , Wash. , based filmmakers Anne de Marcken and Marilyn Freeman did just that and it 's what makes their project so interesting . 3 +68740 3493 It 's usually a bad sign when directors abandon their scripts and go where the moment takes them , but Olympia , Wash. , based filmmakers Anne de Marcken and Marilyn Freeman did just that and it 's what makes their project so interesting 3 +68741 3493 It 's usually a bad sign when directors abandon their scripts and go where the moment takes them , but 2 +68742 3493 It 's usually a bad sign when directors abandon their scripts and go where the moment takes them , 0 +68743 3493 It 's usually a bad sign when directors abandon their scripts and go where the moment takes them 1 +68744 3493 's usually a bad sign when directors abandon their scripts and go where the moment takes them 1 +68745 3493 's usually 2 +68746 3493 a bad sign when directors abandon their scripts and go where the moment takes them 0 +68747 3493 when directors abandon their scripts and go where the moment takes them 2 +68748 3493 directors abandon their scripts and go where the moment takes them 3 +68749 3493 abandon their scripts and go where the moment takes them 1 +68750 3493 abandon their scripts and 2 +68751 3493 abandon their scripts 2 +68752 3493 their scripts 2 +68753 3493 go where the moment takes them 3 +68754 3493 where the moment takes them 2 +68755 3493 the moment takes them 2 +68756 3493 takes them 2 +68757 3493 Olympia , Wash. , based filmmakers Anne de Marcken and Marilyn Freeman did just that and it 's what makes their project so interesting 3 +68758 3493 Olympia , Wash. , 2 +68759 3493 Olympia , Wash. 2 +68760 3493 Olympia , 2 +68761 3493 Olympia 2 +68762 3493 Wash. 2 +68763 3493 based filmmakers Anne de Marcken and Marilyn Freeman did just that and it 's what makes their project so interesting 4 +68764 3493 filmmakers Anne de Marcken and Marilyn Freeman did just that and it 's what makes their project so interesting 3 +68765 3493 filmmakers Anne de Marcken and Marilyn Freeman 2 +68766 3493 Anne de Marcken and Marilyn Freeman 2 +68767 3493 de Marcken and Marilyn Freeman 2 +68768 3493 Marcken and Marilyn Freeman 2 +68769 3493 Marcken 2 +68770 3493 and Marilyn Freeman 2 +68771 3493 Marilyn Freeman 2 +68772 3493 Marilyn 2 +68773 3493 Freeman 2 +68774 3493 did just that and it 's what makes their project so interesting 3 +68775 3493 just that and it 's what makes their project so interesting 3 +68776 3493 that and it 's what makes their project so interesting 3 +68777 3493 and it 's what makes their project so interesting 3 +68778 3493 it 's what makes their project so interesting 3 +68779 3493 's what makes their project so interesting 3 +68780 3493 what makes their project so interesting 3 +68781 3493 makes their project so interesting 3 +68782 3493 their project so interesting 3 +68783 3493 their project 2 +68784 3493 so interesting 4 +68785 3494 Although God Is Great addresses interesting matters of identity and heritage , it 's hard to shake the feeling that it was intended to be a different kind of film . 1 +68786 3494 Although God Is Great addresses interesting matters of identity and heritage 3 +68787 3494 God Is Great addresses interesting matters of identity and heritage 3 +68788 3494 God Is Great 2 +68789 3494 addresses interesting matters of identity and heritage 3 +68790 3494 addresses 2 +68791 3494 interesting matters of identity and heritage 3 +68792 3494 interesting matters 3 +68793 3494 of identity and heritage 2 +68794 3494 identity and heritage 2 +68795 3494 identity and 2 +68796 3494 , it 's hard to shake the feeling that it was intended to be a different kind of film . 1 +68797 3494 it 's hard to shake the feeling that it was intended to be a different kind of film . 1 +68798 3494 's hard to shake the feeling that it was intended to be a different kind of film . 1 +68799 3494 's hard to shake the feeling that it was intended to be a different kind of film 1 +68800 3494 hard to shake the feeling that it was intended to be a different kind of film 1 +68801 3494 to shake the feeling that it was intended to be a different kind of film 2 +68802 3494 shake the feeling that it was intended to be a different kind of film 1 +68803 3494 shake the feeling 2 +68804 3494 that it was intended to be a different kind of film 3 +68805 3494 it was intended to be a different kind of film 2 +68806 3494 was intended to be a different kind of film 2 +68807 3494 intended to be a different kind of film 2 +68808 3494 to be a different kind of film 2 +68809 3494 be a different kind of film 3 +68810 3494 a different kind of film 2 +68811 3494 a different kind 2 +68812 3494 different kind 2 +68813 3495 Close enough in spirit to its freewheeling trash-cinema roots to be a breath of fresh air . 3 +68814 3495 Close enough in spirit to its freewheeling trash-cinema roots to be a breath of fresh air 3 +68815 3495 Close enough in spirit to its freewheeling trash-cinema roots 2 +68816 3495 enough in spirit to its freewheeling trash-cinema roots 2 +68817 3495 in spirit to its freewheeling trash-cinema roots 2 +68818 3495 in spirit 2 +68819 3495 to its freewheeling trash-cinema roots 2 +68820 3495 its freewheeling trash-cinema roots 2 +68821 3495 freewheeling trash-cinema roots 1 +68822 3495 freewheeling 2 +68823 3495 trash-cinema roots 1 +68824 3495 trash-cinema 0 +68825 3495 to be a breath of fresh air 3 +68826 3495 be a breath of fresh air 3 +68827 3495 a breath of fresh air 3 +68828 3495 of fresh air 3 +68829 3496 Captivates and shows how a skillful filmmaker can impart a message without bludgeoning the audience over the head . 4 +68830 3496 Captivates and shows 3 +68831 3496 Captivates and 3 +68832 3496 how a skillful filmmaker can impart a message without bludgeoning the audience over the head . 3 +68833 3496 how a skillful filmmaker can impart a message without bludgeoning the audience over the head 3 +68834 3496 a skillful filmmaker can impart a message without bludgeoning the audience over the head 4 +68835 3496 a skillful filmmaker 4 +68836 3496 skillful filmmaker 4 +68837 3496 can impart a message without bludgeoning the audience over the head 3 +68838 3496 impart a message without bludgeoning the audience over the head 3 +68839 3496 impart a message 3 +68840 3496 impart 2 +68841 3496 a message 2 +68842 3496 without bludgeoning the audience over the head 3 +68843 3496 bludgeoning the audience over the head 0 +68844 3496 bludgeoning the audience 1 +68845 3496 bludgeoning 1 +68846 3497 It will guarantee to have you leaving the theater with a smile on your face . 4 +68847 3497 will guarantee to have you leaving the theater with a smile on your face . 4 +68848 3497 will guarantee to have you leaving the theater with a smile on your face 3 +68849 3497 guarantee to have you leaving the theater with a smile on your face 3 +68850 3497 guarantee 3 +68851 3497 to have you leaving the theater with a smile on your face 4 +68852 3497 have you leaving the theater with a smile on your face 3 +68853 3497 you leaving the theater with a smile on your face 3 +68854 3497 leaving the theater with a smile on your face 4 +68855 3497 leaving the theater 1 +68856 3497 with a smile on your face 3 +68857 3498 `` Freaky Friday , '' it 's not . 1 +68858 3498 Freaky Friday , '' it 's not . 1 +68859 3498 Freaky Friday 2 +68860 3498 , '' it 's not . 2 +68861 3498 '' it 's not . 2 +68862 3498 it 's not . 2 +68863 3498 's not . 2 +68864 3499 If Damon and Affleck attempt another Project Greenlight , next time out they might try paying less attention to the miniseries and more attention to the film it is about . 1 +68865 3499 If Damon and Affleck attempt another Project Greenlight , next time out 2 +68866 3499 Damon and Affleck attempt another Project Greenlight , next time out 2 +68867 3499 Damon and Affleck 2 +68868 3499 Damon and 3 +68869 3499 attempt another Project Greenlight , next time out 2 +68870 3499 attempt another Project Greenlight , 2 +68871 3499 attempt another Project Greenlight 2 +68872 3499 another Project Greenlight 2 +68873 3499 Project Greenlight 2 +68874 3499 Greenlight 3 +68875 3499 next time out 2 +68876 3499 time out 2 +68877 3499 they might try paying less attention to the miniseries and more attention to the film it is about . 1 +68878 3499 might try paying less attention to the miniseries and more attention to the film it is about . 1 +68879 3499 might try paying less attention to the miniseries and more attention to the film it is about 1 +68880 3499 try paying less attention to the miniseries and more attention to the film it is about 1 +68881 3499 paying less attention to the miniseries and more attention to the film it is about 2 +68882 3499 paying less attention to the miniseries and more attention 2 +68883 3499 paying less attention 2 +68884 3499 less attention 2 +68885 3499 to the miniseries and more attention 2 +68886 3499 the miniseries and more attention 2 +68887 3499 the miniseries and 2 +68888 3499 the miniseries 3 +68889 3499 miniseries 2 +68890 3499 more attention 2 +68891 3499 to the film it is about 2 +68892 3499 the film it is about 2 +68893 3499 it is about 2 +68894 3500 It 's a testament to De Niro and director Michael Caton-Jones that by movie 's end , we accept the characters and the film , flaws and all . 3 +68895 3500 's a testament to De Niro and director Michael Caton-Jones that by movie 's end , we accept the characters and the film , flaws and all . 3 +68896 3500 's a testament to De Niro and director Michael Caton-Jones that by movie 's end , we accept the characters and the film , flaws and all 3 +68897 3500 's a testament to De Niro and director Michael Caton-Jones 3 +68898 3500 a testament to De Niro and director Michael Caton-Jones 3 +68899 3500 to De Niro and director Michael Caton-Jones 2 +68900 3500 De Niro and director Michael Caton-Jones 2 +68901 3500 De Niro and 2 +68902 3500 director Michael Caton-Jones 2 +68903 3500 Michael Caton-Jones 2 +68904 3500 Caton-Jones 3 +68905 3500 that by movie 's end , we accept the characters and the film , flaws and all 3 +68906 3500 by movie 's end , we accept the characters and the film , flaws and all 3 +68907 3500 by movie 's end 2 +68908 3500 movie 's end 2 +68909 3500 , we accept the characters and the film , flaws and all 2 +68910 3500 we accept the characters and the film , flaws and all 2 +68911 3500 accept the characters and the film , flaws and all 3 +68912 3500 the characters and the film , flaws and all 2 +68913 3500 the characters and 2 +68914 3500 the film , flaws and all 2 +68915 3500 the film , flaws and 1 +68916 3500 the film , flaws 2 +68917 3501 In the end , The Weight of Water comes to resemble the kind of soft-core twaddle you 'd expect to see on Showtime 's ` Red Shoe Diaries . ' 1 +68918 3501 , The Weight of Water comes to resemble the kind of soft-core twaddle you 'd expect to see on Showtime 's ` Red Shoe Diaries . ' 1 +68919 3501 The Weight of Water comes to resemble the kind of soft-core twaddle you 'd expect to see on Showtime 's ` Red Shoe Diaries . ' 1 +68920 3501 comes to resemble the kind of soft-core twaddle you 'd expect to see on Showtime 's ` Red Shoe Diaries . ' 1 +68921 3501 comes to resemble the kind of soft-core twaddle you 'd expect to see on Showtime 's ` Red Shoe Diaries . 1 +68922 3501 comes to resemble the kind of soft-core twaddle you 'd expect to see on Showtime 's ` Red Shoe Diaries 0 +68923 3501 to resemble the kind of soft-core twaddle you 'd expect to see on Showtime 's ` Red Shoe Diaries 1 +68924 3501 resemble the kind of soft-core twaddle you 'd expect to see on Showtime 's ` Red Shoe Diaries 2 +68925 3501 resemble 2 +68926 3501 the kind of soft-core twaddle you 'd expect to see on Showtime 's ` Red Shoe Diaries 1 +68927 3501 the kind of soft-core twaddle 1 +68928 3501 of soft-core twaddle 1 +68929 3501 soft-core twaddle 1 +68930 3501 soft-core 2 +68931 3501 you 'd expect to see on Showtime 's ` Red Shoe Diaries 2 +68932 3501 'd expect to see on Showtime 's ` Red Shoe Diaries 3 +68933 3501 expect to see on Showtime 's ` Red Shoe Diaries 2 +68934 3501 to see on Showtime 's ` Red Shoe Diaries 2 +68935 3501 see on Showtime 's ` Red Shoe Diaries 2 +68936 3501 see on 2 +68937 3501 Showtime 's ` Red Shoe Diaries 2 +68938 3501 ` Red Shoe Diaries 3 +68939 3501 Red Shoe Diaries 2 +68940 3501 Shoe Diaries 2 +68941 3501 Shoe 2 +68942 3501 Diaries 2 +68943 3502 Those who are n't put off by the film 's austerity will find it more than capable of rewarding them . 4 +68944 3502 Those who are n't put off by the film 's austerity 2 +68945 3502 who are n't put off by the film 's austerity 2 +68946 3502 are n't put off by the film 's austerity 2 +68947 3502 put off by the film 's austerity 1 +68948 3502 by the film 's austerity 2 +68949 3502 the film 's austerity 2 +68950 3502 will find it more than capable of rewarding them . 3 +68951 3502 will find it more than capable of rewarding them 3 +68952 3502 find it more than capable of rewarding them 3 +68953 3502 find it 2 +68954 3502 more than capable of rewarding them 3 +68955 3502 more than capable 3 +68956 3502 than capable 2 +68957 3502 of rewarding them 2 +68958 3502 rewarding them 2 +68959 3503 Despite Besson 's high-profile name being Wasabi 's big selling point , there is no doubt that Krawczyk deserves a huge amount of the credit for the film 's thoroughly winning tone . 3 +68960 3503 Despite Besson 's high-profile name being Wasabi 's big selling point 2 +68961 3503 Besson 's high-profile name being Wasabi 's big selling point 2 +68962 3503 Besson 's high-profile name 3 +68963 3503 Besson 's 2 +68964 3503 Besson 2 +68965 3503 high-profile name 3 +68966 3503 being Wasabi 's big selling point 3 +68967 3503 Wasabi 's big selling point 2 +68968 3503 Wasabi 's 2 +68969 3503 Wasabi 2 +68970 3503 big selling point 3 +68971 3503 selling point 2 +68972 3503 selling 2 +68973 3503 , there is no doubt that Krawczyk deserves a huge amount of the credit for the film 's thoroughly winning tone . 4 +68974 3503 there is no doubt that Krawczyk deserves a huge amount of the credit for the film 's thoroughly winning tone . 4 +68975 3503 is no doubt that Krawczyk deserves a huge amount of the credit for the film 's thoroughly winning tone . 3 +68976 3503 is no doubt that Krawczyk deserves a huge amount of the credit for the film 's thoroughly winning tone 4 +68977 3503 no doubt that Krawczyk deserves a huge amount of the credit for the film 's thoroughly winning tone 4 +68978 3503 doubt that Krawczyk deserves a huge amount of the credit for the film 's thoroughly winning tone 2 +68979 3503 that Krawczyk deserves a huge amount of the credit for the film 's thoroughly winning tone 4 +68980 3503 Krawczyk deserves a huge amount of the credit for the film 's thoroughly winning tone 4 +68981 3503 Krawczyk 2 +68982 3503 deserves a huge amount of the credit for the film 's thoroughly winning tone 4 +68983 3503 a huge amount of the credit for the film 's thoroughly winning tone 3 +68984 3503 a huge amount of the credit for the film 4 +68985 3503 a huge amount 2 +68986 3503 huge amount 2 +68987 3503 of the credit for the film 2 +68988 3503 the credit for the film 2 +68989 3503 the credit 2 +68990 3503 's thoroughly winning tone 3 +68991 3503 's thoroughly 2 +68992 3503 winning tone 4 +68993 3504 A chilling movie without oppressive gore . 3 +68994 3504 A chilling movie without oppressive 3 +68995 3504 A chilling movie 3 +68996 3504 chilling movie 3 +68997 3504 without oppressive 3 +68998 3504 gore . 2 +68999 3505 What a pity ... that the material is so second-rate . 1 +69000 3505 What a pity 1 +69001 3505 a pity 2 +69002 3505 ... that the material is so second-rate . 1 +69003 3505 that the material is so second-rate . 1 +69004 3505 that the material is so second-rate 1 +69005 3505 the material is so second-rate 0 +69006 3505 is so second-rate 2 +69007 3505 so second-rate 1 +69008 3505 second-rate 1 +69009 3506 Such a premise is ripe for all manner of lunacy , but Kaufman and Gondry rarely seem sure of where it should go . 1 +69010 3506 Such a premise is ripe for all manner of lunacy , but Kaufman and Gondry rarely seem sure of where it should go 1 +69011 3506 Such a premise is ripe for all manner of lunacy , but 2 +69012 3506 Such a premise is ripe for all manner of lunacy , 2 +69013 3506 Such a premise is ripe for all manner of lunacy 2 +69014 3506 Such a premise 2 +69015 3506 is ripe for all manner of lunacy 2 +69016 3506 ripe for all manner of lunacy 2 +69017 3506 ripe 2 +69018 3506 for all manner of lunacy 2 +69019 3506 all manner of lunacy 2 +69020 3506 all manner 2 +69021 3506 of lunacy 2 +69022 3506 Kaufman and Gondry rarely seem sure of where it should go 1 +69023 3506 Kaufman and Gondry 2 +69024 3506 rarely seem sure of where it should go 1 +69025 3506 seem sure of where it should go 3 +69026 3506 sure of where it should go 2 +69027 3506 of where it should go 2 +69028 3506 where it should go 2 +69029 3506 it should go 2 +69030 3506 should go 2 +69031 3507 Not since Ghostbusters has a film used Manhattan 's architecture in such a gloriously goofy way . 4 +69032 3507 Not since Ghostbusters 2 +69033 3507 since Ghostbusters 3 +69034 3507 Ghostbusters 2 +69035 3507 has a film used Manhattan 's architecture in such a gloriously goofy way . 3 +69036 3507 has a film used Manhattan 's architecture in such a gloriously goofy way 2 +69037 3507 has a film 2 +69038 3507 used Manhattan 's architecture in such a gloriously goofy way 3 +69039 3507 used Manhattan 's architecture 2 +69040 3507 Manhattan 's architecture 2 +69041 3507 Manhattan 's 2 +69042 3507 in such a gloriously goofy way 3 +69043 3507 such a gloriously goofy way 3 +69044 3507 a gloriously goofy way 3 +69045 3507 gloriously goofy way 3 +69046 3507 goofy way 3 +69047 3508 It 's ... worth the extra effort to see an artist , still committed to growth in his ninth decade , change while remaining true to his principles with a film whose very subject is , quite pointedly , about the peril of such efforts . 3 +69048 3508 's ... worth the extra effort to see an artist , still committed to growth in his ninth decade , change while remaining true to his principles with a film whose very subject is , quite pointedly , about the peril of such efforts . 3 +69049 3508 's ... worth the extra effort to see an artist , still committed to growth in his ninth decade , change while remaining true to his principles with a film whose very subject is , quite pointedly , about the peril of such efforts 3 +69050 3508 's ... worth the extra effort to see an artist , still committed to growth in his ninth decade , change while remaining true to his principles 3 +69051 3508 's ... 2 +69052 3508 worth the extra effort to see an artist , still committed to growth in his ninth decade , change while remaining true to his principles 3 +69053 3508 the extra effort to see an artist , still committed to growth in his ninth decade , change while remaining true to his principles 3 +69054 3508 extra effort to see an artist , still committed to growth in his ninth decade , change while remaining true to his principles 3 +69055 3508 effort to see an artist , still committed to growth in his ninth decade , change while remaining true to his principles 3 +69056 3508 to see an artist , still committed to growth in his ninth decade , change while remaining true to his principles 2 +69057 3508 see an artist , still committed to growth in his ninth decade , change while remaining true to his principles 3 +69058 3508 see an artist , still committed to growth in his ninth decade , 2 +69059 3508 see an artist , still committed to growth in his ninth decade 4 +69060 3508 see an artist , 2 +69061 3508 see an artist 2 +69062 3508 still committed to growth in his ninth decade 3 +69063 3508 committed to growth in his ninth decade 3 +69064 3508 to growth in his ninth decade 2 +69065 3508 growth in his ninth decade 2 +69066 3508 growth 3 +69067 3508 in his ninth decade 2 +69068 3508 his ninth decade 3 +69069 3508 ninth decade 2 +69070 3508 ninth 2 +69071 3508 change while remaining true to his principles 2 +69072 3508 while remaining true to his principles 3 +69073 3508 remaining true to his principles 2 +69074 3508 remaining 2 +69075 3508 true to his principles 3 +69076 3508 to his principles 2 +69077 3508 his principles 2 +69078 3508 principles 2 +69079 3508 with a film whose very subject is , quite pointedly , about the peril of such efforts 2 +69080 3508 a film whose very subject is , quite pointedly , about the peril of such efforts 2 +69081 3508 whose very subject is , quite pointedly , about the peril of such efforts 2 +69082 3508 very subject is , quite pointedly , about the peril of such efforts 2 +69083 3508 very subject 2 +69084 3508 is , quite pointedly , about the peril of such efforts 2 +69085 3508 is , quite pointedly , 3 +69086 3508 is , quite pointedly 2 +69087 3508 quite pointedly 2 +69088 3508 pointedly 2 +69089 3508 about the peril of such efforts 2 +69090 3508 the peril of such efforts 2 +69091 3508 the peril 2 +69092 3508 peril 3 +69093 3508 of such efforts 2 +69094 3508 such efforts 2 +69095 3509 Pair that with really poor comedic writing ... and you 've got a huge mess . 0 +69096 3509 Pair that with really poor comedic writing ... and you 've got a huge mess 0 +69097 3509 Pair that with really poor comedic writing ... and 1 +69098 3509 Pair that with really poor comedic writing ... 0 +69099 3509 Pair that with really poor comedic writing 1 +69100 3509 that with really poor comedic writing 0 +69101 3509 with really poor comedic writing 1 +69102 3509 really poor comedic writing 1 +69103 3509 really poor 1 +69104 3509 comedic writing 3 +69105 3509 you 've got a huge mess 1 +69106 3509 've got a huge mess 1 +69107 3509 got a huge mess 2 +69108 3509 a huge mess 0 +69109 3509 huge mess 0 +69110 3510 Even better than the first one ! 4 +69111 3510 Even better than the first one 3 +69112 3510 than the first one 2 +69113 3511 Let 's hope not . 2 +69114 3511 hope not . 2 +69115 3511 hope not 2 +69116 3512 As immaculate as Stuart Little 2 is , it could be a lot better if it were , well , more adventurous . 3 +69117 3512 As immaculate as Stuart Little 2 is 2 +69118 3512 immaculate as Stuart Little 2 is 2 +69119 3512 immaculate as Stuart Little 2 2 +69120 3512 immaculate 3 +69121 3512 as Stuart Little 2 2 +69122 3512 , it could be a lot better if it were , well , more adventurous . 1 +69123 3512 it could be a lot better if it were , well , more adventurous . 1 +69124 3512 could be a lot better if it were , well , more adventurous . 2 +69125 3512 could be a lot better if it were , well , more adventurous 2 +69126 3512 be a lot better if it were , well , more adventurous 2 +69127 3512 a lot better if it were , well , more adventurous 1 +69128 3512 a lot better 3 +69129 3512 if it were , well , more adventurous 2 +69130 3512 it were , well , more adventurous 3 +69131 3512 were , well , more adventurous 2 +69132 3512 were , well , 2 +69133 3512 were , well 2 +69134 3512 were , 2 +69135 3512 more adventurous 3 +69136 3513 She may not be real , but the laughs are . 4 +69137 3513 She may not be real , but the laughs are 3 +69138 3513 She may not be real , but 2 +69139 3513 She may not be real , 2 +69140 3513 She may not be real 1 +69141 3513 may not be real 2 +69142 3513 be real 2 +69143 3513 the laughs are 2 +69144 3514 Putting the primitive murderer inside a high-tech space station unleashes a Pandora 's Box of special effects that run the gamut from cheesy to cheesier to cheesiest . 1 +69145 3514 Putting the primitive murderer inside a high-tech space station unleashes a Pandora 's Box of special effects that run the gamut from cheesy to cheesier to cheesiest 0 +69146 3514 Putting the primitive murderer inside a high-tech space station unleashes 2 +69147 3514 Putting the primitive murderer inside a high-tech space station 2 +69148 3514 the primitive murderer inside a high-tech space station 2 +69149 3514 the primitive murderer 1 +69150 3514 primitive murderer 2 +69151 3514 inside a high-tech space station 2 +69152 3514 a high-tech space station 2 +69153 3514 high-tech space station 2 +69154 3514 unleashes 3 +69155 3514 a Pandora 's Box of special effects that run the gamut from cheesy to cheesier to cheesiest 0 +69156 3514 a Pandora 's Box 2 +69157 3514 a Pandora 's 2 +69158 3514 Pandora 's 2 +69159 3514 Pandora 2 +69160 3514 of special effects that run the gamut from cheesy to cheesier to cheesiest 0 +69161 3514 special effects that run the gamut from cheesy to cheesier to cheesiest 1 +69162 3514 that run the gamut from cheesy to cheesier to cheesiest 1 +69163 3514 run the gamut from cheesy to cheesier to cheesiest 0 +69164 3514 run the gamut from cheesy 2 +69165 3514 run the gamut 2 +69166 3514 the gamut 2 +69167 3514 gamut 2 +69168 3514 from cheesy 2 +69169 3514 to cheesier to cheesiest 1 +69170 3514 cheesier to cheesiest 1 +69171 3514 cheesier 1 +69172 3514 to cheesiest 2 +69173 3514 cheesiest 1 +69174 3515 The sinister inspiration that fuelled DeVito 's early work is confused in Death to Smoochy into something both ugly and mindless . 0 +69175 3515 The sinister inspiration that fuelled DeVito 's early work 2 +69176 3515 The sinister inspiration 2 +69177 3515 sinister inspiration 3 +69178 3515 that fuelled DeVito 's early work 2 +69179 3515 fuelled DeVito 's early work 3 +69180 3515 fuelled 2 +69181 3515 DeVito 's early work 2 +69182 3515 DeVito 's 2 +69183 3515 DeVito 2 +69184 3515 early work 3 +69185 3515 is confused in Death to Smoochy into something both ugly and mindless . 1 +69186 3515 is confused in Death to Smoochy into something both ugly and mindless 0 +69187 3515 confused in Death to Smoochy into something both ugly and mindless 2 +69188 3515 confused in Death to Smoochy 1 +69189 3515 confused in Death 2 +69190 3515 in Death 2 +69191 3515 into something both ugly and mindless 2 +69192 3515 something both ugly and mindless 1 +69193 3515 both ugly and mindless 1 +69194 3515 ugly and mindless 0 +69195 3515 ugly and 1 +69196 3516 The leads we are given here are simply too bland to be interesting . 1 +69197 3516 The leads we are given here 2 +69198 3516 we are given here 2 +69199 3516 are given here 2 +69200 3516 given here 2 +69201 3516 are simply too bland to be interesting . 1 +69202 3516 are simply too bland to be interesting 1 +69203 3516 too bland to be interesting 1 +69204 3516 bland to be interesting 1 +69205 3516 to be interesting 3 +69206 3516 be interesting 2 +69207 3517 As giddy and whimsical and relevant today as it was 270 years ago . 4 +69208 3517 As giddy and whimsical and relevant today 3 +69209 3517 giddy and whimsical and relevant today 3 +69210 3517 giddy and 2 +69211 3517 whimsical and relevant today 3 +69212 3517 and relevant today 2 +69213 3517 relevant today 3 +69214 3517 relevant 2 +69215 3517 as it was 270 years ago . 2 +69216 3517 was 270 years ago . 2 +69217 3517 was 270 years ago 2 +69218 3517 270 years ago 2 +69219 3517 270 years 2 +69220 3517 270 2 +69221 3518 The skirmishes for power waged among victims and predators settle into an undistinguished rhythm of artificial suspense . 1 +69222 3518 The skirmishes for power 2 +69223 3518 The skirmishes 2 +69224 3518 skirmishes 2 +69225 3518 for power 2 +69226 3518 waged among victims and predators settle into an undistinguished rhythm of artificial suspense . 1 +69227 3518 waged among victims and predators settle into an undistinguished rhythm of artificial suspense 1 +69228 3518 waged among victims and predators 2 +69229 3518 waged 2 +69230 3518 among victims and predators 2 +69231 3518 victims and predators 2 +69232 3518 victims and 2 +69233 3518 predators 2 +69234 3518 settle into an undistinguished rhythm of artificial suspense 2 +69235 3518 into an undistinguished rhythm of artificial suspense 2 +69236 3518 an undistinguished rhythm of artificial suspense 1 +69237 3518 an undistinguished rhythm 2 +69238 3518 undistinguished rhythm 1 +69239 3518 undistinguished 1 +69240 3518 of artificial suspense 1 +69241 3518 artificial suspense 1 +69242 3519 It 's hard to believe these jokers are supposed to have pulled off four similar kidnappings before . 1 +69243 3519 's hard to believe these jokers are supposed to have pulled off four similar kidnappings before . 1 +69244 3519 's hard to believe these jokers are supposed to have pulled off four similar kidnappings before 1 +69245 3519 hard to believe these jokers are supposed to have pulled off four similar kidnappings before 1 +69246 3519 to believe these jokers are supposed to have pulled off four similar kidnappings before 1 +69247 3519 believe these jokers are supposed to have pulled off four similar kidnappings before 1 +69248 3519 these jokers are supposed to have pulled off four similar kidnappings before 1 +69249 3519 these jokers 2 +69250 3519 jokers 2 +69251 3519 are supposed to have pulled off four similar kidnappings before 2 +69252 3519 supposed to have pulled off four similar kidnappings before 2 +69253 3519 to have pulled off four similar kidnappings before 2 +69254 3519 have pulled off four similar kidnappings before 1 +69255 3519 pulled off four similar kidnappings before 2 +69256 3519 pulled off 2 +69257 3519 four similar kidnappings before 2 +69258 3519 four similar kidnappings 2 +69259 3519 similar kidnappings 2 +69260 3519 kidnappings 2 +69261 3520 There 's a sheer unbridled delight in the way the story unfurls ... 3 +69262 3520 There 's a sheer unbridled delight in the way 4 +69263 3520 's a sheer unbridled delight in the way 3 +69264 3520 a sheer unbridled delight in the way 4 +69265 3520 a sheer unbridled delight 4 +69266 3520 sheer unbridled delight 4 +69267 3520 unbridled delight 3 +69268 3520 unbridled 2 +69269 3520 the story unfurls ... 2 +69270 3520 unfurls ... 2 +69271 3520 unfurls 2 +69272 3521 Igby Goes Down is one of those movies . 2 +69273 3521 Igby Goes 2 +69274 3521 Down is one of those movies . 2 +69275 3521 is one of those movies . 2 +69276 3521 is one of those movies 2 +69277 3521 one of those movies 3 +69278 3521 of those movies 2 +69279 3522 An awful snooze . 0 +69280 3522 awful snooze . 0 +69281 3522 snooze . 1 +69282 3522 snooze 0 +69283 3523 Sandra Bullock , despite downplaying her good looks , carries a little too much ai n't - she-cute baggage into her lead role as a troubled and determined homicide cop to quite pull off the heavy stuff . 1 +69284 3523 , despite downplaying her good looks , carries a little too much ai n't - she-cute baggage into her lead role as a troubled and determined homicide cop to quite pull off the heavy stuff . 1 +69285 3523 despite downplaying her good looks , carries a little too much ai n't - she-cute baggage into her lead role as a troubled and determined homicide cop to quite pull off the heavy stuff . 3 +69286 3523 despite downplaying her good looks 3 +69287 3523 downplaying her good looks 2 +69288 3523 downplaying 2 +69289 3523 her good looks 3 +69290 3523 good looks 3 +69291 3523 , carries a little too much ai n't - she-cute baggage into her lead role as a troubled and determined homicide cop to quite pull off the heavy stuff . 0 +69292 3523 carries a little too much ai n't - she-cute baggage into her lead role as a troubled and determined homicide cop to quite pull off the heavy stuff . 1 +69293 3523 carries a little too much ai n't - she-cute baggage into her lead role as a troubled and determined homicide cop to quite pull off the heavy stuff 1 +69294 3523 a little too much ai n't - she-cute baggage into her lead role as a troubled and determined homicide cop to quite pull off the heavy stuff 1 +69295 3523 too much ai n't - she-cute baggage into her lead role as a troubled and determined homicide cop to quite pull off the heavy stuff 1 +69296 3523 ai n't - she-cute baggage into her lead role as a troubled and determined homicide cop to quite pull off the heavy stuff 1 +69297 3523 - she-cute baggage into her lead role as a troubled and determined homicide cop to quite pull off the heavy stuff 1 +69298 3523 - she-cute baggage into her lead role as a troubled and determined homicide cop 2 +69299 3523 - she-cute baggage 2 +69300 3523 she-cute baggage 2 +69301 3523 she-cute 3 +69302 3523 into her lead role as a troubled and determined homicide cop 2 +69303 3523 her lead role as a troubled and determined homicide cop 2 +69304 3523 her lead role 2 +69305 3523 lead role 2 +69306 3523 as a troubled and determined homicide cop 2 +69307 3523 a troubled and determined homicide cop 1 +69308 3523 troubled and determined homicide cop 3 +69309 3523 troubled and determined 2 +69310 3523 troubled and 1 +69311 3523 troubled 1 +69312 3523 homicide cop 2 +69313 3523 homicide 2 +69314 3523 to quite pull off the heavy stuff 2 +69315 3523 quite pull off the heavy stuff 2 +69316 3523 pull off the heavy stuff 2 +69317 3523 pull off 2 +69318 3523 the heavy stuff 2 +69319 3523 heavy stuff 2 +69320 3524 A thoroughly engaging , surprisingly touching British comedy . 4 +69321 3524 A thoroughly engaging , surprisingly touching British comedy 4 +69322 3524 A thoroughly 2 +69323 3524 engaging , surprisingly touching British comedy 3 +69324 3524 engaging , surprisingly 3 +69325 3524 engaging , 3 +69326 3524 touching British comedy 3 +69327 3524 British comedy 3 +69328 3525 In the name of an allegedly inspiring and easily marketable flick , The Emperor 's Club turns a blind eye to the very history it pretends to teach . 1 +69329 3525 In the name of an allegedly inspiring and easily marketable flick 3 +69330 3525 the name of an allegedly inspiring and easily marketable flick 2 +69331 3525 of an allegedly inspiring and easily marketable flick 3 +69332 3525 an allegedly inspiring and easily marketable flick 3 +69333 3525 allegedly inspiring and easily marketable flick 2 +69334 3525 allegedly inspiring and easily marketable 3 +69335 3525 allegedly inspiring and 3 +69336 3525 allegedly inspiring 2 +69337 3525 easily marketable 3 +69338 3525 marketable 2 +69339 3525 , The Emperor 's Club turns a blind eye to the very history it pretends to teach . 1 +69340 3525 The Emperor 's Club turns a blind eye to the very history it pretends to teach . 1 +69341 3525 turns a blind eye to the very history it pretends to teach . 1 +69342 3525 turns a blind eye to the very history it pretends to teach 1 +69343 3525 turns a blind eye 1 +69344 3525 a blind eye 2 +69345 3525 blind eye 2 +69346 3525 to the very history it pretends to teach 2 +69347 3525 the very history it pretends to teach 2 +69348 3525 the very history 2 +69349 3525 very history 2 +69350 3525 it pretends to teach 2 +69351 3525 pretends to teach 2 +69352 3525 to teach 2 +69353 3526 The film has a terrific look and Salma Hayek has a feel for the character at all stages of her life . 4 +69354 3526 The film has a terrific look and Salma Hayek has a feel for the character at all stages of her life 3 +69355 3526 The film has a terrific look and 3 +69356 3526 The film has a terrific look 4 +69357 3526 has a terrific look 4 +69358 3526 a terrific look 3 +69359 3526 terrific look 4 +69360 3526 Salma Hayek has a feel for the character at all stages of her life 3 +69361 3526 Salma Hayek 2 +69362 3526 has a feel for the character at all stages of her life 4 +69363 3526 a feel for the character at all stages of her life 2 +69364 3526 a feel 2 +69365 3526 for the character at all stages of her life 3 +69366 3526 the character at all stages of her life 2 +69367 3526 at all stages of her life 2 +69368 3526 all stages of her life 2 +69369 3526 all stages 2 +69370 3526 of her life 2 +69371 3527 ... an eerily suspenseful , deeply absorbing piece that works as a treatise on spirituality as well as a solid sci-fi thriller . 4 +69372 3527 an eerily suspenseful , deeply absorbing piece that works as a treatise on spirituality as well as a solid sci-fi thriller . 4 +69373 3527 an eerily suspenseful , deeply absorbing piece that works as a treatise on spirituality as well as a solid sci-fi thriller 3 +69374 3527 an eerily suspenseful , deeply absorbing piece 4 +69375 3527 eerily suspenseful , deeply absorbing piece 3 +69376 3527 eerily suspenseful 3 +69377 3527 , deeply absorbing piece 3 +69378 3527 deeply absorbing piece 4 +69379 3527 deeply absorbing 3 +69380 3527 that works as a treatise on spirituality as well as a solid sci-fi thriller 3 +69381 3527 works as a treatise on spirituality as well as a solid sci-fi thriller 3 +69382 3527 as a treatise on spirituality as well as a solid sci-fi thriller 4 +69383 3527 a treatise on spirituality as well as a solid sci-fi thriller 3 +69384 3527 a treatise on spirituality as well as 3 +69385 3527 a treatise on spirituality 3 +69386 3527 a treatise 2 +69387 3527 treatise 2 +69388 3527 on spirituality 2 +69389 3527 a solid sci-fi thriller 3 +69390 3527 solid sci-fi thriller 3 +69391 3527 sci-fi thriller 3 +69392 3528 Caine makes us watch as his character awakens to the notion that to be human is eventually to have to choose . 3 +69393 3528 makes us watch as his character awakens to the notion that to be human is eventually to have to choose . 2 +69394 3528 makes us watch as his character awakens to the notion that to be human is eventually to have to choose 3 +69395 3528 us watch as his character awakens to the notion that to be human is eventually to have to choose 3 +69396 3528 watch as his character awakens to the notion that to be human is eventually to have to choose 2 +69397 3528 as his character awakens to the notion that to be human is eventually to have to choose 2 +69398 3528 his character awakens to the notion that to be human is eventually to have to choose 2 +69399 3528 his character awakens to the notion that to be human 1 +69400 3528 his character awakens 2 +69401 3528 character awakens 2 +69402 3528 awakens 3 +69403 3528 to the notion that to be human 2 +69404 3528 the notion that to be human 2 +69405 3528 that to be human 2 +69406 3528 to be human 2 +69407 3528 be human 2 +69408 3528 is eventually to have to choose 2 +69409 3528 is eventually 2 +69410 3528 to have to choose 2 +69411 3528 have to choose 2 +69412 3528 to choose 2 +69413 3529 This in-depth study of important developments of the computer industry should make it required viewing in university computer science departments for years to come . 3 +69414 3529 This in-depth study of important developments of the computer industry 3 +69415 3529 This in-depth study 2 +69416 3529 in-depth study 2 +69417 3529 in-depth 2 +69418 3529 of important developments of the computer industry 3 +69419 3529 important developments of the computer industry 2 +69420 3529 important developments 2 +69421 3529 of the computer industry 2 +69422 3529 the computer industry 2 +69423 3529 computer industry 2 +69424 3529 should make it required viewing in university computer science departments for years to come . 3 +69425 3529 should make it required viewing in university computer science departments for years to come 4 +69426 3529 make it required viewing in university computer science departments for years to come 3 +69427 3529 it required viewing in university computer science departments for years to come 3 +69428 3529 required viewing in university computer science departments for years to come 3 +69429 3529 viewing in university computer science departments for years to come 4 +69430 3529 viewing in university computer science departments for years 2 +69431 3529 in university computer science departments for years 2 +69432 3529 university computer science departments for years 2 +69433 3529 university computer science departments 2 +69434 3529 university 2 +69435 3529 computer science departments 2 +69436 3529 science departments 2 +69437 3529 departments 2 +69438 3529 for years 2 +69439 3529 to come 2 +69440 3530 The film is about the relationships rather than about the outcome . 2 +69441 3530 is about the relationships rather than about the outcome . 2 +69442 3530 is about the relationships rather than about the outcome 2 +69443 3530 about the relationships rather than about the outcome 2 +69444 3530 about the relationships rather than 2 +69445 3530 about the relationships 2 +69446 3530 about the outcome 2 +69447 3531 Adam Sandler 's 8 Crazy Nights is 75 wasted minutes of Sandler as the voice-over hero in Columbia Pictures ' perverse idea of an animated holiday movie . 1 +69448 3531 Adam Sandler 's 8 Crazy Nights 2 +69449 3531 8 Crazy Nights 3 +69450 3531 is 75 wasted minutes of Sandler as the voice-over hero in Columbia Pictures ' perverse idea of an animated holiday movie . 0 +69451 3531 is 75 wasted minutes of Sandler as the voice-over hero in Columbia Pictures ' perverse idea of an animated holiday movie 0 +69452 3531 75 wasted minutes of Sandler as the voice-over hero in Columbia Pictures ' perverse idea of an animated holiday movie 0 +69453 3531 75 2 +69454 3531 wasted minutes of Sandler as the voice-over hero in Columbia Pictures ' perverse idea of an animated holiday movie 0 +69455 3531 wasted minutes of Sandler 1 +69456 3531 minutes of Sandler 2 +69457 3531 of Sandler 2 +69458 3531 as the voice-over hero in Columbia Pictures ' perverse idea of an animated holiday movie 1 +69459 3531 the voice-over hero in Columbia Pictures ' perverse idea of an animated holiday movie 0 +69460 3531 the voice-over hero 2 +69461 3531 voice-over hero 2 +69462 3531 voice-over 2 +69463 3531 in Columbia Pictures ' perverse idea of an animated holiday movie 1 +69464 3531 Columbia Pictures ' perverse idea of an animated holiday movie 1 +69465 3531 Columbia Pictures ' perverse idea 2 +69466 3531 Columbia Pictures ' 2 +69467 3531 Columbia 2 +69468 3531 Pictures ' 2 +69469 3531 perverse idea 2 +69470 3531 of an animated holiday movie 2 +69471 3531 an animated holiday movie 2 +69472 3531 animated holiday movie 2 +69473 3531 holiday movie 2 +69474 3532 Has an uppity musical beat that you can dance to , but its energy ca n't compare to the wit , humor and snappy dialogue of the original . 2 +69475 3532 Has an uppity musical beat that you can dance to , but its energy ca n't compare to the wit , humor and snappy dialogue of the original 3 +69476 3532 Has an uppity musical beat that you can dance to , but 3 +69477 3532 Has an uppity musical beat that you can dance to , 3 +69478 3532 Has an uppity musical beat that you can dance to 3 +69479 3532 an uppity musical beat that you can dance to 4 +69480 3532 an uppity musical 3 +69481 3532 uppity musical 2 +69482 3532 uppity 1 +69483 3532 beat that you can dance to 3 +69484 3532 that you can dance to 3 +69485 3532 you can dance to 3 +69486 3532 can dance to 2 +69487 3532 dance to 2 +69488 3532 its energy ca n't compare to the wit , humor and snappy dialogue of the original 1 +69489 3532 its energy 2 +69490 3532 ca n't compare to the wit , humor and snappy dialogue of the original 1 +69491 3532 compare to the wit , humor and snappy dialogue of the original 1 +69492 3532 to the wit , humor and snappy dialogue of the original 3 +69493 3532 the wit , humor and snappy dialogue of the original 3 +69494 3532 the wit , humor and snappy dialogue 4 +69495 3532 wit , humor and snappy dialogue 4 +69496 3532 , humor and snappy dialogue 3 +69497 3532 humor and snappy dialogue 4 +69498 3532 and snappy dialogue 3 +69499 3532 snappy dialogue 3 +69500 3532 of the original 2 +69501 3533 Better still , he does all of this , and more , while remaining one of the most savagely hilarious social critics this side of Jonathan Swift . 4 +69502 3533 Better still 3 +69503 3533 , he does all of this , and more , while remaining one of the most savagely hilarious social critics this side of Jonathan Swift . 3 +69504 3533 he does all of this , and more , while remaining one of the most savagely hilarious social critics this side of Jonathan Swift . 3 +69505 3533 does all of this , and more , while remaining one of the most savagely hilarious social critics this side of Jonathan Swift . 3 +69506 3533 does all of this , and more , while remaining one of the most savagely hilarious social critics this side of Jonathan Swift 4 +69507 3533 does all of this , and more , 2 +69508 3533 does all of this , and more 3 +69509 3533 all of this , and more 3 +69510 3533 of this , and more 2 +69511 3533 this , and more 2 +69512 3533 this , and 2 +69513 3533 while remaining one of the most savagely hilarious social critics this side of Jonathan Swift 3 +69514 3533 remaining one of the most savagely hilarious social critics this side of Jonathan Swift 3 +69515 3533 remaining one of the most savagely hilarious social critics 3 +69516 3533 one of the most savagely hilarious social critics 3 +69517 3533 of the most savagely hilarious social critics 2 +69518 3533 the most savagely hilarious social critics 2 +69519 3533 most savagely hilarious social critics 3 +69520 3533 most savagely hilarious 3 +69521 3533 savagely hilarious 3 +69522 3533 savagely 1 +69523 3533 social critics 2 +69524 3533 this side of Jonathan Swift 2 +69525 3533 of Jonathan Swift 2 +69526 3533 Jonathan Swift 2 +69527 3533 Swift 2 +69528 3534 Helps to remind the First World that HIV\/AIDS is far from being yesterday 's news . 2 +69529 3534 Helps to remind the First World that HIV\/AIDS is far from being yesterday 's news 2 +69530 3534 to remind the First World that HIV\/AIDS is far from being yesterday 's news 1 +69531 3534 remind the First World that HIV\/AIDS is far from being yesterday 's news 3 +69532 3534 remind the First World 2 +69533 3534 remind 2 +69534 3534 the First World 2 +69535 3534 First World 3 +69536 3534 that HIV\/AIDS is far from being yesterday 's news 2 +69537 3534 HIV\/AIDS is far from being yesterday 's news 2 +69538 3534 HIV\/AIDS 1 +69539 3534 is far from being yesterday 's news 2 +69540 3534 far from being yesterday 's news 3 +69541 3534 from being yesterday 's news 2 +69542 3534 being yesterday 's news 2 +69543 3534 being yesterday 's 2 +69544 3534 yesterday 's 2 +69545 3535 Mr. Spielberg and his company just want you to enjoy yourselves without feeling conned . 3 +69546 3535 Mr. Spielberg and his company 2 +69547 3535 Mr. Spielberg and 2 +69548 3535 Mr. Spielberg 2 +69549 3535 his company 2 +69550 3535 just want you to enjoy yourselves without feeling conned . 2 +69551 3535 want you to enjoy yourselves without feeling conned . 3 +69552 3535 want you to enjoy yourselves without feeling conned 3 +69553 3535 you to enjoy yourselves without feeling conned 3 +69554 3535 to enjoy yourselves without feeling conned 3 +69555 3535 enjoy yourselves without feeling conned 3 +69556 3535 enjoy yourselves 3 +69557 3535 yourselves 2 +69558 3535 without feeling conned 2 +69559 3535 feeling conned 2 +69560 3535 conned 1 +69561 3536 Flawed , but worth seeing for Ambrose 's performance . 2 +69562 3536 , but worth seeing for Ambrose 's performance . 3 +69563 3536 worth seeing for Ambrose 's performance . 3 +69564 3536 worth seeing for Ambrose 's performance 3 +69565 3536 seeing for Ambrose 's performance 2 +69566 3536 for Ambrose 's performance 2 +69567 3536 Ambrose 's performance 2 +69568 3536 Ambrose 's 2 +69569 3537 Kiarostami has crafted a deceptively casual ode to children and managed to convey a tiny sense of hope . 3 +69570 3537 Kiarostami 2 +69571 3537 has crafted a deceptively casual ode to children and managed to convey a tiny sense of hope . 2 +69572 3537 has crafted a deceptively casual ode to children and managed to convey a tiny sense of hope 2 +69573 3537 crafted a deceptively casual ode to children and managed to convey a tiny sense of hope 3 +69574 3537 crafted a deceptively casual ode to children and 3 +69575 3537 crafted a deceptively casual ode to children 2 +69576 3537 crafted a deceptively casual ode 3 +69577 3537 a deceptively casual ode 3 +69578 3537 deceptively casual ode 2 +69579 3537 casual ode 2 +69580 3537 managed to convey a tiny sense of hope 3 +69581 3537 to convey a tiny sense of hope 2 +69582 3537 convey a tiny sense of hope 3 +69583 3537 a tiny sense of hope 3 +69584 3537 a tiny sense 2 +69585 3537 tiny sense 2 +69586 3538 Nevertheless , it still seems endless . 1 +69587 3538 , it still seems endless . 1 +69588 3538 it still seems endless . 2 +69589 3538 still seems endless . 2 +69590 3538 seems endless . 1 +69591 3538 seems endless 3 +69592 3539 This is an elegantly balanced movie -- every member of the ensemble has something fascinating to do -- that does n't reveal even a hint of artifice . 4 +69593 3539 is an elegantly balanced movie -- every member of the ensemble has something fascinating to do -- that does n't reveal even a hint of artifice . 4 +69594 3539 is an elegantly balanced movie -- every member of the ensemble has something fascinating to do -- that does n't reveal even a hint of artifice 3 +69595 3539 an elegantly balanced movie -- every member of the ensemble has something fascinating to do -- that does n't reveal even a hint of artifice 3 +69596 3539 an elegantly balanced movie -- every member of the ensemble has something fascinating to do -- 4 +69597 3539 an elegantly balanced movie 4 +69598 3539 elegantly balanced movie 4 +69599 3539 balanced movie 2 +69600 3539 -- every member of the ensemble has something fascinating to do -- 3 +69601 3539 every member of the ensemble has something fascinating to do -- 3 +69602 3539 every member of the ensemble has something fascinating to do 4 +69603 3539 every member 3 +69604 3539 member 3 +69605 3539 of the ensemble has something fascinating to do 2 +69606 3539 the ensemble has something fascinating to do 3 +69607 3539 has something fascinating to do 3 +69608 3539 has something fascinating 3 +69609 3539 something fascinating 3 +69610 3539 that does n't reveal even a hint of artifice 1 +69611 3539 does n't reveal even a hint of artifice 1 +69612 3539 reveal even a hint of artifice 2 +69613 3539 even a hint of artifice 2 +69614 3539 even a hint 2 +69615 3539 of artifice 2 +69616 3540 The film is weighed down by supporting characters who are either too goodly , wise and knowing or downright comically evil . 1 +69617 3540 is weighed down by supporting characters who are either too goodly , wise and knowing or downright comically evil . 0 +69618 3540 is weighed down by supporting characters who are either too goodly , wise and knowing or downright comically evil 1 +69619 3540 weighed down by supporting characters who are either too goodly , wise and knowing or downright comically evil 1 +69620 3540 weighed down 2 +69621 3540 weighed 2 +69622 3540 by supporting characters who are either too goodly , wise and knowing or downright comically evil 1 +69623 3540 supporting characters who are either too goodly , wise and knowing or downright comically evil 2 +69624 3540 characters who are either too goodly , wise and knowing or downright comically evil 1 +69625 3540 who are either too goodly , wise and knowing or downright comically evil 1 +69626 3540 are either too goodly , wise and knowing or downright comically evil 2 +69627 3540 are either 2 +69628 3540 too goodly , wise and knowing or downright comically evil 3 +69629 3540 too goodly , wise and knowing or 2 +69630 3540 too goodly , wise and knowing 3 +69631 3540 too goodly , 3 +69632 3540 too goodly 2 +69633 3540 goodly 2 +69634 3540 wise and knowing 3 +69635 3540 wise and 2 +69636 3540 downright comically evil 1 +69637 3540 comically evil 2 +69638 3541 An enjoyable feel-good family comedy regardless of race . 3 +69639 3541 An enjoyable feel-good family comedy regardless of race 4 +69640 3541 An enjoyable feel-good family comedy 3 +69641 3541 enjoyable feel-good family comedy 3 +69642 3541 feel-good family comedy 4 +69643 3541 family comedy 3 +69644 3541 regardless of race 3 +69645 3541 of race 2 +69646 3542 Patchy combination of soap opera , low-tech magic realism and , at times , ploddingly sociological commentary . 1 +69647 3542 Patchy combination of soap opera , low-tech magic realism and , at times , ploddingly sociological commentary 1 +69648 3542 Patchy combination of soap opera , 1 +69649 3542 Patchy combination of soap opera 1 +69650 3542 Patchy combination 1 +69651 3542 Patchy 1 +69652 3542 of soap opera 2 +69653 3542 low-tech magic realism and , at times , ploddingly sociological commentary 2 +69654 3542 low-tech magic realism and , at times , 1 +69655 3542 low-tech magic realism and 2 +69656 3542 low-tech magic realism 1 +69657 3542 low-tech 1 +69658 3542 ploddingly sociological commentary 1 +69659 3542 ploddingly sociological 1 +69660 3542 ploddingly 2 +69661 3543 Trailer trash cinema so uncool the only thing missing is the `` Gadzooks ! '' 1 +69662 3543 Trailer trash cinema 1 +69663 3543 trash cinema 1 +69664 3543 so uncool the only thing missing is the `` Gadzooks ! '' 0 +69665 3543 uncool the only thing missing is the `` Gadzooks ! '' 1 +69666 3543 uncool the only thing missing is the `` Gadzooks ! 1 +69667 3543 uncool the only thing missing is the `` Gadzooks 1 +69668 3543 uncool 2 +69669 3543 the only thing missing is the `` Gadzooks 2 +69670 3543 the only thing missing 2 +69671 3543 only thing missing 3 +69672 3543 thing missing 2 +69673 3543 is the `` Gadzooks 2 +69674 3543 the `` Gadzooks 2 +69675 3543 `` Gadzooks 2 +69676 3543 Gadzooks 2 +69677 3544 An impeccable study in perversity . 3 +69678 3544 An impeccable study in perversity 2 +69679 3544 An impeccable study 3 +69680 3544 impeccable study 3 +69681 3544 in perversity 2 +69682 3544 perversity 1 +69683 3545 Open-ended and composed of layer upon layer , Talk to Her is a cinephile 's feast , an invitation to countless interpretations . 2 +69684 3545 Open-ended and composed of layer upon layer 2 +69685 3545 Open-ended and composed 3 +69686 3545 Open-ended and 2 +69687 3545 Open-ended 2 +69688 3545 of layer upon layer 2 +69689 3545 layer upon layer 3 +69690 3545 layer 2 +69691 3545 upon layer 2 +69692 3545 , Talk to Her is a cinephile 's feast , an invitation to countless interpretations . 3 +69693 3545 Talk to Her is a cinephile 's feast , an invitation to countless interpretations . 2 +69694 3545 Talk to Her 2 +69695 3545 to Her 2 +69696 3545 is a cinephile 's feast , an invitation to countless interpretations . 2 +69697 3545 is a cinephile 's feast , an invitation to countless interpretations 4 +69698 3545 a cinephile 's feast , an invitation to countless interpretations 3 +69699 3545 a cinephile 's feast , 4 +69700 3545 a cinephile 's feast 2 +69701 3545 a cinephile 's 2 +69702 3545 cinephile 's 2 +69703 3545 cinephile 2 +69704 3545 feast 3 +69705 3545 an invitation to countless interpretations 2 +69706 3545 an invitation 2 +69707 3545 invitation 2 +69708 3545 to countless interpretations 2 +69709 3545 countless interpretations 2 +69710 3546 Going to this movie is a little like chewing whale blubber - it 's an acquired taste that takes time to enjoy , but it 's worth it , even if it does take 3 hours to get through . 2 +69711 3546 Going to this movie is a little like chewing whale blubber - it 's an acquired taste that takes time to enjoy , but it 's worth it , even if it does take 3 hours to get through 3 +69712 3546 Going to this movie is a little like chewing whale blubber - 1 +69713 3546 Going to this movie is a little like chewing whale blubber 0 +69714 3546 Going to this movie 2 +69715 3546 to this movie 2 +69716 3546 is a little like chewing whale blubber 0 +69717 3546 a little like chewing whale blubber 1 +69718 3546 like chewing whale blubber 1 +69719 3546 chewing whale blubber 2 +69720 3546 chewing 2 +69721 3546 whale blubber 2 +69722 3546 blubber 1 +69723 3546 it 's an acquired taste that takes time to enjoy , but it 's worth it , even if it does take 3 hours to get through 3 +69724 3546 it 's an acquired taste that takes time to enjoy , but 3 +69725 3546 it 's an acquired taste that takes time to enjoy , 3 +69726 3546 it 's an acquired taste that takes time to enjoy 1 +69727 3546 's an acquired taste that takes time to enjoy 3 +69728 3546 an acquired taste that takes time to enjoy 2 +69729 3546 an acquired taste 2 +69730 3546 acquired taste 2 +69731 3546 acquired 2 +69732 3546 that takes time to enjoy 2 +69733 3546 takes time to enjoy 2 +69734 3546 takes time 2 +69735 3546 it 's worth it , even if it does take 3 hours to get through 3 +69736 3546 's worth it , even if it does take 3 hours to get through 2 +69737 3546 's worth it , 3 +69738 3546 's worth it 3 +69739 3546 worth it 2 +69740 3546 even if it does take 3 hours to get through 2 +69741 3546 if it does take 3 hours to get through 2 +69742 3546 it does take 3 hours to get through 2 +69743 3546 does take 3 hours to get through 2 +69744 3546 take 3 hours to get through 1 +69745 3546 take 3 hours 2 +69746 3546 3 hours 2 +69747 3546 to get through 2 +69748 3546 get through 2 +69749 3547 Both shrill and soporific , and because everything is repeated five or six times , it can seem tiresomely simpleminded . 0 +69750 3547 Both shrill and soporific , and because everything is repeated five or six times 0 +69751 3547 Both shrill and soporific , and because everything 1 +69752 3547 shrill and soporific , and because everything 2 +69753 3547 shrill and soporific , and because 1 +69754 3547 shrill and soporific 1 +69755 3547 shrill and 1 +69756 3547 soporific 2 +69757 3547 , and because 2 +69758 3547 is repeated five or six times 2 +69759 3547 repeated five or six times 2 +69760 3547 five or six times 2 +69761 3547 or six times 2 +69762 3547 six times 2 +69763 3547 , it can seem tiresomely simpleminded . 1 +69764 3547 it can seem tiresomely simpleminded . 1 +69765 3547 can seem tiresomely simpleminded . 1 +69766 3547 can seem tiresomely simpleminded 1 +69767 3547 seem tiresomely simpleminded 1 +69768 3547 tiresomely simpleminded 0 +69769 3548 Ian Holm conquers France as an earthy Napoleon 3 +69770 3548 conquers France as an earthy Napoleon 2 +69771 3548 conquers 3 +69772 3548 France as an earthy Napoleon 2 +69773 3548 as an earthy Napoleon 2 +69774 3548 an earthy Napoleon 2 +69775 3548 earthy Napoleon 2 +69776 3548 earthy 3 +69777 3549 By the time it ends in a rush of sequins , flashbulbs , blaring brass and back-stabbing babes , it has said plenty about how show business has infiltrated every corner of society -- and not always for the better . 2 +69778 3549 By the time it ends in a rush of sequins , flashbulbs , blaring brass and back-stabbing babes 1 +69779 3549 By the time 2 +69780 3549 it ends in a rush of sequins , flashbulbs , blaring brass and back-stabbing babes 2 +69781 3549 ends in a rush of sequins , flashbulbs , blaring brass and back-stabbing babes 2 +69782 3549 in a rush of sequins , flashbulbs , blaring brass and back-stabbing babes 2 +69783 3549 a rush of sequins , flashbulbs , blaring brass and back-stabbing babes 1 +69784 3549 a rush 3 +69785 3549 of sequins , flashbulbs , blaring brass and back-stabbing babes 2 +69786 3549 sequins , flashbulbs , blaring brass and back-stabbing babes 2 +69787 3549 sequins 2 +69788 3549 , flashbulbs , blaring brass and back-stabbing babes 3 +69789 3549 flashbulbs , blaring brass and back-stabbing babes 2 +69790 3549 flashbulbs 2 +69791 3549 , blaring brass and back-stabbing babes 2 +69792 3549 blaring brass and back-stabbing babes 2 +69793 3549 blaring 2 +69794 3549 brass and back-stabbing babes 2 +69795 3549 and back-stabbing babes 2 +69796 3549 back-stabbing babes 3 +69797 3549 back-stabbing 1 +69798 3549 babes 2 +69799 3549 , it has said plenty about how show business has infiltrated every corner of society -- and not always for the better . 1 +69800 3549 it has said plenty about how show business has infiltrated every corner of society -- and not always for the better . 2 +69801 3549 has said plenty about how show business has infiltrated every corner of society -- and not always for the better . 2 +69802 3549 has said plenty about how show business has infiltrated every corner of society -- and not always for the better 2 +69803 3549 said plenty about how show business has infiltrated every corner of society -- and not always for the better 2 +69804 3549 said plenty 1 +69805 3549 about how show business has infiltrated every corner of society -- and not always for the better 2 +69806 3549 how show business has infiltrated every corner of society -- and not always for the better 1 +69807 3549 show business has infiltrated every corner of society -- and not always for the better 3 +69808 3549 show business 2 +69809 3549 has infiltrated every corner of society -- and not always for the better 1 +69810 3549 infiltrated every corner of society -- and not always for the better 1 +69811 3549 infiltrated every corner of society 2 +69812 3549 infiltrated every corner 1 +69813 3549 infiltrated 2 +69814 3549 of society 2 +69815 3549 -- and not always for the better 1 +69816 3549 and not always for the better 1 +69817 3549 not always for the better 1 +69818 3549 always for the better 3 +69819 3549 for the better 3 +69820 3549 the better 2 +69821 3550 Holds limited appeal to those who like explosions , sadism and seeing people beat each other to a pulp . 2 +69822 3550 limited appeal to those who like explosions , sadism and seeing people beat each other to a pulp . 2 +69823 3550 limited appeal to those who like explosions , sadism and seeing people beat each other to a pulp 2 +69824 3550 limited appeal 1 +69825 3550 to those who like explosions , sadism and seeing people beat each other to a pulp 2 +69826 3550 those who like explosions , sadism and seeing people beat each other to a pulp 1 +69827 3550 who like explosions , sadism and seeing people beat each other to a pulp 1 +69828 3550 like explosions , sadism and seeing people beat each other to a pulp 1 +69829 3550 like explosions , sadism and seeing people 2 +69830 3550 explosions , sadism and seeing people 0 +69831 3550 , sadism and seeing people 3 +69832 3550 sadism and seeing people 2 +69833 3550 sadism 2 +69834 3550 and seeing people 2 +69835 3550 seeing people 2 +69836 3550 beat each other to a pulp 1 +69837 3550 beat each other 2 +69838 3550 to a pulp 2 +69839 3551 What 's left is a rich stew of longing . 2 +69840 3551 What 's left 2 +69841 3551 's left 2 +69842 3551 is a rich stew of longing . 3 +69843 3551 is a rich stew of longing 3 +69844 3551 a rich stew of longing 3 +69845 3551 a rich stew 3 +69846 3551 rich stew 3 +69847 3551 stew 2 +69848 3551 of longing 2 +69849 3552 Despite suffering a sense-of-humour failure , The Man Who Wrote Rocky does not deserve to go down with a ship as leaky as this . 1 +69850 3552 Despite suffering a sense-of-humour failure 1 +69851 3552 suffering a sense-of-humour failure 2 +69852 3552 a sense-of-humour failure 0 +69853 3552 sense-of-humour failure 1 +69854 3552 sense-of-humour 3 +69855 3552 , The Man Who Wrote Rocky does not deserve to go down with a ship as leaky as this . 2 +69856 3552 The Man Who Wrote Rocky does not deserve to go down with a ship as leaky as this . 1 +69857 3552 The Man Who Wrote Rocky 2 +69858 3552 Who Wrote Rocky 2 +69859 3552 Wrote Rocky 2 +69860 3552 does not deserve to go down with a ship as leaky as this . 0 +69861 3552 does not deserve to go down with a ship as leaky as this 0 +69862 3552 deserve to go down with a ship as leaky as this 0 +69863 3552 to go down with a ship as leaky as this 1 +69864 3552 go down with a ship as leaky as this 0 +69865 3552 go down with a ship as leaky 0 +69866 3552 go down 2 +69867 3552 with a ship as leaky 2 +69868 3552 a ship as leaky 1 +69869 3552 a ship 2 +69870 3552 as leaky 2 +69871 3552 leaky 2 +69872 3552 as this 2 +69873 3553 More a gunfest than a Rock concert . 1 +69874 3553 More a gunfest than a Rock concert 2 +69875 3553 a gunfest than a Rock concert 2 +69876 3553 a gunfest 2 +69877 3553 gunfest 2 +69878 3553 than a Rock concert 2 +69879 3553 a Rock concert 2 +69880 3553 Rock concert 2 +69881 3554 On its own staggeringly unoriginal terms , this gender-bending comedy is generally quite funny . 3 +69882 3554 On its own staggeringly unoriginal terms 1 +69883 3554 its own staggeringly unoriginal terms 1 +69884 3554 own staggeringly unoriginal terms 0 +69885 3554 staggeringly unoriginal terms 1 +69886 3554 unoriginal terms 1 +69887 3554 , this gender-bending comedy is generally quite funny . 3 +69888 3554 this gender-bending comedy is generally quite funny . 4 +69889 3554 this gender-bending comedy 3 +69890 3554 gender-bending comedy 3 +69891 3554 gender-bending 2 +69892 3554 is generally quite funny . 3 +69893 3554 is generally quite funny 3 +69894 3554 is generally 2 +69895 3554 quite funny 4 +69896 3555 An already thin story boils down to surviving invaders seeking an existent anti-virus . 0 +69897 3555 An already thin story 1 +69898 3555 already thin story 1 +69899 3555 already thin 2 +69900 3555 boils down to surviving invaders seeking an existent anti-virus . 2 +69901 3555 boils down to surviving invaders seeking an existent anti-virus 2 +69902 3555 boils down 2 +69903 3555 boils 2 +69904 3555 to surviving invaders seeking an existent anti-virus 2 +69905 3555 surviving invaders seeking an existent anti-virus 2 +69906 3555 surviving invaders 2 +69907 3555 invaders 2 +69908 3555 seeking an existent anti-virus 3 +69909 3555 an existent anti-virus 2 +69910 3555 existent anti-virus 2 +69911 3555 existent 2 +69912 3555 anti-virus 2 +69913 3556 Best described as I Know What You Did Last Winter . 2 +69914 3556 described as I Know What You Did Last Winter . 2 +69915 3556 described as I Know What You Did Last Winter 2 +69916 3556 as I Know What You Did Last Winter 3 +69917 3556 I Know What You Did Last Winter 2 +69918 3556 Know What You Did Last Winter 2 +69919 3556 What You Did Last Winter 2 +69920 3556 You Did Last Winter 2 +69921 3556 Did Last Winter 2 +69922 3556 Last Winter 2 +69923 3557 This thing is just garbage . 0 +69924 3557 is just garbage . 0 +69925 3557 is just garbage 0 +69926 3558 What makes Esther Kahn so demanding is that it progresses in such a low-key manner that it risks monotony . 1 +69927 3558 What makes Esther Kahn so demanding 2 +69928 3558 makes Esther Kahn so demanding 2 +69929 3558 Esther Kahn so demanding 2 +69930 3558 Esther Kahn 2 +69931 3558 Kahn 2 +69932 3558 so demanding 2 +69933 3558 is that it progresses in such a low-key manner that it risks monotony . 1 +69934 3558 is that it progresses in such a low-key manner that it risks monotony 1 +69935 3558 that it progresses in such a low-key manner that it risks monotony 1 +69936 3558 it progresses in such a low-key manner that it risks monotony 1 +69937 3558 progresses in such a low-key manner that it risks monotony 1 +69938 3558 progresses in such a low-key manner 2 +69939 3558 progresses 2 +69940 3558 in such a low-key manner 2 +69941 3558 such a low-key manner 2 +69942 3558 a low-key manner 2 +69943 3558 low-key manner 2 +69944 3558 that it risks monotony 1 +69945 3558 it risks monotony 2 +69946 3558 risks monotony 2 +69947 3558 monotony 0 +69948 3559 There 's a thin line between likably old-fashioned and fuddy-duddy , and The Count of Monte Cristo ... never quite settles on either side . 2 +69949 3559 There 's a thin line between likably old-fashioned and fuddy-duddy , and The Count of Monte Cristo ... never quite settles on either side 2 +69950 3559 There 's a thin line between likably old-fashioned and fuddy-duddy , and 1 +69951 3559 There 's a thin line between likably old-fashioned and fuddy-duddy , 2 +69952 3559 There 's a thin line between likably old-fashioned and fuddy-duddy 2 +69953 3559 's a thin line between likably old-fashioned and fuddy-duddy 1 +69954 3559 a thin line between likably old-fashioned and fuddy-duddy 2 +69955 3559 a thin line 2 +69956 3559 thin line 2 +69957 3559 between likably old-fashioned and fuddy-duddy 2 +69958 3559 likably old-fashioned and fuddy-duddy 2 +69959 3559 likably 2 +69960 3559 old-fashioned and fuddy-duddy 1 +69961 3559 old-fashioned and 2 +69962 3559 fuddy-duddy 1 +69963 3559 The Count of Monte Cristo ... never quite settles on either side 1 +69964 3559 The Count of Monte Cristo 2 +69965 3559 The Count 2 +69966 3559 of Monte Cristo 2 +69967 3559 ... never quite settles on either side 1 +69968 3559 never quite settles on either side 2 +69969 3559 settles on either side 2 +69970 3559 on either side 2 +69971 3559 either side 2 +69972 3560 Surprisingly insightful 3 +69973 3561 Its premise is smart , but the execution is pretty weary . 1 +69974 3561 Its premise is smart , but the execution is pretty weary 1 +69975 3561 Its premise is smart , but 3 +69976 3561 Its premise is smart , 3 +69977 3561 Its premise is smart 3 +69978 3561 is smart 3 +69979 3561 the execution is pretty weary 1 +69980 3561 is pretty weary 1 +69981 3561 pretty weary 1 +69982 3561 weary 1 +69983 3562 While the plot follows a predictable connect-the-dots course ... director John Schultz colors the picture in some evocative shades . 3 +69984 3562 While the plot follows a predictable connect-the-dots course 2 +69985 3562 the plot follows a predictable connect-the-dots course 1 +69986 3562 follows a predictable connect-the-dots course 2 +69987 3562 a predictable connect-the-dots course 1 +69988 3562 predictable connect-the-dots course 2 +69989 3562 connect-the-dots course 2 +69990 3562 connect-the-dots 2 +69991 3562 ... director John Schultz colors the picture in some evocative shades . 3 +69992 3562 director John Schultz colors the picture in some evocative shades . 2 +69993 3562 director John Schultz 2 +69994 3562 John Schultz 2 +69995 3562 Schultz 2 +69996 3562 colors the picture in some evocative shades . 3 +69997 3562 colors the picture in some evocative shades 3 +69998 3562 the picture in some evocative shades 3 +69999 3562 in some evocative shades 3 +70000 3562 some evocative shades 2 +70001 3562 evocative shades 3 +70002 3562 shades 2 +70003 3563 Too slick and manufactured to claim street credibility . 1 +70004 3563 slick and manufactured to claim street credibility . 3 +70005 3563 slick and manufactured to claim street credibility 3 +70006 3563 slick and 3 +70007 3563 manufactured to claim street credibility 1 +70008 3563 to claim street credibility 2 +70009 3563 claim street credibility 2 +70010 3563 street credibility 2 +70011 3564 has some visual wit ... but little imagination elsewhere . 2 +70012 3564 has some visual wit ... but little imagination elsewhere 2 +70013 3564 some visual wit ... but little imagination elsewhere 2 +70014 3564 some visual wit ... but little imagination 2 +70015 3564 some visual wit ... 2 +70016 3564 some visual wit 3 +70017 3564 but little imagination 2 +70018 3564 little imagination 1 +70019 3564 elsewhere 2 +70020 3565 I found The Ring moderately absorbing , largely for its elegantly colorful look and sound . 3 +70021 3565 found The Ring moderately absorbing , largely for its elegantly colorful look and sound . 3 +70022 3565 found The Ring moderately absorbing , largely for its elegantly colorful look and sound 3 +70023 3565 The Ring moderately absorbing , largely for its elegantly colorful look and sound 3 +70024 3565 The Ring moderately 2 +70025 3565 moderately 2 +70026 3565 absorbing , largely for its elegantly colorful look and sound 3 +70027 3565 absorbing , largely 2 +70028 3565 absorbing , 3 +70029 3565 for its elegantly colorful look and sound 3 +70030 3565 its elegantly colorful look and sound 3 +70031 3565 its elegantly colorful look and 3 +70032 3565 its elegantly colorful look 3 +70033 3565 elegantly colorful look 3 +70034 3565 colorful look 3 +70035 3566 Ramsay succeeds primarily with her typical blend of unsettling atmospherics , delivering a series of abrasive , stylized sequences that burn themselves upon the viewer 's memory . 3 +70036 3566 succeeds primarily with her typical blend of unsettling atmospherics , delivering a series of abrasive , stylized sequences that burn themselves upon the viewer 's memory . 3 +70037 3566 succeeds primarily with her typical blend of unsettling atmospherics , delivering a series of abrasive , stylized sequences that burn themselves upon the viewer 's memory 3 +70038 3566 succeeds primarily with her typical blend of unsettling atmospherics , 3 +70039 3566 succeeds primarily with her typical blend of unsettling atmospherics 4 +70040 3566 succeeds primarily 3 +70041 3566 with her typical blend of unsettling atmospherics 2 +70042 3566 her typical blend of unsettling atmospherics 2 +70043 3566 her typical blend 2 +70044 3566 typical blend 2 +70045 3566 of unsettling atmospherics 1 +70046 3566 unsettling atmospherics 2 +70047 3566 delivering a series of abrasive , stylized sequences that burn themselves upon the viewer 's memory 3 +70048 3566 a series of abrasive , stylized sequences that burn themselves upon the viewer 's memory 2 +70049 3566 a series of abrasive , stylized sequences 2 +70050 3566 of abrasive , stylized sequences 2 +70051 3566 abrasive , stylized sequences 2 +70052 3566 abrasive 1 +70053 3566 , stylized sequences 2 +70054 3566 stylized sequences 3 +70055 3566 that burn themselves upon the viewer 's memory 4 +70056 3566 burn themselves upon the viewer 's memory 2 +70057 3566 burn themselves 2 +70058 3566 upon the viewer 's memory 2 +70059 3566 the viewer 's memory 2 +70060 3567 Satisfyingly scarifying , fresh and old-fashioned at the same time . 3 +70061 3567 Satisfyingly scarifying , fresh and old-fashioned at the same time 3 +70062 3567 Satisfyingly scarifying , fresh and 3 +70063 3567 Satisfyingly scarifying , fresh 3 +70064 3567 Satisfyingly scarifying , 3 +70065 3567 Satisfyingly scarifying 3 +70066 3567 scarifying 2 +70067 3567 old-fashioned at the same time 2 +70068 3568 Stinks from start to finish , like a wet burlap sack of gloom . 1 +70069 3568 Stinks from start to finish , like a wet burlap sack of gloom 0 +70070 3568 Stinks from start 0 +70071 3568 to finish , like a wet burlap sack of gloom 1 +70072 3568 finish , like a wet burlap sack of gloom 1 +70073 3568 like a wet burlap sack of gloom 0 +70074 3568 a wet burlap sack of gloom 1 +70075 3568 a wet burlap sack 1 +70076 3568 wet burlap sack 1 +70077 3568 burlap sack 2 +70078 3568 burlap 2 +70079 3568 sack 2 +70080 3568 of gloom 2 +70081 3568 gloom 1 +70082 3569 At best , Cletis Tout might inspire a trip to the video store -- in search of a better movie experience . 1 +70083 3569 , Cletis Tout might inspire a trip to the video store -- in search of a better movie experience . 0 +70084 3569 Cletis Tout might inspire a trip to the video store -- in search of a better movie experience . 0 +70085 3569 might inspire a trip to the video store -- in search of a better movie experience . 1 +70086 3569 might inspire a trip to the video store -- in search of a better movie experience 0 +70087 3569 inspire a trip to the video store -- in search of a better movie experience 0 +70088 3569 inspire a trip to the video store -- 3 +70089 3569 inspire a trip to the video store 2 +70090 3569 inspire a trip 2 +70091 3569 a trip 3 +70092 3569 in search of a better movie experience 1 +70093 3569 search of a better movie experience 2 +70094 3569 of a better movie experience 2 +70095 3569 a better movie experience 4 +70096 3569 better movie experience 3 +70097 3570 An estrogen opera so intensely feminine that it serves as the antidote -LRB- and cannier doppelganger -RRB- to Diesel 's XXX flex-a-thon . 2 +70098 3570 An estrogen opera 2 +70099 3570 estrogen opera 2 +70100 3570 estrogen 2 +70101 3570 so intensely feminine that it serves as the antidote -LRB- and cannier doppelganger -RRB- to Diesel 's XXX flex-a-thon . 4 +70102 3570 feminine that it serves as the antidote -LRB- and cannier doppelganger -RRB- to Diesel 's XXX flex-a-thon . 2 +70103 3570 feminine that it serves as the antidote -LRB- and cannier doppelganger -RRB- to Diesel 's XXX flex-a-thon 2 +70104 3570 that it serves as the antidote -LRB- and cannier doppelganger -RRB- to Diesel 's XXX flex-a-thon 2 +70105 3570 it serves as the antidote -LRB- and cannier doppelganger -RRB- to Diesel 's XXX flex-a-thon 2 +70106 3570 serves as the antidote -LRB- and cannier doppelganger -RRB- to Diesel 's XXX flex-a-thon 3 +70107 3570 serves as the antidote -LRB- and cannier doppelganger -RRB- 2 +70108 3570 serves as the antidote 2 +70109 3570 as the antidote 2 +70110 3570 the antidote 3 +70111 3570 -LRB- and cannier doppelganger -RRB- 2 +70112 3570 -LRB- and cannier doppelganger 2 +70113 3570 cannier doppelganger 2 +70114 3570 cannier 2 +70115 3570 doppelganger 2 +70116 3570 to Diesel 's XXX flex-a-thon 3 +70117 3570 Diesel 's XXX flex-a-thon 1 +70118 3570 Diesel 's 2 +70119 3570 XXX flex-a-thon 3 +70120 3570 flex-a-thon 2 +70121 3571 I was feeling this movie until it veered off too far into the Exxon zone , and left me behind at the station looking for a return ticket to realism . 1 +70122 3571 was feeling this movie until it veered off too far into the Exxon zone , and left me behind at the station looking for a return ticket to realism . 1 +70123 3571 was feeling this movie until it veered off too far into the Exxon zone , and left me behind at the station looking for a return ticket to realism 1 +70124 3571 feeling this movie until it veered off too far into the Exxon zone , and left me behind at the station looking for a return ticket to realism 1 +70125 3571 feeling this movie 3 +70126 3571 until it veered off too far into the Exxon zone , and left me behind at the station looking for a return ticket to realism 1 +70127 3571 it veered off too far into the Exxon zone , and left me behind at the station looking for a return ticket to realism 1 +70128 3571 veered off too far into the Exxon zone , and left me behind at the station looking for a return ticket to realism 2 +70129 3571 veered off too far into the Exxon zone , and 0 +70130 3571 veered off too far into the Exxon zone , 1 +70131 3571 veered off too far into the Exxon zone 1 +70132 3571 veered off too far 1 +70133 3571 veered 2 +70134 3571 off too far 1 +70135 3571 too far 2 +70136 3571 into the Exxon zone 2 +70137 3571 the Exxon zone 2 +70138 3571 Exxon zone 2 +70139 3571 Exxon 2 +70140 3571 left me behind at the station looking for a return ticket to realism 1 +70141 3571 left me behind 1 +70142 3571 left me 1 +70143 3571 at the station looking for a return ticket to realism 1 +70144 3571 the station looking for a return ticket to realism 1 +70145 3571 the station 2 +70146 3571 looking for a return ticket to realism 1 +70147 3571 looking for a return ticket 0 +70148 3571 for a return ticket 2 +70149 3571 a return ticket 1 +70150 3571 return ticket 1 +70151 3571 to realism 2 +70152 3572 What we have here is n't a disaster , exactly , but a very handsomely produced let-down . 1 +70153 3572 is n't a disaster , exactly , but a very handsomely produced let-down . 1 +70154 3572 is n't a disaster , exactly , but a very handsomely produced let-down 1 +70155 3572 is n't a disaster , exactly , 2 +70156 3572 is n't a disaster , exactly 2 +70157 3572 is n't a disaster , 2 +70158 3572 is n't a disaster 2 +70159 3572 but a very handsomely produced let-down 1 +70160 3572 a very handsomely produced let-down 2 +70161 3572 very handsomely produced let-down 1 +70162 3572 very handsomely produced 3 +70163 3572 handsomely produced 3 +70164 3572 let-down 1 +70165 3573 A movie that seems motivated more by a desire to match mortarboards with Dead Poets Society and Good Will Hunting than by its own story . 2 +70166 3573 A movie that seems 2 +70167 3573 that seems 2 +70168 3573 motivated more by a desire to match mortarboards with Dead Poets Society and Good Will Hunting than by its own story . 1 +70169 3573 motivated more by a desire to match mortarboards with Dead Poets Society and Good Will Hunting than by its own story 1 +70170 3573 more by a desire to match mortarboards with Dead Poets Society and Good Will Hunting than by its own story 1 +70171 3573 by a desire to match mortarboards with Dead Poets Society and Good Will Hunting than by its own story 1 +70172 3573 a desire to match mortarboards with Dead Poets Society and Good Will Hunting than by its own story 2 +70173 3573 desire to match mortarboards with Dead Poets Society and Good Will Hunting than by its own story 1 +70174 3573 to match mortarboards with Dead Poets Society and Good Will Hunting than by its own story 2 +70175 3573 match mortarboards with Dead Poets Society and Good Will Hunting than by its own story 1 +70176 3573 match mortarboards with Dead Poets Society and Good Will Hunting 2 +70177 3573 match mortarboards 2 +70178 3573 mortarboards 2 +70179 3573 with Dead Poets Society and Good Will Hunting 2 +70180 3573 Dead Poets Society and Good Will Hunting 2 +70181 3573 Dead Poets Society and 2 +70182 3573 Dead Poets Society 2 +70183 3573 Poets Society 2 +70184 3573 Poets 2 +70185 3573 Good Will Hunting 2 +70186 3573 Will Hunting 2 +70187 3573 Hunting 2 +70188 3573 than by its own story 2 +70189 3573 by its own story 2 +70190 3574 It 's super - violent , super-serious and super-stupid . 0 +70191 3574 's super - violent , super-serious and super-stupid . 1 +70192 3574 's super - violent , super-serious and super-stupid 0 +70193 3574 super - violent , super-serious and super-stupid 0 +70194 3574 super - violent , super-serious and 2 +70195 3574 super - violent , super-serious 3 +70196 3574 super - violent , 1 +70197 3574 super - violent 2 +70198 3574 super - 4 +70199 3574 super-serious 2 +70200 3574 super-stupid 0 +70201 3575 -LRB- N -RRB- o matter how much good will the actors generate , Showtime eventually folds under its own thinness . 0 +70202 3575 -LRB- N -RRB- o matter how much good will the actors generate 2 +70203 3575 -LRB- N -RRB- 2 +70204 3575 N -RRB- 2 +70205 3575 N 2 +70206 3575 o matter how much good will the actors generate 3 +70207 3575 matter how much good will the actors generate 2 +70208 3575 how much good will the actors generate 2 +70209 3575 how much good 2 +70210 3575 will the actors generate 2 +70211 3575 will the actors 2 +70212 3575 , Showtime eventually folds under its own thinness . 1 +70213 3575 Showtime eventually folds under its own thinness . 0 +70214 3575 eventually folds under its own thinness . 2 +70215 3575 folds under its own thinness . 1 +70216 3575 folds under its own thinness 0 +70217 3575 folds 2 +70218 3575 under its own thinness 1 +70219 3575 its own thinness 1 +70220 3575 own thinness 2 +70221 3575 thinness 2 +70222 3576 I ca n't begin to tell you how tedious , how resolutely unamusing , how thoroughly unrewarding all of this is , and what a reckless squandering of four fine acting talents ... 0 +70223 3576 ca n't begin to tell you how tedious , how resolutely unamusing , how thoroughly unrewarding all of this is , and what a reckless squandering of four fine acting talents ... 0 +70224 3576 ca n't begin to tell you how tedious , how resolutely unamusing , how thoroughly unrewarding all of this is , and what a reckless squandering of four fine acting talents 0 +70225 3576 begin to tell you how tedious , how resolutely unamusing , how thoroughly unrewarding all of this is , and what a reckless squandering of four fine acting talents 0 +70226 3576 to tell you how tedious , how resolutely unamusing , how thoroughly unrewarding all of this is , and what a reckless squandering of four fine acting talents 1 +70227 3576 tell you how tedious , how resolutely unamusing , how thoroughly unrewarding all of this is , and what a reckless squandering of four fine acting talents 0 +70228 3576 tell you how tedious , 1 +70229 3576 tell you how tedious 1 +70230 3576 how tedious 1 +70231 3576 how resolutely unamusing , how thoroughly unrewarding all of this is , and what a reckless squandering of four fine acting talents 2 +70232 3576 how resolutely unamusing , how thoroughly unrewarding all of this is , and 0 +70233 3576 how resolutely unamusing , how thoroughly unrewarding all of this is , 1 +70234 3576 how resolutely unamusing , how thoroughly unrewarding all of this is 1 +70235 3576 resolutely unamusing , how thoroughly unrewarding all of this is 0 +70236 3576 resolutely unamusing , how thoroughly unrewarding all of this 1 +70237 3576 resolutely unamusing , 0 +70238 3576 resolutely unamusing 1 +70239 3576 unamusing 1 +70240 3576 how thoroughly unrewarding all of this 0 +70241 3576 thoroughly unrewarding all of this 0 +70242 3576 unrewarding all of this 1 +70243 3576 unrewarding 0 +70244 3576 all of this 2 +70245 3576 what a reckless squandering of four fine acting talents 1 +70246 3576 what a reckless squandering of four fine 1 +70247 3576 what a reckless squandering 1 +70248 3576 what a reckless 1 +70249 3576 what a 2 +70250 3576 reckless 2 +70251 3576 of four fine 3 +70252 3576 four fine 2 +70253 3576 acting talents 2 +70254 3577 But , for that , why not watch a documentary ? 2 +70255 3577 , for that , why not watch a documentary ? 2 +70256 3577 for that , why not watch a documentary ? 2 +70257 3577 , why not watch a documentary ? 2 +70258 3577 why not watch a documentary ? 2 +70259 3577 why not watch a documentary 2 +70260 3577 why not 2 +70261 3577 watch a documentary 2 +70262 3578 Leigh succeeds in delivering a dramatic slap in the face that 's simultaneously painful and refreshing . 3 +70263 3578 succeeds in delivering a dramatic slap in the face that 's simultaneously painful and refreshing . 4 +70264 3578 succeeds in delivering a dramatic slap in the face that 's simultaneously painful and refreshing 3 +70265 3578 in delivering a dramatic slap in the face that 's simultaneously painful and refreshing 4 +70266 3578 delivering a dramatic slap in the face that 's simultaneously painful and refreshing 2 +70267 3578 delivering a dramatic slap 3 +70268 3578 a dramatic slap 1 +70269 3578 dramatic slap 2 +70270 3578 in the face that 's simultaneously painful and refreshing 3 +70271 3578 the face that 's simultaneously painful and refreshing 2 +70272 3578 that 's simultaneously painful and refreshing 3 +70273 3578 's simultaneously painful and refreshing 3 +70274 3578 's simultaneously 2 +70275 3578 painful and refreshing 3 +70276 3578 painful and 1 +70277 3579 At just over an hour , Home Movie will leave you wanting more , not to mention leaving you with some laughs and a smile on your face . 4 +70278 3579 At just over an hour 2 +70279 3579 just over an hour 2 +70280 3579 , Home Movie will leave you wanting more , not to mention leaving you with some laughs and a smile on your face . 4 +70281 3579 Home Movie will leave you wanting more , not to mention leaving you with some laughs and a smile on your face . 4 +70282 3579 will leave you wanting more , not to mention leaving you with some laughs and a smile on your face . 4 +70283 3579 will leave you wanting more , not to mention leaving you with some laughs and a smile on your face 4 +70284 3579 leave you wanting more , not to mention leaving you with some laughs and a smile on your face 4 +70285 3579 leave you wanting more , 4 +70286 3579 leave you wanting more 3 +70287 3579 not to mention leaving you with some laughs and a smile on your face 3 +70288 3579 to mention leaving you with some laughs and a smile on your face 3 +70289 3579 mention leaving you with some laughs and a smile on your face 3 +70290 3579 leaving you with some laughs and a smile on your face 3 +70291 3579 leaving you with some laughs and a smile 3 +70292 3579 leaving you 1 +70293 3579 with some laughs and a smile 3 +70294 3579 some laughs and a smile 3 +70295 3579 some laughs and 3 +70296 3579 some laughs 3 +70297 3580 Eckstraordinarily lame and Severely boring . 2 +70298 3580 Eckstraordinarily lame and Severely 0 +70299 3580 Eckstraordinarily 3 +70300 3580 lame and Severely 1 +70301 3580 boring . 2 +70302 3581 Dramatically lackluster . 0 +70303 3581 Dramatically lackluster 1 +70304 3582 `` The Quiet American '' begins in Saigon in 1952 . 2 +70305 3582 The Quiet American '' begins in Saigon in 1952 . 2 +70306 3582 '' begins in Saigon in 1952 . 2 +70307 3582 begins in Saigon in 1952 . 2 +70308 3582 begins in Saigon in 1952 2 +70309 3582 in Saigon in 1952 2 +70310 3582 Saigon in 1952 2 +70311 3582 Saigon 2 +70312 3582 in 1952 2 +70313 3582 1952 2 +70314 3583 They cheapen the overall effect . 1 +70315 3583 cheapen the overall effect . 1 +70316 3583 cheapen the overall effect 1 +70317 3583 cheapen 1 +70318 3583 the overall effect 2 +70319 3583 overall effect 2 +70320 3584 You do n't need to be a hip-hop fan to appreciate Scratch , and that 's the mark of a documentary that works . 3 +70321 3584 You do n't need to be a hip-hop fan to appreciate Scratch , and that 's the mark of a documentary that works 4 +70322 3584 You do n't need to be a hip-hop fan to appreciate Scratch , and 2 +70323 3584 You do n't need to be a hip-hop fan to appreciate Scratch , 3 +70324 3584 You do n't need to be a hip-hop fan to appreciate Scratch 3 +70325 3584 do n't need to be a hip-hop fan to appreciate Scratch 3 +70326 3584 need to be a hip-hop fan to appreciate Scratch 2 +70327 3584 to be a hip-hop fan to appreciate Scratch 3 +70328 3584 be a hip-hop fan to appreciate Scratch 2 +70329 3584 a hip-hop fan to appreciate Scratch 3 +70330 3584 hip-hop fan to appreciate Scratch 3 +70331 3584 fan to appreciate Scratch 3 +70332 3584 to appreciate Scratch 2 +70333 3584 appreciate Scratch 2 +70334 3584 that 's the mark of a documentary that works 4 +70335 3584 's the mark of a documentary that works 3 +70336 3584 the mark of a documentary that works 3 +70337 3584 of a documentary that works 2 +70338 3584 a documentary that works 3 +70339 3584 that works 3 +70340 3585 Gets the look and the period trappings right 3 +70341 3585 the look and the period trappings right 3 +70342 3585 the look and 2 +70343 3585 the period trappings right 2 +70344 3585 period trappings right 2 +70345 3585 trappings right 2 +70346 3586 Functions as both a revealing look at the collaborative process and a timely , tongue-in-cheek profile of the corporate circus that is the recording industry in the current climate of mergers and downsizing . 3 +70347 3586 Functions as both a revealing look at the collaborative process and a timely , tongue-in-cheek profile of the corporate circus that is the recording industry in the current climate of mergers and downsizing 2 +70348 3586 as both a revealing look at the collaborative process and a timely , tongue-in-cheek profile of the corporate circus that is the recording industry in the current climate of mergers and downsizing 3 +70349 3586 both a revealing look at the collaborative process and a timely , tongue-in-cheek profile of the corporate circus that is the recording industry in the current climate of mergers and downsizing 3 +70350 3586 a revealing look at the collaborative process and a timely , tongue-in-cheek profile of the corporate circus that is the recording industry in the current climate of mergers and downsizing 4 +70351 3586 a revealing look at the collaborative process and 3 +70352 3586 a revealing look at the collaborative process 3 +70353 3586 a revealing look 3 +70354 3586 revealing look 2 +70355 3586 at the collaborative process 2 +70356 3586 the collaborative process 3 +70357 3586 collaborative process 2 +70358 3586 collaborative 2 +70359 3586 a timely , tongue-in-cheek profile of the corporate circus that is the recording industry in the current climate of mergers and downsizing 3 +70360 3586 a timely , tongue-in-cheek profile 3 +70361 3586 timely , tongue-in-cheek profile 2 +70362 3586 timely , tongue-in-cheek 3 +70363 3586 , tongue-in-cheek 2 +70364 3586 of the corporate circus that is the recording industry in the current climate of mergers and downsizing 2 +70365 3586 the corporate circus that is the recording industry in the current climate of mergers and downsizing 1 +70366 3586 the corporate circus 2 +70367 3586 corporate circus 1 +70368 3586 circus 2 +70369 3586 that is the recording industry in the current climate of mergers and downsizing 3 +70370 3586 is the recording industry in the current climate of mergers and downsizing 1 +70371 3586 the recording industry in the current climate of mergers and downsizing 2 +70372 3586 the recording industry 2 +70373 3586 recording industry 2 +70374 3586 in the current climate of mergers and downsizing 1 +70375 3586 the current climate of mergers and downsizing 2 +70376 3586 the current climate 2 +70377 3586 current climate 2 +70378 3586 of mergers and downsizing 2 +70379 3586 mergers and downsizing 1 +70380 3586 mergers and 2 +70381 3586 mergers 2 +70382 3586 downsizing 2 +70383 3587 A solid , psychological action film from Hong Kong . 3 +70384 3587 A solid , psychological action film from Hong Kong 3 +70385 3587 A solid , psychological action film 3 +70386 3587 solid , psychological action film 3 +70387 3587 , psychological action film 2 +70388 3587 psychological action film 2 +70389 3587 from Hong Kong 2 +70390 3587 Hong Kong 2 +70391 3588 See Clockstoppers if you have nothing better to do with 94 minutes . 1 +70392 3588 Clockstoppers if you have nothing better to do with 94 minutes . 1 +70393 3588 Clockstoppers if you have nothing better to do with 94 minutes 0 +70394 3588 if you have nothing better to do with 94 minutes 1 +70395 3588 you have nothing better to do with 94 minutes 0 +70396 3588 have nothing better to do with 94 minutes 1 +70397 3588 nothing better to do with 94 minutes 1 +70398 3588 better to do with 94 minutes 1 +70399 3588 to do with 94 minutes 3 +70400 3588 do with 94 minutes 2 +70401 3588 with 94 minutes 2 +70402 3588 94 minutes 2 +70403 3588 94 2 +70404 3589 A lot of fun , with an undeniable energy sparked by two actresses in their 50s working at the peak of their powers . 4 +70405 3589 A lot of fun , with an undeniable energy 4 +70406 3589 of fun , with an undeniable energy 3 +70407 3589 fun , with an undeniable energy 4 +70408 3589 fun , 3 +70409 3589 with an undeniable energy 4 +70410 3589 an undeniable energy 3 +70411 3589 undeniable energy 4 +70412 3589 sparked by two actresses in their 50s working at the peak of their powers . 3 +70413 3589 sparked by two actresses in their 50s working at the peak of their powers 3 +70414 3589 sparked by two actresses in their 50s working 2 +70415 3589 sparked 2 +70416 3589 by two actresses in their 50s working 2 +70417 3589 two actresses in their 50s working 2 +70418 3589 two actresses 2 +70419 3589 in their 50s working 2 +70420 3589 their 50s working 2 +70421 3589 50s working 2 +70422 3589 50s 2 +70423 3589 at the peak of their powers 3 +70424 3589 the peak of their powers 2 +70425 3589 the peak 2 +70426 3589 peak 3 +70427 3589 of their powers 2 +70428 3589 their powers 2 +70429 3590 A relentless , bombastic and ultimately empty World War II action flick . 1 +70430 3590 A relentless , bombastic and ultimately empty World War II action 0 +70431 3590 relentless , bombastic and ultimately empty World War II action 2 +70432 3590 , bombastic and ultimately empty World War II action 1 +70433 3590 bombastic and ultimately empty World War II action 1 +70434 3590 bombastic and ultimately empty 1 +70435 3590 bombastic and 2 +70436 3590 bombastic 2 +70437 3590 ultimately empty 1 +70438 3590 World War II action 2 +70439 3590 War II action 2 +70440 3591 A well-acted , but one-note film . 2 +70441 3591 A well-acted , but one-note film 2 +70442 3591 well-acted , but one-note film 2 +70443 3591 well-acted , but one-note 2 +70444 3591 well-acted , but 3 +70445 3591 well-acted , 3 +70446 3591 one-note 2 +70447 3592 An empty shell of an epic rather than the real deal . 1 +70448 3592 An empty shell of an epic rather than the real deal 2 +70449 3592 An empty shell 1 +70450 3592 empty shell 2 +70451 3592 of an epic rather than the real deal 2 +70452 3592 an epic rather than the real deal 2 +70453 3592 an epic rather than 3 +70454 3593 Works as pretty contagious fun . 4 +70455 3593 Works as pretty contagious fun 3 +70456 3593 as pretty contagious fun 3 +70457 3593 pretty contagious fun 3 +70458 3593 pretty contagious 2 +70459 3593 contagious 2 +70460 3594 Starts out with tremendous promise , introducing an intriguing and alluring premise , only to fall prey to a boatload of screenwriting cliches that sink it faster than a leaky freighter . 1 +70461 3594 Starts out with tremendous promise , introducing an intriguing and alluring premise , only to fall prey to a boatload of screenwriting cliches that sink it faster than a leaky freighter 0 +70462 3594 Starts out with tremendous promise , 3 +70463 3594 Starts out with tremendous promise 2 +70464 3594 Starts out 2 +70465 3594 with tremendous promise 3 +70466 3594 tremendous promise 4 +70467 3594 introducing an intriguing and alluring premise , only to fall prey to a boatload of screenwriting cliches that sink it faster than a leaky freighter 1 +70468 3594 introducing an intriguing and alluring premise , only 2 +70469 3594 introducing an intriguing and alluring premise , 4 +70470 3594 introducing an intriguing and alluring premise 4 +70471 3594 introducing 2 +70472 3594 an intriguing and alluring premise 4 +70473 3594 intriguing and alluring premise 3 +70474 3594 intriguing and alluring 4 +70475 3594 to fall prey to a boatload of screenwriting cliches that sink it faster than a leaky freighter 1 +70476 3594 fall prey to a boatload of screenwriting cliches that sink it faster than a leaky freighter 1 +70477 3594 fall prey 2 +70478 3594 to a boatload of screenwriting cliches that sink it faster than a leaky freighter 0 +70479 3594 a boatload of screenwriting cliches that sink it faster than a leaky freighter 1 +70480 3594 a boatload 2 +70481 3594 boatload 2 +70482 3594 of screenwriting cliches that sink it faster than a leaky freighter 1 +70483 3594 screenwriting cliches that sink it faster than a leaky freighter 0 +70484 3594 cliches that sink it faster than a leaky freighter 0 +70485 3594 that sink it faster than a leaky freighter 1 +70486 3594 sink it faster than a leaky freighter 1 +70487 3594 sink it faster 2 +70488 3594 sink it 1 +70489 3594 than a leaky freighter 1 +70490 3594 a leaky freighter 2 +70491 3594 leaky freighter 2 +70492 3594 freighter 2 +70493 3595 Watching this film , one is left with the inescapable conclusion that Hitchens ' obsession with Kissinger is , at bottom , a sophisticated flower child 's desire to purge the world of the tooth and claw of human power . 3 +70494 3595 Watching this film 2 +70495 3595 , one is left with the inescapable conclusion that Hitchens ' obsession with Kissinger is , at bottom , a sophisticated flower child 's desire to purge the world of the tooth and claw of human power . 2 +70496 3595 one is left with the inescapable conclusion that Hitchens ' obsession with Kissinger is , at bottom , a sophisticated flower child 's desire to purge the world of the tooth and claw of human power . 2 +70497 3595 is left with the inescapable conclusion that Hitchens ' obsession with Kissinger is , at bottom , a sophisticated flower child 's desire to purge the world of the tooth and claw of human power . 2 +70498 3595 is left with the inescapable conclusion that Hitchens ' obsession with Kissinger is , at bottom , a sophisticated flower child 's desire to purge the world of the tooth and claw of human power 3 +70499 3595 left with the inescapable conclusion that Hitchens ' obsession with Kissinger is , at bottom , a sophisticated flower child 's desire to purge the world of the tooth and claw of human power 2 +70500 3595 left with the inescapable conclusion 2 +70501 3595 with the inescapable conclusion 3 +70502 3595 the inescapable conclusion 2 +70503 3595 inescapable conclusion 2 +70504 3595 inescapable 2 +70505 3595 that Hitchens ' obsession with Kissinger is , at bottom , a sophisticated flower child 's desire to purge the world of the tooth and claw of human power 3 +70506 3595 Hitchens ' obsession with Kissinger is , at bottom , a sophisticated flower child 's desire to purge the world of the tooth and claw of human power 3 +70507 3595 Hitchens ' obsession with Kissinger 2 +70508 3595 Hitchens ' obsession 2 +70509 3595 Hitchens ' 2 +70510 3595 Hitchens 2 +70511 3595 with Kissinger 2 +70512 3595 Kissinger 2 +70513 3595 is , at bottom , a sophisticated flower child 's desire to purge the world of the tooth and claw of human power 3 +70514 3595 is , at bottom , 2 +70515 3595 is , at bottom 2 +70516 3595 at bottom 2 +70517 3595 a sophisticated flower child 's desire to purge the world of the tooth and claw of human power 2 +70518 3595 a sophisticated flower child 's 3 +70519 3595 sophisticated flower child 's 2 +70520 3595 flower child 's 2 +70521 3595 flower 2 +70522 3595 desire to purge the world of the tooth and claw of human power 2 +70523 3595 to purge the world of the tooth and claw of human power 2 +70524 3595 purge the world of the tooth and claw of human power 2 +70525 3595 purge 2 +70526 3595 the world of the tooth and claw of human power 2 +70527 3595 of the tooth and claw of human power 3 +70528 3595 the tooth and claw of human power 3 +70529 3595 the tooth and claw 2 +70530 3595 tooth and claw 2 +70531 3595 tooth and 2 +70532 3595 tooth 2 +70533 3595 claw 2 +70534 3595 of human power 2 +70535 3595 human power 3 +70536 3596 Juliette Binoche 's Sand is vivacious , but it 's hard to sense that powerhouse of 19th-century prose behind her childlike smile . 3 +70537 3596 Juliette Binoche 's Sand is vivacious , but it 's hard to sense that powerhouse of 19th-century prose behind her childlike smile 2 +70538 3596 Juliette Binoche 's Sand is vivacious , but 3 +70539 3596 Juliette Binoche 's Sand is vivacious , 4 +70540 3596 Juliette Binoche 's Sand is vivacious 3 +70541 3596 Juliette Binoche 's Sand 2 +70542 3596 Juliette Binoche 's 2 +70543 3596 Binoche 's 2 +70544 3596 Binoche 2 +70545 3596 is vivacious 3 +70546 3596 vivacious 3 +70547 3596 it 's hard to sense that powerhouse of 19th-century prose behind her childlike smile 2 +70548 3596 's hard to sense that powerhouse of 19th-century prose behind her childlike smile 2 +70549 3596 hard to sense that powerhouse of 19th-century prose behind her childlike smile 2 +70550 3596 to sense that powerhouse of 19th-century prose behind her childlike smile 2 +70551 3596 sense that powerhouse of 19th-century prose behind her childlike smile 3 +70552 3596 sense that powerhouse of 19th-century prose 2 +70553 3596 that powerhouse of 19th-century prose 3 +70554 3596 that powerhouse 3 +70555 3596 powerhouse 3 +70556 3596 of 19th-century prose 2 +70557 3596 19th-century prose 2 +70558 3596 behind her childlike smile 2 +70559 3596 her childlike smile 3 +70560 3596 childlike smile 3 +70561 3597 While Howard 's appreciation of Brown and his writing is clearly well-meaning and sincere , the movie would be impossible to sit through were it not for the supporting cast . 2 +70562 3597 While Howard 's appreciation of Brown and his writing is clearly well-meaning and sincere , the movie would be impossible to sit through 0 +70563 3597 While Howard 's appreciation of Brown and his writing is clearly well-meaning and sincere 2 +70564 3597 Howard 's appreciation of Brown and his writing is clearly well-meaning and sincere 4 +70565 3597 Howard 's appreciation of Brown and his writing 3 +70566 3597 Howard 's appreciation 2 +70567 3597 of Brown and his writing 2 +70568 3597 Brown and his writing 2 +70569 3597 Brown and 2 +70570 3597 his writing 2 +70571 3597 is clearly well-meaning and sincere 3 +70572 3597 well-meaning and sincere 4 +70573 3597 well-meaning and 3 +70574 3597 , the movie would be impossible to sit through 0 +70575 3597 the movie would be impossible to sit through 1 +70576 3597 would be impossible to sit through 1 +70577 3597 be impossible to sit through 0 +70578 3597 impossible to sit through 0 +70579 3597 were it not for the supporting cast . 2 +70580 3597 were it not for the supporting cast 2 +70581 3597 not for the supporting cast 2 +70582 3597 for the supporting cast 2 +70583 3597 the supporting cast 2 +70584 3598 Knows how to make our imagination wonder . 4 +70585 3598 Knows how to make our imagination 3 +70586 3598 how to make our imagination 2 +70587 3598 to make our imagination 2 +70588 3598 make our imagination 2 +70589 3598 our imagination 3 +70590 3598 wonder . 3 +70591 3599 The colorful Masseur wastes its time on mood rather than riding with the inherent absurdity of Ganesh 's rise up the social ladder . 1 +70592 3599 The colorful Masseur 2 +70593 3599 colorful Masseur 2 +70594 3599 Masseur 2 +70595 3599 wastes its time on mood rather than riding with the inherent absurdity of Ganesh 's rise up the social ladder . 1 +70596 3599 wastes its time on mood rather than riding with the inherent absurdity of Ganesh 's rise up the social ladder 1 +70597 3599 wastes its time on mood rather than 0 +70598 3599 wastes its time on mood 1 +70599 3599 wastes its time 0 +70600 3599 its time 2 +70601 3599 on mood 2 +70602 3599 riding with the inherent absurdity of Ganesh 's rise up the social ladder 1 +70603 3599 riding with the inherent absurdity of Ganesh 's rise 2 +70604 3599 riding 2 +70605 3599 with the inherent absurdity of Ganesh 's rise 1 +70606 3599 the inherent absurdity of Ganesh 's rise 1 +70607 3599 the inherent absurdity 1 +70608 3599 inherent absurdity 1 +70609 3599 of Ganesh 's rise 2 +70610 3599 Ganesh 's rise 2 +70611 3599 Ganesh 's 2 +70612 3599 Ganesh 2 +70613 3599 up the social ladder 2 +70614 3600 A thunderous ride at first , quiet cadences of pure finesse are few and far between ; their shortage dilutes the potency of otherwise respectable action . 2 +70615 3600 A thunderous ride at first , quiet cadences of pure finesse are few and far between ; their shortage dilutes the potency of otherwise respectable action 2 +70616 3600 A thunderous ride at first , quiet cadences of pure finesse are few and far between ; 3 +70617 3600 A thunderous ride at first , quiet cadences of pure finesse are few and far between 2 +70618 3600 A thunderous ride at first , quiet cadences of pure finesse 3 +70619 3600 A thunderous ride 3 +70620 3600 thunderous ride 3 +70621 3600 thunderous 3 +70622 3600 at first , quiet cadences of pure finesse 3 +70623 3600 first , quiet cadences of pure finesse 3 +70624 3600 first , quiet cadences 3 +70625 3600 , quiet cadences 2 +70626 3600 quiet cadences 2 +70627 3600 cadences 2 +70628 3600 of pure finesse 3 +70629 3600 pure finesse 4 +70630 3600 their shortage dilutes the potency of otherwise respectable action 1 +70631 3600 their shortage 2 +70632 3600 shortage 1 +70633 3600 dilutes the potency of otherwise respectable action 3 +70634 3600 dilutes 2 +70635 3600 the potency of otherwise respectable action 2 +70636 3600 of otherwise respectable action 2 +70637 3600 otherwise respectable action 3 +70638 3600 otherwise respectable 3 +70639 3601 -LRB- Westbrook -RRB- makes a wonderful subject for the camera . 4 +70640 3601 -LRB- Westbrook -RRB- 2 +70641 3601 Westbrook -RRB- 2 +70642 3601 makes a wonderful subject for the camera . 3 +70643 3601 makes a wonderful subject for the camera 4 +70644 3601 a wonderful subject for the camera 3 +70645 3601 a wonderful subject 3 +70646 3601 wonderful subject 4 +70647 3602 The overall effect is awe and affection -- and a strange urge to get on a board and , uh , shred , dude . 4 +70648 3602 is awe and affection -- and a strange urge to get on a board and , uh , shred , dude . 4 +70649 3602 is awe and affection -- and a strange urge to get on a board and , uh , shred , dude 2 +70650 3602 awe and affection -- and a strange urge to get on a board and , uh , shred , dude 3 +70651 3602 awe and affection -- and 4 +70652 3602 awe and affection -- 3 +70653 3602 awe and affection 3 +70654 3602 awe and 2 +70655 3602 awe 2 +70656 3602 a strange urge to get on a board and , uh , shred , dude 3 +70657 3602 strange urge to get on a board and , uh , shred , dude 2 +70658 3602 urge to get on a board and , uh , shred , dude 2 +70659 3602 to get on a board and , uh , shred , dude 3 +70660 3602 get on a board and , uh , shred , dude 2 +70661 3602 get on a board and , uh , shred , 1 +70662 3602 get on a board and 2 +70663 3602 get on a board 2 +70664 3602 on a board 3 +70665 3602 a board 2 +70666 3602 board 2 +70667 3602 , uh , shred , 2 +70668 3602 uh , shred , 1 +70669 3602 uh , shred 2 +70670 3602 uh , 2 +70671 3602 uh 2 +70672 3602 shred 2 +70673 3603 Stevens has a flair for dialogue comedy , the film operates nicely off the element of surprise , and the large cast is solid . 4 +70674 3603 Stevens has a flair for dialogue comedy , the film operates nicely off the element of surprise , and the large cast is solid 4 +70675 3603 Stevens has a flair for dialogue comedy , the film operates nicely off the element of surprise , and 3 +70676 3603 Stevens has a flair for dialogue comedy , the film operates nicely off the element of surprise , 3 +70677 3603 Stevens has a flair for dialogue comedy 3 +70678 3603 has a flair for dialogue comedy 3 +70679 3603 a flair for dialogue comedy 3 +70680 3603 a flair 2 +70681 3603 for dialogue comedy 2 +70682 3603 dialogue comedy 2 +70683 3603 , the film operates nicely off the element of surprise , 3 +70684 3603 the film operates nicely off the element of surprise , 3 +70685 3603 the film operates nicely off the element of surprise 4 +70686 3603 operates nicely off the element of surprise 2 +70687 3603 operates nicely 3 +70688 3603 operates 2 +70689 3603 off the element of surprise 3 +70690 3603 the element of surprise 2 +70691 3603 the element 2 +70692 3603 of surprise 2 +70693 3603 the large cast is solid 4 +70694 3603 the large cast 2 +70695 3603 is solid 3 +70696 3604 You come away wishing , though , that the movie spent a lot less time trying to make a credible case for reports from the afterlife and a lot more time on the romantic urgency that 's at the center of the story . 2 +70697 3604 come away wishing , though , that the movie spent a lot less time trying to make a credible case for reports from the afterlife and a lot more time on the romantic urgency that 's at the center of the story . 2 +70698 3604 come away wishing , though , that the movie spent a lot less time trying to make a credible case for reports from the afterlife and a lot more time on the romantic urgency that 's at the center of the story 1 +70699 3604 wishing , though , that the movie spent a lot less time trying to make a credible case for reports from the afterlife and a lot more time on the romantic urgency that 's at the center of the story 1 +70700 3604 wishing , though , 3 +70701 3604 wishing , though 2 +70702 3604 wishing , 2 +70703 3604 that the movie spent a lot less time trying to make a credible case for reports from the afterlife and a lot more time on the romantic urgency that 's at the center of the story 1 +70704 3604 the movie spent a lot less time trying to make a credible case for reports from the afterlife and a lot more time on the romantic urgency that 's at the center of the story 1 +70705 3604 spent a lot less time trying to make a credible case for reports from the afterlife and a lot more time on the romantic urgency that 's at the center of the story 2 +70706 3604 a lot less time trying to make a credible case for reports from the afterlife and a lot more time on the romantic urgency that 's at the center of the story 2 +70707 3604 a lot less time 2 +70708 3604 lot less time 3 +70709 3604 lot less 2 +70710 3604 trying to make a credible case for reports from the afterlife and a lot more time on the romantic urgency that 's at the center of the story 2 +70711 3604 to make a credible case for reports from the afterlife and a lot more time on the romantic urgency that 's at the center of the story 2 +70712 3604 make a credible case for reports from the afterlife and a lot more time on the romantic urgency that 's at the center of the story 3 +70713 3604 make a credible case for reports 2 +70714 3604 a credible case for reports 3 +70715 3604 a credible case 3 +70716 3604 credible case 3 +70717 3604 for reports 2 +70718 3604 reports 2 +70719 3604 from the afterlife and a lot more time on the romantic urgency that 's at the center of the story 2 +70720 3604 the afterlife and a lot more time on the romantic urgency that 's at the center of the story 2 +70721 3604 the afterlife and a lot more time 2 +70722 3604 afterlife and a lot more time 2 +70723 3604 afterlife and a lot more 2 +70724 3604 afterlife and 1 +70725 3604 a lot more 3 +70726 3604 on the romantic urgency that 's at the center of the story 2 +70727 3604 the romantic urgency that 's at the center of the story 2 +70728 3604 the romantic urgency 2 +70729 3604 romantic urgency 3 +70730 3604 that 's at the center of the story 2 +70731 3604 's at the center of the story 2 +70732 3604 at the center of the story 2 +70733 3604 the center of the story 2 +70734 3604 the center 2 +70735 3605 Birthday Girl walks a tricky tightrope between being wickedly funny and just plain wicked . 4 +70736 3605 walks a tricky tightrope between being wickedly funny and just plain wicked . 3 +70737 3605 walks a tricky tightrope between being wickedly funny and just plain wicked 1 +70738 3605 walks 2 +70739 3605 a tricky tightrope between being wickedly funny and just plain wicked 3 +70740 3605 a tricky tightrope 2 +70741 3605 tricky tightrope 2 +70742 3605 between being wickedly funny and just plain wicked 3 +70743 3605 being wickedly funny and just plain wicked 3 +70744 3605 wickedly funny and just plain wicked 3 +70745 3605 wickedly funny and 3 +70746 3605 wickedly funny 4 +70747 3605 just plain wicked 2 +70748 3605 plain wicked 2 +70749 3606 and `` They 're coming ! '' 2 +70750 3606 `` They 're coming ! '' 2 +70751 3606 They 're coming ! '' 2 +70752 3606 're coming ! '' 2 +70753 3606 're coming ! 2 +70754 3606 're coming 2 +70755 3607 As steamy as last week 's pork dumplings . 0 +70756 3607 As steamy as 2 +70757 3607 steamy as 2 +70758 3607 last week 's pork dumplings . 2 +70759 3607 last week 's pork 2 +70760 3607 last week 's 2 +70761 3607 week 's 2 +70762 3607 pork 2 +70763 3607 dumplings . 2 +70764 3607 dumplings 3 +70765 3608 Scherfig , who has had a successful career in TV , tackles more than she can handle . 1 +70766 3608 Scherfig , who has had a successful career in TV , 2 +70767 3608 Scherfig , who has had a successful career in TV 3 +70768 3608 Scherfig , 2 +70769 3608 who has had a successful career in TV 2 +70770 3608 has had a successful career in TV 3 +70771 3608 had a successful career in TV 2 +70772 3608 a successful career in TV 3 +70773 3608 a successful career 3 +70774 3608 successful career 2 +70775 3608 in TV 2 +70776 3608 tackles more than she can handle . 1 +70777 3608 tackles more than she can handle 1 +70778 3608 more than she can handle 1 +70779 3608 than she can handle 2 +70780 3608 she can handle 2 +70781 3608 can handle 3 +70782 3609 Silly stuff , all mixed up together like a term paper from a kid who ca n't quite distinguish one sci-fi work from another . 1 +70783 3609 Silly stuff , all mixed up together like a term paper from a kid who ca n't quite distinguish one sci-fi work from another 1 +70784 3609 Silly stuff , 2 +70785 3609 Silly stuff 1 +70786 3609 all mixed up together like a term paper from a kid who ca n't quite distinguish one sci-fi work from another 1 +70787 3609 mixed up together like a term paper from a kid who ca n't quite distinguish one sci-fi work from another 1 +70788 3609 mixed up together like a term paper 1 +70789 3609 mixed up together 2 +70790 3609 mixed up 1 +70791 3609 like a term paper 1 +70792 3609 a term paper 1 +70793 3609 term paper 2 +70794 3609 from a kid who ca n't quite distinguish one sci-fi work from another 2 +70795 3609 a kid who ca n't quite distinguish one sci-fi work from another 1 +70796 3609 a kid 2 +70797 3609 who ca n't quite distinguish one sci-fi work from another 1 +70798 3609 ca n't quite distinguish one sci-fi work from another 1 +70799 3609 distinguish one sci-fi work from another 3 +70800 3609 distinguish one sci-fi work 3 +70801 3609 distinguish 2 +70802 3609 one sci-fi work 2 +70803 3609 sci-fi work 2 +70804 3609 from another 2 +70805 3610 Maggie Smith as the Ya-Ya member with the O2-tank will absolutely crack you up with her crass , then gasp for gas , verbal deportment . 4 +70806 3610 Maggie Smith as the Ya-Ya member with the O2-tank 2 +70807 3610 Maggie Smith 2 +70808 3610 Maggie 2 +70809 3610 as the Ya-Ya member with the O2-tank 2 +70810 3610 the Ya-Ya member with the O2-tank 2 +70811 3610 the Ya-Ya member 2 +70812 3610 Ya-Ya member 2 +70813 3610 with the O2-tank 2 +70814 3610 the O2-tank 2 +70815 3610 O2-tank 2 +70816 3610 will absolutely crack you up with her crass , then gasp for gas , verbal deportment . 3 +70817 3610 will absolutely crack you up with her crass , then gasp for gas , verbal deportment 4 +70818 3610 will absolutely 2 +70819 3610 crack you up with her crass , then gasp for gas , verbal deportment 3 +70820 3610 crack you up 3 +70821 3610 crack you 2 +70822 3610 crack 2 +70823 3610 with her crass , then gasp for gas , verbal deportment 2 +70824 3610 her crass , then gasp for gas , verbal deportment 2 +70825 3610 crass , then gasp for gas , verbal deportment 1 +70826 3610 crass , then gasp for gas , 1 +70827 3610 , then gasp for gas , 2 +70828 3610 then gasp for gas , 2 +70829 3610 gasp for gas , 2 +70830 3610 gasp for gas 2 +70831 3610 gasp 3 +70832 3610 for gas 2 +70833 3610 gas 2 +70834 3610 verbal deportment 2 +70835 3610 deportment 2 +70836 3611 A searing , epic treatment of a nationwide blight that seems to be , horrifyingly , ever on the rise . 3 +70837 3611 A searing , epic treatment of a nationwide blight that seems to be , 3 +70838 3611 A searing , epic treatment of a nationwide blight that seems to be 3 +70839 3611 A searing , 2 +70840 3611 A searing 2 +70841 3611 epic treatment of a nationwide blight that seems to be 3 +70842 3611 epic treatment of a nationwide blight 3 +70843 3611 of a nationwide blight 2 +70844 3611 a nationwide blight 1 +70845 3611 nationwide blight 1 +70846 3611 blight 2 +70847 3611 that seems to be 2 +70848 3611 seems to be 2 +70849 3611 horrifyingly , ever on the rise . 2 +70850 3611 horrifyingly , ever on the rise 2 +70851 3611 horrifyingly , ever 1 +70852 3611 horrifyingly , 1 +70853 3611 horrifyingly 1 +70854 3611 on the rise 2 +70855 3612 The cast has a high time , but de Broca has little enthusiasm for such antique pulp . 2 +70856 3612 The cast has a high time , but de Broca has little enthusiasm for such antique pulp 2 +70857 3612 The cast has a high time , but 2 +70858 3612 The cast has a high time , 3 +70859 3612 The cast has a high time 3 +70860 3612 has a high time 2 +70861 3612 a high time 3 +70862 3612 high time 3 +70863 3612 de Broca has little enthusiasm for such antique pulp 1 +70864 3612 de Broca 2 +70865 3612 Broca 2 +70866 3612 has little enthusiasm for such antique pulp 1 +70867 3612 little enthusiasm for such antique pulp 1 +70868 3612 little enthusiasm 1 +70869 3612 for such antique pulp 2 +70870 3612 such antique pulp 2 +70871 3612 antique pulp 2 +70872 3612 antique 2 +70873 3613 Some elements of it really blow the big one , but other parts are decent . 2 +70874 3613 Some elements of it really blow the big one , but other parts are decent 2 +70875 3613 Some elements of it really blow the big one , but 1 +70876 3613 Some elements of it really blow the big one , 1 +70877 3613 Some elements of it really blow the big one 1 +70878 3613 Some elements of it 2 +70879 3613 Some elements 2 +70880 3613 really blow the big one 1 +70881 3613 blow the big one 1 +70882 3613 the big one 2 +70883 3613 big one 2 +70884 3613 other parts are decent 2 +70885 3613 other parts 2 +70886 3613 are decent 3 +70887 3614 Not completely loveable -- but what underdog movie since The Bad News Bears has been ? 1 +70888 3614 Not completely loveable 2 +70889 3614 completely loveable 4 +70890 3614 loveable 3 +70891 3614 -- but what underdog movie since The Bad News Bears has been ? 2 +70892 3614 but what underdog movie since The Bad News Bears has been ? 2 +70893 3614 but what underdog movie since The Bad News Bears has been 2 +70894 3614 what underdog movie since The Bad News Bears has been 2 +70895 3614 what underdog movie since The Bad News Bears 2 +70896 3614 underdog movie since The Bad News Bears 3 +70897 3614 underdog movie 2 +70898 3614 underdog 2 +70899 3614 since The Bad News Bears 2 +70900 3614 The Bad News Bears 2 +70901 3614 Bad News Bears 2 +70902 3614 News Bears 2 +70903 3614 has been 3 +70904 3615 Unexpected moments of authentically impulsive humor are the hallmark of this bittersweet , uncommonly sincere movie that portrays the frank humanity of ... emotional recovery . 4 +70905 3615 Unexpected moments of authentically impulsive humor 3 +70906 3615 Unexpected moments 2 +70907 3615 of authentically impulsive humor 3 +70908 3615 authentically impulsive humor 3 +70909 3615 authentically impulsive 2 +70910 3615 are the hallmark of this bittersweet , uncommonly sincere movie that portrays the frank humanity of ... emotional recovery . 3 +70911 3615 are the hallmark of this bittersweet , uncommonly sincere movie that portrays the frank humanity of ... emotional recovery 3 +70912 3615 the hallmark of this bittersweet , uncommonly sincere movie that portrays the frank humanity of ... emotional recovery 3 +70913 3615 the hallmark 2 +70914 3615 of this bittersweet , uncommonly sincere movie that portrays the frank humanity of ... emotional recovery 3 +70915 3615 this bittersweet , uncommonly sincere movie that portrays the frank humanity of ... emotional recovery 3 +70916 3615 bittersweet , uncommonly sincere movie that portrays the frank humanity of ... emotional recovery 3 +70917 3615 , uncommonly sincere movie that portrays the frank humanity of ... emotional recovery 4 +70918 3615 uncommonly sincere movie that portrays the frank humanity of ... emotional recovery 3 +70919 3615 uncommonly sincere 3 +70920 3615 movie that portrays the frank humanity of ... emotional recovery 3 +70921 3615 that portrays the frank humanity of ... emotional recovery 3 +70922 3615 portrays the frank humanity of ... emotional recovery 3 +70923 3615 the frank humanity of ... emotional recovery 2 +70924 3615 the frank humanity of ... 2 +70925 3615 the frank humanity of 2 +70926 3615 the frank humanity 2 +70927 3615 frank humanity 2 +70928 3615 emotional recovery 2 +70929 3616 The exploitative , clumsily staged violence overshadows everything , including most of the actors . 3 +70930 3616 The exploitative 1 +70931 3616 , clumsily staged violence overshadows everything , including most of the actors . 1 +70932 3616 clumsily staged violence overshadows everything , including most of the actors . 0 +70933 3616 staged violence overshadows everything , including most of the actors . 1 +70934 3616 staged violence overshadows everything , including most of the actors 0 +70935 3616 staged violence overshadows everything , 1 +70936 3616 staged violence overshadows everything 1 +70937 3616 violence overshadows everything 1 +70938 3616 overshadows everything 2 +70939 3616 overshadows 2 +70940 3616 including most of the actors 2 +70941 3616 most of the actors 2 +70942 3617 The biggest problem with Satin Rouge is Lilia herself . 1 +70943 3617 The biggest problem with Satin Rouge 2 +70944 3617 The biggest problem 1 +70945 3617 biggest problem 2 +70946 3617 with Satin Rouge 2 +70947 3617 is Lilia herself . 2 +70948 3617 is Lilia herself 2 +70949 3617 Lilia herself 2 +70950 3617 Lilia 2 +70951 3618 ` Stock up on silver bullets for director Neil Marshall 's intense freight train of a film . ' 3 +70952 3618 Stock up on silver bullets for director Neil Marshall 's intense freight train of a film . ' 3 +70953 3618 up on silver bullets for director Neil Marshall 's intense freight train of a film . ' 2 +70954 3618 up on silver bullets for director Neil Marshall 's intense freight train of a film . 2 +70955 3618 up on silver bullets for director Neil Marshall 's intense freight train of a film 2 +70956 3618 up on silver bullets for director Neil Marshall 's intense freight 2 +70957 3618 on silver bullets for director Neil Marshall 's intense freight 2 +70958 3618 silver bullets for director Neil Marshall 's intense freight 3 +70959 3618 silver bullets 2 +70960 3618 bullets 2 +70961 3618 for director Neil Marshall 's intense freight 2 +70962 3618 director Neil Marshall 's intense freight 2 +70963 3618 director Neil Marshall 's 2 +70964 3618 Neil Marshall 's 2 +70965 3618 Neil 2 +70966 3618 Marshall 's 2 +70967 3618 intense freight 2 +70968 3618 freight 2 +70969 3618 train of a film 2 +70970 3619 Aniston has at last decisively broken with her Friends image in an independent film of satiric fire and emotional turmoil . 3 +70971 3619 Aniston 2 +70972 3619 has at last decisively broken with her Friends image in an independent film of satiric fire and emotional turmoil . 3 +70973 3619 has at last decisively broken with her Friends image in an independent film of satiric fire and emotional turmoil 3 +70974 3619 has at last 2 +70975 3619 at last 3 +70976 3619 decisively broken with her Friends image in an independent film of satiric fire and emotional turmoil 2 +70977 3619 decisively 2 +70978 3619 broken with her Friends image in an independent film of satiric fire and emotional turmoil 3 +70979 3619 broken with her Friends image 2 +70980 3619 with her Friends image 2 +70981 3619 her Friends image 2 +70982 3619 Friends image 2 +70983 3619 Friends 2 +70984 3619 in an independent film of satiric fire and emotional turmoil 3 +70985 3619 an independent film of satiric fire and emotional turmoil 2 +70986 3619 an independent film 2 +70987 3619 independent film 3 +70988 3619 of satiric fire and emotional turmoil 2 +70989 3619 satiric fire and emotional turmoil 2 +70990 3619 satiric fire and 2 +70991 3619 satiric fire 2 +70992 3619 emotional turmoil 2 +70993 3620 The ensemble cast turns in a collectively stellar performance , and the writing is tight and truthful , full of funny situations and honest observations . 4 +70994 3620 The ensemble cast turns in a collectively stellar performance , and the writing is tight and truthful , full of funny situations and honest observations 3 +70995 3620 The ensemble cast turns in a collectively stellar performance , and 4 +70996 3620 The ensemble cast turns in a collectively stellar performance , 4 +70997 3620 The ensemble cast turns in a collectively stellar performance 3 +70998 3620 turns in a collectively stellar performance 4 +70999 3620 in a collectively stellar performance 4 +71000 3620 a collectively stellar performance 4 +71001 3620 collectively stellar performance 3 +71002 3620 collectively 2 +71003 3620 stellar performance 4 +71004 3620 stellar 3 +71005 3620 the writing is tight and truthful , full of funny situations and honest observations 4 +71006 3620 is tight and truthful , full of funny situations and honest observations 3 +71007 3620 tight and truthful , full of funny situations and honest observations 4 +71008 3620 tight and truthful , 3 +71009 3620 tight and truthful 3 +71010 3620 tight and 2 +71011 3620 full of funny situations and honest observations 4 +71012 3620 of funny situations and honest observations 3 +71013 3620 funny situations and honest observations 4 +71014 3620 funny situations and 3 +71015 3620 funny situations 3 +71016 3620 honest observations 3 +71017 3621 It 's not an easy one to review . 1 +71018 3621 's not an easy one to review . 2 +71019 3621 's not an easy one to review 2 +71020 3621 an easy one to review 2 +71021 3621 easy one to review 2 +71022 3621 one to review 2 +71023 3621 to review 2 +71024 3622 Her performance moves between heartbreak and rebellion as she continually tries to accommodate to fit in and gain the unconditional love she seeks . 3 +71025 3622 moves between heartbreak and rebellion as she continually tries to accommodate to fit in and gain the unconditional love she seeks . 2 +71026 3622 moves between heartbreak and rebellion as she continually tries to accommodate to fit in and gain the unconditional love she seeks 2 +71027 3622 moves between heartbreak and rebellion 3 +71028 3622 between heartbreak and rebellion 2 +71029 3622 heartbreak and rebellion 2 +71030 3622 heartbreak and 2 +71031 3622 as she continually tries to accommodate to fit in and gain the unconditional love she seeks 3 +71032 3622 she continually tries to accommodate to fit in and gain the unconditional love she seeks 2 +71033 3622 continually tries to accommodate to fit in and gain the unconditional love she seeks 2 +71034 3622 tries to accommodate to fit in and gain the unconditional love she seeks 2 +71035 3622 to accommodate to fit in and gain the unconditional love she seeks 3 +71036 3622 accommodate to fit in and gain the unconditional love she seeks 2 +71037 3622 accommodate 2 +71038 3622 to fit in and gain the unconditional love she seeks 2 +71039 3622 fit in and gain the unconditional love she seeks 2 +71040 3622 fit in and 2 +71041 3622 fit in 2 +71042 3622 gain the unconditional love she seeks 1 +71043 3622 gain 2 +71044 3622 the unconditional love she seeks 3 +71045 3622 the unconditional love 2 +71046 3622 unconditional love 2 +71047 3622 she seeks 2 +71048 3623 An entertaining documentary that freshly considers arguments the Bard 's immortal plays were written by somebody else . 3 +71049 3623 An entertaining documentary that freshly considers arguments the Bard 's immortal plays 3 +71050 3623 An entertaining documentary 4 +71051 3623 entertaining documentary 3 +71052 3623 that freshly considers arguments the Bard 's immortal plays 3 +71053 3623 freshly considers arguments the Bard 's immortal plays 2 +71054 3623 considers arguments the Bard 's immortal plays 2 +71055 3623 arguments the Bard 's immortal plays 2 +71056 3623 arguments 2 +71057 3623 the Bard 's immortal plays 2 +71058 3623 the Bard 's immortal 2 +71059 3623 immortal 2 +71060 3623 were written by somebody else . 2 +71061 3623 were written by somebody else 1 +71062 3623 written by somebody else 1 +71063 3623 by somebody else 2 +71064 3623 somebody else 2 +71065 3624 Brave and sweetly rendered love story . 3 +71066 3624 Brave and sweetly 4 +71067 3624 Brave and 3 +71068 3624 Brave 3 +71069 3624 rendered love story . 2 +71070 3624 rendered love story 2 +71071 3625 A half-assed film . 0 +71072 3625 half-assed film . 0 +71073 3625 half-assed 1 +71074 3626 Light-years ahead of paint-by-number American blockbusters like Pearl Harbor , at least artistically . 4 +71075 3626 Light-years 2 +71076 3626 ahead of paint-by-number American blockbusters like Pearl Harbor , at least artistically . 3 +71077 3626 ahead of paint-by-number American blockbusters like Pearl Harbor , at least 3 +71078 3626 of paint-by-number American blockbusters like Pearl Harbor , at least 1 +71079 3626 of paint-by-number American blockbusters like Pearl Harbor , 2 +71080 3626 of paint-by-number American blockbusters like Pearl Harbor 1 +71081 3626 paint-by-number American blockbusters like Pearl Harbor 0 +71082 3626 paint-by-number American blockbusters 2 +71083 3626 paint-by-number 2 +71084 3626 American blockbusters 3 +71085 3626 like Pearl Harbor 2 +71086 3626 Pearl Harbor 2 +71087 3626 Pearl 2 +71088 3626 Harbor 2 +71089 3626 artistically . 2 +71090 3627 The cumulative effect of the movie is repulsive and depressing . 0 +71091 3627 The cumulative effect of the movie 2 +71092 3627 The cumulative effect 2 +71093 3627 cumulative effect 2 +71094 3627 cumulative 2 +71095 3627 is repulsive and depressing . 1 +71096 3627 is repulsive and depressing 0 +71097 3627 repulsive and depressing 0 +71098 3627 repulsive and 0 +71099 3627 repulsive 0 +71100 3628 Smart and alert , Thirteen Conversations About One Thing is a small gem . 3 +71101 3628 Smart and alert 3 +71102 3628 , Thirteen Conversations About One Thing is a small gem . 4 +71103 3628 Thirteen Conversations About One Thing is a small gem . 3 +71104 3628 Thirteen Conversations 2 +71105 3628 Thirteen 2 +71106 3628 Conversations 2 +71107 3628 About One Thing is a small gem . 4 +71108 3628 About One Thing 2 +71109 3628 is a small gem . 2 +71110 3628 is a small gem 3 +71111 3629 A film really has to be exceptional to justify a three hour running time , and this is n't . 1 +71112 3629 A film really has to be exceptional to justify a three hour running time , and this is n't 1 +71113 3629 A film really has to be exceptional to justify a three hour running time , and 3 +71114 3629 A film really has to be exceptional to justify a three hour running time , 3 +71115 3629 A film really has to be exceptional to justify a three hour running time 3 +71116 3629 really has to be exceptional to justify a three hour running time 2 +71117 3629 has to be exceptional to justify a three hour running time 2 +71118 3629 to be exceptional to justify a three hour running time 3 +71119 3629 be exceptional to justify a three hour running time 2 +71120 3629 exceptional to justify a three hour running time 3 +71121 3629 to justify a three hour running time 2 +71122 3629 justify a three hour running time 2 +71123 3629 a three hour running time 2 +71124 3629 three hour running time 2 +71125 3629 hour running time 2 +71126 3629 this is n't 2 +71127 3630 Worth a look by those on both sides of the issues , if only for the perspective it offers , one the public rarely sees . 3 +71128 3630 Worth a look by those on both sides of the issues , if only for the perspective it offers 2 +71129 3630 Worth a look 3 +71130 3630 by those on both sides of the issues , if only for the perspective it offers 3 +71131 3630 by those on both sides of the issues 2 +71132 3630 those on both sides of the issues 2 +71133 3630 on both sides of the issues 2 +71134 3630 both sides of the issues 2 +71135 3630 of the issues 2 +71136 3630 , if only for the perspective it offers 2 +71137 3630 , if only 2 +71138 3630 if only 2 +71139 3630 for the perspective it offers 3 +71140 3630 the perspective it offers 2 +71141 3630 it offers 2 +71142 3630 , one the public rarely sees . 3 +71143 3630 one the public rarely sees . 2 +71144 3630 one the public 3 +71145 3630 the public 2 +71146 3630 rarely sees . 2 +71147 3630 sees . 2 +71148 3631 ... digs beyond the usual portrayals of good kids and bad seeds to reveal a more ambivalent set of characters and motivations . 3 +71149 3631 digs beyond the usual portrayals of good kids and bad seeds to reveal a more ambivalent set of characters and motivations . 2 +71150 3631 digs beyond the usual portrayals of good kids and bad seeds to reveal a more ambivalent set of characters and motivations 4 +71151 3631 digs beyond the usual portrayals of good kids and bad seeds 2 +71152 3631 beyond the usual portrayals of good kids and bad seeds 2 +71153 3631 the usual portrayals of good kids and bad seeds 2 +71154 3631 the usual portrayals 2 +71155 3631 usual portrayals 2 +71156 3631 portrayals 1 +71157 3631 of good kids and bad seeds 2 +71158 3631 good kids and bad seeds 2 +71159 3631 good kids and 2 +71160 3631 good kids 2 +71161 3631 bad seeds 1 +71162 3631 seeds 2 +71163 3631 to reveal a more ambivalent set of characters and motivations 2 +71164 3631 reveal a more ambivalent set of characters and motivations 2 +71165 3631 a more ambivalent set of characters and motivations 2 +71166 3631 a more ambivalent set 2 +71167 3631 more ambivalent set 1 +71168 3631 more ambivalent 2 +71169 3631 ambivalent 2 +71170 3631 of characters and motivations 2 +71171 3631 characters and motivations 2 +71172 3632 Because the genre is well established , what makes the movie fresh is smart writing , skewed characters , and the title performance by Kieran Culkin . 4 +71173 3632 Because the genre is well established , what makes the movie fresh 3 +71174 3632 Because the genre is well established 2 +71175 3632 the genre is well established 2 +71176 3632 is well established 3 +71177 3632 well established 3 +71178 3632 , what makes the movie fresh 3 +71179 3632 what makes the movie fresh 3 +71180 3632 makes the movie fresh 3 +71181 3632 the movie fresh 2 +71182 3632 is smart writing , skewed characters , and the title performance by Kieran Culkin . 4 +71183 3632 is smart writing , skewed characters , and the title performance by Kieran Culkin 4 +71184 3632 writing , skewed characters , and the title performance by Kieran Culkin 1 +71185 3632 writing , skewed characters , and 2 +71186 3632 writing , skewed characters , 1 +71187 3632 writing , skewed characters 1 +71188 3632 writing , 2 +71189 3632 skewed characters 2 +71190 3632 the title performance by Kieran Culkin 2 +71191 3632 the title performance 2 +71192 3632 title performance 3 +71193 3632 by Kieran Culkin 2 +71194 3633 As a vehicle to savour Binoche 's skill , the film is well worthwhile . 4 +71195 3633 As a vehicle to savour Binoche 's skill 3 +71196 3633 a vehicle to savour Binoche 's skill 3 +71197 3633 vehicle to savour Binoche 's skill 2 +71198 3633 to savour Binoche 's skill 3 +71199 3633 savour Binoche 's skill 2 +71200 3633 savour 2 +71201 3633 Binoche 's skill 2 +71202 3633 , the film is well worthwhile . 4 +71203 3633 the film is well worthwhile . 4 +71204 3633 is well worthwhile . 4 +71205 3633 is well worthwhile 4 +71206 3633 well worthwhile 4 +71207 3634 Most of the storylines feel like time fillers between surf shots . 0 +71208 3634 Most of the storylines 2 +71209 3634 of the storylines 2 +71210 3634 the storylines 2 +71211 3634 feel like time fillers between surf shots . 1 +71212 3634 feel like time fillers between surf shots 1 +71213 3634 like time fillers between surf shots 1 +71214 3634 time fillers between surf shots 1 +71215 3634 time fillers 2 +71216 3634 fillers 2 +71217 3634 between surf shots 2 +71218 3634 surf shots 2 +71219 3635 The most memorable moment was when Green threw medical equipment at a window ; not because it was particularly funny , but because I had a serious urge to grab the old lady at the end of my aisle 's walker and toss it at the screen in frustration . 0 +71220 3635 The most memorable moment 3 +71221 3635 most memorable moment 2 +71222 3635 most memorable 4 +71223 3635 was when Green threw medical equipment at a window ; not because it was particularly funny , but because I had a serious urge to grab the old lady at the end of my aisle 's walker and toss it at the screen in frustration . 0 +71224 3635 was when Green threw medical equipment at a window ; not because it was particularly funny , but because I had a serious urge to grab the old lady at the end of my aisle 's walker and toss it at the screen in frustration 0 +71225 3635 when Green threw medical equipment at a window ; not because it was particularly funny , but because I had a serious urge to grab the old lady at the end of my aisle 's walker and toss it at the screen in frustration 0 +71226 3635 when Green threw medical equipment at a window ; not because it was particularly funny , but 2 +71227 3635 when Green threw medical equipment at a window ; not because it was particularly funny , 2 +71228 3635 when Green threw medical equipment at a window ; not because it was particularly funny 2 +71229 3635 Green threw medical equipment at a window ; not because it was particularly funny 2 +71230 3635 threw medical equipment at a window ; not because it was particularly funny 1 +71231 3635 threw medical equipment at a window ; 2 +71232 3635 threw medical equipment at a window 1 +71233 3635 threw medical equipment 2 +71234 3635 medical equipment 2 +71235 3635 equipment 2 +71236 3635 at a window 2 +71237 3635 a window 2 +71238 3635 not because it was particularly funny 2 +71239 3635 because it was particularly funny 3 +71240 3635 it was particularly funny 3 +71241 3635 was particularly funny 3 +71242 3635 because I had a serious urge to grab the old lady at the end of my aisle 's walker and toss it at the screen in frustration 0 +71243 3635 I had a serious urge to grab the old lady at the end of my aisle 's walker and toss it at the screen in frustration 0 +71244 3635 had a serious urge to grab the old lady at the end of my aisle 's walker and toss it at the screen in frustration 0 +71245 3635 a serious urge to grab the old lady at the end of my aisle 's walker and toss it at the screen in frustration 0 +71246 3635 serious urge to grab the old lady at the end of my aisle 's walker and toss it at the screen in frustration 0 +71247 3635 urge to grab the old lady at the end of my aisle 's walker and toss it at the screen in frustration 1 +71248 3635 to grab the old lady at the end of my aisle 's walker and toss it at the screen in frustration 0 +71249 3635 grab the old lady at the end of my aisle 's walker and toss it at the screen in frustration 1 +71250 3635 grab the old lady at the end of my aisle 's walker and 2 +71251 3635 grab the old lady at the end of my aisle 's walker 2 +71252 3635 grab the old lady 2 +71253 3635 grab 2 +71254 3635 the old lady 2 +71255 3635 old lady 2 +71256 3635 at the end of my aisle 's walker 2 +71257 3635 the end of my aisle 's walker 2 +71258 3635 of my aisle 's walker 2 +71259 3635 my aisle 's walker 2 +71260 3635 my aisle 's 2 +71261 3635 aisle 's 2 +71262 3635 aisle 2 +71263 3635 walker 2 +71264 3635 toss it at the screen in frustration 0 +71265 3635 toss it 1 +71266 3635 toss 2 +71267 3635 at the screen in frustration 1 +71268 3635 the screen in frustration 1 +71269 3635 in frustration 1 +71270 3636 Exploring value choices is a worthwhile topic for a film -- but here the choices are as contrived and artificial as Kerrigan 's platinum-blonde hair . 2 +71271 3636 Exploring value choices is a worthwhile topic for a film -- but here the choices are as contrived and artificial as Kerrigan 's platinum-blonde hair 0 +71272 3636 Exploring value choices is a worthwhile topic for a film -- 3 +71273 3636 Exploring value choices is a worthwhile topic for a film 3 +71274 3636 Exploring value choices 2 +71275 3636 value choices 3 +71276 3636 is a worthwhile topic for a film 3 +71277 3636 a worthwhile topic for a film 3 +71278 3636 a worthwhile topic 3 +71279 3636 worthwhile topic 3 +71280 3636 but here the choices are as contrived and artificial as Kerrigan 's platinum-blonde hair 1 +71281 3636 here the choices are as contrived and artificial as Kerrigan 's platinum-blonde hair 1 +71282 3636 the choices are as contrived and artificial as Kerrigan 's platinum-blonde hair 0 +71283 3636 the choices 3 +71284 3636 are as contrived and artificial as Kerrigan 's platinum-blonde hair 0 +71285 3636 are as contrived and artificial 1 +71286 3636 as contrived and artificial 1 +71287 3636 contrived and artificial 1 +71288 3636 as Kerrigan 's platinum-blonde hair 2 +71289 3636 Kerrigan 's platinum-blonde hair 2 +71290 3636 Kerrigan 's 2 +71291 3636 Kerrigan 2 +71292 3636 platinum-blonde hair 2 +71293 3636 platinum-blonde 2 +71294 3637 Chen films the resolutely downbeat Smokers Only with every indulgent , indie trick in the book . 1 +71295 3637 Chen films the resolutely downbeat Smokers Only with every indulgent , indie trick in the book 1 +71296 3637 Chen films 2 +71297 3637 Chen 2 +71298 3637 the resolutely downbeat Smokers Only with every indulgent , indie trick in the book 1 +71299 3637 the resolutely downbeat Smokers Only 2 +71300 3637 resolutely downbeat Smokers Only 2 +71301 3637 resolutely downbeat 1 +71302 3637 downbeat 1 +71303 3637 Smokers Only 1 +71304 3637 Smokers 2 +71305 3637 with every indulgent , indie trick in the book 2 +71306 3637 every indulgent , indie trick in the book 1 +71307 3637 every indulgent , indie trick 1 +71308 3637 indulgent , indie trick 2 +71309 3637 , indie trick 1 +71310 3637 indie trick 2 +71311 3637 in the book 2 +71312 3638 A powerful , inflammatory film about religion that dares to question an ancient faith , and about hatred that offers no easy , comfortable resolution . 3 +71313 3638 A powerful , inflammatory film about religion that dares to question an ancient faith , and about hatred that offers no easy , comfortable resolution 3 +71314 3638 A powerful , inflammatory film 3 +71315 3638 powerful , inflammatory film 3 +71316 3638 , inflammatory film 1 +71317 3638 inflammatory film 2 +71318 3638 inflammatory 2 +71319 3638 about religion that dares to question an ancient faith , and about hatred that offers no easy , comfortable resolution 2 +71320 3638 religion that dares to question an ancient faith , and about hatred that offers no easy , comfortable resolution 2 +71321 3638 religion that dares to question an ancient faith , and 3 +71322 3638 religion that dares to question an ancient faith , 3 +71323 3638 religion that dares to question an ancient faith 3 +71324 3638 religion 2 +71325 3638 that dares to question an ancient faith 2 +71326 3638 dares to question an ancient faith 2 +71327 3638 dares 2 +71328 3638 to question an ancient faith 2 +71329 3638 question an ancient faith 2 +71330 3638 an ancient faith 2 +71331 3638 ancient faith 2 +71332 3638 ancient 2 +71333 3638 about hatred that offers no easy , comfortable resolution 1 +71334 3638 about hatred 3 +71335 3638 that offers no easy , comfortable resolution 1 +71336 3638 offers no easy , comfortable resolution 1 +71337 3638 no easy , comfortable resolution 2 +71338 3638 easy , comfortable resolution 2 +71339 3638 easy , comfortable 3 +71340 3638 , comfortable 3 +71341 3639 A colorful , vibrant introduction to a universal human impulse , lushly photographed and beautifully recorded . 4 +71342 3639 A colorful , vibrant introduction to a universal human impulse 4 +71343 3639 A colorful , vibrant introduction 3 +71344 3639 colorful , vibrant introduction 4 +71345 3639 , vibrant introduction 3 +71346 3639 vibrant introduction 3 +71347 3639 to a universal human impulse 2 +71348 3639 a universal human impulse 2 +71349 3639 universal human impulse 3 +71350 3639 human impulse 2 +71351 3639 impulse 2 +71352 3639 , lushly photographed and beautifully recorded . 4 +71353 3639 lushly photographed and beautifully recorded . 3 +71354 3639 lushly 2 +71355 3639 photographed and beautifully recorded . 3 +71356 3639 photographed and beautifully recorded 4 +71357 3639 photographed and beautifully 3 +71358 3639 recorded 2 +71359 3640 A limp Eddie Murphy vehicle that even he seems embarrassed to be part of . 0 +71360 3640 A limp Eddie Murphy 1 +71361 3640 limp Eddie Murphy 1 +71362 3640 vehicle that even he seems embarrassed to be part of . 3 +71363 3640 vehicle that even he seems embarrassed to be part of 1 +71364 3640 that even he seems embarrassed to be part of 1 +71365 3640 he seems embarrassed to be part of 1 +71366 3640 seems embarrassed to be part of 1 +71367 3640 embarrassed to be part of 1 +71368 3640 to be part of 2 +71369 3640 be part of 3 +71370 3640 part of 2 +71371 3641 About one in three gags in White 's intermittently wise script hits its mark ; the rest are padding unashamedly appropriated from the teen-exploitation playbook . 1 +71372 3641 About one in three gags in White 's intermittently wise script hits its mark ; the rest are padding unashamedly appropriated from the teen-exploitation playbook 1 +71373 3641 About one in three gags in White 's intermittently wise script hits its mark ; 1 +71374 3641 About one in three gags in White 's intermittently wise script hits its mark 3 +71375 3641 About one in three gags in White 's intermittently wise script 2 +71376 3641 in three gags in White 's intermittently wise script 3 +71377 3641 three gags in White 's intermittently wise script 2 +71378 3641 three gags 2 +71379 3641 in White 's intermittently wise script 3 +71380 3641 White 's intermittently wise script 3 +71381 3641 intermittently wise script 2 +71382 3641 intermittently wise 3 +71383 3641 hits its mark 3 +71384 3641 its mark 2 +71385 3641 the rest are padding unashamedly appropriated from the teen-exploitation playbook 1 +71386 3641 are padding unashamedly appropriated from the teen-exploitation playbook 1 +71387 3641 are padding 2 +71388 3641 unashamedly appropriated from the teen-exploitation playbook 2 +71389 3641 unashamedly 2 +71390 3641 appropriated from the teen-exploitation playbook 2 +71391 3641 appropriated 2 +71392 3641 from the teen-exploitation playbook 2 +71393 3641 the teen-exploitation playbook 1 +71394 3641 teen-exploitation playbook 2 +71395 3641 teen-exploitation 2 +71396 3641 playbook 2 +71397 3642 The film runs on a little longer than it needs to -- Muccino either does n't notice when his story ends or just ca n't tear himself away from the characters -- but it 's smooth and professional . 1 +71398 3642 The film runs on a little longer than it needs to -- Muccino either does n't notice when his story ends or just ca n't tear himself away from the characters -- but it 's smooth and professional 3 +71399 3642 The film runs on a little longer than it needs to -- Muccino either does n't notice when his story ends or just ca n't tear himself away from the characters -- but 1 +71400 3642 The film runs on a little longer than it needs to -- Muccino either does n't notice when his story ends or just ca n't tear himself away from the characters -- 1 +71401 3642 The film runs on a little longer than it needs to -- Muccino either does n't notice when his story ends or just ca n't tear himself away from the characters 1 +71402 3642 The film runs on a little longer than it needs to -- 1 +71403 3642 The film runs on a little longer than it needs to 1 +71404 3642 runs on a little longer than it needs to 2 +71405 3642 runs on a little longer 2 +71406 3642 on a little longer 2 +71407 3642 than it needs to 2 +71408 3642 it needs to 2 +71409 3642 needs to 2 +71410 3642 Muccino either does n't notice when his story ends or just ca n't tear himself away from the characters 1 +71411 3642 either does n't notice when his story ends or just ca n't tear himself away from the characters 2 +71412 3642 does n't notice when his story ends or just ca n't tear himself away from the characters 2 +71413 3642 notice when his story ends or just ca n't tear himself away from the characters 2 +71414 3642 when his story ends or just ca n't tear himself away from the characters 4 +71415 3642 his story ends or just ca n't tear himself away from the characters 3 +71416 3642 ends or just ca n't tear himself away from the characters 3 +71417 3642 ends or 2 +71418 3642 just ca n't tear himself away from the characters 3 +71419 3642 ca n't tear himself away from the characters 2 +71420 3642 tear himself away from the characters 2 +71421 3642 tear himself away 2 +71422 3642 tear himself 2 +71423 3642 it 's smooth and professional 3 +71424 3642 's smooth and professional 3 +71425 3642 smooth and professional 3 +71426 3642 smooth and 2 +71427 3642 smooth 2 +71428 3643 Red Dragon makes one appreciate Silence of the Lambs . 2 +71429 3643 makes one appreciate Silence of the Lambs . 2 +71430 3643 makes one appreciate Silence of the Lambs 2 +71431 3643 one appreciate Silence of the Lambs 3 +71432 3643 appreciate Silence of the Lambs 2 +71433 3643 Silence of the Lambs 2 +71434 3644 Made me feel uneasy , even queasy , because -LRB- Solondz 's -RRB- cool compassion is on the border of bemused contempt . 2 +71435 3644 Made me feel uneasy , even queasy , because -LRB- Solondz 's -RRB- cool compassion 1 +71436 3644 me feel uneasy , even queasy , because -LRB- Solondz 's -RRB- cool compassion 1 +71437 3644 feel uneasy , even queasy , because -LRB- Solondz 's -RRB- cool compassion 1 +71438 3644 feel uneasy , even queasy , 1 +71439 3644 feel uneasy , even queasy 1 +71440 3644 uneasy , even queasy 2 +71441 3644 , even queasy 2 +71442 3644 even queasy 1 +71443 3644 because -LRB- Solondz 's -RRB- cool compassion 2 +71444 3644 -LRB- Solondz 's -RRB- cool compassion 3 +71445 3644 -LRB- Solondz 's -RRB- 2 +71446 3644 Solondz 's -RRB- 2 +71447 3644 cool compassion 2 +71448 3644 is on the border of bemused contempt . 2 +71449 3644 is on the border of bemused contempt 1 +71450 3644 on the border of bemused contempt 2 +71451 3644 the border of bemused contempt 1 +71452 3644 the border 2 +71453 3644 of bemused contempt 2 +71454 3644 bemused contempt 1 +71455 3644 bemused 2 +71456 3644 contempt 1 +71457 3645 `` Brown Sugar '' admirably aspires to be more than another `` Best Man '' clone by weaving a theme throughout this funny film . 3 +71458 3645 Brown Sugar '' admirably aspires to be more than another `` Best Man '' clone by weaving a theme throughout this funny film . 3 +71459 3645 Brown Sugar '' admirably 2 +71460 3645 Sugar '' admirably 3 +71461 3645 '' admirably 3 +71462 3645 aspires to be more than another `` Best Man '' clone by weaving a theme throughout this funny film . 3 +71463 3645 aspires to be more than another `` Best Man '' clone by weaving a theme throughout this funny film 3 +71464 3645 to be more than another `` Best Man '' clone by weaving a theme throughout this funny film 3 +71465 3645 be more than another `` Best Man '' clone by weaving a theme throughout this funny film 3 +71466 3645 more than another `` Best Man '' clone by weaving a theme throughout this funny film 3 +71467 3645 than another `` Best Man '' clone by weaving a theme throughout this funny film 2 +71468 3645 another `` Best Man '' clone by weaving a theme throughout this funny film 2 +71469 3645 another `` Best Man '' 3 +71470 3645 `` Best Man '' 2 +71471 3645 Best Man '' 3 +71472 3645 Man '' 2 +71473 3645 clone by weaving a theme throughout this funny film 2 +71474 3645 clone 2 +71475 3645 by weaving a theme throughout this funny film 3 +71476 3645 weaving a theme throughout this funny film 4 +71477 3645 weaving a theme 3 +71478 3645 weaving 2 +71479 3645 throughout this funny film 3 +71480 3645 this funny film 3 +71481 3645 funny film 3 +71482 3646 A bland , obnoxious 88-minute infomercial for Universal Studios and its ancillary products . . . 1 +71483 3646 A bland , obnoxious 88-minute 0 +71484 3646 bland , obnoxious 88-minute 0 +71485 3646 , obnoxious 88-minute 0 +71486 3646 obnoxious 88-minute 0 +71487 3646 infomercial for Universal Studios and its ancillary products . . . 2 +71488 3646 infomercial for Universal Studios and its ancillary products . . 2 +71489 3646 for Universal Studios and its ancillary products . . 2 +71490 3646 for Universal Studios and its ancillary products . 2 +71491 3646 for Universal Studios and its ancillary products 2 +71492 3646 Universal Studios and its ancillary products 2 +71493 3646 Universal Studios and 2 +71494 3646 Universal Studios 2 +71495 3646 its ancillary products 2 +71496 3646 ancillary products 2 +71497 3646 ancillary 2 +71498 3646 products 2 +71499 3647 Astonishingly skillful and moving ... it could become a historically significant work as well as a masterfully made one . 4 +71500 3647 Astonishingly skillful and moving ... it could become a historically significant work as well as a masterfully made one 4 +71501 3647 Astonishingly skillful and moving ... 4 +71502 3647 Astonishingly skillful and moving 4 +71503 3647 skillful and moving 3 +71504 3647 skillful and 3 +71505 3647 it could become a historically significant work as well as a masterfully made one 4 +71506 3647 could become a historically significant work as well as a masterfully made one 4 +71507 3647 become a historically significant work as well as a masterfully made one 4 +71508 3647 become a historically significant work 3 +71509 3647 a historically significant work 3 +71510 3647 historically significant work 4 +71511 3647 as well as a masterfully made one 3 +71512 3647 as a masterfully made one 4 +71513 3647 a masterfully made one 4 +71514 3647 a masterfully 3 +71515 3647 made one 2 +71516 3648 It is too bad that this likable movie is n't more accomplished . 1 +71517 3648 is too bad that this likable movie is n't more accomplished . 3 +71518 3648 is too bad that this likable movie is n't more accomplished 2 +71519 3648 is too bad 1 +71520 3648 that this likable movie is n't more accomplished 3 +71521 3648 this likable movie is n't more accomplished 2 +71522 3648 this likable movie 3 +71523 3648 likable movie 3 +71524 3648 is n't more accomplished 2 +71525 3648 more accomplished 3 +71526 3649 The Importance of Being Earnest movie seems to be missing a great deal of the acerbic repartee of the play . '' 1 +71527 3649 The Importance of Being Earnest movie 2 +71528 3649 of Being Earnest movie 2 +71529 3649 Being Earnest movie 2 +71530 3649 Earnest movie 3 +71531 3649 seems to be missing a great deal of the acerbic repartee of the play . '' 1 +71532 3649 seems to be missing a great deal of the acerbic repartee of the play . 1 +71533 3649 seems to be missing a great deal of the acerbic repartee of the play 2 +71534 3649 to be missing a great deal of the acerbic repartee of the play 2 +71535 3649 be missing a great deal of the acerbic repartee of the play 1 +71536 3649 missing a great deal of the acerbic repartee of the play 1 +71537 3649 a great deal of the acerbic repartee of the play 2 +71538 3649 of the acerbic repartee of the play 2 +71539 3649 the acerbic repartee of the play 2 +71540 3649 the acerbic repartee 2 +71541 3649 acerbic repartee 2 +71542 3649 acerbic 2 +71543 3649 of the play 2 +71544 3650 The lead actors share no chemistry or engaging charisma . 0 +71545 3650 The lead actors 2 +71546 3650 lead actors 2 +71547 3650 share no chemistry or engaging charisma . 1 +71548 3650 share no chemistry or engaging charisma 0 +71549 3650 no chemistry or engaging charisma 0 +71550 3650 no chemistry or 1 +71551 3650 no chemistry 1 +71552 3650 engaging charisma 3 +71553 3651 A much better documentary -- more revealing , more emotional and more surprising -- than its pedestrian English title would have you believe . 4 +71554 3651 A much better documentary -- more revealing , more emotional and more surprising -- than its pedestrian English title 4 +71555 3651 A much better documentary -- more revealing , more emotional and more surprising -- 4 +71556 3651 A much better documentary 4 +71557 3651 much better documentary 3 +71558 3651 -- more revealing , more emotional and more surprising -- 4 +71559 3651 more revealing , more emotional and more surprising -- 3 +71560 3651 more revealing , more emotional and more surprising 4 +71561 3651 more revealing , more emotional and 3 +71562 3651 more revealing , more emotional 3 +71563 3651 more revealing , 2 +71564 3651 more revealing 2 +71565 3651 more surprising 2 +71566 3651 than its pedestrian English title 2 +71567 3651 its pedestrian English title 2 +71568 3651 pedestrian English title 2 +71569 3651 English title 2 +71570 3651 would have you believe . 2 +71571 3651 would have you believe 2 +71572 3651 have you believe 2 +71573 3651 you believe 2 +71574 3652 The most audacious , outrageous , sexually explicit , psychologically probing , pure libido film of the year has arrived from Portugal . 3 +71575 3652 The most audacious , outrageous , sexually explicit , psychologically probing , pure libido film of the year 2 +71576 3652 The most audacious , outrageous , sexually explicit , psychologically probing , pure libido film 2 +71577 3652 most audacious , outrageous , sexually explicit , psychologically probing , pure libido film 2 +71578 3652 most audacious , outrageous , sexually explicit , psychologically probing , 2 +71579 3652 most audacious , outrageous , sexually explicit , psychologically probing 4 +71580 3652 most audacious , outrageous , sexually explicit , 2 +71581 3652 most audacious , outrageous , sexually explicit 2 +71582 3652 most audacious , outrageous , 3 +71583 3652 most audacious , outrageous 3 +71584 3652 most audacious , 3 +71585 3652 most audacious 2 +71586 3652 sexually explicit 1 +71587 3652 sexually 2 +71588 3652 psychologically probing 3 +71589 3652 pure libido film 2 +71590 3652 libido film 3 +71591 3652 libido 2 +71592 3652 has arrived from Portugal . 2 +71593 3652 has arrived from Portugal 2 +71594 3652 arrived from Portugal 2 +71595 3652 arrived 2 +71596 3652 from Portugal 2 +71597 3652 Portugal 2 +71598 3653 If H.G. Wells had a time machine and could take a look at his kin 's reworked version , what would he say ? 2 +71599 3653 If H.G. Wells had a time machine and could take a look at his kin 's reworked version 2 +71600 3653 H.G. Wells had a time machine and could take a look at his kin 's reworked version 2 +71601 3653 H.G. Wells 2 +71602 3653 H.G. 2 +71603 3653 Wells 2 +71604 3653 had a time machine and could take a look at his kin 's reworked version 2 +71605 3653 had a time machine and 2 +71606 3653 had a time machine 2 +71607 3653 could take a look at his kin 's reworked version 2 +71608 3653 take a look at his kin 's reworked version 2 +71609 3653 take a look 3 +71610 3653 at his kin 's reworked version 2 +71611 3653 his kin 's reworked version 2 +71612 3653 his kin 's 2 +71613 3653 kin 's 2 +71614 3653 kin 2 +71615 3653 reworked version 2 +71616 3653 reworked 2 +71617 3653 , what would he say ? 2 +71618 3653 what would he say ? 3 +71619 3653 would he say ? 2 +71620 3653 would he say 2 +71621 3653 would he 2 +71622 3654 Less funny than it should be and less funny than it thinks it is . 0 +71623 3654 Less funny than it should be and less funny than it thinks it is 0 +71624 3654 Less funny than it should be and 1 +71625 3654 Less funny than it should be 2 +71626 3654 Less funny 1 +71627 3654 than it should be 2 +71628 3654 less funny than it thinks it is 1 +71629 3654 than it thinks it is 2 +71630 3655 A thriller made from a completist 's checklist rather than with a cultist 's passion . 2 +71631 3655 made from a completist 's checklist rather than with a cultist 's passion . 1 +71632 3655 made from a completist 's checklist rather than with a cultist 's passion 1 +71633 3655 from a completist 's checklist rather than with a cultist 's passion 1 +71634 3655 from a completist 's checklist rather than 2 +71635 3655 from a completist 's checklist 2 +71636 3655 a completist 's checklist 2 +71637 3655 a completist 's 2 +71638 3655 completist 's 2 +71639 3655 completist 2 +71640 3655 checklist 2 +71641 3655 with a cultist 's passion 3 +71642 3655 a cultist 's passion 2 +71643 3655 a cultist 's 2 +71644 3655 cultist 's 2 +71645 3655 cultist 2 +71646 3656 Sharp edges and a deep vein of sadness run through its otherwise comic narrative . 3 +71647 3656 Sharp edges and a deep vein of sadness 3 +71648 3656 Sharp edges and 2 +71649 3656 Sharp edges 2 +71650 3656 a deep vein of sadness 1 +71651 3656 a deep vein 2 +71652 3656 deep vein 1 +71653 3656 vein 3 +71654 3656 of sadness 2 +71655 3656 run through its otherwise comic narrative . 3 +71656 3656 run through its otherwise comic narrative 2 +71657 3656 through its otherwise comic narrative 3 +71658 3656 its otherwise comic narrative 3 +71659 3656 otherwise comic narrative 4 +71660 3656 otherwise comic 3 +71661 3657 There 's something unintentionally comic in the film 's drumbeat about authenticity , given the stale plot and pornographic way the film revels in swank apartments , clothes and parties . 1 +71662 3657 's something unintentionally comic in the film 's drumbeat about authenticity , given the stale plot and pornographic way the film revels in swank apartments , clothes and parties . 1 +71663 3657 's something unintentionally comic in the film 's drumbeat about authenticity , given the stale plot and pornographic way the film revels in swank apartments , clothes and parties 2 +71664 3657 's something unintentionally 2 +71665 3657 something unintentionally 2 +71666 3657 comic in the film 's drumbeat about authenticity , given the stale plot and pornographic way the film revels in swank apartments , clothes and parties 2 +71667 3657 in the film 's drumbeat about authenticity , given the stale plot and pornographic way the film revels in swank apartments , clothes and parties 3 +71668 3657 the film 's drumbeat about authenticity , given the stale plot and pornographic way the film revels in swank apartments , clothes and parties 1 +71669 3657 the film 's drumbeat about authenticity , 2 +71670 3657 the film 's drumbeat about authenticity 2 +71671 3657 the film 's drumbeat 2 +71672 3657 drumbeat 2 +71673 3657 about authenticity 2 +71674 3657 given the stale plot and pornographic way the film revels in swank apartments , clothes and parties 0 +71675 3657 given the stale plot and pornographic way 2 +71676 3657 the stale plot and pornographic way 1 +71677 3657 stale plot and pornographic way 0 +71678 3657 plot and pornographic way 1 +71679 3657 and pornographic way 2 +71680 3657 pornographic way 2 +71681 3657 pornographic 2 +71682 3657 the film revels in swank apartments , clothes and parties 2 +71683 3657 the film revels 2 +71684 3657 film revels 2 +71685 3657 in swank apartments , clothes and parties 3 +71686 3657 swank apartments , clothes and parties 2 +71687 3657 swank 2 +71688 3657 apartments , clothes and parties 2 +71689 3657 apartments 2 +71690 3657 , clothes and parties 2 +71691 3657 clothes and parties 2 +71692 3657 clothes and 2 +71693 3657 parties 2 +71694 3658 The Christ allegory does n't work because there is no foundation for it 1 +71695 3658 The Christ allegory 2 +71696 3658 Christ allegory 2 +71697 3658 Christ 1 +71698 3658 does n't work because there is no foundation for it 0 +71699 3658 work because there is no foundation for it 1 +71700 3658 because there is no foundation for it 1 +71701 3658 there is no foundation for it 1 +71702 3658 is no foundation for it 1 +71703 3658 no foundation for it 1 +71704 3658 no foundation 1 +71705 3659 Apart from anything else , this is one of the best-sustained ideas I have ever seen on the screen . 4 +71706 3659 Apart from anything else 2 +71707 3659 from anything else 2 +71708 3659 , this is one of the best-sustained ideas I have ever seen on the screen . 4 +71709 3659 this is one of the best-sustained ideas I have ever seen on the screen . 4 +71710 3659 is one of the best-sustained ideas I have ever seen on the screen . 4 +71711 3659 is one of the best-sustained ideas I have ever seen on the screen 4 +71712 3659 one of the best-sustained ideas I have ever seen on the screen 4 +71713 3659 of the best-sustained ideas I have ever seen on the screen 4 +71714 3659 the best-sustained ideas I have ever seen on the screen 4 +71715 3659 the best-sustained ideas 3 +71716 3659 best-sustained ideas 2 +71717 3659 best-sustained 3 +71718 3659 I have ever seen on the screen 2 +71719 3659 have ever seen on the screen 2 +71720 3659 seen on the screen 2 +71721 3660 Tambor and Clayburgh make an appealing couple -- he 's understated and sardonic , she 's appealingly manic and energetic . 3 +71722 3660 Tambor and Clayburgh make an appealing couple -- he 's understated and sardonic 2 +71723 3660 Tambor and Clayburgh 2 +71724 3660 Tambor and 2 +71725 3660 make an appealing couple -- he 's understated and sardonic 3 +71726 3660 an appealing couple -- he 's understated and sardonic 3 +71727 3660 an appealing couple -- 3 +71728 3660 an appealing couple 3 +71729 3660 appealing couple 3 +71730 3660 he 's understated and sardonic 2 +71731 3660 's understated and sardonic 2 +71732 3660 understated and sardonic 2 +71733 3660 understated and 2 +71734 3660 sardonic 2 +71735 3660 , she 's appealingly manic and energetic . 3 +71736 3660 she 's appealingly manic and energetic . 3 +71737 3660 's appealingly manic and energetic . 3 +71738 3660 's appealingly manic and energetic 3 +71739 3660 appealingly manic and energetic 4 +71740 3660 appealingly 3 +71741 3660 manic and energetic 3 +71742 3660 manic and 2 +71743 3660 manic 1 +71744 3661 A headline-fresh thriller set among orthodox Jews on the West Bank , Joseph Cedar 's Time Of Favor manages not only to find a compelling dramatic means of addressing a complex situation , it does so without compromising that complexity . 3 +71745 3661 A headline-fresh thriller set among orthodox Jews on the West Bank , Joseph Cedar 's Time Of Favor manages not only to find a compelling dramatic means of addressing a complex situation 3 +71746 3661 A headline-fresh thriller set among orthodox Jews on the West Bank , Joseph Cedar 's Time 3 +71747 3661 A headline-fresh thriller 3 +71748 3661 headline-fresh thriller 3 +71749 3661 headline-fresh 2 +71750 3661 set among orthodox Jews on the West Bank , Joseph Cedar 's Time 2 +71751 3661 set among orthodox Jews 2 +71752 3661 among orthodox Jews 2 +71753 3661 orthodox Jews 2 +71754 3661 orthodox 2 +71755 3661 Jews 2 +71756 3661 on the West Bank , Joseph Cedar 's Time 2 +71757 3661 the West Bank , Joseph Cedar 's Time 2 +71758 3661 the West Bank , 2 +71759 3661 the West Bank 2 +71760 3661 West Bank 2 +71761 3661 Joseph Cedar 's Time 2 +71762 3661 Joseph Cedar 's 2 +71763 3661 Cedar 's 3 +71764 3661 Of Favor manages not only to find a compelling dramatic means of addressing a complex situation 3 +71765 3661 manages not only to find a compelling dramatic means of addressing a complex situation 3 +71766 3661 manages not only 3 +71767 3661 to find a compelling dramatic means of addressing a complex situation 3 +71768 3661 find a compelling dramatic means of addressing a complex situation 3 +71769 3661 a compelling dramatic means of addressing a complex situation 4 +71770 3661 a compelling dramatic means 2 +71771 3661 compelling dramatic means 3 +71772 3661 compelling dramatic 3 +71773 3661 of addressing a complex situation 2 +71774 3661 addressing a complex situation 2 +71775 3661 addressing 2 +71776 3661 a complex situation 2 +71777 3661 complex situation 2 +71778 3661 , it does so without compromising that complexity . 3 +71779 3661 it does so without compromising that complexity . 3 +71780 3661 does so without compromising that complexity . 3 +71781 3661 does so without compromising that complexity 3 +71782 3661 does so 2 +71783 3661 without compromising that complexity 2 +71784 3661 compromising that complexity 1 +71785 3661 compromising 2 +71786 3661 that complexity 2 +71787 3662 The formula is familiar but enjoyable . 3 +71788 3662 is familiar but enjoyable . 3 +71789 3662 is familiar but enjoyable 3 +71790 3662 familiar but enjoyable 3 +71791 3662 familiar but 2 +71792 3663 It is dark , brooding and slow , and takes its central idea way too seriously . 0 +71793 3663 is dark , brooding and slow , and takes its central idea way too seriously . 1 +71794 3663 is dark , brooding and slow , and takes its central idea way too seriously 0 +71795 3663 is dark , brooding and slow , and 1 +71796 3663 is dark , brooding and slow , 1 +71797 3663 is dark , brooding and slow 1 +71798 3663 dark , brooding and slow 2 +71799 3663 , brooding and slow 1 +71800 3663 brooding and slow 1 +71801 3663 brooding and 2 +71802 3663 takes its central idea way too seriously 1 +71803 3663 takes its central idea way 2 +71804 3663 its central idea way 2 +71805 3663 central idea way 2 +71806 3663 idea way 2 +71807 3664 Seemingly disgusted with the lazy material and the finished product 's unshapely look , director Fisher Stevens inexplicably dips key moments from the film in Waking Life water colors . 1 +71808 3664 Seemingly disgusted with the lazy material and the finished product 's unshapely look 0 +71809 3664 disgusted with the lazy material and the finished product 's unshapely look 0 +71810 3664 disgusted 0 +71811 3664 with the lazy material and the finished product 's unshapely look 1 +71812 3664 the lazy material and the finished product 's unshapely look 1 +71813 3664 the lazy material and 0 +71814 3664 the lazy material 0 +71815 3664 lazy material 1 +71816 3664 the finished product 's unshapely look 1 +71817 3664 the finished product 's 2 +71818 3664 finished product 's 2 +71819 3664 finished 2 +71820 3664 product 's 2 +71821 3664 unshapely look 1 +71822 3664 unshapely 1 +71823 3664 , director Fisher Stevens inexplicably dips key moments from the film in Waking Life water colors . 1 +71824 3664 director Fisher Stevens inexplicably dips key moments from the film in Waking Life water colors . 2 +71825 3664 director Fisher Stevens 2 +71826 3664 Fisher Stevens 2 +71827 3664 inexplicably dips key moments from the film in Waking Life water colors . 2 +71828 3664 dips key moments from the film in Waking Life water colors . 2 +71829 3664 dips key moments from the film in Waking Life water colors 3 +71830 3664 dips key moments from the film 1 +71831 3664 dips key moments 1 +71832 3664 from the film 2 +71833 3664 in Waking Life water colors 2 +71834 3664 Waking Life water colors 2 +71835 3664 Life water colors 2 +71836 3664 water colors 2 +71837 3665 Sweet and memorable film . 4 +71838 3665 Sweet and memorable film 3 +71839 3665 memorable film 4 +71840 3666 While not all that bad of a movie , it 's nowhere near as good as the original . 1 +71841 3666 While not all that bad of a movie 2 +71842 3666 not all that bad of a movie 3 +71843 3666 all that bad of a movie 2 +71844 3666 bad of a movie 1 +71845 3666 , it 's nowhere near as good as the original . 1 +71846 3666 it 's nowhere near as good as the original . 1 +71847 3666 's nowhere near as good as the original . 1 +71848 3666 's nowhere near as good as the original 1 +71849 3667 As crimes go , writer-director Michael Kalesniko 's How to Kill Your Neighbor 's Dog is slight but unendurable . 2 +71850 3667 As crimes go 2 +71851 3667 crimes go 2 +71852 3667 , writer-director Michael Kalesniko 's How to Kill Your Neighbor 's Dog is slight but unendurable . 1 +71853 3667 writer-director Michael Kalesniko 's How to Kill Your Neighbor 's Dog is slight but unendurable . 1 +71854 3667 writer-director Michael Kalesniko 2 +71855 3667 Michael Kalesniko 2 +71856 3667 Kalesniko 2 +71857 3667 's How to Kill Your Neighbor 's Dog is slight but unendurable . 1 +71858 3667 's How to Kill Your Neighbor 's Dog is slight but unendurable 1 +71859 3667 How to Kill Your Neighbor 's Dog is slight but unendurable 1 +71860 3667 to Kill Your Neighbor 's Dog is slight but unendurable 1 +71861 3667 to Kill Your Neighbor 's Dog 2 +71862 3667 Kill Your Neighbor 's Dog 2 +71863 3667 Your Neighbor 's Dog 2 +71864 3667 Your Neighbor 's 2 +71865 3667 Neighbor 's 2 +71866 3667 Neighbor 2 +71867 3667 is slight but unendurable 1 +71868 3667 slight but unendurable 1 +71869 3668 Eastwood winces , clutches his chest and gasps for breath . 2 +71870 3668 winces , clutches his chest and gasps for breath . 2 +71871 3668 winces , clutches his chest and gasps for breath 2 +71872 3668 winces , clutches his chest and 2 +71873 3668 winces , clutches his chest 2 +71874 3668 winces , 2 +71875 3668 winces 2 +71876 3668 clutches his chest 1 +71877 3668 clutches 2 +71878 3668 his chest 2 +71879 3668 gasps for breath 2 +71880 3668 gasps 2 +71881 3668 for breath 2 +71882 3669 It deserves to be seen everywhere . 3 +71883 3669 deserves to be seen everywhere . 3 +71884 3669 deserves to be seen everywhere 4 +71885 3669 to be seen everywhere 2 +71886 3669 be seen everywhere 1 +71887 3669 seen everywhere 2 +71888 3670 Her film 3 +71889 3670 that is n't heated properly , so that it ends up 1 +71890 3670 is n't heated properly , so that it ends up 1 +71891 3670 is n't heated properly , 1 +71892 3670 is n't heated properly 2 +71893 3670 is n't heated 1 +71894 3670 heated 2 +71895 3670 so that it ends up 2 +71896 3670 that it ends up 2 +71897 3670 it ends up 2 +71898 3670 a bit cold and relatively flavorless 1 +71899 3670 a bit cold and 1 +71900 3670 a bit cold 2 +71901 3670 relatively flavorless 0 +71902 3671 An uplifting drama ... What Antwone Fisher is n't , however , is original . 2 +71903 3671 An uplifting drama 4 +71904 3671 uplifting drama 3 +71905 3671 ... What Antwone Fisher is n't , however , is original . 1 +71906 3671 What Antwone Fisher is n't , however , is original . 1 +71907 3671 What Antwone Fisher is n't , however , is original 1 +71908 3671 What Antwone Fisher is n't 2 +71909 3671 Antwone Fisher is n't 2 +71910 3671 , however , is original 3 +71911 3671 however , is original 3 +71912 3671 , is original 3 +71913 3671 is original 3 +71914 3672 And the positive change in tone here seems to have recharged him . 3 +71915 3672 the positive change in tone here seems to have recharged him . 3 +71916 3672 the positive change in tone 4 +71917 3672 the positive change 3 +71918 3672 positive change 3 +71919 3672 here seems to have recharged him . 3 +71920 3672 seems to have recharged him . 3 +71921 3672 seems to have recharged him 2 +71922 3672 to have recharged him 2 +71923 3672 have recharged him 3 +71924 3672 recharged him 2 +71925 3672 recharged 3 +71926 3673 Shot like a postcard and overacted with all the boozy self-indulgence that brings out the worst in otherwise talented actors ... 0 +71927 3673 Shot like a postcard and overacted with all the boozy self-indulgence that brings out the worst in otherwise talented actors 0 +71928 3673 Shot like a postcard and 1 +71929 3673 Shot like a postcard 3 +71930 3673 like a postcard 2 +71931 3673 a postcard 2 +71932 3673 overacted with all the boozy self-indulgence that brings out the worst in otherwise talented actors 1 +71933 3673 overacted 1 +71934 3673 with all the boozy self-indulgence that brings out the worst in otherwise talented actors 1 +71935 3673 all the boozy self-indulgence that brings out the worst in otherwise talented actors 1 +71936 3673 all the boozy self-indulgence 2 +71937 3673 the boozy self-indulgence 1 +71938 3673 boozy self-indulgence 2 +71939 3673 boozy 1 +71940 3673 that brings out the worst in otherwise talented actors 1 +71941 3673 brings out the worst in otherwise talented actors 1 +71942 3673 the worst in otherwise talented actors 1 +71943 3673 in otherwise talented actors 2 +71944 3673 otherwise talented actors 2 +71945 3673 otherwise talented 3 +71946 3674 Please see previous answer . 2 +71947 3674 see previous answer . 2 +71948 3674 see previous answer 2 +71949 3674 previous answer 2 +71950 3675 I love the robust middle of this picture . 4 +71951 3675 love the robust middle of this picture . 4 +71952 3675 love the robust middle of this picture 3 +71953 3675 the robust middle of this picture 3 +71954 3675 the robust middle 2 +71955 3675 robust middle 2 +71956 3675 of this picture 2 +71957 3676 Drama of temptation , salvation and good intentions is a thoughtful examination of faith , love and power . 3 +71958 3676 Drama of temptation , salvation and good intentions 2 +71959 3676 of temptation , salvation and good intentions 3 +71960 3676 temptation , salvation and good intentions 2 +71961 3676 temptation 2 +71962 3676 , salvation and good intentions 3 +71963 3676 salvation and good intentions 3 +71964 3676 salvation 3 +71965 3676 and good intentions 3 +71966 3676 is a thoughtful examination of faith , love and power . 4 +71967 3676 is a thoughtful examination of faith , love and power 3 +71968 3676 a thoughtful examination of faith , love and power 3 +71969 3676 a thoughtful examination 3 +71970 3676 thoughtful examination 3 +71971 3676 of faith , love and power 2 +71972 3676 faith , love and power 3 +71973 3676 , love and power 2 +71974 3676 love and power 4 +71975 3677 As much as I laughed throughout the movie , I can not mount a cogent defense of the film as entertainment , or even performance art , although the movie does leave you marveling at these guys ' superhuman capacity to withstand pain . 3 +71976 3677 As much as I laughed throughout the movie 3 +71977 3677 much as I laughed throughout the movie 3 +71978 3677 as I laughed throughout the movie 3 +71979 3677 I laughed throughout the movie 4 +71980 3677 laughed throughout the movie 3 +71981 3677 , I can not mount a cogent defense of the film as entertainment , or even performance art , although the movie does leave you marveling at these guys ' superhuman capacity to withstand pain . 3 +71982 3677 I can not mount a cogent defense of the film as entertainment , or even performance art , although the movie does leave you marveling at these guys ' superhuman capacity to withstand pain . 2 +71983 3677 can not mount a cogent defense of the film as entertainment , or even performance art , although the movie does leave you marveling at these guys ' superhuman capacity to withstand pain . 1 +71984 3677 can not mount a cogent defense of the film as entertainment , or even performance art , although the movie does leave you marveling at these guys ' superhuman capacity to withstand pain 1 +71985 3677 mount a cogent defense of the film as entertainment , or even performance art , although the movie does leave you marveling at these guys ' superhuman capacity to withstand pain 1 +71986 3677 mount a cogent defense of the film as entertainment , or even performance art , 2 +71987 3677 mount 2 +71988 3677 a cogent defense of the film as entertainment , or even performance art , 2 +71989 3677 a cogent defense of the film as entertainment , or even performance art 2 +71990 3677 a cogent defense of the film as entertainment , or even 2 +71991 3677 a cogent defense of the film as entertainment , or 2 +71992 3677 a cogent defense of the film as entertainment , 2 +71993 3677 a cogent defense of the film as entertainment 2 +71994 3677 a cogent defense 2 +71995 3677 cogent defense 2 +71996 3677 cogent 2 +71997 3677 defense 2 +71998 3677 of the film as entertainment 2 +71999 3677 the film as entertainment 2 +72000 3677 as entertainment 3 +72001 3677 performance art 2 +72002 3677 although the movie does leave you marveling at these guys ' superhuman capacity to withstand pain 2 +72003 3677 the movie does leave you marveling at these guys ' superhuman capacity to withstand pain 3 +72004 3677 does leave you marveling at these guys ' superhuman capacity to withstand pain 3 +72005 3677 leave you marveling at these guys ' superhuman capacity to withstand pain 3 +72006 3677 you marveling at these guys ' superhuman capacity to withstand pain 2 +72007 3677 marveling at these guys ' superhuman capacity to withstand pain 3 +72008 3677 marveling at these guys ' superhuman capacity 3 +72009 3677 marveling 3 +72010 3677 at these guys ' superhuman capacity 2 +72011 3677 these guys ' superhuman capacity 3 +72012 3677 these guys ' 2 +72013 3677 guys ' 2 +72014 3677 superhuman capacity 2 +72015 3677 superhuman 2 +72016 3677 capacity 2 +72017 3677 to withstand pain 2 +72018 3677 withstand pain 2 +72019 3677 withstand 2 +72020 3678 -LRB- Less a movie than -RRB- an appalling , odoriferous thing ... so rotten in almost every single facet of production that you 'll want to crawl up your own \*\*\* in embarrassment . 0 +72021 3678 -LRB- Less a movie than -RRB- an appalling , odoriferous thing ... so 0 +72022 3678 -LRB- Less a movie than -RRB- 1 +72023 3678 Less a movie than -RRB- 1 +72024 3678 Less a movie than 1 +72025 3678 Less a movie 1 +72026 3678 an appalling , odoriferous thing ... so 0 +72027 3678 an appalling , 0 +72028 3678 appalling , 0 +72029 3678 appalling 0 +72030 3678 odoriferous thing ... so 2 +72031 3678 odoriferous thing ... 1 +72032 3678 odoriferous thing 0 +72033 3678 odoriferous 2 +72034 3678 rotten in almost every single facet of production that you 'll want to crawl up your own \*\*\* in embarrassment . 0 +72035 3678 rotten in almost every single facet of production that you 'll want to crawl up your own \*\*\* in embarrassment 0 +72036 3678 rotten in almost every single facet of production 0 +72037 3678 in almost every single facet of production 2 +72038 3678 almost every single facet of production 3 +72039 3678 almost every single facet 2 +72040 3678 every single facet 2 +72041 3678 single facet 2 +72042 3678 that you 'll want to crawl up your own \*\*\* in embarrassment 0 +72043 3678 you 'll want to crawl up your own \*\*\* in embarrassment 0 +72044 3678 'll want to crawl up your own \*\*\* in embarrassment 0 +72045 3678 want to crawl up your own \*\*\* in embarrassment 1 +72046 3678 to crawl up your own \*\*\* in embarrassment 0 +72047 3678 crawl up your own \*\*\* in embarrassment 1 +72048 3678 crawl up your own \*\*\* 1 +72049 3678 crawl up 2 +72050 3678 crawl 2 +72051 3678 your own \*\*\* 2 +72052 3678 own \*\*\* 2 +72053 3678 in embarrassment 2 +72054 3679 Engages us in constant fits of laughter , until we find ourselves surprised at how much we care about the story , and end up walking out not only satisfied but also somewhat touched . 4 +72055 3679 Engages us in constant fits of laughter , until we find ourselves surprised at how much we care about the story , and end up walking out not only satisfied but also somewhat touched 4 +72056 3679 Engages us in constant fits of laughter , until we find ourselves surprised at how much we care about the story , and 3 +72057 3679 Engages us in constant fits of laughter , until we find ourselves surprised at how much we care about the story , 4 +72058 3679 Engages us in constant fits of laughter , until we find ourselves surprised at how much we care about the story 3 +72059 3679 Engages us in constant fits of laughter , 4 +72060 3679 Engages us in constant fits of laughter 4 +72061 3679 Engages us 3 +72062 3679 Engages 3 +72063 3679 in constant fits of laughter 3 +72064 3679 constant fits of laughter 3 +72065 3679 constant fits 2 +72066 3679 until we find ourselves surprised at how much we care about the story 2 +72067 3679 we find ourselves surprised at how much we care about the story 3 +72068 3679 find ourselves surprised at how much we care about the story 3 +72069 3679 ourselves surprised at how much we care about the story 4 +72070 3679 surprised at how much we care about the story 3 +72071 3679 at how much we care about the story 3 +72072 3679 how much we care about the story 2 +72073 3679 we care about the story 4 +72074 3679 care about the story 2 +72075 3679 about the story 2 +72076 3679 end up walking out not only satisfied but also somewhat touched 4 +72077 3679 up walking out not only satisfied but also somewhat touched 3 +72078 3679 up walking out not only satisfied but 3 +72079 3679 up walking out not only satisfied 2 +72080 3679 walking out not only satisfied 2 +72081 3679 walking out 2 +72082 3679 not only satisfied 3 +72083 3679 only satisfied 2 +72084 3679 also somewhat touched 3 +72085 3679 somewhat touched 3 +72086 3680 A great companion piece to other Napoleon films . 3 +72087 3680 A great companion piece to other Napoleon films 3 +72088 3680 A great companion piece 3 +72089 3680 great companion piece 3 +72090 3680 to other Napoleon films 2 +72091 3680 other Napoleon films 2 +72092 3680 Napoleon films 2 +72093 3681 The ending feels at odds with the rest of the film . 3 +72094 3681 The ending 2 +72095 3681 feels at odds with the rest of the film . 1 +72096 3681 feels at odds with the rest of the film 1 +72097 3681 at odds with the rest of the film 1 +72098 3681 odds with the rest of the film 1 +72099 3681 with the rest of the film 2 +72100 3681 the rest of the film 2 +72101 3682 There 's plenty to impress about E.T. 3 +72102 3682 's plenty to impress about E.T. 3 +72103 3682 plenty to impress about E.T. 3 +72104 3682 to impress about E.T. 2 +72105 3682 impress about E.T. 3 +72106 3682 impress 3 +72107 3682 about E.T. 2 +72108 3683 This film puts Wang at the forefront of China 's Sixth Generation of film makers . 4 +72109 3683 puts Wang at the forefront of China 's Sixth Generation of film makers . 3 +72110 3683 puts Wang at the forefront of China 's Sixth Generation of film makers 4 +72111 3683 Wang at the forefront of China 's Sixth Generation of film makers 3 +72112 3683 Wang 2 +72113 3683 at the forefront of China 's Sixth Generation of film makers 2 +72114 3683 the forefront of China 's Sixth Generation of film makers 2 +72115 3683 the forefront 2 +72116 3683 forefront 3 +72117 3683 of China 's Sixth Generation of film makers 2 +72118 3683 China 's Sixth Generation of film makers 2 +72119 3683 China 's Sixth Generation 2 +72120 3683 China 's 2 +72121 3683 Sixth Generation 2 +72122 3683 of film makers 2 +72123 3683 film makers 2 +72124 3684 What 's surprising about this traditional thriller , moderately successful but not completely satisfying , is exactly how genteel and unsurprising the execution turns out to be . 3 +72125 3684 about this traditional thriller , moderately successful but not completely satisfying , is exactly how genteel and unsurprising the execution turns out to be . 1 +72126 3684 about this traditional thriller , moderately successful but not completely satisfying , 2 +72127 3684 about this traditional thriller , moderately successful but not completely satisfying 2 +72128 3684 about this traditional thriller , 2 +72129 3684 about this traditional thriller 2 +72130 3684 this traditional thriller 2 +72131 3684 traditional thriller 2 +72132 3684 moderately successful but not completely satisfying 2 +72133 3684 moderately successful but not 2 +72134 3684 moderately successful but 3 +72135 3684 moderately successful 3 +72136 3684 completely satisfying 4 +72137 3684 is exactly how genteel and unsurprising the execution turns out to be . 3 +72138 3684 is exactly how genteel and unsurprising the execution turns out to be 1 +72139 3684 exactly how genteel and unsurprising the execution turns out to be 1 +72140 3684 exactly how 2 +72141 3684 genteel and unsurprising the execution turns out to be 2 +72142 3684 genteel and unsurprising the execution 3 +72143 3684 genteel and unsurprising 1 +72144 3684 genteel and 3 +72145 3684 genteel 2 +72146 3685 The actors pull out all the stops in nearly every scene , but to diminishing effect . 2 +72147 3685 pull out all the stops in nearly every scene , but to diminishing effect . 1 +72148 3685 pull out all the stops in nearly every scene , but to diminishing effect 2 +72149 3685 pull out all the stops 3 +72150 3685 pull out 2 +72151 3685 all the stops 2 +72152 3685 the stops 2 +72153 3685 in nearly every scene , but to diminishing effect 1 +72154 3685 in nearly every scene 1 +72155 3685 nearly every scene 2 +72156 3685 , but to diminishing effect 1 +72157 3685 to diminishing effect 2 +72158 3685 diminishing effect 1 +72159 3686 The concept behind Kung Pow : Enter the Fist is hilarious . 3 +72160 3686 The concept behind Kung Pow : Enter the Fist is hilarious 4 +72161 3686 The concept behind Kung Pow : 2 +72162 3686 The concept behind Kung Pow 2 +72163 3686 behind Kung Pow 2 +72164 3686 Enter the Fist is hilarious 4 +72165 3686 the Fist is hilarious 3 +72166 3686 the Fist 2 +72167 3686 Fist 2 +72168 3686 is hilarious 4 +72169 3687 It zips along with B-movie verve while adding the rich details and go-for-broke acting that heralds something special . 4 +72170 3687 zips along with B-movie verve while adding the rich details and go-for-broke acting that heralds something special . 3 +72171 3687 zips along with B-movie verve while adding the rich details and go-for-broke acting that heralds something special 4 +72172 3687 zips along with B-movie verve 2 +72173 3687 zips along 2 +72174 3687 zips 2 +72175 3687 with B-movie verve 2 +72176 3687 B-movie verve 2 +72177 3687 while adding the rich details and go-for-broke acting that heralds something special 3 +72178 3687 adding the rich details and go-for-broke acting that heralds something special 4 +72179 3687 adding the rich details and 3 +72180 3687 adding the rich details 3 +72181 3687 the rich details 3 +72182 3687 rich details 3 +72183 3687 go-for-broke acting that heralds something special 4 +72184 3687 go-for-broke 3 +72185 3687 acting that heralds something special 4 +72186 3687 that heralds something special 4 +72187 3687 heralds something special 4 +72188 3687 heralds 2 +72189 3688 An uncomfortable experience , but one as brave and challenging as you could possibly expect these days from American cinema . 3 +72190 3688 An uncomfortable experience , but one as brave and challenging as you could possibly expect these days from American cinema 2 +72191 3688 An uncomfortable experience , but 1 +72192 3688 An uncomfortable experience , 1 +72193 3688 An uncomfortable experience 0 +72194 3688 An uncomfortable 2 +72195 3688 one as brave and challenging as you could possibly expect these days from American cinema 4 +72196 3688 as brave and challenging as you could possibly expect these days from American cinema 3 +72197 3688 as brave and challenging 3 +72198 3688 brave and challenging 3 +72199 3688 as you could possibly expect these days from American cinema 2 +72200 3688 you could possibly expect these days from American cinema 2 +72201 3688 could possibly expect these days from American cinema 2 +72202 3688 expect these days from American cinema 2 +72203 3688 expect these days 2 +72204 3688 from American cinema 2 +72205 3689 displays the potential for a better movie than what Bailly manages to deliver 2 +72206 3689 the potential for a better movie than what Bailly manages to deliver 1 +72207 3689 for a better movie than what Bailly manages to deliver 2 +72208 3689 a better movie than what Bailly manages to deliver 1 +72209 3689 a better movie 3 +72210 3689 better movie 3 +72211 3689 than what Bailly manages to deliver 2 +72212 3689 what Bailly manages to deliver 2 +72213 3689 Bailly manages to deliver 3 +72214 3689 Bailly 2 +72215 3689 manages to deliver 3 +72216 3689 to deliver 2 +72217 3690 The Emperor 's Club is one of those films that possesses all the good intentions in the world , but ... 2 +72218 3690 is one of those films that possesses all the good intentions in the world , but ... 2 +72219 3690 is one of those films that possesses all the good intentions in the world , but 3 +72220 3690 one of those films that possesses all the good intentions in the world , but 3 +72221 3690 of those films that possesses all the good intentions in the world , but 2 +72222 3690 those films that possesses all the good intentions in the world , but 2 +72223 3690 that possesses all the good intentions in the world , but 3 +72224 3690 possesses all the good intentions in the world , but 3 +72225 3690 possesses all the good intentions in the world , 3 +72226 3690 possesses all the good intentions in the world 3 +72227 3690 possesses all the good intentions 3 +72228 3690 all the good intentions 2 +72229 3690 the good intentions 3 +72230 3691 The pretensions -- and disposable story -- sink the movie . 1 +72231 3691 The pretensions -- and disposable story -- 1 +72232 3691 The pretensions 2 +72233 3691 -- and disposable story -- 1 +72234 3691 -- and disposable story 1 +72235 3691 disposable story 1 +72236 3691 sink the movie . 1 +72237 3691 sink the movie 2 +72238 3692 Depressingly thin and exhaustingly contrived . 0 +72239 3692 Depressingly thin and exhaustingly contrived 1 +72240 3692 Depressingly thin and 1 +72241 3692 Depressingly thin 1 +72242 3692 exhaustingly contrived 1 +72243 3692 exhaustingly 1 +72244 3693 Showtime is a fine-looking film with a bouncy score and a clutch of lively songs for deft punctuation . 4 +72245 3693 is a fine-looking film with a bouncy score and a clutch of lively songs for deft punctuation . 4 +72246 3693 is a fine-looking film with a bouncy score and a clutch of lively songs for deft punctuation 3 +72247 3693 a fine-looking film with a bouncy score and a clutch of lively songs for deft punctuation 4 +72248 3693 a fine-looking film with a bouncy score and 3 +72249 3693 a fine-looking film with a bouncy score 4 +72250 3693 a fine-looking film 4 +72251 3693 fine-looking film 4 +72252 3693 fine-looking 3 +72253 3693 with a bouncy score 3 +72254 3693 a bouncy score 2 +72255 3693 bouncy score 3 +72256 3693 bouncy 3 +72257 3693 a clutch of lively songs for deft punctuation 3 +72258 3693 a clutch 2 +72259 3693 clutch 2 +72260 3693 of lively songs for deft punctuation 2 +72261 3693 lively songs for deft punctuation 3 +72262 3693 lively songs 3 +72263 3693 for deft punctuation 3 +72264 3693 deft punctuation 3 +72265 3693 punctuation 2 +72266 3694 It 's fun , wispy , wise and surprisingly inoffensive for a film about a teen in love with his stepmom . 3 +72267 3694 's fun , wispy , wise and surprisingly inoffensive for a film about a teen in love with his stepmom . 4 +72268 3694 's fun , wispy , wise and surprisingly inoffensive for a film about a teen in love with his stepmom 3 +72269 3694 's fun , wispy , wise and surprisingly inoffensive 3 +72270 3694 's fun , wispy , 3 +72271 3694 's fun , wispy 3 +72272 3694 's fun , 3 +72273 3694 wispy 2 +72274 3694 wise and surprisingly inoffensive 2 +72275 3694 surprisingly inoffensive 3 +72276 3694 for a film about a teen in love with his stepmom 2 +72277 3694 a film about a teen in love with his stepmom 2 +72278 3694 about a teen in love with his stepmom 2 +72279 3694 a teen in love with his stepmom 2 +72280 3694 a teen 2 +72281 3694 in love with his stepmom 2 +72282 3694 love with his stepmom 2 +72283 3694 with his stepmom 2 +72284 3694 his stepmom 2 +72285 3694 stepmom 2 +72286 3695 Well , Jason 's gone to Manhattan and Hell , I guess a space station in the year 2455 can be crossed off the list of ideas for the inevitable future sequels -LRB- hey , do n't shoot the messenger -RRB- . 1 +72287 3695 Well , Jason 's gone to Manhattan and Hell 1 +72288 3695 , Jason 's gone to Manhattan and Hell 2 +72289 3695 Jason 's gone to Manhattan and Hell 2 +72290 3695 's gone to Manhattan and Hell 3 +72291 3695 gone to Manhattan and Hell 2 +72292 3695 to Manhattan and Hell 2 +72293 3695 Manhattan and Hell 2 +72294 3695 Manhattan and 2 +72295 3695 , I guess a space station in the year 2455 can be crossed off the list of ideas for the inevitable future sequels -LRB- hey , do n't shoot the messenger -RRB- . 1 +72296 3695 I guess a space station in the year 2455 can be crossed off the list of ideas for the inevitable future sequels -LRB- hey , do n't shoot the messenger -RRB- . 1 +72297 3695 guess a space station in the year 2455 can be crossed off the list of ideas for the inevitable future sequels -LRB- hey , do n't shoot the messenger -RRB- . 1 +72298 3695 guess a space station in the year 2455 can be crossed off the list of ideas for the inevitable future sequels -LRB- hey , do n't shoot the messenger -RRB- 0 +72299 3695 a space station in the year 2455 can be crossed off the list of ideas for the inevitable future sequels -LRB- hey , do n't shoot the messenger -RRB- 1 +72300 3695 a space station in the year 2455 2 +72301 3695 a space station 2 +72302 3695 in the year 2455 2 +72303 3695 the year 2455 2 +72304 3695 year 2455 2 +72305 3695 2455 2 +72306 3695 can be crossed off the list of ideas for the inevitable future sequels -LRB- hey , do n't shoot the messenger -RRB- 0 +72307 3695 be crossed off the list of ideas for the inevitable future sequels -LRB- hey , do n't shoot the messenger -RRB- 1 +72308 3695 crossed off the list of ideas for the inevitable future sequels -LRB- hey , do n't shoot the messenger -RRB- 1 +72309 3695 crossed off 2 +72310 3695 the list of ideas for the inevitable future sequels -LRB- hey , do n't shoot the messenger -RRB- 2 +72311 3695 the list 2 +72312 3695 of ideas for the inevitable future sequels -LRB- hey , do n't shoot the messenger -RRB- 1 +72313 3695 ideas for the inevitable future sequels -LRB- hey , do n't shoot the messenger -RRB- 1 +72314 3695 ideas for the inevitable future sequels 2 +72315 3695 for the inevitable future sequels 2 +72316 3695 the inevitable future sequels 2 +72317 3695 inevitable future sequels 2 +72318 3695 future sequels 2 +72319 3695 -LRB- hey , do n't shoot the messenger -RRB- 2 +72320 3695 hey , do n't shoot the messenger -RRB- 2 +72321 3695 hey , do n't shoot the messenger 2 +72322 3695 do n't shoot the messenger 2 +72323 3695 shoot the messenger 2 +72324 3695 the messenger 2 +72325 3695 messenger 3 +72326 3696 The filmmakers lack the nerve ... to fully exploit the script 's potential for sick humor . 2 +72327 3696 lack the nerve ... to fully exploit the script 's potential for sick humor . 1 +72328 3696 lack the nerve ... to fully exploit the script 's potential for sick humor 1 +72329 3696 lack the nerve ... 1 +72330 3696 lack the nerve 1 +72331 3696 the nerve 2 +72332 3696 to fully exploit the script 's potential for sick humor 3 +72333 3696 fully exploit the script 's potential for sick humor 2 +72334 3696 exploit the script 's potential for sick humor 2 +72335 3696 the script 's potential for sick humor 2 +72336 3696 the script 's potential 2 +72337 3696 for sick humor 1 +72338 3696 sick humor 1 +72339 3697 Crammed with incident , and bristles with passion and energy . 3 +72340 3697 Crammed with incident , and bristles with passion and energy 3 +72341 3697 Crammed with incident , and 2 +72342 3697 Crammed with incident , 2 +72343 3697 Crammed with incident 2 +72344 3697 Crammed 2 +72345 3697 bristles with passion and energy 3 +72346 3697 bristles 2 +72347 3697 with passion and energy 3 +72348 3697 passion and energy 4 +72349 3698 This 90-minute postmodern voyage was more diverting and thought-provoking than I 'd expected it to be . 3 +72350 3698 This 90-minute postmodern voyage 2 +72351 3698 90-minute postmodern voyage 3 +72352 3698 postmodern voyage 2 +72353 3698 postmodern 2 +72354 3698 voyage 2 +72355 3698 was more diverting and thought-provoking than I 'd expected it to be . 3 +72356 3698 was more diverting and thought-provoking than I 'd expected it to be 4 +72357 3698 was more diverting and thought-provoking 3 +72358 3698 more diverting and thought-provoking 3 +72359 3698 more diverting and 2 +72360 3698 more diverting 2 +72361 3698 than I 'd expected it to be 3 +72362 3698 I 'd expected it to be 2 +72363 3698 'd expected it to be 2 +72364 3698 expected it to be 1 +72365 3699 It makes me say the obvious : Abandon all hope of a good movie ye who enter here . 0 +72366 3699 makes me say the obvious : Abandon all hope of a good movie ye who enter here . 0 +72367 3699 makes me say the obvious : Abandon all hope of a good movie ye who enter here 1 +72368 3699 me say the obvious : Abandon all hope of a good movie ye who enter here 0 +72369 3699 say the obvious : Abandon all hope of a good movie ye who enter here 0 +72370 3699 say the obvious : 2 +72371 3699 say the obvious 2 +72372 3699 Abandon all hope of a good movie ye who enter here 0 +72373 3699 all hope of a good movie ye who enter here 2 +72374 3699 all hope 2 +72375 3699 of a good movie ye who enter here 3 +72376 3699 a good movie ye who enter here 3 +72377 3699 a good movie ye 3 +72378 3699 good movie ye 2 +72379 3699 movie ye 2 +72380 3699 ye 2 +72381 3699 who enter here 2 +72382 3699 enter here 2 +72383 3700 Can I admit XXX is as deep as a Petri dish and as well-characterized as a telephone book but still say it was a guilty pleasure ? 1 +72384 3700 Can I admit XXX is as deep as a Petri dish and as well-characterized as a telephone book but still say it was a guilty pleasure 2 +72385 3700 admit XXX is as deep as a Petri dish and as well-characterized as a telephone book but still say it was a guilty pleasure 2 +72386 3700 XXX is as deep as a Petri dish and as well-characterized as a telephone book but still say it was a guilty pleasure 2 +72387 3700 is as deep as a Petri dish and as well-characterized as a telephone book but still say it was a guilty pleasure 0 +72388 3700 is as deep as a Petri dish and as well-characterized as a telephone book but still 1 +72389 3700 is as deep as a Petri dish and as well-characterized as a telephone book but 2 +72390 3700 is as deep as a Petri dish and as well-characterized as a telephone book 1 +72391 3700 is as deep as a Petri dish and as well-characterized 0 +72392 3700 as deep as a Petri dish and as well-characterized 2 +72393 3700 as deep as a Petri dish and 2 +72394 3700 as deep as a Petri dish 1 +72395 3700 deep as a Petri dish 1 +72396 3700 as a Petri dish 2 +72397 3700 a Petri dish 2 +72398 3700 Petri dish 2 +72399 3700 Petri 2 +72400 3700 as well-characterized 3 +72401 3700 well-characterized 3 +72402 3700 as a telephone book 2 +72403 3700 a telephone book 2 +72404 3700 telephone book 2 +72405 3700 telephone 2 +72406 3700 say it was a guilty pleasure 3 +72407 3700 it was a guilty pleasure 3 +72408 3700 was a guilty pleasure 3 +72409 3701 It 's a testament to the film 's considerable charm that it succeeds in entertaining , despite playing out like a feature-length sitcom replete with stereotypical familial quandaries . 3 +72410 3701 's a testament to the film 's considerable charm that it succeeds in entertaining , despite playing out like a feature-length sitcom replete with stereotypical familial quandaries . 3 +72411 3701 's a testament to the film 's considerable charm that it succeeds in entertaining , despite playing out like a feature-length sitcom replete with stereotypical familial quandaries 3 +72412 3701 's a testament to the film 's considerable charm 3 +72413 3701 a testament to the film 's considerable charm 4 +72414 3701 to the film 's considerable charm 4 +72415 3701 the film 's considerable charm 4 +72416 3701 that it succeeds in entertaining , despite playing out like a feature-length sitcom replete with stereotypical familial quandaries 3 +72417 3701 it succeeds in entertaining , despite playing out like a feature-length sitcom replete with stereotypical familial quandaries 3 +72418 3701 succeeds in entertaining , despite playing out like a feature-length sitcom replete with stereotypical familial quandaries 3 +72419 3701 succeeds in entertaining , 3 +72420 3701 succeeds in entertaining 4 +72421 3701 in entertaining 3 +72422 3701 despite playing out like a feature-length sitcom replete with stereotypical familial quandaries 1 +72423 3701 playing out like a feature-length sitcom replete with stereotypical familial quandaries 1 +72424 3701 playing out 2 +72425 3701 like a feature-length sitcom replete with stereotypical familial quandaries 1 +72426 3701 a feature-length sitcom replete with stereotypical familial quandaries 2 +72427 3701 a feature-length sitcom 2 +72428 3701 feature-length sitcom 2 +72429 3701 replete with stereotypical familial quandaries 1 +72430 3701 replete 2 +72431 3701 with stereotypical familial quandaries 2 +72432 3701 stereotypical familial quandaries 1 +72433 3701 stereotypical 1 +72434 3701 familial quandaries 2 +72435 3701 quandaries 2 +72436 3702 Its audacious ambitions sabotaged by pomposity , Steven Soderbergh 's space opera emerges as a numbingly dull experience . 1 +72437 3702 Its audacious ambitions sabotaged by pomposity 0 +72438 3702 Its audacious ambitions 2 +72439 3702 audacious ambitions 3 +72440 3702 ambitions 2 +72441 3702 sabotaged by pomposity 0 +72442 3702 by pomposity 2 +72443 3702 , Steven Soderbergh 's space opera emerges as a numbingly dull experience . 0 +72444 3702 Steven Soderbergh 's space opera emerges as a numbingly dull experience . 1 +72445 3702 Steven Soderbergh 's space opera 2 +72446 3702 space opera 2 +72447 3702 emerges as a numbingly dull experience . 1 +72448 3702 emerges as a numbingly dull experience 0 +72449 3702 as a numbingly dull experience 0 +72450 3702 a numbingly dull experience 1 +72451 3702 numbingly dull experience 0 +72452 3702 numbingly dull 0 +72453 3702 numbingly 2 +72454 3703 A boring , pretentious muddle that uses a sensational , real-life 19th-Century crime as a metaphor for -- well , I 'm not exactly sure what -- and has all the dramatic weight of a raindrop . 0 +72455 3703 A boring , pretentious muddle that uses a sensational , real-life 19th-Century crime as a metaphor for -- well , I 'm not exactly sure what -- and has all the dramatic weight of a raindrop 0 +72456 3703 A boring , pretentious muddle that uses a sensational , real-life 19th-Century crime as a metaphor for -- 1 +72457 3703 A boring , pretentious muddle that uses a sensational , real-life 19th-Century crime as a metaphor for 1 +72458 3703 A boring , pretentious muddle 1 +72459 3703 boring , pretentious muddle 1 +72460 3703 boring , pretentious 0 +72461 3703 , pretentious 1 +72462 3703 that uses a sensational , real-life 19th-Century crime as a metaphor for 4 +72463 3703 uses a sensational , real-life 19th-Century crime as a metaphor for 2 +72464 3703 uses a sensational , real-life 19th-Century crime as a metaphor 3 +72465 3703 a sensational , real-life 19th-Century crime as a metaphor 3 +72466 3703 a sensational , real-life 19th-Century crime 2 +72467 3703 sensational , real-life 19th-Century crime 4 +72468 3703 , real-life 19th-Century crime 2 +72469 3703 real-life 19th-Century crime 2 +72470 3703 19th-Century crime 2 +72471 3703 as a metaphor 2 +72472 3703 well , I 'm not exactly sure what -- and has all the dramatic weight of a raindrop 1 +72473 3703 , I 'm not exactly sure what -- and has all the dramatic weight of a raindrop 1 +72474 3703 I 'm not exactly sure what -- and has all the dramatic weight of a raindrop 1 +72475 3703 'm not exactly sure what -- and has all the dramatic weight of a raindrop 1 +72476 3703 exactly sure what -- and has all the dramatic weight of a raindrop 2 +72477 3703 sure what -- and has all the dramatic weight of a raindrop 1 +72478 3703 what -- and has all the dramatic weight of a raindrop 1 +72479 3703 what -- and 2 +72480 3703 has all the dramatic weight of a raindrop 1 +72481 3703 all the dramatic weight of a raindrop 0 +72482 3703 all the dramatic weight 1 +72483 3703 the dramatic weight 2 +72484 3703 dramatic weight 2 +72485 3703 of a raindrop 3 +72486 3703 a raindrop 2 +72487 3703 raindrop 2 +72488 3704 What sets Ms. Birot 's film apart from others in the genre is a greater attention to the parents -- and particularly the fateful fathers -- in the emotional evolution of the two bewitched adolescents . 3 +72489 3704 What sets Ms. Birot 's film apart from others in the genre 3 +72490 3704 sets Ms. Birot 's film apart from others in the genre 2 +72491 3704 sets Ms. Birot 's film apart 2 +72492 3704 sets Ms. Birot 's film 2 +72493 3704 Ms. Birot 's film 2 +72494 3704 Ms. Birot 's 2 +72495 3704 Birot 's 1 +72496 3704 from others in the genre 2 +72497 3704 others in the genre 3 +72498 3704 is a greater attention to the parents -- and particularly the fateful fathers -- in the emotional evolution of the two bewitched adolescents . 3 +72499 3704 is a greater attention to the parents -- and particularly the fateful fathers -- in the emotional evolution of the two bewitched adolescents 3 +72500 3704 a greater attention to the parents -- and particularly the fateful fathers -- in the emotional evolution of the two bewitched adolescents 3 +72501 3704 a greater attention 3 +72502 3704 greater attention 2 +72503 3704 greater 3 +72504 3704 to the parents -- and particularly the fateful fathers -- in the emotional evolution of the two bewitched adolescents 2 +72505 3704 the parents -- and particularly the fateful fathers -- in the emotional evolution of the two bewitched adolescents 2 +72506 3704 the parents -- and particularly the fateful fathers -- 3 +72507 3704 the parents 3 +72508 3704 -- and particularly the fateful fathers -- 2 +72509 3704 and particularly the fateful fathers -- 2 +72510 3704 particularly the fateful fathers -- 2 +72511 3704 the fateful fathers -- 2 +72512 3704 the fateful fathers 2 +72513 3704 fateful fathers 2 +72514 3704 fateful 2 +72515 3704 in the emotional evolution of the two bewitched adolescents 2 +72516 3704 the emotional evolution of the two bewitched adolescents 2 +72517 3704 the emotional evolution 2 +72518 3704 emotional evolution 3 +72519 3704 evolution 2 +72520 3704 of the two bewitched adolescents 1 +72521 3704 the two bewitched adolescents 2 +72522 3704 two bewitched adolescents 2 +72523 3704 bewitched adolescents 2 +72524 3704 adolescents 2 +72525 3705 Jackie Chan movies are a guilty pleasure - he 's easy to like and always leaves us laughing . 3 +72526 3705 Jackie Chan movies are a guilty pleasure - he 's easy to like and always leaves us laughing 4 +72527 3705 Jackie Chan movies are a guilty pleasure - 3 +72528 3705 Jackie Chan movies are a guilty pleasure 3 +72529 3705 Jackie Chan movies 2 +72530 3705 Chan movies 2 +72531 3705 are a guilty pleasure 2 +72532 3705 he 's easy to like and always leaves us laughing 3 +72533 3705 's easy to like and always leaves us laughing 4 +72534 3705 's easy to like and always 3 +72535 3705 's easy to like and 3 +72536 3705 's easy to like 3 +72537 3705 easy to like 3 +72538 3705 leaves us laughing 4 +72539 3705 us laughing 2 +72540 3706 Thoroughly enjoyable . 3 +72541 3706 Thoroughly enjoyable 4 +72542 3707 -LRB- Leigh -RRB- has a true talent for drawing wrenching performances from his actors -LRB- improvised over many months -RRB- and for conveying the way tiny acts of kindness make ordinary life survivable . 4 +72543 3707 -LRB- Leigh -RRB- 2 +72544 3707 Leigh -RRB- 2 +72545 3707 has a true talent for drawing wrenching performances from his actors -LRB- improvised over many months -RRB- and for conveying the way tiny acts of kindness make ordinary life survivable . 4 +72546 3707 has a true talent for drawing wrenching performances from his actors -LRB- improvised over many months -RRB- and for conveying the way tiny acts of kindness make ordinary life survivable 4 +72547 3707 a true talent for drawing wrenching performances from his actors -LRB- improvised over many months -RRB- and for conveying the way tiny acts of kindness make ordinary life survivable 4 +72548 3707 a true talent 4 +72549 3707 true talent 3 +72550 3707 for drawing wrenching performances from his actors -LRB- improvised over many months -RRB- and for conveying the way tiny acts of kindness make ordinary life survivable 4 +72551 3707 drawing wrenching performances from his actors -LRB- improvised over many months -RRB- and for conveying the way tiny acts of kindness make ordinary life survivable 3 +72552 3707 drawing wrenching performances 3 +72553 3707 wrenching performances 4 +72554 3707 from his actors -LRB- improvised over many months -RRB- and for conveying the way tiny acts of kindness make ordinary life survivable 4 +72555 3707 from his actors 2 +72556 3707 -LRB- improvised over many months -RRB- and for conveying the way tiny acts of kindness make ordinary life survivable 3 +72557 3707 -LRB- improvised over many months -RRB- and 2 +72558 3707 -LRB- improvised over many months -RRB- 2 +72559 3707 improvised over many months -RRB- 2 +72560 3707 improvised over many months 2 +72561 3707 improvised 2 +72562 3707 over many months 2 +72563 3707 many months 2 +72564 3707 months 2 +72565 3707 for conveying the way tiny acts of kindness make ordinary life survivable 3 +72566 3707 conveying the way tiny acts of kindness make ordinary life survivable 3 +72567 3707 conveying 2 +72568 3707 the way tiny acts of kindness make ordinary life survivable 3 +72569 3707 tiny acts of kindness make ordinary life survivable 3 +72570 3707 tiny acts of kindness 3 +72571 3707 tiny acts 2 +72572 3707 of kindness 2 +72573 3707 kindness 3 +72574 3707 make ordinary life survivable 2 +72575 3707 ordinary life survivable 2 +72576 3707 life survivable 2 +72577 3707 survivable 2 +72578 3708 Stephen Earnhart 's documentary is a decomposition of healthy eccentric inspiration and ambition -- wearing a cloak of unsentimental , straightforward text -- when it 's really an exercise in gross romanticization of the delusional personality type . 1 +72579 3708 Stephen Earnhart 's documentary 2 +72580 3708 Stephen Earnhart 's 2 +72581 3708 is a decomposition of healthy eccentric inspiration and ambition -- wearing a cloak of unsentimental , straightforward text -- when it 's really an exercise in gross romanticization of the delusional personality type . 2 +72582 3708 is a decomposition of healthy eccentric inspiration and ambition -- wearing a cloak of unsentimental , straightforward text -- when it 's really an exercise in gross romanticization of the delusional personality type 0 +72583 3708 is a decomposition of healthy eccentric inspiration and ambition -- wearing a cloak of unsentimental , straightforward text -- 2 +72584 3708 a decomposition of healthy eccentric inspiration and ambition -- wearing a cloak of unsentimental , straightforward text -- 0 +72585 3708 a decomposition of healthy eccentric inspiration and ambition 1 +72586 3708 a decomposition 1 +72587 3708 decomposition 1 +72588 3708 of healthy eccentric inspiration and ambition 4 +72589 3708 healthy eccentric inspiration and ambition 3 +72590 3708 healthy eccentric 2 +72591 3708 inspiration and ambition 3 +72592 3708 inspiration and 3 +72593 3708 -- wearing a cloak of unsentimental , straightforward text -- 1 +72594 3708 wearing a cloak of unsentimental , straightforward text -- 2 +72595 3708 wearing a cloak of unsentimental , straightforward text 3 +72596 3708 a cloak of unsentimental , straightforward text 1 +72597 3708 a cloak 2 +72598 3708 cloak 2 +72599 3708 of unsentimental , straightforward text 2 +72600 3708 unsentimental , straightforward text 2 +72601 3708 , straightforward text 2 +72602 3708 straightforward text 2 +72603 3708 when it 's really an exercise in gross romanticization of the delusional personality type 0 +72604 3708 it 's really an exercise in gross romanticization of the delusional personality type 2 +72605 3708 's really an exercise in gross romanticization of the delusional personality type 1 +72606 3708 an exercise in gross romanticization of the delusional personality type 1 +72607 3708 in gross romanticization of the delusional personality type 1 +72608 3708 gross romanticization of the delusional personality type 1 +72609 3708 gross romanticization 1 +72610 3708 romanticization 3 +72611 3708 of the delusional personality type 1 +72612 3708 the delusional personality type 2 +72613 3708 delusional personality type 2 +72614 3708 delusional 1 +72615 3708 personality type 2 +72616 3709 The strength of the film lies in its two central performances by Sven Wollter as the stricken composer and Viveka Seldahl as his desperate violinist wife . 3 +72617 3709 lies in its two central performances by Sven Wollter as the stricken composer and Viveka Seldahl as his desperate violinist wife . 2 +72618 3709 lies in its two central performances by Sven Wollter as the stricken composer and Viveka Seldahl as his desperate violinist wife 2 +72619 3709 lies in its two central performances 2 +72620 3709 in its two central performances 2 +72621 3709 its two central performances 2 +72622 3709 two central performances 3 +72623 3709 central performances 2 +72624 3709 by Sven Wollter as the stricken composer and Viveka Seldahl as his desperate violinist wife 2 +72625 3709 Sven Wollter as the stricken composer and Viveka Seldahl as his desperate violinist wife 3 +72626 3709 Sven Wollter as the stricken composer and 2 +72627 3709 Sven Wollter as the stricken composer 2 +72628 3709 Sven Wollter 2 +72629 3709 Sven 2 +72630 3709 as the stricken composer 2 +72631 3709 the stricken composer 2 +72632 3709 stricken composer 2 +72633 3709 stricken 2 +72634 3709 composer 2 +72635 3709 Viveka Seldahl as his desperate violinist wife 2 +72636 3709 Viveka Seldahl 2 +72637 3709 Viveka 2 +72638 3709 as his desperate violinist wife 2 +72639 3709 his desperate violinist wife 2 +72640 3709 desperate violinist wife 2 +72641 3709 violinist wife 2 +72642 3709 violinist 2 +72643 3710 Smith finds amusing juxtapositions that justify his exercise . 3 +72644 3710 finds amusing juxtapositions that justify his exercise . 3 +72645 3710 finds amusing juxtapositions that justify his exercise 3 +72646 3710 amusing juxtapositions that justify his exercise 2 +72647 3710 amusing juxtapositions 3 +72648 3710 juxtapositions 3 +72649 3710 that justify his exercise 2 +72650 3710 justify his exercise 1 +72651 3710 his exercise 2 +72652 3711 Less-than-compelling documentary of a Yiddish theater clan . 2 +72653 3711 Less-than-compelling documentary of a Yiddish theater clan 1 +72654 3711 Less-than-compelling documentary 1 +72655 3711 Less-than-compelling 1 +72656 3711 of a Yiddish theater clan 2 +72657 3711 a Yiddish theater clan 2 +72658 3711 Yiddish theater clan 2 +72659 3711 Yiddish 2 +72660 3711 theater clan 2 +72661 3711 clan 2 +72662 3712 Everything about Girls Ca n't Swim , even its passages of sensitive observation , feels secondhand , familiar -- and not in a good way . 1 +72663 3712 Everything about Girls Ca n't Swim , even its passages of sensitive observation , 2 +72664 3712 Everything about Girls Ca n't Swim , even its passages of sensitive observation 2 +72665 3712 Everything about Girls Ca n't Swim , even 2 +72666 3712 Everything about Girls Ca n't Swim , 2 +72667 3712 Everything about Girls Ca n't Swim 2 +72668 3712 Everything about Girls 2 +72669 3712 about Girls 2 +72670 3712 Ca n't Swim 2 +72671 3712 Swim 2 +72672 3712 its passages of sensitive observation 3 +72673 3712 its passages 2 +72674 3712 of sensitive observation 3 +72675 3712 sensitive observation 2 +72676 3712 observation 2 +72677 3712 feels secondhand , familiar -- and not in a good way . 1 +72678 3712 feels secondhand , familiar -- and not in a good way 0 +72679 3712 secondhand , familiar -- and not in a good way 1 +72680 3712 secondhand , 1 +72681 3712 familiar -- and not in a good way 1 +72682 3712 -- and not in a good way 1 +72683 3712 and not in a good way 1 +72684 3712 not in a good way 1 +72685 3713 B picture , and I mean that as a compliment . 2 +72686 3713 B picture , and I mean that as a compliment 3 +72687 3713 B picture , and 1 +72688 3713 B picture , 2 +72689 3713 B picture 1 +72690 3713 I mean that as a compliment 3 +72691 3713 mean that as a compliment 3 +72692 3713 that as a compliment 2 +72693 3713 as a compliment 3 +72694 3713 a compliment 3 +72695 3713 compliment 3 +72696 3714 Examines its explosive subject matter as nonjudgmentally as Wiseman 's previous studies of inner-city high schools , hospitals , courts and welfare centers . 2 +72697 3714 Examines its explosive subject matter as nonjudgmentally as Wiseman 's previous studies of inner-city high schools , hospitals , courts and welfare centers 2 +72698 3714 Examines its explosive subject matter 3 +72699 3714 its explosive subject matter 3 +72700 3714 explosive subject matter 3 +72701 3714 explosive 3 +72702 3714 as nonjudgmentally as Wiseman 's previous studies of inner-city high schools , hospitals , courts and welfare centers 2 +72703 3714 nonjudgmentally as Wiseman 's previous studies of inner-city high schools , hospitals , courts and welfare centers 3 +72704 3714 nonjudgmentally as Wiseman 's previous studies 2 +72705 3714 nonjudgmentally 3 +72706 3714 as Wiseman 's previous studies 2 +72707 3714 Wiseman 's previous studies 2 +72708 3714 previous studies 2 +72709 3714 studies 2 +72710 3714 of inner-city high schools , hospitals , courts and welfare centers 2 +72711 3714 inner-city high schools , hospitals , courts and welfare centers 2 +72712 3714 high schools , hospitals , courts and welfare centers 2 +72713 3714 schools , hospitals , courts and welfare centers 2 +72714 3714 , hospitals , courts and welfare centers 2 +72715 3714 hospitals , courts and welfare centers 3 +72716 3714 hospitals 2 +72717 3714 , courts and welfare centers 2 +72718 3714 courts and welfare centers 2 +72719 3714 courts 2 +72720 3714 and welfare centers 3 +72721 3714 welfare centers 2 +72722 3714 welfare 2 +72723 3715 What started out as a taut contest of wills between Bacon and Theron , deteriorates into a protracted and borderline silly chase sequence . 2 +72724 3715 started out as a taut contest of wills between Bacon and Theron , deteriorates into a protracted and borderline silly chase sequence . 1 +72725 3715 started out as a taut contest of wills between Bacon and Theron , deteriorates into a protracted and borderline silly chase sequence 1 +72726 3715 started out as a taut contest of wills between Bacon and Theron , deteriorates into a protracted and 1 +72727 3715 started out as a taut contest of wills between Bacon and Theron , deteriorates into a protracted 2 +72728 3715 started out as a taut contest of wills between Bacon and Theron , 2 +72729 3715 started out as a taut contest of wills between Bacon and Theron 2 +72730 3715 started out 2 +72731 3715 as a taut contest of wills between Bacon and Theron 2 +72732 3715 a taut contest of wills between Bacon and Theron 2 +72733 3715 a taut contest 3 +72734 3715 taut contest 2 +72735 3715 of wills between Bacon and Theron 2 +72736 3715 wills between Bacon and Theron 2 +72737 3715 between Bacon and Theron 2 +72738 3715 Bacon and Theron 2 +72739 3715 Bacon and 2 +72740 3715 Bacon 3 +72741 3715 Theron 2 +72742 3715 deteriorates into a protracted 1 +72743 3715 into a protracted 2 +72744 3715 a protracted 2 +72745 3715 protracted 2 +72746 3715 borderline silly chase sequence 1 +72747 3715 borderline 2 +72748 3715 silly chase sequence 2 +72749 3716 A fun family movie that 's suitable for all ages -- a movie that will make you laugh , cry and realize , ` It 's never too late to believe in your dreams . ' 4 +72750 3716 A fun family movie that 's suitable for all ages -- a movie that will make you laugh 4 +72751 3716 A fun family movie 3 +72752 3716 fun family movie 2 +72753 3716 family movie 3 +72754 3716 that 's suitable for all ages -- a movie that will make you laugh 4 +72755 3716 's suitable for all ages -- a movie that will make you laugh 3 +72756 3716 suitable for all ages -- a movie that will make you laugh 3 +72757 3716 suitable 3 +72758 3716 for all ages -- a movie that will make you laugh 3 +72759 3716 all ages -- a movie that will make you laugh 4 +72760 3716 all ages -- 2 +72761 3716 a movie that will make you laugh 3 +72762 3716 that will make you laugh 2 +72763 3716 will make you laugh 3 +72764 3716 make you laugh 3 +72765 3716 you laugh 3 +72766 3716 , cry and realize , ` It 's never too late to believe in your dreams . ' 3 +72767 3716 , cry and realize , 1 +72768 3716 cry and realize , 2 +72769 3716 cry and realize 2 +72770 3716 cry and 2 +72771 3716 cry 2 +72772 3716 ` It 's never too late to believe in your dreams . ' 2 +72773 3716 It 's never too late to believe in your dreams . ' 3 +72774 3716 's never too late to believe in your dreams . ' 2 +72775 3716 's never too late to believe in your dreams . 3 +72776 3716 's never too late to believe in your dreams 2 +72777 3716 to believe in your dreams 3 +72778 3716 believe in your dreams 2 +72779 3716 in your dreams 2 +72780 3716 your dreams 2 +72781 3717 -LRB- Kline 's -RRB- utterly convincing -- and deeply appealing -- as a noble teacher who embraces a strict moral code , and as a flawed human being who ca n't quite live up to it . 4 +72782 3717 -LRB- Kline 's -RRB- utterly convincing -- and deeply appealing -- as a noble teacher who embraces a strict moral code , and as a flawed human being who ca n't quite live up to it 3 +72783 3717 -LRB- Kline 's -RRB- utterly convincing -- and deeply appealing -- as a noble teacher who embraces a strict moral code , and 3 +72784 3717 -LRB- Kline 's -RRB- utterly convincing -- and deeply appealing -- as a noble teacher who embraces a strict moral code , 3 +72785 3717 -LRB- Kline 's -RRB- utterly convincing -- and deeply appealing -- as a noble teacher who embraces a strict moral code 4 +72786 3717 Kline 's -RRB- utterly convincing -- and deeply appealing -- as a noble teacher who embraces a strict moral code 4 +72787 3717 -RRB- utterly convincing -- and deeply appealing -- as a noble teacher who embraces a strict moral code 4 +72788 3717 utterly convincing -- and deeply appealing -- as a noble teacher who embraces a strict moral code 3 +72789 3717 utterly convincing -- and deeply appealing -- 4 +72790 3717 utterly convincing 3 +72791 3717 -- and deeply appealing -- 4 +72792 3717 -- and deeply appealing 3 +72793 3717 deeply appealing 4 +72794 3717 as a noble teacher who embraces a strict moral code 3 +72795 3717 a noble teacher who embraces a strict moral code 3 +72796 3717 a noble teacher 2 +72797 3717 noble teacher 3 +72798 3717 teacher 3 +72799 3717 who embraces a strict moral code 3 +72800 3717 embraces a strict moral code 2 +72801 3717 a strict moral code 2 +72802 3717 strict moral code 2 +72803 3717 strict 2 +72804 3717 moral code 2 +72805 3717 as a flawed human being who ca n't quite live up to it 2 +72806 3717 as a flawed human 2 +72807 3717 a flawed human 1 +72808 3717 flawed human 2 +72809 3717 being who ca n't quite live up to it 2 +72810 3717 who ca n't quite live up to it 1 +72811 3717 ca n't quite live up to it 0 +72812 3717 live up to it 2 +72813 3718 One of the most unpleasant things the studio has ever produced . 0 +72814 3718 One of the most unpleasant things the studio 1 +72815 3718 of the most unpleasant things the studio 1 +72816 3718 the most unpleasant things the studio 1 +72817 3718 the most unpleasant things 1 +72818 3718 most unpleasant things 1 +72819 3718 most unpleasant 1 +72820 3718 the studio 2 +72821 3718 has ever produced . 2 +72822 3718 has ever produced 2 +72823 3719 In the end , all you can do is admire the ensemble players and wonder what the point of it is . 2 +72824 3719 , all you can do is admire the ensemble players and wonder what the point of it is . 2 +72825 3719 all you can do is admire the ensemble players and wonder what the point of it is . 1 +72826 3719 all you can do 2 +72827 3719 you can do 2 +72828 3719 can do 2 +72829 3719 is admire the ensemble players and wonder what the point of it is . 2 +72830 3719 is admire the ensemble players and wonder what the point of it is 1 +72831 3719 admire the ensemble players and wonder what the point of it is 1 +72832 3719 admire the ensemble players and 3 +72833 3719 admire the ensemble players 3 +72834 3719 the ensemble players 2 +72835 3719 ensemble players 2 +72836 3719 wonder what the point of it is 1 +72837 3719 what the point of it is 2 +72838 3719 the point of it is 2 +72839 3719 the point of it 2 +72840 3720 Rodriguez ... was unable to reproduce the special spark between the characters that made the first film such a delight . 2 +72841 3720 Rodriguez 2 +72842 3720 ... was unable to reproduce the special spark between the characters that made the first film such a delight . 1 +72843 3720 was unable to reproduce the special spark between the characters that made the first film such a delight . 1 +72844 3720 was unable to reproduce the special spark between the characters that made the first film such a delight 1 +72845 3720 unable to reproduce the special spark between the characters that made the first film such a delight 0 +72846 3720 to reproduce the special spark between the characters that made the first film such a delight 3 +72847 3720 reproduce the special spark between the characters that made the first film such a delight 3 +72848 3720 reproduce 2 +72849 3720 the special spark between the characters that made the first film such a delight 3 +72850 3720 the special spark 2 +72851 3720 special spark 3 +72852 3720 between the characters that made the first film such a delight 3 +72853 3720 the characters that made the first film such a delight 3 +72854 3720 that made the first film such a delight 3 +72855 3720 made the first film such a delight 3 +72856 3720 made the first film 2 +72857 3720 such a delight 4 +72858 3720 a delight 4 +72859 3721 He nonetheless appreciates the art and reveals a music scene that transcends culture and race . 4 +72860 3721 nonetheless appreciates the art and reveals a music scene that transcends culture and race . 3 +72861 3721 appreciates the art and reveals a music scene that transcends culture and race . 4 +72862 3721 appreciates the art and reveals a music scene that transcends culture and race 3 +72863 3721 appreciates the art and 3 +72864 3721 appreciates the art 3 +72865 3721 appreciates 3 +72866 3721 reveals a music scene that transcends culture and race 3 +72867 3721 a music scene that transcends culture and race 4 +72868 3721 a music scene 2 +72869 3721 music scene 2 +72870 3721 that transcends culture and race 3 +72871 3721 transcends culture and race 3 +72872 3721 culture and race 2 +72873 3721 culture and 2 +72874 3722 The unique niche of self-critical , behind-the-scenes navel-gazing Kaufman has carved from Orleans ' story and his own infinite insecurity is a work of outstanding originality . 4 +72875 3722 The unique niche of self-critical , behind-the-scenes navel-gazing Kaufman has carved from Orleans ' story and his own infinite insecurity is a work of outstanding originality 4 +72876 3722 The unique niche of self-critical , behind-the-scenes navel-gazing Kaufman has carved from Orleans ' story and 2 +72877 3722 The unique niche of self-critical , behind-the-scenes navel-gazing Kaufman has carved from Orleans ' story 3 +72878 3722 The unique niche of self-critical , behind-the-scenes navel-gazing Kaufman 3 +72879 3722 The unique niche 2 +72880 3722 unique niche 3 +72881 3722 of self-critical , behind-the-scenes navel-gazing Kaufman 2 +72882 3722 self-critical , behind-the-scenes navel-gazing Kaufman 1 +72883 3722 self-critical 2 +72884 3722 , behind-the-scenes navel-gazing Kaufman 2 +72885 3722 behind-the-scenes navel-gazing Kaufman 2 +72886 3722 behind-the-scenes 2 +72887 3722 navel-gazing Kaufman 2 +72888 3722 navel-gazing 2 +72889 3722 has carved from Orleans ' story 2 +72890 3722 carved from Orleans ' story 2 +72891 3722 from Orleans ' story 2 +72892 3722 Orleans ' story 2 +72893 3722 Orleans ' 2 +72894 3722 Orleans 2 +72895 3722 his own infinite insecurity is a work of outstanding originality 4 +72896 3722 his own infinite 2 +72897 3722 own infinite 2 +72898 3722 infinite 2 +72899 3722 insecurity is a work of outstanding originality 2 +72900 3722 insecurity 2 +72901 3722 is a work of outstanding originality 4 +72902 3722 a work of outstanding originality 4 +72903 3722 of outstanding originality 2 +72904 3722 outstanding originality 4 +72905 3723 Possession is in the end an honorable , interesting failure . 2 +72906 3723 Possession 2 +72907 3723 is in the end an honorable , interesting failure . 1 +72908 3723 is in the end an honorable , interesting failure 1 +72909 3723 in the end an honorable , interesting failure 1 +72910 3723 the end an honorable , interesting failure 1 +72911 3723 an honorable , interesting failure 1 +72912 3723 honorable , interesting failure 1 +72913 3723 honorable 2 +72914 3723 , interesting failure 1 +72915 3723 interesting failure 1 +72916 3724 This is n't a terrible film by any means , but it 's also far from being a realized work . 2 +72917 3724 This is n't a terrible film by any means , but it 's also far from being a realized work 2 +72918 3724 This is n't a terrible film by any means , but 3 +72919 3724 This is n't a terrible film by any means , 3 +72920 3724 This is n't a terrible film by any means 2 +72921 3724 is n't a terrible film by any means 3 +72922 3724 is n't a terrible film 2 +72923 3724 a terrible film 0 +72924 3724 terrible film 0 +72925 3724 by any means 2 +72926 3724 any means 2 +72927 3724 it 's also far from being a realized work 1 +72928 3724 's also far from being a realized work 1 +72929 3724 far from being a realized work 1 +72930 3724 from being a realized work 2 +72931 3724 being a realized work 3 +72932 3724 a realized work 3 +72933 3724 realized work 2 +72934 3725 Will warm your heart without making you feel guilty about it . 4 +72935 3725 warm your heart without making you feel guilty about it . 3 +72936 3725 warm your heart without making you feel guilty about it 3 +72937 3725 without making you feel guilty about it 2 +72938 3725 making you feel guilty about it 2 +72939 3725 you feel guilty about it 1 +72940 3725 feel guilty about it 2 +72941 3725 guilty about it 1 +72942 3726 -LRB- F -RRB- rom the performances and the cinematography to the outstanding soundtrack and unconventional narrative , the film is blazingly alive and admirable on many levels . 3 +72943 3726 -LRB- F -RRB- rom the performances and the cinematography to the outstanding soundtrack and unconventional narrative 3 +72944 3726 -LRB- F -RRB- 2 +72945 3726 F -RRB- 2 +72946 3726 F 1 +72947 3726 rom the performances and the cinematography to the outstanding soundtrack and unconventional narrative 4 +72948 3726 rom 2 +72949 3726 the performances and the cinematography to the outstanding soundtrack and unconventional narrative 4 +72950 3726 the performances and 2 +72951 3726 the cinematography to the outstanding soundtrack and unconventional narrative 3 +72952 3726 cinematography to the outstanding soundtrack and unconventional narrative 4 +72953 3726 cinematography to the outstanding soundtrack and unconventional 4 +72954 3726 cinematography to the outstanding soundtrack and 4 +72955 3726 cinematography to the outstanding soundtrack 3 +72956 3726 to the outstanding soundtrack 3 +72957 3726 the outstanding soundtrack 3 +72958 3726 outstanding soundtrack 4 +72959 3726 , the film is blazingly alive and admirable on many levels . 4 +72960 3726 the film is blazingly alive and admirable on many levels . 4 +72961 3726 is blazingly alive and admirable on many levels . 4 +72962 3726 is blazingly alive and admirable on many levels 4 +72963 3726 blazingly alive and admirable on many levels 4 +72964 3726 blazingly alive and admirable 3 +72965 3726 blazingly 3 +72966 3726 alive and admirable 3 +72967 3726 alive and 3 +72968 3726 on many levels 2 +72969 3726 many levels 2 +72970 3727 It 's the perfect star vehicle for Grant , allowing him to finally move away from his usual bumbling , tongue-tied screen persona . 3 +72971 3727 's the perfect star vehicle for Grant , allowing him to finally move away from his usual bumbling , tongue-tied screen persona . 3 +72972 3727 's the perfect star vehicle for Grant , allowing him to finally move away from his usual bumbling , tongue-tied screen persona 4 +72973 3727 's the perfect star vehicle for Grant , 3 +72974 3727 's the perfect star vehicle for Grant 3 +72975 3727 the perfect star vehicle for Grant 4 +72976 3727 the perfect star vehicle 3 +72977 3727 perfect star vehicle 2 +72978 3727 star vehicle 2 +72979 3727 for Grant 2 +72980 3727 allowing him to finally move away from his usual bumbling , tongue-tied screen persona 2 +72981 3727 allowing 2 +72982 3727 him to finally move away from his usual bumbling , tongue-tied screen persona 2 +72983 3727 to finally move away from his usual bumbling , tongue-tied screen persona 2 +72984 3727 finally move away from his usual bumbling , tongue-tied screen persona 3 +72985 3727 move away from his usual bumbling , tongue-tied screen persona 3 +72986 3727 move away 2 +72987 3727 from his usual bumbling , tongue-tied screen persona 1 +72988 3727 his usual bumbling , tongue-tied screen persona 2 +72989 3727 usual bumbling , tongue-tied screen persona 1 +72990 3727 bumbling , tongue-tied screen persona 2 +72991 3727 , tongue-tied screen persona 2 +72992 3727 tongue-tied screen persona 2 +72993 3727 tongue-tied 2 +72994 3727 screen persona 2 +72995 3728 It 's a pedestrian , flat drama that screams out ` amateur ' in almost every frame . 1 +72996 3728 's a pedestrian , flat drama that screams out ` amateur ' in almost every frame . 0 +72997 3728 's a pedestrian , flat drama that screams out ` amateur ' in almost every frame 0 +72998 3728 a pedestrian , flat drama that screams out ` amateur ' in almost every frame 1 +72999 3728 a pedestrian , flat drama 1 +73000 3728 pedestrian , flat drama 0 +73001 3728 , flat drama 1 +73002 3728 flat drama 2 +73003 3728 that screams out ` amateur ' in almost every frame 0 +73004 3728 screams out ` amateur ' in almost every frame 1 +73005 3728 screams out 2 +73006 3728 ` amateur ' in almost every frame 1 +73007 3728 amateur ' in almost every frame 1 +73008 3728 amateur ' 2 +73009 3728 amateur 2 +73010 3728 in almost every frame 2 +73011 3728 almost every frame 2 +73012 3729 Always destined to be measured against Anthony Asquith 's acclaimed 1952 screen adaptation . 3 +73013 3729 destined to be measured against Anthony Asquith 's acclaimed 1952 screen adaptation . 3 +73014 3729 destined to be measured against Anthony Asquith 's acclaimed 1952 screen adaptation 2 +73015 3729 to be measured against Anthony Asquith 's acclaimed 1952 screen adaptation 2 +73016 3729 be measured against Anthony Asquith 's acclaimed 1952 screen adaptation 2 +73017 3729 measured against Anthony Asquith 's acclaimed 1952 screen adaptation 2 +73018 3729 against Anthony Asquith 's acclaimed 1952 screen adaptation 2 +73019 3729 Anthony Asquith 's acclaimed 1952 screen adaptation 3 +73020 3729 Anthony Asquith 's 2 +73021 3729 Asquith 's 2 +73022 3729 Asquith 2 +73023 3729 acclaimed 1952 screen adaptation 3 +73024 3729 acclaimed 3 +73025 3729 1952 screen adaptation 2 +73026 3729 screen adaptation 2 +73027 3730 Evelyn may be based on a true and historically significant story , but the filmmakers have made every effort to disguise it as an unimaginative screenwriter 's invention . 0 +73028 3730 Evelyn may be based on a true and historically significant story , but the filmmakers have made every effort to disguise it as an unimaginative screenwriter 's invention 1 +73029 3730 Evelyn may be based on a true and historically significant story , but 2 +73030 3730 Evelyn may be based on a true and historically significant story , 2 +73031 3730 Evelyn may be based on a true and historically significant story 3 +73032 3730 may be based on a true and historically significant story 3 +73033 3730 be based on a true and historically significant story 3 +73034 3730 based on a true and historically significant story 3 +73035 3730 on a true and historically significant story 3 +73036 3730 a true and historically significant story 4 +73037 3730 true and historically significant story 2 +73038 3730 true and historically significant 4 +73039 3730 true and 3 +73040 3730 the filmmakers have made every effort to disguise it as an unimaginative screenwriter 's invention 1 +73041 3730 have made every effort to disguise it as an unimaginative screenwriter 's invention 1 +73042 3730 made every effort to disguise it as an unimaginative screenwriter 's invention 1 +73043 3730 every effort to disguise it as an unimaginative screenwriter 's invention 1 +73044 3730 effort to disguise it as an unimaginative screenwriter 's invention 1 +73045 3730 to disguise it as an unimaginative screenwriter 's invention 1 +73046 3730 disguise it as an unimaginative screenwriter 's invention 1 +73047 3730 disguise it 2 +73048 3730 as an unimaginative screenwriter 's invention 0 +73049 3730 an unimaginative screenwriter 's invention 0 +73050 3730 an unimaginative screenwriter 's 1 +73051 3730 unimaginative screenwriter 's 1 +73052 3730 screenwriter 's 2 +73053 3731 There is greatness here . 4 +73054 3731 is greatness here . 4 +73055 3731 is greatness here 3 +73056 3731 is greatness 4 +73057 3731 greatness 3 +73058 3732 Although it tries to be much more , it 's really just another Major League . 1 +73059 3732 Although it tries to be much more 2 +73060 3732 it tries to be much more 2 +73061 3732 tries to be much more 2 +73062 3732 to be much more 2 +73063 3732 be much more 2 +73064 3732 , it 's really just another Major League . 2 +73065 3732 it 's really just another Major League . 2 +73066 3732 's really just another Major League . 1 +73067 3732 's really just another Major League 1 +73068 3732 just another Major League 2 +73069 3732 another Major League 2 +73070 3732 Major League 2 +73071 3733 It 's a glorified sitcom , and a long , unfunny one at that . 1 +73072 3733 's a glorified sitcom , and a long , unfunny one at that . 0 +73073 3733 's a glorified sitcom , and a long , unfunny one at that 2 +73074 3733 a glorified sitcom , and a long , unfunny one at that 0 +73075 3733 a glorified sitcom , and 1 +73076 3733 a glorified sitcom , 1 +73077 3733 a glorified sitcom 1 +73078 3733 glorified sitcom 1 +73079 3733 a long , unfunny one at that 1 +73080 3733 a long , unfunny one 0 +73081 3733 long , unfunny one 2 +73082 3733 , unfunny one 1 +73083 3733 unfunny one 0 +73084 3733 at that 2 +73085 3734 Mama Africa pretty much delivers on that promise . 3 +73086 3734 Mama Africa 2 +73087 3734 Mama 2 +73088 3734 Africa 2 +73089 3734 pretty much delivers on that promise . 3 +73090 3734 delivers on that promise . 3 +73091 3734 delivers on that promise 4 +73092 3734 on that promise 2 +73093 3734 that promise 2 +73094 3735 Adolescents will be adequately served by the movie 's sophomoric blend of shenanigans and slapstick , although the more lascivious-minded might be disappointed in the relative modesty of a movie that sports a ` topless tutorial service . ' 3 +73095 3735 will be adequately served by the movie 's sophomoric blend of shenanigans and slapstick , although the more lascivious-minded might be disappointed in the relative modesty of a movie that sports a ` topless tutorial service . ' 1 +73096 3735 will be adequately served by the movie 's sophomoric blend of shenanigans and slapstick , although the more lascivious-minded might be disappointed in the relative modesty of a movie that sports a ` topless tutorial service . 2 +73097 3735 will be adequately served by the movie 's sophomoric blend of shenanigans and slapstick , although the more lascivious-minded might be disappointed in the relative modesty of a movie that sports a ` topless tutorial service 2 +73098 3735 be adequately served by the movie 's sophomoric blend of shenanigans and slapstick , although the more lascivious-minded might be disappointed in the relative modesty of a movie that sports a ` topless tutorial service 2 +73099 3735 adequately served by the movie 's sophomoric blend of shenanigans and slapstick , although the more lascivious-minded might be disappointed in the relative modesty of a movie that sports a ` topless tutorial service 2 +73100 3735 served by the movie 's sophomoric blend of shenanigans and slapstick , although the more lascivious-minded might be disappointed in the relative modesty of a movie that sports a ` topless tutorial service 1 +73101 3735 served by the movie 's sophomoric blend of shenanigans and slapstick , 2 +73102 3735 served by the movie 's sophomoric blend of shenanigans and slapstick 1 +73103 3735 by the movie 's sophomoric blend of shenanigans and slapstick 0 +73104 3735 the movie 's sophomoric blend of shenanigans and slapstick 1 +73105 3735 the movie 's sophomoric blend 1 +73106 3735 sophomoric blend 2 +73107 3735 of shenanigans and slapstick 2 +73108 3735 shenanigans and slapstick 3 +73109 3735 shenanigans and 1 +73110 3735 shenanigans 2 +73111 3735 although the more lascivious-minded might be disappointed in the relative modesty of a movie that sports a ` topless tutorial service 1 +73112 3735 the more lascivious-minded might be disappointed in the relative modesty of a movie that sports a ` topless tutorial service 1 +73113 3735 the more lascivious-minded 2 +73114 3735 more lascivious-minded 2 +73115 3735 lascivious-minded 2 +73116 3735 might be disappointed in the relative modesty of a movie that sports a ` topless tutorial service 1 +73117 3735 be disappointed in the relative modesty of a movie that sports a ` topless tutorial service 1 +73118 3735 disappointed in the relative modesty of a movie that sports a ` topless tutorial service 1 +73119 3735 in the relative modesty of a movie that sports a ` topless tutorial service 2 +73120 3735 the relative modesty of a movie that sports a ` topless tutorial service 2 +73121 3735 the relative modesty 2 +73122 3735 relative modesty 3 +73123 3735 modesty 2 +73124 3735 of a movie that sports a ` topless tutorial service 2 +73125 3735 a movie that sports a ` topless tutorial service 2 +73126 3735 that sports a ` topless tutorial service 2 +73127 3735 sports a ` topless tutorial service 2 +73128 3735 a ` topless tutorial service 2 +73129 3735 ` topless tutorial service 2 +73130 3735 topless tutorial service 2 +73131 3735 topless 2 +73132 3735 tutorial service 2 +73133 3735 tutorial 2 +73134 3736 Sounding like Arnold Schwarzenegger , with a physique to match , -LRB- Ahola -RRB- has a wooden delivery and encounters a substantial arc of change that does n't produce any real transformation . 1 +73135 3736 Sounding like Arnold Schwarzenegger , with a physique to match 2 +73136 3736 Sounding like Arnold Schwarzenegger , 2 +73137 3736 Sounding like Arnold Schwarzenegger 2 +73138 3736 like Arnold Schwarzenegger 3 +73139 3736 Arnold Schwarzenegger 1 +73140 3736 Schwarzenegger 2 +73141 3736 with a physique to match 2 +73142 3736 a physique to match 3 +73143 3736 physique to match 2 +73144 3736 physique 2 +73145 3736 to match 2 +73146 3736 , -LRB- Ahola -RRB- has a wooden delivery and encounters a substantial arc of change that does n't produce any real transformation . 1 +73147 3736 -LRB- Ahola -RRB- has a wooden delivery and encounters a substantial arc of change that does n't produce any real transformation . 1 +73148 3736 -LRB- Ahola -RRB- 2 +73149 3736 Ahola -RRB- 1 +73150 3736 Ahola 2 +73151 3736 has a wooden delivery and encounters a substantial arc of change that does n't produce any real transformation . 1 +73152 3736 has a wooden delivery and encounters a substantial arc of change that does n't produce any real transformation 1 +73153 3736 has a wooden delivery and 1 +73154 3736 has a wooden delivery 2 +73155 3736 a wooden delivery 1 +73156 3736 wooden delivery 1 +73157 3736 wooden 2 +73158 3736 encounters a substantial arc of change that does n't produce any real transformation 1 +73159 3736 a substantial arc of change that does n't produce any real transformation 1 +73160 3736 a substantial arc of change 2 +73161 3736 a substantial arc 2 +73162 3736 substantial arc 2 +73163 3736 of change 2 +73164 3736 that does n't produce any real transformation 2 +73165 3736 does n't produce any real transformation 2 +73166 3736 produce any real transformation 2 +73167 3736 any real transformation 2 +73168 3736 real transformation 2 +73169 3737 Has the disjointed feel of a bunch of strung-together TV episodes . 0 +73170 3737 the disjointed feel of a bunch of strung-together TV episodes . 0 +73171 3737 the disjointed 1 +73172 3737 feel of a bunch of strung-together TV episodes . 1 +73173 3737 feel of a bunch of strung-together TV episodes 2 +73174 3737 of a bunch of strung-together TV episodes 2 +73175 3737 a bunch of strung-together TV episodes 1 +73176 3737 of strung-together TV episodes 1 +73177 3737 strung-together TV episodes 2 +73178 3737 TV episodes 3 +73179 3738 Director Nancy Savoca 's no-frills record of a show forged in still-raw emotions captures the unsettled tenor of that post 9-11 period far better than a more measured or polished production ever could . 4 +73180 3738 Director Nancy Savoca 's no-frills record of a show forged in still-raw emotions 3 +73181 3738 Director Nancy Savoca 's no-frills record 2 +73182 3738 Director Nancy Savoca 's 2 +73183 3738 Nancy Savoca 's 2 +73184 3738 Nancy 2 +73185 3738 Savoca 's 2 +73186 3738 Savoca 2 +73187 3738 no-frills record 2 +73188 3738 of a show forged in still-raw emotions 2 +73189 3738 a show forged in still-raw emotions 4 +73190 3738 forged in still-raw emotions 3 +73191 3738 forged 2 +73192 3738 in still-raw emotions 2 +73193 3738 still-raw emotions 3 +73194 3738 still-raw 2 +73195 3738 captures the unsettled tenor of that post 9-11 period far better than a more measured or polished production ever could . 3 +73196 3738 captures the unsettled tenor of that post 9-11 period far better than a more measured or polished production ever could 3 +73197 3738 captures the unsettled tenor of that post 9-11 period far better 3 +73198 3738 the unsettled tenor of that post 9-11 period far better 3 +73199 3738 the unsettled tenor of that post 9-11 period 2 +73200 3738 the unsettled tenor 1 +73201 3738 unsettled tenor 2 +73202 3738 unsettled 1 +73203 3738 of that post 9-11 period 2 +73204 3738 that post 9-11 period 2 +73205 3738 post 9-11 period 2 +73206 3738 post 2 +73207 3738 9-11 period 2 +73208 3738 than a more measured or polished production ever could 3 +73209 3738 a more measured or polished production ever could 3 +73210 3738 a more measured or polished production 3 +73211 3738 more measured or polished production 3 +73212 3738 more measured or polished 2 +73213 3738 measured or polished 3 +73214 3738 measured or 2 +73215 3738 ever could 2 +73216 3739 As it is , it 's too long and unfocused . 0 +73217 3739 , it 's too long and unfocused . 0 +73218 3739 it 's too long and unfocused . 0 +73219 3739 's too long and unfocused . 1 +73220 3739 's too long and unfocused 0 +73221 3739 too long and unfocused 0 +73222 3739 long and unfocused 0 +73223 3740 Lyne 's latest , the erotic thriller Unfaithful , further demonstrates just how far his storytelling skills have eroded . 1 +73224 3740 Lyne 's latest , the erotic thriller Unfaithful , 2 +73225 3740 Lyne 's latest , the erotic thriller Unfaithful 2 +73226 3740 Lyne 's latest , 2 +73227 3740 Lyne 's latest 2 +73228 3740 Lyne 's 2 +73229 3740 Lyne 2 +73230 3740 the erotic thriller Unfaithful 2 +73231 3740 erotic thriller Unfaithful 2 +73232 3740 thriller Unfaithful 2 +73233 3740 further demonstrates just how far his storytelling skills have eroded . 0 +73234 3740 demonstrates just how far his storytelling skills have eroded . 0 +73235 3740 demonstrates just how far his storytelling skills have eroded 1 +73236 3740 just how far his storytelling skills have eroded 2 +73237 3740 just how far 2 +73238 3740 how far 2 +73239 3740 his storytelling skills have eroded 0 +73240 3740 his storytelling skills 2 +73241 3740 storytelling skills 3 +73242 3740 have eroded 2 +73243 3740 eroded 2 +73244 3741 When the heroes were actually under 40 ? 2 +73245 3741 the heroes were actually under 40 ? 2 +73246 3741 the heroes were actually under 40 2 +73247 3741 were actually under 40 1 +73248 3741 under 40 2 +73249 3741 40 2 +73250 3742 Another love story in 2002 's remarkable procession of sweeping pictures that have reinvigorated the romance genre . 3 +73251 3742 Another love story in 2002 2 +73252 3742 Another love story 2 +73253 3742 's remarkable procession of sweeping pictures that have reinvigorated the romance genre . 4 +73254 3742 's remarkable procession of sweeping pictures that have reinvigorated the romance genre 4 +73255 3742 remarkable procession of sweeping pictures that have reinvigorated the romance genre 4 +73256 3742 remarkable procession of sweeping pictures 4 +73257 3742 remarkable procession 3 +73258 3742 of sweeping pictures 2 +73259 3742 sweeping pictures 2 +73260 3742 that have reinvigorated the romance genre 3 +73261 3742 have reinvigorated the romance genre 3 +73262 3742 reinvigorated the romance genre 4 +73263 3742 reinvigorated 3 +73264 3742 the romance genre 2 +73265 3742 romance genre 2 +73266 3743 A cheap scam put together by some cynical creeps at Revolution Studios and Imagine Entertainment to make the suckers out there surrender $ 9 and 93 minutes of unrecoverable life . 0 +73267 3743 A cheap scam 0 +73268 3743 cheap scam 1 +73269 3743 scam 1 +73270 3743 put together by some cynical creeps at Revolution Studios and Imagine Entertainment to make the suckers out there surrender $ 9 and 93 minutes of unrecoverable life . 1 +73271 3743 put together by some cynical creeps at Revolution Studios and Imagine Entertainment to make the suckers out there surrender $ 9 and 93 minutes of unrecoverable life 0 +73272 3743 put together by some cynical creeps at Revolution Studios and Imagine Entertainment 2 +73273 3743 put together 2 +73274 3743 by some cynical creeps at Revolution Studios and Imagine Entertainment 1 +73275 3743 some cynical creeps at Revolution Studios and Imagine Entertainment 2 +73276 3743 some cynical creeps 1 +73277 3743 cynical creeps 1 +73278 3743 at Revolution Studios and Imagine Entertainment 2 +73279 3743 Revolution Studios and Imagine Entertainment 2 +73280 3743 Revolution Studios and 2 +73281 3743 Revolution Studios 2 +73282 3743 Imagine Entertainment 2 +73283 3743 to make the suckers out there surrender $ 9 and 93 minutes of unrecoverable life 1 +73284 3743 make the suckers out there surrender $ 9 and 93 minutes of unrecoverable life 0 +73285 3743 make the suckers 2 +73286 3743 the suckers 1 +73287 3743 suckers 1 +73288 3743 out there surrender $ 9 and 93 minutes of unrecoverable life 0 +73289 3743 there surrender $ 9 and 93 minutes of unrecoverable life 0 +73290 3743 there surrender $ 9 and 1 +73291 3743 there surrender $ 9 1 +73292 3743 surrender $ 9 1 +73293 3743 surrender 2 +73294 3743 93 minutes of unrecoverable life 0 +73295 3743 93 minutes 2 +73296 3743 93 2 +73297 3743 of unrecoverable life 1 +73298 3743 unrecoverable life 1 +73299 3743 unrecoverable 0 +73300 3744 It ca n't escape its past , and it does n't want to . 2 +73301 3744 It ca n't escape its past , and it does n't want to 1 +73302 3744 It ca n't escape its past , and 1 +73303 3744 It ca n't escape its past , 2 +73304 3744 It ca n't escape its past 1 +73305 3744 ca n't escape its past 2 +73306 3744 escape its past 2 +73307 3744 its past 2 +73308 3744 it does n't want to 2 +73309 3744 does n't want to 1 +73310 3744 want to 2 +73311 3745 This one aims for the toilet and scores a direct hit . 0 +73312 3745 aims for the toilet and scores a direct hit . 1 +73313 3745 aims for the toilet and scores a direct hit 0 +73314 3745 for the toilet and scores a direct hit 0 +73315 3745 the toilet and scores a direct hit 1 +73316 3745 the toilet and 2 +73317 3746 A picture as erratic as its central character . 2 +73318 3746 as erratic as its central character . 1 +73319 3746 as erratic as its central character 1 +73320 3746 erratic as its central character 2 +73321 3746 erratic 2 +73322 3746 as its central character 2 +73323 3746 its central character 2 +73324 3747 An ideal love story for those intolerant of the more common saccharine genre . 3 +73325 3747 An ideal 3 +73326 3747 love story for those intolerant of the more common saccharine genre . 3 +73327 3747 love story for those intolerant of the more common saccharine genre 2 +73328 3747 story for those intolerant of the more common saccharine genre 1 +73329 3747 for those intolerant of the more common saccharine genre 2 +73330 3747 those intolerant of the more common saccharine genre 2 +73331 3747 those intolerant 2 +73332 3747 intolerant 3 +73333 3747 of the more common saccharine genre 2 +73334 3747 the more common saccharine genre 1 +73335 3747 more common saccharine genre 2 +73336 3747 more common 2 +73337 3747 saccharine genre 1 +73338 3748 A gorgeously strange movie , Heaven is deeply concerned with morality , but it refuses to spell things out for viewers . 3 +73339 3748 A gorgeously strange movie , Heaven is deeply concerned with morality , but it refuses to spell things out for viewers 3 +73340 3748 A gorgeously strange movie , Heaven is deeply concerned with morality , but 3 +73341 3748 A gorgeously strange movie , Heaven is deeply concerned with morality , 3 +73342 3748 A gorgeously strange movie , Heaven is deeply concerned with morality 3 +73343 3748 A gorgeously strange movie , Heaven 4 +73344 3748 A gorgeously strange movie , 3 +73345 3748 A gorgeously strange movie 3 +73346 3748 gorgeously strange movie 4 +73347 3748 gorgeously strange 2 +73348 3748 is deeply concerned with morality 3 +73349 3748 deeply concerned with morality 3 +73350 3748 concerned with morality 2 +73351 3748 with morality 3 +73352 3748 it refuses to spell things out for viewers 2 +73353 3748 refuses to spell things out for viewers 1 +73354 3748 to spell things out for viewers 2 +73355 3748 spell things out for viewers 1 +73356 3748 spell things out 2 +73357 3748 spell things 2 +73358 3748 for viewers 2 +73359 3749 Its spirit of iconoclastic abandon -- however canned -- makes for unexpectedly giddy viewing . 3 +73360 3749 Its spirit of iconoclastic abandon 1 +73361 3749 Its spirit 2 +73362 3749 of iconoclastic abandon 2 +73363 3749 iconoclastic abandon 2 +73364 3749 -- however canned -- makes for unexpectedly giddy viewing . 3 +73365 3749 -- however canned -- 1 +73366 3749 however canned -- 1 +73367 3749 however canned 2 +73368 3749 canned 2 +73369 3749 makes for unexpectedly giddy viewing . 3 +73370 3749 makes for unexpectedly giddy viewing 3 +73371 3749 for unexpectedly giddy viewing 1 +73372 3749 unexpectedly giddy viewing 3 +73373 3749 giddy viewing 3 +73374 3750 ... a great , participatory spectator sport . ' 3 +73375 3750 a great , participatory spectator sport . ' 3 +73376 3750 a great 3 +73377 3750 , participatory spectator sport . ' 2 +73378 3750 participatory spectator sport . ' 2 +73379 3750 participatory spectator 2 +73380 3750 participatory 2 +73381 3750 spectator 3 +73382 3750 sport . ' 2 +73383 3750 sport . 2 +73384 3751 It 's the element of condescension , as the filmmakers look down on their working-class subjects from their lofty perch , that finally makes Sex With Strangers , which opens today in the New York metropolitan area , so distasteful . 0 +73385 3751 's the element of condescension , as the filmmakers look down on their working-class subjects from their lofty perch , that finally makes Sex With Strangers , which opens today in the New York metropolitan area , so distasteful . 0 +73386 3751 's the element of condescension , as the filmmakers look down on their working-class subjects from their lofty perch , that finally makes Sex With Strangers , which opens today in the New York metropolitan area , so distasteful 0 +73387 3751 's the element of condescension , 1 +73388 3751 's the element of condescension 2 +73389 3751 the element of condescension 2 +73390 3751 of condescension 2 +73391 3751 condescension 2 +73392 3751 as the filmmakers look down on their working-class subjects from their lofty perch , that finally makes Sex With Strangers , which opens today in the New York metropolitan area , so distasteful 0 +73393 3751 the filmmakers look down on their working-class subjects from their lofty perch , that finally makes Sex With Strangers , which opens today in the New York metropolitan area , so distasteful 0 +73394 3751 look down on their working-class subjects from their lofty perch , that finally makes Sex With Strangers , which opens today in the New York metropolitan area , so distasteful 1 +73395 3751 look down on their working-class subjects 2 +73396 3751 down on their working-class subjects 1 +73397 3751 on their working-class subjects 2 +73398 3751 their working-class subjects 2 +73399 3751 working-class subjects 3 +73400 3751 from their lofty perch , that finally makes Sex With Strangers , which opens today in the New York metropolitan area , so distasteful 2 +73401 3751 their lofty perch , that finally makes Sex With Strangers , which opens today in the New York metropolitan area , so distasteful 1 +73402 3751 their lofty perch , 2 +73403 3751 their lofty perch 3 +73404 3751 lofty perch 2 +73405 3751 lofty 3 +73406 3751 perch 2 +73407 3751 that finally makes Sex With Strangers , which opens today in the New York metropolitan area , so distasteful 0 +73408 3751 finally makes Sex With Strangers , which opens today in the New York metropolitan area , so distasteful 0 +73409 3751 makes Sex With Strangers , which opens today in the New York metropolitan area , so distasteful 1 +73410 3751 makes Sex 2 +73411 3751 With Strangers , which opens today in the New York metropolitan area , so distasteful 2 +73412 3751 Strangers , which opens today in the New York metropolitan area , so distasteful 0 +73413 3751 Strangers , 2 +73414 3751 which opens today in the New York metropolitan area , so distasteful 1 +73415 3751 opens today in the New York metropolitan area , so distasteful 0 +73416 3751 opens today in the New York metropolitan area , 2 +73417 3751 opens today in the New York metropolitan area 3 +73418 3751 in the New York metropolitan area 2 +73419 3751 the New York metropolitan area 2 +73420 3751 New York metropolitan area 3 +73421 3751 York metropolitan area 2 +73422 3751 metropolitan area 2 +73423 3751 metropolitan 2 +73424 3751 so distasteful 0 +73425 3752 Ararat feels like a book report 1 +73426 3752 feels like a book report 1 +73427 3752 like a book report 1 +73428 3752 a book report 2 +73429 3753 it 's refreshing to see a movie that embraces its old-fashioned themes and in the process comes out looking like something wholly original . 4 +73430 3753 's refreshing to see a movie that embraces its old-fashioned themes and in the process comes out looking like something wholly original . 4 +73431 3753 's refreshing to see a movie that embraces its old-fashioned themes and in the process comes out looking like something wholly original 3 +73432 3753 refreshing to see a movie that embraces its old-fashioned themes and in the process comes out looking like something wholly original 4 +73433 3753 to see a movie that embraces its old-fashioned themes and in the process comes out looking like something wholly original 3 +73434 3753 see a movie that embraces its old-fashioned themes and in the process comes out looking like something wholly original 3 +73435 3753 see a movie 3 +73436 3753 that embraces its old-fashioned themes and in the process comes out looking like something wholly original 3 +73437 3753 that embraces its old-fashioned themes and 3 +73438 3753 that embraces its old-fashioned themes 3 +73439 3753 embraces its old-fashioned themes 3 +73440 3753 its old-fashioned themes 2 +73441 3753 old-fashioned themes 3 +73442 3753 in the process comes out looking like something wholly original 3 +73443 3753 the process comes out looking like something wholly original 3 +73444 3753 comes out looking like something wholly original 4 +73445 3753 comes out 2 +73446 3753 looking like something wholly original 3 +73447 3753 like something wholly original 4 +73448 3753 something wholly original 3 +73449 3753 wholly original 2 +73450 3754 Its metaphors are opaque enough to avoid didacticism , and the film succeeds as an emotionally accessible , almost mystical work . 3 +73451 3754 Its metaphors are opaque enough to avoid didacticism , and the film succeeds as an emotionally accessible , almost mystical work 4 +73452 3754 Its metaphors are opaque enough to avoid didacticism , and 3 +73453 3754 Its metaphors are opaque enough to avoid didacticism , 2 +73454 3754 Its metaphors are opaque enough to avoid didacticism 2 +73455 3754 Its metaphors 3 +73456 3754 are opaque enough to avoid didacticism 2 +73457 3754 opaque enough to avoid didacticism 2 +73458 3754 opaque enough 2 +73459 3754 to avoid didacticism 2 +73460 3754 avoid didacticism 2 +73461 3754 the film succeeds as an emotionally accessible , almost mystical work 3 +73462 3754 succeeds as an emotionally accessible , almost mystical work 4 +73463 3754 as an emotionally accessible , almost mystical work 4 +73464 3754 an emotionally accessible , almost mystical work 4 +73465 3754 emotionally accessible , almost mystical work 3 +73466 3754 emotionally accessible 2 +73467 3754 , almost mystical work 4 +73468 3754 almost mystical work 3 +73469 3754 almost mystical 2 +73470 3755 -LRB- Evans is -RRB- a fascinating character , and deserves a better vehicle than this facetious smirk of a movie . 1 +73471 3755 Evans is -RRB- a fascinating character , and deserves a better vehicle than this facetious smirk of a movie . 1 +73472 3755 is -RRB- a fascinating character , and deserves a better vehicle than this facetious smirk of a movie . 0 +73473 3755 is -RRB- a fascinating character , and deserves a better vehicle than this facetious smirk of a movie 1 +73474 3755 is -RRB- a fascinating character , and 3 +73475 3755 is -RRB- a fascinating character , 4 +73476 3755 is -RRB- a fascinating character 3 +73477 3755 a fascinating character 3 +73478 3755 a fascinating 4 +73479 3755 deserves a better vehicle than this facetious smirk of a movie 0 +73480 3755 deserves a better vehicle 1 +73481 3755 a better vehicle 3 +73482 3755 better vehicle 3 +73483 3755 than this facetious smirk of a movie 0 +73484 3755 this facetious smirk of a movie 2 +73485 3755 this facetious smirk 1 +73486 3755 facetious smirk 2 +73487 3755 facetious 1 +73488 3756 Silly , loud and goofy . 2 +73489 3756 Silly , loud and goofy 3 +73490 3756 Silly , 2 +73491 3756 loud and goofy 1 +73492 3757 As underwater ghost stories go , Below casts its spooky net out into the Atlantic Ocean and spits it back , grizzled and charred , somewhere northwest of the Bermuda Triangle . 1 +73493 3757 As underwater ghost stories go 2 +73494 3757 underwater ghost stories go 2 +73495 3757 underwater ghost stories 2 +73496 3757 underwater 2 +73497 3757 ghost stories 2 +73498 3757 , Below casts its spooky net out into the Atlantic Ocean and spits it back , grizzled and charred , somewhere northwest of the Bermuda Triangle . 3 +73499 3757 Below casts its spooky net out into the Atlantic Ocean and spits it back , grizzled and charred , somewhere northwest of the Bermuda Triangle . 3 +73500 3757 casts its spooky net out into the Atlantic Ocean and spits it back , grizzled and charred , somewhere northwest of the Bermuda Triangle . 2 +73501 3757 casts its spooky net out into the Atlantic Ocean and spits it back , grizzled and charred , somewhere northwest of the Bermuda Triangle 2 +73502 3757 casts its spooky net out into the Atlantic Ocean and spits it back , grizzled and 2 +73503 3757 casts its spooky net out into the Atlantic Ocean and spits it back , grizzled 2 +73504 3757 casts its spooky net out into the Atlantic Ocean and spits it back , 3 +73505 3757 casts its spooky net out into the Atlantic Ocean and spits it back 2 +73506 3757 casts its spooky net out into the Atlantic Ocean and 2 +73507 3757 casts its spooky net out into the Atlantic Ocean 2 +73508 3757 casts its spooky net out 2 +73509 3757 casts its spooky net 3 +73510 3757 its spooky net 2 +73511 3757 spooky net 2 +73512 3757 net 2 +73513 3757 into the Atlantic Ocean 2 +73514 3757 the Atlantic Ocean 2 +73515 3757 Atlantic Ocean 2 +73516 3757 Atlantic 2 +73517 3757 spits it back 2 +73518 3757 spits it 2 +73519 3757 grizzled 2 +73520 3757 charred , somewhere northwest of the Bermuda Triangle 1 +73521 3757 charred , somewhere northwest 2 +73522 3757 charred , 2 +73523 3757 charred 2 +73524 3757 somewhere northwest 2 +73525 3757 northwest 2 +73526 3757 of the Bermuda Triangle 2 +73527 3757 the Bermuda Triangle 2 +73528 3757 Bermuda Triangle 2 +73529 3757 Bermuda 2 +73530 3758 A moving and important film . 4 +73531 3758 A moving and important film 4 +73532 3758 moving and important film 3 +73533 3758 moving and important 4 +73534 3759 You wo n't exactly know what 's happening but you 'll be blissfully exhausted . 2 +73535 3759 wo n't exactly know what 's happening but you 'll be blissfully exhausted . 3 +73536 3759 wo n't exactly know what 's happening but you 'll be blissfully exhausted 2 +73537 3759 wo n't exactly 2 +73538 3759 know what 's happening but you 'll be blissfully exhausted 3 +73539 3759 what 's happening but you 'll be blissfully exhausted 3 +73540 3759 's happening but you 'll be blissfully exhausted 3 +73541 3759 happening but you 'll be blissfully exhausted 3 +73542 3759 but you 'll be blissfully exhausted 3 +73543 3759 you 'll be blissfully exhausted 2 +73544 3759 'll be blissfully exhausted 2 +73545 3759 be blissfully exhausted 3 +73546 3759 blissfully exhausted 3 +73547 3759 blissfully 3 +73548 3759 exhausted 1 +73549 3760 I realized that no matter how fantastic Reign of Fire looked , its story was making no sense at all . 2 +73550 3760 realized that no matter how fantastic Reign of Fire looked , its story was making no sense at all . 1 +73551 3760 realized that no matter how fantastic Reign of Fire looked , its story was making no sense at all 1 +73552 3760 that no matter how fantastic Reign of Fire looked , its story was making no sense at all 1 +73553 3760 no matter how fantastic Reign of Fire looked , its story was making no sense at all 1 +73554 3760 no matter how fantastic Reign of Fire looked 2 +73555 3760 how fantastic Reign of Fire looked 4 +73556 3760 fantastic Reign of Fire looked 3 +73557 3760 fantastic Reign of Fire 4 +73558 3760 fantastic Reign 3 +73559 3760 , its story was making no sense at all 1 +73560 3760 its story was making no sense at all 0 +73561 3760 was making no sense at all 1 +73562 3760 making no sense at all 1 +73563 3760 making no sense 1 +73564 3760 at all 2 +73565 3761 Heavy with flabby rolls of typical Toback machinations . 1 +73566 3761 Heavy with flabby rolls of typical Toback machinations 1 +73567 3761 Heavy with flabby rolls 2 +73568 3761 with flabby rolls 1 +73569 3761 flabby rolls 2 +73570 3761 of typical Toback machinations 2 +73571 3761 typical Toback machinations 1 +73572 3761 Toback machinations 2 +73573 3761 machinations 2 +73574 3762 The world needs more filmmakers with passionate enthusiasms like Martin Scorsese . 4 +73575 3762 needs more filmmakers with passionate enthusiasms like Martin Scorsese . 3 +73576 3762 needs more filmmakers with passionate enthusiasms like Martin Scorsese 3 +73577 3762 needs more filmmakers 2 +73578 3762 more filmmakers 2 +73579 3762 with passionate enthusiasms like Martin Scorsese 3 +73580 3762 passionate enthusiasms like Martin Scorsese 3 +73581 3762 passionate enthusiasms 3 +73582 3762 enthusiasms 2 +73583 3762 like Martin Scorsese 2 +73584 3762 Martin Scorsese 2 +73585 3763 Russell lacks the visual panache , the comic touch , and perhaps the budget of Sommers 's title-bout features . 1 +73586 3763 lacks the visual panache , the comic touch , and perhaps the budget of Sommers 's title-bout features . 1 +73587 3763 lacks the visual panache , the comic touch , and perhaps the budget of Sommers 's title-bout features 1 +73588 3763 the visual panache , the comic touch , and perhaps the budget of Sommers 's title-bout features 2 +73589 3763 the visual panache , the comic touch , and 4 +73590 3763 the visual panache , the comic touch , 3 +73591 3763 the visual panache , the comic touch 2 +73592 3763 the visual panache , 2 +73593 3763 the visual panache 3 +73594 3763 visual panache 2 +73595 3763 panache 2 +73596 3763 the comic touch 3 +73597 3763 comic touch 3 +73598 3763 perhaps the budget of Sommers 's title-bout features 3 +73599 3763 perhaps the budget 2 +73600 3763 of Sommers 's title-bout features 2 +73601 3763 Sommers 's title-bout features 2 +73602 3763 Sommers 's 2 +73603 3763 Sommers 2 +73604 3763 title-bout features 2 +73605 3763 title-bout 2 +73606 3764 And educational ! 3 +73607 3764 educational ! 3 +73608 3764 educational 2 +73609 3765 It 's dark but has wonderfully funny moments ; you care about the characters ; and the action and special effects are first-rate . 4 +73610 3765 It 's dark but has wonderfully funny moments ; you care about the characters ; and the action and special effects are first-rate 4 +73611 3765 It 's dark but has wonderfully funny moments ; you care about the characters ; and 3 +73612 3765 It 's dark but has wonderfully funny moments ; you care about the characters ; 3 +73613 3765 It 's dark but has wonderfully funny moments ; you care about the characters 3 +73614 3765 It 's dark but has wonderfully funny moments ; 3 +73615 3765 It 's dark but has wonderfully funny moments 3 +73616 3765 's dark but has wonderfully funny moments 2 +73617 3765 's dark but 2 +73618 3765 's dark 2 +73619 3765 has wonderfully funny moments 3 +73620 3765 wonderfully funny moments 3 +73621 3765 wonderfully funny 3 +73622 3765 you care about the characters 3 +73623 3765 care about the characters 2 +73624 3765 about the characters 2 +73625 3765 the action and special effects are first-rate 2 +73626 3765 the action and special effects 3 +73627 3765 are first-rate 4 +73628 3766 It desperately wants to be a wacky , screwball comedy , but the most screwy thing here is how so many talented people were convinced to waste their time . 0 +73629 3766 It desperately wants to be a wacky , screwball comedy , but the most screwy thing here is how so many talented people were convinced to waste their time 0 +73630 3766 It desperately wants to be a wacky , screwball comedy , but 1 +73631 3766 It desperately wants to be a wacky , screwball comedy , 2 +73632 3766 It desperately wants to be a wacky , screwball comedy 1 +73633 3766 desperately wants to be a wacky , screwball comedy 2 +73634 3766 wants to be a wacky , screwball comedy 2 +73635 3766 to be a wacky , screwball comedy 3 +73636 3766 be a wacky , screwball comedy 2 +73637 3766 a wacky , screwball comedy 3 +73638 3766 wacky , screwball comedy 2 +73639 3766 , screwball comedy 2 +73640 3766 screwball comedy 2 +73641 3766 screwball 2 +73642 3766 the most screwy thing here is how so many talented people were convinced to waste their time 1 +73643 3766 the most screwy thing 2 +73644 3766 most screwy thing 2 +73645 3766 screwy thing 2 +73646 3766 screwy 2 +73647 3766 here is how so many talented people were convinced to waste their time 0 +73648 3766 is how so many talented people were convinced to waste their time 0 +73649 3766 how so many talented people were convinced to waste their time 0 +73650 3766 so many talented people were convinced to waste their time 0 +73651 3766 so many talented people 3 +73652 3766 many talented people 3 +73653 3766 talented people 3 +73654 3766 were convinced to waste their time 1 +73655 3766 convinced to waste their time 2 +73656 3766 to waste their time 1 +73657 3767 There 's nothing exactly wrong here , but there 's not nearly enough that 's right . 1 +73658 3767 There 's nothing exactly wrong here , but there 's not nearly enough that 's right 2 +73659 3767 There 's nothing exactly wrong here , but 1 +73660 3767 There 's nothing exactly wrong here , 2 +73661 3767 There 's nothing exactly wrong here 3 +73662 3767 's nothing exactly wrong here 2 +73663 3767 's nothing exactly wrong 2 +73664 3767 nothing exactly wrong 2 +73665 3767 exactly wrong 1 +73666 3767 there 's not nearly enough that 's right 1 +73667 3767 's not nearly enough that 's right 0 +73668 3767 's not nearly enough 1 +73669 3767 nearly enough 2 +73670 3768 I do n't even care that there 's no plot in this Antonio Banderas-Lucy Liu faceoff . 2 +73671 3768 do n't even care that there 's no plot in this Antonio Banderas-Lucy Liu faceoff . 2 +73672 3768 do n't even care that there 's no plot in this Antonio Banderas-Lucy Liu faceoff 3 +73673 3768 do n't even 2 +73674 3768 care that there 's no plot in this Antonio Banderas-Lucy Liu faceoff 2 +73675 3768 that there 's no plot in this Antonio Banderas-Lucy Liu faceoff 0 +73676 3768 there 's no plot in this Antonio Banderas-Lucy Liu faceoff 0 +73677 3768 's no plot in this Antonio Banderas-Lucy Liu faceoff 1 +73678 3768 no plot in this Antonio Banderas-Lucy Liu faceoff 0 +73679 3768 no plot 1 +73680 3768 in this Antonio Banderas-Lucy Liu faceoff 2 +73681 3768 this Antonio Banderas-Lucy Liu faceoff 2 +73682 3768 Antonio Banderas-Lucy Liu faceoff 2 +73683 3768 Antonio 2 +73684 3768 Banderas-Lucy Liu faceoff 2 +73685 3768 Banderas-Lucy 2 +73686 3768 Liu faceoff 2 +73687 3768 Liu 2 +73688 3768 faceoff 2 +73689 3769 This movie feel more like a non-stop cry for attention , than an attempt at any kind of satisfying entertainment . 0 +73690 3769 feel more like a non-stop cry for attention , than an attempt at any kind of satisfying entertainment . 1 +73691 3769 feel more like a non-stop cry for attention , than an attempt at any kind of satisfying entertainment 0 +73692 3769 feel more like a non-stop cry for attention , 2 +73693 3769 feel more like a non-stop cry for attention 1 +73694 3769 feel more 2 +73695 3769 like a non-stop cry for attention 1 +73696 3769 a non-stop cry for attention 1 +73697 3769 a non-stop cry 2 +73698 3769 non-stop cry 2 +73699 3769 non-stop 2 +73700 3769 for attention 2 +73701 3769 than an attempt at any kind of satisfying entertainment 2 +73702 3769 an attempt at any kind of satisfying entertainment 2 +73703 3769 at any kind of satisfying entertainment 2 +73704 3769 any kind of satisfying entertainment 2 +73705 3769 any kind 2 +73706 3769 of satisfying entertainment 3 +73707 3769 satisfying entertainment 3 +73708 3770 Hardly an objective documentary , but it 's great cinematic polemic ... love Moore or loathe him , you 've got to admire ... the intensity with which he 's willing to express his convictions . 4 +73709 3770 Hardly an objective documentary , but it 's great cinematic polemic ... love Moore or loathe him , you 've got to admire ... the intensity with which he 's willing to express his convictions 4 +73710 3770 Hardly an objective documentary , but it 's great cinematic polemic ... 3 +73711 3770 Hardly an objective documentary , but it 's great cinematic polemic 3 +73712 3770 Hardly an objective documentary 1 +73713 3770 an objective documentary 3 +73714 3770 objective documentary 3 +73715 3770 , but it 's great cinematic polemic 3 +73716 3770 but it 's great cinematic polemic 3 +73717 3770 it 's great cinematic polemic 4 +73718 3770 's great cinematic polemic 3 +73719 3770 great cinematic polemic 3 +73720 3770 cinematic polemic 2 +73721 3770 polemic 2 +73722 3770 love Moore or loathe him , you 've got to admire ... the intensity with which he 's willing to express his convictions 3 +73723 3770 love Moore or loathe him 2 +73724 3770 love Moore or 3 +73725 3770 love Moore 2 +73726 3770 loathe him 1 +73727 3770 loathe 1 +73728 3770 , you 've got to admire ... the intensity with which he 's willing to express his convictions 3 +73729 3770 you 've got to admire ... the intensity with which he 's willing to express his convictions 3 +73730 3770 've got to admire ... the intensity with which he 's willing to express his convictions 3 +73731 3770 got to admire ... the intensity with which he 's willing to express his convictions 4 +73732 3770 to admire ... the intensity with which he 's willing to express his convictions 3 +73733 3770 admire ... the intensity with which he 's willing to express his convictions 3 +73734 3770 admire ... 3 +73735 3770 the intensity with which he 's willing to express his convictions 3 +73736 3770 with which he 's willing to express his convictions 2 +73737 3770 he 's willing to express his convictions 3 +73738 3770 's willing to express his convictions 3 +73739 3770 willing to express his convictions 1 +73740 3770 to express his convictions 2 +73741 3770 express his convictions 2 +73742 3770 his convictions 2 +73743 3770 convictions 2 +73744 3771 I liked this film a lot ... 3 +73745 3771 liked this film a lot ... 4 +73746 3771 liked this film a lot 4 +73747 3771 this film a lot 2 +73748 3772 Not only is entry number twenty the worst of the Brosnan bunch , it 's one of the worst of the entire franchise . 0 +73749 3772 Not only is entry number twenty the worst of the Brosnan bunch 1 +73750 3772 only is entry number twenty the worst of the Brosnan bunch 1 +73751 3772 is entry number twenty the worst of the Brosnan bunch 1 +73752 3772 entry number twenty the worst of the Brosnan bunch 0 +73753 3772 entry number 2 +73754 3772 twenty the worst of the Brosnan bunch 1 +73755 3772 the worst of the Brosnan bunch 1 +73756 3772 of the Brosnan bunch 2 +73757 3772 the Brosnan bunch 2 +73758 3772 Brosnan bunch 2 +73759 3772 , it 's one of the worst of the entire franchise . 0 +73760 3772 it 's one of the worst of the entire franchise . 0 +73761 3772 's one of the worst of the entire franchise . 0 +73762 3772 's one of the worst of the entire franchise 0 +73763 3772 one of the worst of the entire franchise 1 +73764 3772 of the worst of the entire franchise 0 +73765 3772 the worst of the entire franchise 0 +73766 3772 of the entire franchise 2 +73767 3772 the entire franchise 2 +73768 3772 entire franchise 2 +73769 3773 Largely , this is a movie that also does it by the numbers . 2 +73770 3773 , this is a movie that also does it by the numbers . 2 +73771 3773 this is a movie that also does it by the numbers . 2 +73772 3773 is a movie that also does it by the numbers . 2 +73773 3773 is a movie that also does it by the numbers 3 +73774 3773 a movie that also does it by the numbers 2 +73775 3773 that also does it by the numbers 2 +73776 3773 also does it by the numbers 2 +73777 3773 does it by the numbers 2 +73778 3773 by the numbers 2 +73779 3773 the numbers 2 +73780 3774 We never feel anything for these characters , and as a result the film is basically just a curiosity . 1 +73781 3774 We never feel anything for these characters , and as a result the film is basically just a curiosity 1 +73782 3774 We never feel anything for these characters , and 1 +73783 3774 We never feel anything for these characters , 1 +73784 3774 We never feel anything for these characters 0 +73785 3774 never feel anything for these characters 1 +73786 3774 feel anything for these characters 2 +73787 3774 anything for these characters 2 +73788 3774 for these characters 2 +73789 3774 as a result the film is basically just a curiosity 2 +73790 3774 as a result 2 +73791 3774 a result 2 +73792 3774 the film is basically just a curiosity 2 +73793 3774 is basically just a curiosity 1 +73794 3774 is basically 2 +73795 3774 just a curiosity 2 +73796 3774 a curiosity 2 +73797 3775 I suspect that you 'll be as bored watching Morvern Callar as the characters are in it . 1 +73798 3775 suspect that you 'll be as bored watching Morvern Callar as the characters are in it . 0 +73799 3775 suspect that you 'll be as bored watching Morvern Callar as the characters are in it 0 +73800 3775 that you 'll be as bored watching Morvern Callar as the characters are in it 1 +73801 3775 you 'll be as bored watching Morvern Callar as the characters are in it 0 +73802 3775 'll be as bored watching Morvern Callar as the characters are in it 0 +73803 3775 be as bored watching Morvern Callar as the characters are in it 1 +73804 3775 be as bored watching Morvern Callar 1 +73805 3775 be as bored 1 +73806 3775 as bored 0 +73807 3775 watching Morvern Callar 2 +73808 3775 Morvern Callar 2 +73809 3775 Morvern 2 +73810 3775 Callar 2 +73811 3775 as the characters are in it 2 +73812 3775 the characters are in it 2 +73813 3775 are in it 2 +73814 3776 Stealing Harvard ca n't even do that much . 1 +73815 3776 ca n't even do that much . 1 +73816 3776 ca n't even do that much 1 +73817 3776 ca n't even 1 +73818 3776 do that much 2 +73819 3776 that much 2 +73820 3777 I 'm sure mainstream audiences will be baffled , but , for those with at least a minimal appreciation of Woolf and Clarissa Dalloway , The Hours represents two of those well spent . 3 +73821 3777 I 'm sure mainstream audiences will be baffled , but , for those with at least a minimal appreciation of Woolf and Clarissa Dalloway , The Hours represents two of those well spent 2 +73822 3777 I 'm sure mainstream audiences will be baffled , but 2 +73823 3777 I 'm sure mainstream audiences will be baffled , 1 +73824 3777 I 'm sure mainstream audiences will be baffled 2 +73825 3777 'm sure mainstream audiences will be baffled 1 +73826 3777 sure mainstream audiences will be baffled 1 +73827 3777 mainstream audiences will be baffled 2 +73828 3777 will be baffled 2 +73829 3777 be baffled 1 +73830 3777 baffled 2 +73831 3777 , for those with at least a minimal appreciation of Woolf and Clarissa Dalloway , The Hours represents two of those well spent 3 +73832 3777 for those with at least a minimal appreciation of Woolf and Clarissa Dalloway , The Hours represents two of those well spent 3 +73833 3777 for those with at least a minimal appreciation of Woolf and Clarissa Dalloway 2 +73834 3777 those with at least a minimal appreciation of Woolf and Clarissa Dalloway 2 +73835 3777 with at least a minimal appreciation of Woolf and Clarissa Dalloway 2 +73836 3777 at least a minimal appreciation of Woolf and Clarissa Dalloway 2 +73837 3777 at least a minimal appreciation 3 +73838 3777 a minimal appreciation 2 +73839 3777 minimal appreciation 1 +73840 3777 of Woolf and Clarissa Dalloway 2 +73841 3777 Woolf and Clarissa Dalloway 2 +73842 3777 Woolf 2 +73843 3777 and Clarissa Dalloway 2 +73844 3777 Clarissa Dalloway 2 +73845 3777 Clarissa 2 +73846 3777 Dalloway 2 +73847 3777 , The Hours represents two of those well spent 3 +73848 3777 The Hours represents two of those well spent 4 +73849 3777 represents two of those well spent 3 +73850 3777 two of those well spent 3 +73851 3777 of those well spent 2 +73852 3777 those well spent 2 +73853 3777 well spent 3 +73854 3778 We assume he had a bad run in the market or a costly divorce , because there is no earthly reason other than money why this distinguished actor would stoop so low . 0 +73855 3778 assume he had a bad run in the market or a costly divorce , because there is no earthly reason other than money why this distinguished actor would stoop so low . 0 +73856 3778 assume he had a bad run in the market or a costly divorce , because there is no earthly reason other than money why this distinguished actor would stoop so low 0 +73857 3778 he had a bad run in the market or a costly divorce , because there is no earthly reason other than money why this distinguished actor would stoop so low 0 +73858 3778 had a bad run in the market or a costly divorce , because there is no earthly reason other than money why this distinguished actor would stoop so low 0 +73859 3778 had a bad run in the market or a costly divorce , 1 +73860 3778 had a bad run in the market or a costly divorce 1 +73861 3778 a bad run in the market or a costly divorce 1 +73862 3778 a bad run 0 +73863 3778 bad run 1 +73864 3778 in the market or a costly divorce 2 +73865 3778 the market or a costly divorce 2 +73866 3778 the market or 2 +73867 3778 a costly divorce 2 +73868 3778 costly divorce 2 +73869 3778 costly 2 +73870 3778 divorce 2 +73871 3778 because there is no earthly reason other than money why this distinguished actor would stoop so low 0 +73872 3778 there is no earthly reason other than money why this distinguished actor would stoop so low 0 +73873 3778 is no earthly reason other than money why this distinguished actor would stoop so low 0 +73874 3778 no earthly reason other than money why this distinguished actor would stoop so low 0 +73875 3778 no earthly reason 1 +73876 3778 earthly reason 2 +73877 3778 earthly 3 +73878 3778 other than money why this distinguished actor would stoop so low 0 +73879 3778 than money why this distinguished actor would stoop so low 1 +73880 3778 money why this distinguished actor would stoop so low 0 +73881 3778 why this distinguished actor would stoop so low 1 +73882 3778 this distinguished actor would stoop so low 0 +73883 3778 this distinguished actor 3 +73884 3778 distinguished actor 4 +73885 3778 distinguished 3 +73886 3778 would stoop so low 1 +73887 3778 stoop so low 1 +73888 3778 stoop 2 +73889 3779 Amid the new populist comedies that underscore the importance of family tradition and familial community , one would be hard-pressed to find a movie with a bigger , fatter heart than Barbershop . 4 +73890 3779 Amid the new populist comedies that underscore the importance of family tradition and familial community 3 +73891 3779 the new populist comedies that underscore the importance of family tradition and familial community 3 +73892 3779 the new populist comedies 2 +73893 3779 new populist comedies 2 +73894 3779 populist comedies 2 +73895 3779 populist 2 +73896 3779 that underscore the importance of family tradition and familial community 3 +73897 3779 underscore the importance of family tradition and familial community 3 +73898 3779 underscore 2 +73899 3779 the importance of family tradition and familial community 2 +73900 3779 of family tradition and familial community 3 +73901 3779 family tradition and familial community 2 +73902 3779 family tradition and 2 +73903 3779 family tradition 2 +73904 3779 familial community 2 +73905 3779 , one would be hard-pressed to find a movie with a bigger , fatter heart than Barbershop . 4 +73906 3779 one would be hard-pressed to find a movie with a bigger , fatter heart than Barbershop . 4 +73907 3779 would be hard-pressed to find a movie with a bigger , fatter heart than Barbershop . 3 +73908 3779 would be hard-pressed to find a movie with a bigger , fatter heart than Barbershop 3 +73909 3779 be hard-pressed to find a movie with a bigger , fatter heart than Barbershop 3 +73910 3779 hard-pressed to find a movie with a bigger , fatter heart than Barbershop 3 +73911 3779 hard-pressed 1 +73912 3779 to find a movie with a bigger , fatter heart than Barbershop 3 +73913 3779 find a movie with a bigger , fatter heart than Barbershop 3 +73914 3779 find a movie with a bigger , fatter heart 2 +73915 3779 a movie with a bigger , fatter heart 3 +73916 3779 with a bigger , fatter heart 2 +73917 3779 a bigger , fatter heart 2 +73918 3779 bigger , fatter heart 3 +73919 3779 , fatter heart 2 +73920 3779 fatter heart 2 +73921 3779 fatter 2 +73922 3779 than Barbershop 2 +73923 3780 There are a few modest laughs , but certainly no thrills . 2 +73924 3780 are a few modest laughs , but certainly no thrills . 1 +73925 3780 are a few modest laughs , but certainly no thrills 1 +73926 3780 are a few modest laughs , but certainly no 1 +73927 3780 are a few modest laughs , but 1 +73928 3780 are a few modest laughs , 3 +73929 3780 are a few modest laughs 3 +73930 3780 a few modest laughs 3 +73931 3780 few modest laughs 2 +73932 3780 modest laughs 3 +73933 3780 certainly no 3 +73934 3781 Gay or straight , Kissing Jessica Stein is one of the greatest date movies in years . 4 +73935 3781 Gay or straight 2 +73936 3781 Gay or 2 +73937 3781 , Kissing Jessica Stein is one of the greatest date movies in years . 4 +73938 3781 Kissing Jessica Stein is one of the greatest date movies in years . 4 +73939 3781 is one of the greatest date movies in years . 4 +73940 3781 is one of the greatest date movies in years 4 +73941 3781 one of the greatest date movies in years 4 +73942 3781 of the greatest date movies in years 4 +73943 3781 the greatest date movies in years 4 +73944 3781 the greatest date movies 3 +73945 3781 greatest date movies 4 +73946 3781 date movies 2 +73947 3782 It has its faults , but it is a kind , unapologetic , sweetheart of a movie , and Mandy Moore leaves a positive impression . 3 +73948 3782 It has its faults , but it is a kind , unapologetic , sweetheart of a movie , and Mandy Moore leaves a positive impression 3 +73949 3782 It has its faults , but 1 +73950 3782 It has its faults , 0 +73951 3782 It has its faults 1 +73952 3782 has its faults 1 +73953 3782 its faults 1 +73954 3782 faults 2 +73955 3782 it is a kind , unapologetic , sweetheart of a movie , and Mandy Moore leaves a positive impression 4 +73956 3782 it is a kind , unapologetic , sweetheart of a movie , and 3 +73957 3782 it is a kind , unapologetic , sweetheart of a movie , 4 +73958 3782 it is a kind , unapologetic , sweetheart of a movie 3 +73959 3782 is a kind , unapologetic , sweetheart of a movie 4 +73960 3782 a kind , unapologetic , sweetheart of a movie 3 +73961 3782 a kind , unapologetic , sweetheart 3 +73962 3782 kind , unapologetic , sweetheart 3 +73963 3782 kind , unapologetic , 3 +73964 3782 kind , unapologetic 3 +73965 3782 kind , 3 +73966 3782 unapologetic 2 +73967 3782 sweetheart 4 +73968 3782 Mandy Moore leaves a positive impression 4 +73969 3782 Mandy Moore 2 +73970 3782 Mandy 2 +73971 3782 leaves a positive impression 4 +73972 3782 a positive impression 4 +73973 3782 positive impression 3 +73974 3783 ... bright , intelligent , and humanly funny film . 4 +73975 3783 bright , intelligent , and humanly funny film . 3 +73976 3783 , intelligent , and humanly funny film . 4 +73977 3783 intelligent , and humanly funny film . 4 +73978 3783 intelligent , and humanly funny film 4 +73979 3783 intelligent , and 3 +73980 3783 intelligent , 3 +73981 3783 humanly funny film 3 +73982 3784 I encourage young and old alike to go see this unique and entertaining twist on the classic whale 's tale -- you wo n't be sorry ! 4 +73983 3784 I encourage young and old alike to go see this unique and entertaining twist on the classic whale 's tale -- you wo n't be sorry 4 +73984 3784 I encourage young and old alike to go see this unique and entertaining twist on the classic whale 's tale -- 4 +73985 3784 I encourage young and old alike to go see this unique and entertaining twist on the classic whale 's tale 3 +73986 3784 encourage young and old alike to go see this unique and entertaining twist on the classic whale 's tale 4 +73987 3784 young and old alike to go see this unique and entertaining twist on the classic whale 's tale 4 +73988 3784 young and old 2 +73989 3784 alike to go see this unique and entertaining twist on the classic whale 's tale 3 +73990 3784 to go see this unique and entertaining twist on the classic whale 's tale 3 +73991 3784 go see this unique and entertaining twist on the classic whale 's tale 3 +73992 3784 see this unique and entertaining twist on the classic whale 's tale 3 +73993 3784 this unique and entertaining twist on the classic whale 's tale 3 +73994 3784 this unique and entertaining twist 3 +73995 3784 unique and entertaining twist 3 +73996 3784 unique and entertaining 3 +73997 3784 on the classic whale 's tale 2 +73998 3784 the classic whale 's tale 2 +73999 3784 the classic whale 's 2 +74000 3784 classic whale 's 2 +74001 3784 whale 's 2 +74002 3784 you wo n't be sorry 2 +74003 3784 wo n't be sorry 3 +74004 3784 be sorry 1 +74005 3785 Quitting , however , manages just to be depressing , as the lead actor phones in his autobiographical performance . 1 +74006 3785 , however , manages just to be depressing , as the lead actor phones in his autobiographical performance . 1 +74007 3785 however , manages just to be depressing , as the lead actor phones in his autobiographical performance . 0 +74008 3785 , manages just to be depressing , as the lead actor phones in his autobiographical performance . 2 +74009 3785 manages just to be depressing , as the lead actor phones in his autobiographical performance . 1 +74010 3785 manages just to be depressing , as the lead actor phones in his autobiographical performance 1 +74011 3785 manages just 2 +74012 3785 to be depressing , as the lead actor phones in his autobiographical performance 2 +74013 3785 be depressing , as the lead actor phones in his autobiographical performance 0 +74014 3785 be depressing , 1 +74015 3785 be depressing 1 +74016 3785 as the lead actor phones in his autobiographical performance 2 +74017 3785 the lead actor phones in his autobiographical performance 0 +74018 3785 the lead actor phones 2 +74019 3785 lead actor phones 2 +74020 3785 actor phones 2 +74021 3785 in his autobiographical performance 2 +74022 3785 his autobiographical performance 2 +74023 3785 autobiographical performance 2 +74024 3785 autobiographical 2 +74025 3786 A fine effort , an interesting topic , some intriguing characters and a sad ending . 3 +74026 3786 A fine effort , an interesting topic , some intriguing characters and a sad ending 4 +74027 3786 A fine effort , 3 +74028 3786 A fine effort 4 +74029 3786 fine effort 4 +74030 3786 an interesting topic , some intriguing characters and a sad ending 3 +74031 3786 an interesting topic , some intriguing characters and 3 +74032 3786 an interesting topic , some intriguing characters 3 +74033 3786 an interesting topic , 3 +74034 3786 an interesting topic 3 +74035 3786 interesting topic 3 +74036 3786 some intriguing characters 3 +74037 3786 a sad ending 2 +74038 3786 sad ending 1 +74039 3787 Muddled , trashy and incompetent 2 +74040 3787 Muddled , trashy and 0 +74041 3787 Muddled , trashy 1 +74042 3787 Muddled , 1 +74043 3788 Time Out is existential drama without any of the pretension associated with the term . 3 +74044 3788 is existential drama without any of the pretension associated with the term . 4 +74045 3788 is existential drama without any of the pretension associated with the term 2 +74046 3788 existential drama without any of the pretension associated with the term 3 +74047 3788 existential drama 2 +74048 3788 without any of the pretension associated with the term 3 +74049 3788 any of the pretension associated with the term 2 +74050 3788 of the pretension associated with the term 2 +74051 3788 the pretension associated with the term 2 +74052 3788 the pretension 2 +74053 3788 associated with the term 2 +74054 3788 with the term 2 +74055 3788 the term 2 +74056 3789 And a very rainy day . 2 +74057 3789 a very rainy day . 1 +74058 3789 a very rainy day 1 +74059 3789 a very rainy 2 +74060 3789 very rainy 2 +74061 3789 rainy 2 +74062 3790 Maintains your sympathy for this otherwise challenging soul by letting you share her one-room world for a while . 3 +74063 3790 Maintains your sympathy for this otherwise challenging soul by letting you share her one-room world for a while 3 +74064 3790 Maintains your sympathy for this otherwise challenging soul 3 +74065 3790 your sympathy for this otherwise challenging soul 2 +74066 3790 your sympathy 2 +74067 3790 for this otherwise challenging soul 2 +74068 3790 this otherwise challenging soul 2 +74069 3790 otherwise challenging soul 2 +74070 3790 otherwise challenging 2 +74071 3790 by letting you share her one-room world for a while 3 +74072 3790 letting you share her one-room world for a while 3 +74073 3790 you share her one-room world for a while 2 +74074 3790 share her one-room world for a while 2 +74075 3790 share her one-room world 2 +74076 3790 her one-room world 2 +74077 3790 one-room world 2 +74078 3790 one-room 2 +74079 3791 The story has little wit and no surprises . 1 +74080 3791 has little wit and no surprises . 1 +74081 3791 has little wit and no surprises 2 +74082 3791 little wit and no surprises 0 +74083 3791 little wit and 2 +74084 3791 little wit 1 +74085 3791 no surprises 1 +74086 3792 Decent but dull . 1 +74087 3792 Decent but dull 2 +74088 3792 Decent but 2 +74089 3793 Mr. Deeds is , as comedy goes , very silly -- and in the best way . 4 +74090 3793 Mr. Deeds is , as comedy goes , very silly -- and in the best way 3 +74091 3793 Mr. Deeds is , as comedy goes , very silly -- 3 +74092 3793 Mr. Deeds is , as comedy goes , very silly 2 +74093 3793 is , as comedy goes , very silly 2 +74094 3793 is , as comedy goes , 3 +74095 3793 is , as comedy goes 2 +74096 3793 as comedy goes 2 +74097 3793 comedy goes 3 +74098 3793 and in the best way 3 +74099 3793 in the best way 3 +74100 3793 the best way 3 +74101 3793 best way 3 +74102 3794 The whole thing feels like a ruse , a tactic to cover up the fact that the picture is constructed around a core of flimsy -- or , worse yet , nonexistent -- ideas . 0 +74103 3794 feels like a ruse , a tactic to cover up the fact that the picture is constructed around a core of flimsy -- or , worse yet , nonexistent -- ideas . 0 +74104 3794 feels like a ruse , a tactic to cover up the fact that the picture is constructed around a core of flimsy -- or , worse yet , nonexistent -- ideas 0 +74105 3794 like a ruse , a tactic to cover up the fact that the picture is constructed around a core of flimsy -- or , worse yet , nonexistent -- ideas 0 +74106 3794 a ruse , a tactic to cover up the fact that the picture is constructed around a core of flimsy -- or , worse yet , nonexistent -- ideas 2 +74107 3794 a ruse , 2 +74108 3794 a ruse 2 +74109 3794 ruse 2 +74110 3794 a tactic to cover up the fact that the picture is constructed around a core of flimsy -- or , worse yet , nonexistent -- ideas 0 +74111 3794 tactic to cover up the fact that the picture is constructed around a core of flimsy -- or , worse yet , nonexistent -- ideas 0 +74112 3794 tactic 2 +74113 3794 to cover up the fact that the picture is constructed around a core of flimsy -- or , worse yet , nonexistent -- ideas 0 +74114 3794 cover up the fact that the picture is constructed around a core of flimsy -- or , worse yet , nonexistent -- ideas 0 +74115 3794 cover up the fact 2 +74116 3794 cover up 2 +74117 3794 that the picture is constructed around a core of flimsy -- or , worse yet , nonexistent -- ideas 2 +74118 3794 the picture is constructed around a core of flimsy -- or , worse yet , nonexistent -- ideas 1 +74119 3794 is constructed around a core of flimsy -- or , worse yet , nonexistent -- ideas 1 +74120 3794 constructed around a core of flimsy -- or , worse yet , nonexistent -- ideas 0 +74121 3794 around a core of flimsy -- or , worse yet , nonexistent -- ideas 0 +74122 3794 a core of flimsy -- or , worse yet , nonexistent -- ideas 0 +74123 3794 a core 3 +74124 3794 of flimsy -- or , worse yet , nonexistent -- ideas 1 +74125 3794 flimsy -- or , worse yet , nonexistent -- ideas 0 +74126 3794 -- or , worse yet , nonexistent -- ideas 1 +74127 3794 -- or , worse yet , nonexistent -- 2 +74128 3794 or , worse yet , nonexistent -- 1 +74129 3794 , worse yet , nonexistent -- 1 +74130 3794 worse yet , nonexistent -- 2 +74131 3794 worse yet 1 +74132 3794 , nonexistent -- 2 +74133 3794 nonexistent -- 2 +74134 3794 nonexistent 2 +74135 3795 Go back to sleep . 1 +74136 3795 Go back to sleep 2 +74137 3796 You live the mood rather than savour the story . 3 +74138 3796 live the mood rather than savour the story . 2 +74139 3796 live the mood rather than savour the story 2 +74140 3796 live the mood rather than 2 +74141 3796 live the mood 3 +74142 3796 savour the story 3 +74143 3797 -LRB- A -RRB- painfully flat gross-out comedy ... 1 +74144 3797 -LRB- A -RRB- painfully flat gross-out comedy 1 +74145 3797 painfully flat gross-out comedy 1 +74146 3797 painfully flat 0 +74147 3798 Bean drops the ball too many times ... hoping the nifty premise will create enough interest to make up for an unfocused screenplay . 1 +74148 3798 Bean drops the ball too many times ... hoping the nifty premise will create enough interest to make up for an unfocused screenplay 1 +74149 3798 Bean drops the ball too many times ... 0 +74150 3798 Bean drops the ball too many times 0 +74151 3798 Bean 2 +74152 3798 drops the ball too many times 1 +74153 3798 drops the ball 0 +74154 3798 drops 2 +74155 3798 the ball 2 +74156 3798 too many times 2 +74157 3798 hoping the nifty premise will create enough interest to make up for an unfocused screenplay 1 +74158 3798 hoping the nifty premise 2 +74159 3798 the nifty premise 3 +74160 3798 nifty premise 3 +74161 3798 will create enough interest to make up for an unfocused screenplay 3 +74162 3798 create enough interest to make up for an unfocused screenplay 2 +74163 3798 create enough interest 2 +74164 3798 enough interest 3 +74165 3798 to make up for an unfocused screenplay 2 +74166 3798 make up for an unfocused screenplay 1 +74167 3798 for an unfocused screenplay 1 +74168 3798 an unfocused screenplay 2 +74169 3798 unfocused screenplay 1 +74170 3799 Grating and tedious . 1 +74171 3799 Grating and tedious 0 +74172 3799 Grating and 2 +74173 3800 Utter mush ... conceited pap . 0 +74174 3800 Utter mush ... conceited pap 0 +74175 3800 Utter mush ... 0 +74176 3800 Utter mush 0 +74177 3800 mush 1 +74178 3800 conceited pap 1 +74179 3800 conceited 1 +74180 3800 pap 2 +74181 3801 One of the more glaring signs of this movie 's servitude to its superstar is the way it skirts around any scenes that might have required genuine acting from Ms. Spears . 0 +74182 3801 One of the more glaring signs of this movie 's servitude to its superstar 1 +74183 3801 of the more glaring signs of this movie 's servitude to its superstar 2 +74184 3801 the more glaring signs of this movie 's servitude to its superstar 2 +74185 3801 the more glaring signs 2 +74186 3801 more glaring signs 2 +74187 3801 more glaring 2 +74188 3801 glaring 1 +74189 3801 of this movie 's servitude to its superstar 2 +74190 3801 this movie 's servitude to its superstar 2 +74191 3801 this movie 's servitude 2 +74192 3801 this movie 's 2 +74193 3801 servitude 2 +74194 3801 to its superstar 2 +74195 3801 its superstar 3 +74196 3801 is the way it skirts around any scenes that might have required genuine acting from Ms. Spears . 1 +74197 3801 is the way it skirts around any scenes that might have required genuine acting from Ms. Spears 1 +74198 3801 the way it skirts around any scenes that might have required genuine acting from Ms. Spears 0 +74199 3801 it skirts around any scenes that might have required genuine acting from Ms. Spears 1 +74200 3801 skirts around any scenes that might have required genuine acting from Ms. Spears 0 +74201 3801 skirts 2 +74202 3801 around any scenes that might have required genuine acting from Ms. Spears 1 +74203 3801 any scenes that might have required genuine acting from Ms. Spears 1 +74204 3801 any scenes 2 +74205 3801 that might have required genuine acting from Ms. Spears 1 +74206 3801 might have required genuine acting from Ms. Spears 1 +74207 3801 have required genuine acting from Ms. Spears 3 +74208 3801 required genuine acting from Ms. Spears 3 +74209 3801 required genuine acting 2 +74210 3801 genuine acting 3 +74211 3801 from Ms. Spears 2 +74212 3801 Ms. Spears 2 +74213 3802 In the spirit of the season , I assign one bright shining star to Roberto Benigni 's Pinocchio -- but I guarantee that no wise men will be following after it . 1 +74214 3802 In the spirit of the season 3 +74215 3802 the spirit of the season 2 +74216 3802 , I assign one bright shining star to Roberto Benigni 's Pinocchio -- but I guarantee that no wise men will be following after it . 1 +74217 3802 I assign one bright shining star to Roberto Benigni 's Pinocchio -- but I guarantee that no wise men will be following after it . 2 +74218 3802 assign one bright shining star to Roberto Benigni 's Pinocchio -- but I guarantee that no wise men will be following after it . 2 +74219 3802 assign one bright shining star to Roberto Benigni 's Pinocchio -- but I guarantee that no wise men will be following after it 2 +74220 3802 assign one bright shining star to Roberto Benigni 's Pinocchio -- but 2 +74221 3802 assign one bright shining star to Roberto Benigni 's Pinocchio -- 3 +74222 3802 assign one bright shining star to Roberto Benigni 's Pinocchio 2 +74223 3802 assign one bright shining star 2 +74224 3802 assign 2 +74225 3802 one bright shining star 3 +74226 3802 bright shining star 3 +74227 3802 shining star 3 +74228 3802 to Roberto Benigni 's Pinocchio 2 +74229 3802 Roberto Benigni 's Pinocchio 2 +74230 3802 Roberto Benigni 's 2 +74231 3802 I guarantee that no wise men will be following after it 1 +74232 3802 guarantee that no wise men will be following after it 1 +74233 3802 that no wise men will be following after it 1 +74234 3802 no wise men will be following after it 2 +74235 3802 no wise men 2 +74236 3802 wise men 3 +74237 3802 will be following after it 3 +74238 3802 be following after it 2 +74239 3802 following after it 2 +74240 3802 after it 2 +74241 3803 This is standard crime drama fare ... instantly forgettable and thoroughly dull . 0 +74242 3803 is standard crime drama fare ... instantly forgettable and thoroughly dull . 0 +74243 3803 is standard crime drama fare ... instantly forgettable and thoroughly dull 0 +74244 3803 standard crime drama fare ... instantly forgettable and thoroughly dull 1 +74245 3803 standard crime drama fare ... 2 +74246 3803 standard crime drama fare 2 +74247 3803 crime drama fare 3 +74248 3803 drama fare 2 +74249 3803 instantly forgettable and thoroughly dull 0 +74250 3803 instantly forgettable and 0 +74251 3803 instantly forgettable 0 +74252 3803 thoroughly dull 0 +74253 3804 Other than a mildly engaging central romance , Hospital is sickly entertainment at best and mind-destroying cinematic pollution at worst . 0 +74254 3804 Other than a mildly engaging central romance , Hospital 1 +74255 3804 than a mildly engaging central romance , Hospital 2 +74256 3804 a mildly engaging central romance , Hospital 2 +74257 3804 a mildly engaging central romance , 2 +74258 3804 a mildly engaging central romance 2 +74259 3804 mildly engaging central romance 3 +74260 3804 mildly engaging 2 +74261 3804 central romance 2 +74262 3804 is sickly entertainment at best and mind-destroying cinematic pollution at worst . 1 +74263 3804 is sickly entertainment at best and mind-destroying cinematic pollution at worst 1 +74264 3804 sickly entertainment at best and mind-destroying cinematic pollution at worst 1 +74265 3804 sickly entertainment at best and mind-destroying cinematic pollution 1 +74266 3804 sickly entertainment 2 +74267 3804 at best and mind-destroying cinematic pollution 1 +74268 3804 best and mind-destroying cinematic pollution 2 +74269 3804 mind-destroying cinematic pollution 1 +74270 3804 mind-destroying 1 +74271 3804 cinematic pollution 1 +74272 3804 pollution 1 +74273 3804 at worst 2 +74274 3805 This overlong infomercial , due out on video before month 's end , is tepid and tedious . 1 +74275 3805 This overlong infomercial , due out on video before month 's end , 2 +74276 3805 This overlong infomercial , due out on video before month 's end 0 +74277 3805 This overlong infomercial , 0 +74278 3805 This overlong infomercial 0 +74279 3805 overlong infomercial 0 +74280 3805 due out on video before month 's end 2 +74281 3805 out on video before month 's end 1 +74282 3805 on video before month 's end 2 +74283 3805 video before month 's end 1 +74284 3805 before month 's end 2 +74285 3805 month 's end 2 +74286 3805 month 's 2 +74287 3805 month 3 +74288 3805 is tepid and tedious . 1 +74289 3805 is tepid and tedious 1 +74290 3805 tepid and tedious 1 +74291 3805 tepid and 1 +74292 3806 Fulford-Wierzbicki ... deftly captures the wise-beyond-her-years teen . 3 +74293 3806 Fulford-Wierzbicki ... deftly captures the wise-beyond-her-years teen 2 +74294 3806 Fulford-Wierzbicki ... 2 +74295 3806 Fulford-Wierzbicki 2 +74296 3806 deftly captures the wise-beyond-her-years teen 3 +74297 3806 deftly captures 3 +74298 3806 the wise-beyond-her-years teen 3 +74299 3806 wise-beyond-her-years teen 3 +74300 3806 wise-beyond-her-years 3 +74301 3807 This is lightweight filmmaking , to be sure , but it 's pleasant enough -- and oozing with attractive men . 3 +74302 3807 This is lightweight filmmaking , to be sure , but it 's pleasant enough -- and oozing with attractive men 3 +74303 3807 This is lightweight filmmaking , to be sure , but 2 +74304 3807 This is lightweight filmmaking , to be sure , 1 +74305 3807 This is lightweight filmmaking , to be sure 1 +74306 3807 is lightweight filmmaking , to be sure 1 +74307 3807 is lightweight filmmaking , 1 +74308 3807 is lightweight filmmaking 1 +74309 3807 lightweight filmmaking 1 +74310 3807 to be sure 2 +74311 3807 be sure 2 +74312 3807 it 's pleasant enough -- and oozing with attractive men 3 +74313 3807 's pleasant enough -- and oozing with attractive men 3 +74314 3807 pleasant enough -- and oozing with attractive men 3 +74315 3807 pleasant enough -- and 3 +74316 3807 pleasant enough -- 3 +74317 3807 oozing with attractive men 4 +74318 3807 oozing 2 +74319 3807 with attractive men 3 +74320 3807 attractive men 3 +74321 3808 The film is way too full of itself ; it 's stuffy and pretentious in a give-me-an-Oscar kind of way . 1 +74322 3808 The film is way too full of itself ; it 's stuffy and pretentious in a give-me-an-Oscar kind of way 1 +74323 3808 The film is way too full of itself ; 0 +74324 3808 The film is way too full of itself 1 +74325 3808 is way too full of itself 2 +74326 3808 way too full of itself 1 +74327 3808 way too full 1 +74328 3808 too full 1 +74329 3808 it 's stuffy and pretentious in a give-me-an-Oscar kind of way 1 +74330 3808 's stuffy and pretentious in a give-me-an-Oscar kind of way 2 +74331 3808 's stuffy and pretentious 1 +74332 3808 stuffy and pretentious 1 +74333 3808 stuffy and 1 +74334 3808 in a give-me-an-Oscar kind of way 3 +74335 3808 a give-me-an-Oscar kind of way 2 +74336 3808 a give-me-an-Oscar kind 3 +74337 3808 give-me-an-Oscar kind 2 +74338 3808 give-me-an-Oscar 3 +74339 3809 While certainly more naturalistic than its Australian counterpart , Amari 's film falls short in building the drama of Lilia 's journey . 1 +74340 3809 While certainly more naturalistic than its Australian counterpart 2 +74341 3809 certainly more naturalistic than its Australian counterpart 2 +74342 3809 more naturalistic than its Australian counterpart 2 +74343 3809 naturalistic than its Australian counterpart 2 +74344 3809 than its Australian counterpart 2 +74345 3809 its Australian counterpart 2 +74346 3809 Australian counterpart 2 +74347 3809 counterpart 2 +74348 3809 , Amari 's film falls short in building the drama of Lilia 's journey . 0 +74349 3809 Amari 's film falls short in building the drama of Lilia 's journey . 2 +74350 3809 Amari 's film 2 +74351 3809 Amari 's 2 +74352 3809 falls short in building the drama of Lilia 's journey . 1 +74353 3809 falls short in building the drama of Lilia 's journey 1 +74354 3809 short in building the drama of Lilia 's journey 2 +74355 3809 in building the drama of Lilia 's journey 2 +74356 3809 building the drama of Lilia 's journey 2 +74357 3809 the drama of Lilia 's journey 2 +74358 3809 of Lilia 's journey 2 +74359 3809 Lilia 's journey 2 +74360 3809 Lilia 's 2 +74361 3810 The characters never change . 1 +74362 3810 never change . 3 +74363 3810 change . 2 +74364 3811 An admitted egomaniac , Evans is no Hollywood villain , and yet this grating showcase almost makes you wish he 'd gone the way of Don Simpson . 1 +74365 3811 An admitted egomaniac , Evans is no Hollywood villain , and yet this grating showcase almost makes you wish he 'd gone the way of Don Simpson 2 +74366 3811 An admitted egomaniac , Evans is no Hollywood villain , and 2 +74367 3811 An admitted egomaniac , Evans is no Hollywood villain , 2 +74368 3811 An admitted egomaniac , Evans is no Hollywood villain 2 +74369 3811 An admitted egomaniac 2 +74370 3811 admitted egomaniac 1 +74371 3811 egomaniac 2 +74372 3811 , Evans is no Hollywood villain 3 +74373 3811 Evans is no Hollywood villain 3 +74374 3811 is no Hollywood villain 2 +74375 3811 no Hollywood villain 2 +74376 3811 Hollywood villain 2 +74377 3811 yet this grating showcase almost makes you wish he 'd gone the way of Don Simpson 2 +74378 3811 yet this grating showcase 1 +74379 3811 this grating showcase 2 +74380 3811 grating showcase 2 +74381 3811 almost makes you wish he 'd gone the way of Don Simpson 1 +74382 3811 makes you wish he 'd gone the way of Don Simpson 2 +74383 3811 you wish he 'd gone the way of Don Simpson 1 +74384 3811 wish he 'd gone the way of Don Simpson 2 +74385 3811 he 'd gone the way of Don Simpson 2 +74386 3811 'd gone the way of Don Simpson 2 +74387 3811 gone the way of Don Simpson 2 +74388 3811 the way of Don Simpson 2 +74389 3811 of Don Simpson 2 +74390 3811 Don Simpson 2 +74391 3811 Simpson 2 +74392 3812 Witless , pointless , tasteless and idiotic . 1 +74393 3812 Witless , pointless , tasteless and idiotic 1 +74394 3812 Witless , 1 +74395 3812 pointless , tasteless and idiotic 0 +74396 3812 , tasteless and idiotic 1 +74397 3812 tasteless and idiotic 2 +74398 3812 tasteless and 1 +74399 3813 Hardly a nuanced portrait of a young woman 's breakdown , the film nevertheless works up a few scares . 2 +74400 3813 Hardly a nuanced portrait of a young woman 's breakdown , the film 1 +74401 3813 Hardly a nuanced portrait 1 +74402 3813 a nuanced portrait 3 +74403 3813 nuanced portrait 3 +74404 3813 of a young woman 's breakdown , the film 2 +74405 3813 a young woman 's breakdown , the film 2 +74406 3813 a young woman 's breakdown , 2 +74407 3813 a young woman 's breakdown 1 +74408 3813 breakdown 1 +74409 3813 nevertheless works up a few scares . 3 +74410 3813 nevertheless works up a few scares 3 +74411 3813 works up a few scares 3 +74412 3813 works up 3 +74413 3813 a few scares 2 +74414 3813 few scares 2 +74415 3814 What lifts the film high above run-of-the-filth gangster flicks is its refusal to recognise any of the signposts , as if discovering a way through to the bitter end without a map . 3 +74416 3814 What lifts the film high above run-of-the-filth gangster flicks 3 +74417 3814 lifts the film high above run-of-the-filth gangster flicks 4 +74418 3814 the film high above run-of-the-filth gangster flicks 3 +74419 3814 high above run-of-the-filth gangster flicks 4 +74420 3814 above run-of-the-filth gangster flicks 3 +74421 3814 run-of-the-filth gangster flicks 1 +74422 3814 run-of-the-filth 1 +74423 3814 gangster flicks 2 +74424 3814 is its refusal to recognise any of the signposts , as if discovering a way through to the bitter end without a map . 2 +74425 3814 is its refusal to recognise any of the signposts , as if discovering a way through to the bitter end without a map 2 +74426 3814 its refusal to recognise any of the signposts , as if discovering a way through to the bitter end without a map 1 +74427 3814 refusal to recognise any of the signposts , as if discovering a way through to the bitter end without a map 0 +74428 3814 to recognise any of the signposts , as if discovering a way through to the bitter end without a map 2 +74429 3814 recognise any of the signposts , as if discovering a way through to the bitter end without a map 2 +74430 3814 recognise any of the signposts , as if discovering a way through to the bitter end 1 +74431 3814 recognise any of the signposts , as if discovering a way 2 +74432 3814 recognise 3 +74433 3814 any of the signposts , as if discovering a way 2 +74434 3814 any of the signposts , as if 1 +74435 3814 any of the signposts , 2 +74436 3814 any of the signposts 1 +74437 3814 of the signposts 2 +74438 3814 the signposts 2 +74439 3814 signposts 2 +74440 3814 as if 2 +74441 3814 discovering a way 2 +74442 3814 discovering 2 +74443 3814 through to the bitter end 2 +74444 3814 to the bitter end 0 +74445 3814 the bitter end 2 +74446 3814 bitter end 1 +74447 3814 without a map 1 +74448 3814 a map 2 +74449 3814 map 2 +74450 3815 Definitely worth 95 minutes of your time . 4 +74451 3815 Definitely worth 95 minutes of your time 3 +74452 3815 Definitely worth 95 minutes 4 +74453 3815 Definitely worth 3 +74454 3815 95 minutes 3 +74455 3815 of your time 2 +74456 3816 The ingenuity that Parker displays in freshening the play is almost in a class with that of Wilde himself . 4 +74457 3816 The ingenuity that Parker displays in freshening the play 3 +74458 3816 The ingenuity 3 +74459 3816 that Parker displays in freshening the play 3 +74460 3816 Parker displays in freshening the play 3 +74461 3816 displays in freshening the play 3 +74462 3816 in freshening the play 3 +74463 3816 freshening the play 2 +74464 3816 freshening 3 +74465 3816 is almost in a class with that of Wilde himself . 3 +74466 3816 is almost in a class with that of Wilde himself 3 +74467 3816 is almost in a class with that of Wilde 3 +74468 3816 almost in a class with that of Wilde 3 +74469 3816 in a class with that of Wilde 2 +74470 3816 a class with that of Wilde 3 +74471 3816 a class 2 +74472 3816 with that of Wilde 2 +74473 3816 that of Wilde 2 +74474 3816 of Wilde 2 +74475 3817 While puerile men dominate the story , the women shine . 2 +74476 3817 While puerile men dominate the story 2 +74477 3817 puerile men dominate the story 1 +74478 3817 puerile men 1 +74479 3817 dominate the story 3 +74480 3817 dominate 2 +74481 3817 , the women shine . 3 +74482 3817 the women shine . 4 +74483 3817 shine . 2 +74484 3818 A beautiful paean to a time long past . 3 +74485 3818 A beautiful paean to a time long past 3 +74486 3818 A beautiful paean to a time 3 +74487 3818 A beautiful paean 3 +74488 3818 beautiful paean 3 +74489 3819 One of -LRB- Jaglom 's -RRB- better efforts -- a wry and sometime bitter movie about love . 2 +74490 3819 One of -LRB- Jaglom 's -RRB- better efforts -- a wry and sometime bitter movie about love 3 +74491 3819 One of -LRB- Jaglom 's -RRB- better efforts -- 3 +74492 3819 One of -LRB- Jaglom 's -RRB- better efforts 2 +74493 3819 of -LRB- Jaglom 's -RRB- better efforts 2 +74494 3819 -LRB- Jaglom 's -RRB- better efforts 3 +74495 3819 better efforts 2 +74496 3819 a wry and sometime bitter movie about love 3 +74497 3819 a wry and 2 +74498 3819 sometime bitter movie about love 3 +74499 3819 sometime bitter movie 2 +74500 3819 sometime 2 +74501 3819 bitter movie 2 +74502 3819 about love 2 +74503 3820 Although it includes a fair share of dumb drug jokes and predictable slapstick , `` Orange County '' is far funnier than it would seem to have any right to be . 3 +74504 3820 Although it includes a fair share of dumb drug jokes and predictable slapstick 1 +74505 3820 it includes a fair share of dumb drug jokes and predictable slapstick 1 +74506 3820 includes a fair share of dumb drug jokes and predictable slapstick 1 +74507 3820 a fair share of dumb drug jokes and predictable slapstick 1 +74508 3820 a fair share 3 +74509 3820 of dumb drug jokes and predictable slapstick 0 +74510 3820 dumb drug jokes and predictable slapstick 0 +74511 3820 dumb drug jokes and 1 +74512 3820 dumb drug jokes 1 +74513 3820 drug jokes 2 +74514 3820 predictable slapstick 2 +74515 3820 , `` Orange County '' is far funnier than it would seem to have any right to be . 3 +74516 3820 `` Orange County '' is far funnier than it would seem to have any right to be . 4 +74517 3820 Orange County '' is far funnier than it would seem to have any right to be . 3 +74518 3820 Orange County 2 +74519 3820 County 2 +74520 3820 '' is far funnier than it would seem to have any right to be . 3 +74521 3820 is far funnier than it would seem to have any right to be . 3 +74522 3820 is far funnier than it would seem to have any right to be 3 +74523 3820 is far funnier 2 +74524 3820 far funnier 3 +74525 3820 than it would seem to have any right to be 2 +74526 3820 it would seem to have any right to be 2 +74527 3820 would seem to have any right to be 2 +74528 3820 seem to have any right to be 2 +74529 3820 to have any right to be 2 +74530 3820 have any right to be 2 +74531 3820 any right to be 2 +74532 3820 right to be 3 +74533 3821 A sleep-inducing thriller with a single twist that everyone except the characters in it can see coming a mile away . 1 +74534 3821 A sleep-inducing thriller with a single 0 +74535 3821 A sleep-inducing thriller 0 +74536 3821 sleep-inducing thriller 0 +74537 3821 sleep-inducing 1 +74538 3821 with a single 3 +74539 3821 a single 2 +74540 3821 twist that everyone except the characters in it can see coming a mile away . 2 +74541 3821 twist that everyone except the characters in it can see coming a mile away 2 +74542 3821 that everyone except the characters in it can see coming a mile away 2 +74543 3821 everyone except the characters in it can see coming a mile away 1 +74544 3821 everyone except the characters in it 2 +74545 3821 except the characters in it 2 +74546 3821 the characters in it 2 +74547 3821 can see coming a mile away 1 +74548 3821 see coming a mile away 1 +74549 3821 coming a mile away 2 +74550 3821 coming a mile 2 +74551 3822 Expanded to 65 minutes for theatrical release , it still feels somewhat unfinished . 2 +74552 3822 Expanded to 65 minutes for theatrical release 2 +74553 3822 to 65 minutes for theatrical release 2 +74554 3822 65 minutes for theatrical release 2 +74555 3822 65 minutes 2 +74556 3822 65 2 +74557 3822 for theatrical release 2 +74558 3822 theatrical release 2 +74559 3822 theatrical 2 +74560 3822 , it still feels somewhat unfinished . 1 +74561 3822 it still feels somewhat unfinished . 1 +74562 3822 still feels somewhat unfinished . 1 +74563 3822 feels somewhat unfinished . 1 +74564 3822 feels somewhat unfinished 1 +74565 3822 somewhat unfinished 1 +74566 3822 unfinished 1 +74567 3823 And yet , it still works . 3 +74568 3823 yet , it still works . 3 +74569 3823 , it still works . 3 +74570 3823 it still works . 3 +74571 3823 still works . 3 +74572 3823 works . 2 +74573 3824 What more can be expected from a college comedy that 's target audience has n't graduated from junior high school ? 0 +74574 3824 What more 2 +74575 3824 can be expected from a college comedy that 's target audience has n't graduated from junior high school ? 1 +74576 3824 can be expected from a college comedy that 's target audience has n't graduated from junior high school 0 +74577 3824 be expected from a college comedy that 's target audience has n't graduated from junior high school 2 +74578 3824 expected from a college comedy that 's target audience has n't graduated from junior high school 1 +74579 3824 from a college comedy that 's target audience has n't graduated from junior high school 0 +74580 3824 a college comedy that 's target audience has n't graduated from junior high school 0 +74581 3824 a college comedy 2 +74582 3824 college comedy 2 +74583 3824 that 's target audience has n't graduated from junior high school 1 +74584 3824 's target audience has n't graduated from junior high school 2 +74585 3824 target audience has n't graduated from junior high school 1 +74586 3824 has n't graduated from junior high school 1 +74587 3824 graduated from junior high school 2 +74588 3824 graduated 3 +74589 3824 from junior high school 2 +74590 3824 junior high school 2 +74591 3825 A fresh , entertaining comedy that looks at relationships minus traditional gender roles . 4 +74592 3825 A fresh , entertaining comedy that 4 +74593 3825 A fresh , entertaining comedy 4 +74594 3825 fresh , entertaining comedy 4 +74595 3825 , entertaining comedy 3 +74596 3825 entertaining comedy 3 +74597 3825 looks at relationships minus traditional gender roles . 2 +74598 3825 looks at relationships minus traditional gender roles 2 +74599 3825 at relationships minus traditional gender roles 2 +74600 3825 relationships minus traditional gender roles 2 +74601 3825 minus traditional gender roles 2 +74602 3825 minus 2 +74603 3825 traditional gender roles 2 +74604 3825 gender roles 2 +74605 3826 While some of the camera work is interesting , the film 's mid-to-low budget is betrayed by the surprisingly shoddy makeup work . 1 +74606 3826 While some of the camera work is interesting 3 +74607 3826 some of the camera work is interesting 3 +74608 3826 some of the camera work 2 +74609 3826 of the camera work 2 +74610 3826 the camera work 2 +74611 3826 camera work 2 +74612 3826 is interesting 3 +74613 3826 , the film 's mid-to-low budget is betrayed by the surprisingly shoddy makeup work . 1 +74614 3826 the film 's mid-to-low budget is betrayed by the surprisingly shoddy makeup work . 1 +74615 3826 the film 's mid-to-low budget 1 +74616 3826 mid-to-low budget 1 +74617 3826 mid-to-low 2 +74618 3826 is betrayed by the surprisingly shoddy makeup work . 2 +74619 3826 is betrayed by the surprisingly shoddy makeup work 1 +74620 3826 betrayed by the surprisingly shoddy makeup work 1 +74621 3826 betrayed 2 +74622 3826 by the surprisingly shoddy makeup work 1 +74623 3826 the surprisingly shoddy makeup work 1 +74624 3826 surprisingly shoddy makeup work 1 +74625 3826 surprisingly shoddy 1 +74626 3826 makeup work 2 +74627 3827 I think it was Plato who said , ' I think , therefore I know better than to rush to the theatre for this one . ' 1 +74628 3827 I think it was Plato who said , ' I think , therefore I know better than to rush to the theatre for this one . 1 +74629 3827 I think it was Plato who said , ' I think , therefore I know better than to rush to the theatre for this one 0 +74630 3827 I think it was Plato who said , ' I think , 2 +74631 3827 I think it was Plato who said 2 +74632 3827 think it was Plato who said 2 +74633 3827 it was Plato who said 2 +74634 3827 was Plato who said 2 +74635 3827 Plato who said 2 +74636 3827 Plato 2 +74637 3827 who said 2 +74638 3827 , ' I think , 2 +74639 3827 ' I think , 2 +74640 3827 I think , 2 +74641 3827 therefore I know better than to rush to the theatre for this one 0 +74642 3827 therefore 2 +74643 3827 I know better than to rush to the theatre for this one 1 +74644 3827 know better than to rush to the theatre for this one 1 +74645 3827 better than to rush to the theatre for this one 2 +74646 3827 than to rush to the theatre for this one 1 +74647 3827 to rush to the theatre for this one 3 +74648 3827 rush to the theatre for this one 3 +74649 3827 rush to the theatre 4 +74650 3827 to the theatre 2 +74651 3828 Tadpole may be one of the most appealing movies ever made about an otherwise appalling , and downright creepy , subject -- a teenage boy in love with his stepmother . 3 +74652 3828 may be one of the most appealing movies ever made about an otherwise appalling , and downright creepy , subject -- a teenage boy in love with his stepmother . 4 +74653 3828 may be one of the most appealing movies ever made about an otherwise appalling , and downright creepy , subject -- a teenage boy in love with his stepmother 3 +74654 3828 be one of the most appealing movies ever made about an otherwise appalling , and downright creepy , subject -- a teenage boy in love with his stepmother 4 +74655 3828 one of the most appealing movies ever made about an otherwise appalling , and downright creepy , subject -- a teenage boy in love with his stepmother 3 +74656 3828 of the most appealing movies ever made about an otherwise appalling , and downright creepy , subject -- a teenage boy in love with his stepmother 4 +74657 3828 the most appealing movies ever made about an otherwise appalling , and downright creepy , subject -- a teenage boy in love with his stepmother 3 +74658 3828 the most appealing movies 2 +74659 3828 most appealing movies 3 +74660 3828 most appealing 4 +74661 3828 ever made about an otherwise appalling , and downright creepy , subject -- a teenage boy in love with his stepmother 2 +74662 3828 made about an otherwise appalling , and downright creepy , subject -- a teenage boy in love with his stepmother 2 +74663 3828 made about an otherwise appalling , and downright creepy , subject -- a teenage boy in love 2 +74664 3828 about an otherwise appalling , and downright creepy , subject -- a teenage boy in love 2 +74665 3828 an otherwise appalling , and downright creepy , subject -- a teenage boy in love 2 +74666 3828 an otherwise appalling , and downright creepy , subject -- 1 +74667 3828 an otherwise appalling , and downright creepy , subject 2 +74668 3828 otherwise appalling , and downright creepy , subject 1 +74669 3828 otherwise appalling , and downright creepy , 0 +74670 3828 otherwise appalling , and downright creepy 1 +74671 3828 otherwise appalling , and 1 +74672 3828 otherwise appalling , 2 +74673 3828 otherwise appalling 0 +74674 3828 a teenage boy in love 2 +74675 3828 a teenage boy 2 +74676 3828 teenage boy 2 +74677 3828 with his stepmother 2 +74678 3828 his stepmother 2 +74679 3828 stepmother 2 +74680 3829 Count on his movie to work at the back of your neck long after you leave the theater . 2 +74681 3829 Count on his movie to work at the back of your neck long after you leave the theater 3 +74682 3829 on his movie to work at the back of your neck long after you leave the theater 3 +74683 3829 his movie to work at the back of your neck long after you leave the theater 2 +74684 3829 movie to work at the back of your neck long after you leave the theater 2 +74685 3829 to work at the back of your neck long after you leave the theater 2 +74686 3829 work at the back of your neck long after you leave the theater 2 +74687 3829 work at the back of your neck 2 +74688 3829 at the back of your neck 3 +74689 3829 the back of your neck 2 +74690 3829 of your neck 2 +74691 3829 your neck 2 +74692 3829 long after you leave the theater 3 +74693 3829 after you leave the theater 2 +74694 3829 you leave the theater 2 +74695 3830 It 's dark and tragic , and lets the business of the greedy talent agents get in the way of saying something meaningful about facing death 2 +74696 3830 's dark and tragic , and lets the business of the greedy talent agents get in the way of saying something meaningful about facing death 0 +74697 3830 's dark and tragic , and 2 +74698 3830 's dark and tragic , 2 +74699 3830 's dark and tragic 2 +74700 3830 dark and tragic 2 +74701 3830 lets the business of the greedy talent agents get in the way of saying something meaningful about facing death 1 +74702 3830 the business of the greedy talent agents get in the way of saying something meaningful about facing death 1 +74703 3830 the business of the greedy talent agents 1 +74704 3830 of the greedy talent agents 2 +74705 3830 the greedy talent agents 1 +74706 3830 greedy talent agents 1 +74707 3830 greedy 1 +74708 3830 talent agents 2 +74709 3830 agents 2 +74710 3830 get in the way of saying something meaningful about facing death 1 +74711 3830 in the way of saying something meaningful about facing death 3 +74712 3830 the way of saying something meaningful about facing death 3 +74713 3830 of saying something meaningful about facing death 2 +74714 3830 saying something meaningful about facing death 2 +74715 3830 something meaningful about facing death 2 +74716 3830 meaningful about facing death 3 +74717 3830 about facing death 2 +74718 3830 facing death 2 +74719 3831 Lazy filmmaking , with the director taking a hands-off approach when he should have shaped the story to show us why it 's compelling . 0 +74720 3831 filmmaking , with the director taking a hands-off approach when he should have shaped the story to show us why it 's compelling . 2 +74721 3831 , with the director taking a hands-off approach when he should have shaped the story to show us why it 's compelling . 1 +74722 3831 with the director taking a hands-off approach when he should have shaped the story to show us why it 's compelling . 1 +74723 3831 with the director taking a hands-off approach when he should have shaped the story to show us why it 's compelling 1 +74724 3831 the director taking a hands-off approach when he should have shaped the story to show us why it 's compelling 1 +74725 3831 taking a hands-off approach when he should have shaped the story to show us why it 's compelling 1 +74726 3831 taking a hands-off approach 2 +74727 3831 a hands-off approach 1 +74728 3831 hands-off approach 2 +74729 3831 hands-off 2 +74730 3831 when he should have shaped the story to show us why it 's compelling 1 +74731 3831 he should have shaped the story to show us why it 's compelling 2 +74732 3831 should have shaped the story to show us why it 's compelling 2 +74733 3831 have shaped the story to show us why it 's compelling 3 +74734 3831 shaped the story to show us why it 's compelling 3 +74735 3831 the story to show us why it 's compelling 2 +74736 3831 story to show us why it 's compelling 3 +74737 3831 to show us why it 's compelling 3 +74738 3831 show us why it 's compelling 2 +74739 3831 why it 's compelling 2 +74740 3831 it 's compelling 3 +74741 3831 's compelling 3 +74742 3832 Would that Greengrass had gone a tad less for grit and a lot more for intelligibility . 1 +74743 3832 Would that Greengrass had gone a tad less for grit and a lot more for intelligibility 1 +74744 3832 that Greengrass had gone a tad less for grit and a lot more for intelligibility 2 +74745 3832 Greengrass had gone a tad less for grit and a lot more for intelligibility 2 +74746 3832 Greengrass 3 +74747 3832 had gone a tad less for grit and a lot more for intelligibility 1 +74748 3832 gone a tad less for grit and a lot more for intelligibility 2 +74749 3832 gone a tad less for grit and a lot more 1 +74750 3832 a tad less for grit and a lot more 2 +74751 3832 a tad less for grit and 2 +74752 3832 a tad less for grit 2 +74753 3832 a tad less 2 +74754 3832 a tad 2 +74755 3832 tad 2 +74756 3832 for grit 2 +74757 3832 grit 2 +74758 3832 for intelligibility 3 +74759 3832 intelligibility 2 +74760 3833 Although some viewers will not be able to stomach so much tongue-in-cheek weirdness , those who do will have found a cult favorite to enjoy for a lifetime . 3 +74761 3833 Although some viewers will not be able to stomach so much tongue-in-cheek weirdness 1 +74762 3833 some viewers will not be able to stomach so much tongue-in-cheek weirdness 2 +74763 3833 some viewers 2 +74764 3833 will not be able to stomach so much tongue-in-cheek weirdness 1 +74765 3833 be able to stomach so much tongue-in-cheek weirdness 2 +74766 3833 able to stomach so much tongue-in-cheek weirdness 2 +74767 3833 to stomach so much tongue-in-cheek weirdness 2 +74768 3833 stomach so much tongue-in-cheek weirdness 1 +74769 3833 so much tongue-in-cheek weirdness 1 +74770 3833 so much tongue-in-cheek 2 +74771 3833 much tongue-in-cheek 2 +74772 3833 , those who do will have found a cult favorite to enjoy for a lifetime . 4 +74773 3833 those who do will have found a cult favorite to enjoy for a lifetime . 3 +74774 3833 those who do 3 +74775 3833 who do 2 +74776 3833 will have found a cult favorite to enjoy for a lifetime . 4 +74777 3833 will have found a cult favorite to enjoy for a lifetime 4 +74778 3833 have found a cult favorite to enjoy for a lifetime 3 +74779 3833 found a cult favorite to enjoy for a lifetime 4 +74780 3833 found a cult favorite 4 +74781 3833 a cult favorite 3 +74782 3833 cult favorite 3 +74783 3833 favorite 4 +74784 3833 to enjoy for a lifetime 4 +74785 3833 enjoy for a lifetime 3 +74786 3833 for a lifetime 2 +74787 3834 -LRB- Reno -RRB- delivers a monologue that manages to incorporate both the horror and the absurdity of the situation in a well-balanced fashion . 3 +74788 3834 -LRB- Reno -RRB- 2 +74789 3834 Reno -RRB- 2 +74790 3834 delivers a monologue that manages to incorporate both the horror and the absurdity of the situation in a well-balanced fashion . 4 +74791 3834 delivers a monologue that manages to incorporate both the horror and the absurdity of the situation in a well-balanced fashion 3 +74792 3834 a monologue that manages to incorporate both the horror and the absurdity of the situation in a well-balanced fashion 3 +74793 3834 a monologue that manages to incorporate both the horror and 2 +74794 3834 a monologue that manages to incorporate both the horror 2 +74795 3834 a monologue 2 +74796 3834 monologue 2 +74797 3834 that manages to incorporate both the horror 2 +74798 3834 manages to incorporate both the horror 3 +74799 3834 to incorporate both the horror 2 +74800 3834 incorporate both the horror 2 +74801 3834 incorporate 2 +74802 3834 both the horror 2 +74803 3834 the horror 1 +74804 3834 the absurdity of the situation in a well-balanced fashion 3 +74805 3834 the absurdity 1 +74806 3834 of the situation in a well-balanced fashion 3 +74807 3834 the situation in a well-balanced fashion 3 +74808 3834 in a well-balanced fashion 3 +74809 3834 a well-balanced fashion 4 +74810 3834 well-balanced fashion 3 +74811 3834 well-balanced 3 +74812 3835 The story is -- forgive me -- a little thin , and the filmmaking clumsy and rushed . 1 +74813 3835 The story is -- forgive me -- a little thin , and the filmmaking clumsy and rushed 1 +74814 3835 The story is -- forgive me -- a little thin , and 1 +74815 3835 The story is -- forgive me -- a little thin , 1 +74816 3835 The story is -- forgive me -- a little thin 1 +74817 3835 is -- forgive me -- a little thin 2 +74818 3835 is -- forgive me -- 2 +74819 3835 -- forgive me -- 2 +74820 3835 forgive me -- 2 +74821 3835 forgive me 2 +74822 3835 a little thin 2 +74823 3835 little thin 2 +74824 3835 the filmmaking clumsy and rushed 1 +74825 3835 the filmmaking 2 +74826 3835 clumsy and rushed 1 +74827 3835 clumsy and 1 +74828 3836 Kids do n't mind crappy movies as much as adults , provided there 's lots of cute animals and clumsy people . 1 +74829 3836 do n't mind crappy movies as much as adults , provided there 's lots of cute animals and clumsy people . 1 +74830 3836 do n't mind crappy movies as much as adults , provided there 's lots of cute animals and clumsy people 1 +74831 3836 mind crappy movies as much as adults , provided there 's lots of cute animals and clumsy people 2 +74832 3836 mind crappy movies as much as adults , 1 +74833 3836 mind crappy movies as much as adults 1 +74834 3836 mind crappy movies as much 1 +74835 3836 mind crappy movies 0 +74836 3836 crappy movies 1 +74837 3836 crappy 0 +74838 3836 as adults 2 +74839 3836 provided there 's lots of cute animals and clumsy people 2 +74840 3836 there 's lots of cute animals and clumsy people 2 +74841 3836 's lots of cute animals and clumsy people 3 +74842 3836 lots of cute animals and clumsy people 3 +74843 3836 of cute animals and clumsy people 3 +74844 3836 cute animals and clumsy people 2 +74845 3836 cute animals and 3 +74846 3836 cute animals 4 +74847 3836 clumsy people 2 +74848 3837 Has an unmistakable , easy joie de vivre . 3 +74849 3837 Has an unmistakable , easy joie de vivre 3 +74850 3837 an unmistakable , easy joie de vivre 3 +74851 3837 an unmistakable , easy joie 3 +74852 3837 unmistakable , easy joie 4 +74853 3837 unmistakable , easy 3 +74854 3837 , easy 2 +74855 3837 joie 2 +74856 3837 de vivre 2 +74857 3837 vivre 2 +74858 3838 The movie 's thesis -- elegant technology for the masses -- is surprisingly refreshing . 3 +74859 3838 The movie 's thesis -- elegant technology for the masses -- 3 +74860 3838 The movie 's thesis 2 +74861 3838 thesis 2 +74862 3838 -- elegant technology for the masses -- 3 +74863 3838 elegant technology for the masses -- 3 +74864 3838 elegant technology for the masses 4 +74865 3838 elegant technology 3 +74866 3838 for the masses 2 +74867 3838 is surprisingly refreshing . 4 +74868 3838 is surprisingly refreshing 4 +74869 3838 surprisingly refreshing 3 +74870 3839 It 's deep-sixed by a compulsion to catalog every bodily fluids gag in There 's Something About Mary and devise a parallel clone-gag . 2 +74871 3839 's deep-sixed by a compulsion to catalog every bodily fluids gag in There 's Something About Mary and devise a parallel clone-gag . 1 +74872 3839 's deep-sixed by a compulsion to catalog every bodily fluids gag in There 's Something About Mary and devise a parallel clone-gag 1 +74873 3839 's deep-sixed by a compulsion 2 +74874 3839 deep-sixed by a compulsion 1 +74875 3839 deep-sixed 2 +74876 3839 by a compulsion 2 +74877 3839 a compulsion 2 +74878 3839 compulsion 2 +74879 3839 to catalog every bodily fluids gag in There 's Something About Mary and devise a parallel clone-gag 2 +74880 3839 catalog every bodily fluids gag in There 's Something About Mary and devise a parallel clone-gag 1 +74881 3839 catalog every bodily fluids gag in There 's Something About Mary and 1 +74882 3839 catalog every bodily fluids gag in There 's Something About Mary 2 +74883 3839 catalog every bodily fluids gag in There 's Something 2 +74884 3839 catalog 2 +74885 3839 every bodily fluids gag in There 's Something 1 +74886 3839 every bodily fluids gag in There 's 2 +74887 3839 every bodily fluids gag 1 +74888 3839 bodily fluids gag 1 +74889 3839 bodily 2 +74890 3839 fluids gag 2 +74891 3839 fluids 2 +74892 3839 in There 's 2 +74893 3839 in There 2 +74894 3839 About Mary 2 +74895 3839 devise a parallel clone-gag 2 +74896 3839 devise 2 +74897 3839 a parallel clone-gag 1 +74898 3839 parallel clone-gag 1 +74899 3839 parallel 2 +74900 3839 clone-gag 1 +74901 3840 It 's virtually impossible to like any of these despicable characters . 1 +74902 3840 's virtually impossible to like any of these despicable characters . 1 +74903 3840 's virtually impossible to like any of these despicable characters 0 +74904 3840 's virtually impossible 2 +74905 3840 virtually impossible 1 +74906 3840 to like any of these despicable characters 1 +74907 3840 like any of these despicable characters 1 +74908 3840 any of these despicable characters 1 +74909 3840 of these despicable characters 1 +74910 3840 these despicable characters 2 +74911 3840 despicable characters 1 +74912 3840 despicable 1 +74913 3841 When you 've got the wildly popular Vin Diesel in the equation , it adds up to big box office bucks all but guaranteed . 3 +74914 3841 When you 've got the wildly popular Vin Diesel in the equation 3 +74915 3841 you 've got the wildly popular Vin Diesel in the equation 3 +74916 3841 've got the wildly popular Vin Diesel in the equation 2 +74917 3841 got the wildly popular Vin Diesel in the equation 3 +74918 3841 the wildly popular Vin Diesel in the equation 3 +74919 3841 the wildly popular Vin Diesel 3 +74920 3841 wildly popular Vin Diesel 3 +74921 3841 wildly popular 3 +74922 3841 in the equation 2 +74923 3841 the equation 2 +74924 3841 , it adds up to big box office bucks all but guaranteed . 2 +74925 3841 it adds up to big box office bucks all but guaranteed . 4 +74926 3841 adds up to big box office bucks all but guaranteed . 3 +74927 3841 adds up to big box office bucks all but guaranteed 3 +74928 3841 adds up 2 +74929 3841 to big box office bucks all but guaranteed 3 +74930 3841 big box office bucks all but guaranteed 2 +74931 3841 big box office bucks 3 +74932 3841 box office bucks 2 +74933 3841 office bucks 2 +74934 3841 all but guaranteed 2 +74935 3842 The premise of `` Abandon '' holds promise , ... but its delivery is a complete mess . 1 +74936 3842 The premise of `` Abandon '' holds promise , ... but its delivery is a complete mess 1 +74937 3842 The premise of `` Abandon '' holds promise , ... but 3 +74938 3842 The premise of `` Abandon '' holds promise , ... 3 +74939 3842 The premise of `` Abandon '' holds promise , 3 +74940 3842 The premise of `` Abandon '' 2 +74941 3842 of `` Abandon '' 2 +74942 3842 `` Abandon '' 1 +74943 3842 Abandon '' 1 +74944 3842 holds promise , 3 +74945 3842 holds promise 3 +74946 3842 its delivery is a complete mess 0 +74947 3842 its delivery 2 +74948 3842 is a complete mess 1 +74949 3842 a complete mess 0 +74950 3842 complete mess 1 +74951 3843 The Adventures of Pluto Nash is a whole lot of nada . 0 +74952 3843 The Adventures of Pluto Nash 2 +74953 3843 of Pluto Nash 2 +74954 3843 Pluto Nash 2 +74955 3843 Pluto 2 +74956 3843 Nash 2 +74957 3843 is a whole lot of nada . 1 +74958 3843 is a whole lot of nada 1 +74959 3843 a whole lot of nada 0 +74960 3843 of nada 2 +74961 3843 nada 2 +74962 3844 the phone rings and a voice tells you you 've got seven days left to live . 2 +74963 3844 the phone rings and a voice tells you 2 +74964 3844 the phone rings and a voice 2 +74965 3844 the phone rings and 2 +74966 3844 the phone rings 2 +74967 3844 phone rings 2 +74968 3844 tells you 2 +74969 3844 you 've got seven days left to live . 2 +74970 3844 've got seven days left to live . 1 +74971 3844 've got seven days left to live 1 +74972 3844 got seven days left to live 2 +74973 3844 seven days left to live 1 +74974 3844 seven days 2 +74975 3844 left to live 2 +74976 3844 to live 2 +74977 3845 The whole talking-animal thing is grisly . 1 +74978 3845 The whole talking-animal thing 2 +74979 3845 whole talking-animal thing 2 +74980 3845 talking-animal thing 2 +74981 3845 talking-animal 2 +74982 3845 is grisly . 1 +74983 3845 is grisly 2 +74984 3845 grisly 1 +74985 3846 Adults , other than the parents ... will be hard pressed to succumb to the call of the wild . 1 +74986 3846 Adults , other than the parents ... 3 +74987 3846 Adults , other than the parents 2 +74988 3846 Adults , other 2 +74989 3846 Adults , 2 +74990 3846 than the parents 2 +74991 3846 will be hard pressed to succumb to the call of the wild . 2 +74992 3846 will be hard pressed to succumb to the call of the wild 2 +74993 3846 be hard pressed to succumb to the call of the wild 1 +74994 3846 hard pressed to succumb to the call of the wild 1 +74995 3846 pressed to succumb to the call of the wild 2 +74996 3846 pressed to succumb 2 +74997 3846 to succumb 2 +74998 3846 succumb 2 +74999 3846 to the call of the wild 2 +75000 3846 the call of the wild 3 +75001 3846 the call 2 +75002 3846 of the wild 2 +75003 3846 the wild 2 +75004 3847 With Spy Kids 2 : The Island of Lost Dreams , however , Robert Rodriguez adorns his family-film plot with an elegance and maturity that even most contemporary adult movies are lacking . 4 +75005 3847 With Spy Kids 2 : The Island of Lost Dreams 2 +75006 3847 Spy Kids 2 : The Island of Lost Dreams 2 +75007 3847 Spy Kids 2 : 2 +75008 3847 The Island of Lost Dreams 2 +75009 3847 of Lost Dreams 2 +75010 3847 Lost Dreams 1 +75011 3847 , however , Robert Rodriguez adorns his family-film plot with an elegance and maturity that even most contemporary adult movies are lacking . 4 +75012 3847 however , Robert Rodriguez adorns his family-film plot with an elegance and maturity that even most contemporary adult movies are lacking . 4 +75013 3847 , Robert Rodriguez adorns his family-film plot with an elegance and maturity that even most contemporary adult movies are lacking . 3 +75014 3847 Robert Rodriguez adorns his family-film plot with an elegance and maturity that even most contemporary adult movies are lacking . 4 +75015 3847 Robert Rodriguez 2 +75016 3847 adorns his family-film plot with an elegance and maturity that even most contemporary adult movies are lacking . 4 +75017 3847 adorns his family-film plot with an elegance and maturity that even most contemporary adult movies are lacking 4 +75018 3847 adorns his family-film plot with an elegance and maturity 4 +75019 3847 adorns his family-film plot 2 +75020 3847 adorns 2 +75021 3847 his family-film plot 2 +75022 3847 family-film plot 2 +75023 3847 family-film 2 +75024 3847 with an elegance and maturity 3 +75025 3847 an elegance and maturity 3 +75026 3847 elegance and maturity 3 +75027 3847 elegance and 3 +75028 3847 maturity 3 +75029 3847 that even most contemporary adult movies are lacking 3 +75030 3847 most contemporary adult movies are lacking 2 +75031 3847 most contemporary adult movies 2 +75032 3847 contemporary adult movies 2 +75033 3847 adult movies 1 +75034 3847 are lacking 1 +75035 3848 Scherfig 's light-hearted profile of emotional desperation is achingly honest and delightfully cheeky . 4 +75036 3848 Scherfig 's light-hearted profile of emotional desperation 3 +75037 3848 Scherfig 's light-hearted profile 3 +75038 3848 Scherfig 's 2 +75039 3848 light-hearted profile 3 +75040 3848 of emotional desperation 1 +75041 3848 emotional desperation 2 +75042 3848 is achingly honest and delightfully cheeky . 3 +75043 3848 is achingly honest and delightfully cheeky 3 +75044 3848 achingly honest and delightfully cheeky 3 +75045 3848 achingly honest and 3 +75046 3848 achingly honest 3 +75047 3848 delightfully cheeky 4 +75048 3848 cheeky 3 +75049 3849 The acting in Pauline And Paulette is good all round , but what really sets the film apart is Debrauwer 's refusal to push the easy emotional buttons . 4 +75050 3849 The acting in Pauline And Paulette 2 +75051 3849 in Pauline And Paulette 2 +75052 3849 Pauline And Paulette 2 +75053 3849 Pauline And 2 +75054 3849 is good all round , but what really sets the film apart is Debrauwer 's refusal to push the easy emotional buttons . 3 +75055 3849 is good all round , but what really sets the film apart is Debrauwer 's refusal to push the easy emotional buttons 4 +75056 3849 is good 3 +75057 3849 all round , but what really sets the film apart is Debrauwer 's refusal to push the easy emotional buttons 3 +75058 3849 all round 2 +75059 3849 , but what really sets the film apart is Debrauwer 's refusal to push the easy emotional buttons 3 +75060 3849 what really sets the film apart is Debrauwer 's refusal to push the easy emotional buttons 3 +75061 3849 really sets the film apart is Debrauwer 's refusal to push the easy emotional buttons 3 +75062 3849 sets the film apart is Debrauwer 's refusal to push the easy emotional buttons 3 +75063 3849 the film apart is Debrauwer 's refusal to push the easy emotional buttons 2 +75064 3849 apart is Debrauwer 's refusal to push the easy emotional buttons 2 +75065 3849 is Debrauwer 's refusal to push the easy emotional buttons 2 +75066 3849 Debrauwer 's refusal to push the easy emotional buttons 2 +75067 3849 Debrauwer 's 2 +75068 3849 Debrauwer 2 +75069 3849 refusal to push the easy emotional buttons 2 +75070 3849 to push the easy emotional buttons 2 +75071 3849 push the easy emotional buttons 2 +75072 3849 the easy emotional buttons 3 +75073 3849 easy emotional buttons 2 +75074 3849 emotional buttons 1 +75075 3850 A kilted Jackson is an unsettling sight , and indicative of his , if you will , out-of-kilter character , who rambles aimlessly through ill-conceived action pieces . 1 +75076 3850 A kilted Jackson 2 +75077 3850 kilted Jackson 2 +75078 3850 kilted 2 +75079 3850 is an unsettling sight , and indicative of his , if you will , out-of-kilter character , who rambles aimlessly through ill-conceived action pieces . 2 +75080 3850 is an unsettling sight , and indicative of his , if you will , out-of-kilter character , who rambles aimlessly through ill-conceived action pieces 1 +75081 3850 an unsettling sight , and indicative of his , if you will , out-of-kilter character , who rambles aimlessly through ill-conceived action pieces 1 +75082 3850 an unsettling sight , and indicative of his , if you will , out-of-kilter character , 1 +75083 3850 an unsettling sight , and indicative of his , if you will , out-of-kilter character 1 +75084 3850 an unsettling sight , and 1 +75085 3850 an unsettling sight , 1 +75086 3850 an unsettling sight 1 +75087 3850 unsettling sight 2 +75088 3850 indicative of his , if you will , out-of-kilter character 2 +75089 3850 indicative of his , if you will , 2 +75090 3850 of his , if you will , 2 +75091 3850 his , if you will , 2 +75092 3850 his , if you will 2 +75093 3850 his , 2 +75094 3850 if you will 2 +75095 3850 you will 2 +75096 3850 out-of-kilter character 1 +75097 3850 out-of-kilter 1 +75098 3850 who rambles aimlessly through ill-conceived action pieces 0 +75099 3850 rambles aimlessly through ill-conceived action pieces 1 +75100 3850 rambles aimlessly 1 +75101 3850 rambles 1 +75102 3850 aimlessly 1 +75103 3850 through ill-conceived action pieces 1 +75104 3850 ill-conceived action pieces 1 +75105 3850 action pieces 2 +75106 3851 Just the sort of lazy tearjerker that gives movies about ordinary folk a bad name . 1 +75107 3851 Just the sort of lazy tearjerker that gives movies about ordinary folk a bad name 2 +75108 3851 Just the sort 2 +75109 3851 of lazy tearjerker that gives movies about ordinary folk a bad name 1 +75110 3851 lazy tearjerker that gives movies about ordinary folk a bad name 0 +75111 3851 lazy tearjerker 1 +75112 3851 tearjerker 2 +75113 3851 that gives movies about ordinary folk a bad name 1 +75114 3851 gives movies about ordinary folk a bad name 2 +75115 3851 gives movies 2 +75116 3851 about ordinary folk a bad name 2 +75117 3851 about ordinary folk 2 +75118 3851 ordinary folk 2 +75119 3852 It treats Ana 's journey with honesty that is tragically rare in the depiction of young women in film . 3 +75120 3852 treats Ana 's journey with honesty that is tragically rare in the depiction of young women in film . 4 +75121 3852 treats Ana 's journey with honesty that is tragically rare in the depiction of young women in film 3 +75122 3852 treats Ana 's journey 2 +75123 3852 treats 2 +75124 3852 Ana 's journey 2 +75125 3852 Ana 's 2 +75126 3852 Ana 2 +75127 3852 with honesty that is tragically rare in the depiction of young women in film 3 +75128 3852 honesty that is tragically rare in the depiction of young women in film 4 +75129 3852 that is tragically rare in the depiction of young women in film 2 +75130 3852 is tragically rare in the depiction of young women in film 1 +75131 3852 is tragically 1 +75132 3852 tragically 1 +75133 3852 rare in the depiction of young women in film 3 +75134 3852 in the depiction of young women in film 2 +75135 3852 the depiction of young women in film 2 +75136 3852 the depiction 2 +75137 3852 of young women in film 2 +75138 3852 young women in film 2 +75139 3852 in film 2 +75140 3853 Together writer-director Danny Verete 's three tales comprise a powerful and reasonably fulfilling gestalt . 3 +75141 3853 writer-director Danny Verete 's three tales comprise a powerful and reasonably fulfilling gestalt . 3 +75142 3853 writer-director Danny Verete 's three tales 2 +75143 3853 writer-director Danny Verete 's 2 +75144 3853 Danny Verete 's 2 +75145 3853 Danny 2 +75146 3853 Verete 's 2 +75147 3853 Verete 2 +75148 3853 three tales 2 +75149 3853 comprise a powerful and reasonably fulfilling gestalt . 3 +75150 3853 comprise a powerful and reasonably fulfilling gestalt 3 +75151 3853 comprise 2 +75152 3853 a powerful and reasonably fulfilling gestalt 4 +75153 3853 powerful and reasonably fulfilling gestalt 3 +75154 3853 powerful and reasonably fulfilling 4 +75155 3853 reasonably fulfilling 2 +75156 3853 gestalt 2 +75157 3854 Though not for everyone , The Guys is a somber trip worth taking . 2 +75158 3854 Though not for everyone 2 +75159 3854 not for everyone 2 +75160 3854 , The Guys is a somber trip worth taking . 3 +75161 3854 The Guys is a somber trip worth taking . 3 +75162 3854 is a somber trip worth taking . 3 +75163 3854 is a somber trip worth taking 3 +75164 3854 a somber trip worth taking 2 +75165 3854 a somber trip 2 +75166 3854 somber trip 2 +75167 3855 Top-notch action powers this romantic drama . 4 +75168 3855 Top-notch action powers this romantic drama 4 +75169 3855 Top-notch action powers 3 +75170 3855 action powers 2 +75171 3855 this romantic drama 2 +75172 3855 romantic drama 2 +75173 3856 -LRB- Denis ' -RRB- bare-bones narrative more closely resembles an outline for a '70s exploitation picture than the finished product . 1 +75174 3856 -LRB- Denis ' -RRB- bare-bones narrative more closely 2 +75175 3856 -LRB- Denis ' -RRB- bare-bones narrative 2 +75176 3856 -LRB- Denis ' -RRB- 2 +75177 3856 Denis ' -RRB- 2 +75178 3856 bare-bones narrative 2 +75179 3856 bare-bones 2 +75180 3856 resembles an outline for a '70s exploitation picture than the finished product . 1 +75181 3856 resembles an outline for a '70s exploitation picture than the finished product 1 +75182 3856 resembles an outline for a '70s exploitation picture 1 +75183 3856 an outline for a '70s exploitation picture 2 +75184 3856 an outline 2 +75185 3856 outline 2 +75186 3856 for a '70s exploitation picture 2 +75187 3856 a '70s exploitation picture 2 +75188 3856 '70s exploitation picture 2 +75189 3856 exploitation picture 1 +75190 3856 than the finished product 2 +75191 3856 the finished product 2 +75192 3856 finished product 2 +75193 3857 For its 100 minutes running time , you 'll wait in vain for a movie to happen . 0 +75194 3857 For its 100 minutes 2 +75195 3857 its 100 minutes 2 +75196 3857 100 minutes 2 +75197 3857 running time , you 'll wait in vain for a movie to happen . 0 +75198 3857 , you 'll wait in vain for a movie to happen . 0 +75199 3857 you 'll wait in vain for a movie to happen . 1 +75200 3857 'll wait in vain for a movie to happen . 1 +75201 3857 'll wait in vain for a movie to happen 0 +75202 3857 wait in vain for a movie to happen 2 +75203 3857 wait in vain for a movie 2 +75204 3857 in vain for a movie 2 +75205 3857 vain for a movie 1 +75206 3858 I could have used my two hours better watching Being John Malkovich again . 1 +75207 3858 could have used my two hours better watching Being John Malkovich again . 0 +75208 3858 could have used my two hours better watching Being John Malkovich again 1 +75209 3858 have used my two hours better watching Being John Malkovich again 1 +75210 3858 used my two hours better watching Being John Malkovich again 1 +75211 3858 used my two hours better watching 1 +75212 3858 my two hours better watching 1 +75213 3858 two hours better watching 3 +75214 3858 two hours better 2 +75215 3858 Being John Malkovich again 2 +75216 3859 The movie 's vision of a white American zealously spreading a Puritanical brand of Christianity to South Seas islanders is one only a true believer could relish . 1 +75217 3859 The movie 's vision of a white American zealously spreading a Puritanical brand of Christianity to South Seas islanders 2 +75218 3859 The movie 's vision 2 +75219 3859 of a white American zealously spreading a Puritanical brand of Christianity to South Seas islanders 2 +75220 3859 a white American zealously spreading a Puritanical brand of Christianity to South Seas islanders 2 +75221 3859 a white American zealously 2 +75222 3859 white American zealously 2 +75223 3859 American zealously 2 +75224 3859 zealously 2 +75225 3859 spreading a Puritanical brand of Christianity to South Seas islanders 2 +75226 3859 spreading a Puritanical brand of Christianity 1 +75227 3859 spreading 3 +75228 3859 a Puritanical brand of Christianity 3 +75229 3859 a Puritanical brand 2 +75230 3859 Puritanical brand 2 +75231 3859 Puritanical 2 +75232 3859 brand 2 +75233 3859 of Christianity 2 +75234 3859 to South Seas islanders 3 +75235 3859 South Seas islanders 2 +75236 3859 Seas islanders 2 +75237 3859 islanders 2 +75238 3859 is one only a true believer could relish . 1 +75239 3859 is one only a true believer could relish 2 +75240 3859 one only a true believer could relish 3 +75241 3859 only a true believer could relish 2 +75242 3859 only a true believer 2 +75243 3859 a true believer 3 +75244 3859 true believer 3 +75245 3859 could relish 3 +75246 3859 relish 2 +75247 3860 Romanek 's themes are every bit as distinctive as his visuals . 4 +75248 3860 Romanek 's themes 2 +75249 3860 are every bit as distinctive as his visuals . 4 +75250 3860 are every bit as distinctive as his visuals 3 +75251 3860 are every bit as distinctive 2 +75252 3860 every bit as distinctive 3 +75253 3860 as distinctive 2 +75254 3860 as his visuals 2 +75255 3860 his visuals 2 +75256 3861 A comedy that is warm , inviting , and surprising . 4 +75257 3861 comedy that is warm , inviting , and surprising . 3 +75258 3861 comedy that is warm , inviting , and surprising 4 +75259 3861 that is warm , inviting , and surprising 4 +75260 3861 is warm , inviting , and surprising 3 +75261 3861 warm , inviting , and surprising 4 +75262 3861 warm , inviting , and 4 +75263 3861 warm , inviting , 3 +75264 3861 warm , inviting 3 +75265 3861 warm , 3 +75266 3862 It has fun with the quirks of family life , but it also treats the subject with fondness and respect . 4 +75267 3862 It has fun with the quirks of family life , but it also treats the subject with fondness and respect 4 +75268 3862 It has fun with the quirks of family life , but 3 +75269 3862 It has fun with the quirks of family life , 3 +75270 3862 It has fun with the quirks of family life 3 +75271 3862 has fun with the quirks of family life 3 +75272 3862 fun with the quirks of family life 4 +75273 3862 with the quirks of family life 2 +75274 3862 the quirks of family life 2 +75275 3862 the quirks 2 +75276 3862 quirks 2 +75277 3862 of family life 2 +75278 3862 family life 2 +75279 3862 it also treats the subject with fondness and respect 4 +75280 3862 also treats the subject with fondness and respect 3 +75281 3862 treats the subject with fondness and respect 4 +75282 3862 the subject with fondness and respect 4 +75283 3862 with fondness and respect 3 +75284 3862 fondness and respect 3 +75285 3862 fondness and 2 +75286 3863 Blade II merges bits and pieces from fighting games , wire fu , horror movies , mystery , James Bond , wrestling , sci-fi and anime into one big bloody stew . 3 +75287 3863 merges bits and pieces from fighting games , wire fu , horror movies , mystery , James Bond , wrestling , sci-fi and anime into one big bloody stew . 2 +75288 3863 merges bits and pieces from fighting games , wire fu , horror movies , mystery , James Bond , wrestling , sci-fi and anime into one big bloody stew 3 +75289 3863 merges bits and pieces 2 +75290 3863 merges 2 +75291 3863 from fighting games , wire fu , horror movies , mystery , James Bond , wrestling , sci-fi and anime into one big bloody stew 3 +75292 3863 fighting games , wire fu , horror movies , mystery , James Bond , wrestling , sci-fi and anime into one big bloody stew 3 +75293 3863 fighting games , wire fu , horror movies , mystery , James Bond , wrestling , sci-fi and anime 2 +75294 3863 games , wire fu , horror movies , mystery , James Bond , wrestling , sci-fi and anime 2 +75295 3863 games , wire fu , horror movies , mystery , James Bond , wrestling , sci-fi and 2 +75296 3863 games , wire fu , horror movies , mystery , James Bond , wrestling , sci-fi 2 +75297 3863 games , wire fu , horror movies , mystery , James Bond , wrestling , 2 +75298 3863 games , wire fu , horror movies , mystery , James Bond , wrestling 2 +75299 3863 games , wire fu , horror movies , mystery , James Bond , 2 +75300 3863 games , wire fu , horror movies , mystery , James Bond 2 +75301 3863 games , wire fu , horror movies , mystery , 2 +75302 3863 games , wire fu , horror movies , mystery 2 +75303 3863 games , wire fu , horror movies , 2 +75304 3863 games , wire fu , horror movies 2 +75305 3863 games , wire fu , 2 +75306 3863 games , wire fu 2 +75307 3863 games , 2 +75308 3863 wire fu 2 +75309 3863 wire 2 +75310 3863 fu 1 +75311 3863 into one big bloody stew 2 +75312 3863 one big bloody stew 2 +75313 3863 big bloody stew 1 +75314 3863 bloody stew 2 +75315 3864 Despite engaging offbeat touches , Knockaround Guys rarely seems interested in kicking around a raison d'etre that 's as fresh-faced as its young-guns cast . 1 +75316 3864 Despite engaging offbeat touches 2 +75317 3864 engaging offbeat touches 3 +75318 3864 offbeat touches 2 +75319 3864 , Knockaround Guys rarely seems interested in kicking around a raison d'etre that 's as fresh-faced as its young-guns cast . 1 +75320 3864 Knockaround Guys rarely seems interested in kicking around a raison d'etre that 's as fresh-faced as its young-guns cast . 3 +75321 3864 Knockaround Guys 2 +75322 3864 Knockaround 3 +75323 3864 rarely seems interested in kicking around a raison d'etre that 's as fresh-faced as its young-guns cast . 2 +75324 3864 seems interested in kicking around a raison d'etre that 's as fresh-faced as its young-guns cast . 2 +75325 3864 seems interested in kicking around a raison d'etre that 's as fresh-faced as its young-guns cast 3 +75326 3864 interested in kicking around a raison d'etre that 's as fresh-faced as its young-guns cast 2 +75327 3864 in kicking around a raison d'etre that 's as fresh-faced as its young-guns cast 3 +75328 3864 kicking around a raison d'etre that 's as fresh-faced as its young-guns cast 2 +75329 3864 kicking around 2 +75330 3864 a raison d'etre that 's as fresh-faced as its young-guns cast 3 +75331 3864 a raison d'etre 2 +75332 3864 raison d'etre 2 +75333 3864 raison 2 +75334 3864 d'etre 2 +75335 3864 that 's as fresh-faced as its young-guns cast 3 +75336 3864 's as fresh-faced as its young-guns cast 3 +75337 3864 as fresh-faced as its young-guns cast 3 +75338 3864 fresh-faced as its young-guns cast 2 +75339 3864 fresh-faced 3 +75340 3864 as its young-guns cast 2 +75341 3864 its young-guns cast 2 +75342 3864 young-guns cast 2 +75343 3864 young-guns 2 +75344 3865 Worth a salute just for trying to be more complex than your average film . 3 +75345 3865 Worth a 3 +75346 3865 salute just for trying to be more complex than your average film . 4 +75347 3865 salute just for trying to be more complex than your average film 2 +75348 3865 salute just 2 +75349 3865 for trying to be more complex than your average film 2 +75350 3865 trying to be more complex than your average film 3 +75351 3865 to be more complex than your average film 3 +75352 3865 be more complex than your average film 3 +75353 3865 more complex than your average film 2 +75354 3865 complex than your average film 3 +75355 3865 than your average film 2 +75356 3865 your average film 2 +75357 3865 average film 2 +75358 3866 Build some robots , haul 'em to the theatre with you for the late show , and put on your own Mystery Science Theatre 3000 tribute to what is almost certainly going to go down as the worst -- and only -- killer website movie of this or any other year . 0 +75359 3866 Build some robots , haul 'em to the theatre with you for the late show , and put on your own Mystery Science Theatre 3000 tribute to what is almost certainly going to go down as the worst -- and only -- killer website movie of this or any other year 0 +75360 3866 Build some robots , haul 'em to the theatre with you for the late show , and 2 +75361 3866 Build some robots , haul 'em to the theatre with you for the late show , 2 +75362 3866 Build some robots , haul 'em to the theatre with you for the late show 2 +75363 3866 Build some robots , 2 +75364 3866 Build some robots 2 +75365 3866 some robots 2 +75366 3866 robots 2 +75367 3866 haul 'em to the theatre with you for the late show 2 +75368 3866 haul 'em to the theatre 3 +75369 3866 haul 'em 2 +75370 3866 haul 2 +75371 3866 with you for the late show 2 +75372 3866 you for the late show 2 +75373 3866 for the late show 2 +75374 3866 the late show 2 +75375 3866 late show 2 +75376 3866 put on your own Mystery Science Theatre 3000 tribute to what is almost certainly going to go down as the worst -- and only -- killer website movie of this or any other year 0 +75377 3866 put on your own Mystery Science Theatre 3000 tribute 2 +75378 3866 your own Mystery Science Theatre 3000 tribute 3 +75379 3866 own Mystery Science Theatre 3000 tribute 3 +75380 3866 Mystery Science Theatre 3000 tribute 2 +75381 3866 Science Theatre 3000 tribute 2 +75382 3866 Theatre 3000 tribute 2 +75383 3866 3000 tribute 2 +75384 3866 to what is almost certainly going to go down as the worst -- and only -- killer website movie of this or any other year 0 +75385 3866 what is almost certainly going to go down as the worst -- and only -- killer website movie of this or any other year 0 +75386 3866 is almost certainly going to go down as the worst -- and only -- killer website movie of this or any other year 0 +75387 3866 is almost certainly 3 +75388 3866 going to go down as the worst -- and only -- killer website movie of this or any other year 1 +75389 3866 to go down as the worst -- and only -- killer website movie of this or any other year 0 +75390 3866 go down as the worst -- and only -- killer website movie of this or any other year 0 +75391 3866 as the worst -- and only -- killer website movie of this or any other year 0 +75392 3866 the worst -- and only -- killer website movie of this or any other year 2 +75393 3866 the worst -- and only -- killer website movie 1 +75394 3866 worst -- and only -- killer website movie 0 +75395 3866 worst -- and only -- 0 +75396 3866 -- and only -- 2 +75397 3866 -- and only 2 +75398 3866 killer website movie 3 +75399 3866 website movie 2 +75400 3866 website 2 +75401 3866 of this or any other year 2 +75402 3866 this or any other year 2 +75403 3866 any other year 2 +75404 3866 other year 2 +75405 3867 Brims with passion : for words , for its eccentric , accident-prone characters , and for the crazy things that keep people going in this crazy life . 4 +75406 3867 Brims with passion : for words , for its eccentric , accident-prone characters , and for the crazy things that keep people going in this crazy life 3 +75407 3867 Brims with passion : 3 +75408 3867 Brims with passion 3 +75409 3867 Brims 2 +75410 3867 with passion 3 +75411 3867 for words , for its eccentric , accident-prone characters , and for the crazy things that keep people going in this crazy life 3 +75412 3867 for words 2 +75413 3867 , for its eccentric , accident-prone characters , and for the crazy things that keep people going in this crazy life 3 +75414 3867 for its eccentric , accident-prone characters , and for the crazy things that keep people going in this crazy life 2 +75415 3867 for its eccentric , accident-prone characters 2 +75416 3867 its eccentric , accident-prone characters 2 +75417 3867 eccentric , accident-prone characters 1 +75418 3867 , accident-prone characters 2 +75419 3867 accident-prone characters 2 +75420 3867 accident-prone 1 +75421 3867 , and for the crazy things that keep people going in this crazy life 2 +75422 3867 for the crazy things that keep people going in this crazy life 2 +75423 3867 the crazy things that keep people going in this crazy life 3 +75424 3867 the crazy things 2 +75425 3867 crazy things 2 +75426 3867 that keep people going in this crazy life 2 +75427 3867 keep people going in this crazy life 3 +75428 3867 people going in this crazy life 2 +75429 3867 going in this crazy life 2 +75430 3867 in this crazy life 2 +75431 3867 this crazy life 3 +75432 3867 crazy life 2 +75433 3868 No matter how firmly director John Stainton has his tongue in his cheek , the fact remains that a wacky concept does not a movie make . 2 +75434 3868 No matter how firmly director John Stainton has his tongue in his cheek 2 +75435 3868 matter how firmly director John Stainton has his tongue in his cheek 2 +75436 3868 how firmly director John Stainton has his tongue in his cheek 2 +75437 3868 firmly director John Stainton has his tongue in his cheek 2 +75438 3868 firmly director John Stainton 2 +75439 3868 director John Stainton 2 +75440 3868 John Stainton 2 +75441 3868 Stainton 2 +75442 3868 has his tongue in his cheek 2 +75443 3868 his tongue in his cheek 2 +75444 3868 his tongue 2 +75445 3868 tongue 2 +75446 3868 in his cheek 2 +75447 3868 his cheek 2 +75448 3868 , the fact remains that a wacky concept does not a movie make . 1 +75449 3868 the fact remains that a wacky concept does not a movie make . 2 +75450 3868 remains that a wacky concept does not a movie make . 2 +75451 3868 remains that a wacky concept does not a movie make 1 +75452 3868 that a wacky concept does not a movie make 2 +75453 3868 a wacky concept does not a movie make 2 +75454 3868 a wacky concept 2 +75455 3868 wacky concept 2 +75456 3868 does not a movie make 1 +75457 3868 not a movie make 0 +75458 3868 a movie make 3 +75459 3869 Seemingly a vehicle to showcase the Canadian 's inane ramblings , Stealing Harvard is a smorgasbord of soliloquies about nothing delivered by the former Mr. Drew Barrymore . 0 +75460 3869 Seemingly a vehicle to showcase the Canadian 's inane ramblings 1 +75461 3869 a vehicle to showcase the Canadian 's inane ramblings 1 +75462 3869 vehicle to showcase the Canadian 's inane ramblings 0 +75463 3869 to showcase the Canadian 's inane ramblings 2 +75464 3869 showcase the Canadian 's inane ramblings 1 +75465 3869 the Canadian 's inane ramblings 1 +75466 3869 the Canadian 's 2 +75467 3869 Canadian 's 2 +75468 3869 Canadian 2 +75469 3869 inane ramblings 1 +75470 3869 ramblings 2 +75471 3869 , Stealing Harvard is a smorgasbord of soliloquies about nothing delivered by the former Mr. Drew Barrymore . 1 +75472 3869 Stealing Harvard is a smorgasbord of soliloquies about nothing delivered by the former Mr. Drew Barrymore . 1 +75473 3869 is a smorgasbord of soliloquies about nothing delivered by the former Mr. Drew Barrymore . 1 +75474 3869 is a smorgasbord of soliloquies about nothing delivered by the former Mr. Drew Barrymore 1 +75475 3869 a smorgasbord of soliloquies about nothing delivered by the former Mr. Drew Barrymore 1 +75476 3869 a smorgasbord 2 +75477 3869 smorgasbord 2 +75478 3869 of soliloquies about nothing delivered by the former Mr. Drew Barrymore 1 +75479 3869 soliloquies about nothing delivered by the former Mr. Drew Barrymore 1 +75480 3869 about nothing delivered by the former Mr. Drew Barrymore 1 +75481 3869 nothing delivered by the former Mr. Drew Barrymore 1 +75482 3869 delivered by the former Mr. Drew Barrymore 2 +75483 3869 by the former Mr. Drew Barrymore 2 +75484 3869 the former Mr. Drew Barrymore 2 +75485 3869 former Mr. Drew Barrymore 2 +75486 3869 Mr. Drew Barrymore 2 +75487 3869 Drew Barrymore 2 +75488 3869 Barrymore 2 +75489 3870 ... a delicious crime drama on par with the slickest of Mamet . 4 +75490 3870 a delicious crime drama on par with the slickest of Mamet . 4 +75491 3870 a delicious crime drama on par with the slickest of Mamet 4 +75492 3870 a delicious crime drama on par 3 +75493 3870 a delicious crime drama 3 +75494 3870 delicious crime drama 3 +75495 3870 on par 2 +75496 3870 with the slickest of Mamet 2 +75497 3870 the slickest of Mamet 2 +75498 3870 the slickest 2 +75499 3870 slickest 3 +75500 3870 of Mamet 2 +75501 3871 A heartbreakingly thoughtful minor classic , the work of a genuine and singular artist . 4 +75502 3871 A heartbreakingly thoughtful minor classic , the work of a genuine and singular artist 4 +75503 3871 A heartbreakingly thoughtful minor classic , 3 +75504 3871 A heartbreakingly thoughtful minor classic 3 +75505 3871 heartbreakingly thoughtful minor classic 3 +75506 3871 thoughtful minor classic 3 +75507 3871 minor classic 3 +75508 3871 the work of a genuine and singular artist 4 +75509 3871 of a genuine and singular artist 3 +75510 3871 a genuine and singular artist 4 +75511 3871 genuine and singular artist 4 +75512 3871 and singular artist 2 +75513 3871 singular artist 2 +75514 3871 singular 2 +75515 3872 But it does n't need Gangs of New York . 2 +75516 3872 it does n't need Gangs of New York . 2 +75517 3872 does n't need Gangs of New York . 2 +75518 3872 does n't need Gangs of New York 1 +75519 3872 need Gangs of New York 2 +75520 3872 Gangs of New York 2 +75521 3873 This slow-moving Swedish film offers not even a hint of joy , preferring to focus on the humiliation of Martin as he defecates in bed and urinates on the plants at his own birthday party . 2 +75522 3873 This slow-moving Swedish film 1 +75523 3873 slow-moving Swedish film 1 +75524 3873 slow-moving 1 +75525 3873 Swedish film 2 +75526 3873 offers not even a hint of joy , preferring to focus on the humiliation of Martin as he defecates in bed and urinates on the plants at his own birthday party . 2 +75527 3873 offers not even a hint of joy , preferring to focus on the humiliation of Martin as he defecates in bed and urinates on the plants at his own birthday party 0 +75528 3873 not even a hint of joy , preferring to focus on the humiliation of Martin as he defecates in bed and urinates on the plants at his own birthday party 0 +75529 3873 even a hint of joy , preferring to focus on the humiliation of Martin as he defecates in bed and urinates on the plants at his own birthday party 1 +75530 3873 a hint of joy , preferring to focus on the humiliation of Martin as he defecates in bed and urinates on the plants at his own birthday party 1 +75531 3873 a hint of joy , preferring to focus on the humiliation of Martin as he defecates in bed and 2 +75532 3873 a hint of joy , preferring to focus on the humiliation of Martin as he defecates in bed 1 +75533 3873 a hint of joy , 3 +75534 3873 a hint of joy 3 +75535 3873 of joy 2 +75536 3873 preferring to focus on the humiliation of Martin as he defecates in bed 1 +75537 3873 preferring 2 +75538 3873 to focus on the humiliation of Martin as he defecates in bed 1 +75539 3873 focus on the humiliation of Martin as he defecates in bed 2 +75540 3873 focus on the humiliation of Martin 2 +75541 3873 on the humiliation of Martin 2 +75542 3873 the humiliation of Martin 2 +75543 3873 the humiliation 2 +75544 3873 humiliation 2 +75545 3873 of Martin 2 +75546 3873 as he defecates in bed 2 +75547 3873 he defecates in bed 1 +75548 3873 defecates in bed 2 +75549 3873 defecates 1 +75550 3873 in bed 2 +75551 3873 bed 2 +75552 3873 urinates on the plants at his own birthday party 3 +75553 3873 urinates 2 +75554 3873 on the plants at his own birthday party 2 +75555 3873 the plants at his own birthday party 2 +75556 3873 the plants 2 +75557 3873 plants 2 +75558 3873 at his own birthday party 2 +75559 3873 his own birthday party 2 +75560 3873 own birthday party 2 +75561 3873 birthday party 2 +75562 3874 What could have easily become a cold , calculated exercise in postmodern pastiche winds up a powerful and deeply moving example of melodramatic moviemaking . 4 +75563 3874 could have easily become a cold , calculated exercise in postmodern pastiche winds up a powerful and deeply moving example of melodramatic moviemaking . 3 +75564 3874 could have easily become a cold , calculated exercise in postmodern pastiche winds up a powerful and deeply moving example of melodramatic moviemaking 3 +75565 3874 have easily become a cold , calculated exercise in postmodern pastiche winds up a powerful and deeply moving example of melodramatic moviemaking 3 +75566 3874 easily become a cold , calculated exercise in postmodern pastiche winds up a powerful and deeply moving example of melodramatic moviemaking 4 +75567 3874 become a cold , calculated exercise in postmodern pastiche winds up a powerful and deeply moving example of melodramatic moviemaking 4 +75568 3874 become a cold , calculated exercise in postmodern pastiche winds 2 +75569 3874 become a cold , calculated exercise 2 +75570 3874 a cold , calculated exercise 1 +75571 3874 cold , calculated exercise 1 +75572 3874 , calculated exercise 2 +75573 3874 calculated exercise 2 +75574 3874 in postmodern pastiche winds 2 +75575 3874 postmodern pastiche winds 2 +75576 3874 pastiche winds 2 +75577 3874 up a powerful and deeply moving example of melodramatic moviemaking 3 +75578 3874 a powerful and deeply moving example of melodramatic moviemaking 4 +75579 3874 a powerful and deeply moving example 3 +75580 3874 powerful and deeply moving example 4 +75581 3874 powerful and deeply moving 4 +75582 3874 of melodramatic moviemaking 2 +75583 3874 melodramatic moviemaking 2 +75584 3875 Return to Never Land is reliable , standard Disney animated fare , with enough creative energy and wit to entertain all ages . 4 +75585 3875 Return to Never Land is reliable 3 +75586 3875 is reliable 3 +75587 3875 , standard Disney animated fare , with enough creative energy and wit to entertain all ages . 3 +75588 3875 standard Disney animated fare , with enough creative energy and wit to entertain all ages . 2 +75589 3875 standard Disney animated 2 +75590 3875 Disney animated 2 +75591 3875 fare , with enough creative energy and wit to entertain all ages . 3 +75592 3875 fare , with enough creative energy and wit to entertain all ages 3 +75593 3875 fare , with enough 3 +75594 3875 fare , 2 +75595 3875 with enough 2 +75596 3875 creative energy and wit to entertain all ages 4 +75597 3875 energy and wit to entertain all ages 4 +75598 3875 energy and wit 3 +75599 3875 to entertain all ages 4 +75600 3875 entertain all ages 3 +75601 3876 Escapes the precious trappings of most romantic comedies , infusing into the story very real , complicated emotions . 3 +75602 3876 Escapes the precious trappings of most romantic comedies , infusing into the story very real , complicated emotions 3 +75603 3876 Escapes the precious trappings of most romantic comedies , infusing into the story very real , 3 +75604 3876 Escapes the precious trappings of most romantic comedies , infusing into the story very real 3 +75605 3876 Escapes the precious trappings of most romantic comedies , infusing into the story 3 +75606 3876 the precious trappings of most romantic comedies , infusing into the story 3 +75607 3876 the precious trappings 3 +75608 3876 precious trappings 2 +75609 3876 of most romantic comedies , infusing into the story 2 +75610 3876 most romantic comedies , infusing into the story 2 +75611 3876 most romantic comedies , 3 +75612 3876 most romantic comedies 3 +75613 3876 most romantic 3 +75614 3876 infusing into the story 2 +75615 3876 infusing 2 +75616 3876 into the story 2 +75617 3876 very real 3 +75618 3876 complicated emotions 2 +75619 3877 Bittersweet comedy\/drama full of life , hand gestures , and some really adorable Italian guys . 4 +75620 3877 Bittersweet comedy\/drama full of life , hand gestures , and some 3 +75621 3877 Bittersweet comedy\/drama 2 +75622 3877 full of life , hand gestures , and some 3 +75623 3877 of life , hand gestures , and some 2 +75624 3877 life , hand gestures , and some 2 +75625 3877 life , hand gestures , and 1 +75626 3877 life , hand gestures , 3 +75627 3877 life , hand gestures 2 +75628 3877 life , 3 +75629 3877 hand gestures 2 +75630 3877 gestures 2 +75631 3877 really adorable Italian guys . 3 +75632 3877 adorable Italian guys . 3 +75633 3877 adorable Italian guys 3 +75634 3877 Italian guys 2 +75635 3878 Because the intelligence level of the characters must be low , very low , very very low , for the masquerade to work , the movie contains no wit , only labored gags . 0 +75636 3878 Because the intelligence level of the characters must be low , very low , very very low , for the masquerade to work 0 +75637 3878 the intelligence level of the characters must be low , very low , very very low , for the masquerade to work 1 +75638 3878 the intelligence level of the characters 2 +75639 3878 the intelligence level 2 +75640 3878 intelligence level 2 +75641 3878 of the characters 2 +75642 3878 must be low , very low , very very low , for the masquerade to work 1 +75643 3878 be low , very low , very very low , for the masquerade to work 1 +75644 3878 be low , very low , very very low , 1 +75645 3878 be low , very low , very very low 2 +75646 3878 low , very low , very very low 0 +75647 3878 low , very low , very 1 +75648 3878 low , very low , 1 +75649 3878 low , very low 1 +75650 3878 low , 2 +75651 3878 very low 2 +75652 3878 for the masquerade to work 2 +75653 3878 the masquerade to work 2 +75654 3878 masquerade to work 2 +75655 3878 masquerade 2 +75656 3878 , the movie contains no wit , only labored gags . 1 +75657 3878 the movie contains no wit , only labored gags . 1 +75658 3878 contains no wit , only labored gags . 0 +75659 3878 contains no wit , only labored gags 1 +75660 3878 no wit , only labored gags 1 +75661 3878 no wit , only 1 +75662 3878 no wit , 1 +75663 3878 no wit 1 +75664 3878 labored gags 1 +75665 3879 Solondz is so intent on hammering home his message that he forgets to make it entertaining . 1 +75666 3879 is so intent on hammering home his message that he forgets to make it entertaining . 0 +75667 3879 is so intent on hammering home his message that he forgets to make it entertaining 1 +75668 3879 is so intent on hammering home his message 2 +75669 3879 so intent on hammering home his message 2 +75670 3879 intent on hammering home his message 2 +75671 3879 on hammering home his message 2 +75672 3879 hammering home his message 2 +75673 3879 hammering home 2 +75674 3879 hammering 2 +75675 3879 that he forgets to make it entertaining 1 +75676 3879 he forgets to make it entertaining 1 +75677 3879 forgets to make it entertaining 0 +75678 3879 to make it entertaining 2 +75679 3879 make it entertaining 2 +75680 3880 Adults will certainly want to spend their time in the theater thinking up grocery lists and ways to tell their kids how not to act like Pinocchio . 2 +75681 3880 will certainly want to spend their time in the theater thinking up grocery lists and ways to tell their kids how not to act like Pinocchio . 2 +75682 3880 will certainly want to spend their time in the theater thinking up grocery lists and ways to tell their kids how not to act like Pinocchio 1 +75683 3880 will certainly 2 +75684 3880 want to spend their time in the theater thinking up grocery lists and ways to tell their kids how not to act like Pinocchio 1 +75685 3880 to spend their time in the theater thinking up grocery lists and ways to tell their kids how not to act like Pinocchio 1 +75686 3880 spend their time in the theater thinking up grocery lists and ways to tell their kids how not to act like Pinocchio 0 +75687 3880 spend their time 2 +75688 3880 in the theater thinking up grocery lists and ways to tell their kids how not to act like Pinocchio 1 +75689 3880 the theater thinking up grocery lists and ways to tell their kids how not to act like Pinocchio 1 +75690 3880 thinking up grocery lists and ways to tell their kids how not to act like Pinocchio 1 +75691 3880 thinking up grocery lists and ways 2 +75692 3880 thinking up 2 +75693 3880 grocery lists and ways 2 +75694 3880 grocery 2 +75695 3880 lists and ways 3 +75696 3880 lists and 2 +75697 3880 lists 2 +75698 3880 to tell their kids how not to act like Pinocchio 3 +75699 3880 tell their kids how not to act like Pinocchio 2 +75700 3880 tell their kids 2 +75701 3880 their kids 2 +75702 3880 how not to act like Pinocchio 2 +75703 3880 how not 2 +75704 3880 to act like Pinocchio 2 +75705 3880 act like Pinocchio 2 +75706 3880 like Pinocchio 3 +75707 3881 Stuart 's poor-me persona needs a whole bunch of Snowball 's cynicism to cut through the sugar coating . 2 +75708 3881 Stuart 's poor-me persona 1 +75709 3881 Stuart 's 2 +75710 3881 poor-me persona 1 +75711 3881 poor-me 1 +75712 3881 needs a whole bunch of Snowball 's cynicism to cut through the sugar coating . 2 +75713 3881 needs a whole bunch of Snowball 's cynicism to cut through the sugar coating 2 +75714 3881 a whole bunch of Snowball 's cynicism to cut through the sugar coating 2 +75715 3881 a whole bunch 2 +75716 3881 whole bunch 2 +75717 3881 of Snowball 's cynicism to cut through the sugar coating 2 +75718 3881 Snowball 's cynicism to cut through the sugar coating 2 +75719 3881 Snowball 's 2 +75720 3881 Snowball 2 +75721 3881 cynicism to cut through the sugar coating 1 +75722 3881 to cut through the sugar coating 1 +75723 3881 cut through the sugar coating 2 +75724 3881 through the sugar coating 1 +75725 3881 the sugar coating 2 +75726 3881 sugar coating 2 +75727 3881 coating 2 +75728 3882 The viewer takes great pleasure in watching the resourceful Molly stay a step ahead of her pursuers . 3 +75729 3882 takes great pleasure in watching the resourceful Molly stay a step ahead of her pursuers . 3 +75730 3882 takes great pleasure in watching the resourceful Molly stay a step ahead of her pursuers 3 +75731 3882 takes great pleasure 3 +75732 3882 in watching the resourceful Molly stay a step ahead of her pursuers 3 +75733 3882 watching the resourceful Molly stay a step ahead of her pursuers 2 +75734 3882 the resourceful Molly stay a step ahead of her pursuers 2 +75735 3882 the resourceful Molly 3 +75736 3882 resourceful Molly 2 +75737 3882 stay a step ahead of her pursuers 2 +75738 3882 a step ahead of her pursuers 2 +75739 3882 ahead of her pursuers 2 +75740 3882 of her pursuers 2 +75741 3882 her pursuers 2 +75742 3882 pursuers 2 +75743 3883 What 's most refreshing about Real Women Have Curves is its unforced comedy-drama and its relaxed , natural-seeming actors . 3 +75744 3883 What 's most refreshing about Real Women Have Curves 3 +75745 3883 's most refreshing about Real Women Have Curves 3 +75746 3883 most refreshing about Real Women Have Curves 3 +75747 3883 most refreshing 3 +75748 3883 about Real Women Have Curves 2 +75749 3883 is its unforced comedy-drama and its relaxed , natural-seeming actors . 3 +75750 3883 is its unforced comedy-drama and its relaxed , natural-seeming actors 3 +75751 3883 its unforced comedy-drama and its relaxed , natural-seeming actors 3 +75752 3883 its unforced comedy-drama and 2 +75753 3883 its unforced comedy-drama 3 +75754 3883 unforced comedy-drama 3 +75755 3883 its relaxed , natural-seeming actors 3 +75756 3883 its relaxed , 3 +75757 3883 its relaxed 3 +75758 3883 relaxed 2 +75759 3883 natural-seeming actors 3 +75760 3883 natural-seeming 2 +75761 3884 If you 're looking to rekindle the magic of the first film , you 'll need a stronger stomach than us . 1 +75762 3884 If you 're looking to rekindle the magic of the first film 2 +75763 3884 you 're looking to rekindle the magic of the first film 2 +75764 3884 're looking to rekindle the magic of the first film 2 +75765 3884 looking to rekindle the magic of the first film 2 +75766 3884 to rekindle the magic of the first film 2 +75767 3884 rekindle the magic of the first film 3 +75768 3884 rekindle 2 +75769 3884 the magic of the first film 2 +75770 3884 , you 'll need a stronger stomach than us . 2 +75771 3884 you 'll need a stronger stomach than us . 0 +75772 3884 'll need a stronger stomach than us . 2 +75773 3884 'll need a stronger stomach than us 1 +75774 3884 need a stronger stomach than us 1 +75775 3884 need a stronger stomach 2 +75776 3884 a stronger stomach 2 +75777 3884 stronger stomach 2 +75778 3884 than us 2 +75779 3885 The wonder of Mostly Martha is the performance of Gedeck , who makes Martha enormously endearing . 4 +75780 3885 The wonder of Mostly Martha 3 +75781 3885 The wonder 2 +75782 3885 is the performance of Gedeck , who makes Martha enormously endearing . 3 +75783 3885 is the performance of Gedeck , who makes Martha enormously endearing 3 +75784 3885 the performance of Gedeck , who makes Martha enormously endearing 4 +75785 3885 the performance 2 +75786 3885 of Gedeck , who makes Martha enormously endearing 2 +75787 3885 Gedeck , who makes Martha enormously endearing 3 +75788 3885 Gedeck , 1 +75789 3885 Gedeck 3 +75790 3885 who makes Martha enormously endearing 3 +75791 3885 makes Martha enormously endearing 3 +75792 3885 Martha enormously endearing 3 +75793 3885 enormously endearing 4 +75794 3886 A selection of scenes in search of a movie . 1 +75795 3886 A selection of scenes in search of a movie 1 +75796 3886 A selection of scenes in search 2 +75797 3886 A selection 2 +75798 3886 of scenes in search 2 +75799 3886 scenes in search 2 +75800 3887 The rare movie that 's as crisp and to the point as the novel on which it 's based . 4 +75801 3887 The rare movie that 's as crisp and to the point as the novel on which it 's based 3 +75802 3887 The rare movie that 's as crisp and to the point 3 +75803 3887 The rare movie 3 +75804 3887 that 's as crisp and to the point 3 +75805 3887 's as crisp and to the point 3 +75806 3887 as crisp and to the point 4 +75807 3887 as crisp and 3 +75808 3887 as crisp 2 +75809 3887 to the point 2 +75810 3887 as the novel on which it 's based 3 +75811 3887 the novel on which it 's based 2 +75812 3887 the novel 3 +75813 3887 on which it 's based 2 +75814 3887 on which 2 +75815 3887 it 's based 2 +75816 3887 's based 2 +75817 3888 Or intelligent . 2 +75818 3888 intelligent . 3 +75819 3889 This film can only point the way -- but thank goodness for this signpost . 3 +75820 3889 can only point the way -- but thank goodness for this signpost . 3 +75821 3889 can only point the way -- but thank goodness for this signpost 3 +75822 3889 can only point the way -- but 2 +75823 3889 can only point the way -- 2 +75824 3889 can only point the way 2 +75825 3889 point the way 2 +75826 3889 thank goodness for this signpost 2 +75827 3889 goodness for this signpost 3 +75828 3889 for this signpost 2 +75829 3889 this signpost 2 +75830 3890 Hawn and Sarandon form an acting bond that makes The Banger Sisters a fascinating character study with laughs to spare . 4 +75831 3890 Hawn and Sarandon 2 +75832 3890 Hawn and 2 +75833 3890 Hawn 2 +75834 3890 form an acting bond that makes The Banger Sisters a fascinating character study with laughs to spare . 3 +75835 3890 form an acting bond that makes The Banger Sisters a fascinating character study with laughs to spare 3 +75836 3890 an acting bond that makes The Banger Sisters a fascinating character study with laughs to spare 3 +75837 3890 an acting bond 3 +75838 3890 acting bond 2 +75839 3890 that makes The Banger Sisters a fascinating character study with laughs to spare 4 +75840 3890 makes The Banger Sisters a fascinating character study with laughs to spare 3 +75841 3890 makes The Banger Sisters a fascinating character study with laughs 3 +75842 3890 makes The Banger Sisters 2 +75843 3890 The Banger Sisters 2 +75844 3890 Banger Sisters 2 +75845 3890 Banger 2 +75846 3890 a fascinating character study with laughs 4 +75847 3890 a fascinating character study 3 +75848 3890 fascinating character study 4 +75849 3890 with laughs 3 +75850 3891 By the end of it all I sort of loved the people onscreen , even though I could not stand them . 3 +75851 3891 By the end of it all 2 +75852 3891 the end of it all 2 +75853 3891 of it all 2 +75854 3891 it all 2 +75855 3891 I sort of loved the people onscreen , even though I could not stand them . 2 +75856 3891 sort of loved the people onscreen , even though I could not stand them . 3 +75857 3891 loved the people onscreen , even though I could not stand them . 3 +75858 3891 loved the people onscreen , even though I could not stand them 3 +75859 3891 loved the people onscreen , 4 +75860 3891 loved the people onscreen 3 +75861 3891 the people onscreen 2 +75862 3891 people onscreen 2 +75863 3891 even though I could not stand them 0 +75864 3891 though I could not stand them 1 +75865 3891 I could not stand them 0 +75866 3891 could not stand them 1 +75867 3891 could not 2 +75868 3891 stand them 2 +75869 3892 One big blustery movie where nothing really happens . 1 +75870 3892 One big blustery movie 1 +75871 3892 big blustery movie 2 +75872 3892 blustery movie 1 +75873 3892 blustery 1 +75874 3892 where nothing really happens . 1 +75875 3892 where nothing really happens 0 +75876 3892 nothing really happens 1 +75877 3892 really happens 2 +75878 3893 Plummer steals the show without resorting to camp as Nicholas ' wounded and wounding Uncle Ralph . 3 +75879 3893 steals the show without resorting to camp as Nicholas ' wounded and wounding Uncle Ralph . 3 +75880 3893 steals the show without resorting to camp as Nicholas ' wounded and wounding Uncle Ralph 3 +75881 3893 without resorting to camp as Nicholas ' wounded and wounding Uncle Ralph 2 +75882 3893 resorting to camp as Nicholas ' wounded and wounding Uncle Ralph 2 +75883 3893 resorting to camp as Nicholas ' wounded and 2 +75884 3893 resorting to camp as Nicholas ' wounded 2 +75885 3893 resorting to camp 1 +75886 3893 to camp 2 +75887 3893 as Nicholas ' wounded 2 +75888 3893 Nicholas ' wounded 2 +75889 3893 Nicholas ' 2 +75890 3893 wounded 2 +75891 3893 wounding Uncle Ralph 2 +75892 3893 wounding 2 +75893 3894 ... Wallace is smart to vary the pitch of his movie , balancing deafening battle scenes with quieter domestic scenes of women back home receiving War Department telegrams . 3 +75894 3894 Wallace is smart to vary the pitch of his movie , balancing deafening battle scenes with quieter domestic scenes of women back home receiving War Department telegrams . 3 +75895 3894 is smart to vary the pitch of his movie , balancing deafening battle scenes with quieter domestic scenes of women back home receiving War Department telegrams . 2 +75896 3894 is smart to vary the pitch of his movie , balancing deafening battle scenes with quieter domestic scenes of women back home receiving War Department telegrams 3 +75897 3894 smart to vary the pitch of his movie , balancing deafening battle scenes with quieter domestic scenes of women back home receiving War Department telegrams 3 +75898 3894 to vary the pitch of his movie , balancing deafening battle scenes with quieter domestic scenes of women back home receiving War Department telegrams 3 +75899 3894 vary the pitch of his movie , balancing deafening battle scenes with quieter domestic scenes of women back home receiving War Department telegrams 2 +75900 3894 vary 2 +75901 3894 the pitch of his movie , balancing deafening battle scenes with quieter domestic scenes of women back home receiving War Department telegrams 2 +75902 3894 the pitch of his movie , 2 +75903 3894 the pitch of his movie 2 +75904 3894 of his movie 2 +75905 3894 balancing deafening battle scenes with quieter domestic scenes of women back home receiving War Department telegrams 3 +75906 3894 deafening battle scenes with quieter domestic scenes of women back home receiving War Department telegrams 2 +75907 3894 deafening battle scenes 2 +75908 3894 deafening 1 +75909 3894 with quieter domestic scenes of women back home receiving War Department telegrams 2 +75910 3894 quieter domestic scenes of women back home receiving War Department telegrams 2 +75911 3894 quieter domestic scenes of women 2 +75912 3894 quieter domestic scenes 1 +75913 3894 quieter 2 +75914 3894 domestic scenes 2 +75915 3894 back home receiving War Department telegrams 2 +75916 3894 back home 2 +75917 3894 receiving War Department telegrams 1 +75918 3894 receiving 2 +75919 3894 War Department telegrams 2 +75920 3894 Department telegrams 2 +75921 3894 telegrams 2 +75922 3895 This is a movie that is what it is : a pleasant distraction , a Friday night diversion , an excuse to eat popcorn . 3 +75923 3895 is a movie that is what it is : a pleasant distraction , a Friday night diversion , an excuse to eat popcorn . 3 +75924 3895 is a movie that is what it is : a pleasant distraction , a Friday night diversion , an excuse to eat popcorn 3 +75925 3895 a movie that is what it is : a pleasant distraction , a Friday night diversion , an excuse to eat popcorn 3 +75926 3895 a movie that is what it is : 2 +75927 3895 a movie that is what it is 2 +75928 3895 that is what it is 2 +75929 3895 is what it is 2 +75930 3895 what it is 2 +75931 3895 a pleasant distraction , a Friday night diversion , an excuse to eat popcorn 3 +75932 3895 a pleasant distraction , a Friday night diversion , 3 +75933 3895 a pleasant distraction , a Friday night diversion 3 +75934 3895 a pleasant distraction , 3 +75935 3895 a pleasant distraction 3 +75936 3895 pleasant distraction 3 +75937 3895 distraction 2 +75938 3895 a Friday night diversion 2 +75939 3895 Friday night diversion 2 +75940 3895 night diversion 2 +75941 3895 an excuse to eat popcorn 2 +75942 3895 excuse to eat popcorn 1 +75943 3895 to eat popcorn 3 +75944 3895 eat popcorn 3 +75945 3896 More trifle than triumph . 1 +75946 3896 More trifle than triumph 1 +75947 3896 More trifle 2 +75948 3896 than triumph 2 +75949 3897 This u-boat does n't have a captain . 1 +75950 3897 This u-boat 2 +75951 3897 u-boat 2 +75952 3897 does n't have a captain . 2 +75953 3897 does n't have a captain 2 +75954 3897 have a captain 2 +75955 3897 a captain 2 +75956 3898 You leave the same way you came -- a few tasty morsels under your belt , but no new friends . 1 +75957 3898 leave the same way you came -- a few tasty morsels under your belt , but no new friends . 1 +75958 3898 leave the same way you came -- a few tasty morsels under your belt , but no new friends 1 +75959 3898 the same way you came -- a few tasty morsels under your belt , but no new friends 1 +75960 3898 the same way you came -- a few tasty morsels under your belt , 3 +75961 3898 the same way you came -- a few tasty morsels under your belt 2 +75962 3898 the same way you came -- 2 +75963 3898 the same way you came 2 +75964 3898 you came 2 +75965 3898 a few tasty morsels under your belt 3 +75966 3898 a few tasty morsels 3 +75967 3898 few tasty morsels 2 +75968 3898 tasty morsels 3 +75969 3898 morsels 2 +75970 3898 under your belt 3 +75971 3898 your belt 2 +75972 3898 but no new friends 2 +75973 3898 no new friends 1 +75974 3898 new friends 3 +75975 3899 A little better than Sorcerer 's Stone . 3 +75976 3899 A little better than Sorcerer 's Stone 3 +75977 3899 better than Sorcerer 's Stone 3 +75978 3899 than Sorcerer 's Stone 2 +75979 3899 Sorcerer 's Stone 2 +75980 3899 Sorcerer 's 2 +75981 3899 Sorcerer 2 +75982 3900 With one exception , every blighter in this particular South London housing project digs into dysfunction like it 's a big , comforting jar of Marmite , to be slathered on crackers and served as a feast of bleakness . 2 +75983 3900 With one exception 2 +75984 3900 one exception 2 +75985 3900 , every blighter in this particular South London housing project digs into dysfunction like it 's a big , comforting jar of Marmite , to be slathered on crackers and served as a feast of bleakness . 3 +75986 3900 every blighter in this particular South London housing project digs into dysfunction like it 's a big , comforting jar of Marmite , to be slathered on crackers and served as a feast of bleakness . 2 +75987 3900 every blighter in this particular South London housing project 2 +75988 3900 every blighter 2 +75989 3900 blighter 2 +75990 3900 in this particular South London housing project 2 +75991 3900 this particular South London housing project 2 +75992 3900 particular South London housing project 2 +75993 3900 South London housing project 2 +75994 3900 London housing project 2 +75995 3900 housing project 2 +75996 3900 digs into dysfunction like it 's a big , comforting jar of Marmite , to be slathered on crackers and served as a feast of bleakness . 2 +75997 3900 digs into dysfunction like it 's a big , comforting jar of Marmite , to be slathered on crackers and served as a feast of bleakness 2 +75998 3900 digs into dysfunction 2 +75999 3900 into dysfunction 2 +76000 3900 dysfunction 1 +76001 3900 like it 's a big , comforting jar of Marmite , to be slathered on crackers and served as a feast of bleakness 1 +76002 3900 it 's a big , comforting jar of Marmite , to be slathered on crackers and served as a feast of bleakness 3 +76003 3900 's a big , comforting jar of Marmite , to be slathered on crackers and served as a feast of bleakness 0 +76004 3900 's a big , comforting jar of Marmite , 3 +76005 3900 's a big , comforting jar of Marmite 2 +76006 3900 a big , comforting jar of Marmite 3 +76007 3900 a big , comforting jar 3 +76008 3900 big , comforting jar 3 +76009 3900 , comforting jar 3 +76010 3900 comforting jar 2 +76011 3900 comforting 3 +76012 3900 of Marmite 2 +76013 3900 Marmite 2 +76014 3900 to be slathered on crackers and served as a feast of bleakness 1 +76015 3900 be slathered on crackers and served as a feast of bleakness 1 +76016 3900 slathered on crackers and served as a feast of bleakness 1 +76017 3900 slathered on crackers and 1 +76018 3900 slathered on crackers 2 +76019 3900 on crackers 2 +76020 3900 crackers 2 +76021 3900 served as a feast of bleakness 1 +76022 3900 as a feast of bleakness 1 +76023 3900 a feast of bleakness 2 +76024 3900 a feast 3 +76025 3900 of bleakness 2 +76026 3900 bleakness 2 +76027 3901 I 'm not exactly sure what this movie thinks it is about . 1 +76028 3901 'm not exactly sure what this movie thinks it is about . 0 +76029 3901 'm not exactly sure what this movie thinks it is about 1 +76030 3901 exactly sure what this movie thinks it is about 2 +76031 3901 sure what this movie thinks it is about 2 +76032 3901 what this movie thinks it is about 2 +76033 3901 this movie thinks it is about 2 +76034 3901 thinks it is about 2 +76035 3902 Most of the film feels conceived and shot on the fly -- like between lunch breaks for Shearer 's radio show and his Simpson voice-overs . 2 +76036 3902 feels conceived and shot on the fly -- like between lunch breaks for Shearer 's radio show and his Simpson voice-overs . 1 +76037 3902 feels conceived and shot on the fly -- like between lunch breaks for Shearer 's radio show and his Simpson voice-overs 1 +76038 3902 conceived and shot on the fly -- like between lunch breaks for Shearer 's radio show and his Simpson voice-overs 1 +76039 3902 conceived and shot 2 +76040 3902 conceived and 2 +76041 3902 conceived 2 +76042 3902 on the fly -- like between lunch breaks for Shearer 's radio show and his Simpson voice-overs 2 +76043 3902 the fly -- like between lunch breaks for Shearer 's radio show and his Simpson voice-overs 2 +76044 3902 the fly -- like between lunch breaks for Shearer 's radio show and 2 +76045 3902 the fly -- like between lunch breaks for Shearer 's radio show 2 +76046 3902 the fly -- 2 +76047 3902 the fly 2 +76048 3902 like between lunch breaks for Shearer 's radio show 2 +76049 3902 between lunch breaks for Shearer 's radio show 2 +76050 3902 lunch breaks for Shearer 's radio show 2 +76051 3902 lunch breaks 2 +76052 3902 for Shearer 's radio show 2 +76053 3902 Shearer 's radio show 2 +76054 3902 Shearer 's 2 +76055 3902 Shearer 2 +76056 3902 radio show 2 +76057 3902 radio 2 +76058 3902 his Simpson voice-overs 2 +76059 3902 Simpson voice-overs 2 +76060 3902 voice-overs 2 +76061 3903 The main story ... is compelling enough , but it 's difficult to shrug off the annoyance of that chatty fish . 1 +76062 3903 The main story 2 +76063 3903 main story 2 +76064 3903 ... is compelling enough , but it 's difficult to shrug off the annoyance of that chatty fish . 2 +76065 3903 is compelling enough , but it 's difficult to shrug off the annoyance of that chatty fish . 2 +76066 3903 is compelling enough , but it 's difficult to shrug off the annoyance of that chatty fish 1 +76067 3903 is compelling enough , 3 +76068 3903 is compelling enough 4 +76069 3903 compelling enough 3 +76070 3903 but it 's difficult to shrug off the annoyance of that chatty fish 1 +76071 3903 it 's difficult to shrug off the annoyance of that chatty fish 1 +76072 3903 's difficult to shrug off the annoyance of that chatty fish 1 +76073 3903 difficult to shrug off the annoyance of that chatty fish 1 +76074 3903 to shrug off the annoyance of that chatty fish 2 +76075 3903 shrug off the annoyance of that chatty fish 2 +76076 3903 shrug off 2 +76077 3903 shrug 2 +76078 3903 the annoyance of that chatty fish 1 +76079 3903 the annoyance 1 +76080 3903 annoyance 0 +76081 3903 of that chatty fish 2 +76082 3903 that chatty fish 2 +76083 3903 chatty fish 1 +76084 3903 chatty 2 +76085 3904 Chan 's stunts are limited and so embellished by editing that there 's really not much of a sense of action or even action-comedy . 1 +76086 3904 Chan 's stunts 2 +76087 3904 are limited and so embellished by editing that there 's really not much of a sense of action or even action-comedy . 0 +76088 3904 are limited and so embellished by editing that there 's really not much of a sense of action or even action-comedy 1 +76089 3904 limited and so embellished by editing that there 's really not much of a sense of action or even action-comedy 1 +76090 3904 limited and so embellished by editing that there 's really not much of a sense of action or 1 +76091 3904 limited and so embellished by editing that there 's really not much of a sense of action 1 +76092 3904 limited and 2 +76093 3904 so embellished by editing that there 's really not much of a sense of action 2 +76094 3904 so embellished by editing 2 +76095 3904 embellished by editing 3 +76096 3904 embellished 2 +76097 3904 by editing 2 +76098 3904 that there 's really not much of a sense of action 1 +76099 3904 there 's really not much of a sense of action 2 +76100 3904 's really not much of a sense of action 2 +76101 3904 's really not 2 +76102 3904 much of a sense of action 2 +76103 3904 of a sense of action 2 +76104 3904 a sense of action 3 +76105 3904 of action 2 +76106 3904 even action-comedy 2 +76107 3905 The script , the gags , the characters are all direct-to-video stuff , and that 's where this film should have remained . 0 +76108 3905 The script , the gags , the characters are all direct-to-video stuff , and that 's where this film should have remained 0 +76109 3905 The script , the gags , the characters are all direct-to-video stuff , and 1 +76110 3905 The script , the gags , the characters are all direct-to-video stuff , 0 +76111 3905 The script , the gags , the characters are all direct-to-video stuff 1 +76112 3905 The script , the gags , the characters 2 +76113 3905 The script , 2 +76114 3905 the gags , the characters 2 +76115 3905 are all direct-to-video stuff 1 +76116 3905 all direct-to-video stuff 2 +76117 3905 direct-to-video stuff 1 +76118 3905 direct-to-video 2 +76119 3905 that 's where this film should have remained 1 +76120 3905 's where this film should have remained 2 +76121 3905 where this film should have remained 2 +76122 3905 this film should have remained 2 +76123 3905 should have remained 2 +76124 3905 have remained 2 +76125 3905 remained 2 +76126 3906 With the prospect of films like Kangaroo Jack about to burst across America 's winter movie screens it 's a pleasure to have a film like The Hours as an alternative . 3 +76127 3906 With the prospect of films like Kangaroo Jack about to burst across America 's winter movie screens 2 +76128 3906 the prospect of films like Kangaroo Jack about to burst across America 's winter movie screens 2 +76129 3906 of films like Kangaroo Jack about to burst across America 's winter movie screens 2 +76130 3906 films like Kangaroo Jack about to burst across America 's winter movie screens 2 +76131 3906 like Kangaroo Jack about to burst across America 's winter movie screens 2 +76132 3906 Kangaroo Jack about to burst across America 's winter movie screens 2 +76133 3906 Kangaroo Jack 2 +76134 3906 Kangaroo 2 +76135 3906 about to burst across America 's winter movie screens 2 +76136 3906 to burst across America 's winter movie screens 2 +76137 3906 burst across America 's winter movie screens 2 +76138 3906 burst 2 +76139 3906 across America 's winter movie screens 2 +76140 3906 America 's winter movie screens 2 +76141 3906 winter movie screens 2 +76142 3906 movie screens 2 +76143 3906 screens 2 +76144 3906 it 's a pleasure to have a film like The Hours as an alternative . 4 +76145 3906 's a pleasure to have a film like The Hours as an alternative . 3 +76146 3906 's a pleasure to have a film like The Hours as an alternative 3 +76147 3906 a pleasure to have a film like The Hours as an alternative 4 +76148 3906 pleasure to have a film like The Hours as an alternative 3 +76149 3906 to have a film like The Hours as an alternative 2 +76150 3906 have a film like The Hours as an alternative 2 +76151 3906 a film like The Hours as an alternative 2 +76152 3906 like The Hours as an alternative 3 +76153 3906 The Hours as an alternative 2 +76154 3906 as an alternative 2 +76155 3906 an alternative 2 +76156 3907 May not be a breakthrough in filmmaking , but it is unwavering and arresting . 3 +76157 3907 May not be a breakthrough in filmmaking , but it is unwavering and arresting 3 +76158 3907 May not be a breakthrough in filmmaking , but 2 +76159 3907 May not be a breakthrough in filmmaking , 1 +76160 3907 May not be a breakthrough in filmmaking 2 +76161 3907 not be a breakthrough in filmmaking 1 +76162 3907 be a breakthrough in filmmaking 4 +76163 3907 a breakthrough in filmmaking 4 +76164 3907 in filmmaking 2 +76165 3907 it is unwavering and arresting 3 +76166 3907 is unwavering and arresting 2 +76167 3907 unwavering and arresting 3 +76168 3907 unwavering and 2 +76169 3907 unwavering 2 +76170 3907 arresting 3 +76171 3908 Awesome work : ineffable , elusive , yet inexplicably powerful 4 +76172 3908 Awesome work : 4 +76173 3908 Awesome work 4 +76174 3908 Awesome 4 +76175 3908 ineffable , elusive , yet inexplicably powerful 4 +76176 3908 ineffable , elusive , yet inexplicably 2 +76177 3908 ineffable 3 +76178 3908 , elusive , yet inexplicably 3 +76179 3908 elusive , yet inexplicably 3 +76180 3908 elusive , yet 2 +76181 3908 elusive , 2 +76182 3909 I was impressed by how many tit-for-tat retaliatory responses the filmmakers allow before pulling the plug on the conspirators and averting an American-Russian Armageddon . 3 +76183 3909 was impressed by how many tit-for-tat retaliatory responses the filmmakers allow before pulling the plug on the conspirators and averting an American-Russian Armageddon . 2 +76184 3909 was impressed by how many tit-for-tat retaliatory responses the filmmakers allow before pulling the plug on the conspirators and averting an American-Russian Armageddon 3 +76185 3909 impressed by how many tit-for-tat retaliatory responses the filmmakers allow before pulling the plug on the conspirators and averting an American-Russian Armageddon 3 +76186 3909 by how many tit-for-tat retaliatory responses the filmmakers allow before pulling the plug on the conspirators and averting an American-Russian Armageddon 2 +76187 3909 how many tit-for-tat retaliatory responses the filmmakers allow before pulling the plug on the conspirators and averting an American-Russian Armageddon 2 +76188 3909 tit-for-tat retaliatory responses the filmmakers allow before pulling the plug on the conspirators and averting an American-Russian Armageddon 2 +76189 3909 tit-for-tat retaliatory responses the filmmakers 2 +76190 3909 tit-for-tat retaliatory responses 2 +76191 3909 tit-for-tat 2 +76192 3909 retaliatory responses 2 +76193 3909 retaliatory 2 +76194 3909 responses 2 +76195 3909 allow before pulling the plug on the conspirators and averting an American-Russian Armageddon 2 +76196 3909 before pulling the plug on the conspirators and averting an American-Russian Armageddon 1 +76197 3909 pulling the plug on the conspirators and averting an American-Russian Armageddon 3 +76198 3909 pulling the plug on the conspirators and 2 +76199 3909 pulling the plug on the conspirators 2 +76200 3909 the plug on the conspirators 2 +76201 3909 the plug 2 +76202 3909 plug 2 +76203 3909 on the conspirators 2 +76204 3909 the conspirators 2 +76205 3909 conspirators 2 +76206 3909 averting an American-Russian Armageddon 3 +76207 3909 an American-Russian Armageddon 2 +76208 3909 American-Russian Armageddon 2 +76209 3909 American-Russian 2 +76210 3909 Armageddon 1 +76211 3910 Just like Igby . 2 +76212 3910 like Igby . 2 +76213 3910 like Igby 2 +76214 3911 As a director , Eastwood is off his game -- there 's no real sense of suspense , and none of the plot ` surprises ' are really surprising . 0 +76215 3911 As a director , Eastwood is off his game -- there 's no real sense of suspense , and none of the plot ` surprises ' are really surprising 1 +76216 3911 As a director , Eastwood is off his game -- 1 +76217 3911 As a director , Eastwood is off his game 1 +76218 3911 , Eastwood is off his game 1 +76219 3911 Eastwood is off his game 1 +76220 3911 is off his game 1 +76221 3911 off his game 1 +76222 3911 his game 2 +76223 3911 there 's no real sense of suspense , and none of the plot ` surprises ' are really surprising 0 +76224 3911 there 's no real sense of suspense , and 0 +76225 3911 there 's no real sense of suspense , 1 +76226 3911 there 's no real sense of suspense 1 +76227 3911 's no real sense of suspense 1 +76228 3911 no real sense of suspense 1 +76229 3911 no real sense 1 +76230 3911 real sense 2 +76231 3911 none of the plot ` surprises ' are really surprising 1 +76232 3911 none of the plot ` surprises ' 1 +76233 3911 of the plot ` surprises ' 3 +76234 3911 the plot ` surprises ' 3 +76235 3911 the plot ` surprises 3 +76236 3911 the plot ` 2 +76237 3911 are really surprising 3 +76238 3911 really surprising 2 +76239 3912 Queen of the Damned is too long with too little going on . 1 +76240 3912 is too long with too little going on . 1 +76241 3912 is too long with too little going on 1 +76242 3912 is too long with too little 1 +76243 3912 too long with too little 1 +76244 3912 with too little 1 +76245 3913 A charming and funny story of clashing cultures and a clashing mother\/daughter relationship . 2 +76246 3913 A charming and funny story of clashing cultures and a clashing mother\/daughter relationship 4 +76247 3913 A charming and funny story 4 +76248 3913 charming and funny story 3 +76249 3913 and funny story 3 +76250 3913 funny story 3 +76251 3913 of clashing cultures and a clashing mother\/daughter relationship 2 +76252 3913 clashing cultures and a clashing mother\/daughter relationship 2 +76253 3913 clashing cultures and 1 +76254 3913 clashing cultures 2 +76255 3913 clashing 2 +76256 3913 a clashing mother\/daughter relationship 1 +76257 3913 clashing mother\/daughter relationship 2 +76258 3913 mother\/daughter relationship 2 +76259 3914 It 's loud and boring ; watching it is like being trapped at a bad rock concert . 1 +76260 3914 It 's loud and boring ; watching it is like being trapped at a bad rock concert 0 +76261 3914 It 's loud and boring ; 1 +76262 3914 It 's loud and boring 0 +76263 3914 's loud and boring 1 +76264 3914 loud and boring 0 +76265 3914 watching it is like being trapped at a bad rock concert 0 +76266 3914 is like being trapped at a bad rock concert 0 +76267 3914 like being trapped at a bad rock concert 0 +76268 3914 being trapped at a bad rock concert 1 +76269 3914 trapped at a bad rock concert 1 +76270 3914 at a bad rock concert 1 +76271 3914 a bad rock concert 1 +76272 3914 bad rock concert 1 +76273 3915 A chiller resolutely without chills . 0 +76274 3915 A chiller 2 +76275 3915 resolutely without chills . 2 +76276 3915 resolutely without chills 2 +76277 3915 without chills 1 +76278 3916 We just do n't really care too much about this love story . 1 +76279 3916 just do n't really care too much about this love story . 1 +76280 3916 do n't really care too much about this love story . 1 +76281 3916 do n't really care too much about this love story 1 +76282 3916 do n't really 2 +76283 3916 care too much about this love story 3 +76284 3916 care too much 2 +76285 3916 about this love story 3 +76286 3916 this love story 2 +76287 3917 The first Fatal Attraction was vile enough . 0 +76288 3917 The first Fatal Attraction 3 +76289 3917 first Fatal Attraction 2 +76290 3917 was vile enough . 0 +76291 3917 was vile enough 1 +76292 3917 vile enough 1 +76293 3918 You begin to long for the end credits as the desert does for rain . 0 +76294 3918 begin to long for the end credits as the desert does for rain . 1 +76295 3918 begin to long for the end credits as the desert does for rain 0 +76296 3918 begin to long for the end credits 0 +76297 3918 to long for the end credits 1 +76298 3918 long for the end credits 1 +76299 3918 long for the end 1 +76300 3918 for the end 2 +76301 3918 as the desert does for rain 2 +76302 3918 the desert does for rain 2 +76303 3918 the desert 2 +76304 3918 desert 1 +76305 3918 does for rain 2 +76306 3918 for rain 2 +76307 3919 ... contains very few laughs and even less surprises . 1 +76308 3919 contains very few laughs and even less surprises . 0 +76309 3919 contains very few laughs and even less surprises 0 +76310 3919 very few laughs and even less surprises 0 +76311 3919 very few laughs and 2 +76312 3919 very few laughs 2 +76313 3919 very few 2 +76314 3919 even less surprises 1 +76315 3919 even less 2 +76316 3920 One of the film 's most effective aspects is its Tchaikovsky soundtrack of neurasthenic regret . 2 +76317 3920 One of the film 's most effective aspects 3 +76318 3920 of the film 's most effective aspects 3 +76319 3920 the film 's most effective aspects 2 +76320 3920 most effective aspects 3 +76321 3920 most effective 3 +76322 3920 is its Tchaikovsky soundtrack of neurasthenic regret . 2 +76323 3920 is its Tchaikovsky soundtrack of neurasthenic regret 2 +76324 3920 its Tchaikovsky soundtrack of neurasthenic regret 2 +76325 3920 its Tchaikovsky soundtrack 2 +76326 3920 Tchaikovsky soundtrack 3 +76327 3920 Tchaikovsky 2 +76328 3920 of neurasthenic regret 3 +76329 3920 neurasthenic regret 2 +76330 3920 neurasthenic 1 +76331 3921 Viewing this underdramatized but overstated film is like watching a transcript of a therapy session brought to humdrum life by some Freudian puppet . 2 +76332 3921 Viewing this underdramatized but overstated film 0 +76333 3921 this underdramatized but overstated film 1 +76334 3921 underdramatized but overstated film 2 +76335 3921 underdramatized but overstated 1 +76336 3921 underdramatized but 2 +76337 3921 underdramatized 1 +76338 3921 overstated 1 +76339 3921 is like watching a transcript of a therapy session brought to humdrum life by some Freudian puppet . 1 +76340 3921 is like watching a transcript of a therapy session brought to humdrum life by some Freudian puppet 1 +76341 3921 like watching a transcript of a therapy session brought to humdrum life by some Freudian puppet 1 +76342 3921 watching a transcript of a therapy session brought to humdrum life by some Freudian puppet 0 +76343 3921 a transcript of a therapy session brought to humdrum life by some Freudian puppet 1 +76344 3921 a transcript 2 +76345 3921 transcript 2 +76346 3921 of a therapy session brought to humdrum life by some Freudian puppet 1 +76347 3921 a therapy session brought to humdrum life by some Freudian puppet 1 +76348 3921 a therapy session 1 +76349 3921 therapy session 2 +76350 3921 session 2 +76351 3921 brought to humdrum life by some Freudian puppet 1 +76352 3921 to humdrum life by some Freudian puppet 2 +76353 3921 humdrum life by some Freudian puppet 1 +76354 3921 humdrum life 2 +76355 3921 humdrum 1 +76356 3921 by some Freudian puppet 1 +76357 3921 some Freudian puppet 2 +76358 3921 Freudian puppet 1 +76359 3921 Freudian 2 +76360 3921 puppet 2 +76361 3922 Sheridan 's take on the author 's schoolboy memoir ... is a rather toothless take on a hard young life . 0 +76362 3922 Sheridan 's take on the author 's schoolboy memoir ... is a rather toothless take on a hard young life 1 +76363 3922 Sheridan 's take on the author 's schoolboy memoir ... 2 +76364 3922 Sheridan 's take on the author 's schoolboy memoir 2 +76365 3922 Sheridan 's 2 +76366 3922 take on the author 's schoolboy memoir 2 +76367 3922 on the author 's schoolboy memoir 2 +76368 3922 the author 's schoolboy memoir 2 +76369 3922 schoolboy memoir 2 +76370 3922 schoolboy 2 +76371 3922 is a rather toothless take on a hard young life 1 +76372 3922 a rather toothless take on a hard young life 2 +76373 3922 a rather toothless take 1 +76374 3922 rather toothless take 1 +76375 3922 rather toothless 1 +76376 3922 on a hard young life 2 +76377 3922 a hard young life 2 +76378 3922 hard young life 2 +76379 3922 young life 2 +76380 3923 Great character interaction . 4 +76381 3923 Great character 4 +76382 3923 interaction . 2 +76383 3924 Intensely romantic , thought-provoking and even an engaging mystery . 4 +76384 3924 Intensely romantic , thought-provoking and even an engaging mystery 4 +76385 3924 Intensely romantic , 3 +76386 3924 Intensely romantic 3 +76387 3924 thought-provoking and even an engaging mystery 3 +76388 3924 thought-provoking and 3 +76389 3924 even an engaging mystery 2 +76390 3924 an engaging mystery 3 +76391 3924 engaging mystery 3 +76392 3925 A tired , predictable , bordering on offensive , waste of time , money and celluloid . 0 +76393 3925 A tired , predictable 1 +76394 3925 tired , predictable 0 +76395 3925 tired , 1 +76396 3925 , bordering on offensive , waste of time , money and celluloid . 0 +76397 3925 bordering on offensive , waste of time , money and celluloid . 1 +76398 3925 bordering on offensive , waste of time , money and celluloid 0 +76399 3925 bordering 2 +76400 3925 on offensive , waste of time , money and celluloid 0 +76401 3925 offensive , waste of time , money and celluloid 0 +76402 3925 offensive , 2 +76403 3925 waste of time , money and celluloid 0 +76404 3925 of time , money and celluloid 1 +76405 3925 time , money and celluloid 2 +76406 3925 , money and celluloid 2 +76407 3925 money and celluloid 2 +76408 3925 money and 2 +76409 3926 A vibrant whirlwind of love , family and all that goes with it , My Big Fat Greek Wedding is a non-stop funny feast of warmth , colour and cringe . 4 +76410 3926 A vibrant whirlwind of love , family and all that goes with it 4 +76411 3926 A vibrant whirlwind of love , family and all that 4 +76412 3926 A vibrant whirlwind 3 +76413 3926 vibrant whirlwind 3 +76414 3926 whirlwind 3 +76415 3926 of love , family and all that 3 +76416 3926 love , family and all that 2 +76417 3926 love , family and 3 +76418 3926 love , family 3 +76419 3926 goes with it 2 +76420 3926 , My Big Fat Greek Wedding is a non-stop funny feast of warmth , colour and cringe . 4 +76421 3926 My Big Fat Greek Wedding is a non-stop funny feast of warmth , colour and cringe . 4 +76422 3926 My Big Fat Greek Wedding 2 +76423 3926 Big Fat Greek Wedding 2 +76424 3926 Fat Greek Wedding 2 +76425 3926 Greek Wedding 2 +76426 3926 is a non-stop funny feast of warmth , colour and cringe . 4 +76427 3926 is a non-stop funny feast of warmth , colour and cringe 3 +76428 3926 a non-stop funny feast of warmth , colour and cringe 4 +76429 3926 a non-stop funny feast 4 +76430 3926 non-stop funny feast 3 +76431 3926 funny feast 3 +76432 3926 of warmth , colour and cringe 3 +76433 3926 warmth , colour and cringe 2 +76434 3926 , colour and cringe 1 +76435 3926 colour and cringe 2 +76436 3926 cringe 0 +76437 3927 As it stands , there 's some fine sex onscreen , and some tense arguing , but not a whole lot more . 2 +76438 3927 , there 's some fine sex onscreen , and some tense arguing , but not a whole lot more . 2 +76439 3927 there 's some fine sex onscreen , and some tense arguing , but not a whole lot more . 2 +76440 3927 's some fine sex onscreen , and some tense arguing , but not a whole lot more . 3 +76441 3927 's some fine sex onscreen , and some tense arguing , but not a whole lot more 2 +76442 3927 some fine sex onscreen , and some tense arguing , but not a whole lot more 1 +76443 3927 some fine sex onscreen , and some tense arguing , but not 2 +76444 3927 some fine sex onscreen , and some tense arguing , 3 +76445 3927 some fine sex onscreen , and some tense arguing 3 +76446 3927 some fine sex onscreen , and 3 +76447 3927 some fine sex onscreen , 3 +76448 3927 some fine sex onscreen 2 +76449 3927 fine sex onscreen 3 +76450 3927 sex onscreen 2 +76451 3927 some tense arguing 2 +76452 3927 tense arguing 1 +76453 3927 arguing 2 +76454 3927 a whole lot more 2 +76455 3928 Kosminsky ... puts enough salt into the wounds of the tortured and self-conscious material to make it sting . 3 +76456 3928 ... puts enough salt into the wounds of the tortured and self-conscious material to make it sting . 0 +76457 3928 puts enough salt into the wounds of the tortured and self-conscious material to make it sting . 1 +76458 3928 puts enough salt into the wounds of the tortured and self-conscious material to make it sting 1 +76459 3928 puts enough salt into the wounds of the tortured and self-conscious material 1 +76460 3928 puts enough salt 3 +76461 3928 enough salt 2 +76462 3928 salt 2 +76463 3928 into the wounds of the tortured and self-conscious material 2 +76464 3928 the wounds of the tortured and self-conscious material 1 +76465 3928 the wounds 2 +76466 3928 of the tortured and self-conscious material 1 +76467 3928 the tortured and self-conscious material 1 +76468 3928 tortured and self-conscious material 1 +76469 3928 tortured and self-conscious 2 +76470 3928 tortured and 1 +76471 3928 to make it sting 2 +76472 3928 make it sting 1 +76473 3928 it sting 2 +76474 3929 A culture clash comedy only half as clever as it thinks it is . 1 +76475 3929 A culture clash 2 +76476 3929 culture clash 2 +76477 3929 comedy only half as clever as it thinks it is . 2 +76478 3929 comedy only half as clever as it thinks it is 1 +76479 3929 comedy only half as clever 2 +76480 3929 comedy only half 2 +76481 3929 only half 2 +76482 3929 as clever 3 +76483 3930 This one is certainly well-meaning , but it 's also simple-minded and contrived . 2 +76484 3930 This one is certainly well-meaning , but it 's also simple-minded and contrived 2 +76485 3930 This one is certainly well-meaning , but 2 +76486 3930 This one is certainly well-meaning , 3 +76487 3930 This one is certainly well-meaning 3 +76488 3930 is certainly well-meaning 3 +76489 3930 it 's also simple-minded and contrived 1 +76490 3930 's also simple-minded and contrived 1 +76491 3930 simple-minded and contrived 1 +76492 3930 simple-minded and 1 +76493 3931 It 's definitely a step in the right direction . 3 +76494 3931 's definitely a step in the right direction . 3 +76495 3931 's definitely a step in the right direction 3 +76496 3931 a step in the right direction 3 +76497 3931 in the right direction 3 +76498 3931 the right direction 3 +76499 3931 right direction 3 +76500 3932 This is a gorgeous film - vivid with color , music and life . 4 +76501 3932 is a gorgeous film - vivid with color , music and life . 4 +76502 3932 is a gorgeous film - vivid with color , music and life 4 +76503 3932 a gorgeous film - vivid with color , music and life 4 +76504 3932 a gorgeous film - 4 +76505 3932 a gorgeous film 4 +76506 3932 gorgeous film 3 +76507 3932 vivid with color , music and life 3 +76508 3932 with color , music and life 2 +76509 3932 color , music and life 2 +76510 3932 , music and life 2 +76511 3932 music and life 3 +76512 3933 as in aimless , arduous , and arbitrary . 1 +76513 3933 as in aimless , arduous , and arbitrary 1 +76514 3933 in aimless , arduous , and arbitrary 1 +76515 3933 aimless , arduous , and arbitrary 1 +76516 3933 aimless , arduous , and 1 +76517 3933 aimless , arduous , 1 +76518 3933 aimless , arduous 1 +76519 3933 aimless , 1 +76520 3933 arbitrary 2 +76521 3934 Clare Peploe 's airless movie adaptation could use a little American Pie-like irreverence . 1 +76522 3934 Clare Peploe 's airless movie adaptation 1 +76523 3934 airless movie adaptation 2 +76524 3934 movie adaptation 2 +76525 3934 could use a little American Pie-like irreverence . 2 +76526 3934 could use a little American Pie-like irreverence 2 +76527 3934 use a little American Pie-like irreverence 2 +76528 3934 a little American Pie-like irreverence 2 +76529 3934 little American Pie-like irreverence 2 +76530 3934 American Pie-like irreverence 2 +76531 3934 Pie-like irreverence 2 +76532 3934 Pie-like 2 +76533 3934 irreverence 2 +76534 3935 The talk-heavy film plays like one of Robert Altman 's lesser works . 2 +76535 3935 The talk-heavy film 1 +76536 3935 talk-heavy film 2 +76537 3935 talk-heavy 2 +76538 3935 plays like one of Robert Altman 's lesser works . 1 +76539 3935 plays like one of Robert Altman 's lesser works 2 +76540 3935 like one of Robert Altman 's lesser works 2 +76541 3935 one of Robert Altman 's lesser works 1 +76542 3935 of Robert Altman 's lesser works 1 +76543 3935 Robert Altman 's lesser works 1 +76544 3935 Robert Altman 's 2 +76545 3935 Altman 's 2 +76546 3935 Altman 2 +76547 3936 A preposterous , prurient whodunit . 0 +76548 3936 A preposterous , prurient whodunit 1 +76549 3936 preposterous , prurient whodunit 1 +76550 3936 preposterous , prurient 0 +76551 3936 , prurient 2 +76552 3937 It 's been done before but never so vividly or with so much passion . 4 +76553 3937 's been done before but never so vividly or with so much passion . 4 +76554 3937 's been done before but never so vividly or with so much passion 4 +76555 3937 been done before but never so vividly or with so much passion 4 +76556 3937 been done before but never so vividly or 3 +76557 3937 been done before but never so vividly 3 +76558 3937 done before but never so vividly 3 +76559 3937 before but never so vividly 3 +76560 3937 but never so vividly 2 +76561 3937 never so vividly 3 +76562 3937 so vividly 3 +76563 3937 with so much passion 3 +76564 3937 so much passion 3 +76565 3938 -LRB- Swimfan -RRB- falls victim to sloppy plotting , an insultingly unbelievable final act and a villainess who is too crazy to be interesting . 0 +76566 3938 -LRB- Swimfan -RRB- 2 +76567 3938 Swimfan -RRB- 2 +76568 3938 falls victim to sloppy plotting , an insultingly unbelievable final act and a villainess who is too crazy to be interesting . 1 +76569 3938 falls victim to sloppy plotting , an insultingly unbelievable final act and a villainess who is too crazy to be interesting 0 +76570 3938 victim to sloppy plotting , an insultingly unbelievable final act and a villainess who is too crazy to be interesting 2 +76571 3938 victim to sloppy plotting , an insultingly unbelievable final act and 0 +76572 3938 victim to sloppy plotting , an insultingly unbelievable final act 2 +76573 3938 victim to sloppy plotting , 1 +76574 3938 victim to sloppy plotting 0 +76575 3938 to sloppy plotting 0 +76576 3938 sloppy plotting 1 +76577 3938 an insultingly unbelievable final act 0 +76578 3938 insultingly unbelievable final act 0 +76579 3938 insultingly unbelievable 1 +76580 3938 final act 3 +76581 3938 a villainess who is too crazy to be interesting 2 +76582 3938 a villainess 2 +76583 3938 villainess 2 +76584 3938 who is too crazy to be interesting 1 +76585 3938 is too crazy to be interesting 1 +76586 3938 is too crazy 2 +76587 3938 too crazy 1 +76588 3939 May take its sweet time to get wherever it 's going , but if you have the patience for it , you wo n't feel like it 's wasted yours . 3 +76589 3939 May take its sweet time to get wherever it 's going , but if you have the patience for it , you wo n't feel like it 's wasted yours 3 +76590 3939 May take its sweet time to get wherever it 's going , but 2 +76591 3939 May take its sweet time to get wherever it 's going , 2 +76592 3939 May take its sweet time to get wherever it 's going 1 +76593 3939 take its sweet time to get wherever it 's going 1 +76594 3939 take its sweet time 2 +76595 3939 its sweet time 4 +76596 3939 sweet time 2 +76597 3939 to get wherever it 's going 2 +76598 3939 get wherever it 's going 2 +76599 3939 wherever it 's going 2 +76600 3939 it 's going 2 +76601 3939 's going 2 +76602 3939 if you have the patience for it , you wo n't feel like it 's wasted yours 3 +76603 3939 if you have the patience for it 1 +76604 3939 you have the patience for it 1 +76605 3939 have the patience for it 1 +76606 3939 the patience for it 2 +76607 3939 , you wo n't feel like it 's wasted yours 3 +76608 3939 you wo n't feel like it 's wasted yours 4 +76609 3939 wo n't feel like it 's wasted yours 3 +76610 3939 feel like it 's wasted yours 1 +76611 3939 like it 's wasted yours 1 +76612 3939 it 's wasted yours 0 +76613 3939 's wasted yours 2 +76614 3939 wasted yours 2 +76615 3939 yours 2 +76616 3940 A compelling French psychological drama examining the encounter of an aloof father and his chilly son after 20 years apart . 3 +76617 3940 A compelling French psychological drama examining the encounter of an aloof father and his chilly son after 20 years apart 4 +76618 3940 A compelling French psychological drama 3 +76619 3940 compelling French psychological drama 3 +76620 3940 French psychological drama 2 +76621 3940 examining the encounter of an aloof father and his chilly son after 20 years apart 2 +76622 3940 examining the encounter of an aloof father and his chilly son 2 +76623 3940 examining 2 +76624 3940 the encounter of an aloof father and his chilly son 2 +76625 3940 the encounter 2 +76626 3940 of an aloof father and his chilly son 2 +76627 3940 an aloof father and his chilly son 2 +76628 3940 an aloof father and 2 +76629 3940 an aloof father 2 +76630 3940 aloof father 2 +76631 3940 his chilly son 2 +76632 3940 chilly son 2 +76633 3940 after 20 years apart 2 +76634 3940 20 years apart 3 +76635 3941 Combine the paranoid claustrophobia of a submarine movie with the unsettling spookiness of the supernatural -- why did n't Hollywood think of this sooner ? 3 +76636 3941 Combine 2 +76637 3941 the paranoid claustrophobia of a submarine movie with the unsettling spookiness of the supernatural -- why did n't Hollywood think of this sooner ? 4 +76638 3941 the paranoid claustrophobia of a submarine movie with the unsettling spookiness of the supernatural -- 3 +76639 3941 the paranoid claustrophobia of a submarine movie with the unsettling spookiness of the supernatural 3 +76640 3941 the paranoid claustrophobia 1 +76641 3941 paranoid claustrophobia 2 +76642 3941 paranoid 1 +76643 3941 claustrophobia 2 +76644 3941 of a submarine movie with the unsettling spookiness of the supernatural 2 +76645 3941 a submarine movie with the unsettling spookiness of the supernatural 3 +76646 3941 a submarine movie 2 +76647 3941 submarine movie 3 +76648 3941 with the unsettling spookiness of the supernatural 3 +76649 3941 the unsettling spookiness of the supernatural 2 +76650 3941 the unsettling spookiness 2 +76651 3941 unsettling spookiness 2 +76652 3941 spookiness 2 +76653 3941 of the supernatural 2 +76654 3941 the supernatural 2 +76655 3941 why did n't Hollywood think of this sooner ? 3 +76656 3941 did n't Hollywood think of this sooner ? 2 +76657 3941 did n't Hollywood think of this sooner 3 +76658 3941 did n't Hollywood 2 +76659 3941 think of this sooner 2 +76660 3941 think of this 2 +76661 3941 sooner 2 +76662 3942 The Rock has a great presence but one battle after another is not the same as one battle followed by killer CGI effects . 2 +76663 3942 has a great presence but one battle after another is not the same as one battle followed by killer CGI effects . 3 +76664 3942 has a great presence but one battle after another is not the same as one battle followed by killer CGI effects 2 +76665 3942 a great presence but one battle after another is not the same as one battle followed by killer CGI effects 2 +76666 3942 a great presence 4 +76667 3942 great presence 4 +76668 3942 but one battle after another is not the same as one battle followed by killer CGI effects 2 +76669 3942 one battle after another is not the same as one battle followed by killer CGI effects 2 +76670 3942 one battle 2 +76671 3942 after another is not the same as one battle followed by killer CGI effects 1 +76672 3942 another is not the same as one battle followed by killer CGI effects 2 +76673 3942 is not the same as one battle followed by killer CGI effects 2 +76674 3942 the same as one battle followed by killer CGI effects 3 +76675 3942 as one battle followed by killer CGI effects 2 +76676 3942 one battle followed by killer CGI effects 3 +76677 3942 followed by killer CGI effects 3 +76678 3942 by killer CGI effects 3 +76679 3942 killer CGI effects 3 +76680 3942 CGI effects 3 +76681 3942 CGI 2 +76682 3943 The director explores all three sides of his story with a sensitivity and an inquisitiveness reminiscent of Truffaut . 3 +76683 3943 explores all three sides of his story with a sensitivity and an inquisitiveness reminiscent of Truffaut . 4 +76684 3943 explores all three sides of his story with a sensitivity and an inquisitiveness reminiscent of Truffaut 3 +76685 3943 explores 2 +76686 3943 all three sides of his story with a sensitivity and an inquisitiveness reminiscent of Truffaut 3 +76687 3943 three sides of his story with a sensitivity and an inquisitiveness reminiscent of Truffaut 3 +76688 3943 three sides of his story with a sensitivity and 2 +76689 3943 three sides of his story with a sensitivity 3 +76690 3943 three sides 2 +76691 3943 of his story with a sensitivity 2 +76692 3943 his story with a sensitivity 2 +76693 3943 with a sensitivity 3 +76694 3943 a sensitivity 2 +76695 3943 an inquisitiveness reminiscent of Truffaut 3 +76696 3943 an inquisitiveness reminiscent 2 +76697 3943 inquisitiveness reminiscent 2 +76698 3943 inquisitiveness 2 +76699 3943 of Truffaut 2 +76700 3943 Truffaut 2 +76701 3944 Dreary tale of middle-class angst 1 +76702 3944 Dreary tale 1 +76703 3944 of middle-class angst 2 +76704 3944 middle-class angst 2 +76705 3944 middle-class 2 +76706 3945 ... plenty of warmth to go around , with music and laughter and the love of family . 4 +76707 3945 plenty of warmth to go around , with music and laughter and the love of family . 4 +76708 3945 plenty of warmth to go around , with music and laughter and the love of family 3 +76709 3945 of warmth to go around , with music and laughter and the love of family 3 +76710 3945 warmth to go around , with music and laughter and the love of family 3 +76711 3945 warmth to go around , with music and laughter and 3 +76712 3945 warmth to go around , with music and laughter 3 +76713 3945 to go around , with music and laughter 3 +76714 3945 go around , with music and laughter 3 +76715 3945 go around , 2 +76716 3945 go around 2 +76717 3945 with music and laughter 3 +76718 3945 music and laughter 3 +76719 3945 the love of family 3 +76720 3946 As Schmidt , Nicholson walks with a slow , deliberate gait , chooses his words carefully and subdues his natural exuberance . 2 +76721 3946 As Schmidt 2 +76722 3946 , Nicholson walks with a slow , deliberate gait , chooses his words carefully and subdues his natural exuberance . 3 +76723 3946 Nicholson walks with a slow , deliberate gait , chooses his words carefully and subdues his natural exuberance . 3 +76724 3946 walks with a slow , deliberate gait , chooses his words carefully and subdues his natural exuberance . 3 +76725 3946 walks with a slow , deliberate gait , chooses his words carefully and subdues his natural exuberance 3 +76726 3946 walks with a slow , deliberate gait , chooses his words carefully and 2 +76727 3946 walks with a slow , deliberate gait , chooses his words carefully 2 +76728 3946 walks with a slow , deliberate gait , 2 +76729 3946 walks with a slow , deliberate gait 1 +76730 3946 with a slow , deliberate gait 2 +76731 3946 a slow , deliberate gait 1 +76732 3946 slow , deliberate gait 1 +76733 3946 slow , deliberate 2 +76734 3946 , deliberate 2 +76735 3946 deliberate 2 +76736 3946 gait 2 +76737 3946 chooses his words carefully 3 +76738 3946 chooses his words 2 +76739 3946 his words 2 +76740 3946 subdues his natural exuberance 1 +76741 3946 subdues 2 +76742 3946 his natural exuberance 2 +76743 3946 natural exuberance 2 +76744 3946 exuberance 3 +76745 3947 Unfunny comedy with a lot of static set ups , not much camera movement , and most of the scenes take place indoors in formal settings with motionless characters . 0 +76746 3947 Unfunny comedy with a lot of static set ups , not much camera movement , and most of the scenes 0 +76747 3947 Unfunny comedy 1 +76748 3947 with a lot of static set ups , not much camera movement , and most of the scenes 1 +76749 3947 a lot of static set ups , not much camera movement , and most of the scenes 1 +76750 3947 of static set ups , not much camera movement , and most of the scenes 1 +76751 3947 static set ups , not much camera movement , and most of the scenes 2 +76752 3947 static set ups , not much camera movement , and 2 +76753 3947 static set ups , not much camera movement , 1 +76754 3947 static set ups , not much camera movement 1 +76755 3947 static set ups , 1 +76756 3947 static set ups 2 +76757 3947 set ups 2 +76758 3947 ups 3 +76759 3947 not much camera movement 2 +76760 3947 much camera movement 2 +76761 3947 camera movement 2 +76762 3947 most of the scenes 2 +76763 3947 of the scenes 2 +76764 3947 take place indoors in formal settings with motionless characters . 1 +76765 3947 take place indoors in formal settings with motionless characters 1 +76766 3947 take place 2 +76767 3947 indoors in formal settings with motionless characters 1 +76768 3947 indoors 2 +76769 3947 in formal settings with motionless characters 1 +76770 3947 formal settings with motionless characters 1 +76771 3947 formal settings 2 +76772 3947 formal 2 +76773 3947 settings 2 +76774 3947 with motionless characters 1 +76775 3947 motionless characters 1 +76776 3947 motionless 2 +76777 3948 Rewarding . 3 +76778 3949 Try as you might to scrutinize the ethics of Kaufman 's approach , somehow it all comes together to create a very compelling , sensitive , intelligent and almost cohesive piece of film entertainment . 4 +76779 3949 Try as you might to scrutinize the ethics of Kaufman 's approach , somehow it all comes together to create a very compelling , sensitive , intelligent and almost cohesive piece of film entertainment 4 +76780 3949 as you might to scrutinize the ethics of Kaufman 's approach , somehow it all comes together to create a very compelling , sensitive , intelligent and almost cohesive piece of film entertainment 3 +76781 3949 as you might to scrutinize the ethics of Kaufman 's approach 2 +76782 3949 you might to scrutinize the ethics of Kaufman 's approach 1 +76783 3949 might to scrutinize the ethics of Kaufman 's approach 2 +76784 3949 to scrutinize the ethics of Kaufman 's approach 2 +76785 3949 scrutinize the ethics of Kaufman 's approach 2 +76786 3949 scrutinize 1 +76787 3949 the ethics of Kaufman 's approach 2 +76788 3949 the ethics 2 +76789 3949 of Kaufman 's approach 2 +76790 3949 Kaufman 's approach 2 +76791 3949 , somehow it all comes together to create a very compelling , sensitive , intelligent and almost cohesive piece of film entertainment 3 +76792 3949 somehow it all comes together to create a very compelling , sensitive , intelligent and almost cohesive piece of film entertainment 3 +76793 3949 it all comes together to create a very compelling , sensitive , intelligent and almost cohesive piece of film entertainment 3 +76794 3949 all comes together to create a very compelling , sensitive , intelligent and almost cohesive piece of film entertainment 3 +76795 3949 comes together to create a very compelling , sensitive , intelligent and almost cohesive piece of film entertainment 3 +76796 3949 comes together 3 +76797 3949 to create a very compelling , sensitive , intelligent and almost cohesive piece of film entertainment 4 +76798 3949 create a very compelling , sensitive , intelligent and almost cohesive piece of film entertainment 3 +76799 3949 a very compelling , sensitive , intelligent and almost cohesive piece of film entertainment 4 +76800 3949 a very compelling , sensitive , intelligent and almost cohesive piece 4 +76801 3949 very compelling , sensitive , intelligent and almost cohesive piece 4 +76802 3949 very compelling , sensitive , intelligent and almost cohesive 3 +76803 3949 very compelling , sensitive , intelligent and 4 +76804 3949 very compelling , sensitive , intelligent 4 +76805 3949 very compelling , sensitive , 4 +76806 3949 very compelling , sensitive 3 +76807 3949 very compelling , 4 +76808 3949 very compelling 3 +76809 3949 almost cohesive 2 +76810 3949 cohesive 3 +76811 3949 of film entertainment 3 +76812 3949 film entertainment 2 +76813 3950 She 's a cipher , played by an actress who smiles and frowns but does n't reveal an inner life . 2 +76814 3950 's a cipher , played by an actress who smiles and frowns but does n't reveal an inner life . 2 +76815 3950 's a cipher , played by an actress who smiles and frowns but does n't reveal an inner life 1 +76816 3950 's a cipher , played by an actress who smiles and frowns but 2 +76817 3950 's a cipher , played by an actress who smiles and frowns 2 +76818 3950 a cipher , played by an actress who smiles and frowns 2 +76819 3950 a cipher , 2 +76820 3950 a cipher 2 +76821 3950 cipher 2 +76822 3950 played by an actress who smiles and frowns 1 +76823 3950 by an actress who smiles and frowns 2 +76824 3950 an actress who smiles and frowns 2 +76825 3950 who smiles and frowns 2 +76826 3950 smiles and frowns 2 +76827 3950 smiles and 3 +76828 3950 frowns 2 +76829 3950 does n't reveal an inner life 2 +76830 3950 reveal an inner life 2 +76831 3950 an inner life 2 +76832 3950 inner life 2 +76833 3951 -LRB- T -RRB- he ideas of Revolution # 9 are more compelling than the execution 1 +76834 3951 -LRB- T -RRB- he ideas of Revolution # 9 2 +76835 3951 -LRB- T -RRB- he 2 +76836 3951 ideas of Revolution # 9 2 +76837 3951 of Revolution # 9 2 +76838 3951 Revolution # 9 2 +76839 3951 are more compelling than the execution 3 +76840 3951 more compelling than the execution 2 +76841 3951 compelling than the execution 2 +76842 3951 than the execution 2 +76843 3952 Far From Heaven is a dazzling conceptual feat , but more than that , it 's a work of enthralling drama . 3 +76844 3952 Far From Heaven is a dazzling conceptual feat , but more than that , it 's a work of enthralling drama 3 +76845 3952 Far From Heaven is a dazzling conceptual feat , but 3 +76846 3952 Far From Heaven is a dazzling conceptual feat , 3 +76847 3952 Far From Heaven is a dazzling conceptual feat 3 +76848 3952 From Heaven is a dazzling conceptual feat 4 +76849 3952 From Heaven 2 +76850 3952 is a dazzling conceptual feat 3 +76851 3952 a dazzling conceptual feat 3 +76852 3952 dazzling conceptual feat 4 +76853 3952 conceptual feat 3 +76854 3952 more than that , it 's a work of enthralling drama 3 +76855 3952 more than that 2 +76856 3952 , it 's a work of enthralling drama 4 +76857 3952 it 's a work of enthralling drama 3 +76858 3952 's a work of enthralling drama 3 +76859 3952 a work of enthralling drama 4 +76860 3952 of enthralling drama 4 +76861 3952 enthralling drama 3 +76862 3952 enthralling 4 +76863 3953 Boldly engineering a collision between tawdry B-movie flamboyance and grandiose spiritual anomie , Rose 's film , true to its source material , provides a tenacious demonstration of death as the great equalizer . 2 +76864 3953 Boldly engineering a collision between tawdry B-movie flamboyance and grandiose spiritual anomie 3 +76865 3953 engineering a collision between tawdry B-movie flamboyance and grandiose spiritual anomie 2 +76866 3953 engineering 2 +76867 3953 a collision between tawdry B-movie flamboyance and grandiose spiritual anomie 2 +76868 3953 a collision 1 +76869 3953 between tawdry B-movie flamboyance and grandiose spiritual anomie 2 +76870 3953 tawdry B-movie flamboyance and grandiose spiritual anomie 1 +76871 3953 tawdry B-movie flamboyance and 2 +76872 3953 tawdry B-movie flamboyance 1 +76873 3953 B-movie flamboyance 2 +76874 3953 flamboyance 2 +76875 3953 grandiose spiritual anomie 2 +76876 3953 grandiose 2 +76877 3953 spiritual anomie 3 +76878 3953 , Rose 's film , true to its source material , provides a tenacious demonstration of death as the great equalizer . 3 +76879 3953 Rose 's film , true to its source material , provides a tenacious demonstration of death as the great equalizer . 2 +76880 3953 Rose 's film , true to its source material , 3 +76881 3953 Rose 's film , true to its source material 3 +76882 3953 Rose 's film , 2 +76883 3953 Rose 's film 3 +76884 3953 Rose 's 2 +76885 3953 true to its source material 3 +76886 3953 to its source material 2 +76887 3953 its source material 2 +76888 3953 provides a tenacious demonstration of death as the great equalizer . 1 +76889 3953 provides a tenacious demonstration of death as the great equalizer 3 +76890 3953 provides a tenacious demonstration of death 2 +76891 3953 a tenacious demonstration of death 2 +76892 3953 a tenacious demonstration 2 +76893 3953 tenacious demonstration 2 +76894 3953 demonstration 2 +76895 3953 as the great equalizer 2 +76896 3954 The warnings to resist temptation in this film ... are blunt and challenging and offer no easy rewards for staying clean . 2 +76897 3954 The warnings to resist temptation in this film 3 +76898 3954 The warnings 1 +76899 3954 warnings 3 +76900 3954 to resist temptation in this film 2 +76901 3954 resist temptation in this film 2 +76902 3954 resist temptation 3 +76903 3954 ... are blunt and challenging and offer no easy rewards for staying clean . 2 +76904 3954 are blunt and challenging and offer no easy rewards for staying clean . 2 +76905 3954 are blunt and challenging and offer no easy rewards for staying clean 1 +76906 3954 are blunt and challenging and 2 +76907 3954 are blunt and challenging 2 +76908 3954 are blunt and 1 +76909 3954 are blunt 2 +76910 3954 blunt 2 +76911 3954 offer no easy rewards for staying clean 2 +76912 3954 offer no easy rewards 2 +76913 3954 no easy rewards 2 +76914 3954 easy rewards 2 +76915 3954 for staying clean 3 +76916 3954 staying clean 2 +76917 3954 staying 2 +76918 3954 clean 3 +76919 3955 Sweet Home Alabama certainly wo n't be remembered as one of -LRB- Witherspoon 's -RRB- better films . 1 +76920 3955 certainly wo n't be remembered as one of -LRB- Witherspoon 's -RRB- better films . 1 +76921 3955 wo n't be remembered as one of -LRB- Witherspoon 's -RRB- better films . 1 +76922 3955 wo n't be remembered as one of -LRB- Witherspoon 's -RRB- better films 1 +76923 3955 be remembered as one of -LRB- Witherspoon 's -RRB- better films 4 +76924 3955 remembered as one of -LRB- Witherspoon 's -RRB- better films 3 +76925 3955 as one of -LRB- Witherspoon 's -RRB- better films 3 +76926 3955 one of -LRB- Witherspoon 's -RRB- better films 3 +76927 3955 of -LRB- Witherspoon 's -RRB- better films 3 +76928 3955 -LRB- Witherspoon 's -RRB- better films 2 +76929 3955 -LRB- Witherspoon 's -RRB- 2 +76930 3955 Witherspoon 's -RRB- 2 +76931 3955 Witherspoon 's 2 +76932 3955 better films 1 +76933 3956 Staggers between flaccid satire and what is supposed to be madcap farce . 0 +76934 3956 Staggers between flaccid satire and what 1 +76935 3956 between flaccid satire and what 3 +76936 3956 flaccid satire and what 1 +76937 3956 flaccid satire and 2 +76938 3956 flaccid satire 1 +76939 3956 is supposed to be madcap farce . 1 +76940 3956 is supposed to be madcap farce 3 +76941 3956 supposed to be madcap farce 2 +76942 3956 to be madcap farce 2 +76943 3956 be madcap farce 1 +76944 3956 madcap farce 2 +76945 3956 madcap 2 +76946 3957 Exactly what its title implies : lusty , boisterous and utterly charming . 3 +76947 3957 Exactly what its title implies : lusty , boisterous and utterly charming 3 +76948 3957 Exactly what its title implies : 2 +76949 3957 Exactly what its title implies 2 +76950 3957 what its title implies 2 +76951 3957 its title implies 3 +76952 3957 lusty , boisterous and utterly charming 4 +76953 3957 lusty , 3 +76954 3957 lusty 2 +76955 3957 boisterous and utterly charming 4 +76956 3957 boisterous and 2 +76957 3957 boisterous 2 +76958 3957 utterly charming 3 +76959 3958 In a summer of clones , Harvard Man is something rare and riveting : a wild ride that relies on more than special effects . 4 +76960 3958 In a summer of clones 1 +76961 3958 a summer of clones 2 +76962 3958 of clones 2 +76963 3958 clones 2 +76964 3958 , Harvard Man is something rare and riveting : a wild ride that relies on more than special effects . 4 +76965 3958 Harvard Man is something rare and riveting : a wild ride that relies on more than special effects . 3 +76966 3958 Harvard Man 2 +76967 3958 is something rare and riveting : a wild ride that relies on more than special effects . 4 +76968 3958 is something rare and riveting : a wild ride that relies on more than special effects 3 +76969 3958 something rare and riveting : a wild ride that relies on more than special effects 4 +76970 3958 something rare and riveting : 4 +76971 3958 something rare and riveting 4 +76972 3958 rare and riveting 4 +76973 3958 rare and 2 +76974 3958 a wild ride that relies on more than special effects 3 +76975 3958 that relies on more than special effects 3 +76976 3958 relies on more than special effects 3 +76977 3958 on more than special effects 2 +76978 3958 more than special effects 2 +76979 3958 than special effects 3 +76980 3959 preachy and 1 +76981 3960 It 's a fine , old-fashioned-movie movie , which is to say it 's unburdened by pretensions to great artistic significance . 3 +76982 3960 's a fine , old-fashioned-movie movie , which is to say it 's unburdened by pretensions to great artistic significance . 3 +76983 3960 's a fine , old-fashioned-movie movie , which is to say it 's unburdened by pretensions to great artistic significance 3 +76984 3960 a fine , old-fashioned-movie movie , which is to say it 's unburdened by pretensions to great artistic significance 3 +76985 3960 a fine , old-fashioned-movie movie , 3 +76986 3960 a fine , old-fashioned-movie movie 4 +76987 3960 fine , old-fashioned-movie movie 4 +76988 3960 , old-fashioned-movie movie 3 +76989 3960 old-fashioned-movie movie 3 +76990 3960 old-fashioned-movie 2 +76991 3960 which is to say it 's unburdened by pretensions to great artistic significance 2 +76992 3960 is to say it 's unburdened by pretensions to great artistic significance 2 +76993 3960 to say it 's unburdened by pretensions to great artistic significance 2 +76994 3960 say it 's unburdened by pretensions to great artistic significance 2 +76995 3960 it 's unburdened by pretensions to great artistic significance 4 +76996 3960 's unburdened by pretensions to great artistic significance 3 +76997 3960 unburdened by pretensions to great artistic significance 3 +76998 3960 unburdened by pretensions 2 +76999 3960 unburdened 2 +77000 3960 by pretensions 2 +77001 3960 to great artistic significance 4 +77002 3960 great artistic significance 4 +77003 3960 artistic significance 3 +77004 3960 significance 2 +77005 3961 Polanski has found the perfect material with which to address his own World War II experience in his signature style . 4 +77006 3961 has found the perfect material with which to address his own World War II experience in his signature style . 4 +77007 3961 has found the perfect material with which to address his own World War II experience in his signature style 3 +77008 3961 found the perfect material with which to address his own World War II experience in his signature style 3 +77009 3961 found the perfect material 3 +77010 3961 the perfect material 4 +77011 3961 perfect material 3 +77012 3961 with which to address his own World War II experience in his signature style 2 +77013 3961 which to address his own World War II experience in his signature style 2 +77014 3961 to address his own World War II experience in his signature style 3 +77015 3961 address his own World War II experience in his signature style 4 +77016 3961 address his own World War II experience 2 +77017 3961 his own World War II experience 2 +77018 3961 own World War II experience 2 +77019 3961 World War II experience 2 +77020 3961 War II experience 2 +77021 3961 II experience 1 +77022 3961 in his signature style 2 +77023 3961 his signature style 2 +77024 3961 signature style 3 +77025 3961 signature 2 +77026 3962 I walked away not really know who `` they '' were , what `` they '' looked like . 1 +77027 3962 walked away not really know who `` they '' were , what `` they '' looked like . 2 +77028 3962 walked away not really know who `` they '' were , what `` they '' looked like 0 +77029 3962 not really know who `` they '' were , what `` they '' looked like 1 +77030 3962 really know who `` they '' were , what `` they '' looked like 2 +77031 3962 know who `` they '' were , what `` they '' looked like 2 +77032 3962 who `` they '' were , what `` they '' looked like 2 +77033 3962 `` they '' were , what `` they '' looked like 2 +77034 3962 they '' were , what `` they '' looked like 2 +77035 3962 '' were , what `` they '' looked like 2 +77036 3962 were , what `` they '' looked like 2 +77037 3962 what `` they '' looked like 2 +77038 3962 `` they '' looked like 2 +77039 3962 they '' looked like 2 +77040 3962 '' looked like 2 +77041 3962 looked like 2 +77042 3963 A film of empty , fetishistic violence in which murder is casual and fun . 0 +77043 3963 A film of empty , fetishistic violence in which murder is casual and fun 1 +77044 3963 of empty , fetishistic violence in which murder is casual and fun 0 +77045 3963 empty , fetishistic violence in which murder is casual and fun 1 +77046 3963 empty , fetishistic violence 0 +77047 3963 , fetishistic violence 1 +77048 3963 fetishistic violence 1 +77049 3963 fetishistic 2 +77050 3963 in which murder is casual and fun 2 +77051 3963 murder is casual and fun 2 +77052 3963 is casual and fun 3 +77053 3963 casual and fun 4 +77054 3963 casual and 2 +77055 3964 Friday After Next is a lot more bluster than bite . 1 +77056 3964 After Next is a lot more bluster than bite . 2 +77057 3964 is a lot more bluster than bite . 1 +77058 3964 is a lot more bluster than bite 1 +77059 3964 a lot more bluster than bite 1 +77060 3964 a lot more bluster 2 +77061 3964 more bluster 1 +77062 3964 than bite 2 +77063 3965 ` CQ may one day be fondly remembered as Roman Coppola 's brief pretentious period before going on to other films that actually tell a story worth caring about 1 +77064 3965 ` CQ 2 +77065 3965 CQ 2 +77066 3965 may one day be fondly remembered as Roman Coppola 's brief pretentious period before going on to other films that actually tell a story worth caring about 2 +77067 3965 may one day 2 +77068 3965 one day 2 +77069 3965 be fondly remembered as Roman Coppola 's brief pretentious period before going on to other films that actually tell a story worth caring about 2 +77070 3965 fondly remembered as Roman Coppola 's brief pretentious period before going on to other films that actually tell a story worth caring about 1 +77071 3965 remembered as Roman Coppola 's brief pretentious period before going on to other films that actually tell a story worth caring about 2 +77072 3965 remembered as Roman Coppola 's brief pretentious period 2 +77073 3965 as Roman Coppola 's brief pretentious period 1 +77074 3965 Roman Coppola 's brief pretentious period 1 +77075 3965 Roman Coppola 's 2 +77076 3965 Coppola 's 2 +77077 3965 brief pretentious period 1 +77078 3965 pretentious period 2 +77079 3965 before going on to other films that actually tell a story worth caring about 0 +77080 3965 going on to other films that actually tell a story worth caring about 1 +77081 3965 to other films that actually tell a story worth caring about 2 +77082 3965 other films that actually tell a story worth caring about 2 +77083 3965 that actually tell a story worth caring about 2 +77084 3965 actually tell a story worth caring about 2 +77085 3965 tell a story worth caring about 2 +77086 3965 a story worth caring about 3 +77087 3965 a story worth 2 +77088 3965 story worth 2 +77089 3965 caring about 2 +77090 3965 caring 2 +77091 3966 Such master screenwriting comes courtesy of John Pogue , the Yale grad who previously gave us `` The Skulls '' and last year 's `` Rollerball . '' 4 +77092 3966 Such master screenwriting comes courtesy of John Pogue , the Yale grad who previously gave us `` The Skulls '' and last year 's `` Rollerball . 3 +77093 3966 Such master screenwriting comes courtesy of John Pogue , the Yale grad who previously gave us `` The Skulls '' and last year 's `` Rollerball 4 +77094 3966 Such master screenwriting comes courtesy of John Pogue , the Yale grad who previously gave us `` The Skulls '' and 4 +77095 3966 Such master screenwriting comes courtesy of John Pogue , the Yale grad who previously gave us `` The Skulls '' 4 +77096 3966 Such master screenwriting 4 +77097 3966 master screenwriting 2 +77098 3966 comes courtesy of John Pogue , the Yale grad who previously gave us `` The Skulls '' 2 +77099 3966 courtesy of John Pogue , the Yale grad who previously gave us `` The Skulls '' 3 +77100 3966 courtesy 2 +77101 3966 of John Pogue , the Yale grad who previously gave us `` The Skulls '' 2 +77102 3966 John Pogue , the Yale grad who previously gave us `` The Skulls '' 2 +77103 3966 John Pogue , 2 +77104 3966 John Pogue 2 +77105 3966 Pogue 2 +77106 3966 the Yale grad who previously gave us `` The Skulls '' 2 +77107 3966 the Yale grad 2 +77108 3966 Yale grad 3 +77109 3966 Yale 2 +77110 3966 grad 2 +77111 3966 who previously gave us `` The Skulls '' 2 +77112 3966 previously gave us `` The Skulls '' 2 +77113 3966 previously 2 +77114 3966 gave us `` The Skulls '' 2 +77115 3966 gave us 2 +77116 3966 `` The Skulls '' 2 +77117 3966 The Skulls '' 2 +77118 3966 Skulls '' 2 +77119 3966 Skulls 2 +77120 3966 last year 's `` Rollerball 2 +77121 3966 last year 2 +77122 3966 's `` Rollerball 2 +77123 3966 's `` 2 +77124 3967 Some Like It Hot on the Hardwood proves once again that a man in drag is not in and of himself funny . 1 +77125 3967 Like It Hot on the Hardwood proves once again that a man in drag is not in and of himself funny . 1 +77126 3967 Hot on the Hardwood proves once again that a man in drag is not in and of himself funny . 1 +77127 3967 Hot on the Hardwood 2 +77128 3967 on the Hardwood 2 +77129 3967 the Hardwood 2 +77130 3967 Hardwood 2 +77131 3967 proves once again that a man in drag is not in and of himself funny . 1 +77132 3967 proves once again that a man in drag is not in and of himself funny 1 +77133 3967 once again that a man in drag is not in and of himself funny 1 +77134 3967 that a man in drag is not in and of himself funny 1 +77135 3967 a man in drag is not in and of himself funny 1 +77136 3967 a man in drag 2 +77137 3967 is not in and of himself funny 2 +77138 3967 in and of himself funny 3 +77139 3967 in and of 2 +77140 3967 himself funny 3 +77141 3968 A glossy knock-off of a B-movie revenge flick . 2 +77142 3968 A glossy knock-off of a B-movie revenge 1 +77143 3968 A glossy knock-off 0 +77144 3968 glossy knock-off 1 +77145 3968 knock-off 1 +77146 3968 of a B-movie revenge 2 +77147 3968 a B-movie revenge 1 +77148 3968 B-movie revenge 2 +77149 3969 The attraction between these two marginal characters is complex from the start -- and , refreshingly , stays that way . 3 +77150 3969 The attraction between these two marginal characters 2 +77151 3969 between these two marginal characters 1 +77152 3969 these two marginal characters 2 +77153 3969 two marginal characters 2 +77154 3969 marginal characters 1 +77155 3969 is complex from the start -- and , refreshingly , stays that way . 4 +77156 3969 is complex from the start -- and , refreshingly , stays that way 4 +77157 3969 complex from the start -- and , refreshingly , stays that way 3 +77158 3969 from the start -- and , refreshingly , stays that way 4 +77159 3969 the start -- and , refreshingly , stays that way 3 +77160 3969 the start -- and , refreshingly , 3 +77161 3969 the start -- and 2 +77162 3969 the start -- 2 +77163 3969 , refreshingly , 3 +77164 3969 refreshingly , 3 +77165 3969 stays that way 2 +77166 3969 that way 2 +77167 3970 Full of bland hotels , highways , parking lots , with some glimpses of nature and family warmth , Time Out is a discreet moan of despair about entrapment in the maze of modern life . 1 +77168 3970 Full of bland hotels , highways , parking lots 2 +77169 3970 of bland hotels , highways , parking lots 1 +77170 3970 bland hotels , highways , parking lots 1 +77171 3970 bland hotels , 2 +77172 3970 bland hotels 1 +77173 3970 hotels 2 +77174 3970 highways , parking lots 2 +77175 3970 highways , 2 +77176 3970 highways 2 +77177 3970 parking lots 2 +77178 3970 parking 2 +77179 3970 , with some glimpses of nature and family warmth , Time Out is a discreet moan of despair about entrapment in the maze of modern life . 1 +77180 3970 with some glimpses of nature and family warmth , Time Out is a discreet moan of despair about entrapment in the maze of modern life . 2 +77181 3970 with some glimpses of nature and family warmth 3 +77182 3970 some glimpses of nature and family warmth 3 +77183 3970 some glimpses 2 +77184 3970 of nature and family warmth 3 +77185 3970 nature and family warmth 3 +77186 3970 and family warmth 2 +77187 3970 family warmth 3 +77188 3970 , Time Out is a discreet moan of despair about entrapment in the maze of modern life . 2 +77189 3970 Time Out is a discreet moan of despair about entrapment in the maze of modern life . 2 +77190 3970 is a discreet moan of despair about entrapment in the maze of modern life . 1 +77191 3970 is a discreet moan of despair about entrapment in the maze of modern life 2 +77192 3970 a discreet moan of despair about entrapment in the maze of modern life 2 +77193 3970 a discreet moan 1 +77194 3970 discreet moan 2 +77195 3970 moan 2 +77196 3970 of despair about entrapment in the maze of modern life 3 +77197 3970 despair about entrapment in the maze of modern life 2 +77198 3970 about entrapment in the maze of modern life 2 +77199 3970 entrapment in the maze of modern life 3 +77200 3970 entrapment 3 +77201 3970 in the maze of modern life 2 +77202 3970 the maze of modern life 2 +77203 3970 the maze 2 +77204 3970 of modern life 3 +77205 3970 modern life 2 +77206 3971 The problem with all of this : It 's not really funny . 1 +77207 3971 The problem with all of this 1 +77208 3971 with all of this 3 +77209 3971 : It 's not really funny . 1 +77210 3971 It 's not really funny . 1 +77211 3971 It 's not really funny 1 +77212 3971 's not really funny 1 +77213 3972 `` Punch-Drunk Love '' is a little like a chocolate milk moustache ... 2 +77214 3972 `` Punch-Drunk Love '' 2 +77215 3972 Punch-Drunk Love '' 2 +77216 3972 Love '' 4 +77217 3972 is a little like a chocolate milk moustache ... 3 +77218 3972 is a little like a chocolate milk moustache 3 +77219 3972 a little like a chocolate milk moustache 3 +77220 3972 little like a chocolate milk moustache 2 +77221 3972 little like a chocolate milk 2 +77222 3972 like a chocolate milk 2 +77223 3972 a chocolate milk 2 +77224 3972 chocolate milk 2 +77225 3972 milk 2 +77226 3972 moustache 1 +77227 3973 Shatner is probably the funniest person in the film , which gives you an idea just how bad it was . 1 +77228 3973 Shatner 2 +77229 3973 is probably the funniest person in the film , which gives you an idea just how bad it was . 0 +77230 3973 is probably the funniest person in the film , which gives you an idea just how bad it was 1 +77231 3973 is probably 2 +77232 3973 the funniest person in the film , which gives you an idea just how bad it was 0 +77233 3973 the funniest person 3 +77234 3973 funniest person 3 +77235 3973 in the film , which gives you an idea just how bad it was 1 +77236 3973 the film , which gives you an idea just how bad it was 1 +77237 3973 which gives you an idea just how bad it was 1 +77238 3973 gives you an idea just how bad it was 1 +77239 3973 gives you an idea 2 +77240 3973 gives you 2 +77241 3973 just how bad it was 0 +77242 3973 just how bad 1 +77243 3973 it was 2 +77244 3974 The most horrific movie experience I 've had since `` Ca n't Stop The Music . '' 0 +77245 3974 The most horrific movie experience 0 +77246 3974 most horrific movie experience 1 +77247 3974 most horrific 1 +77248 3974 horrific 1 +77249 3974 I 've had since `` Ca n't Stop The Music . '' 2 +77250 3974 I 've had since 2 +77251 3974 've had since 2 +77252 3974 had since 2 +77253 3974 `` Ca n't Stop The Music . '' 2 +77254 3974 Ca n't Stop The Music . '' 2 +77255 3974 Ca n't Stop The Music . 2 +77256 3974 Ca n't Stop The Music 2 +77257 3974 Stop The Music 2 +77258 3975 Yet another self-consciously overwritten story about a rag-tag bunch of would-be characters that team up for a ca n't - miss heist -- only to have it all go wrong . 2 +77259 3975 another self-consciously overwritten story about a rag-tag bunch of would-be characters that team up for a ca n't - miss heist -- only to have it all go wrong . 0 +77260 3975 another self-consciously overwritten story about a rag-tag bunch of would-be characters that team up for a ca n't - 0 +77261 3975 another self-consciously overwritten story about a rag-tag bunch of would-be characters that team up for a ca n't 1 +77262 3975 another self-consciously overwritten story about a rag-tag bunch of would-be characters 1 +77263 3975 another self-consciously overwritten story 1 +77264 3975 self-consciously overwritten story 1 +77265 3975 self-consciously overwritten 2 +77266 3975 about a rag-tag bunch of would-be characters 1 +77267 3975 a rag-tag bunch of would-be characters 1 +77268 3975 a rag-tag bunch 2 +77269 3975 rag-tag bunch 1 +77270 3975 rag-tag 2 +77271 3975 of would-be characters 1 +77272 3975 would-be characters 1 +77273 3975 that team up for a ca n't 2 +77274 3975 that team up for a 3 +77275 3975 that team 2 +77276 3975 up for a 2 +77277 3975 for a 2 +77278 3975 miss heist -- only to have it all go wrong . 2 +77279 3975 miss heist -- only to have it all go wrong 1 +77280 3975 miss heist -- 2 +77281 3975 miss heist 2 +77282 3975 only to have it all go wrong 2 +77283 3975 to have it all go wrong 1 +77284 3975 have it all go wrong 1 +77285 3975 it all go wrong 1 +77286 3975 all go wrong 1 +77287 3976 Whether or not Ram Dass proves as clear and reliable an authority on that as he was about inner consciousness , Fierce Grace reassures us that he will once again be an honest and loving one . 3 +77288 3976 Whether or not Ram Dass proves as clear and reliable an authority on that as he was about inner consciousness 2 +77289 3976 or not Ram Dass proves as clear and reliable an authority on that as he was about inner consciousness 2 +77290 3976 or not Ram Dass 2 +77291 3976 proves as clear and reliable an authority on that as he was about inner consciousness 2 +77292 3976 proves as clear and reliable an authority on that 3 +77293 3976 as clear and reliable an authority on that 3 +77294 3976 clear and reliable an authority on that 2 +77295 3976 clear and reliable an authority 3 +77296 3976 clear and reliable 3 +77297 3976 clear and 2 +77298 3976 an authority 2 +77299 3976 on that 2 +77300 3976 as he was about inner consciousness 3 +77301 3976 he was about inner consciousness 2 +77302 3976 was about inner consciousness 2 +77303 3976 about inner consciousness 2 +77304 3976 inner consciousness 2 +77305 3976 , Fierce Grace reassures us that he will once again be an honest and loving one . 3 +77306 3976 Fierce Grace reassures us that he will once again be an honest and loving one . 2 +77307 3976 reassures us that he will once again be an honest and loving one . 3 +77308 3976 reassures us that he will once again be an honest and loving one 3 +77309 3976 reassures us 3 +77310 3976 reassures 3 +77311 3976 that he will once again be an honest and loving one 3 +77312 3976 he will once again be an honest and loving one 3 +77313 3976 will once again be an honest and loving one 3 +77314 3976 will once again 2 +77315 3976 be an honest and loving one 3 +77316 3976 an honest and loving one 3 +77317 3976 honest and loving one 4 +77318 3976 honest and loving 3 +77319 3976 honest and 3 +77320 3977 Not everyone will play the dark , challenging tune taught by The Piano Teacher . 2 +77321 3977 Not everyone 2 +77322 3977 will play the dark , challenging tune taught by The Piano Teacher . 2 +77323 3977 will play the dark , challenging tune taught by The Piano Teacher 2 +77324 3977 play the dark , challenging tune taught by The Piano Teacher 2 +77325 3977 the dark , challenging tune taught by The Piano Teacher 2 +77326 3977 the dark , challenging tune 3 +77327 3977 dark , challenging tune 2 +77328 3977 dark , challenging 2 +77329 3977 , challenging 2 +77330 3977 tune 2 +77331 3977 taught by The Piano Teacher 2 +77332 3977 taught 2 +77333 3977 by The Piano Teacher 2 +77334 3977 The Piano Teacher 3 +77335 3977 Piano Teacher 2 +77336 3978 It 's packed with adventure and a worthwhile environmental message , so it 's great for the kids . 4 +77337 3978 It 's packed with adventure and a worthwhile environmental message , so it 's great for the kids 4 +77338 3978 It 's packed with adventure and a worthwhile environmental message , so 4 +77339 3978 It 's packed with adventure and a worthwhile environmental message , 4 +77340 3978 It 's packed with adventure and a worthwhile environmental message 3 +77341 3978 's packed with adventure and a worthwhile environmental message 4 +77342 3978 packed with adventure and a worthwhile environmental message 4 +77343 3978 with adventure and a worthwhile environmental message 4 +77344 3978 adventure and a worthwhile environmental message 3 +77345 3978 a worthwhile environmental message 3 +77346 3978 worthwhile environmental message 3 +77347 3978 environmental message 2 +77348 3978 environmental 2 +77349 3978 it 's great for the kids 4 +77350 3978 's great for the kids 3 +77351 3978 great for the kids 4 +77352 3978 for the kids 3 +77353 3978 the kids 2 +77354 3979 The script was reportedly rewritten a dozen times -- either 11 times too many or else too few . 0 +77355 3979 The script was reportedly rewritten a dozen times -- either 11 times too many or else too few 0 +77356 3979 The script was reportedly rewritten a dozen times -- 1 +77357 3979 The script was reportedly rewritten a dozen times 1 +77358 3979 was reportedly rewritten a dozen times 1 +77359 3979 was reportedly 2 +77360 3979 reportedly 2 +77361 3979 rewritten a dozen times 2 +77362 3979 rewritten 2 +77363 3979 a dozen times 2 +77364 3979 a dozen 2 +77365 3979 either 11 times too many or else too few 1 +77366 3979 either 11 times too many or else 1 +77367 3979 11 times too many or else 2 +77368 3979 11 times too many or 2 +77369 3979 11 times too many 1 +77370 3979 11 times 2 +77371 3979 too few 1 +77372 3980 Not the Great American Comedy , but if you liked the previous movies in the series , you 'll have a good time with this one too . 3 +77373 3980 Not the Great American Comedy 1 +77374 3980 the Great American Comedy 4 +77375 3980 Great American Comedy 4 +77376 3980 , but if you liked the previous movies in the series , you 'll have a good time with this one too . 3 +77377 3980 , but if you liked the previous movies in the series , you 'll have a good time with this one too 2 +77378 3980 if you liked the previous movies in the series , you 'll have a good time with this one too 3 +77379 3980 if you liked the previous movies in the series 3 +77380 3980 you liked the previous movies in the series 3 +77381 3980 liked the previous movies in the series 2 +77382 3980 liked the previous movies 2 +77383 3980 the previous movies 3 +77384 3980 previous movies 2 +77385 3980 , you 'll have a good time with this one too 3 +77386 3980 you 'll have a good time with this one too 3 +77387 3980 'll have a good time with this one too 3 +77388 3980 have a good time with this one too 3 +77389 3980 a good time with this one too 3 +77390 3980 with this one too 3 +77391 3980 this one too 2 +77392 3980 one too 2 +77393 3981 Frank McKlusky C.I. is that movie ! 2 +77394 3981 Frank McKlusky C.I. 2 +77395 3981 McKlusky C.I. 2 +77396 3981 McKlusky 2 +77397 3981 C.I. 2 +77398 3981 is that movie ! 2 +77399 3981 is that movie 2 +77400 3982 The story line may be 127 years old , but El Crimen del Padre Amaro ... could n't be more timely in its despairing vision of corruption within the Catholic establishment . 3 +77401 3982 The story line may be 127 years old , but El Crimen del Padre Amaro ... could n't be more timely in its despairing vision of corruption within the Catholic establishment 4 +77402 3982 The story line may be 127 years old , but 2 +77403 3982 The story line may be 127 years old , 2 +77404 3982 The story line may be 127 years old 2 +77405 3982 The story line 2 +77406 3982 may be 127 years old 2 +77407 3982 be 127 years old 2 +77408 3982 127 years old 2 +77409 3982 127 years 2 +77410 3982 127 2 +77411 3982 El Crimen del Padre Amaro ... could n't be more timely in its despairing vision of corruption within the Catholic establishment 2 +77412 3982 El Crimen 2 +77413 3982 ... could n't be more timely in its despairing vision of corruption within the Catholic establishment 2 +77414 3982 could n't be more timely in its despairing vision of corruption within the Catholic establishment 3 +77415 3982 be more timely in its despairing vision of corruption within the Catholic establishment 2 +77416 3982 be more timely in its despairing vision of corruption 1 +77417 3982 more timely in its despairing vision of corruption 3 +77418 3982 timely in its despairing vision of corruption 2 +77419 3982 in its despairing vision of corruption 2 +77420 3982 its despairing vision of corruption 2 +77421 3982 its despairing vision 2 +77422 3982 despairing vision 2 +77423 3982 despairing 2 +77424 3982 of corruption 2 +77425 3982 corruption 1 +77426 3982 within the Catholic establishment 2 +77427 3982 the Catholic establishment 2 +77428 3982 Catholic establishment 2 +77429 3982 establishment 2 +77430 3983 ... quite good at providing some good old fashioned spooks . 3 +77431 3983 quite good at providing some good old fashioned spooks . 4 +77432 3983 quite good at providing some good old fashioned spooks 3 +77433 3983 quite good 4 +77434 3983 at providing some good old fashioned spooks 2 +77435 3983 providing some good old fashioned spooks 3 +77436 3983 some good old fashioned spooks 2 +77437 3983 good old fashioned spooks 3 +77438 3983 old fashioned spooks 2 +77439 3983 fashioned spooks 2 +77440 3983 spooks 1 +77441 3984 Has none of the crackle of `` Fatal Attraction '' , `` 9 1\/2 Weeks '' , or even `` Indecent Proposal '' , and feels more like Lyne 's stolid remake of `` Lolita '' . 1 +77442 3984 Has none of the crackle of `` Fatal Attraction '' , `` 9 1\/2 Weeks '' , or even `` Indecent Proposal '' , and feels more like Lyne 's stolid remake of `` Lolita '' 0 +77443 3984 Has none of the crackle of `` Fatal Attraction '' , `` 9 1\/2 Weeks '' , or even `` Indecent Proposal '' , and 1 +77444 3984 Has none of the crackle of `` Fatal Attraction '' , `` 9 1\/2 Weeks '' , or even `` Indecent Proposal '' , 1 +77445 3984 none of the crackle of `` Fatal Attraction '' , `` 9 1\/2 Weeks '' , or even `` Indecent Proposal '' , 1 +77446 3984 none of the crackle of `` Fatal Attraction '' , `` 9 1\/2 Weeks '' , or even `` Indecent Proposal '' 1 +77447 3984 none of the crackle of `` Fatal Attraction '' , `` 9 1\/2 Weeks '' , or even 1 +77448 3984 none of the crackle of `` Fatal Attraction '' , `` 9 1\/2 Weeks '' , or 1 +77449 3984 none of the crackle of `` Fatal Attraction '' , `` 9 1\/2 Weeks '' , 1 +77450 3984 none of the crackle of `` Fatal Attraction '' , `` 9 1\/2 Weeks '' 2 +77451 3984 of the crackle of `` Fatal Attraction '' , `` 9 1\/2 Weeks '' 2 +77452 3984 the crackle of `` Fatal Attraction '' , `` 9 1\/2 Weeks '' 2 +77453 3984 of `` Fatal Attraction '' , `` 9 1\/2 Weeks '' 2 +77454 3984 of `` Fatal Attraction '' , `` 9 1\/2 Weeks 2 +77455 3984 Fatal Attraction '' , `` 9 1\/2 Weeks 2 +77456 3984 Fatal Attraction '' , 2 +77457 3984 Fatal Attraction '' 2 +77458 3984 `` 9 1\/2 Weeks 2 +77459 3984 9 1\/2 Weeks 2 +77460 3984 1\/2 Weeks 2 +77461 3984 1\/2 2 +77462 3984 `` Indecent Proposal '' 2 +77463 3984 Indecent Proposal '' 2 +77464 3984 Indecent 1 +77465 3984 Proposal '' 2 +77466 3984 Proposal 2 +77467 3984 feels more like Lyne 's stolid remake of `` Lolita '' 2 +77468 3984 like Lyne 's stolid remake of `` Lolita '' 2 +77469 3984 Lyne 's stolid remake of `` Lolita '' 2 +77470 3984 Lyne 's stolid remake 3 +77471 3984 stolid remake 1 +77472 3984 stolid 2 +77473 3984 of `` Lolita '' 2 +77474 3984 `` Lolita '' 2 +77475 3984 Lolita '' 2 +77476 3984 Lolita 2 +77477 3985 John Carlen 's script is full of unhappy , two-dimensional characters who are anything but compelling . 2 +77478 3985 John Carlen 's script 3 +77479 3985 John Carlen 's 2 +77480 3985 Carlen 's 2 +77481 3985 Carlen 2 +77482 3985 is full of unhappy , two-dimensional characters who are anything but compelling . 0 +77483 3985 is full of unhappy , two-dimensional characters who are anything but compelling 0 +77484 3985 is full of unhappy , 1 +77485 3985 is full of unhappy 1 +77486 3985 full of unhappy 1 +77487 3985 of unhappy 1 +77488 3985 two-dimensional characters who are anything but compelling 1 +77489 3985 two-dimensional characters 1 +77490 3985 who are anything but compelling 2 +77491 3985 are anything but compelling 1 +77492 3985 anything but compelling 1 +77493 3985 anything but 2 +77494 3986 When the movie mixes the cornpone and the Cosa Nostra , it finds a nice rhythm . 3 +77495 3986 When the movie mixes the cornpone and the Cosa Nostra 2 +77496 3986 the movie mixes the cornpone and the Cosa Nostra 2 +77497 3986 mixes the cornpone and the Cosa Nostra 2 +77498 3986 the cornpone and the Cosa Nostra 2 +77499 3986 the cornpone and 2 +77500 3986 the cornpone 2 +77501 3986 cornpone 2 +77502 3986 the Cosa Nostra 2 +77503 3986 Cosa Nostra 2 +77504 3986 Cosa 2 +77505 3986 Nostra 2 +77506 3986 , it finds a nice rhythm . 3 +77507 3986 it finds a nice rhythm . 3 +77508 3986 finds a nice rhythm . 3 +77509 3986 finds a nice rhythm 3 +77510 3986 a nice rhythm 2 +77511 3986 nice rhythm 3 +77512 3987 It does n't make for great cinema , but it is interesting to see where one 's imagination will lead when given the opportunity . 1 +77513 3987 It does n't make for great cinema , but it is interesting to see where one 's imagination will lead when given the opportunity 2 +77514 3987 It does n't make for great cinema , but 2 +77515 3987 It does n't make for great cinema , 1 +77516 3987 It does n't make for great cinema 0 +77517 3987 does n't make for great cinema 0 +77518 3987 make for great cinema 3 +77519 3987 for great cinema 3 +77520 3987 great cinema 4 +77521 3987 it is interesting to see where one 's imagination will lead when given the opportunity 3 +77522 3987 is interesting to see where one 's imagination will lead when given the opportunity 3 +77523 3987 interesting to see where one 's imagination will lead when given the opportunity 3 +77524 3987 to see where one 's imagination will lead when given the opportunity 3 +77525 3987 see where one 's imagination will lead when given the opportunity 2 +77526 3987 where one 's imagination will lead when given the opportunity 3 +77527 3987 one 's imagination will lead when given the opportunity 3 +77528 3987 one 's imagination 2 +77529 3987 will lead when given the opportunity 3 +77530 3987 lead when given the opportunity 2 +77531 3987 when given the opportunity 2 +77532 3987 given the opportunity 2 +77533 3987 the opportunity 2 +77534 3988 Your stomach for Heaven depends largely on your appetite for canned corn . 2 +77535 3988 Your stomach for Heaven 2 +77536 3988 for Heaven 2 +77537 3988 depends largely on your appetite for canned corn . 0 +77538 3988 depends largely on your appetite for canned corn 1 +77539 3988 depends largely 2 +77540 3988 on your appetite for canned corn 2 +77541 3988 your appetite for canned corn 1 +77542 3988 your appetite 2 +77543 3988 for canned corn 2 +77544 3988 canned corn 2 +77545 3988 corn 2 +77546 3989 Family togetherness takes a back seat to inter-family rivalry and workplace ambition ... whole subplots have no explanation or even plot relevance . 1 +77547 3989 Family togetherness takes a back seat to inter-family rivalry and workplace ambition ... whole subplots have no explanation or even plot relevance 1 +77548 3989 Family togetherness takes a back seat to inter-family rivalry and workplace ambition ... 2 +77549 3989 Family togetherness takes a back seat to inter-family rivalry and workplace ambition 1 +77550 3989 Family togetherness 3 +77551 3989 togetherness 2 +77552 3989 takes a back seat to inter-family rivalry and workplace ambition 2 +77553 3989 takes a back seat 2 +77554 3989 a back seat 2 +77555 3989 back seat 2 +77556 3989 to inter-family rivalry and workplace ambition 2 +77557 3989 inter-family rivalry and workplace ambition 2 +77558 3989 inter-family 2 +77559 3989 rivalry and workplace ambition 2 +77560 3989 and workplace ambition 2 +77561 3989 workplace ambition 3 +77562 3989 whole subplots have no explanation or even plot relevance 1 +77563 3989 whole subplots 2 +77564 3989 have no explanation or even plot relevance 2 +77565 3989 no explanation or even plot relevance 1 +77566 3989 no explanation or even 1 +77567 3989 no explanation or 2 +77568 3989 no explanation 1 +77569 3989 explanation 2 +77570 3989 plot relevance 2 +77571 3990 Equilibrium the movie , as opposed to the manifesto , is really , really stupid . 0 +77572 3990 the movie , as opposed to the manifesto , is really , really stupid . 0 +77573 3990 the movie , as opposed to the manifesto , 2 +77574 3990 the movie , as opposed to the manifesto 2 +77575 3990 the movie , 2 +77576 3990 as opposed to the manifesto 2 +77577 3990 opposed to the manifesto 3 +77578 3990 to the manifesto 2 +77579 3990 the manifesto 2 +77580 3990 is really , really stupid . 0 +77581 3990 is really , really stupid 1 +77582 3990 really , really stupid 0 +77583 3990 , really stupid 1 +77584 3990 really stupid 0 +77585 3991 Payne constructs a hilarious ode to middle America and middle age with this unlikely odyssey , featuring a pathetic , endearing hero who is all too human . 3 +77586 3991 constructs a hilarious ode to middle America and middle age with this unlikely odyssey , featuring a pathetic , endearing hero who is all too human . 3 +77587 3991 constructs a hilarious ode to middle America and middle age with this unlikely odyssey , featuring a pathetic , endearing hero who is all too human 3 +77588 3991 constructs a hilarious ode to middle America and middle age with this unlikely odyssey , 3 +77589 3991 constructs a hilarious ode to middle America and middle age with this unlikely odyssey 4 +77590 3991 a hilarious ode to middle America and middle age with this unlikely odyssey 4 +77591 3991 a hilarious ode to middle America and 3 +77592 3991 a hilarious ode to middle America 4 +77593 3991 a hilarious ode 4 +77594 3991 hilarious ode 4 +77595 3991 to middle America 2 +77596 3991 middle America 2 +77597 3991 middle age with this unlikely odyssey 2 +77598 3991 middle age 2 +77599 3991 with this unlikely odyssey 2 +77600 3991 this unlikely odyssey 2 +77601 3991 unlikely odyssey 2 +77602 3991 odyssey 2 +77603 3991 featuring a pathetic , endearing hero who is all too human 2 +77604 3991 a pathetic , endearing hero who is all too human 2 +77605 3991 a pathetic , endearing hero 3 +77606 3991 pathetic , endearing hero 2 +77607 3991 pathetic , endearing 3 +77608 3991 who is all too human 2 +77609 3991 is all too human 2 +77610 3991 too human 2 +77611 3992 While somewhat less than it might have been , the film is a good one , and you 've got to hand it to director George Clooney for biting off such a big job the first time out . 3 +77612 3992 While somewhat less than it might have been , the film is a good one , and you 've got to hand it to director George Clooney for biting off such a big job the first time out 4 +77613 3992 While somewhat less than it might have been , the film is a good one , and 4 +77614 3992 While somewhat less than it might have been , the film is a good one , 3 +77615 3992 While somewhat less than it might have been , the film is a good one 3 +77616 3992 While somewhat less than it might have been 2 +77617 3992 somewhat less than it might have been 1 +77618 3992 somewhat less 1 +77619 3992 than it might have been 2 +77620 3992 it might have been 1 +77621 3992 might have been 2 +77622 3992 have been 2 +77623 3992 , the film is a good one 3 +77624 3992 the film is a good one 4 +77625 3992 is a good one 3 +77626 3992 a good one 3 +77627 3992 good one 4 +77628 3992 you 've got to hand it to director George Clooney for biting off such a big job the first time out 3 +77629 3992 've got to hand it to director George Clooney for biting off such a big job the first time out 3 +77630 3992 got to hand it to director George Clooney for biting off such a big job the first time out 3 +77631 3992 to hand it to director George Clooney for biting off such a big job the first time out 3 +77632 3992 hand it to director George Clooney for biting off such a big job the first time out 3 +77633 3992 hand it to director George Clooney 3 +77634 3992 hand it 2 +77635 3992 to director George Clooney 2 +77636 3992 director George Clooney 2 +77637 3992 George Clooney 2 +77638 3992 for biting off such a big job the first time out 2 +77639 3992 biting off such a big job the first time out 2 +77640 3992 biting off such a big job 2 +77641 3992 biting off 2 +77642 3992 such a big job 3 +77643 3992 a big job 2 +77644 3992 big job 2 +77645 3992 the first time out 2 +77646 3993 All leather pants & augmented boobs , Hawn is hilarious as she tries to resuscitate the fun-loving libertine lost somewhere inside the conservative , handbag-clutching Sarandon . 3 +77647 3993 All leather pants & augmented boobs , Hawn 1 +77648 3993 leather pants & augmented boobs , Hawn 2 +77649 3993 leather pants & 3 +77650 3993 leather pants 2 +77651 3993 augmented boobs , Hawn 2 +77652 3993 augmented boobs , 2 +77653 3993 augmented boobs 2 +77654 3993 augmented 2 +77655 3993 is hilarious as she tries to resuscitate the fun-loving libertine lost somewhere inside the conservative , handbag-clutching Sarandon . 3 +77656 3993 is hilarious as she tries to resuscitate the fun-loving libertine lost somewhere inside the conservative , handbag-clutching Sarandon 3 +77657 3993 as she tries to resuscitate the fun-loving libertine lost somewhere inside the conservative , handbag-clutching Sarandon 2 +77658 3993 she tries to resuscitate the fun-loving libertine lost somewhere inside the conservative , handbag-clutching Sarandon 2 +77659 3993 tries to resuscitate the fun-loving libertine lost somewhere inside the conservative , handbag-clutching Sarandon 2 +77660 3993 to resuscitate the fun-loving libertine lost somewhere inside the conservative , handbag-clutching Sarandon 2 +77661 3993 resuscitate the fun-loving libertine lost somewhere inside the conservative , handbag-clutching Sarandon 2 +77662 3993 resuscitate 3 +77663 3993 the fun-loving libertine lost somewhere inside the conservative , handbag-clutching Sarandon 3 +77664 3993 the fun-loving libertine 2 +77665 3993 fun-loving libertine 4 +77666 3993 fun-loving 3 +77667 3993 lost somewhere inside the conservative , handbag-clutching Sarandon 2 +77668 3993 lost somewhere 2 +77669 3993 inside the conservative , handbag-clutching Sarandon 2 +77670 3993 the conservative , handbag-clutching Sarandon 2 +77671 3993 conservative , handbag-clutching Sarandon 2 +77672 3993 , handbag-clutching Sarandon 2 +77673 3993 handbag-clutching Sarandon 2 +77674 3993 handbag-clutching 3 +77675 3994 `` Cremaster 3 '' should come with the warning `` For serious film buffs only ! '' 3 +77676 3994 Cremaster 3 '' should come with the warning `` For serious film buffs only ! '' 1 +77677 3994 '' should come with the warning `` For serious film buffs only ! '' 2 +77678 3994 should come with the warning `` For serious film buffs only ! '' 3 +77679 3994 should come with the warning `` For serious film buffs only ! 2 +77680 3994 should come with the warning `` For serious film buffs only 1 +77681 3994 come with the warning `` For serious film buffs only 2 +77682 3994 come with the warning `` For serious film buffs 2 +77683 3994 come with the warning `` 1 +77684 3994 come with the warning 1 +77685 3994 with the warning 2 +77686 3994 the warning 2 +77687 3994 For serious film buffs 3 +77688 3994 serious film buffs 2 +77689 3994 film buffs 3 +77690 3995 Both exuberantly romantic and serenely melancholy , What Time Is It There ? 3 +77691 3995 Both exuberantly romantic and serenely 3 +77692 3995 Both exuberantly 4 +77693 3995 exuberantly 3 +77694 3995 romantic and serenely 3 +77695 3995 serenely 2 +77696 3995 melancholy , What Time Is It There ? 2 +77697 3995 melancholy , 2 +77698 3995 What Time Is It There ? 2 +77699 3995 Is It There ? 2 +77700 3996 This is mostly well-constructed fluff , which is all it seems intended to be . 2 +77701 3996 is mostly well-constructed fluff , which is all it seems intended to be . 3 +77702 3996 is mostly well-constructed fluff , which is all it seems intended to be 2 +77703 3996 is mostly 2 +77704 3996 well-constructed fluff , which is all it seems intended to be 2 +77705 3996 well-constructed fluff , 2 +77706 3996 well-constructed fluff 2 +77707 3996 which is all it seems intended to be 2 +77708 3996 is all it seems intended to be 2 +77709 3996 all it seems intended to be 2 +77710 3996 it seems intended to be 2 +77711 3996 seems intended to be 2 +77712 3996 intended to be 2 +77713 3997 It 's something of the ultimate Scorsese film , with all the stomach-turning violence , colorful New York gang lore and other hallmarks of his personal cinema painted on their largest-ever historical canvas . 4 +77714 3997 's something of the ultimate Scorsese film , with all the stomach-turning violence , colorful New York gang lore and other hallmarks of his personal cinema painted on their largest-ever historical canvas . 4 +77715 3997 's something of the ultimate Scorsese film , with all the stomach-turning violence , colorful New York gang lore and other hallmarks of his personal cinema painted on their largest-ever historical canvas 3 +77716 3997 's something of the ultimate Scorsese film , 2 +77717 3997 's something of the ultimate Scorsese film 3 +77718 3997 something of the ultimate Scorsese film 3 +77719 3997 of the ultimate Scorsese film 4 +77720 3997 the ultimate Scorsese film 3 +77721 3997 ultimate Scorsese film 3 +77722 3997 Scorsese film 2 +77723 3997 with all the stomach-turning violence , colorful New York gang lore and other hallmarks of his personal cinema painted on their largest-ever historical canvas 3 +77724 3997 all the stomach-turning violence , colorful New York gang lore and other hallmarks of his personal cinema painted on their largest-ever historical canvas 3 +77725 3997 all the stomach-turning violence , colorful New York gang lore and 2 +77726 3997 all the stomach-turning violence , colorful New York gang lore 1 +77727 3997 all the stomach-turning violence , 2 +77728 3997 all the stomach-turning violence 1 +77729 3997 the stomach-turning violence 1 +77730 3997 stomach-turning violence 2 +77731 3997 stomach-turning 2 +77732 3997 colorful New York gang lore 2 +77733 3997 New York gang lore 2 +77734 3997 York gang lore 2 +77735 3997 gang lore 2 +77736 3997 other hallmarks of his personal cinema painted on their largest-ever historical canvas 3 +77737 3997 other hallmarks 2 +77738 3997 hallmarks 2 +77739 3997 of his personal cinema painted on their largest-ever historical canvas 2 +77740 3997 his personal cinema painted on their largest-ever historical canvas 2 +77741 3997 his personal cinema 2 +77742 3997 personal cinema 2 +77743 3997 painted on their largest-ever historical canvas 3 +77744 3997 on their largest-ever historical canvas 2 +77745 3997 their largest-ever historical canvas 3 +77746 3997 largest-ever historical canvas 3 +77747 3997 largest-ever 2 +77748 3997 historical canvas 2 +77749 3997 canvas 2 +77750 3998 It takes a really long , slow and dreary time to dope out what TUCK EVERLASTING is about . 1 +77751 3998 takes a really long , slow and dreary time to dope out what TUCK EVERLASTING is about . 0 +77752 3998 takes a really long , slow and dreary time to dope out what TUCK EVERLASTING is about 0 +77753 3998 takes a really long , slow and dreary time 0 +77754 3998 a really long , slow and dreary time 1 +77755 3998 really long , slow and dreary time 0 +77756 3998 really long , slow and dreary 2 +77757 3998 long , slow and dreary 0 +77758 3998 , slow and dreary 1 +77759 3998 slow and dreary 1 +77760 3998 slow and 1 +77761 3998 to dope out what TUCK EVERLASTING is about 2 +77762 3998 dope out what TUCK EVERLASTING is about 2 +77763 3998 dope out 2 +77764 3998 dope 3 +77765 3998 what TUCK EVERLASTING is about 2 +77766 3998 TUCK EVERLASTING is about 2 +77767 3999 Call me a cold-hearted curmudgeon for not being able to enjoy a mindless action movie , but I believe a movie can be mindless without being the peak of all things insipid . 0 +77768 3999 Call me a cold-hearted curmudgeon for not being able to enjoy a mindless action movie 1 +77769 3999 Call me 2 +77770 3999 a cold-hearted curmudgeon for not being able to enjoy a mindless action movie 0 +77771 3999 a cold-hearted curmudgeon 2 +77772 3999 cold-hearted curmudgeon 1 +77773 3999 cold-hearted 1 +77774 3999 curmudgeon 2 +77775 3999 for not being able to enjoy a mindless action movie 2 +77776 3999 not being able to enjoy a mindless action movie 1 +77777 3999 being able to enjoy a mindless action movie 2 +77778 3999 able to enjoy a mindless action movie 2 +77779 3999 to enjoy a mindless action movie 2 +77780 3999 enjoy a mindless action movie 2 +77781 3999 a mindless action movie 1 +77782 3999 mindless action movie 1 +77783 3999 , but I believe a movie can be mindless without being the peak of all things insipid . 1 +77784 3999 , but I believe a movie can be mindless without being the peak of all things insipid 1 +77785 3999 I believe a movie can be mindless without being the peak of all things insipid 2 +77786 3999 believe a movie can be mindless without being the peak of all things insipid 1 +77787 3999 a movie can be mindless without being the peak of all things insipid 1 +77788 3999 can be mindless without being the peak of all things insipid 2 +77789 3999 be mindless without being the peak of all things insipid 1 +77790 3999 mindless without being the peak of all things insipid 1 +77791 3999 without being the peak of all things insipid 2 +77792 3999 being the peak of all things insipid 2 +77793 3999 the peak of all things insipid 1 +77794 3999 of all things insipid 2 +77795 3999 all things insipid 1 +77796 3999 things insipid 1 +77797 4000 This is a dark , gritty , sometimes funny little gem . 3 +77798 4000 is a dark , gritty , sometimes funny little gem . 3 +77799 4000 is a dark , gritty , sometimes funny little gem 3 +77800 4000 a dark , gritty , sometimes funny little gem 3 +77801 4000 dark , gritty , sometimes funny little gem 3 +77802 4000 dark , gritty , sometimes funny 3 +77803 4000 , gritty , sometimes funny 3 +77804 4000 gritty , sometimes funny 3 +77805 4000 , sometimes funny 3 +77806 4000 sometimes funny 3 +77807 4000 little gem 4 +77808 4001 Shallow , noisy and pretentious . 0 +77809 4001 Shallow , noisy and pretentious 0 +77810 4001 , noisy and pretentious 1 +77811 4001 noisy and pretentious 1 +77812 4001 noisy and 1 +77813 4001 noisy 1 +77814 4002 Strange occurrences build in the mind of the viewer and take on extreme urgency . 3 +77815 4002 Strange occurrences 2 +77816 4002 occurrences 2 +77817 4002 build in the mind of the viewer and take on extreme urgency . 3 +77818 4002 build in the mind of the viewer and take on extreme urgency 2 +77819 4002 build in the mind of the viewer and 2 +77820 4002 build in the mind of the viewer 2 +77821 4002 in the mind of the viewer 2 +77822 4002 the mind of the viewer 2 +77823 4002 of the viewer 2 +77824 4002 take on extreme urgency 2 +77825 4002 on extreme urgency 2 +77826 4002 extreme urgency 2 +77827 4003 Although largely a heavy-handed indictment of parental failings and the indifference of Spanish social workers and legal system towards child abuse , the film retains ambiguities that make it well worth watching . 3 +77828 4003 Although largely a heavy-handed indictment of parental failings and the indifference of Spanish social workers and legal system towards child abuse 1 +77829 4003 largely a heavy-handed indictment of parental failings and the indifference of Spanish social workers and legal system towards child abuse 2 +77830 4003 a heavy-handed indictment of parental failings and the indifference of Spanish social workers and legal system towards child abuse 1 +77831 4003 a heavy-handed indictment of parental failings and 1 +77832 4003 a heavy-handed indictment of parental failings 2 +77833 4003 a heavy-handed indictment 1 +77834 4003 heavy-handed indictment 2 +77835 4003 indictment 2 +77836 4003 of parental failings 1 +77837 4003 parental failings 2 +77838 4003 the indifference of Spanish social workers and legal system towards child abuse 2 +77839 4003 the indifference of Spanish social workers and 2 +77840 4003 the indifference of Spanish social workers 2 +77841 4003 the indifference 2 +77842 4003 indifference 1 +77843 4003 of Spanish social workers 2 +77844 4003 Spanish social workers 2 +77845 4003 Spanish 2 +77846 4003 social workers 2 +77847 4003 legal system towards child abuse 2 +77848 4003 legal system 2 +77849 4003 towards child abuse 1 +77850 4003 child abuse 0 +77851 4003 , the film retains ambiguities that make it well worth watching . 4 +77852 4003 the film retains ambiguities that make it well worth watching . 3 +77853 4003 retains ambiguities that make it well worth watching . 4 +77854 4003 retains ambiguities that make it well worth watching 3 +77855 4003 retains 2 +77856 4003 ambiguities that make it well worth watching 4 +77857 4003 ambiguities 2 +77858 4003 that make it well worth watching 4 +77859 4003 make it well worth watching 3 +77860 4003 it well worth watching 4 +77861 4003 well worth watching 4 +77862 4004 Delight your senses and crash this wedding ! 4 +77863 4004 Delight your senses and crash this wedding 3 +77864 4004 Delight your senses and 4 +77865 4004 Delight your senses 3 +77866 4004 crash this wedding 2 +77867 4004 crash 2 +77868 4004 this wedding 3 +77869 4005 A thought-provoking picture . 4 +77870 4005 thought-provoking picture . 4 +77871 4006 Think The Lion King redone for horses , with fewer deliberate laughs , more inadvertent ones and stunningly trite songs by Bryan Adams , the world 's most generic rock star . 0 +77872 4006 Think The Lion King redone for horses , with fewer deliberate laughs , more inadvertent ones and stunningly trite songs by Bryan Adams , the world 's most generic rock star 2 +77873 4006 The Lion King redone for horses , with fewer deliberate laughs , more inadvertent ones and stunningly trite songs by Bryan Adams , the world 's most generic rock star 1 +77874 4006 The Lion King 3 +77875 4006 Lion King 2 +77876 4006 Lion 2 +77877 4006 redone for horses , with fewer deliberate laughs , more inadvertent ones and stunningly trite songs by Bryan Adams , the world 's most generic rock star 1 +77878 4006 redone for horses , with fewer deliberate laughs , more inadvertent ones and stunningly trite songs 0 +77879 4006 redone 2 +77880 4006 for horses , with fewer deliberate laughs , more inadvertent ones and stunningly trite songs 2 +77881 4006 horses , with fewer deliberate laughs , more inadvertent ones and stunningly trite songs 2 +77882 4006 horses , 2 +77883 4006 horses 2 +77884 4006 with fewer deliberate laughs , more inadvertent ones and stunningly trite songs 1 +77885 4006 fewer deliberate laughs , more inadvertent ones and stunningly trite songs 1 +77886 4006 fewer deliberate laughs , more inadvertent ones and stunningly trite 1 +77887 4006 fewer deliberate laughs 2 +77888 4006 deliberate laughs 3 +77889 4006 , more inadvertent ones and stunningly trite 1 +77890 4006 more inadvertent ones and stunningly trite 2 +77891 4006 more inadvertent ones and 2 +77892 4006 more inadvertent ones 2 +77893 4006 inadvertent ones 1 +77894 4006 inadvertent 1 +77895 4006 stunningly trite 1 +77896 4006 stunningly 4 +77897 4006 by Bryan Adams , the world 's most generic rock star 2 +77898 4006 Bryan Adams , the world 's most generic rock star 3 +77899 4006 Bryan Adams , 2 +77900 4006 Bryan Adams 2 +77901 4006 Bryan 2 +77902 4006 the world 's most generic rock star 1 +77903 4006 most generic rock star 2 +77904 4006 most generic 1 +77905 4006 rock star 2 +77906 4007 How inept is Serving Sara ? 0 +77907 4007 How inept 2 +77908 4007 is Serving Sara ? 2 +77909 4007 is Serving Sara 2 +77910 4008 Too much power , not enough puff . 1 +77911 4008 Too much power , not enough puff 1 +77912 4008 Too much power , 2 +77913 4008 Too much power 2 +77914 4008 much power 3 +77915 4008 not enough puff 3 +77916 4008 enough puff 2 +77917 4009 Narc is a no-bull throwback to 1970s action films . 4 +77918 4009 is a no-bull throwback to 1970s action films . 3 +77919 4009 is a no-bull throwback to 1970s action films 3 +77920 4009 a no-bull throwback to 1970s action films 3 +77921 4009 a no-bull throwback 3 +77922 4009 no-bull throwback 2 +77923 4009 no-bull 2 +77924 4009 to 1970s action films 2 +77925 4009 1970s action films 2 +77926 4010 Elegant and eloquent -LRB- meditation -RRB- on death and that most elusive of passions , love . 4 +77927 4010 Elegant and eloquent -LRB- meditation -RRB- on death and that most elusive of passions 3 +77928 4010 Elegant and 3 +77929 4010 eloquent -LRB- meditation -RRB- on death and that most elusive of passions 3 +77930 4010 eloquent -LRB- meditation -RRB- on death and 3 +77931 4010 eloquent -LRB- meditation -RRB- on death 3 +77932 4010 eloquent -LRB- meditation -RRB- 2 +77933 4010 -LRB- meditation -RRB- 2 +77934 4010 meditation -RRB- 3 +77935 4010 on death 2 +77936 4010 that most elusive of passions 2 +77937 4010 that most elusive 2 +77938 4010 most elusive 3 +77939 4010 of passions 2 +77940 4010 , love . 3 +77941 4011 The action is reasonably well-done ... yet story , character and comedy bits are too ragged to ever fit smoothly together . 2 +77942 4011 The action is reasonably well-done ... yet story , character and comedy bits are too ragged to ever fit smoothly together 2 +77943 4011 The action is reasonably well-done ... 3 +77944 4011 The action is reasonably well-done 3 +77945 4011 is reasonably well-done 3 +77946 4011 reasonably well-done 3 +77947 4011 yet story , character and comedy bits are too ragged to ever fit smoothly together 0 +77948 4011 story , character and comedy bits are too ragged to ever fit smoothly together 1 +77949 4011 story , character and comedy bits 3 +77950 4011 , character and comedy bits 3 +77951 4011 character and comedy bits 2 +77952 4011 and comedy bits 3 +77953 4011 comedy bits 2 +77954 4011 are too ragged to ever fit smoothly together 0 +77955 4011 too ragged to ever fit smoothly together 1 +77956 4011 ragged to ever fit smoothly together 2 +77957 4011 to ever fit smoothly together 2 +77958 4011 ever fit smoothly together 3 +77959 4011 fit smoothly together 3 +77960 4011 fit smoothly 3 +77961 4012 These are textbook lives of quiet desperation . 1 +77962 4012 are textbook lives of quiet desperation . 2 +77963 4012 are textbook lives of quiet desperation 2 +77964 4012 textbook lives of quiet desperation 2 +77965 4012 textbook lives 3 +77966 4012 of quiet desperation 1 +77967 4012 quiet desperation 2 +77968 4013 As pedestrian as they come . 0 +77969 4013 As pedestrian as 2 +77970 4013 pedestrian as 2 +77971 4013 they come . 2 +77972 4013 come . 2 +77973 4014 McGrath has deftly trimmed Dickens ' wonderfully sprawling soap opera , the better to focus on the hero 's odyssey from cowering poverty to courage and happiness . 3 +77974 4014 has deftly trimmed Dickens ' wonderfully sprawling soap opera , the better to focus on the hero 's odyssey from cowering poverty to courage and happiness . 3 +77975 4014 has deftly trimmed Dickens ' wonderfully sprawling soap opera , the better to focus on the hero 's odyssey from cowering poverty to courage and happiness 2 +77976 4014 has deftly 2 +77977 4014 trimmed Dickens ' wonderfully sprawling soap opera , the better to focus on the hero 's odyssey from cowering poverty to courage and happiness 3 +77978 4014 trimmed Dickens ' wonderfully sprawling soap opera , the better 2 +77979 4014 trimmed 1 +77980 4014 Dickens ' wonderfully sprawling soap opera , the better 3 +77981 4014 Dickens ' wonderfully sprawling soap opera , 4 +77982 4014 Dickens ' wonderfully sprawling soap opera 3 +77983 4014 Dickens ' 2 +77984 4014 wonderfully sprawling soap opera 4 +77985 4014 wonderfully sprawling 3 +77986 4014 sprawling 2 +77987 4014 to focus on the hero 's odyssey from cowering poverty to courage and happiness 2 +77988 4014 focus on the hero 's odyssey from cowering poverty to courage and happiness 3 +77989 4014 focus on the hero 's odyssey 2 +77990 4014 on the hero 's odyssey 2 +77991 4014 the hero 's odyssey 3 +77992 4014 the hero 's 2 +77993 4014 from cowering poverty to courage and happiness 4 +77994 4014 cowering poverty to courage and happiness 2 +77995 4014 cowering poverty 2 +77996 4014 to courage and happiness 3 +77997 4014 courage and happiness 3 +77998 4015 Evelyn 's strong cast and surehanded direction make for a winning , heartwarming yarn . 3 +77999 4015 Evelyn 's strong cast and surehanded direction 3 +78000 4015 Evelyn 's 2 +78001 4015 strong cast and surehanded direction 4 +78002 4015 cast and surehanded direction 3 +78003 4015 and surehanded direction 4 +78004 4015 surehanded direction 3 +78005 4015 surehanded 3 +78006 4015 make for a winning , heartwarming yarn . 3 +78007 4015 make for a winning , heartwarming yarn 4 +78008 4015 for a winning , heartwarming yarn 3 +78009 4015 a winning , heartwarming yarn 4 +78010 4015 winning , heartwarming yarn 4 +78011 4015 , heartwarming yarn 3 +78012 4015 heartwarming yarn 3 +78013 4016 A visually flashy but narratively opaque and emotionally vapid exercise in style and mystification . 1 +78014 4016 A visually flashy but narratively opaque and emotionally vapid 1 +78015 4016 visually flashy but narratively opaque and emotionally vapid 1 +78016 4016 visually flashy but narratively opaque and 1 +78017 4016 visually flashy but narratively opaque 2 +78018 4016 visually flashy but 2 +78019 4016 visually flashy 3 +78020 4016 narratively opaque 2 +78021 4016 emotionally vapid 1 +78022 4016 exercise in style and mystification . 3 +78023 4016 exercise in style and mystification 3 +78024 4016 in style and mystification 2 +78025 4016 style and mystification 3 +78026 4016 mystification 2 +78027 4017 It 's enough to watch Huppert scheming , with her small , intelligent eyes as steady as any noir villain , and to enjoy the perfectly pitched web of tension that Chabrol spins . 3 +78028 4017 's enough to watch Huppert scheming , with her small , intelligent eyes as steady as any noir villain , and to enjoy the perfectly pitched web of tension that Chabrol spins . 3 +78029 4017 's enough to watch Huppert scheming , with her small , intelligent eyes as steady as any noir villain , and to enjoy the perfectly pitched web of tension that Chabrol spins 3 +78030 4017 enough to watch Huppert scheming , with her small , intelligent eyes as steady as any noir villain , and to enjoy the perfectly pitched web of tension that Chabrol spins 3 +78031 4017 to watch Huppert scheming , with her small , intelligent eyes as steady as any noir villain , and to enjoy the perfectly pitched web of tension that Chabrol spins 2 +78032 4017 to watch Huppert scheming , with her small , intelligent eyes as steady as any noir villain , and 3 +78033 4017 to watch Huppert scheming , with her small , intelligent eyes as steady as any noir villain , 2 +78034 4017 to watch Huppert scheming , with her small , intelligent eyes as steady as any noir villain 2 +78035 4017 watch Huppert scheming , with her small , intelligent eyes as steady as any noir villain 3 +78036 4017 watch Huppert scheming , with her small , intelligent eyes as steady 2 +78037 4017 watch Huppert scheming , with her small , intelligent eyes 2 +78038 4017 Huppert scheming , with her small , intelligent eyes 3 +78039 4017 Huppert scheming , 2 +78040 4017 Huppert scheming 2 +78041 4017 scheming 2 +78042 4017 with her small , intelligent eyes 3 +78043 4017 her small , intelligent eyes 3 +78044 4017 small , intelligent eyes 3 +78045 4017 , intelligent eyes 3 +78046 4017 intelligent eyes 2 +78047 4017 as steady 2 +78048 4017 as any noir villain 2 +78049 4017 any noir villain 2 +78050 4017 noir villain 2 +78051 4017 to enjoy the perfectly pitched web of tension that Chabrol spins 3 +78052 4017 enjoy the perfectly pitched web of tension that Chabrol spins 3 +78053 4017 enjoy the perfectly pitched web of tension 4 +78054 4017 the perfectly pitched web of tension 2 +78055 4017 the perfectly pitched web 3 +78056 4017 perfectly pitched web 3 +78057 4017 perfectly pitched 3 +78058 4017 of tension 2 +78059 4017 that Chabrol spins 2 +78060 4017 Chabrol spins 2 +78061 4018 Critics need a good laugh , too , and this too-extreme-for-TV rendition of the notorious MTV show delivers the outrageous , sickening , sidesplitting goods in steaming , visceral heaps . 2 +78062 4018 Critics need a good laugh , too , and this too-extreme-for-TV rendition of the notorious MTV show delivers the outrageous , sickening , sidesplitting goods in steaming , visceral heaps 2 +78063 4018 Critics need a good laugh , too , and 2 +78064 4018 Critics need a good laugh , too , 3 +78065 4018 Critics need a good laugh , too 2 +78066 4018 need a good laugh , too 3 +78067 4018 need a good laugh , 3 +78068 4018 need a good laugh 3 +78069 4018 a good laugh 3 +78070 4018 good laugh 4 +78071 4018 this too-extreme-for-TV rendition of the notorious MTV show delivers the outrageous , sickening , sidesplitting goods in steaming , visceral heaps 2 +78072 4018 this too-extreme-for-TV rendition of the notorious MTV show 2 +78073 4018 this too-extreme-for-TV rendition 2 +78074 4018 too-extreme-for-TV rendition 2 +78075 4018 too-extreme-for-TV 1 +78076 4018 rendition 2 +78077 4018 of the notorious MTV show 2 +78078 4018 the notorious MTV show 1 +78079 4018 notorious MTV show 2 +78080 4018 MTV show 2 +78081 4018 delivers the outrageous , sickening , sidesplitting goods in steaming , visceral heaps 2 +78082 4018 the outrageous , sickening , sidesplitting goods in steaming , visceral heaps 2 +78083 4018 the outrageous , sickening , sidesplitting goods 3 +78084 4018 outrageous , sickening , sidesplitting goods 3 +78085 4018 outrageous , sickening , sidesplitting 2 +78086 4018 , sickening , sidesplitting 2 +78087 4018 sickening , sidesplitting 1 +78088 4018 sickening 2 +78089 4018 , sidesplitting 3 +78090 4018 sidesplitting 3 +78091 4018 in steaming , visceral heaps 2 +78092 4018 steaming , visceral heaps 1 +78093 4018 steaming 2 +78094 4018 , visceral heaps 2 +78095 4018 visceral heaps 2 +78096 4018 heaps 3 +78097 4019 Britney 's performance can not be faulted . 2 +78098 4019 Britney 's performance 2 +78099 4019 can not be faulted . 3 +78100 4019 can not be faulted 2 +78101 4019 be faulted 2 +78102 4019 faulted 2 +78103 4020 It 's been 13 months and 295 preview screenings since I last walked out on a movie , but Resident Evil really earned my indignant , preemptive departure . 0 +78104 4020 It 's been 13 months and 295 preview screenings since I last walked out on a movie , but Resident Evil really earned my indignant , preemptive departure 1 +78105 4020 It 's been 13 months and 295 preview screenings since I last walked out on a movie , but 0 +78106 4020 It 's been 13 months and 295 preview screenings since I last walked out on a movie , 1 +78107 4020 It 's been 13 months and 295 preview screenings since I last walked out on a movie 0 +78108 4020 's been 13 months and 295 preview screenings since I last walked out on a movie 0 +78109 4020 been 13 months and 295 preview screenings since I last walked out on a movie 1 +78110 4020 been 13 months and 295 preview screenings 3 +78111 4020 13 months and 295 preview screenings 2 +78112 4020 13 months and 2 +78113 4020 13 months 2 +78114 4020 295 preview screenings 2 +78115 4020 295 2 +78116 4020 preview screenings 2 +78117 4020 preview 2 +78118 4020 screenings 2 +78119 4020 since I last walked out on a movie 2 +78120 4020 I last walked out on a movie 0 +78121 4020 last walked out on a movie 1 +78122 4020 walked out on a movie 0 +78123 4020 walked out 0 +78124 4020 on a movie 2 +78125 4020 Resident Evil really earned my indignant , preemptive departure 2 +78126 4020 really earned my indignant , preemptive departure 1 +78127 4020 earned my indignant , preemptive departure 0 +78128 4020 my indignant , preemptive departure 1 +78129 4020 indignant , preemptive departure 2 +78130 4020 indignant 1 +78131 4020 , preemptive departure 2 +78132 4020 preemptive departure 2 +78133 4021 Not a bad choice here , assuming that ... the air-conditioning in the theater is working properly . 2 +78134 4021 Not a bad choice here 3 +78135 4021 Not a bad choice 3 +78136 4021 a bad choice 2 +78137 4021 bad choice 0 +78138 4021 , assuming that ... the air-conditioning in the theater is working properly . 1 +78139 4021 assuming that ... the air-conditioning in the theater is working properly . 2 +78140 4021 assuming that ... the air-conditioning in the theater 1 +78141 4021 assuming 2 +78142 4021 that ... the air-conditioning in the theater 2 +78143 4021 that ... 2 +78144 4021 the air-conditioning in the theater 2 +78145 4021 the air-conditioning 2 +78146 4021 air-conditioning 2 +78147 4021 is working properly . 3 +78148 4021 is working properly 3 +78149 4021 working properly 3 +78150 4022 As warm as it is wise , deftly setting off uproarious humor with an underlying seriousness that sneaks up on the viewer , providing an experience that is richer than anticipated . 4 +78151 4022 As warm as it is wise 4 +78152 4022 warm as it is wise 3 +78153 4022 as it is wise 2 +78154 4022 it is wise 3 +78155 4022 is wise 3 +78156 4022 , deftly setting off uproarious humor with an underlying seriousness that sneaks up on the viewer , providing an experience that is richer than anticipated . 3 +78157 4022 deftly setting off uproarious humor with an underlying seriousness that sneaks up on the viewer , providing an experience that is richer than anticipated . 3 +78158 4022 deftly setting off 2 +78159 4022 setting off 3 +78160 4022 uproarious humor with an underlying seriousness that sneaks up on the viewer , providing an experience that is richer than anticipated . 3 +78161 4022 uproarious humor with an underlying seriousness that sneaks up on the viewer , providing an experience that is richer than anticipated 4 +78162 4022 uproarious humor 3 +78163 4022 uproarious 2 +78164 4022 with an underlying seriousness that sneaks up on the viewer , providing an experience that is richer than anticipated 3 +78165 4022 an underlying seriousness that sneaks up on the viewer , providing an experience that is richer than anticipated 3 +78166 4022 an underlying seriousness 2 +78167 4022 underlying seriousness 2 +78168 4022 underlying 2 +78169 4022 seriousness 2 +78170 4022 that sneaks up on the viewer , providing an experience that is richer than anticipated 3 +78171 4022 sneaks up on the viewer , providing an experience that is richer than anticipated 4 +78172 4022 sneaks up on the viewer , 2 +78173 4022 sneaks up on the viewer 3 +78174 4022 on the viewer 2 +78175 4022 providing an experience that is richer than anticipated 3 +78176 4022 an experience that is richer than anticipated 4 +78177 4022 that is richer than anticipated 3 +78178 4022 is richer than anticipated 3 +78179 4022 richer than anticipated 2 +78180 4022 than anticipated 2 +78181 4023 It 's clotted with heavy-handed symbolism , dime-store psychology and endless scenic shots that make 105 minutes seem twice as long . 0 +78182 4023 's clotted with heavy-handed symbolism , dime-store psychology and endless scenic shots that make 105 minutes seem twice as long . 0 +78183 4023 's clotted with heavy-handed symbolism , dime-store psychology and endless scenic shots that make 105 minutes seem twice as long 1 +78184 4023 clotted with heavy-handed symbolism , dime-store psychology and endless scenic shots that make 105 minutes seem twice as long 0 +78185 4023 clotted 1 +78186 4023 with heavy-handed symbolism , dime-store psychology and endless scenic shots that make 105 minutes seem twice as long 0 +78187 4023 heavy-handed symbolism , dime-store psychology and endless scenic shots that make 105 minutes seem twice as long 0 +78188 4023 heavy-handed symbolism , dime-store psychology and 1 +78189 4023 heavy-handed symbolism , dime-store psychology 2 +78190 4023 heavy-handed symbolism , 2 +78191 4023 heavy-handed symbolism 2 +78192 4023 symbolism 2 +78193 4023 dime-store psychology 0 +78194 4023 endless scenic shots that make 105 minutes seem twice as long 1 +78195 4023 endless scenic shots 2 +78196 4023 scenic shots 3 +78197 4023 scenic 3 +78198 4023 that make 105 minutes seem twice as long 0 +78199 4023 make 105 minutes seem twice as long 0 +78200 4023 105 minutes seem twice as long 2 +78201 4023 105 minutes 2 +78202 4023 105 2 +78203 4023 seem twice as long 0 +78204 4024 The characters are interesting and the relationship between Yosuke and Saeko is worth watching as it develops , but there 's not enough to the story to fill two hours . 2 +78205 4024 The characters are interesting and the relationship between Yosuke and Saeko is worth watching as it develops , but there 's not enough to the story to fill two hours 2 +78206 4024 The characters are interesting and the relationship between Yosuke and Saeko is worth watching as it develops , but 2 +78207 4024 The characters are interesting and the relationship between Yosuke and Saeko is worth watching as it develops , 3 +78208 4024 The characters are interesting and the relationship between Yosuke and Saeko is worth watching as it develops 3 +78209 4024 The characters are interesting and 3 +78210 4024 The characters are interesting 3 +78211 4024 are interesting 3 +78212 4024 the relationship between Yosuke and Saeko is worth watching as it develops 4 +78213 4024 the relationship between Yosuke and Saeko 2 +78214 4024 the relationship 2 +78215 4024 between Yosuke and Saeko 2 +78216 4024 Yosuke and Saeko 2 +78217 4024 Yosuke and 2 +78218 4024 Yosuke 2 +78219 4024 Saeko 2 +78220 4024 is worth watching as it develops 4 +78221 4024 watching as it develops 3 +78222 4024 as it develops 3 +78223 4024 it develops 2 +78224 4024 there 's not enough to the story to fill two hours 1 +78225 4024 's not enough to the story to fill two hours 1 +78226 4024 enough to the story to fill two hours 3 +78227 4024 to the story to fill two hours 2 +78228 4024 the story to fill two hours 2 +78229 4024 story to fill two hours 2 +78230 4024 to fill two hours 2 +78231 4024 fill two hours 2 +78232 4025 Offers absolutely nothing I had n't already seen . 1 +78233 4025 absolutely nothing I had n't already seen . 2 +78234 4025 nothing I had n't already seen . 1 +78235 4025 I had n't already seen . 2 +78236 4025 had n't already seen . 2 +78237 4025 had n't already seen 2 +78238 4025 had n't already 2 +78239 4026 recovers 2 +78240 4026 of the ugly American 1 +78241 4026 the ugly American 2 +78242 4026 ugly American 2 +78243 4026 abroad 2 +78244 4026 the too-frosty exterior Ms. Paltrow employs to authenticate her British persona is another liability 2 +78245 4026 the too-frosty exterior Ms. Paltrow employs to authenticate her British persona 2 +78246 4026 the too-frosty exterior 1 +78247 4026 too-frosty exterior 1 +78248 4026 too-frosty 1 +78249 4026 exterior 2 +78250 4026 Ms. Paltrow employs to authenticate her British persona 1 +78251 4026 Ms. Paltrow 2 +78252 4026 Paltrow 2 +78253 4026 employs to authenticate her British persona 3 +78254 4026 to authenticate her British persona 2 +78255 4026 authenticate her British persona 3 +78256 4026 authenticate 3 +78257 4026 her British persona 2 +78258 4026 British persona 2 +78259 4026 is another liability 1 +78260 4026 another liability 2 +78261 4026 liability 1 +78262 4027 The performances of the children , untrained in acting , have an honesty and dignity that breaks your heart . 3 +78263 4027 The performances of the children , untrained in acting , 2 +78264 4027 The performances of the children , untrained in acting 1 +78265 4027 The performances of the children , 2 +78266 4027 The performances of the children 2 +78267 4027 of the children 2 +78268 4027 untrained in acting 1 +78269 4027 untrained 2 +78270 4027 in acting 2 +78271 4027 have an honesty and dignity that breaks your heart . 3 +78272 4027 have an honesty and dignity that breaks your heart 4 +78273 4027 an honesty and dignity that breaks your heart 3 +78274 4027 an honesty and dignity 3 +78275 4027 honesty and dignity 3 +78276 4027 that breaks your heart 1 +78277 4028 Directors John Musker and Ron Clements , the team behind The Little Mermaid , have produced sparkling retina candy , but they are n't able to muster a lot of emotional resonance in the cold vacuum of space . 2 +78278 4028 Directors John Musker and Ron Clements , the team behind The Little Mermaid , have produced sparkling retina candy , but they are n't able to muster a lot of emotional resonance in the cold vacuum of space 2 +78279 4028 Directors John Musker and Ron Clements , the team behind The Little Mermaid , have produced sparkling retina candy , but 2 +78280 4028 Directors John Musker and Ron Clements , the team behind The Little Mermaid , have produced sparkling retina candy , 3 +78281 4028 Directors John Musker and Ron Clements , the team behind The Little Mermaid , have produced sparkling retina candy 3 +78282 4028 Directors John Musker and Ron Clements , the team behind The Little Mermaid , 2 +78283 4028 Directors John Musker and Ron Clements , the team behind The Little Mermaid 2 +78284 4028 Directors John Musker and Ron Clements , 2 +78285 4028 Directors John Musker and Ron Clements 2 +78286 4028 John Musker and Ron Clements 2 +78287 4028 Musker and Ron Clements 2 +78288 4028 Musker 2 +78289 4028 and Ron Clements 2 +78290 4028 Ron Clements 2 +78291 4028 Clements 2 +78292 4028 the team behind The Little Mermaid 2 +78293 4028 the team 2 +78294 4028 behind The Little Mermaid 2 +78295 4028 have produced sparkling retina candy 3 +78296 4028 produced sparkling retina candy 3 +78297 4028 sparkling retina candy 3 +78298 4028 retina candy 3 +78299 4028 retina 2 +78300 4028 they are n't able to muster a lot of emotional resonance in the cold vacuum of space 1 +78301 4028 are n't able to muster a lot of emotional resonance in the cold vacuum of space 2 +78302 4028 able to muster a lot of emotional resonance in the cold vacuum of space 3 +78303 4028 to muster a lot of emotional resonance in the cold vacuum of space 2 +78304 4028 muster a lot of emotional resonance in the cold vacuum of space 2 +78305 4028 muster a lot of emotional resonance 3 +78306 4028 a lot of emotional resonance 3 +78307 4028 of emotional resonance 3 +78308 4028 emotional resonance 2 +78309 4028 in the cold vacuum of space 2 +78310 4028 the cold vacuum of space 2 +78311 4028 the cold vacuum 2 +78312 4028 of space 2 +78313 4029 Like Brosnan 's performance , Evelyn comes from the heart . 4 +78314 4029 Like Brosnan 's performance 3 +78315 4029 Brosnan 's performance 2 +78316 4029 , Evelyn comes from the heart . 3 +78317 4029 Evelyn comes from the heart . 3 +78318 4029 comes from the heart . 3 +78319 4029 comes from the heart 3 +78320 4029 from the heart 2 +78321 4030 But the movie 's narrative hook is way too muddled to be an effectively chilling guilty pleasure . 1 +78322 4030 the movie 's narrative hook is way too muddled to be an effectively chilling guilty pleasure . 1 +78323 4030 the movie 's narrative hook 2 +78324 4030 narrative hook 2 +78325 4030 is way too muddled to be an effectively chilling guilty pleasure . 1 +78326 4030 is way too muddled to be an effectively chilling guilty pleasure 0 +78327 4030 is way too 2 +78328 4030 way too 2 +78329 4030 muddled to be an effectively chilling guilty pleasure 3 +78330 4030 to be an effectively chilling guilty pleasure 3 +78331 4030 be an effectively chilling guilty pleasure 3 +78332 4030 an effectively chilling guilty pleasure 3 +78333 4030 effectively chilling guilty pleasure 3 +78334 4030 effectively chilling 3 +78335 4031 This film was made by and for those folks who collect the serial killer cards and are fascinated by the mere suggestion of serial killers . 2 +78336 4031 was made by and for those folks who collect the serial killer cards and are fascinated by the mere suggestion of serial killers . 1 +78337 4031 was made by and for those folks who collect the serial killer cards and are fascinated by the mere suggestion of serial killers 2 +78338 4031 made by and for those folks who collect the serial killer cards and are fascinated by the mere suggestion of serial killers 1 +78339 4031 by and for those folks who collect the serial killer cards and are fascinated by the mere suggestion of serial killers 2 +78340 4031 by and 2 +78341 4031 for those folks who collect the serial killer cards and are fascinated by the mere suggestion of serial killers 2 +78342 4031 those folks who collect the serial killer cards and are fascinated by the mere suggestion of serial killers 2 +78343 4031 those folks 2 +78344 4031 who collect the serial killer cards and are fascinated by the mere suggestion of serial killers 2 +78345 4031 collect the serial killer cards and are fascinated by the mere suggestion of serial killers 2 +78346 4031 collect the serial killer cards and 2 +78347 4031 collect the serial killer cards 2 +78348 4031 collect 2 +78349 4031 the serial killer cards 2 +78350 4031 serial killer cards 2 +78351 4031 killer cards 2 +78352 4031 cards 2 +78353 4031 are fascinated by the mere suggestion of serial killers 3 +78354 4031 fascinated by the mere suggestion of serial killers 2 +78355 4031 by the mere suggestion of serial killers 2 +78356 4031 the mere suggestion of serial killers 3 +78357 4031 of serial killers 2 +78358 4031 serial killers 2 +78359 4031 killers 2 +78360 4032 So we got Ten Little Indians meets Friday the 13th by way of Clean and Sober , filmed on the set of Carpenter 's The Thing and loaded with actors you 're most likely to find on the next inevitable incarnation of The Love Boat . 1 +78361 4032 we got Ten Little Indians meets Friday the 13th by way of Clean and Sober , filmed on the set of Carpenter 's The Thing and loaded with actors you 're most likely to find on the next inevitable incarnation of The Love Boat . 1 +78362 4032 got Ten Little Indians meets Friday the 13th by way of Clean and Sober , filmed on the set of Carpenter 's The Thing and loaded with actors you 're most likely to find on the next inevitable incarnation of The Love Boat . 2 +78363 4032 got Ten Little Indians meets Friday the 13th by way of Clean and Sober , filmed on the set of Carpenter 's The Thing and loaded with actors you 're most likely to find on the next inevitable incarnation of The Love Boat 1 +78364 4032 Ten Little Indians meets Friday the 13th by way of Clean and Sober , filmed on the set of Carpenter 's The Thing and loaded with actors you 're most likely to find on the next inevitable incarnation of The Love Boat 1 +78365 4032 Ten Little Indians 2 +78366 4032 Little Indians 2 +78367 4032 meets Friday the 13th by way of Clean and Sober , filmed on the set of Carpenter 's The Thing and loaded with actors you 're most likely to find on the next inevitable incarnation of The Love Boat 1 +78368 4032 Friday the 13th by way of Clean and Sober , filmed on the set of Carpenter 's The Thing and loaded with actors you 're most likely to find on the next inevitable incarnation of The Love Boat 2 +78369 4032 Friday the 13th by way of Clean and Sober , 1 +78370 4032 Friday the 13th by way of Clean and Sober 2 +78371 4032 Friday the 13th by way 2 +78372 4032 Friday the 13th by 2 +78373 4032 Friday the 13th 3 +78374 4032 Friday the 2 +78375 4032 13th 2 +78376 4032 of Clean and Sober 3 +78377 4032 Clean and Sober 2 +78378 4032 Clean and 3 +78379 4032 Sober 2 +78380 4032 filmed on the set of Carpenter 's The Thing and loaded with actors you 're most likely to find on the next inevitable incarnation of The Love Boat 1 +78381 4032 filmed on the set of Carpenter 's The Thing and 2 +78382 4032 filmed on the set of Carpenter 's The Thing 2 +78383 4032 on the set of Carpenter 's The Thing 2 +78384 4032 the set of Carpenter 's The Thing 2 +78385 4032 the set 2 +78386 4032 of Carpenter 's The Thing 2 +78387 4032 Carpenter 's The Thing 2 +78388 4032 's The Thing 2 +78389 4032 loaded with actors you 're most likely to find on the next inevitable incarnation of The Love Boat 1 +78390 4032 with actors you 're most likely to find on the next inevitable incarnation of The Love Boat 1 +78391 4032 actors you 're most likely to find on the next inevitable incarnation of The Love Boat 1 +78392 4032 you 're most likely to find on the next inevitable incarnation of The Love Boat 2 +78393 4032 're most likely to find on the next inevitable incarnation of The Love Boat 1 +78394 4032 most likely to find on the next inevitable incarnation of The Love Boat 1 +78395 4032 likely to find on the next inevitable incarnation of The Love Boat 1 +78396 4032 to find on the next inevitable incarnation of The Love Boat 2 +78397 4032 find on the next inevitable incarnation of The Love Boat 2 +78398 4032 on the next inevitable incarnation of The Love Boat 2 +78399 4032 the next inevitable incarnation of The Love Boat 1 +78400 4032 the next inevitable incarnation 2 +78401 4032 next inevitable incarnation 2 +78402 4032 inevitable incarnation 2 +78403 4032 incarnation 2 +78404 4032 of The Love Boat 2 +78405 4032 The Love Boat 2 +78406 4032 Love Boat 2 +78407 4033 After an uncertain start , Murder hits and generally sustains a higher plateau with Bullock 's memorable first interrogation of Gosling . 3 +78408 4033 After an uncertain start 1 +78409 4033 an uncertain start 2 +78410 4033 uncertain start 2 +78411 4033 , Murder hits and generally sustains a higher plateau with Bullock 's memorable first interrogation of Gosling . 3 +78412 4033 Murder hits and generally sustains a higher plateau with Bullock 's memorable first interrogation of Gosling . 3 +78413 4033 hits and generally sustains a higher plateau with Bullock 's memorable first interrogation of Gosling . 3 +78414 4033 hits and generally sustains a higher plateau with Bullock 's memorable first interrogation of Gosling 3 +78415 4033 hits and 2 +78416 4033 generally sustains a higher plateau with Bullock 's memorable first interrogation of Gosling 3 +78417 4033 sustains a higher plateau with Bullock 's memorable first interrogation of Gosling 3 +78418 4033 sustains a higher plateau 3 +78419 4033 sustains 3 +78420 4033 a higher plateau 3 +78421 4033 higher plateau 2 +78422 4033 higher 3 +78423 4033 plateau 3 +78424 4033 with Bullock 's memorable first interrogation of Gosling 2 +78425 4033 Bullock 's memorable first interrogation of Gosling 3 +78426 4033 Bullock 's memorable first interrogation 3 +78427 4033 Bullock 's 2 +78428 4033 memorable first interrogation 3 +78429 4033 first interrogation 2 +78430 4033 interrogation 2 +78431 4033 of Gosling 2 +78432 4034 If I could have looked into my future and saw how bad this movie was , I would go back and choose to skip it . 0 +78433 4034 If I could have looked into my future and saw how bad this movie was 0 +78434 4034 I could have looked into my future and saw how bad this movie was 0 +78435 4034 could have looked into my future and saw how bad this movie was 0 +78436 4034 could have looked into my future and 2 +78437 4034 could have looked into my future 2 +78438 4034 have looked into my future 2 +78439 4034 looked into my future 2 +78440 4034 into my future 2 +78441 4034 my future 2 +78442 4034 saw how bad this movie was 0 +78443 4034 how bad this movie was 0 +78444 4034 this movie was 2 +78445 4034 , I would go back and choose to skip it . 0 +78446 4034 I would go back and choose to skip it . 0 +78447 4034 would go back and choose to skip it . 0 +78448 4034 would go back and choose to skip it 1 +78449 4034 go back and choose to skip it 1 +78450 4034 go back and 2 +78451 4034 choose to skip it 0 +78452 4034 to skip it 1 +78453 4034 skip it 0 +78454 4035 When one hears Harry Shearer is going to make his debut as a film director , one would hope for the best 3 +78455 4035 When one hears Harry Shearer is going to make his debut as a film director 2 +78456 4035 one hears Harry Shearer is going to make his debut as a film director 3 +78457 4035 hears Harry Shearer is going to make his debut as a film director 2 +78458 4035 Harry Shearer is going to make his debut as a film director 2 +78459 4035 Harry Shearer 2 +78460 4035 is going to make his debut as a film director 2 +78461 4035 going to make his debut as a film director 3 +78462 4035 to make his debut as a film director 2 +78463 4035 make his debut as a film director 2 +78464 4035 make his debut 2 +78465 4035 , one would hope for the best 3 +78466 4035 one would hope for the best 2 +78467 4035 would hope for the best 2 +78468 4035 hope for the best 2 +78469 4035 for the best 3 +78470 4036 An intoxicating experience . 4 +78471 4036 An intoxicating 3 +78472 4037 The movie worked for me right up to the final scene , and then it caved in . 2 +78473 4037 The movie worked for me right up to the final scene , and then it caved in 2 +78474 4037 The movie worked for me right up to the final scene , and 3 +78475 4037 The movie worked for me right up to the final scene , 3 +78476 4037 The movie worked for me right up to the final scene 2 +78477 4037 worked for me right up to the final scene 2 +78478 4037 worked for me right up 2 +78479 4037 worked for me 4 +78480 4037 for me 2 +78481 4037 to the final scene 2 +78482 4037 the final scene 2 +78483 4037 final scene 2 +78484 4037 then it caved in 2 +78485 4037 it caved in 0 +78486 4037 caved in 2 +78487 4037 caved 2 +78488 4038 Schnieder bounces around with limp wrists , wearing tight tummy tops and hip huggers , twirling his hair on his finger and assuming that 's enough to sustain laughs ... 1 +78489 4038 Schnieder 3 +78490 4038 bounces around with limp wrists , wearing tight tummy tops and hip huggers , twirling his hair on his finger and assuming that 's enough to sustain laughs ... 2 +78491 4038 bounces around with limp wrists , wearing tight tummy tops and hip huggers , twirling his hair on his finger and assuming that 's enough to sustain laughs 0 +78492 4038 bounces around with limp wrists , 2 +78493 4038 bounces around with limp wrists 1 +78494 4038 bounces around 2 +78495 4038 bounces 3 +78496 4038 with limp wrists 2 +78497 4038 limp wrists 2 +78498 4038 wrists 2 +78499 4038 wearing tight tummy tops and hip huggers , twirling his hair on his finger and assuming that 's enough to sustain laughs 2 +78500 4038 wearing tight tummy tops and hip huggers , twirling his hair on his finger and 2 +78501 4038 wearing tight tummy tops and hip huggers , twirling his hair on his finger 2 +78502 4038 wearing tight tummy tops and hip huggers , 2 +78503 4038 wearing tight tummy tops and hip huggers 2 +78504 4038 tight tummy tops and hip huggers 2 +78505 4038 tummy tops and hip huggers 2 +78506 4038 tummy 2 +78507 4038 tops and hip huggers 2 +78508 4038 tops 2 +78509 4038 and hip huggers 2 +78510 4038 hip huggers 2 +78511 4038 huggers 2 +78512 4038 twirling his hair on his finger 2 +78513 4038 twirling his hair 2 +78514 4038 twirling 2 +78515 4038 his hair 2 +78516 4038 on his finger 2 +78517 4038 his finger 2 +78518 4038 finger 2 +78519 4038 assuming that 's enough to sustain laughs 2 +78520 4038 that 's enough to sustain laughs 3 +78521 4038 's enough to sustain laughs 3 +78522 4038 enough to sustain laughs 3 +78523 4038 to sustain laughs 3 +78524 4038 sustain laughs 3 +78525 4039 The film is all over the place , really . 0 +78526 4039 is all over the place , really . 1 +78527 4039 is all over the place , really 1 +78528 4039 is all over the place , 2 +78529 4039 is all over the place 1 +78530 4039 all over the place 2 +78531 4039 over the place 2 +78532 4039 the place 2 +78533 4040 If this silly little cartoon can inspire a few kids not to grow up to be greedy bastards , more power to it . 2 +78534 4040 If this silly little cartoon can inspire a few kids not to grow up to be greedy 3 +78535 4040 this silly little cartoon can inspire a few kids not to grow up to be greedy 3 +78536 4040 this silly little cartoon 2 +78537 4040 silly little cartoon 3 +78538 4040 little cartoon 2 +78539 4040 can inspire a few kids not to grow up to be greedy 3 +78540 4040 inspire a few kids not to grow up to be greedy 3 +78541 4040 a few kids not to grow up to be greedy 2 +78542 4040 a few kids 2 +78543 4040 few kids 2 +78544 4040 not to grow up to be greedy 3 +78545 4040 to grow up to be greedy 2 +78546 4040 grow up to be greedy 2 +78547 4040 grow up 2 +78548 4040 to be greedy 1 +78549 4040 be greedy 1 +78550 4040 bastards , more power to it . 3 +78551 4040 bastards , more power to it 2 +78552 4040 bastards , 1 +78553 4040 bastards 2 +78554 4040 more power to it 2 +78555 4040 more power 3 +78556 4041 Despite the film 's bizarre developments , Hoffman keeps us riveted with every painful nuance , unexpected flashes of dark comedy and the character 's gripping humanity . 3 +78557 4041 Despite the film 's bizarre developments 2 +78558 4041 the film 's bizarre developments 2 +78559 4041 bizarre developments 3 +78560 4041 , Hoffman keeps us riveted with every painful nuance , unexpected flashes of dark comedy and the character 's gripping humanity . 3 +78561 4041 Hoffman keeps us riveted with every painful nuance , unexpected flashes of dark comedy and the character 's gripping humanity . 4 +78562 4041 keeps us riveted with every painful nuance , unexpected flashes of dark comedy and the character 's gripping humanity . 4 +78563 4041 keeps us riveted with every painful nuance , unexpected flashes of dark comedy and the character 's gripping humanity 3 +78564 4041 us riveted with every painful nuance , unexpected flashes of dark comedy and the character 's gripping humanity 3 +78565 4041 riveted with every painful nuance , unexpected flashes of dark comedy and the character 's gripping humanity 3 +78566 4041 with every painful nuance , unexpected flashes of dark comedy and the character 's gripping humanity 3 +78567 4041 every painful nuance , unexpected flashes of dark comedy and the character 's gripping humanity 2 +78568 4041 every painful nuance , unexpected flashes of dark comedy and 2 +78569 4041 every painful nuance , unexpected flashes of dark comedy 3 +78570 4041 every painful nuance , 1 +78571 4041 every painful nuance 2 +78572 4041 painful nuance 1 +78573 4041 unexpected flashes of dark comedy 3 +78574 4041 unexpected flashes 2 +78575 4041 of dark comedy 2 +78576 4041 the character 's gripping humanity 3 +78577 4041 gripping humanity 3 +78578 4042 The movie does n't think much of its characters , its protagonist , or of us . 1 +78579 4042 does n't think much of its characters , its protagonist , or of us . 1 +78580 4042 does n't think much of its characters , its protagonist , or of us 1 +78581 4042 think much of its characters , its protagonist , or of us 2 +78582 4042 think much 2 +78583 4042 of its characters , its protagonist , or of us 3 +78584 4042 of its characters , its protagonist , or 2 +78585 4042 of its characters , its protagonist , 2 +78586 4042 its characters , its protagonist , 2 +78587 4042 its characters , its protagonist 2 +78588 4042 its protagonist 2 +78589 4043 The film proves unrelentingly grim -- and equally engrossing . 3 +78590 4043 proves unrelentingly grim -- and equally engrossing . 3 +78591 4043 proves unrelentingly grim -- and equally engrossing 1 +78592 4043 unrelentingly grim -- and equally engrossing 3 +78593 4043 unrelentingly grim -- and 1 +78594 4043 unrelentingly grim -- 1 +78595 4043 unrelentingly grim 1 +78596 4043 unrelentingly 2 +78597 4043 equally engrossing 3 +78598 4045 A whole lot of fun and funny in the middle , though somewhat less hard-hitting at the start and finish . 3 +78599 4045 A whole lot of fun and funny in the middle , though somewhat less hard-hitting at the start and finish 3 +78600 4045 A whole lot of fun and funny in the middle , though somewhat less hard-hitting 3 +78601 4045 of fun and funny in the middle , though somewhat less hard-hitting 3 +78602 4045 fun and funny in the middle , though somewhat less hard-hitting 3 +78603 4045 fun and funny in the middle , though somewhat less 3 +78604 4045 fun and funny in the middle , though 4 +78605 4045 fun and funny in the middle , 4 +78606 4045 fun and funny in the middle 3 +78607 4045 fun and 3 +78608 4045 funny in the middle 3 +78609 4045 at the start and finish 2 +78610 4045 the start and finish 2 +78611 4045 start and finish 2 +78612 4045 start and 2 +78613 4046 The dose is strong and funny , for the first 15 minutes anyway ; after that , the potency wanes dramatically . 2 +78614 4046 The dose is strong and funny , for the first 15 minutes anyway ; after that , the potency wanes dramatically 1 +78615 4046 The dose is strong and funny , for the first 15 minutes anyway ; 2 +78616 4046 The dose is strong and funny , for the first 15 minutes anyway 1 +78617 4046 The dose 2 +78618 4046 is strong and funny , for the first 15 minutes anyway 2 +78619 4046 is strong and funny , for the first 15 minutes 2 +78620 4046 strong and funny , for the first 15 minutes 3 +78621 4046 strong and funny , 4 +78622 4046 strong and funny 4 +78623 4046 for the first 15 minutes 2 +78624 4046 the first 15 minutes 2 +78625 4046 first 15 minutes 2 +78626 4046 after that , the potency wanes dramatically 1 +78627 4046 , the potency wanes dramatically 1 +78628 4046 the potency wanes dramatically 1 +78629 4046 wanes dramatically 1 +78630 4047 A sustained fest of self-congratulation between actor and director that leaves scant place for the viewer . 1 +78631 4047 sustained fest of self-congratulation between actor and director that leaves scant place for the viewer . 1 +78632 4047 sustained fest of self-congratulation between actor and director that leaves scant place for the viewer 0 +78633 4047 fest of self-congratulation between actor and director that leaves scant place for the viewer 1 +78634 4047 fest of self-congratulation between actor and director 2 +78635 4047 of self-congratulation between actor and director 1 +78636 4047 self-congratulation between actor and director 2 +78637 4047 between actor and director 2 +78638 4047 actor and director 2 +78639 4047 actor and 2 +78640 4047 that leaves scant place for the viewer 2 +78641 4047 leaves scant place for the viewer 1 +78642 4047 scant place for the viewer 1 +78643 4047 scant place 1 +78644 4047 scant 1 +78645 4047 for the viewer 2 +78646 4048 ... feels as if -LRB- there 's -RRB- a choke leash around your neck so director Nick Cassavetes can give it a good , hard yank whenever he wants you to feel something . 0 +78647 4048 feels as if -LRB- there 's -RRB- a choke leash around your neck so director Nick Cassavetes can give it a good , hard yank whenever he wants you to feel something . 0 +78648 4048 feels as if -LRB- there 's -RRB- a choke leash around your neck so director Nick Cassavetes can give it a good , hard yank whenever he wants you to feel something 0 +78649 4048 as if -LRB- there 's -RRB- a choke leash around your neck so director Nick Cassavetes can give it a good , hard yank whenever he wants you to feel something 1 +78650 4048 if -LRB- there 's -RRB- a choke leash around your neck so director Nick Cassavetes can give it a good , hard yank whenever he wants you to feel something 2 +78651 4048 -LRB- there 's -RRB- a choke leash around your neck so director Nick Cassavetes can give it a good , hard yank whenever he wants you to feel something 2 +78652 4048 -LRB- there 's -RRB- 2 +78653 4048 there 's -RRB- 2 +78654 4048 there 's 2 +78655 4048 a choke leash around your neck so director Nick Cassavetes can give it a good , hard yank whenever he wants you to feel something 2 +78656 4048 a choke leash around your neck so director Nick Cassavetes 1 +78657 4048 a choke leash 1 +78658 4048 choke leash 2 +78659 4048 choke 1 +78660 4048 around your neck so director Nick Cassavetes 2 +78661 4048 your neck so director Nick Cassavetes 2 +78662 4048 so director Nick Cassavetes 2 +78663 4048 director Nick Cassavetes 2 +78664 4048 Nick Cassavetes 2 +78665 4048 Nick 2 +78666 4048 can give it a good , hard yank whenever he wants you to feel something 2 +78667 4048 give it a good , hard yank whenever he wants you to feel something 2 +78668 4048 a good , hard yank whenever he wants you to feel something 2 +78669 4048 a good , hard yank 3 +78670 4048 good , hard yank 2 +78671 4048 , hard yank 2 +78672 4048 hard yank 2 +78673 4048 yank 3 +78674 4048 whenever he wants you to feel something 2 +78675 4048 he wants you to feel something 3 +78676 4048 wants you to feel something 2 +78677 4048 you to feel something 2 +78678 4048 to feel something 2 +78679 4048 feel something 2 +78680 4049 It 's bright , pristine style and bold colors make it as much fun as reading an oversized picture book before bedtime . 3 +78681 4049 It 's bright 2 +78682 4049 's bright 3 +78683 4049 , pristine style and bold colors make it as much fun as reading an oversized picture book before bedtime . 3 +78684 4049 pristine style and bold colors make it as much fun as reading an oversized picture book before bedtime . 2 +78685 4049 pristine style and bold colors 3 +78686 4049 pristine 3 +78687 4049 style and bold colors 3 +78688 4049 and bold colors 2 +78689 4049 bold colors 3 +78690 4049 make it as much fun as reading an oversized picture book before bedtime . 3 +78691 4049 make it as much fun as reading an oversized picture book before bedtime 3 +78692 4049 make it as much fun 4 +78693 4049 as much fun 3 +78694 4049 as reading an oversized picture book before bedtime 2 +78695 4049 reading an oversized picture book before bedtime 3 +78696 4049 reading an oversized picture book 2 +78697 4049 an oversized picture book 2 +78698 4049 oversized picture book 2 +78699 4049 oversized 2 +78700 4049 picture book 2 +78701 4049 before bedtime 2 +78702 4049 bedtime 2 +78703 4050 In the process of trimming the movie to an expeditious 84 minutes , director Roger Kumble seems to have dumped a whole lot of plot in favor of ... outrageous gags . 1 +78704 4050 In the process of trimming the movie to an expeditious 84 minutes 2 +78705 4050 the process of trimming the movie to an expeditious 84 minutes 2 +78706 4050 of trimming the movie to an expeditious 84 minutes 2 +78707 4050 trimming the movie to an expeditious 84 minutes 2 +78708 4050 trimming the movie 2 +78709 4050 trimming 2 +78710 4050 to an expeditious 84 minutes 2 +78711 4050 an expeditious 84 minutes 2 +78712 4050 expeditious 84 minutes 2 +78713 4050 expeditious 2 +78714 4050 , director Roger Kumble seems to have dumped a whole lot of plot in favor of ... outrageous gags . 1 +78715 4050 director Roger Kumble seems to have dumped a whole lot of plot in favor of ... outrageous gags . 1 +78716 4050 director Roger Kumble 2 +78717 4050 Roger Kumble 2 +78718 4050 Kumble 2 +78719 4050 seems to have dumped a whole lot of plot in favor of ... outrageous gags . 1 +78720 4050 seems to have dumped a whole lot of plot in favor of ... outrageous gags 1 +78721 4050 to have dumped a whole lot of plot in favor of ... outrageous gags 1 +78722 4050 have dumped a whole lot of plot in favor of ... outrageous gags 1 +78723 4050 dumped a whole lot of plot in favor of ... outrageous gags 1 +78724 4050 dumped a whole lot of plot in favor of ... 2 +78725 4050 dumped a whole lot of plot in favor of 1 +78726 4050 dumped a whole lot of plot 1 +78727 4050 dumped 1 +78728 4050 a whole lot of plot 2 +78729 4050 in favor of 2 +78730 4050 favor of 2 +78731 4050 outrageous gags 2 +78732 4051 Bad and baffling from the get-go . 0 +78733 4051 Bad and baffling from the get-go 0 +78734 4051 Bad and baffling 0 +78735 4051 Bad and 1 +78736 4051 from the get-go 2 +78737 4051 the get-go 2 +78738 4051 get-go 2 +78739 4052 A big , loud , bang-the-drum bore . 1 +78740 4052 A big , loud , bang-the-drum 2 +78741 4052 big , loud , bang-the-drum 2 +78742 4052 , loud , bang-the-drum 3 +78743 4052 loud , bang-the-drum 1 +78744 4052 , bang-the-drum 2 +78745 4052 bang-the-drum 2 +78746 4053 So riddled with unanswered questions that it requires gargantuan leaps of faith just to watch it plod along . 2 +78747 4053 riddled with unanswered questions that it requires gargantuan leaps of faith just to watch it plod along . 1 +78748 4053 riddled with unanswered questions that it requires gargantuan leaps of faith just to watch it 0 +78749 4053 riddled 2 +78750 4053 with unanswered questions that it requires gargantuan leaps of faith just to watch it 0 +78751 4053 unanswered questions that it requires gargantuan leaps of faith just to watch it 1 +78752 4053 unanswered questions 2 +78753 4053 unanswered 2 +78754 4053 that it requires gargantuan leaps of faith just to watch it 1 +78755 4053 it requires gargantuan leaps of faith just to watch it 1 +78756 4053 requires gargantuan leaps of faith just to watch it 0 +78757 4053 gargantuan leaps of faith just to watch it 1 +78758 4053 gargantuan leaps of faith just 2 +78759 4053 gargantuan leaps 2 +78760 4053 gargantuan 2 +78761 4053 of faith just 3 +78762 4053 faith just 2 +78763 4053 to watch it 2 +78764 4053 watch it 2 +78765 4053 plod along . 2 +78766 4053 plod along 2 +78767 4054 You leave feeling like you 've endured a long workout without your pulse ever racing . 1 +78768 4054 leave feeling like you 've endured a long workout without your pulse ever racing . 1 +78769 4054 leave feeling like you 've endured a long workout without your pulse ever racing 3 +78770 4054 feeling like you 've endured a long workout without your pulse ever racing 2 +78771 4054 like you 've endured a long workout without your pulse ever racing 2 +78772 4054 you 've endured a long workout without your pulse ever racing 3 +78773 4054 've endured a long workout without your pulse ever racing 2 +78774 4054 endured a long workout without your pulse ever racing 2 +78775 4054 endured a long workout 2 +78776 4054 endured 2 +78777 4054 a long workout 2 +78778 4054 long workout 3 +78779 4054 without your pulse ever racing 1 +78780 4054 your pulse ever racing 3 +78781 4054 your pulse 2 +78782 4054 ever racing 2 +78783 4054 racing 2 +78784 4055 An inept , tedious spoof of '70s kung fu pictures , it contains almost enough chuckles for a three-minute sketch , and no more . 0 +78785 4055 An inept , tedious spoof of '70s kung fu pictures 0 +78786 4055 An inept , tedious spoof of '70s 1 +78787 4055 An inept , tedious spoof 0 +78788 4055 inept , tedious spoof 2 +78789 4055 inept , tedious 0 +78790 4055 , tedious 1 +78791 4055 of '70s 2 +78792 4055 kung fu pictures 2 +78793 4055 fu pictures 2 +78794 4055 , it contains almost enough chuckles for a three-minute sketch , and no more . 1 +78795 4055 it contains almost enough chuckles for a three-minute sketch , and no more . 1 +78796 4055 contains almost enough chuckles for a three-minute sketch , and no more . 1 +78797 4055 contains almost enough chuckles for a three-minute sketch , and no more 2 +78798 4055 almost enough chuckles for a three-minute sketch , and no more 1 +78799 4055 almost enough chuckles for a three-minute sketch , and 1 +78800 4055 almost enough chuckles for a three-minute sketch , 2 +78801 4055 almost enough chuckles for a three-minute sketch 2 +78802 4055 enough chuckles for a three-minute sketch 1 +78803 4055 chuckles for a three-minute sketch 2 +78804 4055 for a three-minute sketch 2 +78805 4055 a three-minute sketch 2 +78806 4055 three-minute sketch 2 +78807 4055 three-minute 2 +78808 4056 This is a movie that refreshes the mind and spirit along with the body , so original is its content , look , and style . 4 +78809 4056 This is a movie that refreshes the mind and spirit along with the body , so original is its content , look , and style 4 +78810 4056 This is a movie that refreshes the mind and spirit along with the body , so 4 +78811 4056 This is a movie that refreshes the mind and spirit along with the body , 4 +78812 4056 This is a movie that refreshes the mind and spirit along with the body 4 +78813 4056 is a movie that refreshes the mind and spirit along with the body 4 +78814 4056 a movie that refreshes the mind and spirit along with the body 3 +78815 4056 that refreshes the mind and spirit along with the body 3 +78816 4056 refreshes the mind and spirit along with the body 4 +78817 4056 refreshes the mind and spirit along 4 +78818 4056 refreshes the mind and spirit 4 +78819 4056 refreshes 3 +78820 4056 the mind and spirit 2 +78821 4056 mind and spirit 3 +78822 4056 mind and 2 +78823 4056 with the body 2 +78824 4056 the body 2 +78825 4056 original is its content , look , and style 3 +78826 4056 is its content , look , and style 2 +78827 4056 its content , look , and style 2 +78828 4056 its content , look , and 2 +78829 4056 its content , look , 2 +78830 4056 its content , look 2 +78831 4056 its content , 2 +78832 4056 its content 2 +78833 4057 Maybe Thomas Wolfe was right : You ca n't go home again . 2 +78834 4057 Maybe Thomas Wolfe was right : You ca n't go home again 2 +78835 4057 Maybe Thomas Wolfe was right : 2 +78836 4057 Maybe Thomas Wolfe was right 2 +78837 4057 Thomas Wolfe was right 2 +78838 4057 Thomas Wolfe 2 +78839 4057 Wolfe 2 +78840 4057 was right 2 +78841 4057 You ca n't go home again 2 +78842 4057 ca n't go home again 1 +78843 4057 go home again 2 +78844 4057 go home 2 +78845 4058 The dramatic scenes are frequently unintentionally funny , and the action sequences -- clearly the main event -- are surprisingly uninvolving . 1 +78846 4058 The dramatic scenes are frequently unintentionally funny , and the action sequences -- clearly the main event -- are surprisingly uninvolving 1 +78847 4058 The dramatic scenes are frequently unintentionally funny , and 1 +78848 4058 The dramatic scenes are frequently unintentionally funny , 1 +78849 4058 The dramatic scenes are frequently unintentionally funny 2 +78850 4058 The dramatic scenes 2 +78851 4058 dramatic scenes 2 +78852 4058 are frequently unintentionally funny 2 +78853 4058 are frequently unintentionally 2 +78854 4058 frequently unintentionally 2 +78855 4058 the action sequences -- clearly the main event -- are surprisingly uninvolving 0 +78856 4058 the action sequences -- clearly the main event -- 3 +78857 4058 the action sequences 2 +78858 4058 -- clearly the main event -- 2 +78859 4058 clearly the main event -- 2 +78860 4058 the main event -- 2 +78861 4058 the main event 2 +78862 4058 main event 2 +78863 4058 are surprisingly uninvolving 2 +78864 4058 surprisingly uninvolving 1 +78865 4058 uninvolving 1 +78866 4059 The movie has a script -LRB- by Paul Pender -RRB- made of wood , and it 's relentlessly folksy , a procession of stagy set pieces stacked with binary oppositions . 0 +78867 4059 The movie has a script -LRB- by Paul Pender -RRB- made of wood , and it 's relentlessly folksy , a procession of stagy set pieces stacked with binary oppositions 1 +78868 4059 The movie has a script -LRB- by Paul Pender -RRB- made of wood , and 1 +78869 4059 The movie has a script -LRB- by Paul Pender -RRB- made of wood , 1 +78870 4059 The movie has a script -LRB- by Paul Pender -RRB- made of wood 2 +78871 4059 has a script -LRB- by Paul Pender -RRB- made of wood 1 +78872 4059 a script -LRB- by Paul Pender -RRB- made of wood 1 +78873 4059 a script -LRB- by Paul Pender -RRB- 2 +78874 4059 -LRB- by Paul Pender -RRB- 2 +78875 4059 by Paul Pender -RRB- 2 +78876 4059 by Paul Pender 2 +78877 4059 Paul Pender 2 +78878 4059 Pender 2 +78879 4059 made of wood 2 +78880 4059 of wood 2 +78881 4059 wood 2 +78882 4059 it 's relentlessly folksy , a procession of stagy set pieces stacked with binary oppositions 1 +78883 4059 's relentlessly folksy , a procession of stagy set pieces stacked with binary oppositions 1 +78884 4059 's relentlessly folksy , 2 +78885 4059 's relentlessly folksy 1 +78886 4059 relentlessly folksy 1 +78887 4059 folksy 2 +78888 4059 a procession of stagy set pieces stacked with binary oppositions 2 +78889 4059 a procession 2 +78890 4059 of stagy set pieces stacked with binary oppositions 1 +78891 4059 stagy set pieces stacked with binary oppositions 2 +78892 4059 stagy set pieces 2 +78893 4059 stagy set 2 +78894 4059 stacked with binary oppositions 2 +78895 4059 stacked 2 +78896 4059 with binary oppositions 2 +78897 4059 binary oppositions 2 +78898 4059 binary 2 +78899 4059 oppositions 2 +78900 4060 After seeing the film , I can tell you that there 's no other reason why anyone should bother remembering it . 0 +78901 4060 After seeing the film 2 +78902 4060 seeing the film 2 +78903 4060 , I can tell you that there 's no other reason why anyone should bother remembering it . 0 +78904 4060 I can tell you that there 's no other reason why anyone should bother remembering it . 0 +78905 4060 can tell you that there 's no other reason why anyone should bother remembering it . 1 +78906 4060 can tell you that there 's no other reason why anyone should bother remembering it 1 +78907 4060 tell you that there 's no other reason why anyone should bother remembering it 1 +78908 4060 that there 's no other reason why anyone should bother remembering it 1 +78909 4060 there 's no other reason why anyone should bother remembering it 0 +78910 4060 's no other reason why anyone should bother remembering it 1 +78911 4060 no other reason why anyone should bother remembering it 1 +78912 4060 no other reason 2 +78913 4060 other reason 2 +78914 4060 why anyone should bother remembering it 1 +78915 4060 anyone should bother remembering it 2 +78916 4060 should bother remembering it 2 +78917 4060 bother remembering it 2 +78918 4060 remembering it 2 +78919 4061 It 's supposed to be a humorous , all-too-human look at how hope can breed a certain kind of madness -- and strength -- but it never quite adds up . 2 +78920 4061 It 's supposed to be a humorous , all-too-human look at how hope can breed a certain kind of madness -- and strength -- but it never quite adds up 1 +78921 4061 It 's supposed to be a humorous , all-too-human look at how hope can breed a certain kind of madness -- and strength -- 1 +78922 4061 It 's supposed to be a humorous , all-too-human look at how hope can breed a certain kind of madness -- and strength 2 +78923 4061 's supposed to be a humorous , all-too-human look at how hope can breed a certain kind of madness -- and strength 2 +78924 4061 supposed to be a humorous , all-too-human look at how hope can breed a certain kind of madness -- and strength 1 +78925 4061 to be a humorous , all-too-human look at how hope can breed a certain kind of madness -- and strength 2 +78926 4061 be a humorous , all-too-human look at how hope can breed a certain kind of madness -- and strength 2 +78927 4061 a humorous , all-too-human look at how hope can breed a certain kind of madness -- and strength 4 +78928 4061 a humorous , all-too-human look 3 +78929 4061 humorous , all-too-human look 4 +78930 4061 , all-too-human look 2 +78931 4061 all-too-human look 2 +78932 4061 all-too-human 2 +78933 4061 at how hope can breed a certain kind of madness -- and strength 3 +78934 4061 how hope can breed a certain kind of madness -- and strength 3 +78935 4061 hope can breed a certain kind of madness -- and strength 2 +78936 4061 can breed a certain kind of madness -- and strength 2 +78937 4061 breed a certain kind of madness -- and strength 3 +78938 4061 breed 2 +78939 4061 a certain kind of madness -- and strength 2 +78940 4061 a certain kind 2 +78941 4061 certain kind 2 +78942 4061 of madness -- and strength 2 +78943 4061 madness -- and strength 3 +78944 4061 -- and strength 2 +78945 4061 but it never quite adds up 1 +78946 4061 it never quite adds up 1 +78947 4061 never quite adds up 1 +78948 4062 There are moments of real pleasure to be found in Sara Sugarman 's whimsical comedy Very Annie-Mary but not enough to sustain the film . 2 +78949 4062 are moments of real pleasure to be found in Sara Sugarman 's whimsical comedy Very Annie-Mary but not enough to sustain the film . 2 +78950 4062 are moments of real pleasure to be found in Sara Sugarman 's whimsical comedy Very Annie-Mary but not enough to sustain the film 2 +78951 4062 moments of real pleasure to be found in Sara Sugarman 's whimsical comedy Very Annie-Mary but not enough to sustain the film 2 +78952 4062 moments of real pleasure 3 +78953 4062 of real pleasure 3 +78954 4062 to be found in Sara Sugarman 's whimsical comedy Very Annie-Mary but not enough to sustain the film 2 +78955 4062 be found in Sara Sugarman 's whimsical comedy Very Annie-Mary but not enough to sustain the film 1 +78956 4062 found in Sara Sugarman 's whimsical comedy Very Annie-Mary but not enough to sustain the film 2 +78957 4062 found in Sara Sugarman 's whimsical comedy Very Annie-Mary but not enough 2 +78958 4062 in Sara Sugarman 's whimsical comedy Very Annie-Mary but not enough 2 +78959 4062 Sara Sugarman 's whimsical comedy Very Annie-Mary but not enough 3 +78960 4062 Sara Sugarman 's whimsical comedy Very Annie-Mary but not 3 +78961 4062 Sara Sugarman 's whimsical comedy Very Annie-Mary 3 +78962 4062 Sara Sugarman 's whimsical comedy 3 +78963 4062 Sara Sugarman 's 2 +78964 4062 Sugarman 's 2 +78965 4062 whimsical comedy 3 +78966 4062 Very Annie-Mary 2 +78967 4062 Annie-Mary 2 +78968 4062 to sustain the film 2 +78969 4062 sustain the film 2 +78970 4063 The script is high on squaddie banter , low on shocks . 3 +78971 4063 is high on squaddie banter , low on shocks . 2 +78972 4063 is high on squaddie banter , low on shocks 2 +78973 4063 is high on squaddie banter , low 1 +78974 4063 is high on squaddie banter , 1 +78975 4063 is high on squaddie banter 1 +78976 4063 is high 2 +78977 4063 on squaddie banter 2 +78978 4063 squaddie banter 2 +78979 4063 squaddie 2 +78980 4063 on shocks 2 +78981 4064 As directed by Dani Kouyate of Burkina Faso , Sia lacks visual flair . 2 +78982 4064 As directed by Dani Kouyate of Burkina Faso 2 +78983 4064 directed by Dani Kouyate of Burkina Faso 2 +78984 4064 by Dani Kouyate of Burkina Faso 2 +78985 4064 Dani Kouyate of Burkina Faso 2 +78986 4064 Dani Kouyate 2 +78987 4064 of Burkina Faso 2 +78988 4064 Burkina Faso 2 +78989 4064 Burkina 2 +78990 4064 Faso 2 +78991 4064 , Sia lacks visual flair . 1 +78992 4064 Sia lacks visual flair . 1 +78993 4064 Sia 3 +78994 4064 lacks visual flair . 1 +78995 4064 lacks visual flair 1 +78996 4065 Spinning a web of dazzling entertainment may be overstating it , but `` Spider-Man '' certainly delivers the goods . 4 +78997 4065 Spinning a web of dazzling entertainment may be overstating it , but `` Spider-Man '' certainly delivers the goods 4 +78998 4065 Spinning a web of dazzling entertainment may be overstating it , but 4 +78999 4065 Spinning a web of dazzling entertainment may be overstating it , 3 +79000 4065 Spinning a web of dazzling entertainment may be overstating it 3 +79001 4065 Spinning a web of dazzling entertainment 4 +79002 4065 a web of dazzling entertainment 4 +79003 4065 a web 2 +79004 4065 of dazzling entertainment 4 +79005 4065 dazzling entertainment 4 +79006 4065 may be overstating it 2 +79007 4065 be overstating it 2 +79008 4065 overstating it 2 +79009 4065 overstating 1 +79010 4065 `` Spider-Man '' certainly delivers the goods 4 +79011 4065 `` Spider-Man '' certainly 3 +79012 4065 Spider-Man '' certainly 2 +79013 4065 Spider-Man '' 2 +79014 4065 delivers the goods 3 +79015 4065 the goods 3 +79016 4066 `` Solaris '' is a shapeless inconsequential move relying on the viewer to do most of the work . 0 +79017 4066 Solaris '' is a shapeless inconsequential move relying on the viewer to do most of the work . 0 +79018 4066 '' is a shapeless inconsequential move relying on the viewer to do most of the work . 0 +79019 4066 is a shapeless inconsequential move relying on the viewer to do most of the work . 1 +79020 4066 is a shapeless inconsequential move relying on the viewer to do most of the work 2 +79021 4066 a shapeless inconsequential move relying on the viewer to do most of the work 2 +79022 4066 a shapeless inconsequential move 2 +79023 4066 shapeless inconsequential move 0 +79024 4066 inconsequential move 1 +79025 4066 relying on the viewer to do most of the work 1 +79026 4066 relying on the viewer 2 +79027 4066 to do most of the work 2 +79028 4066 do most of the work 2 +79029 4066 most of the work 3 +79030 4067 It 's fitfully funny but never really takes off . 2 +79031 4067 's fitfully funny but never really takes off . 1 +79032 4067 's fitfully funny but never really takes off 1 +79033 4067 's fitfully funny but never 3 +79034 4067 's fitfully funny but 3 +79035 4067 's fitfully funny 3 +79036 4067 fitfully funny 3 +79037 4067 fitfully 2 +79038 4067 really takes off 3 +79039 4068 If you 're a Crocodile Hunter fan , you 'll enjoy at least the `` real '' portions of the film . 2 +79040 4068 If you 're a Crocodile Hunter fan 3 +79041 4068 you 're a Crocodile Hunter fan 2 +79042 4068 're a Crocodile Hunter fan 2 +79043 4068 a Crocodile Hunter fan 2 +79044 4068 Crocodile Hunter fan 2 +79045 4068 Crocodile 2 +79046 4068 Hunter fan 2 +79047 4068 Hunter 2 +79048 4068 , you 'll enjoy at least the `` real '' portions of the film . 3 +79049 4068 you 'll enjoy at least the `` real '' portions of the film . 3 +79050 4068 'll enjoy at least the `` real '' portions of the film . 2 +79051 4068 'll enjoy at least the `` real '' portions of the film 2 +79052 4068 enjoy at least the `` real '' portions of the film 2 +79053 4068 enjoy at least 3 +79054 4068 the `` real '' portions of the film 2 +79055 4068 the `` real '' portions 2 +79056 4068 `` real '' portions 2 +79057 4068 real '' portions 2 +79058 4068 '' portions 2 +79059 4069 A compelling story of musical passion against governmental odds . 3 +79060 4069 A compelling story of musical passion against governmental odds 4 +79061 4069 A compelling story of musical passion 3 +79062 4069 A compelling story 4 +79063 4069 of musical passion 3 +79064 4069 musical passion 3 +79065 4069 against governmental odds 1 +79066 4069 governmental odds 3 +79067 4069 governmental 2 +79068 4070 A riveting story well told . 4 +79069 4070 A riveting story 3 +79070 4070 riveting story 3 +79071 4070 well told . 3 +79072 4070 told . 2 +79073 4071 Um , no. . 2 +79074 4071 Um , no. 0 +79075 4071 Um , 2 +79076 4072 He makes you realize that deep inside righteousness can be found a tough beauty . 4 +79077 4072 makes you realize that deep inside righteousness can be found a tough beauty . 3 +79078 4072 makes you realize that deep inside righteousness can be found a tough beauty 3 +79079 4072 you realize that deep inside righteousness can be found a tough beauty 3 +79080 4072 realize that deep inside righteousness can be found a tough beauty 3 +79081 4072 that deep inside righteousness can be found a tough beauty 3 +79082 4072 deep inside righteousness can be found a tough beauty 3 +79083 4072 deep inside righteousness 3 +79084 4072 inside righteousness 3 +79085 4072 righteousness 2 +79086 4072 can be found a tough beauty 2 +79087 4072 be found a tough beauty 3 +79088 4072 found a tough beauty 3 +79089 4072 a tough beauty 2 +79090 4072 tough beauty 3 +79091 4073 Features what is surely the funniest and most accurate depiction of writer 's block ever . 4 +79092 4073 Features what is surely the funniest and most accurate depiction of writer 2 +79093 4073 what is surely the funniest and most accurate depiction of writer 3 +79094 4073 is surely the funniest and most accurate depiction of writer 4 +79095 4073 is surely 3 +79096 4073 the funniest and most accurate depiction of writer 3 +79097 4073 the funniest and most accurate depiction 3 +79098 4073 funniest and most accurate depiction 4 +79099 4073 funniest and most accurate 4 +79100 4073 funniest and 3 +79101 4073 most accurate 2 +79102 4073 of writer 2 +79103 4073 's block ever . 2 +79104 4073 's block ever 2 +79105 4073 block ever 2 +79106 4073 block 2 +79107 4074 The movie is a negligible work of manipulation , an exploitation piece doing its usual worst to guilt-trip parents . 1 +79108 4074 is a negligible work of manipulation , an exploitation piece doing its usual worst to guilt-trip parents . 2 +79109 4074 is a negligible work of manipulation , an exploitation piece doing its usual worst to guilt-trip parents 1 +79110 4074 a negligible work of manipulation , an exploitation piece doing its usual worst to guilt-trip parents 1 +79111 4074 a negligible work 1 +79112 4074 negligible work 1 +79113 4074 negligible 1 +79114 4074 of manipulation , an exploitation piece doing its usual worst to guilt-trip parents 1 +79115 4074 manipulation , an exploitation piece doing its usual worst to guilt-trip parents 1 +79116 4074 manipulation , 1 +79117 4074 an exploitation piece doing its usual worst to guilt-trip parents 1 +79118 4074 an exploitation piece 2 +79119 4074 exploitation piece 1 +79120 4074 doing its usual worst to guilt-trip parents 1 +79121 4074 doing its usual worst 2 +79122 4074 its usual worst 1 +79123 4074 usual worst 1 +79124 4074 to guilt-trip parents 1 +79125 4074 guilt-trip parents 2 +79126 4074 guilt-trip 1 +79127 4075 Well-meaning to a fault , Antwone Fisher manages the dubious feat of turning one man 's triumph of will into everyman 's romance comedy . 2 +79128 4075 Well-meaning to a fault 2 +79129 4075 , Antwone Fisher manages the dubious feat of turning one man 's triumph of will into everyman 's romance comedy . 2 +79130 4075 Antwone Fisher manages the dubious feat of turning one man 's triumph of will into everyman 's romance comedy . 4 +79131 4075 manages the dubious feat of turning one man 's triumph of will into everyman 's romance comedy . 3 +79132 4075 manages the dubious feat of turning one man 's triumph of will into everyman 's romance comedy 3 +79133 4075 the dubious feat of turning one man 's triumph of will into everyman 's romance comedy 3 +79134 4075 the dubious feat 2 +79135 4075 dubious feat 2 +79136 4075 of turning one man 's triumph of will into everyman 's romance comedy 3 +79137 4075 turning one man 's triumph of will into everyman 's romance comedy 3 +79138 4075 turning one man 's triumph of will 3 +79139 4075 one man 's triumph of will 4 +79140 4075 one man 's triumph 4 +79141 4075 of will 2 +79142 4075 into everyman 's romance comedy 3 +79143 4075 everyman 's romance comedy 3 +79144 4075 everyman 's 2 +79145 4075 romance comedy 2 +79146 4076 The bottom line is the piece works brilliantly . 3 +79147 4076 is the piece works brilliantly . 4 +79148 4076 is the piece works brilliantly 4 +79149 4076 is the piece works 2 +79150 4076 the piece works 3 +79151 4076 piece works 2 +79152 4077 Ramsay is clearly extraordinarily talented , and based on three short films and two features , here 's betting her third feature will be something to behold . 4 +79153 4077 Ramsay is clearly extraordinarily talented , and based on three short films and two features , here 's betting her third feature will be something to behold 4 +79154 4077 Ramsay is clearly extraordinarily talented , and 4 +79155 4077 Ramsay is clearly extraordinarily talented , 4 +79156 4077 Ramsay is clearly extraordinarily talented 4 +79157 4077 is clearly extraordinarily talented 4 +79158 4077 extraordinarily talented 4 +79159 4077 based on three short films and two features , here 's betting her third feature will be something to behold 3 +79160 4077 based on three short films and two features , here 2 +79161 4077 based on three short films and two features , 2 +79162 4077 based on three short films and two features 2 +79163 4077 on three short films and two features 3 +79164 4077 three short films and two features 2 +79165 4077 three short films and 2 +79166 4077 three short films 2 +79167 4077 short films 2 +79168 4077 two features 2 +79169 4077 's betting her third feature will be something to behold 3 +79170 4077 betting her third feature will be something to behold 3 +79171 4077 betting 2 +79172 4077 her third feature will be something to behold 3 +79173 4077 her third feature 2 +79174 4077 third feature 2 +79175 4077 will be something to behold 3 +79176 4077 be something to behold 3 +79177 4077 something to behold 3 +79178 4078 Everything -- even life on an aircraft carrier -- is sentimentalized . 1 +79179 4078 Everything -- even life on an aircraft carrier -- 2 +79180 4078 -- even life on an aircraft carrier -- 2 +79181 4078 even life on an aircraft carrier -- 3 +79182 4078 even life on an aircraft carrier 2 +79183 4078 even life 2 +79184 4078 on an aircraft carrier 2 +79185 4078 an aircraft carrier 2 +79186 4078 aircraft carrier 2 +79187 4078 aircraft 2 +79188 4078 carrier 2 +79189 4078 is sentimentalized . 2 +79190 4078 is sentimentalized 2 +79191 4078 sentimentalized 1 +79192 4079 Working from a surprisingly sensitive script co-written by Gianni Romoli ... Ozpetek avoids most of the pitfalls you 'd expect in such a potentially sudsy set-up . 4 +79193 4079 Working from a surprisingly sensitive script co-written by Gianni Romoli ... Ozpetek avoids most of the pitfalls you 'd expect in such a potentially sudsy set-up 3 +79194 4079 Working from a surprisingly sensitive script co-written by Gianni Romoli ... 3 +79195 4079 Working from a surprisingly sensitive script co-written by Gianni Romoli 3 +79196 4079 Working from a surprisingly sensitive script co-written 3 +79197 4079 from a surprisingly sensitive script co-written 3 +79198 4079 a surprisingly sensitive script co-written 3 +79199 4079 surprisingly sensitive script co-written 3 +79200 4079 surprisingly sensitive 3 +79201 4079 script co-written 2 +79202 4079 by Gianni Romoli 2 +79203 4079 Gianni Romoli 2 +79204 4079 Romoli 2 +79205 4079 Ozpetek avoids most of the pitfalls you 'd expect in such a potentially sudsy set-up 3 +79206 4079 avoids most of the pitfalls you 'd expect in such a potentially sudsy set-up 3 +79207 4079 most of the pitfalls you 'd expect in such a potentially sudsy set-up 1 +79208 4079 of the pitfalls you 'd expect in such a potentially sudsy set-up 1 +79209 4079 the pitfalls you 'd expect in such a potentially sudsy set-up 1 +79210 4079 you 'd expect in such a potentially sudsy set-up 2 +79211 4079 'd expect in such a potentially sudsy set-up 2 +79212 4079 expect in such a potentially sudsy set-up 2 +79213 4079 in such a potentially sudsy set-up 1 +79214 4079 such a potentially sudsy set-up 2 +79215 4079 a potentially sudsy set-up 1 +79216 4079 potentially sudsy set-up 2 +79217 4079 sudsy set-up 2 +79218 4080 Plot , characters , drama , emotions , ideas -- all are irrelevant to the experience of seeing The Scorpion King . 1 +79219 4080 Plot , characters , drama , emotions , ideas 2 +79220 4080 Plot , characters , drama , emotions , 2 +79221 4080 Plot , characters , drama , emotions 2 +79222 4080 Plot , characters , drama , 2 +79223 4080 Plot , characters , drama 2 +79224 4080 Plot , characters , 3 +79225 4080 Plot , characters 2 +79226 4080 Plot , 2 +79227 4080 -- all are irrelevant to the experience of seeing The Scorpion King . 1 +79228 4080 all are irrelevant to the experience of seeing The Scorpion King . 2 +79229 4080 all are irrelevant to the experience of seeing The Scorpion King 1 +79230 4080 are irrelevant to the experience of seeing The Scorpion King 2 +79231 4080 irrelevant to the experience of seeing The Scorpion King 2 +79232 4080 to the experience of seeing The Scorpion King 2 +79233 4080 the experience of seeing The Scorpion King 2 +79234 4080 of seeing The Scorpion King 2 +79235 4080 seeing The Scorpion King 2 +79236 4081 It 's not helpful to listen to extremist name-calling , regardless of whether you think Kissinger was a calculating fiend or just a slippery self-promoter . 1 +79237 4081 's not helpful to listen to extremist name-calling , regardless of whether you think Kissinger was a calculating fiend or just a slippery self-promoter . 1 +79238 4081 's not helpful to listen to extremist name-calling , regardless of whether you think Kissinger was a calculating fiend or just a slippery self-promoter 1 +79239 4081 helpful to listen to extremist name-calling , regardless of whether you think Kissinger was a calculating fiend or just a slippery self-promoter 1 +79240 4081 helpful 3 +79241 4081 to listen to extremist name-calling , regardless of whether you think Kissinger was a calculating fiend or just a slippery self-promoter 1 +79242 4081 listen to extremist name-calling , regardless of whether you think Kissinger was a calculating fiend or just a slippery self-promoter 2 +79243 4081 listen to extremist name-calling , 1 +79244 4081 listen to extremist name-calling 1 +79245 4081 to extremist name-calling 1 +79246 4081 extremist name-calling 2 +79247 4081 extremist 2 +79248 4081 name-calling 1 +79249 4081 regardless of whether you think Kissinger was a calculating fiend or just a slippery self-promoter 2 +79250 4081 of whether you think Kissinger was a calculating fiend or just a slippery self-promoter 2 +79251 4081 whether you think Kissinger was a calculating fiend or just a slippery self-promoter 1 +79252 4081 you think Kissinger was a calculating fiend or just a slippery self-promoter 2 +79253 4081 think Kissinger was a calculating fiend or just a slippery self-promoter 2 +79254 4081 Kissinger was a calculating fiend or just a slippery self-promoter 2 +79255 4081 was a calculating fiend or just a slippery self-promoter 2 +79256 4081 a calculating fiend or just a slippery self-promoter 1 +79257 4081 a calculating fiend or just 2 +79258 4081 a calculating fiend or 1 +79259 4081 a calculating fiend 1 +79260 4081 calculating fiend 3 +79261 4081 calculating 2 +79262 4081 fiend 1 +79263 4081 a slippery self-promoter 2 +79264 4081 slippery self-promoter 1 +79265 4081 self-promoter 2 +79266 4082 The film is visually dazzling , the depicted events dramatic , funny and poignant . 4 +79267 4082 The film is visually dazzling , the depicted events dramatic , funny and poignant 4 +79268 4082 The film is visually dazzling , 4 +79269 4082 The film is visually dazzling 4 +79270 4082 is visually dazzling 4 +79271 4082 visually dazzling 4 +79272 4082 the depicted events dramatic , funny and poignant 3 +79273 4082 the depicted events 2 +79274 4082 depicted events 2 +79275 4082 depicted 2 +79276 4082 dramatic , funny and poignant 4 +79277 4082 , funny and poignant 3 +79278 4082 funny and poignant 4 +79279 4083 Both an admirable reconstruction of terrible events , and a fitting memorial to the dead of that day , and of the thousands thereafter . 3 +79280 4083 Both an admirable reconstruction of terrible events , and a fitting 3 +79281 4083 an admirable reconstruction of terrible events , and a fitting 3 +79282 4083 an admirable reconstruction of terrible events , and 3 +79283 4083 an admirable reconstruction of terrible events , 3 +79284 4083 an admirable reconstruction of terrible events 3 +79285 4083 an admirable reconstruction 3 +79286 4083 admirable reconstruction 3 +79287 4083 reconstruction 2 +79288 4083 of terrible events 2 +79289 4083 terrible events 1 +79290 4083 a fitting 2 +79291 4083 fitting 3 +79292 4083 memorial to the dead of that day , and of the thousands thereafter . 2 +79293 4083 memorial to the dead of that day , and of the thousands thereafter 2 +79294 4083 to the dead of that day , and of the thousands thereafter 2 +79295 4083 to the dead of that day 2 +79296 4083 the dead of that day 2 +79297 4083 the dead 2 +79298 4083 of that day 2 +79299 4083 that day 2 +79300 4083 , and of the thousands thereafter 3 +79301 4083 , and of the thousands 2 +79302 4083 of the thousands 2 +79303 4083 the thousands 2 +79304 4083 thereafter 2 +79305 4084 Mindless yet impressively lean spinoff of last summer 's bloated effects fest The Mummy Returns . 3 +79306 4084 yet impressively lean spinoff of last summer 's bloated effects fest The Mummy Returns . 2 +79307 4084 yet impressively 2 +79308 4084 lean spinoff of last summer 's bloated effects fest The Mummy Returns . 2 +79309 4084 lean spinoff of last summer 's bloated effects fest The Mummy Returns 2 +79310 4084 lean 2 +79311 4084 spinoff of last summer 's bloated effects fest The Mummy Returns 1 +79312 4084 spinoff of last summer 's bloated effects 0 +79313 4084 spinoff 2 +79314 4084 of last summer 's bloated effects 0 +79315 4084 last summer 's bloated effects 1 +79316 4084 last summer 's 2 +79317 4084 bloated effects 1 +79318 4084 bloated 1 +79319 4084 fest The Mummy Returns 2 +79320 4085 even after 90 minutes of playing opposite each other Bullock and Grant still look ill at ease sharing the same scene . 1 +79321 4085 even after 90 minutes of playing opposite each other 1 +79322 4085 after 90 minutes of playing opposite each other 2 +79323 4085 90 minutes of playing opposite each other 2 +79324 4085 of playing opposite each other 2 +79325 4085 playing opposite each other 2 +79326 4085 opposite each other 2 +79327 4085 Bullock and Grant still look ill at ease sharing the same scene . 1 +79328 4085 Bullock and Grant 2 +79329 4085 Bullock and 2 +79330 4085 still look ill at ease sharing the same scene . 2 +79331 4085 look ill at ease sharing the same scene . 1 +79332 4085 look ill at ease sharing the same scene 1 +79333 4085 ill at ease sharing the same scene 1 +79334 4085 ill 2 +79335 4085 at ease sharing the same scene 3 +79336 4085 ease sharing the same scene 2 +79337 4085 sharing the same scene 2 +79338 4085 sharing 2 +79339 4085 the same scene 2 +79340 4085 same scene 2 +79341 4086 Kudos to the most enchanting film of the year . 4 +79342 4086 Kudos to the most enchanting film of the year 4 +79343 4086 Kudos 2 +79344 4086 to the most enchanting film of the year 4 +79345 4086 the most enchanting film of the year 4 +79346 4086 the most enchanting film 3 +79347 4086 most enchanting film 4 +79348 4086 most enchanting 3 +79349 4087 I ca n't recommend it . 0 +79350 4087 ca n't recommend it . 0 +79351 4088 Russian Ark is a new treasure of the Hermitage . 3 +79352 4088 Russian Ark 2 +79353 4088 Ark 2 +79354 4088 is a new treasure of the Hermitage . 3 +79355 4088 is a new treasure of the Hermitage 2 +79356 4088 a new treasure of the Hermitage 3 +79357 4088 a new treasure 4 +79358 4088 new treasure 4 +79359 4088 of the Hermitage 2 +79360 4088 the Hermitage 2 +79361 4088 Hermitage 2 +79362 4089 The Rock is destined to be the 21st Century 's new `` Conan '' and that he 's going to make a splash even greater than Arnold Schwarzenegger , Jean-Claud Van Damme or Steven Segal . 3 +79363 4089 is destined to be the 21st Century 's new `` Conan '' and that he 's going to make a splash even greater than Arnold Schwarzenegger , Jean-Claud Van Damme or Steven Segal . 4 +79364 4089 is destined to be the 21st Century 's new `` Conan '' and that he 's going to make a splash even greater than Arnold Schwarzenegger , Jean-Claud Van Damme or Steven Segal 3 +79365 4089 destined to be the 21st Century 's new `` Conan '' and that he 's going to make a splash even greater than Arnold Schwarzenegger , Jean-Claud Van Damme or Steven Segal 4 +79366 4089 to be the 21st Century 's new `` Conan '' and that he 's going to make a splash even greater than Arnold Schwarzenegger , Jean-Claud Van Damme or Steven Segal 2 +79367 4089 to be the 21st Century 's new `` Conan '' and 2 +79368 4089 to be the 21st Century 's new `` Conan '' 2 +79369 4089 to be the 21st Century 's new `` Conan 2 +79370 4089 be the 21st Century 's new `` Conan 2 +79371 4089 the 21st Century 's new `` Conan 2 +79372 4089 21st Century 's new `` Conan 2 +79373 4089 Century 's new `` Conan 2 +79374 4089 Century 's 2 +79375 4089 new `` Conan 2 +79376 4089 `` Conan 2 +79377 4089 that he 's going to make a splash even greater than Arnold Schwarzenegger , Jean-Claud Van Damme or Steven Segal 3 +79378 4089 he 's going to make a splash even greater than Arnold Schwarzenegger , Jean-Claud Van Damme or Steven Segal 3 +79379 4089 's going to make a splash even greater than Arnold Schwarzenegger , Jean-Claud Van Damme or Steven Segal 3 +79380 4089 going to make a splash even greater than Arnold Schwarzenegger , Jean-Claud Van Damme or Steven Segal 3 +79381 4089 to make a splash even greater than Arnold Schwarzenegger , Jean-Claud Van Damme or Steven Segal 3 +79382 4089 make a splash even greater than Arnold Schwarzenegger , Jean-Claud Van Damme or Steven Segal 4 +79383 4089 make a splash even greater 3 +79384 4089 a splash even greater 3 +79385 4089 a splash 3 +79386 4089 even greater 2 +79387 4089 than Arnold Schwarzenegger , Jean-Claud Van Damme or Steven Segal 2 +79388 4089 Arnold Schwarzenegger , Jean-Claud Van Damme or Steven Segal 2 +79389 4089 Arnold Schwarzenegger , Jean-Claud Van Damme or 2 +79390 4089 Arnold Schwarzenegger , Jean-Claud Van Damme 2 +79391 4089 Arnold Schwarzenegger , 2 +79392 4089 Jean-Claud Van Damme 2 +79393 4089 Jean-Claud 2 +79394 4089 Steven Segal 2 +79395 4089 Segal 2 +79396 4090 The film is darkly funny in its observation of just how much more grueling and time-consuming the illusion of work is than actual work . 4 +79397 4090 is darkly funny in its observation of just how much more grueling and time-consuming the illusion of work is than actual work . 3 +79398 4090 is darkly funny in its observation of just how much more grueling and time-consuming the illusion of work is than actual work 3 +79399 4090 is darkly 2 +79400 4090 darkly 2 +79401 4090 funny in its observation of just how much more grueling and time-consuming the illusion of work is than actual work 3 +79402 4090 in its observation of just how much more grueling and time-consuming the illusion of work is than actual work 3 +79403 4090 its observation of just how much more grueling and time-consuming the illusion of work is than actual work 1 +79404 4090 its observation 2 +79405 4090 of just how much more grueling and time-consuming the illusion of work is than actual work 2 +79406 4090 just how much more grueling and time-consuming the illusion of work is than actual work 1 +79407 4090 just how much more grueling and time-consuming 1 +79408 4090 just how much 2 +79409 4090 just how 2 +79410 4090 more grueling and time-consuming 1 +79411 4090 more grueling and 1 +79412 4090 more grueling 2 +79413 4090 grueling 1 +79414 4090 time-consuming 1 +79415 4090 the illusion of work is than actual work 3 +79416 4090 the illusion of work 2 +79417 4090 the illusion 2 +79418 4090 illusion 2 +79419 4090 is than actual work 2 +79420 4090 than actual work 2 +79421 4090 actual work 2 +79422 4091 The picture 's fascinating byways are littered with trenchant satirical jabs at the peculiar egocentricities of the acting breed . 3 +79423 4091 The picture 's fascinating byways 3 +79424 4091 fascinating byways 2 +79425 4091 byways 2 +79426 4091 are littered with trenchant satirical jabs at the peculiar egocentricities of the acting breed . 0 +79427 4091 are littered with trenchant satirical jabs at the peculiar egocentricities of the acting breed 1 +79428 4091 littered with trenchant satirical jabs at the peculiar egocentricities of the acting breed 1 +79429 4091 littered with trenchant satirical jabs 2 +79430 4091 littered 2 +79431 4091 with trenchant satirical jabs 2 +79432 4091 trenchant satirical jabs 1 +79433 4091 satirical jabs 2 +79434 4091 jabs 1 +79435 4091 at the peculiar egocentricities of the acting breed 2 +79436 4091 the peculiar egocentricities of the acting breed 2 +79437 4091 the peculiar egocentricities 2 +79438 4091 peculiar egocentricities 2 +79439 4091 egocentricities 1 +79440 4091 of the acting breed 3 +79441 4091 the acting breed 2 +79442 4091 acting breed 2 +79443 4092 It 's Jagger 's bone-dry , mournfully brittle delivery that gives the film its bittersweet bite . 2 +79444 4092 's Jagger 's bone-dry , mournfully brittle delivery that gives the film its bittersweet bite . 3 +79445 4092 's Jagger 's bone-dry , mournfully brittle delivery that gives the film its bittersweet bite 2 +79446 4092 Jagger 's bone-dry , mournfully brittle delivery that gives the film its bittersweet bite 3 +79447 4092 Jagger 's bone-dry , mournfully brittle delivery 1 +79448 4092 bone-dry , mournfully brittle delivery 0 +79449 4092 bone-dry 2 +79450 4092 , mournfully brittle delivery 0 +79451 4092 mournfully brittle delivery 1 +79452 4092 mournfully brittle 2 +79453 4092 mournfully 1 +79454 4092 that gives the film its bittersweet bite 3 +79455 4092 gives the film its bittersweet bite 3 +79456 4092 its bittersweet bite 2 +79457 4092 bittersweet bite 3 +79458 4093 -LRB- Lin Chung 's -RRB- voice is rather unexceptional , even irritating -LRB- at least to this Western ear -RRB- , making it awfully hard to buy the impetus for the complicated love triangle that develops between the three central characters . 1 +79459 4093 -LRB- Lin Chung 's -RRB- voice is rather unexceptional , even irritating -LRB- at least to this Western ear -RRB- , making it awfully hard to buy the impetus for the complicated love triangle that develops between the three central characters 2 +79460 4093 -LRB- Lin Chung 's -RRB- voice is rather unexceptional , even 1 +79461 4093 -LRB- Lin Chung 's -RRB- voice is rather unexceptional , 1 +79462 4093 -LRB- Lin Chung 's -RRB- voice is rather unexceptional 1 +79463 4093 Lin Chung 's -RRB- voice is rather unexceptional 2 +79464 4093 Lin Chung 's 2 +79465 4093 Lin 2 +79466 4093 Chung 's 2 +79467 4093 Chung 2 +79468 4093 -RRB- voice is rather unexceptional 2 +79469 4093 voice is rather unexceptional 1 +79470 4093 is rather unexceptional 1 +79471 4093 rather unexceptional 1 +79472 4093 irritating -LRB- at least to this Western ear -RRB- , making it awfully hard to buy the impetus for the complicated love triangle that develops between the three central characters 1 +79473 4093 irritating -LRB- at least to this Western ear -RRB- , 0 +79474 4093 irritating -LRB- at least to this Western ear -RRB- 1 +79475 4093 -LRB- at least to this Western ear -RRB- 2 +79476 4093 at least to this Western ear -RRB- 2 +79477 4093 at least to this Western ear 2 +79478 4093 to this Western ear 2 +79479 4093 this Western ear 2 +79480 4093 Western ear 2 +79481 4093 making it awfully hard to buy the impetus for the complicated love triangle that develops between the three central characters 1 +79482 4093 it awfully hard to buy the impetus for the complicated love triangle that develops between the three central characters 1 +79483 4093 awfully hard to buy the impetus for the complicated love triangle that develops between the three central characters 1 +79484 4093 awfully hard 1 +79485 4093 to buy the impetus for the complicated love triangle that develops between the three central characters 2 +79486 4093 buy the impetus for the complicated love triangle that develops between the three central characters 2 +79487 4093 buy the impetus 2 +79488 4093 the impetus 2 +79489 4093 impetus 2 +79490 4093 for the complicated love triangle that develops between the three central characters 3 +79491 4093 the complicated love triangle that develops between the three central characters 2 +79492 4093 the complicated love triangle 2 +79493 4093 complicated love triangle 2 +79494 4093 that develops between the three central characters 2 +79495 4093 develops between the three central characters 2 +79496 4093 between the three central characters 2 +79497 4093 the three central characters 2 +79498 4093 three central characters 2 +79499 4093 central characters 2 +79500 4094 It 's coherent , well shot , and tartly acted , but it wears you down like a dinner guest showing off his doctorate . 1 +79501 4094 It 's coherent , well shot , and tartly acted , but it wears you down like a dinner guest showing off his doctorate 2 +79502 4094 It 's coherent , well shot , and tartly acted , but 3 +79503 4094 It 's coherent , well shot , and tartly acted , 4 +79504 4094 It 's coherent , well shot , and tartly acted 4 +79505 4094 's coherent , well shot , and tartly acted 4 +79506 4094 's coherent , well shot , and tartly 3 +79507 4094 's coherent , well shot , and 3 +79508 4094 's coherent , well shot , 3 +79509 4094 's coherent , well shot 3 +79510 4094 's coherent , 2 +79511 4094 's coherent 3 +79512 4094 well shot 3 +79513 4094 tartly 1 +79514 4094 it wears you down like a dinner guest showing off his doctorate 1 +79515 4094 wears you down like a dinner guest showing off his doctorate 1 +79516 4094 wears you down 2 +79517 4094 wears you 2 +79518 4094 like a dinner guest showing off his doctorate 1 +79519 4094 a dinner guest showing off his doctorate 2 +79520 4094 a dinner guest 2 +79521 4094 dinner guest 3 +79522 4094 guest 2 +79523 4094 showing off his doctorate 3 +79524 4094 showing off 1 +79525 4094 his doctorate 2 +79526 4094 doctorate 2 +79527 4095 An invaluable historical document thanks to the filmmaker 's extraordinary access to Massoud , whose charm , cultivation and devotion to his people are readily apparent . 4 +79528 4095 An invaluable historical document thanks to the filmmaker 's extraordinary access to Massoud , whose charm , cultivation and devotion to his people are readily apparent 4 +79529 4095 An invaluable historical document thanks 2 +79530 4095 invaluable historical document thanks 4 +79531 4095 historical document thanks 2 +79532 4095 document thanks 2 +79533 4095 to the filmmaker 's extraordinary access to Massoud , whose charm , cultivation and devotion to his people are readily apparent 3 +79534 4095 the filmmaker 's extraordinary access to Massoud , whose charm , cultivation and devotion to his people are readily apparent 3 +79535 4095 the filmmaker 's extraordinary access to Massoud , 3 +79536 4095 the filmmaker 's extraordinary access to Massoud 3 +79537 4095 the filmmaker 's extraordinary access 3 +79538 4095 extraordinary access 3 +79539 4095 to Massoud 2 +79540 4095 whose charm , cultivation and devotion to his people are readily apparent 4 +79541 4095 charm , cultivation and devotion to his people are readily apparent 3 +79542 4095 charm , cultivation and devotion to his people 3 +79543 4095 charm , cultivation and devotion 3 +79544 4095 , cultivation and devotion 3 +79545 4095 cultivation and devotion 2 +79546 4095 cultivation and 3 +79547 4095 cultivation 3 +79548 4095 devotion 2 +79549 4095 to his people 3 +79550 4095 his people 2 +79551 4095 are readily apparent 2 +79552 4095 readily apparent 2 +79553 4096 The two leads , nearly perfect in their roles , bring a heart and reality that buoy the film , and at times , elevate it to a superior crime movie . 4 +79554 4096 The two leads , nearly perfect in their roles , 4 +79555 4096 The two leads , nearly perfect in their roles 4 +79556 4096 The two leads , 2 +79557 4096 The two leads 2 +79558 4096 two leads 2 +79559 4096 nearly perfect in their roles 4 +79560 4096 perfect in their roles 4 +79561 4096 in their roles 2 +79562 4096 their roles 2 +79563 4096 bring a heart and reality that buoy the film , and at times , elevate it to a superior crime movie . 3 +79564 4096 bring a heart and reality that buoy the film , and at times , elevate it to a superior crime movie 3 +79565 4096 a heart and reality that buoy the film , and at times , elevate it to a superior crime movie 4 +79566 4096 a heart and reality 2 +79567 4096 heart and reality 2 +79568 4096 that buoy the film , and at times , elevate it to a superior crime movie 3 +79569 4096 buoy the film , and at times , elevate it to a superior crime movie 3 +79570 4096 buoy 2 +79571 4096 the film , and at times , elevate it to a superior crime movie 4 +79572 4096 the film , and at times , 2 +79573 4096 the film , and at times 2 +79574 4096 the film , and at 2 +79575 4096 the film , and 2 +79576 4096 elevate it to a superior crime movie 2 +79577 4096 elevate it 2 +79578 4096 to a superior crime movie 3 +79579 4096 a superior crime movie 4 +79580 4096 superior crime movie 3 +79581 4096 crime movie 2 +79582 4097 The pairing does sound promising in theory ... but their lack of chemistry makes Eddie Murphy and Robert DeNiro in Showtime look like old , familiar vaudeville partners . 1 +79583 4097 The pairing does sound promising in theory ... but their lack of chemistry makes Eddie Murphy and Robert DeNiro in Showtime look like old , familiar vaudeville partners 2 +79584 4097 The pairing does sound promising in theory ... but 2 +79585 4097 The pairing does sound promising in theory ... 2 +79586 4097 The pairing does sound promising in theory 2 +79587 4097 The pairing 2 +79588 4097 does sound promising in theory 3 +79589 4097 sound promising in theory 2 +79590 4097 promising in theory 2 +79591 4097 their lack of chemistry makes Eddie Murphy and Robert DeNiro in Showtime look like old , familiar vaudeville partners 1 +79592 4097 their lack of chemistry 1 +79593 4097 their lack 1 +79594 4097 of chemistry 2 +79595 4097 makes Eddie Murphy and Robert DeNiro in Showtime look like old , familiar vaudeville partners 2 +79596 4097 Eddie Murphy and Robert DeNiro in Showtime look like old , familiar vaudeville partners 2 +79597 4097 Eddie Murphy and Robert DeNiro in Showtime 2 +79598 4097 Eddie Murphy and 2 +79599 4097 Robert DeNiro in Showtime 2 +79600 4097 in Showtime 2 +79601 4097 look like old , familiar vaudeville partners 2 +79602 4097 like old , familiar vaudeville partners 2 +79603 4097 old , familiar vaudeville partners 2 +79604 4097 old , familiar 1 +79605 4097 , familiar 2 +79606 4097 vaudeville partners 2 +79607 4098 Disjointed parody . 1 +79608 4098 parody . 3 +79609 4099 What we have is a character faced with the possibility that her life is meaningless , vapid and devoid of substance , in a movie that is definitely meaningless , vapid and devoid of substance . 0 +79610 4099 What we have is 2 +79611 4099 we have is 2 +79612 4099 have is 2 +79613 4099 a character faced with the possibility that her life is meaningless , vapid and devoid of substance , in a movie that is definitely meaningless , vapid and devoid of substance . 0 +79614 4099 faced with the possibility that her life is meaningless , vapid and devoid of substance , in a movie that is definitely meaningless , vapid and devoid of substance . 0 +79615 4099 faced with the possibility that her life is meaningless , vapid and devoid of substance , in a movie that is definitely meaningless , vapid and devoid of substance 0 +79616 4099 faced with the possibility 2 +79617 4099 with the possibility 2 +79618 4099 the possibility 2 +79619 4099 possibility 2 +79620 4099 that her life is meaningless , vapid and devoid of substance , in a movie that is definitely meaningless , vapid and devoid of substance 0 +79621 4099 her life is meaningless , vapid and devoid of substance , in a movie that is definitely meaningless , vapid and devoid of substance 0 +79622 4099 is meaningless , vapid and devoid of substance , in a movie that is definitely meaningless , vapid and devoid of substance 0 +79623 4099 is meaningless , vapid and devoid of substance , 0 +79624 4099 is meaningless , vapid and devoid of substance 0 +79625 4099 is meaningless , vapid and devoid 0 +79626 4099 meaningless , vapid and devoid 0 +79627 4099 , vapid and devoid 1 +79628 4099 vapid and devoid 2 +79629 4099 vapid and 1 +79630 4099 of substance 2 +79631 4099 in a movie that is definitely meaningless , vapid and devoid of substance 0 +79632 4099 a movie that is definitely meaningless , vapid and devoid of substance 0 +79633 4099 that is definitely meaningless , vapid and devoid of substance 0 +79634 4099 is definitely meaningless , vapid and devoid of substance 0 +79635 4099 is definitely meaningless , vapid and devoid 0 +79636 4100 It 's tough being a black man in America , especially when the Man has taken away your car , your work-hours and denied you health insurance . 2 +79637 4100 's tough being a black man in America , especially when the Man has taken away your car , your work-hours and denied you health insurance . 1 +79638 4100 's tough being a black man in America , especially when the Man has taken away your car , your work-hours and denied you health insurance 1 +79639 4100 's tough being a black man in America , 2 +79640 4100 's tough being a black man in America 2 +79641 4100 's tough 2 +79642 4100 being a black man in America 2 +79643 4100 a black man in America 2 +79644 4100 especially when the Man has taken away your car , your work-hours and denied you health insurance 2 +79645 4100 especially when 2 +79646 4100 the Man has taken away your car , your work-hours and denied you health insurance 1 +79647 4100 has taken away your car , your work-hours and denied you health insurance 1 +79648 4100 has taken away your car , your work-hours and 1 +79649 4100 has taken away your car , your work-hours 1 +79650 4100 taken away your car , your work-hours 1 +79651 4100 taken away 2 +79652 4100 your car , your work-hours 2 +79653 4100 your car , 2 +79654 4100 your car 2 +79655 4100 your work-hours 2 +79656 4100 work-hours 2 +79657 4100 denied you health insurance 2 +79658 4100 you health insurance 2 +79659 4100 health insurance 2 +79660 4100 insurance 3 +79661 4101 The kind of trifle that date nights were invented for . . 2 +79662 4101 The kind of trifle that date nights were invented for . 3 +79663 4101 of trifle that date nights were invented for . 2 +79664 4101 trifle that date nights were invented for . 2 +79665 4101 that date nights were invented for . 2 +79666 4101 date nights were invented for . 2 +79667 4101 date nights 2 +79668 4101 were invented for . 2 +79669 4101 invented for . 2 +79670 4101 invented for 2 +79671 4101 invented 3 +79672 4102 The plot has a number of holes , and at times it 's simply baffling . 1 +79673 4102 The plot has a number of holes , and at times it 's simply baffling 1 +79674 4102 The plot has a number of holes , and 1 +79675 4102 The plot has a number of holes , 1 +79676 4102 The plot has a number of holes 1 +79677 4102 has a number of holes 1 +79678 4102 a number of holes 1 +79679 4102 a number 2 +79680 4102 of holes 2 +79681 4102 at times it 's simply baffling 1 +79682 4102 it 's simply baffling 1 +79683 4102 's simply baffling 2 +79684 4102 's simply 2 +79685 4103 Seen in that light , Moonlight Mile should strike a nerve in many . 3 +79686 4103 Seen in that light 3 +79687 4103 in that light 2 +79688 4103 that light 2 +79689 4103 , Moonlight Mile should strike a nerve in many . 2 +79690 4103 Moonlight Mile should strike a nerve in many . 3 +79691 4103 should strike a nerve in many . 3 +79692 4103 should strike a nerve in many 1 +79693 4103 strike a nerve in many 2 +79694 4103 a nerve in many 2 +79695 4103 a nerve 2 +79696 4103 in many 2 +79697 4104 Wobbly Senegalese updating of `` Carmen '' which is best for the stunning star turn by Djeinaba Diop Gai 2 +79698 4104 Senegalese updating of `` Carmen '' which is best for the stunning star turn by Djeinaba Diop Gai 3 +79699 4104 Senegalese updating of `` Carmen '' 2 +79700 4104 Senegalese updating 2 +79701 4104 Senegalese 2 +79702 4104 of `` Carmen '' 2 +79703 4104 `` Carmen '' 2 +79704 4104 Carmen '' 2 +79705 4104 Carmen 2 +79706 4104 which is best for the stunning star turn by Djeinaba Diop Gai 4 +79707 4104 is best for the stunning star turn by Djeinaba Diop Gai 3 +79708 4104 best for the stunning star turn by Djeinaba Diop Gai 4 +79709 4104 for the stunning star turn by Djeinaba Diop Gai 4 +79710 4104 the stunning star turn by Djeinaba Diop Gai 4 +79711 4104 the stunning star turn 3 +79712 4104 stunning star turn 4 +79713 4104 star turn 2 +79714 4104 by Djeinaba Diop Gai 2 +79715 4104 Djeinaba Diop Gai 3 +79716 4104 Djeinaba 3 +79717 4104 Diop Gai 2 +79718 4104 Diop 2 +79719 4104 Gai 2 +79720 4105 Plus , like I already mentioned ... it 's Robert Duvall ! 3 +79721 4105 , like I already mentioned ... it 's Robert Duvall ! 3 +79722 4105 like I already mentioned ... it 's Robert Duvall ! 3 +79723 4105 like I already mentioned 2 +79724 4105 I already mentioned 2 +79725 4105 already mentioned 1 +79726 4105 mentioned 2 +79727 4105 ... it 's Robert Duvall ! 3 +79728 4105 it 's Robert Duvall ! 4 +79729 4105 it 's Robert Duvall 2 +79730 4105 's Robert Duvall 2 +79731 4105 Robert Duvall 3 +79732 4106 Laugh-out-loud lines , adorably ditsy but heartfelt performances , and sparkling , bittersweet dialogue that cuts to the chase of the modern girl 's dilemma . 4 +79733 4106 Laugh-out-loud lines , adorably ditsy but heartfelt performances , and sparkling , 4 +79734 4106 Laugh-out-loud lines , adorably ditsy but heartfelt performances , and sparkling 4 +79735 4106 Laugh-out-loud lines , 3 +79736 4106 Laugh-out-loud lines 3 +79737 4106 adorably ditsy but heartfelt performances , and sparkling 2 +79738 4106 adorably ditsy but heartfelt performances , and 4 +79739 4106 adorably ditsy but heartfelt performances , 3 +79740 4106 adorably ditsy but heartfelt performances 3 +79741 4106 adorably ditsy but heartfelt 3 +79742 4106 adorably ditsy but 3 +79743 4106 adorably ditsy 2 +79744 4106 adorably 3 +79745 4106 ditsy 1 +79746 4106 bittersweet dialogue that cuts to the chase of the modern girl 's dilemma . 3 +79747 4106 bittersweet dialogue that cuts to the chase of the modern girl 's dilemma 3 +79748 4106 dialogue that cuts to the chase of the modern girl 's dilemma 3 +79749 4106 that cuts to the chase of the modern girl 's dilemma 3 +79750 4106 cuts to the chase of the modern girl 's dilemma 3 +79751 4106 to the chase of the modern girl 's dilemma 2 +79752 4106 the chase of the modern girl 's dilemma 2 +79753 4106 the chase 2 +79754 4106 of the modern girl 's dilemma 2 +79755 4106 the modern girl 's dilemma 2 +79756 4106 the modern girl 's 2 +79757 4106 modern girl 's 2 +79758 4107 - greaseballs mob action-comedy . 1 +79759 4107 greaseballs mob action-comedy . 2 +79760 4107 greaseballs 2 +79761 4107 mob action-comedy . 2 +79762 4107 mob 1 +79763 4107 action-comedy . 2 +79764 4108 Explosions , jokes , and sexual innuendoes abound . 2 +79765 4108 Explosions , jokes , and sexual innuendoes 2 +79766 4108 Explosions , jokes , and 2 +79767 4108 Explosions , jokes , 2 +79768 4108 Explosions , jokes 2 +79769 4108 Explosions , 2 +79770 4108 sexual innuendoes 2 +79771 4108 innuendoes 2 +79772 4108 abound . 2 +79773 4109 It gets old quickly . 1 +79774 4109 gets old quickly . 1 +79775 4109 gets old quickly 1 +79776 4109 gets old 1 +79777 4110 -LRB- A -RRB- thoughtful , visually graceful work . 4 +79778 4110 -LRB- A -RRB- thoughtful , visually graceful 3 +79779 4110 thoughtful , visually graceful 3 +79780 4110 , visually graceful 3 +79781 4110 visually graceful 4 +79782 4110 work . 2 +79783 4111 A standard police-oriented drama that , were it not for De Niro 's participation , would have likely wound up a TNT Original . 1 +79784 4111 A standard police-oriented drama that , were it not for De Niro 's participation , 2 +79785 4111 A standard police-oriented drama 2 +79786 4111 standard police-oriented drama 2 +79787 4111 police-oriented drama 2 +79788 4111 police-oriented 2 +79789 4111 that , were it not for De Niro 's participation , 2 +79790 4111 were it not for De Niro 's participation , 2 +79791 4111 were it not for De Niro 's participation 2 +79792 4111 not for De Niro 's participation 2 +79793 4111 for De Niro 's participation 2 +79794 4111 De Niro 's participation 2 +79795 4111 De Niro 's 2 +79796 4111 Niro 's 2 +79797 4111 participation 3 +79798 4111 would have likely wound up a TNT Original . 2 +79799 4111 would have likely wound up a TNT Original 1 +79800 4111 have likely wound up a TNT Original 2 +79801 4111 likely wound up a TNT Original 2 +79802 4111 wound up a TNT Original 2 +79803 4111 wound up 2 +79804 4111 a TNT Original 2 +79805 4111 TNT Original 2 +79806 4111 TNT 3 +79807 4112 He may have meant the Internet short Saving Ryan 's Privates . 2 +79808 4112 may have meant the Internet short Saving Ryan 's Privates . 1 +79809 4112 may have meant the Internet short Saving Ryan 's Privates 2 +79810 4112 have meant the Internet short Saving Ryan 's Privates 1 +79811 4112 meant the Internet short Saving Ryan 's Privates 2 +79812 4112 meant the Internet short 2 +79813 4112 the Internet short 2 +79814 4112 Saving Ryan 's Privates 3 +79815 4112 Saving Ryan 's 2 +79816 4112 Ryan 's 2 +79817 4112 Privates 2 +79818 4113 It 's a long way from Orwell 's dark , intelligent warning cry -LRB- 1984 -RRB- to the empty stud knockabout of Equilibrium , and what once was conviction is now affectation . 1 +79819 4113 It 's a long way from Orwell 's dark , intelligent warning cry -LRB- 1984 -RRB- to the empty stud knockabout of Equilibrium , and what once was conviction is now affectation 3 +79820 4113 It 's a long way from Orwell 's dark , intelligent warning cry -LRB- 1984 -RRB- to the empty stud knockabout of Equilibrium , and 1 +79821 4113 It 's a long way from Orwell 's dark , intelligent warning cry -LRB- 1984 -RRB- to the empty stud knockabout of Equilibrium , 1 +79822 4113 It 's a long way from Orwell 's dark , intelligent warning cry -LRB- 1984 -RRB- to the empty stud knockabout of Equilibrium 1 +79823 4113 's a long way from Orwell 's dark , intelligent warning cry -LRB- 1984 -RRB- to the empty stud knockabout of Equilibrium 1 +79824 4113 's a long way from Orwell 's dark , intelligent warning cry -LRB- 1984 -RRB- 1 +79825 4113 's a long way 2 +79826 4113 from Orwell 's dark , intelligent warning cry -LRB- 1984 -RRB- 2 +79827 4113 Orwell 's dark , intelligent warning cry -LRB- 1984 -RRB- 2 +79828 4113 Orwell 's dark , intelligent warning cry 1 +79829 4113 Orwell 's 2 +79830 4113 dark , intelligent warning cry 3 +79831 4113 dark , intelligent 3 +79832 4113 , intelligent 3 +79833 4113 warning cry 2 +79834 4113 -LRB- 1984 -RRB- 2 +79835 4113 1984 -RRB- 2 +79836 4113 to the empty stud knockabout of Equilibrium 1 +79837 4113 the empty stud knockabout of Equilibrium 1 +79838 4113 the empty stud knockabout 1 +79839 4113 empty stud knockabout 1 +79840 4113 stud knockabout 2 +79841 4113 stud 2 +79842 4113 knockabout 3 +79843 4113 of Equilibrium 2 +79844 4113 what once was conviction is now affectation 1 +79845 4113 what once was conviction 3 +79846 4113 once was conviction 2 +79847 4113 was conviction 2 +79848 4113 is now affectation 2 +79849 4113 affectation 3 +79850 4114 Raimi crafted a complicated hero who is a welcome relief from the usual two-dimensional offerings . 4 +79851 4114 crafted a complicated hero who is a welcome relief from the usual two-dimensional offerings . 3 +79852 4114 crafted a complicated hero who is a welcome relief from the usual two-dimensional offerings 3 +79853 4114 a complicated hero who is a welcome relief from the usual two-dimensional offerings 4 +79854 4114 a complicated hero 3 +79855 4114 complicated hero 2 +79856 4114 who is a welcome relief from the usual two-dimensional offerings 3 +79857 4114 is a welcome relief from the usual two-dimensional offerings 3 +79858 4114 a welcome relief from the usual two-dimensional offerings 3 +79859 4114 from the usual two-dimensional offerings 2 +79860 4114 the usual two-dimensional offerings 2 +79861 4114 usual two-dimensional offerings 2 +79862 4114 two-dimensional offerings 1 +79863 4114 offerings 2 +79864 4115 This fascinating experiment plays as more of a poetic than a strict reality , creating an intriguing species of artifice that gives The Lady and the Duke something of a theatrical air . 3 +79865 4115 This fascinating experiment 4 +79866 4115 fascinating experiment 4 +79867 4115 plays as more of a poetic than a strict reality , creating an intriguing species of artifice that gives The Lady and the Duke something of a theatrical air . 3 +79868 4115 plays as more of a poetic than a strict reality , creating an intriguing species of artifice that gives The Lady and the Duke something of a theatrical air 3 +79869 4115 as more of a poetic than a strict reality , creating an intriguing species of artifice that gives The Lady and the Duke something of a theatrical air 3 +79870 4115 more of a poetic than a strict reality , creating an intriguing species of artifice that gives The Lady and the Duke something of a theatrical air 3 +79871 4115 more of a poetic than a strict reality , creating an intriguing species of artifice 3 +79872 4115 more of a poetic than a strict reality , 3 +79873 4115 more of a poetic than a strict reality 2 +79874 4115 more of a poetic 2 +79875 4115 of a poetic 3 +79876 4115 a poetic 3 +79877 4115 than a strict reality 2 +79878 4115 a strict reality 3 +79879 4115 strict reality 2 +79880 4115 creating an intriguing species of artifice 3 +79881 4115 an intriguing species of artifice 3 +79882 4115 an intriguing species 3 +79883 4115 intriguing species 3 +79884 4115 species 2 +79885 4115 that gives The Lady and the Duke something of a theatrical air 2 +79886 4115 gives The Lady and the Duke something of a theatrical air 3 +79887 4115 The Lady and the Duke something of a theatrical air 3 +79888 4115 the Duke something of a theatrical air 2 +79889 4115 the Duke something 2 +79890 4115 Duke something 2 +79891 4115 of a theatrical air 2 +79892 4115 a theatrical air 2 +79893 4115 theatrical air 2 +79894 4116 The plot 's clearly mythic structure may owe more to Disney 's strong sense of formula than to the original story . 2 +79895 4116 The plot 's clearly mythic structure 3 +79896 4116 clearly mythic structure 2 +79897 4116 clearly mythic 2 +79898 4116 may owe more to Disney 's strong sense of formula than to the original story . 2 +79899 4116 may owe more to Disney 's strong sense of formula than to the original story 2 +79900 4116 owe more to Disney 's strong sense of formula than to the original story 2 +79901 4116 owe more to Disney 's strong sense of formula 2 +79902 4116 owe more 2 +79903 4116 to Disney 's strong sense of formula 2 +79904 4116 Disney 's strong sense of formula 3 +79905 4116 Disney 's strong sense 2 +79906 4116 of formula 2 +79907 4116 than to the original story 2 +79908 4116 to the original story 2 +79909 4116 the original story 2 +79910 4116 original story 3 +79911 4117 A poignant lyricism runs through Balzac and the Little Chinese Seamstress that transforms this story about love and culture into a cinematic poem . 4 +79912 4117 A poignant lyricism 2 +79913 4117 poignant lyricism 3 +79914 4117 runs through Balzac and the Little Chinese Seamstress that transforms this story about love and culture into a cinematic poem . 4 +79915 4117 runs through Balzac and the Little Chinese Seamstress that transforms this story about love and culture into a cinematic poem 3 +79916 4117 through Balzac and the Little Chinese Seamstress that transforms this story about love and culture into a cinematic poem 4 +79917 4117 Balzac and the Little Chinese Seamstress that transforms this story about love and culture into a cinematic poem 4 +79918 4117 Balzac and 2 +79919 4117 Balzac 2 +79920 4117 the Little Chinese Seamstress that transforms this story about love and culture into a cinematic poem 3 +79921 4117 the Little Chinese Seamstress 2 +79922 4117 Little Chinese Seamstress 2 +79923 4117 Chinese Seamstress 2 +79924 4117 Seamstress 2 +79925 4117 that transforms this story about love and culture into a cinematic poem 4 +79926 4117 transforms this story about love and culture into a cinematic poem 3 +79927 4117 transforms this story about love and culture 3 +79928 4117 this story about love and culture 3 +79929 4117 about love and culture 3 +79930 4117 love and culture 3 +79931 4117 into a cinematic poem 3 +79932 4117 a cinematic poem 3 +79933 4118 Unfortunately , One Hour Photo lives down to its title . 0 +79934 4118 , One Hour Photo lives down to its title . 1 +79935 4118 One Hour Photo lives down to its title . 1 +79936 4118 lives down to its title . 1 +79937 4118 lives down to its title 2 +79938 4118 lives down 2 +79939 4118 to its title 2 +79940 4119 Director Uwe Boll and writer Robert Dean Klein fail to generate any interest in an unsympathetic hero caught up in an intricate plot that while cleverly worked out , can not overcome blah characters . 1 +79941 4119 Director Uwe Boll and writer Robert Dean Klein 2 +79942 4119 Uwe Boll and writer Robert Dean Klein 2 +79943 4119 Uwe 2 +79944 4119 Boll and writer Robert Dean Klein 2 +79945 4119 and writer Robert Dean Klein 2 +79946 4119 writer Robert Dean Klein 2 +79947 4119 Robert Dean Klein 2 +79948 4119 Dean Klein 2 +79949 4119 fail to generate any interest in an unsympathetic hero caught up in an intricate plot that while cleverly worked out , can not overcome blah characters . 1 +79950 4119 fail to generate any interest in an unsympathetic hero caught up in an intricate plot that while cleverly worked out , can not overcome blah characters 1 +79951 4119 to generate any interest in an unsympathetic hero caught up in an intricate plot that while cleverly worked out , can not overcome blah characters 1 +79952 4119 generate any interest in an unsympathetic hero caught up in an intricate plot that while cleverly worked out , can not overcome blah characters 1 +79953 4119 generate any interest 2 +79954 4119 any interest 2 +79955 4119 in an unsympathetic hero caught up in an intricate plot that while cleverly worked out , can not overcome blah characters 1 +79956 4119 an unsympathetic hero caught up in an intricate plot that while cleverly worked out , can not overcome blah characters 1 +79957 4119 an unsympathetic hero 1 +79958 4119 unsympathetic hero 1 +79959 4119 caught up in an intricate plot that while cleverly worked out , can not overcome blah characters 2 +79960 4119 caught up in an intricate plot 3 +79961 4119 in an intricate plot 3 +79962 4119 an intricate plot 3 +79963 4119 intricate plot 3 +79964 4119 that while cleverly worked out , can not overcome blah characters 1 +79965 4119 while cleverly worked out , can not overcome blah characters 1 +79966 4119 while cleverly worked out 3 +79967 4119 cleverly worked out 3 +79968 4119 worked out 2 +79969 4119 , can not overcome blah characters 0 +79970 4119 can not overcome blah characters 1 +79971 4119 overcome blah characters 3 +79972 4119 blah characters 0 +79973 4119 blah 1 +79974 4120 Gere gives a good performance in a film that does n't merit it . 2 +79975 4120 Gere 2 +79976 4120 gives a good performance in a film that does n't merit it . 2 +79977 4120 gives a good performance in a film that does n't merit it 1 +79978 4120 a good performance in a film that does n't merit it 1 +79979 4120 a good performance 4 +79980 4120 good performance 3 +79981 4120 in a film that does n't merit it 1 +79982 4120 a film that does n't merit it 0 +79983 4120 that does n't merit it 1 +79984 4120 does n't merit it 1 +79985 4120 merit it 3 +79986 4121 Rarely has skin looked as beautiful , desirable , even delectable , as it does in Trouble Every Day . 3 +79987 4121 has skin looked as beautiful , desirable , even delectable , as it does in Trouble Every Day . 2 +79988 4121 has skin looked as beautiful , desirable , even delectable , as it does in Trouble Every Day 3 +79989 4121 skin looked as beautiful , desirable , even delectable , as it does in Trouble Every Day 2 +79990 4121 looked as beautiful , desirable , even delectable , as it does in Trouble Every Day 4 +79991 4121 looked as beautiful , desirable , even delectable , 3 +79992 4121 as beautiful , desirable , even delectable , 4 +79993 4121 as beautiful , desirable , even delectable 3 +79994 4121 as beautiful , desirable , 3 +79995 4121 as beautiful , desirable 3 +79996 4121 as beautiful , 3 +79997 4121 as beautiful 3 +79998 4121 desirable 3 +79999 4121 as it does in Trouble Every Day 2 +80000 4121 it does in Trouble Every Day 3 +80001 4121 does in Trouble Every Day 2 +80002 4121 in Trouble Every Day 1 +80003 4122 The pacing is often way off and there are too many bona fide groaners among too few laughs . 0 +80004 4122 The pacing is often way off and there are too many bona fide groaners among too few laughs 1 +80005 4122 The pacing is often way off and 1 +80006 4122 The pacing is often way off 1 +80007 4122 is often way off 1 +80008 4122 is often 2 +80009 4122 way off 1 +80010 4122 there are too many bona fide groaners among too few laughs 1 +80011 4122 are too many bona fide groaners among too few laughs 1 +80012 4122 are too 2 +80013 4122 many bona fide groaners among too few laughs 0 +80014 4122 many bona fide groaners 1 +80015 4122 bona fide groaners 1 +80016 4122 bona fide 3 +80017 4122 bona 2 +80018 4122 fide 2 +80019 4122 groaners 1 +80020 4122 among too few laughs 2 +80021 4122 too few laughs 1 +80022 4123 Reyes ' word processor . 2 +80023 4123 Reyes ' word 2 +80024 4123 Reyes ' 2 +80025 4123 Reyes 2 +80026 4123 processor . 2 +80027 4123 processor 2 +80028 4124 In capturing the understated comedic agony of an ever-ruminating , genteel yet decadent aristocracy that can no longer pay its bills , the film could just as well be addressing the turn of the 20th century into the 21st . 2 +80029 4124 In capturing the understated comedic agony of an ever-ruminating , genteel yet decadent aristocracy that can no longer pay its bills 2 +80030 4124 capturing the understated comedic agony of an ever-ruminating , genteel yet decadent aristocracy that can no longer pay its bills 3 +80031 4124 the understated comedic agony of an ever-ruminating , genteel yet decadent aristocracy that can no longer pay its bills 2 +80032 4124 the understated comedic agony 2 +80033 4124 understated comedic agony 2 +80034 4124 comedic agony 1 +80035 4124 agony 1 +80036 4124 of an ever-ruminating , genteel yet decadent aristocracy that can no longer pay its bills 1 +80037 4124 an ever-ruminating , genteel yet decadent aristocracy that can no longer pay its bills 2 +80038 4124 ever-ruminating , genteel yet decadent aristocracy that can no longer pay its bills 2 +80039 4124 ever-ruminating 2 +80040 4124 , genteel yet decadent aristocracy that can no longer pay its bills 2 +80041 4124 genteel yet decadent aristocracy that can no longer pay its bills 2 +80042 4124 genteel yet decadent 3 +80043 4124 genteel yet 2 +80044 4124 decadent 2 +80045 4124 aristocracy that can no longer pay its bills 2 +80046 4124 that can no longer pay its bills 2 +80047 4124 can no longer pay its bills 2 +80048 4124 can no longer 1 +80049 4124 no longer 2 +80050 4124 pay its bills 2 +80051 4124 its bills 2 +80052 4124 bills 3 +80053 4124 , the film could just as well be addressing the turn of the 20th century into the 21st . 2 +80054 4124 the film could just as well be addressing the turn of the 20th century into the 21st . 3 +80055 4124 could just as well be addressing the turn of the 20th century into the 21st . 2 +80056 4124 could just as well be addressing the turn of the 20th century into the 21st 2 +80057 4124 could just as well 2 +80058 4124 just as well 2 +80059 4124 be addressing the turn of the 20th century into the 21st 2 +80060 4124 addressing the turn of the 20th century into the 21st 3 +80061 4124 addressing the turn of the 20th century 2 +80062 4124 the turn of the 20th century 2 +80063 4124 the turn 2 +80064 4124 of the 20th century 2 +80065 4124 the 20th century 2 +80066 4124 20th century 2 +80067 4124 into the 21st 3 +80068 4124 the 21st 2 +80069 4125 In that setting , their struggle is simply too ludicrous and borderline insulting . 0 +80070 4125 In that setting 2 +80071 4125 that setting 2 +80072 4125 , their struggle is simply too ludicrous and borderline insulting . 0 +80073 4125 their struggle is simply too ludicrous and borderline insulting . 0 +80074 4125 their struggle 2 +80075 4125 is simply too ludicrous and borderline insulting . 0 +80076 4125 is simply too ludicrous and borderline insulting 0 +80077 4125 too ludicrous and borderline insulting 0 +80078 4125 too ludicrous and 1 +80079 4125 too ludicrous 0 +80080 4125 borderline insulting 1 +80081 4126 Try as you might to resist , if you 've got a place in your heart for Smokey Robinson , this movie will worm its way there . 3 +80082 4126 Try as you might to resist , if you 've got a place in your heart for Smokey Robinson 3 +80083 4126 as you might to resist , if you 've got a place in your heart for Smokey Robinson 3 +80084 4126 you might to resist , if you 've got a place in your heart for Smokey Robinson 3 +80085 4126 might to resist , if you 've got a place in your heart for Smokey Robinson 3 +80086 4126 might to resist , 2 +80087 4126 might to resist 1 +80088 4126 to resist 2 +80089 4126 if you 've got a place in your heart for Smokey Robinson 2 +80090 4126 you 've got a place in your heart for Smokey Robinson 3 +80091 4126 've got a place in your heart for Smokey Robinson 2 +80092 4126 got a place in your heart for Smokey Robinson 3 +80093 4126 got a place in your heart 3 +80094 4126 a place in your heart 3 +80095 4126 in your heart 3 +80096 4126 for Smokey Robinson 2 +80097 4126 Smokey Robinson 2 +80098 4126 Smokey 2 +80099 4126 , this movie will worm its way there . 2 +80100 4126 this movie will worm its way there . 2 +80101 4126 will worm its way there . 2 +80102 4126 will worm its way there 3 +80103 4126 worm its way there 2 +80104 4126 worm its way 2 +80105 4126 worm 2 +80106 4127 Robert John Burke as The Monster horns in and steals the show . 3 +80107 4127 Robert John Burke as The Monster 2 +80108 4127 Robert John Burke 2 +80109 4127 John Burke 2 +80110 4127 Burke 2 +80111 4127 as The Monster 2 +80112 4127 The Monster 2 +80113 4127 horns in and steals the show . 2 +80114 4127 horns in and steals the show 2 +80115 4127 horns in and 2 +80116 4127 horns in 2 +80117 4128 The result , however well-intentioned , is ironically just the sort of disposable , kitchen-sink homage that illustrates why the whole is so often less than the sum of its parts in today 's Hollywood . 0 +80118 4128 The result , however well-intentioned , 1 +80119 4128 The result , however well-intentioned 2 +80120 4128 The result , 2 +80121 4128 however well-intentioned 2 +80122 4128 is ironically just the sort of disposable , kitchen-sink homage that illustrates why the whole is so often less than the sum of its parts in today 's Hollywood . 2 +80123 4128 is ironically just the sort of disposable , kitchen-sink homage that illustrates why the whole is so often less than the sum of its parts in today 's Hollywood 1 +80124 4128 just the sort of disposable , kitchen-sink homage that illustrates why the whole is so often less than the sum of its parts in today 's Hollywood 1 +80125 4128 of disposable , kitchen-sink homage that illustrates why the whole is so often less than the sum of its parts in today 's Hollywood 2 +80126 4128 disposable , kitchen-sink homage that illustrates why the whole is so often less than the sum of its parts in today 's Hollywood 0 +80127 4128 disposable , kitchen-sink homage 1 +80128 4128 , kitchen-sink homage 2 +80129 4128 kitchen-sink homage 1 +80130 4128 kitchen-sink 2 +80131 4128 that illustrates why the whole is so often less than the sum of its parts in today 's Hollywood 1 +80132 4128 illustrates why the whole is so often less than the sum of its parts in today 's Hollywood 1 +80133 4128 why the whole is so often less than the sum of its parts in today 's Hollywood 1 +80134 4128 the whole is so often less than the sum of its parts in today 's Hollywood 2 +80135 4128 is so often less than the sum of its parts in today 's Hollywood 0 +80136 4128 is so often less 1 +80137 4128 so often less 2 +80138 4128 often less 2 +80139 4128 than the sum of its parts in today 's Hollywood 2 +80140 4128 the sum of its parts in today 's Hollywood 3 +80141 4128 of its parts in today 's Hollywood 2 +80142 4128 its parts in today 's Hollywood 2 +80143 4128 in today 's Hollywood 2 +80144 4128 today 's Hollywood 2 +80145 4129 A movie that at its best does n't just make the most out of its characters ' flaws but insists on the virtue of imperfection . 2 +80146 4129 that at its best does n't just make the most out of its characters ' flaws but insists on the virtue of imperfection . 3 +80147 4129 that at its best 3 +80148 4129 does n't just make the most out of its characters ' flaws but insists on the virtue of imperfection . 2 +80149 4129 does n't just make the most out of its characters ' flaws but insists on the virtue of imperfection 1 +80150 4129 does n't just make the most out of its characters ' flaws but 3 +80151 4129 does n't just make the most out of its characters ' flaws 3 +80152 4129 does n't just 2 +80153 4129 make the most out of its characters ' flaws 3 +80154 4129 of its characters ' flaws 2 +80155 4129 its characters ' flaws 2 +80156 4129 insists on the virtue of imperfection 2 +80157 4129 insists 2 +80158 4129 on the virtue of imperfection 2 +80159 4129 the virtue of imperfection 2 +80160 4129 the virtue 2 +80161 4129 virtue 3 +80162 4129 of imperfection 1 +80163 4129 imperfection 2 +80164 4130 An incoherent jumble of a film that 's rarely as entertaining as it could have been . 0 +80165 4130 An incoherent jumble of a film that 's rarely as entertaining as it could have been 1 +80166 4130 An incoherent jumble 1 +80167 4130 incoherent jumble 0 +80168 4130 of a film that 's rarely as entertaining as it could have been 1 +80169 4130 a film that 's rarely as entertaining as it could have been 1 +80170 4130 that 's rarely as entertaining as it could have been 2 +80171 4130 's rarely as entertaining as it could have been 1 +80172 4130 's rarely as entertaining 2 +80173 4130 as it could have been 2 +80174 4130 it could have been 2 +80175 4130 could have been 2 +80176 4131 Is not so much a work of entertainment as it is a unique , well-crafted psychological study of grief . 4 +80177 4131 Is not so much a work of entertainment as it is a unique , well-crafted psychological study of grief 2 +80178 4131 Is not so much a work of entertainment 2 +80179 4131 Is not so much 2 +80180 4131 a work of entertainment 3 +80181 4131 of entertainment 2 +80182 4131 as it is a unique , well-crafted psychological study of grief 3 +80183 4131 it is a unique , well-crafted psychological study of grief 4 +80184 4131 is a unique , well-crafted psychological study of grief 4 +80185 4131 a unique , well-crafted psychological study of grief 3 +80186 4131 a unique , well-crafted psychological study 4 +80187 4131 unique , well-crafted psychological study 3 +80188 4131 , well-crafted psychological study 3 +80189 4131 well-crafted psychological study 3 +80190 4131 psychological study 2 +80191 4132 Just is n't as weird as it ought to be . 1 +80192 4132 is n't as weird as it ought to be . 1 +80193 4132 is n't as weird as it ought to be 1 +80194 4132 is n't as weird 2 +80195 4132 as weird 2 +80196 4132 as it ought to be 2 +80197 4132 it ought to be 2 +80198 4132 ought to be 2 +80199 4133 With Spy Kids 2 : The Island of Lost Dreams , the Spy Kids franchise establishes itself as a durable part of the movie landscape : a James Bond series for kids . 3 +80200 4133 , the Spy Kids franchise establishes itself as a durable part of the movie landscape : a James Bond series for kids . 2 +80201 4133 the Spy Kids franchise establishes itself as a durable part of the movie landscape : a James Bond series for kids . 3 +80202 4133 the Spy Kids franchise 2 +80203 4133 Spy Kids franchise 2 +80204 4133 Kids franchise 2 +80205 4133 establishes itself as a durable part of the movie landscape : a James Bond series for kids . 3 +80206 4133 establishes itself as a durable part of the movie landscape : a James Bond series for kids 3 +80207 4133 establishes itself as a durable part of the movie landscape : 3 +80208 4133 establishes itself as a durable part of the movie landscape 3 +80209 4133 establishes itself 2 +80210 4133 as a durable part of the movie landscape 3 +80211 4133 a durable part of the movie landscape 2 +80212 4133 a durable part 3 +80213 4133 durable part 2 +80214 4133 durable 3 +80215 4133 of the movie landscape 2 +80216 4133 the movie landscape 3 +80217 4133 movie landscape 2 +80218 4133 a James Bond series for kids 3 +80219 4133 a James Bond series 3 +80220 4133 James Bond series 2 +80221 4133 Bond series 2 +80222 4134 Something must have been lost in the translation . 1 +80223 4134 must have been lost in the translation . 1 +80224 4134 must have been lost in the translation 1 +80225 4134 have been lost in the translation 1 +80226 4134 been lost in the translation 1 +80227 4134 lost in the translation 1 +80228 4134 in the translation 2 +80229 4134 the translation 2 +80230 4135 Degenerates into hogwash . 0 +80231 4135 Degenerates into hogwash 1 +80232 4135 Degenerates 1 +80233 4135 into hogwash 1 +80234 4135 hogwash 0 +80235 4136 It 's a shame that the storyline and its underlying themes ... finally seem so impersonal or even shallow . 0 +80236 4136 's a shame that the storyline and its underlying themes ... finally seem so impersonal or even shallow . 1 +80237 4136 's a shame that the storyline and its underlying themes ... finally seem so impersonal or even shallow 1 +80238 4136 's a shame 1 +80239 4136 that the storyline and its underlying themes ... finally seem so impersonal or even shallow 2 +80240 4136 the storyline and its underlying themes ... finally seem so impersonal or even shallow 1 +80241 4136 the storyline and its underlying themes ... 2 +80242 4136 the storyline and its underlying themes 2 +80243 4136 the storyline and 2 +80244 4136 the storyline 2 +80245 4136 its underlying themes 2 +80246 4136 underlying themes 2 +80247 4136 finally seem so impersonal or even shallow 1 +80248 4136 seem so impersonal or even shallow 1 +80249 4136 so impersonal or even shallow 1 +80250 4136 so impersonal or 1 +80251 4136 so impersonal 1 +80252 4136 impersonal 1 +80253 4136 even shallow 1 +80254 4137 There is little question that this is a serious work by an important director who has something new to say about how , in the flip-flop of courtship , we often reel in when we should be playing out . 3 +80255 4137 is little question that this is a serious work by an important director who has something new to say about how , in the flip-flop of courtship , we often reel in when we should be playing out . 3 +80256 4137 is little question that this is a serious work by an important director who has something new to say about how , in the flip-flop of courtship , we often reel in when we should be playing out 3 +80257 4137 is little question 2 +80258 4137 little question 2 +80259 4137 that this is a serious work by an important director who has something new to say about how , in the flip-flop of courtship , we often reel in when we should be playing out 3 +80260 4137 this is a serious work by an important director who has something new to say about how , in the flip-flop of courtship , we often reel in when we should be playing out 3 +80261 4137 is a serious work by an important director who has something new to say about how , in the flip-flop of courtship , we often reel in when we should be playing out 3 +80262 4137 a serious work by an important director who has something new to say about how , in the flip-flop of courtship , we often reel in when we should be playing out 4 +80263 4137 a serious work 2 +80264 4137 serious work 2 +80265 4137 by an important director who has something new to say about how , in the flip-flop of courtship , we often reel in when we should be playing out 4 +80266 4137 an important director who has something new to say about how , in the flip-flop of courtship , we often reel in when we should be playing out 2 +80267 4137 an important director 3 +80268 4137 important director 3 +80269 4137 who has something new to say about how , in the flip-flop of courtship , we often reel in when we should be playing out 2 +80270 4137 has something new to say about how , in the flip-flop of courtship , we often reel in when we should be playing out 3 +80271 4137 something new to say about how , in the flip-flop of courtship , we often reel in when we should be playing out 2 +80272 4137 new to say about how , in the flip-flop of courtship , we often reel in when we should be playing out 2 +80273 4137 to say about how , in the flip-flop of courtship , we often reel in when we should be playing out 2 +80274 4137 say about how , in the flip-flop of courtship , we often reel in when we should be playing out 2 +80275 4137 about how , in the flip-flop of courtship , we often reel in when we should be playing out 2 +80276 4137 how , in the flip-flop of courtship , we often reel in when we should be playing out 2 +80277 4137 , in the flip-flop of courtship , we often reel in when we should be playing out 2 +80278 4137 in the flip-flop of courtship , we often reel in when we should be playing out 2 +80279 4137 in the flip-flop of courtship 2 +80280 4137 the flip-flop of courtship 2 +80281 4137 the flip-flop 2 +80282 4137 flip-flop 2 +80283 4137 of courtship 2 +80284 4137 courtship 2 +80285 4137 , we often reel in when we should be playing out 2 +80286 4137 we often reel in when we should be playing out 1 +80287 4137 often reel in when we should be playing out 2 +80288 4137 reel in when we should be playing out 1 +80289 4137 in when we should be playing out 2 +80290 4137 when we should be playing out 2 +80291 4137 we should be playing out 2 +80292 4137 should be playing out 2 +80293 4137 be playing out 2 +80294 4138 There 's some outrageously creative action in The Transporter ... -LRB- b -RRB- ut by the time Frank parachutes down onto a moving truck , it 's just another cartoon with an unstoppable superman . 1 +80295 4138 There 's some outrageously creative action in The Transporter ... -LRB- b -RRB- ut by the time Frank parachutes down onto a moving truck 3 +80296 4138 's some outrageously creative action in The Transporter ... -LRB- b -RRB- ut by the time Frank parachutes down onto a moving truck 3 +80297 4138 some outrageously creative action in The Transporter ... -LRB- b -RRB- ut by the time Frank parachutes down onto a moving truck 2 +80298 4138 some outrageously creative action in The Transporter ... 3 +80299 4138 some outrageously creative action in The Transporter 3 +80300 4138 some outrageously creative action 3 +80301 4138 outrageously creative action 4 +80302 4138 outrageously 2 +80303 4138 creative action 3 +80304 4138 in The Transporter 2 +80305 4138 -LRB- b -RRB- ut by the time Frank parachutes down onto a moving truck 2 +80306 4138 -LRB- b -RRB- 3 +80307 4138 b -RRB- 2 +80308 4138 ut by the time Frank parachutes down onto a moving truck 2 +80309 4138 ut 2 +80310 4138 by the time Frank parachutes down onto a moving truck 2 +80311 4138 the time Frank parachutes down onto a moving truck 2 +80312 4138 Frank parachutes down onto a moving truck 2 +80313 4138 parachutes down onto a moving truck 2 +80314 4138 parachutes down 2 +80315 4138 parachutes 2 +80316 4138 onto a moving truck 2 +80317 4138 a moving truck 2 +80318 4138 moving truck 2 +80319 4138 , it 's just another cartoon with an unstoppable superman . 2 +80320 4138 it 's just another cartoon with an unstoppable superman . 1 +80321 4138 's just another cartoon with an unstoppable superman . 1 +80322 4138 's just another cartoon with an unstoppable superman 2 +80323 4138 another cartoon with an unstoppable superman 2 +80324 4138 another cartoon 2 +80325 4138 with an unstoppable superman 2 +80326 4138 an unstoppable superman 2 +80327 4138 unstoppable superman 4 +80328 4138 unstoppable 3 +80329 4139 ... a rich and intelligent film that uses its pulpy core conceit to probe questions of attraction and interdependence and how the heart accomodates practical needs . 4 +80330 4139 a rich and intelligent film that uses its pulpy core conceit to probe questions of attraction and interdependence and how the heart accomodates practical needs . 4 +80331 4139 a rich and intelligent film that uses its pulpy core conceit to probe questions of attraction and interdependence and how the heart accomodates practical 4 +80332 4139 a rich and intelligent film 3 +80333 4139 rich and intelligent film 3 +80334 4139 rich and intelligent 4 +80335 4139 that uses its pulpy core conceit to probe questions of attraction and interdependence and how the heart accomodates practical 2 +80336 4139 that uses its pulpy core conceit to probe questions of attraction and interdependence and 2 +80337 4139 that uses its pulpy core conceit to probe questions of attraction and interdependence 3 +80338 4139 uses its pulpy core conceit to probe questions of attraction and interdependence 2 +80339 4139 uses its pulpy core conceit 1 +80340 4139 its pulpy core conceit 1 +80341 4139 pulpy core conceit 1 +80342 4139 core conceit 2 +80343 4139 to probe questions of attraction and interdependence 3 +80344 4139 probe questions of attraction and interdependence 3 +80345 4139 probe questions 2 +80346 4139 of attraction and interdependence 3 +80347 4139 attraction and interdependence 3 +80348 4139 attraction and 2 +80349 4139 interdependence 2 +80350 4139 how the heart accomodates practical 2 +80351 4139 the heart accomodates practical 2 +80352 4139 accomodates practical 2 +80353 4139 accomodates 2 +80354 4139 practical 2 +80355 4139 needs . 2 +80356 4140 ... a cheap , ludicrous attempt at serious horror . 0 +80357 4140 a cheap , ludicrous attempt at serious horror . 0 +80358 4140 a cheap , ludicrous attempt at serious horror 1 +80359 4140 a cheap , ludicrous attempt 0 +80360 4140 cheap , ludicrous attempt 0 +80361 4140 , ludicrous attempt 2 +80362 4140 ludicrous attempt 0 +80363 4140 at serious horror 2 +80364 4140 serious horror 2 +80365 4141 I ca n't say this enough : This movie is about an adult male dressed in pink jammies . 1 +80366 4141 I ca n't say this enough : This movie is about an adult male dressed in pink jammies 2 +80367 4141 I ca n't say this enough : 2 +80368 4141 I ca n't say this enough 2 +80369 4141 ca n't say this enough 2 +80370 4141 say this enough 2 +80371 4141 this enough 2 +80372 4141 This movie is about an adult male dressed in pink jammies 1 +80373 4141 is about an adult male dressed in pink jammies 2 +80374 4141 about an adult male dressed in pink jammies 1 +80375 4141 an adult male dressed in pink jammies 2 +80376 4141 an adult male 2 +80377 4141 adult male 2 +80378 4141 dressed in pink jammies 2 +80379 4141 in pink jammies 2 +80380 4141 pink jammies 2 +80381 4141 pink 2 +80382 4141 jammies 2 +80383 4142 Every so often a film comes along that is so insanely stupid , so awful in so many ways that watching it leaves you giddy . 1 +80384 4142 Every so often a film 2 +80385 4142 so often a film 2 +80386 4142 so often a 2 +80387 4142 comes along that is so insanely stupid , so awful in so many ways that watching it leaves you giddy . 1 +80388 4142 comes along that is so insanely stupid , so awful in so many ways that watching it leaves you giddy 1 +80389 4142 comes along 2 +80390 4142 that is so insanely stupid , so awful in so many ways that watching it leaves you giddy 1 +80391 4142 is so insanely stupid , so awful in so many ways that watching it leaves you giddy 1 +80392 4142 is so insanely stupid , so awful in so many ways 0 +80393 4142 so insanely stupid , so awful in so many ways 0 +80394 4142 so insanely stupid , so awful 0 +80395 4142 so insanely stupid , 1 +80396 4142 so insanely stupid 0 +80397 4142 insanely stupid 0 +80398 4142 so awful 1 +80399 4142 in so many ways 2 +80400 4142 so many ways 2 +80401 4142 that watching it leaves you giddy 3 +80402 4142 watching it leaves you giddy 3 +80403 4142 leaves you giddy 3 +80404 4142 you giddy 2 +80405 4143 It 's the kind of effectively creepy-scary thriller that has you fixating on a far corner of the screen at times because your nerves just ca n't take it any more . 4 +80406 4143 's the kind of effectively creepy-scary thriller that has you fixating on a far corner of the screen at times because your nerves just ca n't take it any more . 2 +80407 4143 's the kind of effectively creepy-scary thriller that has you fixating on a far corner of the screen at times because your nerves just ca n't take it any more 3 +80408 4143 the kind of effectively creepy-scary thriller that has you fixating on a far corner of the screen at times because your nerves just ca n't take it any more 3 +80409 4143 the kind of effectively creepy-scary thriller 3 +80410 4143 of effectively creepy-scary thriller 2 +80411 4143 effectively creepy-scary thriller 4 +80412 4143 creepy-scary thriller 3 +80413 4143 creepy-scary 3 +80414 4143 that has you fixating on a far corner of the screen at times because your nerves just ca n't take it any more 2 +80415 4143 has you fixating on a far corner of the screen at times because your nerves just ca n't take it any more 1 +80416 4143 you fixating on a far corner of the screen at times because your nerves just ca n't take it any more 2 +80417 4143 fixating on a far corner of the screen at times because your nerves just ca n't take it any more 1 +80418 4143 fixating on a far corner of the screen at times 3 +80419 4143 fixating 3 +80420 4143 on a far corner of the screen at times 2 +80421 4143 a far corner of the screen at times 2 +80422 4143 a far corner 2 +80423 4143 far corner 2 +80424 4143 of the screen at times 2 +80425 4143 the screen at times 2 +80426 4143 because your nerves just ca n't take it any more 1 +80427 4143 your nerves just ca n't take it any more 2 +80428 4143 your nerves 2 +80429 4143 nerves 2 +80430 4143 just ca n't take it any more 1 +80431 4143 ca n't take it any more 2 +80432 4143 take it any more 2 +80433 4144 Except as an acting exercise or an exceptionally dark joke , you wonder what anyone saw in this film that allowed it to get made . 2 +80434 4144 Except as an acting exercise or an exceptionally dark joke 2 +80435 4144 as an acting exercise or an exceptionally dark joke 2 +80436 4144 an acting exercise or an exceptionally dark joke 1 +80437 4144 an acting exercise or 2 +80438 4144 an acting exercise 2 +80439 4144 acting exercise 2 +80440 4144 an exceptionally dark joke 2 +80441 4144 exceptionally dark joke 2 +80442 4144 exceptionally dark 2 +80443 4144 , you wonder what anyone saw in this film that allowed it to get made . 0 +80444 4144 you wonder what anyone saw in this film that allowed it to get made . 0 +80445 4144 wonder what anyone saw in this film that allowed it to get made . 0 +80446 4144 wonder what anyone saw in this film that allowed it to get made 0 +80447 4144 what anyone saw in this film that allowed it to get made 0 +80448 4144 anyone saw in this film that allowed it to get made 0 +80449 4144 saw in this film that allowed it to get made 2 +80450 4144 in this film that allowed it to get made 2 +80451 4144 this film that allowed it to get made 2 +80452 4144 that allowed it to get made 1 +80453 4144 allowed it to get made 2 +80454 4144 allowed 2 +80455 4144 it to get made 2 +80456 4144 to get made 2 +80457 4144 get made 2 +80458 4145 If S&M seems like a strange route to true love , maybe it is , but it 's to this film 's -LRB- and its makers ' -RRB- credit that we believe that that 's exactly what these two people need to find each other -- and themselves . 3 +80459 4145 If S&M seems like a strange route to true love , maybe it is , but it 's to this film 's -LRB- and its makers ' -RRB- credit that we believe that that 's exactly what these two people need to find each other -- and themselves 3 +80460 4145 If S&M seems like a strange route to true love , maybe it is , but 2 +80461 4145 If S&M seems like a strange route to true love , maybe it is , 2 +80462 4145 If S&M seems like a strange route to true love , maybe it is 2 +80463 4145 If S&M seems like a strange route to true love 2 +80464 4145 S&M seems like a strange route to true love 2 +80465 4145 S&M 3 +80466 4145 seems like a strange route to true love 2 +80467 4145 seems like a strange route 2 +80468 4145 like a strange route 2 +80469 4145 a strange route 2 +80470 4145 strange route 2 +80471 4145 route 2 +80472 4145 to true love 2 +80473 4145 true love 4 +80474 4145 , maybe it is 2 +80475 4145 maybe it is 2 +80476 4145 it 's to this film 's -LRB- and its makers ' -RRB- credit that we believe that that 's exactly what these two people need to find each other -- and themselves 2 +80477 4145 's to this film 's -LRB- and its makers ' -RRB- credit that we believe that that 's exactly what these two people need to find each other -- and themselves 3 +80478 4145 's to this film 's -LRB- and its makers ' -RRB- 2 +80479 4145 to this film 's -LRB- and its makers ' -RRB- 2 +80480 4145 to this film 's 2 +80481 4145 -LRB- and its makers ' -RRB- 2 +80482 4145 and its makers ' -RRB- 2 +80483 4145 and its makers ' 2 +80484 4145 its makers ' 2 +80485 4145 makers ' 2 +80486 4145 credit that we believe that that 's exactly what these two people need to find each other -- and themselves 2 +80487 4145 credit that we believe that that 's exactly what these two people need to find each other -- and 2 +80488 4145 credit that we believe that that 's exactly what these two people need to find each other -- 2 +80489 4145 credit that we believe that that 's exactly what these two people need to find each other 2 +80490 4145 that we believe that that 's exactly what these two people need to find each other 3 +80491 4145 we believe that that 's exactly what these two people need to find each other 2 +80492 4145 believe that that 's exactly what these two people need to find each other 2 +80493 4145 that that 's exactly what these two people need to find each other 3 +80494 4145 that 's exactly what these two people need to find each other 4 +80495 4145 's exactly what these two people need to find each other 3 +80496 4145 exactly what these two people need to find each other 2 +80497 4145 these two people need to find each other 2 +80498 4145 these two people 2 +80499 4145 two people 2 +80500 4145 need to find each other 2 +80501 4145 to find each other 2 +80502 4145 find each other 2 +80503 4146 A dark , quirky road movie that constantly defies expectation . 4 +80504 4146 A dark , quirky road movie that constantly defies expectation 3 +80505 4146 A dark , 2 +80506 4146 A dark 2 +80507 4146 quirky road movie that constantly defies expectation 3 +80508 4146 quirky road movie 2 +80509 4146 that constantly defies expectation 3 +80510 4146 constantly defies expectation 4 +80511 4146 defies expectation 4 +80512 4147 Scott Baio is turning in some delightful work on indie projects . 3 +80513 4147 Scott Baio 2 +80514 4147 Baio 2 +80515 4147 is turning in some delightful work on indie projects . 4 +80516 4147 is turning in some delightful work on indie projects 3 +80517 4147 turning in some delightful work on indie projects 3 +80518 4147 in some delightful work on indie projects 3 +80519 4147 some delightful work on indie projects 3 +80520 4147 some delightful work 3 +80521 4147 delightful work 4 +80522 4147 on indie projects 2 +80523 4147 indie projects 2 +80524 4148 A frustrating yet deeply watchable melodrama that makes you think it 's a tougher picture than it is . 2 +80525 4148 A frustrating yet deeply watchable melodrama that makes you 3 +80526 4148 A frustrating yet deeply watchable melodrama 3 +80527 4148 frustrating yet deeply watchable melodrama 3 +80528 4148 frustrating yet deeply watchable 2 +80529 4148 frustrating yet 1 +80530 4148 deeply watchable 4 +80531 4148 that makes you 2 +80532 4148 makes you 2 +80533 4148 think it 's a tougher picture than it is . 1 +80534 4148 think it 's a tougher picture than it is 1 +80535 4148 it 's a tougher picture than it is 2 +80536 4148 's a tougher picture than it is 2 +80537 4148 's a tougher picture 2 +80538 4148 a tougher picture 3 +80539 4148 tougher picture 2 +80540 4149 Enchanted with low-life tragedy and liberally seasoned with emotional outbursts ... What is sorely missing , however , is the edge of wild , lunatic invention that we associate with Cage 's best acting . 2 +80541 4149 Enchanted with low-life tragedy and liberally seasoned with emotional outbursts ... What is sorely missing , however , is the edge of wild , lunatic invention that we associate with Cage 's best acting 2 +80542 4149 Enchanted with low-life tragedy and liberally seasoned with emotional outbursts ... 2 +80543 4149 Enchanted with low-life tragedy and liberally seasoned with emotional outbursts 2 +80544 4149 Enchanted with low-life tragedy and 2 +80545 4149 Enchanted with low-life tragedy 2 +80546 4149 Enchanted 4 +80547 4149 with low-life tragedy 2 +80548 4149 low-life tragedy 1 +80549 4149 low-life 1 +80550 4149 liberally seasoned with emotional outbursts 3 +80551 4149 liberally seasoned 2 +80552 4149 liberally 2 +80553 4149 seasoned 2 +80554 4149 with emotional outbursts 2 +80555 4149 emotional outbursts 2 +80556 4149 outbursts 2 +80557 4149 What is sorely missing , however , is the edge of wild , lunatic invention that we associate with Cage 's best acting 1 +80558 4149 What is sorely missing 1 +80559 4149 is sorely missing 1 +80560 4149 is sorely 2 +80561 4149 sorely 2 +80562 4149 , however , is the edge of wild , lunatic invention that we associate with Cage 's best acting 3 +80563 4149 however , is the edge of wild , lunatic invention that we associate with Cage 's best acting 2 +80564 4149 , is the edge of wild , lunatic invention that we associate with Cage 's best acting 3 +80565 4149 is the edge of wild , lunatic invention that we associate with Cage 's best acting 3 +80566 4149 is the edge of wild , lunatic invention 2 +80567 4149 the edge of wild , lunatic invention 3 +80568 4149 of wild , lunatic invention 2 +80569 4149 wild , lunatic invention 1 +80570 4149 , lunatic invention 2 +80571 4149 lunatic invention 2 +80572 4149 that we associate with Cage 's best acting 3 +80573 4149 we associate with Cage 's best acting 3 +80574 4149 associate with Cage 's best acting 3 +80575 4149 associate 2 +80576 4149 with Cage 's best acting 3 +80577 4149 Cage 's best acting 4 +80578 4149 Cage 's 2 +80579 4149 best acting 3 +80580 4150 Impostor ca n't think of a thing to do with these characters except have them run through dark tunnels , fight off various anonymous attackers , and evade elaborate surveillance technologies . 1 +80581 4150 ca n't think of a thing to do with these characters except have them run through dark tunnels , fight off various anonymous attackers , and evade elaborate surveillance technologies . 1 +80582 4150 ca n't think of a thing to do with these characters except have them run through dark tunnels , fight off various anonymous attackers , and evade elaborate surveillance technologies 1 +80583 4150 think of a thing to do with these characters except have them run through dark tunnels , fight off various anonymous attackers , and evade elaborate surveillance technologies 2 +80584 4150 of a thing to do with these characters except have them run through dark tunnels , fight off various anonymous attackers , and evade elaborate surveillance technologies 2 +80585 4150 a thing to do with these characters except have them run through dark tunnels , fight off various anonymous attackers , and evade elaborate surveillance technologies 1 +80586 4150 thing to do with these characters except have them run through dark tunnels , fight off various anonymous attackers , and evade elaborate surveillance technologies 1 +80587 4150 to do with these characters except have them run through dark tunnels , fight off various anonymous attackers , and evade elaborate surveillance technologies 2 +80588 4150 do with these characters except have them run through dark tunnels , fight off various anonymous attackers , and evade elaborate surveillance technologies 1 +80589 4150 do with these characters 2 +80590 4150 with these characters 2 +80591 4150 except have them run through dark tunnels , fight off various anonymous attackers , and evade elaborate surveillance technologies 2 +80592 4150 have them run through dark tunnels , fight off various anonymous attackers , and evade elaborate surveillance technologies 2 +80593 4150 them run through dark tunnels , fight off various anonymous attackers , and evade elaborate surveillance technologies 2 +80594 4150 run through dark tunnels , fight off various anonymous attackers , and evade elaborate surveillance technologies 2 +80595 4150 run through dark tunnels , fight off various anonymous attackers , and 2 +80596 4150 run through dark tunnels , fight off various anonymous attackers , 2 +80597 4150 run through dark tunnels , fight off various anonymous attackers 2 +80598 4150 run through dark tunnels , 2 +80599 4150 run through dark tunnels 2 +80600 4150 through dark tunnels 2 +80601 4150 dark tunnels 2 +80602 4150 tunnels 2 +80603 4150 fight off various anonymous attackers 2 +80604 4150 fight off 2 +80605 4150 various anonymous attackers 2 +80606 4150 anonymous attackers 2 +80607 4150 attackers 2 +80608 4150 evade elaborate surveillance technologies 2 +80609 4150 evade 2 +80610 4150 elaborate surveillance technologies 2 +80611 4150 surveillance technologies 2 +80612 4150 surveillance 2 +80613 4150 technologies 2 +80614 4151 The 50-something lovebirds are too immature and unappealing to care about . 0 +80615 4151 The 50-something lovebirds 2 +80616 4151 50-something lovebirds 2 +80617 4151 50-something 2 +80618 4151 lovebirds 2 +80619 4151 are too immature and unappealing to care about . 1 +80620 4151 are too immature and unappealing to care about 0 +80621 4151 too immature and unappealing to care about 0 +80622 4151 immature and unappealing to care about 0 +80623 4151 immature and unappealing 0 +80624 4151 immature and 1 +80625 4151 unappealing 0 +80626 4152 A life-size reenactment of those Jack Chick cartoon tracts that always ended with some hippie getting tossed into the lake of fire . 2 +80627 4152 A life-size reenactment of those Jack Chick cartoon tracts that always ended with some hippie getting 2 +80628 4152 A life-size reenactment 2 +80629 4152 life-size reenactment 2 +80630 4152 life-size 2 +80631 4152 reenactment 2 +80632 4152 of those Jack Chick cartoon tracts that always ended with some hippie getting 2 +80633 4152 those Jack Chick cartoon tracts that always ended with some hippie getting 2 +80634 4152 those Jack Chick cartoon tracts 2 +80635 4152 Jack Chick cartoon tracts 2 +80636 4152 Chick cartoon tracts 2 +80637 4152 cartoon tracts 2 +80638 4152 tracts 2 +80639 4152 that always ended with some hippie getting 2 +80640 4152 always ended with some hippie getting 2 +80641 4152 ended with some hippie getting 2 +80642 4152 with some hippie getting 2 +80643 4152 some hippie getting 2 +80644 4152 some hippie 2 +80645 4152 hippie 2 +80646 4152 tossed into the lake of fire . 2 +80647 4152 tossed into the lake of fire 2 +80648 4152 into the lake of fire 2 +80649 4152 the lake of fire 2 +80650 4152 the lake 2 +80651 4152 lake 2 +80652 4153 Eyre is on his way to becoming the American Indian Spike Lee . 3 +80653 4153 is on his way to becoming the American Indian Spike Lee . 4 +80654 4153 is on his way to becoming the American Indian Spike Lee 3 +80655 4153 on his way to becoming the American Indian Spike Lee 3 +80656 4153 his way to becoming the American Indian Spike Lee 3 +80657 4153 to becoming the American Indian Spike Lee 2 +80658 4153 becoming the American Indian Spike Lee 2 +80659 4153 the American Indian Spike Lee 2 +80660 4153 American Indian Spike Lee 2 +80661 4153 Indian Spike Lee 2 +80662 4153 Spike Lee 2 +80663 4153 Spike 2 +80664 4154 Set in a 1986 Harlem that does n't look much like anywhere in New York . 1 +80665 4154 Set in a 1986 Harlem that does n't look much like anywhere in New York 1 +80666 4154 in a 1986 Harlem that does n't look much like anywhere in New York 2 +80667 4154 a 1986 Harlem that does n't look much like anywhere in New York 1 +80668 4154 a 1986 Harlem 2 +80669 4154 1986 Harlem 2 +80670 4154 1986 2 +80671 4154 Harlem 2 +80672 4154 that does n't look much like anywhere in New York 2 +80673 4154 does n't look much like anywhere in New York 2 +80674 4154 look much like anywhere in New York 2 +80675 4154 look much like anywhere 2 +80676 4154 much like anywhere 2 +80677 4154 like anywhere 2 +80678 4154 in New York 2 +80679 4155 A well-crafted letdown . 1 +80680 4155 well-crafted letdown . 1 +80681 4156 An unusually dry-eyed , even analytical approach to material that is generally played for maximum moisture . 3 +80682 4156 An unusually dry-eyed , even analytical approach to material that is generally 3 +80683 4156 An unusually dry-eyed , even analytical approach 2 +80684 4156 unusually dry-eyed , even analytical approach 1 +80685 4156 unusually dry-eyed 2 +80686 4156 dry-eyed 2 +80687 4156 , even analytical approach 2 +80688 4156 even analytical approach 2 +80689 4156 even analytical 2 +80690 4156 to material that is generally 2 +80691 4156 material that is generally 2 +80692 4156 that is generally 2 +80693 4156 played for maximum moisture . 2 +80694 4156 played for maximum moisture 3 +80695 4156 for maximum moisture 2 +80696 4156 maximum moisture 2 +80697 4156 moisture 2 +80698 4157 an appalling ` Ace Ventura ' rip-off that somehow manages to bring together Kevin Pollak , former wrestler Chyna and Dolly Parton . 0 +80699 4157 an appalling ` Ace Ventura ' rip-off that somehow manages to bring together Kevin Pollak , former wrestler Chyna and Dolly Parton 1 +80700 4157 an appalling ` Ace Ventura ' rip-off 0 +80701 4157 appalling ` Ace Ventura ' rip-off 0 +80702 4157 ` Ace Ventura ' rip-off 1 +80703 4157 Ace Ventura ' rip-off 0 +80704 4157 Ace Ventura 2 +80705 4157 Ace 2 +80706 4157 Ventura 2 +80707 4157 ' rip-off 0 +80708 4157 that somehow manages to bring together Kevin Pollak , former wrestler Chyna and Dolly Parton 1 +80709 4157 somehow manages to bring together Kevin Pollak , former wrestler Chyna and Dolly Parton 3 +80710 4157 manages to bring together Kevin Pollak , former wrestler Chyna and Dolly Parton 2 +80711 4157 to bring together Kevin Pollak , former wrestler Chyna and Dolly Parton 2 +80712 4157 bring together Kevin Pollak , former wrestler Chyna and Dolly Parton 2 +80713 4157 bring together 2 +80714 4157 Kevin Pollak , former wrestler Chyna and Dolly Parton 2 +80715 4157 Kevin Pollak , former wrestler Chyna and 2 +80716 4157 Kevin Pollak , former wrestler Chyna 2 +80717 4157 Kevin Pollak , 2 +80718 4157 Kevin Pollak 2 +80719 4157 Pollak 2 +80720 4157 former wrestler Chyna 2 +80721 4157 wrestler Chyna 2 +80722 4157 wrestler 2 +80723 4157 Chyna 2 +80724 4157 Dolly Parton 2 +80725 4157 Dolly 2 +80726 4157 Parton 2 +80727 4158 I simply ca n't recommend it enough . 3 +80728 4158 simply ca n't recommend it enough . 4 +80729 4158 ca n't recommend it enough . 4 +80730 4158 ca n't recommend it enough 4 +80731 4158 recommend it enough 3 +80732 4158 it enough 2 +80733 4159 There 's lots of cool stuff packed into ESPN 's Ultimate X. 3 +80734 4159 's lots of cool stuff packed into ESPN 's Ultimate X. 4 +80735 4159 lots of cool stuff packed into ESPN 's Ultimate X. 4 +80736 4159 of cool stuff packed into ESPN 's Ultimate X. 3 +80737 4159 cool stuff packed into ESPN 's Ultimate X. 4 +80738 4159 cool stuff 3 +80739 4159 packed into ESPN 's Ultimate X. 2 +80740 4159 into ESPN 's Ultimate X. 2 +80741 4159 ESPN 's Ultimate X. 2 +80742 4159 ESPN 's 2 +80743 4159 Ultimate X. 2 +80744 4159 X. 2 +80745 4160 A negligible British comedy . 1 +80746 4160 negligible British comedy . 1 +80747 4160 British comedy . 3 +80748 4161 Do n't even bother to rent this on video . 0 +80749 4161 Do n't even bother to rent this on video 0 +80750 4161 even bother to rent this on video 1 +80751 4161 bother to rent this on video 1 +80752 4161 to rent this on video 2 +80753 4161 rent this on video 3 +80754 4161 this on video 2 +80755 4162 In addition to scoring high for originality of plot -- putting together familiar themes of family , forgiveness and love in a new way -- Lilo & Stitch has a number of other assets to commend it to movie audiences both innocent and jaded . 4 +80756 4162 In addition to scoring high for originality of plot 4 +80757 4162 addition to scoring high for originality of plot 3 +80758 4162 to scoring high for originality of plot 4 +80759 4162 scoring high for originality of plot 3 +80760 4162 scoring high 3 +80761 4162 scoring 3 +80762 4162 for originality of plot 3 +80763 4162 originality of plot 3 +80764 4162 -- putting together familiar themes of family , forgiveness and love in a new way -- Lilo & Stitch has a number of other assets to commend it to movie audiences both innocent and jaded . 3 +80765 4162 -- putting together familiar themes of family , forgiveness and love in a new way -- 2 +80766 4162 putting together familiar themes of family , forgiveness and love in a new way -- 3 +80767 4162 putting together familiar themes of family , forgiveness and love in a new way 3 +80768 4162 putting together familiar themes of family , forgiveness and love 3 +80769 4162 together familiar themes of family , forgiveness and love 4 +80770 4162 together familiar themes 3 +80771 4162 together familiar 2 +80772 4162 of family , forgiveness and love 3 +80773 4162 family , forgiveness and love 3 +80774 4162 , forgiveness and love 2 +80775 4162 forgiveness and love 3 +80776 4162 forgiveness and 2 +80777 4162 forgiveness 2 +80778 4162 in a new way 3 +80779 4162 a new way 2 +80780 4162 new way 2 +80781 4162 Lilo & Stitch has a number of other assets to commend it to movie audiences both innocent and jaded . 3 +80782 4162 has a number of other assets to commend it to movie audiences both innocent and jaded . 3 +80783 4162 has a number of other assets to commend it to movie audiences both innocent and jaded 3 +80784 4162 a number of other assets to commend it to movie audiences both innocent and jaded 3 +80785 4162 a number of other assets 2 +80786 4162 of other assets 2 +80787 4162 other assets 2 +80788 4162 assets 2 +80789 4162 to commend it to movie audiences both innocent and jaded 3 +80790 4162 commend it to movie audiences both innocent and jaded 2 +80791 4162 commend it 2 +80792 4162 commend 2 +80793 4162 to movie audiences both innocent and jaded 2 +80794 4162 movie audiences both innocent and jaded 1 +80795 4162 movie audiences 2 +80796 4162 both innocent and jaded 3 +80797 4162 innocent and jaded 2 +80798 4162 innocent and 3 +80799 4163 Faithful without being forceful , sad without being shrill , `` A Walk to Remember '' succeeds through sincerity . 3 +80800 4163 Faithful without being forceful , sad without being shrill , `` A Walk to Remember '' 3 +80801 4163 Faithful without being forceful , sad without being shrill , 4 +80802 4163 Faithful without being forceful , sad without being shrill 3 +80803 4163 without being forceful , sad without being shrill 3 +80804 4163 being forceful , sad without being shrill 3 +80805 4163 being forceful , sad 2 +80806 4163 forceful , sad 2 +80807 4163 forceful , 2 +80808 4163 forceful 2 +80809 4163 without being shrill 3 +80810 4163 being shrill 2 +80811 4163 `` A Walk to Remember '' 2 +80812 4163 A Walk to Remember '' 3 +80813 4163 Walk to Remember '' 3 +80814 4163 succeeds through sincerity . 3 +80815 4163 succeeds through sincerity 3 +80816 4163 through sincerity 3 +80817 4164 A passionately inquisitive film determined to uncover the truth and hopefully inspire action . 4 +80818 4164 A passionately inquisitive film 4 +80819 4164 passionately inquisitive film 2 +80820 4164 passionately 3 +80821 4164 inquisitive film 3 +80822 4164 determined to uncover the truth and hopefully inspire action . 2 +80823 4164 determined to uncover the truth and hopefully inspire action 3 +80824 4164 to uncover the truth and hopefully inspire action 2 +80825 4164 uncover the truth and hopefully inspire action 2 +80826 4164 uncover the truth and 2 +80827 4164 uncover the truth 2 +80828 4164 uncover 2 +80829 4164 hopefully inspire action 3 +80830 4164 inspire action 2 +80831 4165 We want the funk - and this movie 's got it . 3 +80832 4165 We want the funk - and this movie 's got it 4 +80833 4165 We want the funk - and 2 +80834 4165 We want the funk - 2 +80835 4165 We want the funk 2 +80836 4165 want the funk 2 +80837 4165 the funk 2 +80838 4165 this movie 's got it 3 +80839 4165 's got it 2 +80840 4165 got it 2 +80841 4166 The best of the Pierce Brosnan James Bond films to date . 3 +80842 4166 The best of the Pierce Brosnan James Bond 3 +80843 4166 of the Pierce Brosnan James Bond 2 +80844 4166 the Pierce Brosnan James Bond 2 +80845 4166 Pierce Brosnan James Bond 2 +80846 4166 Pierce 2 +80847 4166 Brosnan James Bond 2 +80848 4166 films to date . 2 +80849 4166 films to date 2 +80850 4166 to date 2 +80851 4167 A decidedly mixed bag . 2 +80852 4167 A decidedly mixed bag 2 +80853 4167 decidedly mixed bag 1 +80854 4167 decidedly mixed 2 +80855 4168 This is Sandler running on empty , repeating what he 's already done way too often . 1 +80856 4168 is Sandler running on empty , repeating what he 's already done way too often . 0 +80857 4168 is Sandler running on empty , repeating what he 's already done way too often 1 +80858 4168 Sandler running on empty , repeating what he 's already done way too often 1 +80859 4168 running on empty , repeating what he 's already done way too often 1 +80860 4168 running on empty , 1 +80861 4168 running on empty 1 +80862 4168 on empty 2 +80863 4168 repeating what he 's already done way too often 1 +80864 4168 repeating 3 +80865 4168 what he 's already done way too often 1 +80866 4168 he 's already done way too often 0 +80867 4168 's already done way too often 1 +80868 4168 done way too often 1 +80869 4168 way too often 2 +80870 4169 I like my Christmas movies with more elves and snow and less pimps and ho 's . 0 +80871 4169 like my Christmas movies with more elves and snow and less pimps and ho 's . 1 +80872 4169 like my Christmas movies with more elves and snow and less pimps and ho 's 2 +80873 4169 like my Christmas movies 2 +80874 4169 my Christmas movies 2 +80875 4169 Christmas movies 2 +80876 4169 with more elves and snow and less pimps and ho 's 2 +80877 4169 more elves and snow and less pimps and ho 's 2 +80878 4169 more elves and snow and 1 +80879 4169 more elves and snow 2 +80880 4169 elves and snow 2 +80881 4169 elves and 2 +80882 4169 elves 2 +80883 4169 less pimps and ho 's 2 +80884 4169 less pimps and 2 +80885 4169 less pimps 2 +80886 4169 pimps 2 +80887 4169 ho 's 2 +80888 4169 ho 2 +80889 4170 Their parents would do well to cram earplugs in their ears and put pillowcases over their heads for 87 minutes . 0 +80890 4170 would do well to cram earplugs in their ears and put pillowcases over their heads for 87 minutes . 0 +80891 4170 would do well to cram earplugs in their ears and put pillowcases over their heads for 87 minutes 0 +80892 4170 do well to cram earplugs in their ears and put pillowcases over their heads for 87 minutes 0 +80893 4170 do well to cram earplugs in their ears and 1 +80894 4170 do well to cram earplugs in their ears 1 +80895 4170 do well to cram earplugs 1 +80896 4170 well to cram earplugs 1 +80897 4170 to cram earplugs 1 +80898 4170 cram earplugs 1 +80899 4170 earplugs 2 +80900 4170 in their ears 2 +80901 4170 their ears 2 +80902 4170 put pillowcases over their heads for 87 minutes 1 +80903 4170 put pillowcases over their heads 2 +80904 4170 pillowcases over their heads 2 +80905 4170 pillowcases 2 +80906 4170 over their heads 2 +80907 4170 their heads 2 +80908 4170 for 87 minutes 2 +80909 4170 87 minutes 2 +80910 4170 87 2 +80911 4171 ... Blade II is still top-heavy with blazing guns , cheatfully filmed martial arts , disintegrating bloodsucker computer effects and jagged camera moves that serve no other purpose than to call attention to themselves . 0 +80912 4171 Blade II is still top-heavy with blazing guns , cheatfully filmed martial arts , disintegrating bloodsucker computer effects and jagged camera moves that serve no other purpose than to call attention to themselves . 1 +80913 4171 is still top-heavy with blazing guns , cheatfully filmed martial arts , disintegrating bloodsucker computer effects and jagged camera moves that serve no other purpose than to call attention to themselves . 0 +80914 4171 is still top-heavy with blazing guns , cheatfully filmed martial arts , disintegrating bloodsucker computer effects and jagged camera moves that serve no other purpose than to call attention to themselves 1 +80915 4171 top-heavy with blazing guns , cheatfully filmed martial arts , disintegrating bloodsucker computer effects and jagged camera moves that serve no other purpose than to call attention to themselves 2 +80916 4171 top-heavy 1 +80917 4171 with blazing guns , cheatfully filmed martial arts , disintegrating bloodsucker computer effects and jagged camera moves that serve no other purpose than to call attention to themselves 1 +80918 4171 blazing guns , cheatfully filmed martial arts , disintegrating bloodsucker computer effects and jagged camera moves that serve no other purpose than to call attention to themselves 0 +80919 4171 blazing 3 +80920 4171 guns , cheatfully filmed martial arts , disintegrating bloodsucker computer effects and jagged camera moves that serve no other purpose than to call attention to themselves 1 +80921 4171 guns , cheatfully filmed martial arts , disintegrating bloodsucker computer effects and jagged camera moves 1 +80922 4171 guns , cheatfully filmed martial arts , 2 +80923 4171 guns , cheatfully filmed martial arts 1 +80924 4171 guns , 2 +80925 4171 cheatfully filmed martial arts 2 +80926 4171 cheatfully 1 +80927 4171 filmed martial arts 2 +80928 4171 disintegrating bloodsucker computer effects and jagged camera moves 1 +80929 4171 disintegrating bloodsucker computer effects and 1 +80930 4171 disintegrating bloodsucker computer effects 1 +80931 4171 bloodsucker computer effects 3 +80932 4171 bloodsucker 2 +80933 4171 computer effects 2 +80934 4171 jagged camera moves 1 +80935 4171 jagged 2 +80936 4171 camera moves 2 +80937 4171 that serve no other purpose than to call attention to themselves 1 +80938 4171 serve no other purpose than to call attention to themselves 1 +80939 4171 serve no other purpose 1 +80940 4171 no other purpose 1 +80941 4171 other purpose 2 +80942 4171 than to call attention to themselves 3 +80943 4171 to call attention to themselves 2 +80944 4171 call attention to themselves 2 +80945 4171 call attention 2 +80946 4171 to themselves 2 +80947 4172 A spiffy animated feature about an unruly adolescent boy who is yearning for adventure and a chance to prove his worth . 3 +80948 4172 A spiffy animated feature about an unruly adolescent boy who is yearning for adventure and a chance to prove his worth 3 +80949 4172 A spiffy animated feature 3 +80950 4172 spiffy animated feature 3 +80951 4172 about an unruly adolescent boy who is yearning for adventure and a chance to prove his worth 3 +80952 4172 an unruly adolescent boy who is yearning for adventure and a chance to prove his worth 2 +80953 4172 an unruly adolescent boy 3 +80954 4172 unruly adolescent boy 2 +80955 4172 adolescent boy 2 +80956 4172 who is yearning for adventure and a chance to prove his worth 2 +80957 4172 is yearning for adventure and a chance to prove his worth 2 +80958 4172 yearning for adventure and a chance to prove his worth 3 +80959 4172 yearning for adventure and 2 +80960 4172 yearning for adventure 2 +80961 4172 for adventure 2 +80962 4172 a chance to prove his worth 2 +80963 4172 chance to prove his worth 3 +80964 4172 to prove his worth 2 +80965 4172 prove his worth 2 +80966 4172 his worth 2 +80967 4173 Everything 's serious , poetic , earnest and -- sadly -- dull . 1 +80968 4173 's serious , poetic , earnest and -- sadly -- dull . 1 +80969 4173 's serious , poetic , earnest and -- sadly -- dull 0 +80970 4173 serious , poetic , earnest and -- sadly -- dull 2 +80971 4173 , poetic , earnest and -- sadly -- dull 1 +80972 4173 poetic , earnest and -- sadly -- dull 2 +80973 4173 , earnest and -- sadly -- dull 1 +80974 4173 earnest and -- sadly -- dull 2 +80975 4173 and -- sadly -- dull 0 +80976 4173 -- sadly -- dull 1 +80977 4173 -- sadly -- 1 +80978 4173 sadly -- 1 +80979 4174 Nothing here seems as funny as it did in Analyze This , not even Joe Viterelli as De Niro 's right-hand goombah . 1 +80980 4174 here seems as funny as it did in Analyze This , not even Joe Viterelli as De Niro 's right-hand goombah . 2 +80981 4174 seems as funny as it did in Analyze This , not even Joe Viterelli as De Niro 's right-hand goombah . 3 +80982 4174 seems as funny as it did in Analyze This , not even Joe Viterelli as De Niro 's right-hand goombah 2 +80983 4174 seems as funny 3 +80984 4174 as it did in Analyze This , not even Joe Viterelli as De Niro 's right-hand goombah 2 +80985 4174 it did in Analyze This , not even Joe Viterelli as De Niro 's right-hand goombah 2 +80986 4174 did in Analyze This , not even Joe Viterelli as De Niro 's right-hand goombah 2 +80987 4174 did in Analyze This , not even Joe Viterelli 2 +80988 4174 in Analyze This , not even Joe Viterelli 2 +80989 4174 Analyze This , not even Joe Viterelli 2 +80990 4174 Analyze This , not even 2 +80991 4174 Analyze This , not 1 +80992 4174 Analyze This , 2 +80993 4174 Joe Viterelli 2 +80994 4174 Viterelli 2 +80995 4174 as De Niro 's right-hand goombah 2 +80996 4174 De Niro 's right-hand goombah 1 +80997 4174 right-hand goombah 2 +80998 4174 right-hand 2 +80999 4174 goombah 2 +81000 4175 It 's rare to see a movie that takes such a speedy swan dive from `` promising '' to `` interesting '' to `` familiar '' before landing squarely on `` stupid '' . 1 +81001 4175 's rare to see a movie that takes such a speedy swan dive from `` promising '' to `` interesting '' to `` familiar '' before landing squarely on `` stupid '' . 0 +81002 4175 's rare to see a movie that takes such a speedy swan dive from `` promising '' to `` interesting '' to `` familiar '' before landing squarely on `` stupid '' 1 +81003 4175 rare to see a movie that takes such a speedy swan dive from `` promising '' to `` interesting '' to `` familiar '' before landing squarely on `` stupid '' 1 +81004 4175 to see a movie that takes such a speedy swan dive from `` promising '' to `` interesting '' to `` familiar '' before landing squarely on `` stupid '' 0 +81005 4175 see a movie that takes such a speedy swan dive from `` promising '' to `` interesting '' to `` familiar '' before landing squarely on `` stupid '' 0 +81006 4175 see a movie that takes such a speedy swan dive from `` promising '' to `` interesting '' to `` familiar '' 1 +81007 4175 see a movie that takes such a speedy swan dive from `` promising '' to `` interesting '' 3 +81008 4175 see a movie that takes such a speedy swan dive from `` promising '' 0 +81009 4175 a movie that takes such a speedy swan dive from `` promising '' 1 +81010 4175 that takes such a speedy swan dive from `` promising '' 1 +81011 4175 takes such a speedy swan dive from `` promising '' 1 +81012 4175 takes such a speedy swan dive 3 +81013 4175 such a speedy swan dive 2 +81014 4175 a speedy swan dive 1 +81015 4175 speedy swan dive 2 +81016 4175 speedy 2 +81017 4175 swan dive 2 +81018 4175 swan 2 +81019 4175 dive 2 +81020 4175 from `` promising '' 3 +81021 4175 from `` promising 3 +81022 4175 from `` 2 +81023 4175 to `` interesting '' 3 +81024 4175 `` interesting '' 3 +81025 4175 interesting '' 3 +81026 4175 to `` familiar '' 2 +81027 4175 `` familiar '' 2 +81028 4175 familiar '' 2 +81029 4175 before landing squarely on `` stupid '' 0 +81030 4175 landing squarely on `` stupid '' 1 +81031 4175 landing squarely 2 +81032 4175 landing 2 +81033 4175 on `` stupid '' 1 +81034 4175 on `` stupid 1 +81035 4176 A portrait of hell so shattering it 's impossible to shake . 3 +81036 4176 A portrait of hell so shattering it 2 +81037 4176 of hell so shattering it 1 +81038 4176 hell so shattering it 2 +81039 4176 so shattering it 2 +81040 4176 shattering it 2 +81041 4176 shattering 2 +81042 4176 's impossible to shake . 1 +81043 4176 's impossible to shake 2 +81044 4176 impossible to shake 2 +81045 4176 to shake 2 +81046 4177 The modern remake of Dumas 's story is long on narrative and -LRB- too -RRB- short on action . 1 +81047 4177 The modern remake of Dumas 's story 2 +81048 4177 The modern remake 2 +81049 4177 modern remake 2 +81050 4177 of Dumas 's story 2 +81051 4177 Dumas 's story 2 +81052 4177 Dumas 's 2 +81053 4177 is long on narrative and -LRB- too -RRB- short on action . 1 +81054 4177 is long on narrative and -LRB- too -RRB- short on action 1 +81055 4177 is long on narrative and -LRB- too -RRB- short 1 +81056 4177 is long on 3 +81057 4177 long on 2 +81058 4177 narrative and -LRB- too -RRB- short 1 +81059 4177 and -LRB- too -RRB- short 1 +81060 4177 -LRB- too -RRB- short 2 +81061 4177 -LRB- too -RRB- 2 +81062 4177 too -RRB- 2 +81063 4177 on action 3 +81064 4178 Die Another Day is only intermittently entertaining but it 's hard not to be a sucker for its charms , or perhaps it 's just impossible not to feel nostalgia for movies you grew up with . 2 +81065 4178 Die Another Day is only intermittently entertaining but it 's hard not to be a sucker for its charms , or perhaps it 's just impossible not to feel nostalgia for movies you grew up with 3 +81066 4178 Die Another Day is only intermittently entertaining but it 's hard not to be a sucker for its charms , or 3 +81067 4178 Die Another Day is only intermittently entertaining but it 's hard not to be a sucker for its charms , 2 +81068 4178 Die Another Day is only intermittently entertaining but it 's hard not to be a sucker for its charms 2 +81069 4178 Die Another Day 2 +81070 4178 Another Day 2 +81071 4178 is only intermittently entertaining but it 's hard not to be a sucker for its charms 3 +81072 4178 is only intermittently entertaining 1 +81073 4178 intermittently entertaining 2 +81074 4178 but it 's hard not to be a sucker for its charms 2 +81075 4178 it 's hard not to be a sucker for its charms 3 +81076 4178 's hard not to be a sucker for its charms 3 +81077 4178 's hard 2 +81078 4178 not to be a sucker for its charms 1 +81079 4178 to be a sucker for its charms 2 +81080 4178 be a sucker for its charms 2 +81081 4178 a sucker for its charms 2 +81082 4178 a sucker 1 +81083 4178 for its charms 2 +81084 4178 perhaps it 's just impossible not to feel nostalgia for movies you grew up with 2 +81085 4178 it 's just impossible not to feel nostalgia for movies you grew up with 2 +81086 4178 's just impossible not to feel nostalgia for movies you grew up with 3 +81087 4178 's just impossible 2 +81088 4178 just impossible 1 +81089 4178 not to feel nostalgia for movies you grew up with 2 +81090 4178 to feel nostalgia for movies you grew up with 2 +81091 4178 feel nostalgia for movies you grew up with 3 +81092 4178 feel nostalgia 2 +81093 4178 for movies you grew up with 2 +81094 4178 movies you grew up with 2 +81095 4178 you grew up with 2 +81096 4178 grew up with 2 +81097 4178 grew up 2 +81098 4178 grew 2 +81099 4179 Plunges you into a reality that is , more often then not , difficult and sad , and then , without sentimentalizing it or denying its brutality , transforms that reality into a lyrical and celebratory vision . 3 +81100 4179 Plunges you into a reality that is , more often then not , difficult and sad , and then , without sentimentalizing it or denying its brutality , transforms that reality into a lyrical and celebratory vision 2 +81101 4179 Plunges you into a reality that is , more often then not , difficult and sad , and 3 +81102 4179 Plunges you into a reality that is , more often then not , difficult and sad , 0 +81103 4179 Plunges you into a reality that is , more often then not , difficult and sad 2 +81104 4179 Plunges you 2 +81105 4179 Plunges 2 +81106 4179 into a reality that is , more often then not , difficult and sad 2 +81107 4179 a reality that is , more often then not , difficult and sad 2 +81108 4179 a reality 2 +81109 4179 that is , more often then not , difficult and sad 1 +81110 4179 is , more often then not , difficult and sad 2 +81111 4179 is , more often then 3 +81112 4179 is , more often 2 +81113 4179 not , difficult and sad 1 +81114 4179 , difficult and sad 1 +81115 4179 difficult and sad 2 +81116 4179 difficult and 1 +81117 4179 then , without sentimentalizing it or denying its brutality , transforms that reality into a lyrical and celebratory vision 2 +81118 4179 , without sentimentalizing it or denying its brutality , transforms that reality into a lyrical and celebratory vision 4 +81119 4179 without sentimentalizing it or denying its brutality , transforms that reality into a lyrical and celebratory vision 3 +81120 4179 without sentimentalizing it or denying its brutality 2 +81121 4179 sentimentalizing it or denying its brutality 2 +81122 4179 sentimentalizing it or 2 +81123 4179 denying its brutality 2 +81124 4179 its brutality 2 +81125 4179 , transforms that reality into a lyrical and celebratory vision 3 +81126 4179 transforms that reality into a lyrical and celebratory vision 3 +81127 4179 transforms that reality 2 +81128 4179 that reality 2 +81129 4179 into a lyrical and celebratory vision 3 +81130 4179 a lyrical and celebratory vision 3 +81131 4179 lyrical and celebratory vision 3 +81132 4179 lyrical and celebratory 3 +81133 4179 lyrical and 2 +81134 4179 celebratory 3 +81135 4180 The level of acting elevates the material above pat inspirational status and gives it a sturdiness and solidity that we 've long associated with Washington the actor . 3 +81136 4180 The level of acting 2 +81137 4180 elevates the material above pat inspirational status and gives it a sturdiness and solidity that we 've long associated with Washington the actor . 3 +81138 4180 elevates the material above pat inspirational status and gives it a sturdiness and solidity that we 've long associated with Washington the actor 3 +81139 4180 elevates the material above pat inspirational status and gives it a sturdiness and solidity that we 've long associated with Washington 3 +81140 4180 elevates the material above pat inspirational status and 3 +81141 4180 elevates the material above pat inspirational status 3 +81142 4180 elevates 2 +81143 4180 the material above pat inspirational status 2 +81144 4180 above pat inspirational status 3 +81145 4180 pat inspirational status 2 +81146 4180 inspirational status 4 +81147 4180 gives it a sturdiness and solidity that we 've long associated with Washington 3 +81148 4180 a sturdiness and solidity that we 've long associated with Washington 3 +81149 4180 a sturdiness and solidity 3 +81150 4180 sturdiness and solidity 2 +81151 4180 sturdiness and 2 +81152 4180 sturdiness 2 +81153 4180 solidity 2 +81154 4180 that we 've long associated with Washington 2 +81155 4180 we 've long associated with Washington 2 +81156 4180 've long associated with Washington 2 +81157 4180 've long 2 +81158 4180 associated with Washington 2 +81159 4180 with Washington 2 +81160 4181 Duvall is strong as always . 4 +81161 4181 is strong as always . 3 +81162 4181 is strong as always 3 +81163 4181 strong as always 3 +81164 4181 as always 2 +81165 4182 But his showboating wise-cracker stock persona sure is getting old . 2 +81166 4182 his showboating wise-cracker stock persona sure is getting old . 1 +81167 4182 his showboating wise-cracker stock persona 2 +81168 4182 showboating wise-cracker stock persona 0 +81169 4182 showboating 2 +81170 4182 wise-cracker stock persona 2 +81171 4182 wise-cracker 2 +81172 4182 stock persona 1 +81173 4182 sure is getting old . 1 +81174 4182 is getting old . 1 +81175 4182 is getting old 1 +81176 4182 getting old 2 +81177 4183 The Master of Disguise may have made a great Saturday Night Live sketch , but a great movie it is not . 1 +81178 4183 may have made a great Saturday Night Live sketch , but a great movie it is not . 1 +81179 4183 may have made a great Saturday Night Live sketch , but a great movie it is not 1 +81180 4183 have made a great Saturday Night Live sketch , but a great movie it is not 1 +81181 4183 made a great Saturday Night Live sketch , but a great movie it is not 1 +81182 4183 made a great Saturday Night Live sketch , but 2 +81183 4183 made a great Saturday Night Live sketch , 2 +81184 4183 made a great Saturday Night Live sketch 2 +81185 4183 a great Saturday Night Live sketch 3 +81186 4183 great Saturday Night Live sketch 3 +81187 4183 Saturday Night Live sketch 2 +81188 4183 Night Live sketch 2 +81189 4183 Live sketch 2 +81190 4183 a great movie it is not 0 +81191 4183 it is not 2 +81192 4184 A true pleasure . 3 +81193 4184 true pleasure . 4 +81194 4184 pleasure . 3 +81195 4185 With nary a glimmer of self-knowledge , -LRB- Crane -RRB- becomes more specimen than character -- and Auto Focus remains a chilly , clinical lab report . 1 +81196 4185 With nary a glimmer of self-knowledge , -LRB- Crane -RRB- becomes more specimen than character -- and Auto Focus remains a chilly , clinical lab report 1 +81197 4185 With nary a glimmer of self-knowledge , -LRB- Crane -RRB- becomes more specimen than character -- and 1 +81198 4185 With nary a glimmer of self-knowledge , -LRB- Crane -RRB- becomes more specimen than character -- 1 +81199 4185 With nary a glimmer of self-knowledge , -LRB- Crane -RRB- becomes more specimen than character 1 +81200 4185 With nary a glimmer of self-knowledge 2 +81201 4185 nary a glimmer of self-knowledge 1 +81202 4185 nary a glimmer 2 +81203 4185 of self-knowledge 2 +81204 4185 self-knowledge 2 +81205 4185 , -LRB- Crane -RRB- becomes more specimen than character 2 +81206 4185 -LRB- Crane -RRB- becomes more specimen than character 2 +81207 4185 Crane -RRB- becomes more specimen than character 2 +81208 4185 -RRB- becomes more specimen than character 1 +81209 4185 becomes more specimen than character 1 +81210 4185 becomes more specimen 2 +81211 4185 more specimen 2 +81212 4185 specimen 2 +81213 4185 than character 2 +81214 4185 Auto Focus remains a chilly , clinical lab report 2 +81215 4185 remains a chilly , clinical lab report 1 +81216 4185 a chilly , clinical lab report 2 +81217 4185 chilly , clinical lab report 1 +81218 4185 , clinical lab report 2 +81219 4185 clinical lab report 2 +81220 4185 lab report 2 +81221 4185 lab 2 +81222 4186 Qualities that were once amusing are becoming irritating . 1 +81223 4186 Qualities that were once amusing 2 +81224 4186 that were once amusing 1 +81225 4186 were once amusing 1 +81226 4186 once amusing 1 +81227 4186 are becoming irritating . 1 +81228 4186 are becoming irritating 1 +81229 4186 becoming irritating 1 +81230 4187 Moore provides an invaluable service by sparking debate and encouraging thought . 4 +81231 4187 provides an invaluable service by sparking debate and encouraging thought . 4 +81232 4187 provides an invaluable service by sparking debate and encouraging thought 4 +81233 4187 provides an invaluable service 1 +81234 4187 an invaluable service 3 +81235 4187 invaluable service 3 +81236 4187 by sparking debate and encouraging thought 3 +81237 4187 sparking debate and encouraging thought 3 +81238 4187 sparking debate and 3 +81239 4187 sparking debate 2 +81240 4187 sparking 3 +81241 4187 debate 2 +81242 4187 encouraging thought 3 +81243 4188 Exciting and well-paced . 4 +81244 4188 Exciting and well-paced 4 +81245 4188 Exciting and 3 +81246 4189 Daringly perceptive , taut , piercing and feisty , Biggie and Tupac is undeniably subversive and involving in its bold presentation . 3 +81247 4189 Daringly perceptive , taut , piercing and feisty 4 +81248 4189 Daringly 2 +81249 4189 perceptive , taut , piercing and feisty 4 +81250 4189 , taut , piercing and feisty 3 +81251 4189 taut , piercing and feisty 2 +81252 4189 , piercing and feisty 2 +81253 4189 piercing and feisty 3 +81254 4189 piercing and 2 +81255 4189 feisty 2 +81256 4189 , Biggie and Tupac is undeniably subversive and involving in its bold presentation . 2 +81257 4189 Biggie and Tupac is undeniably subversive and involving in its bold presentation . 3 +81258 4189 Biggie and Tupac 2 +81259 4189 Biggie and 2 +81260 4189 Biggie 2 +81261 4189 Tupac 2 +81262 4189 is undeniably subversive and involving in its bold presentation . 3 +81263 4189 is undeniably subversive and involving in its bold presentation 3 +81264 4189 undeniably subversive and involving in its bold presentation 4 +81265 4189 undeniably subversive and 2 +81266 4189 undeniably subversive 2 +81267 4189 involving in its bold presentation 3 +81268 4189 in its bold presentation 3 +81269 4189 its bold presentation 3 +81270 4189 bold presentation 3 +81271 4190 They were afraid to show this movie to reviewers before its opening , afraid of the bad reviews they thought they 'd earn . 0 +81272 4190 were afraid to show this movie to reviewers before its opening , afraid of the bad reviews they thought they 'd earn . 0 +81273 4190 were afraid to show this movie to reviewers before its opening , afraid of the bad reviews they thought they 'd earn 1 +81274 4190 afraid to show this movie to reviewers before its opening , afraid of the bad reviews they thought they 'd earn 1 +81275 4190 to show this movie to reviewers before its opening , afraid of the bad reviews they thought they 'd earn 1 +81276 4190 show this movie to reviewers before its opening , afraid of the bad reviews they thought they 'd earn 1 +81277 4190 show this movie to reviewers before its opening , 2 +81278 4190 show this movie to reviewers before its opening 2 +81279 4190 show this movie to reviewers 2 +81280 4190 this movie to reviewers 2 +81281 4190 to reviewers 2 +81282 4190 reviewers 3 +81283 4190 before its opening 2 +81284 4190 its opening 3 +81285 4190 afraid of the bad reviews they thought they 'd earn 1 +81286 4190 afraid of the bad reviews 1 +81287 4190 of the bad reviews 1 +81288 4190 the bad reviews 1 +81289 4190 bad reviews 1 +81290 4190 they thought they 'd earn 2 +81291 4190 thought they 'd earn 2 +81292 4190 they 'd earn 2 +81293 4190 'd earn 2 +81294 4191 captures that perverse element of the Kafkaesque where identity , overnight , is robbed and replaced with a persecuted `` other . '' 3 +81295 4191 captures that perverse element of the Kafkaesque where identity , overnight , is robbed and replaced with a persecuted `` other . 2 +81296 4191 captures that perverse element of the Kafkaesque where identity , overnight , is robbed and replaced with a persecuted `` other 3 +81297 4191 that perverse element of the Kafkaesque where identity , overnight , is robbed and replaced with a persecuted `` other 2 +81298 4191 that perverse element of the Kafkaesque 2 +81299 4191 that perverse element 0 +81300 4191 perverse element 2 +81301 4191 of the Kafkaesque 2 +81302 4191 the Kafkaesque 2 +81303 4191 Kafkaesque 2 +81304 4191 where identity , overnight , is robbed and replaced with a persecuted `` other 2 +81305 4191 identity , overnight , is robbed and replaced with a persecuted `` other 2 +81306 4191 , overnight , is robbed and replaced with a persecuted `` other 1 +81307 4191 overnight , is robbed and replaced with a persecuted `` other 2 +81308 4191 overnight 2 +81309 4191 , is robbed and replaced with a persecuted `` other 2 +81310 4191 is robbed and replaced with a persecuted `` other 2 +81311 4191 robbed and replaced with a persecuted `` other 2 +81312 4191 robbed and replaced 1 +81313 4191 robbed and 3 +81314 4191 robbed 1 +81315 4191 with a persecuted `` other 2 +81316 4191 a persecuted `` other 2 +81317 4191 persecuted `` other 2 +81318 4191 persecuted `` 2 +81319 4191 persecuted 2 +81320 4192 It 's not only dull because we 've seen -LRB- Eddie -RRB- Murphy do the genial-rogue shtick to death , but because the plot is equally hackneyed . 1 +81321 4192 's not only dull because we 've seen -LRB- Eddie -RRB- Murphy do the genial-rogue shtick to death , but because the plot is equally hackneyed . 2 +81322 4192 's not only dull because we 've seen -LRB- Eddie -RRB- Murphy do the genial-rogue shtick to death , but because the plot is equally hackneyed 1 +81323 4192 's not only dull 1 +81324 4192 only dull 1 +81325 4192 because we 've seen -LRB- Eddie -RRB- Murphy do the genial-rogue shtick to death , but because the plot is equally hackneyed 0 +81326 4192 we 've seen -LRB- Eddie -RRB- Murphy do the genial-rogue shtick to death , but because the plot is equally hackneyed 1 +81327 4192 've seen -LRB- Eddie -RRB- Murphy do the genial-rogue shtick to death , but because the plot is equally hackneyed 1 +81328 4192 seen -LRB- Eddie -RRB- Murphy do the genial-rogue shtick to death , but because the plot is equally hackneyed 0 +81329 4192 seen -LRB- Eddie -RRB- 3 +81330 4192 -LRB- Eddie -RRB- 2 +81331 4192 Eddie -RRB- 2 +81332 4192 Murphy do the genial-rogue shtick to death , but because the plot is equally hackneyed 1 +81333 4192 Murphy do the genial-rogue shtick to death , but 2 +81334 4192 Murphy do the genial-rogue shtick to death , 1 +81335 4192 Murphy do the genial-rogue shtick to death 1 +81336 4192 do the genial-rogue shtick to death 1 +81337 4192 do the genial-rogue shtick 2 +81338 4192 the genial-rogue shtick 2 +81339 4192 genial-rogue shtick 1 +81340 4192 genial-rogue 2 +81341 4192 to death 1 +81342 4192 because the plot is equally hackneyed 0 +81343 4192 the plot is equally hackneyed 2 +81344 4192 is equally hackneyed 1 +81345 4192 equally hackneyed 2 +81346 4193 -LRB- Breheny 's -RRB- lensing of the New Zealand and Cook Island locations captures both the beauty of the land and the people . 4 +81347 4193 -LRB- Breheny 's -RRB- lensing of the New Zealand and Cook Island locations 2 +81348 4193 -LRB- Breheny 's -RRB- lensing 3 +81349 4193 Breheny 's -RRB- lensing 2 +81350 4193 Breheny 's 2 +81351 4193 Breheny 2 +81352 4193 -RRB- lensing 2 +81353 4193 lensing 2 +81354 4193 of the New Zealand and Cook Island locations 2 +81355 4193 the New Zealand and Cook Island locations 2 +81356 4193 New Zealand and Cook Island locations 2 +81357 4193 Zealand and Cook Island locations 2 +81358 4193 Zealand 2 +81359 4193 and Cook Island locations 2 +81360 4193 Cook Island locations 2 +81361 4193 Cook 2 +81362 4193 Island locations 2 +81363 4193 captures both the beauty of the land and the people . 3 +81364 4193 captures both the beauty of the land and the people 3 +81365 4193 both the beauty of the land and the people 3 +81366 4193 both the beauty 3 +81367 4193 of the land and the people 2 +81368 4193 the land and the people 2 +81369 4193 the land and 2 +81370 4194 The movie certainly has its share of clever moments and biting dialogue , but there 's just not much lurking below its abstract surface . 2 +81371 4194 The movie certainly has its share of clever moments and biting dialogue , but there 's just not much lurking below its abstract surface 2 +81372 4194 The movie certainly has its share of clever moments and biting dialogue , but 3 +81373 4194 The movie certainly has its share of clever moments and biting dialogue , 3 +81374 4194 The movie certainly has its share of clever moments and biting dialogue 4 +81375 4194 certainly has its share of clever moments and biting dialogue 3 +81376 4194 has its share of clever moments and biting dialogue 3 +81377 4194 its share of clever moments and biting dialogue 3 +81378 4194 of clever moments and biting dialogue 3 +81379 4194 clever moments and biting dialogue 3 +81380 4194 clever moments and 2 +81381 4194 clever moments 3 +81382 4194 biting dialogue 2 +81383 4194 there 's just not much lurking below its abstract surface 1 +81384 4194 's just not much lurking below its abstract surface 1 +81385 4194 much lurking below its abstract surface 3 +81386 4194 lurking below its abstract surface 2 +81387 4194 lurking 2 +81388 4194 below its abstract surface 3 +81389 4194 its abstract surface 2 +81390 4194 abstract surface 2 +81391 4195 Strangely comes off as a kingdom more mild than wild . 3 +81392 4195 comes off as a kingdom more mild than wild . 1 +81393 4195 comes off as a kingdom more mild than wild 3 +81394 4195 as a kingdom more mild than wild 2 +81395 4195 a kingdom more mild than wild 1 +81396 4195 a kingdom 3 +81397 4195 kingdom 2 +81398 4195 more mild than wild 2 +81399 4195 more mild than 2 +81400 4195 more mild 2 +81401 4196 In a word : No. . 2 +81402 4196 In a word 2 +81403 4196 : No. . 2 +81404 4197 An exhausting family drama about a porcelain empire and just as hard a flick as its subject matter . 2 +81405 4197 An exhausting family drama about a porcelain empire and just as hard a flick as its subject 1 +81406 4197 An exhausting family drama about a porcelain empire and just as hard 1 +81407 4197 An exhausting family drama about a porcelain empire and 1 +81408 4197 An exhausting family drama about a porcelain empire 1 +81409 4197 An exhausting family drama 1 +81410 4197 exhausting family drama 1 +81411 4197 about a porcelain empire 2 +81412 4197 a porcelain empire 2 +81413 4197 porcelain empire 2 +81414 4197 porcelain 2 +81415 4197 just as hard 2 +81416 4197 as hard 2 +81417 4197 a flick as its subject 2 +81418 4197 a flick 2 +81419 4197 as its subject 2 +81420 4197 matter . 2 +81421 4198 Dog Soldiers does n't transcend genre -- it embraces it , energizes it and takes big bloody chomps out of it . 3 +81422 4198 Dog Soldiers does n't transcend genre -- it embraces it , energizes it and takes big bloody chomps out of it 3 +81423 4198 Dog Soldiers does n't transcend genre -- 2 +81424 4198 Dog Soldiers does n't transcend genre 1 +81425 4198 Dog Soldiers 2 +81426 4198 does n't transcend genre 1 +81427 4198 transcend genre 3 +81428 4198 it embraces it , energizes it and takes big bloody chomps out of it 3 +81429 4198 embraces it , energizes it and takes big bloody chomps out of it 3 +81430 4198 embraces it , energizes it and 3 +81431 4198 embraces it , energizes it 3 +81432 4198 embraces it , 2 +81433 4198 embraces it 2 +81434 4198 energizes it 3 +81435 4198 energizes 3 +81436 4198 takes big bloody chomps out of it 1 +81437 4198 takes big bloody chomps out 1 +81438 4198 takes big bloody chomps 1 +81439 4198 big bloody chomps 1 +81440 4198 bloody chomps 2 +81441 4198 chomps 2 +81442 4199 Like the best 60 Minutes 4 +81443 4199 the best 60 Minutes 4 +81444 4199 best 60 Minutes 3 +81445 4199 , the film -LRB- at 80 minutes -RRB- is actually quite entertaining . 3 +81446 4199 the film -LRB- at 80 minutes -RRB- is actually quite entertaining . 3 +81447 4199 the film -LRB- at 80 minutes -RRB- 2 +81448 4199 -LRB- at 80 minutes -RRB- 2 +81449 4199 at 80 minutes -RRB- 2 +81450 4199 is actually quite entertaining . 3 +81451 4199 is actually quite entertaining 4 +81452 4199 quite entertaining 3 +81453 4200 This is an exercise not in biography but in hero worship . 1 +81454 4200 is an exercise not in biography but in hero worship . 3 +81455 4200 is an exercise not in biography but in hero worship 2 +81456 4200 is an exercise 2 +81457 4200 not in biography but in hero worship 2 +81458 4200 in biography but in hero worship 2 +81459 4200 in biography but 2 +81460 4200 in biography 2 +81461 4200 biography 2 +81462 4200 in hero worship 3 +81463 4200 hero worship 2 +81464 4200 worship 2 +81465 4201 It 's crafty , energetic and smart -- the kid is sort of like a fourteen-year old Ferris Bueller . 4 +81466 4201 It 's crafty , energetic and smart -- the kid is sort of like a fourteen-year old Ferris Bueller 3 +81467 4201 It 's crafty , energetic and smart -- 3 +81468 4201 It 's crafty , energetic and smart 4 +81469 4201 's crafty , energetic and smart 4 +81470 4201 crafty , energetic and smart 3 +81471 4201 , energetic and smart 3 +81472 4201 energetic and smart 3 +81473 4201 energetic and 3 +81474 4201 the kid is sort of like a fourteen-year old Ferris Bueller 2 +81475 4201 is sort of like a fourteen-year old Ferris Bueller 2 +81476 4201 is sort of 2 +81477 4201 like a fourteen-year old Ferris Bueller 2 +81478 4201 a fourteen-year old Ferris Bueller 2 +81479 4201 fourteen-year old Ferris Bueller 2 +81480 4201 fourteen-year 2 +81481 4201 old Ferris Bueller 2 +81482 4201 Ferris Bueller 2 +81483 4201 Ferris 2 +81484 4201 Bueller 2 +81485 4202 The entire movie is filled with deja vu moments . 2 +81486 4202 is filled with deja vu moments . 2 +81487 4202 is filled with deja vu moments 2 +81488 4202 filled with deja vu moments 2 +81489 4202 with deja vu moments 2 +81490 4202 deja vu moments 2 +81491 4202 deja 2 +81492 4202 vu moments 2 +81493 4202 vu 2 +81494 4203 As a science fiction movie , `` Minority Report '' astounds . 4 +81495 4203 As a science fiction movie 2 +81496 4203 a science fiction movie 2 +81497 4203 science fiction movie 2 +81498 4203 fiction movie 2 +81499 4203 , `` Minority Report '' astounds . 3 +81500 4203 `` Minority Report '' astounds . 4 +81501 4203 Minority Report '' astounds . 3 +81502 4203 '' astounds . 4 +81503 4203 astounds . 3 +81504 4203 astounds 3 +81505 4204 Broomfield reminds us that beneath the hype , the celebrity , the high life , the conspiracies and the mystery there were once a couple of bright young men -- promising , talented , charismatic and tragically doomed . 3 +81506 4204 reminds us that beneath the hype , the celebrity , the high life , the conspiracies and the mystery there were once a couple of bright young men -- promising , talented , charismatic and tragically doomed . 2 +81507 4204 reminds us that beneath the hype , the celebrity , the high life , the conspiracies and the mystery there were once a couple of bright young men -- promising , talented , charismatic and tragically doomed 2 +81508 4204 that beneath the hype , the celebrity , the high life , the conspiracies and the mystery there were once a couple of bright young men -- promising , talented , charismatic and tragically doomed 1 +81509 4204 that beneath the hype , the celebrity , the high life , the conspiracies and the mystery 2 +81510 4204 beneath the hype , the celebrity , the high life , the conspiracies and the mystery 2 +81511 4204 the hype , the celebrity , the high life , the conspiracies and the mystery 3 +81512 4204 the hype , the celebrity , the high life , the conspiracies and 2 +81513 4204 the hype , the celebrity , the high life , the conspiracies 2 +81514 4204 the hype , the celebrity , the high life , 2 +81515 4204 the hype , the celebrity , the high life 2 +81516 4204 the hype , the celebrity , 3 +81517 4204 the hype , the celebrity 2 +81518 4204 the hype , 2 +81519 4204 the hype 1 +81520 4204 hype 2 +81521 4204 the celebrity 2 +81522 4204 the high life 2 +81523 4204 high life 2 +81524 4204 the conspiracies 2 +81525 4204 there were once a couple of bright young men -- promising , talented , charismatic and tragically doomed 2 +81526 4204 were once a couple of bright young men -- promising , talented , charismatic and tragically doomed 2 +81527 4204 once a couple of bright young men -- promising , talented , charismatic and tragically doomed 2 +81528 4204 once a couple of bright young men -- promising , talented , charismatic and tragically 2 +81529 4204 once a couple 2 +81530 4204 of bright young men -- promising , talented , charismatic and tragically 3 +81531 4204 bright young men -- promising , talented , charismatic and tragically 3 +81532 4204 bright young men -- 2 +81533 4204 bright young men 2 +81534 4204 promising , talented , charismatic and tragically 4 +81535 4204 , talented , charismatic and tragically 3 +81536 4204 talented , charismatic and tragically 3 +81537 4204 , charismatic and tragically 3 +81538 4204 charismatic and tragically 3 +81539 4204 charismatic and 2 +81540 4205 Right now , they 're merely signposts marking the slow , lingering death of imagination . 1 +81541 4205 , they 're merely signposts marking the slow , lingering death of imagination . 1 +81542 4205 they 're merely signposts marking the slow , lingering death of imagination . 1 +81543 4205 're merely signposts marking the slow , lingering death of imagination . 1 +81544 4205 're merely signposts marking the slow , lingering death of imagination 1 +81545 4205 're merely 2 +81546 4205 signposts marking the slow , lingering death of imagination 1 +81547 4205 marking the slow , lingering death of imagination 1 +81548 4205 marking 2 +81549 4205 the slow , lingering death of imagination 1 +81550 4205 the slow , lingering death 2 +81551 4205 slow , lingering death 2 +81552 4205 , lingering death 2 +81553 4205 lingering death 1 +81554 4206 Director Peter Kosminsky gives these women a forum to demonstrate their acting ` chops ' and they take full advantage . 3 +81555 4206 Director Peter Kosminsky gives these women a forum to demonstrate their acting ` chops ' and they take full advantage 3 +81556 4206 Director Peter Kosminsky gives these women a forum to demonstrate their acting ` chops ' and 3 +81557 4206 Director Peter Kosminsky gives these women a forum to demonstrate their acting ` chops ' 3 +81558 4206 gives these women a forum to demonstrate their acting ` chops ' 3 +81559 4206 gives these women 3 +81560 4206 a forum to demonstrate their acting ` chops ' 3 +81561 4206 forum to demonstrate their acting ` chops ' 2 +81562 4206 forum 2 +81563 4206 to demonstrate their acting ` chops ' 2 +81564 4206 demonstrate their acting ` chops ' 3 +81565 4206 their acting ` chops ' 2 +81566 4206 acting ` chops ' 2 +81567 4206 ` chops ' 2 +81568 4206 chops ' 2 +81569 4206 chops 2 +81570 4206 they take full advantage 2 +81571 4206 take full advantage 2 +81572 4206 full advantage 3 +81573 4207 Despite bearing the Paramount imprint , it 's a bargain-basement European pickup . 0 +81574 4207 Despite bearing the Paramount imprint 2 +81575 4207 bearing the Paramount imprint 2 +81576 4207 the Paramount imprint 2 +81577 4207 Paramount imprint 1 +81578 4207 Paramount 2 +81579 4207 imprint 2 +81580 4207 , it 's a bargain-basement European pickup . 0 +81581 4207 it 's a bargain-basement European pickup . 1 +81582 4207 's a bargain-basement European pickup . 1 +81583 4207 's a bargain-basement European pickup 0 +81584 4207 a bargain-basement European pickup 1 +81585 4207 bargain-basement European pickup 1 +81586 4207 bargain-basement 1 +81587 4207 European pickup 2 +81588 4207 pickup 2 +81589 4208 All in all , Brown Sugar is a satisfying well-made romantic comedy that 's both charming and well acted . 4 +81590 4208 All in all , Brown Sugar 2 +81591 4208 in all , Brown Sugar 2 +81592 4208 all , Brown Sugar 2 +81593 4208 is a satisfying well-made romantic comedy that 's both charming and well acted . 4 +81594 4208 is a satisfying well-made romantic comedy that 's both charming and well acted 4 +81595 4208 a satisfying well-made romantic comedy that 's both charming and well acted 4 +81596 4208 a satisfying well-made romantic comedy 4 +81597 4208 satisfying well-made romantic comedy 3 +81598 4208 satisfying well-made 3 +81599 4208 that 's both charming and well acted 4 +81600 4208 's both charming and well acted 3 +81601 4208 's both charming and well 3 +81602 4208 's both charming and 3 +81603 4208 's both charming 3 +81604 4208 both charming 3 +81605 4209 Stitch is a bad mannered , ugly and destructive little \*\*\*\* . 0 +81606 4209 is a bad mannered , ugly and destructive little \*\*\*\* . 1 +81607 4209 is a bad mannered , ugly and destructive little \*\*\*\* 0 +81608 4209 a bad mannered , ugly and destructive little \*\*\*\* 0 +81609 4209 bad mannered , ugly and destructive little \*\*\*\* 0 +81610 4209 bad mannered 1 +81611 4209 , ugly and destructive little \*\*\*\* 1 +81612 4209 ugly and destructive little \*\*\*\* 0 +81613 4209 ugly and destructive 0 +81614 4209 destructive 1 +81615 4209 little \*\*\*\* 2 +81616 4209 \*\*\*\* 2 +81617 4210 It 's about time . 2 +81618 4210 's about time . 2 +81619 4210 's about time 2 +81620 4210 about time 2 +81621 4211 A beautiful , timeless and universal tale of heated passions -- jealousy , betrayal , forgiveness and murder . 4 +81622 4211 A beautiful , timeless and universal tale of heated passions -- jealousy , betrayal , forgiveness and murder 4 +81623 4211 A beautiful , timeless and universal tale of heated passions -- 4 +81624 4211 A beautiful , timeless and universal tale of heated passions 4 +81625 4211 A beautiful , timeless and universal tale 4 +81626 4211 beautiful , timeless and universal tale 3 +81627 4211 , timeless and universal tale 3 +81628 4211 timeless and universal tale 4 +81629 4211 and universal tale 2 +81630 4211 universal tale 2 +81631 4211 of heated passions 2 +81632 4211 heated passions 2 +81633 4211 jealousy , betrayal , forgiveness and murder 1 +81634 4211 , betrayal , forgiveness and murder 2 +81635 4211 betrayal , forgiveness and murder 1 +81636 4211 , forgiveness and murder 2 +81637 4211 forgiveness and murder 2 +81638 4212 The animation merely serves up a predictable , maudlin story that swipes heavily from Bambi and The Lion King , yet lacks the emotional resonance of either of those movies . 2 +81639 4212 merely serves up a predictable , maudlin story that swipes heavily from Bambi and The Lion King , yet lacks the emotional resonance of either of those movies . 1 +81640 4212 merely serves up a predictable , maudlin story that swipes heavily from Bambi and The Lion King , yet lacks the emotional resonance of either of those movies 0 +81641 4212 merely serves up a predictable , maudlin story that swipes heavily from Bambi and The Lion King , yet 1 +81642 4212 merely serves up a predictable , maudlin story that swipes heavily from Bambi and The Lion King , 0 +81643 4212 merely serves up a predictable , maudlin story that swipes heavily from Bambi and The Lion King 1 +81644 4212 serves up a predictable , maudlin story that swipes heavily from Bambi and The Lion King 1 +81645 4212 a predictable , maudlin story that swipes heavily from Bambi and The Lion King 1 +81646 4212 a predictable , maudlin story 1 +81647 4212 predictable , maudlin story 1 +81648 4212 , maudlin story 2 +81649 4212 maudlin story 2 +81650 4212 that swipes heavily from Bambi and The Lion King 2 +81651 4212 swipes heavily from Bambi and The Lion King 2 +81652 4212 swipes heavily 2 +81653 4212 swipes 2 +81654 4212 from Bambi and The Lion King 2 +81655 4212 Bambi and The Lion King 2 +81656 4212 Bambi and 2 +81657 4212 Bambi 3 +81658 4212 lacks the emotional resonance of either of those movies 1 +81659 4212 the emotional resonance of either of those movies 2 +81660 4212 the emotional resonance 3 +81661 4212 of either of those movies 2 +81662 4212 either of those movies 3 +81663 4213 The most offensive thing about the movie is that Hollywood expects people to pay to see it . 0 +81664 4213 The most offensive thing about the movie 1 +81665 4213 The most offensive thing 2 +81666 4213 most offensive thing 0 +81667 4213 most offensive 0 +81668 4213 is that Hollywood expects people to pay to see it . 1 +81669 4213 is that Hollywood expects people to pay to see it 2 +81670 4213 that Hollywood expects people to pay to see it 1 +81671 4213 Hollywood expects people to pay to see it 1 +81672 4213 expects people to pay to see it 0 +81673 4213 people to pay to see it 2 +81674 4213 to pay to see it 2 +81675 4214 Made me unintentionally famous -- as the queasy-stomached critic who staggered from the theater and blacked out in the lobby . 1 +81676 4214 Made me unintentionally famous -- as the queasy-stomached critic who staggered from the theater and blacked out in the lobby 1 +81677 4214 Made me unintentionally famous -- 2 +81678 4214 Made me unintentionally famous 3 +81679 4214 Made me 2 +81680 4214 unintentionally famous 2 +81681 4214 as the queasy-stomached critic who staggered from the theater and blacked out in the lobby 0 +81682 4214 the queasy-stomached critic who staggered from the theater and blacked out in the lobby 1 +81683 4214 the queasy-stomached critic 2 +81684 4214 queasy-stomached critic 2 +81685 4214 queasy-stomached 1 +81686 4214 critic 2 +81687 4214 who staggered from the theater and blacked out in the lobby 1 +81688 4214 staggered from the theater and blacked out in the lobby 1 +81689 4214 staggered from the theater and 2 +81690 4214 staggered from the theater 1 +81691 4214 staggered 2 +81692 4214 from the theater 2 +81693 4214 blacked out in the lobby 1 +81694 4214 blacked out 1 +81695 4214 blacked 2 +81696 4214 in the lobby 2 +81697 4214 the lobby 2 +81698 4215 If you already like this sort of thing , this is that sort of thing all over again . 2 +81699 4215 If you already like this sort of thing 2 +81700 4215 you already like this sort of thing 2 +81701 4215 already like this sort of thing 2 +81702 4215 like this sort of thing 2 +81703 4215 , this is that sort of thing all over again . 2 +81704 4215 this is that sort of thing all over again . 1 +81705 4215 is that sort of thing all over again . 2 +81706 4215 is that sort of thing all over again 1 +81707 4215 is that sort of thing 2 +81708 4215 that sort of thing 2 +81709 4215 that sort 2 +81710 4215 all over again 2 +81711 4215 over again 2 +81712 4216 Confusion is one of my least favourite emotions , especially when I have to put up with 146 minutes of it . 0 +81713 4216 is one of my least favourite emotions , especially when I have to put up with 146 minutes of it . 0 +81714 4216 is one of my least favourite emotions , especially when I have to put up with 146 minutes of it 1 +81715 4216 one of my least favourite emotions , especially when I have to put up with 146 minutes of it 0 +81716 4216 of my least favourite emotions , especially when I have to put up with 146 minutes of it 0 +81717 4216 my least favourite emotions , especially when I have to put up with 146 minutes of it 0 +81718 4216 my least favourite emotions , 1 +81719 4216 my least favourite emotions 2 +81720 4216 least favourite emotions 1 +81721 4216 least favourite 1 +81722 4216 favourite 4 +81723 4216 especially when I have to put up with 146 minutes of it 1 +81724 4216 I have to put up with 146 minutes of it 0 +81725 4216 have to put up with 146 minutes of it 0 +81726 4216 to put up with 146 minutes of it 1 +81727 4216 put up with 146 minutes of it 1 +81728 4216 put up 2 +81729 4216 with 146 minutes of it 2 +81730 4216 146 minutes of it 2 +81731 4216 146 minutes 2 +81732 4216 146 2 +81733 4217 The movie ultimately relies a bit too heavily on grandstanding , emotional , Rocky-like moments ... but it 's such a warm and charming package that you 'll feel too happy to argue much . 2 +81734 4217 The movie ultimately relies a bit too heavily on grandstanding , emotional , Rocky-like moments ... but it 's such a warm and charming package that you 'll feel too happy to argue much 3 +81735 4217 The movie ultimately relies a bit too heavily on grandstanding , emotional , Rocky-like moments ... but 2 +81736 4217 The movie ultimately relies a bit too heavily on grandstanding , emotional , Rocky-like moments ... 1 +81737 4217 The movie ultimately relies a bit too heavily on grandstanding , emotional , Rocky-like moments 1 +81738 4217 ultimately relies a bit too heavily on grandstanding , emotional , Rocky-like moments 2 +81739 4217 relies a bit too heavily on grandstanding , emotional , Rocky-like moments 1 +81740 4217 relies a bit 2 +81741 4217 too heavily on grandstanding , emotional , Rocky-like moments 2 +81742 4217 too heavily 2 +81743 4217 on grandstanding , emotional , Rocky-like moments 4 +81744 4217 grandstanding , emotional , Rocky-like moments 3 +81745 4217 grandstanding , emotional , Rocky-like 4 +81746 4217 grandstanding 2 +81747 4217 , emotional , Rocky-like 3 +81748 4217 emotional , Rocky-like 3 +81749 4217 , Rocky-like 3 +81750 4217 Rocky-like 2 +81751 4217 it 's such a warm and charming package that you 'll feel too happy to argue much 3 +81752 4217 's such a warm and charming package that you 'll feel too happy to argue much 4 +81753 4217 such a warm and charming package that you 'll feel too happy to argue much 3 +81754 4217 a warm and charming package that you 'll feel too happy to argue much 3 +81755 4217 a warm and charming package 4 +81756 4217 warm and charming package 3 +81757 4217 warm and charming 4 +81758 4217 that you 'll feel too happy to argue much 3 +81759 4217 you 'll feel too happy to argue much 3 +81760 4217 'll feel too happy to argue much 3 +81761 4217 feel too happy to argue much 3 +81762 4217 too happy to argue much 3 +81763 4217 happy to argue much 2 +81764 4217 to argue much 2 +81765 4217 argue much 2 +81766 4218 A hidden-agenda drama that shouts classic French nuance . 2 +81767 4218 A hidden-agenda drama that 2 +81768 4218 A hidden-agenda drama 2 +81769 4218 hidden-agenda drama 1 +81770 4218 hidden-agenda 2 +81771 4218 shouts classic French nuance . 3 +81772 4218 shouts classic French nuance 3 +81773 4218 shouts 2 +81774 4218 classic French nuance 3 +81775 4218 French nuance 3 +81776 4219 It is a challenging film , if not always a narratively cohesive one . 2 +81777 4219 is a challenging film , if not always a narratively cohesive one . 2 +81778 4219 is a challenging film , 2 +81779 4219 is a challenging film 3 +81780 4219 a challenging film 2 +81781 4219 challenging film 2 +81782 4219 if not always a narratively cohesive one . 2 +81783 4219 not always a narratively cohesive one . 1 +81784 4219 always a narratively cohesive one . 3 +81785 4219 always a narratively cohesive one 3 +81786 4219 a narratively cohesive one 2 +81787 4219 narratively cohesive one 2 +81788 4219 cohesive one 2 +81789 4220 And how . 2 +81790 4220 how . 2 +81791 4221 Halfway through , however , having sucked dry the undead action flick formula , Blade II mutates into a gross-out monster movie with effects that are more silly than scary . 1 +81792 4221 through , however , having sucked dry the undead action flick formula , Blade II mutates into a gross-out monster movie with effects that are more silly than scary . 0 +81793 4221 , however , having sucked dry the undead action flick formula , Blade II mutates into a gross-out monster movie with effects that are more silly than scary . 0 +81794 4221 however , having sucked dry the undead action flick formula , Blade II mutates into a gross-out monster movie with effects that are more silly than scary . 0 +81795 4221 , having sucked dry the undead action flick formula , Blade II mutates into a gross-out monster movie with effects that are more silly than scary . 0 +81796 4221 having sucked dry the undead action flick formula , Blade II mutates into a gross-out monster movie with effects that are more silly than scary . 1 +81797 4221 having sucked dry the undead action flick formula 0 +81798 4221 sucked dry the undead action flick formula 0 +81799 4221 dry the undead action flick formula 1 +81800 4221 the undead action flick formula 2 +81801 4221 undead action flick formula 2 +81802 4221 action flick formula 2 +81803 4221 flick formula 2 +81804 4221 , Blade II mutates into a gross-out monster movie with effects that are more silly than scary . 1 +81805 4221 Blade II mutates into a gross-out monster movie with effects that are more silly than scary . 1 +81806 4221 mutates into a gross-out monster movie with effects that are more silly than scary . 1 +81807 4221 mutates into a gross-out monster movie with effects that are more silly than scary 1 +81808 4221 mutates 2 +81809 4221 into a gross-out monster movie with effects that are more silly than scary 1 +81810 4221 a gross-out monster movie with effects that are more silly than scary 1 +81811 4221 a gross-out monster movie 2 +81812 4221 gross-out monster movie 2 +81813 4221 with effects that are more silly than scary 2 +81814 4221 effects that are more silly than scary 1 +81815 4221 that are more silly than scary 1 +81816 4221 are more silly than scary 1 +81817 4221 more silly than scary 1 +81818 4221 silly than scary 2 +81819 4221 than scary 2 +81820 4222 That frenetic spectacle -LRB- on the TV show -RRB- has usually been leavened by a charm that 's conspicuously missing from the Girls ' big-screen blowout . 1 +81821 4222 That frenetic spectacle -LRB- on the TV show -RRB- 1 +81822 4222 That frenetic spectacle 2 +81823 4222 frenetic spectacle 2 +81824 4222 frenetic 2 +81825 4222 -LRB- on the TV show -RRB- 2 +81826 4222 on the TV show -RRB- 2 +81827 4222 on the TV show 2 +81828 4222 the TV show 2 +81829 4222 TV show 2 +81830 4222 has usually been leavened by a charm that 's conspicuously missing from the Girls ' big-screen blowout . 1 +81831 4222 has usually been leavened by a charm that 's conspicuously missing from the Girls ' big-screen blowout 2 +81832 4222 has usually 3 +81833 4222 been leavened by a charm that 's conspicuously missing from the Girls ' big-screen blowout 1 +81834 4222 leavened by a charm that 's conspicuously missing from the Girls ' big-screen blowout 1 +81835 4222 leavened 2 +81836 4222 by a charm that 's conspicuously missing from the Girls ' big-screen blowout 1 +81837 4222 a charm that 's conspicuously missing from the Girls ' big-screen blowout 1 +81838 4222 a charm 3 +81839 4222 that 's conspicuously missing from the Girls ' big-screen blowout 1 +81840 4222 's conspicuously missing from the Girls ' big-screen blowout 2 +81841 4222 conspicuously missing from the Girls ' big-screen blowout 2 +81842 4222 conspicuously 2 +81843 4222 missing from the Girls ' big-screen blowout 3 +81844 4222 from the Girls ' big-screen blowout 2 +81845 4222 the Girls ' big-screen blowout 2 +81846 4222 big-screen blowout 2 +81847 4222 blowout 2 +81848 4223 Many of the effective horror elements are dampened through familiarity , -LRB- yet -RRB- are worthwhile . 2 +81849 4223 Many of the effective horror elements are dampened through familiarity , -LRB- yet -RRB- 1 +81850 4223 of the effective horror elements are dampened through familiarity , -LRB- yet -RRB- 1 +81851 4223 the effective horror elements are dampened through familiarity , -LRB- yet -RRB- 1 +81852 4223 the effective horror 2 +81853 4223 effective horror 3 +81854 4223 elements are dampened through familiarity , -LRB- yet -RRB- 1 +81855 4223 are dampened through familiarity , -LRB- yet -RRB- 2 +81856 4223 dampened through familiarity , -LRB- yet -RRB- 2 +81857 4223 dampened through familiarity , 1 +81858 4223 dampened through familiarity 2 +81859 4223 dampened through 1 +81860 4223 dampened 2 +81861 4223 -LRB- yet -RRB- 2 +81862 4223 yet -RRB- 2 +81863 4224 Though a touch too Arthouse 101 in its poetic symbolism , Heaven proves to be a good match of the sensibilities of two directors . 3 +81864 4224 Though a touch too Arthouse 101 in its poetic symbolism 2 +81865 4224 a touch too Arthouse 101 in its poetic symbolism 1 +81866 4224 a touch too 2 +81867 4224 Arthouse 101 in its poetic symbolism 2 +81868 4224 Arthouse 101 2 +81869 4224 Arthouse 2 +81870 4224 101 2 +81871 4224 in its poetic symbolism 3 +81872 4224 its poetic symbolism 2 +81873 4224 poetic symbolism 3 +81874 4224 , Heaven proves to be a good match of the sensibilities of two directors . 3 +81875 4224 Heaven proves to be a good match of the sensibilities of two directors . 3 +81876 4224 proves to be a good match of the sensibilities of two directors . 3 +81877 4224 proves to be a good match of the sensibilities of two directors 3 +81878 4224 to be a good match of the sensibilities of two directors 3 +81879 4224 be a good match of the sensibilities of two directors 3 +81880 4224 a good match of the sensibilities of two directors 3 +81881 4224 a good match 3 +81882 4224 good match 3 +81883 4224 of the sensibilities of two directors 2 +81884 4224 the sensibilities of two directors 2 +81885 4224 the sensibilities 2 +81886 4224 of two directors 2 +81887 4225 -LRB- Sports -RRB- admirable energy , full-bodied characterizations and narrative urgency . 3 +81888 4225 -LRB- Sports -RRB- admirable energy , full-bodied characterizations and narrative urgency 3 +81889 4225 -LRB- Sports -RRB- 2 +81890 4225 Sports -RRB- 2 +81891 4225 admirable energy , full-bodied characterizations and narrative urgency 3 +81892 4225 admirable energy , full-bodied characterizations and 4 +81893 4225 admirable energy , full-bodied characterizations 4 +81894 4225 admirable energy , 3 +81895 4225 admirable energy 3 +81896 4225 full-bodied characterizations 3 +81897 4225 narrative urgency 2 +81898 4226 Even when Crush departs from the 4W formula ... it feels like a glossy rehash . 1 +81899 4226 Even when Crush departs from the 4W formula 2 +81900 4226 when Crush departs from the 4W formula 2 +81901 4226 Crush departs from the 4W formula 2 +81902 4226 departs from the 4W formula 2 +81903 4226 from the 4W formula 2 +81904 4226 the 4W formula 2 +81905 4226 4W formula 2 +81906 4226 4W 2 +81907 4226 ... it feels like a glossy rehash . 1 +81908 4226 it feels like a glossy rehash . 1 +81909 4226 feels like a glossy rehash . 1 +81910 4226 feels like a glossy rehash 1 +81911 4226 like a glossy rehash 3 +81912 4226 a glossy rehash 1 +81913 4226 glossy rehash 1 +81914 4227 By the end , you just do n't care whether that cold-hearted snake Petrovich -LRB- that would be Reno -RRB- gets his comeuppance . 2 +81915 4227 , you just do n't care whether that cold-hearted snake Petrovich -LRB- that would be Reno -RRB- gets his comeuppance . 1 +81916 4227 you just do n't care whether that cold-hearted snake Petrovich -LRB- that would be Reno -RRB- gets his comeuppance . 1 +81917 4227 just do n't care whether that cold-hearted snake Petrovich -LRB- that would be Reno -RRB- gets his comeuppance . 1 +81918 4227 do n't care whether that cold-hearted snake Petrovich -LRB- that would be Reno -RRB- gets his comeuppance . 1 +81919 4227 do n't care whether that cold-hearted snake Petrovich -LRB- that would be Reno -RRB- gets his comeuppance 2 +81920 4227 care whether that cold-hearted snake Petrovich -LRB- that would be Reno -RRB- gets his comeuppance 1 +81921 4227 whether that cold-hearted snake Petrovich -LRB- that would be Reno -RRB- gets his comeuppance 2 +81922 4227 that cold-hearted snake Petrovich -LRB- that would be Reno -RRB- gets his comeuppance 2 +81923 4227 that cold-hearted snake Petrovich -LRB- that would be Reno -RRB- 1 +81924 4227 that cold-hearted snake Petrovich 1 +81925 4227 cold-hearted snake Petrovich 1 +81926 4227 snake Petrovich 2 +81927 4227 Petrovich 2 +81928 4227 -LRB- that would be Reno -RRB- 2 +81929 4227 that would be Reno -RRB- 2 +81930 4227 that would be Reno 2 +81931 4227 would be Reno 2 +81932 4227 be Reno 2 +81933 4227 gets his comeuppance 2 +81934 4227 his comeuppance 2 +81935 4227 comeuppance 2 +81936 4228 What sets it apart is the vision that Taymor , the avant garde director of Broadway 's The Lion King and the film Titus , brings . 3 +81937 4228 What sets 2 +81938 4228 it apart is the vision that Taymor , the avant garde director of Broadway 's The Lion King and the film Titus , brings . 2 +81939 4228 apart is the vision that Taymor , the avant garde director of Broadway 's The Lion King and the film Titus , brings . 3 +81940 4228 is the vision that Taymor , the avant garde director of Broadway 's The Lion King and the film Titus , brings . 2 +81941 4228 is the vision that Taymor , the avant garde director of Broadway 's The Lion King and the film Titus , brings 2 +81942 4228 is the vision 2 +81943 4228 the vision 2 +81944 4228 that Taymor , the avant garde director of Broadway 's The Lion King and the film Titus , brings 2 +81945 4228 Taymor , the avant garde director of Broadway 's The Lion King and the film Titus , brings 3 +81946 4228 Taymor , the avant garde director of Broadway 's The Lion King and the film Titus , 2 +81947 4228 Taymor , the avant garde director of Broadway 's The Lion King and the film Titus 2 +81948 4228 Taymor , 2 +81949 4228 the avant garde director of Broadway 's The Lion King and the film Titus 3 +81950 4228 the avant garde director 2 +81951 4228 avant garde director 2 +81952 4228 avant 2 +81953 4228 garde director 2 +81954 4228 garde 1 +81955 4228 of Broadway 's The Lion King and the film Titus 2 +81956 4228 Broadway 's The Lion King and the film Titus 2 +81957 4228 Broadway 's 2 +81958 4228 Broadway 3 +81959 4228 The Lion King and the film Titus 2 +81960 4228 The Lion King and 2 +81961 4228 the film Titus 2 +81962 4228 film Titus 2 +81963 4229 It 's easy to love Robin Tunney -- she 's pretty and she can act -- but it gets harder and harder to understand her choices . 1 +81964 4229 It 's easy to love Robin Tunney -- she 's pretty and she can act -- but it gets harder and harder to understand her choices 2 +81965 4229 It 's easy to love Robin Tunney -- she 's pretty and she can act -- but 2 +81966 4229 It 's easy to love Robin Tunney -- she 's pretty and she can act -- 4 +81967 4229 It 's easy to love Robin Tunney 3 +81968 4229 's easy to love Robin Tunney 3 +81969 4229 easy to love Robin Tunney 3 +81970 4229 to love Robin Tunney 2 +81971 4229 love Robin Tunney 3 +81972 4229 Robin Tunney 3 +81973 4229 -- she 's pretty and she can act -- 3 +81974 4229 she 's pretty and she can act -- 3 +81975 4229 she 's pretty and she can act 3 +81976 4229 she 's pretty and 4 +81977 4229 she 's pretty 3 +81978 4229 's pretty 2 +81979 4229 she can act 3 +81980 4229 can act 3 +81981 4229 it gets harder and harder to understand her choices 3 +81982 4229 gets harder and harder to understand her choices 1 +81983 4229 harder and harder to understand her choices 2 +81984 4229 harder and harder 2 +81985 4229 harder and 2 +81986 4229 to understand her choices 2 +81987 4229 understand her choices 3 +81988 4229 her choices 2 +81989 4230 A cross between Blow and Boyz N The Hood , this movie strives to be more , but does n't quite get there . 1 +81990 4230 A cross between Blow and Boyz N The Hood , this movie 2 +81991 4230 A cross between Blow and 2 +81992 4230 A cross between Blow 2 +81993 4230 A cross 2 +81994 4230 between Blow 2 +81995 4230 Boyz N The Hood , this movie 2 +81996 4230 Boyz N The Hood , 2 +81997 4230 Boyz N The Hood 2 +81998 4230 Boyz 2 +81999 4230 N The Hood 2 +82000 4230 The Hood 3 +82001 4230 Hood 2 +82002 4230 strives to be more , but does n't quite get there . 1 +82003 4230 strives to be more , but does n't quite get there 2 +82004 4230 strives to be more , but 2 +82005 4230 strives to be more , 2 +82006 4230 strives to be more 2 +82007 4230 strives 3 +82008 4230 to be more 2 +82009 4230 does n't quite get there 1 +82010 4230 get there 2 +82011 4231 Talky , artificial and opaque ... an interesting technical exercise , but a tedious picture . 0 +82012 4231 Talky , artificial and opaque ... an interesting technical exercise , but a tedious picture 3 +82013 4231 Talky , artificial and opaque ... an interesting technical exercise , 2 +82014 4231 Talky , artificial and opaque ... an interesting technical exercise 1 +82015 4231 Talky , artificial and opaque ... 2 +82016 4231 Talky , artificial and opaque 0 +82017 4231 , artificial and opaque 1 +82018 4231 artificial and opaque 1 +82019 4231 artificial and 2 +82020 4231 an interesting technical exercise 3 +82021 4231 interesting technical exercise 3 +82022 4231 interesting technical 3 +82023 4231 but a tedious picture 1 +82024 4231 a tedious picture 0 +82025 4231 tedious picture 2 +82026 4232 What enlivens this film , beyond the astute direction of Cardoso and beautifully detailed performances by all of the actors , is a note of defiance over social dictates . 3 +82027 4232 What enlivens this film 3 +82028 4232 enlivens this film 3 +82029 4232 enlivens 3 +82030 4232 , beyond the astute direction of Cardoso and beautifully detailed performances by all of the actors , is a note of defiance over social dictates . 3 +82031 4232 beyond the astute direction of Cardoso and beautifully detailed performances by all of the actors , is a note of defiance over social dictates . 4 +82032 4232 beyond the astute direction of Cardoso and beautifully detailed performances by all of the actors 4 +82033 4232 the astute direction of Cardoso and beautifully detailed performances by all of the actors 4 +82034 4232 the astute direction of Cardoso and 3 +82035 4232 the astute direction of Cardoso 3 +82036 4232 the astute direction 3 +82037 4232 astute direction 2 +82038 4232 of Cardoso 2 +82039 4232 Cardoso 2 +82040 4232 beautifully detailed performances by all of the actors 4 +82041 4232 beautifully detailed performances 4 +82042 4232 detailed performances 4 +82043 4232 by all of the actors 2 +82044 4232 all of the actors 2 +82045 4232 , is a note of defiance over social dictates . 3 +82046 4232 is a note of defiance over social dictates . 2 +82047 4232 is a note of defiance over social dictates 2 +82048 4232 a note of defiance over social dictates 2 +82049 4232 a note 2 +82050 4232 of defiance over social dictates 2 +82051 4232 defiance over social dictates 2 +82052 4232 over social dictates 2 +82053 4232 social dictates 2 +82054 4232 dictates 2 +82055 4233 Effective in all its aspects , Margarita Happy Hour represents an auspicious feature debut for Chaiken . 4 +82056 4233 Effective in all its aspects 4 +82057 4233 in all its aspects 2 +82058 4233 all its aspects 2 +82059 4233 its aspects 2 +82060 4233 , Margarita Happy Hour represents an auspicious feature debut for Chaiken . 3 +82061 4233 Margarita Happy Hour represents an auspicious feature debut for Chaiken . 3 +82062 4233 Margarita Happy Hour 3 +82063 4233 Happy Hour 3 +82064 4233 represents an auspicious feature debut for Chaiken . 3 +82065 4233 represents an auspicious feature debut for Chaiken 3 +82066 4233 an auspicious feature debut for Chaiken 3 +82067 4233 an auspicious feature debut 3 +82068 4233 auspicious feature debut 3 +82069 4233 auspicious 2 +82070 4233 for Chaiken 2 +82071 4233 Chaiken 2 +82072 4234 Meandering and confusing . 1 +82073 4234 Meandering and confusing 0 +82074 4234 Meandering and 2 +82075 4235 `` Nicholas Nickleby '' is a perfect family film to take everyone to since there 's no new `` A Christmas Carol '' out in the theaters this year . 3 +82076 4235 Nicholas Nickleby '' is a perfect family film to take everyone to since there 's no new `` A Christmas Carol '' out in the theaters this year . 4 +82077 4235 '' is a perfect family film to take everyone to since there 's no new `` A Christmas Carol '' out in the theaters this year . 4 +82078 4235 is a perfect family film to take everyone to since there 's no new `` A Christmas Carol '' out in the theaters this year . 4 +82079 4235 is a perfect family film to take everyone to since there 's no new `` A Christmas Carol '' out in the theaters this year 3 +82080 4235 a perfect family film to take everyone to since there 's no new `` A Christmas Carol '' out in the theaters this year 4 +82081 4235 perfect family film to take everyone to since there 's no new `` A Christmas Carol '' out in the theaters this year 3 +82082 4235 family film to take everyone to since there 's no new `` A Christmas Carol '' out in the theaters this year 3 +82083 4235 film to take everyone to since there 's no new `` A Christmas Carol '' out in the theaters this year 2 +82084 4235 to take everyone to since there 's no new `` A Christmas Carol '' out in the theaters this year 1 +82085 4235 take everyone to since there 's no new `` A Christmas Carol '' out in the theaters this year 2 +82086 4235 take everyone 2 +82087 4235 to since there 's no new `` A Christmas Carol '' out in the theaters this year 2 +82088 4235 since there 's no new `` A Christmas Carol '' out in the theaters this year 2 +82089 4235 there 's no new `` A Christmas Carol '' out in the theaters this year 2 +82090 4235 's no new `` A Christmas Carol '' out in the theaters this year 3 +82091 4235 no new `` A Christmas Carol '' out in the theaters this year 2 +82092 4235 no new `` A Christmas Carol '' 2 +82093 4235 new `` A Christmas Carol '' 2 +82094 4235 `` A Christmas Carol '' 2 +82095 4235 A Christmas Carol '' 2 +82096 4235 A Christmas Carol 2 +82097 4235 Christmas Carol 2 +82098 4235 out in the theaters this year 2 +82099 4235 in the theaters this year 2 +82100 4235 the theaters this year 2 +82101 4235 the theaters 2 +82102 4236 To the degree that ivans xtc . 2 +82103 4236 To the degree 2 +82104 4236 the degree 2 +82105 4236 that ivans xtc . 2 +82106 4236 ivans xtc . 2 +82107 4236 ivans xtc 2 +82108 4236 ivans 2 +82109 4236 xtc 2 +82110 4237 Pure of intention and passably diverting , His Secret Life is light , innocuous and unremarkable . 2 +82111 4237 Pure of intention and passably diverting 2 +82112 4237 Pure of intention and 3 +82113 4237 Pure of intention 3 +82114 4237 of intention 2 +82115 4237 intention 2 +82116 4237 passably diverting 2 +82117 4237 passably 3 +82118 4237 , His Secret Life is light , innocuous and unremarkable . 2 +82119 4237 His Secret Life is light , innocuous and unremarkable . 1 +82120 4237 is light , innocuous and unremarkable . 2 +82121 4237 is light , innocuous and unremarkable 0 +82122 4237 light , innocuous and unremarkable 1 +82123 4237 , innocuous and unremarkable 1 +82124 4237 innocuous and unremarkable 1 +82125 4237 innocuous and 2 +82126 4237 unremarkable 2 +82127 4238 Matches neorealism 's impact by showing the humanity of a war-torn land filled with people who just want to live their lives . 2 +82128 4238 Matches neorealism 's impact by showing the humanity of a war-torn land 2 +82129 4238 Matches neorealism 's impact 2 +82130 4238 Matches neorealism 's 3 +82131 4238 neorealism 's 1 +82132 4238 neorealism 2 +82133 4238 by showing the humanity of a war-torn land 2 +82134 4238 showing the humanity of a war-torn land 3 +82135 4238 the humanity of a war-torn land 2 +82136 4238 of a war-torn land 2 +82137 4238 a war-torn land 2 +82138 4238 war-torn land 2 +82139 4238 war-torn 2 +82140 4238 filled with people who just want to live their lives . 2 +82141 4238 filled with people who just want to live their lives 3 +82142 4238 with people who just want to live their lives 2 +82143 4238 people who just want to live their lives 2 +82144 4238 who just want to live their lives 2 +82145 4238 just want to live their lives 2 +82146 4238 want to live their lives 2 +82147 4238 to live their lives 2 +82148 4238 live their lives 2 +82149 4239 The performances are amiable and committed , and the comedy more often than not hits the bullseye . 3 +82150 4239 The performances are amiable and committed , and the comedy more often than not hits the bullseye 3 +82151 4239 The performances are amiable and committed , and 3 +82152 4239 The performances are amiable and committed , 3 +82153 4239 The performances are amiable and committed 4 +82154 4239 are amiable and committed 3 +82155 4239 amiable and committed 4 +82156 4239 amiable and 2 +82157 4239 the comedy more often than not hits the bullseye 2 +82158 4239 more often than not hits the bullseye 4 +82159 4239 more often than not 2 +82160 4239 than not 2 +82161 4239 hits the bullseye 3 +82162 4239 the bullseye 3 +82163 4239 bullseye 2 +82164 4240 A rich tale of our times , very well told with an appropriate minimum of means . 3 +82165 4240 A rich tale of our times 3 +82166 4240 A rich tale 4 +82167 4240 rich tale 3 +82168 4240 of our times 2 +82169 4240 our times 2 +82170 4240 , very well told with an appropriate minimum of means . 3 +82171 4240 very well told with an appropriate minimum of means . 2 +82172 4240 told with an appropriate minimum of means . 3 +82173 4240 told with an appropriate minimum of means 2 +82174 4240 with an appropriate minimum of means 3 +82175 4240 an appropriate minimum of means 2 +82176 4240 an appropriate minimum 2 +82177 4240 appropriate minimum 2 +82178 4240 of means 2 +82179 4241 Bread , My Sweet has so many flaws it would be easy for critics to shred it . 0 +82180 4241 , My Sweet has so many flaws it would be easy for critics to shred it . 0 +82181 4241 My Sweet has so many flaws it would be easy for critics to shred it . 0 +82182 4241 has so many flaws it would be easy for critics to shred it . 0 +82183 4241 has so many flaws it would be easy for critics to shred it 0 +82184 4241 so many flaws it would be easy for critics to shred it 0 +82185 4241 so many flaws 1 +82186 4241 many flaws 0 +82187 4241 it would be easy for critics to shred it 0 +82188 4241 would be easy for critics to shred it 1 +82189 4241 be easy for critics to shred it 1 +82190 4241 be easy for critics 2 +82191 4241 easy for critics 2 +82192 4241 for critics 2 +82193 4241 to shred it 2 +82194 4241 shred it 2 +82195 4242 While Bollywood\/Hollywood will undoubtedly provide its keenest pleasures to those familiar with Bombay musicals , it also has plenty for those -LRB- like me -RRB- who are n't . 3 +82196 4242 While Bollywood\/Hollywood will undoubtedly provide its keenest pleasures to those familiar with Bombay musicals 3 +82197 4242 Bollywood\/Hollywood will undoubtedly provide its keenest pleasures to those familiar with Bombay musicals 3 +82198 4242 Bollywood\/Hollywood 2 +82199 4242 will undoubtedly provide its keenest pleasures to those familiar with Bombay musicals 2 +82200 4242 provide its keenest pleasures to those familiar with Bombay musicals 3 +82201 4242 provide its keenest pleasures 3 +82202 4242 its keenest pleasures 3 +82203 4242 keenest pleasures 3 +82204 4242 keenest 2 +82205 4242 to those familiar with Bombay musicals 2 +82206 4242 those familiar with Bombay musicals 2 +82207 4242 familiar with Bombay musicals 2 +82208 4242 familiar with Bombay 2 +82209 4242 with Bombay 2 +82210 4242 Bombay 2 +82211 4242 musicals 2 +82212 4242 , it also has plenty for those -LRB- like me -RRB- who are n't . 3 +82213 4242 it also has plenty for those -LRB- like me -RRB- who are n't . 2 +82214 4242 also has plenty for those -LRB- like me -RRB- who are n't . 2 +82215 4242 has plenty for those -LRB- like me -RRB- who are n't . 3 +82216 4242 has plenty for those -LRB- like me -RRB- who are n't 2 +82217 4242 plenty for those -LRB- like me -RRB- who are n't 2 +82218 4242 for those -LRB- like me -RRB- who are n't 2 +82219 4242 those -LRB- like me -RRB- who are n't 2 +82220 4242 those -LRB- like me -RRB- 2 +82221 4242 -LRB- like me -RRB- 2 +82222 4242 like me -RRB- 2 +82223 4242 like me 2 +82224 4242 who are n't 2 +82225 4243 You could put it on a coffee table anywhere . 2 +82226 4243 could put it on a coffee table anywhere . 3 +82227 4243 could put it on a coffee table anywhere 2 +82228 4243 put it on a coffee table anywhere 2 +82229 4243 put it on a coffee table 3 +82230 4243 put it 2 +82231 4243 on a coffee table 2 +82232 4243 a coffee table 2 +82233 4243 coffee table 2 +82234 4244 At 90 minutes this movie is short , but it feels much longer . 1 +82235 4244 At 90 minutes this movie is short , but it feels much longer 1 +82236 4244 At 90 minutes this movie is short , but 2 +82237 4244 At 90 minutes this movie is short , 2 +82238 4244 At 90 minutes this movie is short 1 +82239 4244 At 90 minutes 2 +82240 4244 this movie is short 2 +82241 4244 it feels much longer 1 +82242 4244 feels much longer 2 +82243 4245 Translating complex characters from novels to the big screen is an impossible task but they are true to the essence of what it is to be Ya-Ya . 3 +82244 4245 Translating complex characters from novels to the big screen is an impossible task but they are true to the essence of what it is to be Ya-Ya 3 +82245 4245 Translating complex characters from novels to the big screen is an impossible task but 2 +82246 4245 Translating complex characters from novels to the big screen is an impossible task 2 +82247 4245 Translating complex characters from novels to the big screen 3 +82248 4245 Translating complex characters 2 +82249 4245 Translating 2 +82250 4245 complex characters 3 +82251 4245 from novels to the big screen 2 +82252 4245 novels to the big screen 3 +82253 4245 novels 2 +82254 4245 to the big screen 2 +82255 4245 is an impossible task 1 +82256 4245 an impossible task 2 +82257 4245 impossible task 1 +82258 4245 they are true to the essence of what it is to be Ya-Ya 2 +82259 4245 are true to the essence of what it is to be Ya-Ya 3 +82260 4245 true to the essence of what it is to be Ya-Ya 3 +82261 4245 to the essence of what it is to be Ya-Ya 2 +82262 4245 the essence of what it is to be Ya-Ya 3 +82263 4245 of what it is to be Ya-Ya 2 +82264 4245 what it is to be Ya-Ya 2 +82265 4245 it is to be Ya-Ya 3 +82266 4245 is to be Ya-Ya 2 +82267 4245 to be Ya-Ya 2 +82268 4245 be Ya-Ya 2 +82269 4246 If only it were , well , funnier . 1 +82270 4246 If only it were 2 +82271 4246 it were 2 +82272 4246 , well , funnier . 3 +82273 4246 well , funnier . 2 +82274 4246 , funnier . 3 +82275 4246 funnier . 3 +82276 4247 No , I love it ... hell , I dunno . 3 +82277 4247 , I love it ... hell , I dunno . 3 +82278 4247 I love it ... hell , I dunno . 3 +82279 4247 love it ... hell , I dunno . 3 +82280 4247 love it ... hell , I dunno 2 +82281 4247 love it ... 4 +82282 4247 hell , I dunno 1 +82283 4247 , I dunno 2 +82284 4247 I dunno 2 +82285 4247 dunno 2 +82286 4248 It 's an exhilarating place to visit , this laboratory of laughter . 4 +82287 4248 's an exhilarating place to visit , this laboratory of laughter . 3 +82288 4248 's an exhilarating place to visit , this laboratory of laughter 3 +82289 4248 an exhilarating place to visit , this laboratory of laughter 4 +82290 4248 an exhilarating place 2 +82291 4248 exhilarating place 3 +82292 4248 to visit , this laboratory of laughter 3 +82293 4248 visit , this laboratory of laughter 3 +82294 4248 visit , 2 +82295 4248 this laboratory of laughter 3 +82296 4248 this laboratory 2 +82297 4248 laboratory 2 +82298 4249 One of the best films I have ever seen , constantly pulling the rug from underneath us , seeing things from new sides , plunging deeper , getting more intense . 3 +82299 4249 I have ever seen , constantly pulling the rug from underneath us , seeing things from new sides , plunging deeper , getting more intense . 4 +82300 4249 have ever seen , constantly pulling the rug from underneath us , seeing things from new sides , plunging deeper , getting more intense . 4 +82301 4249 have ever seen , constantly pulling the rug from underneath us , seeing things from new sides , plunging deeper , getting more intense 4 +82302 4249 ever seen , constantly pulling the rug from underneath us , seeing things from new sides , plunging deeper , getting more intense 3 +82303 4249 seen , constantly pulling the rug from underneath us , seeing things from new sides , plunging deeper , getting more intense 3 +82304 4249 seen , 2 +82305 4249 constantly pulling the rug from underneath us , seeing things from new sides , plunging deeper , getting more intense 4 +82306 4249 constantly pulling the rug from underneath us , 3 +82307 4249 constantly pulling the rug from underneath us 3 +82308 4249 pulling the rug from underneath us 2 +82309 4249 pulling the rug 2 +82310 4249 from underneath us 2 +82311 4249 underneath us 2 +82312 4249 underneath 2 +82313 4249 seeing things from new sides , plunging deeper , getting more intense 3 +82314 4249 seeing things from new sides , plunging deeper , 3 +82315 4249 seeing things from new sides , plunging deeper 2 +82316 4249 seeing things from new sides , 3 +82317 4249 seeing things from new sides 3 +82318 4249 seeing things 2 +82319 4249 from new sides 2 +82320 4249 new sides 2 +82321 4249 plunging deeper 3 +82322 4249 plunging 2 +82323 4249 getting more intense 2 +82324 4249 more intense 2 +82325 4250 Like these Russo guys lookin ' for their Mamet instead found their Sturges . 2 +82326 4250 Like these Russo guys 2 +82327 4250 these Russo guys 2 +82328 4250 Russo guys 2 +82329 4250 Russo 2 +82330 4250 lookin ' for their Mamet instead found their Sturges . 2 +82331 4250 lookin ' for their Mamet 2 +82332 4250 for their Mamet 3 +82333 4250 their Mamet 2 +82334 4250 instead found their Sturges . 3 +82335 4250 instead found their Sturges 2 +82336 4250 found their Sturges 2 +82337 4250 their Sturges 2 +82338 4250 Sturges 2 +82339 4251 Culkin turns his character into what is basically an anti-Harry Potter -- right down to the Gryffindor scarf . 2 +82340 4251 turns his character into what is basically an anti-Harry Potter -- right down to the Gryffindor scarf . 3 +82341 4251 turns his character into what is basically an anti-Harry Potter -- right down to the Gryffindor scarf 2 +82342 4251 turns his character into what is basically an anti-Harry Potter -- 1 +82343 4251 turns his character into what is basically an anti-Harry Potter 2 +82344 4251 turns his character 2 +82345 4251 his character 2 +82346 4251 into what is basically an anti-Harry Potter 2 +82347 4251 what is basically an anti-Harry Potter 2 +82348 4251 is basically an anti-Harry Potter 2 +82349 4251 an anti-Harry Potter 2 +82350 4251 anti-Harry Potter 2 +82351 4251 anti-Harry 2 +82352 4251 right down to the Gryffindor scarf 2 +82353 4251 right down 2 +82354 4251 to the Gryffindor scarf 2 +82355 4251 the Gryffindor scarf 2 +82356 4251 Gryffindor scarf 2 +82357 4251 Gryffindor 2 +82358 4251 scarf 2 +82359 4252 Family fare . 3 +82360 4252 fare . 2 +82361 4253 Beware the quirky Brit-com . 1 +82362 4253 Beware the quirky Brit-com 2 +82363 4253 the quirky Brit-com 2 +82364 4253 quirky Brit-com 2 +82365 4253 Brit-com 2 +82366 4254 But the cinematography is cloudy , the picture making becalmed . 1 +82367 4254 the cinematography is cloudy , the picture making becalmed . 0 +82368 4254 is cloudy , the picture making becalmed . 1 +82369 4254 is cloudy , the picture making becalmed 2 +82370 4254 is cloudy , 2 +82371 4254 is cloudy 2 +82372 4254 cloudy 2 +82373 4254 the picture making becalmed 2 +82374 4254 making becalmed 2 +82375 4254 becalmed 3 +82376 4255 Even if the enticing prospect of a lot of nubile young actors in a film about campus depravity did n't fade amid the deliberate , tiresome ugliness , it would be rendered tedious by Avary 's failure to construct a story with even a trace of dramatic interest . 0 +82377 4255 Even if the enticing prospect of a lot of nubile young actors in a film about campus depravity did n't fade amid the deliberate , tiresome ugliness 1 +82378 4255 if the enticing prospect of a lot of nubile young actors in a film about campus depravity did n't fade amid the deliberate , tiresome ugliness 1 +82379 4255 the enticing prospect of a lot of nubile young actors in a film about campus depravity did n't fade amid the deliberate , tiresome ugliness 2 +82380 4255 the enticing prospect of a lot of nubile young actors in a film about campus depravity 3 +82381 4255 the enticing prospect 3 +82382 4255 enticing prospect 3 +82383 4255 of a lot of nubile young actors in a film about campus depravity 2 +82384 4255 a lot of nubile young actors in a film about campus depravity 2 +82385 4255 of nubile young actors in a film about campus depravity 2 +82386 4255 nubile young actors in a film about campus depravity 2 +82387 4255 nubile young actors 3 +82388 4255 nubile 2 +82389 4255 in a film about campus depravity 2 +82390 4255 a film about campus depravity 2 +82391 4255 about campus depravity 2 +82392 4255 campus depravity 2 +82393 4255 depravity 2 +82394 4255 did n't fade amid the deliberate , tiresome ugliness 2 +82395 4255 fade amid the deliberate , tiresome ugliness 1 +82396 4255 amid the deliberate , tiresome ugliness 0 +82397 4255 the deliberate , tiresome ugliness 1 +82398 4255 the deliberate , 2 +82399 4255 the deliberate 2 +82400 4255 tiresome ugliness 0 +82401 4255 , it would be rendered tedious by Avary 's failure to construct a story with even a trace of dramatic interest . 1 +82402 4255 it would be rendered tedious by Avary 's failure to construct a story with even a trace of dramatic interest . 0 +82403 4255 would be rendered tedious by Avary 's failure to construct a story with even a trace of dramatic interest . 0 +82404 4255 would be rendered tedious by Avary 's failure to construct a story with even a trace of dramatic interest 0 +82405 4255 be rendered tedious by Avary 's failure to construct a story with even a trace of dramatic interest 0 +82406 4255 rendered tedious by Avary 's failure to construct a story with even a trace of dramatic interest 0 +82407 4255 rendered tedious 0 +82408 4255 by Avary 's failure to construct a story with even a trace of dramatic interest 0 +82409 4255 Avary 's failure to construct a story with even a trace of dramatic interest 1 +82410 4255 Avary 's 2 +82411 4255 failure to construct a story with even a trace of dramatic interest 1 +82412 4255 to construct a story with even a trace of dramatic interest 1 +82413 4255 construct a story with even a trace of dramatic interest 1 +82414 4255 construct a story 3 +82415 4255 with even a trace of dramatic interest 2 +82416 4255 even a trace of dramatic interest 2 +82417 4255 even a trace 2 +82418 4255 a trace 2 +82419 4255 trace 2 +82420 4255 of dramatic interest 3 +82421 4255 dramatic interest 3 +82422 4256 All the movie 's narrative gymnastics ca n't disguise the fact that it 's inauthentic at its core and that its story just is n't worth telling . 0 +82423 4256 All the movie 's narrative gymnastics 2 +82424 4256 the movie 's narrative gymnastics 2 +82425 4256 narrative gymnastics 2 +82426 4256 gymnastics 2 +82427 4256 ca n't disguise the fact that it 's inauthentic at its core and that its story just is n't worth telling . 0 +82428 4256 ca n't disguise the fact that it 's inauthentic at its core and that its story just is n't worth telling 1 +82429 4256 disguise the fact that it 's inauthentic at its core and that its story just is n't worth telling 0 +82430 4256 disguise the fact 1 +82431 4256 that it 's inauthentic at its core and that its story just is n't worth telling 0 +82432 4256 that it 's inauthentic at its core and 2 +82433 4256 that it 's inauthentic at its core 1 +82434 4256 it 's inauthentic at its core 1 +82435 4256 's inauthentic at its core 2 +82436 4256 inauthentic at its core 1 +82437 4256 that its story just is n't worth telling 0 +82438 4256 its story just is n't worth telling 0 +82439 4256 just is n't worth telling 0 +82440 4256 is n't worth telling 1 +82441 4256 worth telling 3 +82442 4257 Presents a side of contemporary Chinese life that many outsiders will be surprised to know exists , and does so with an artistry that also smacks of revelation . 3 +82443 4257 a side of contemporary Chinese life that many outsiders will be surprised to know exists , and does so with an artistry that also smacks of revelation . 3 +82444 4257 a side of contemporary Chinese life that many outsiders will be surprised to know 3 +82445 4257 a side 2 +82446 4257 of contemporary Chinese life that many outsiders will be surprised to know 2 +82447 4257 contemporary Chinese life that many outsiders will be surprised to know 3 +82448 4257 contemporary Chinese life 2 +82449 4257 Chinese life 2 +82450 4257 that many outsiders will be surprised to know 2 +82451 4257 many outsiders will be surprised to know 2 +82452 4257 many outsiders 2 +82453 4257 will be surprised to know 2 +82454 4257 be surprised to know 2 +82455 4257 surprised to know 2 +82456 4257 to know 2 +82457 4257 exists , and does so with an artistry that also smacks of revelation . 3 +82458 4257 exists , and does so with an artistry that also smacks of revelation 3 +82459 4257 exists , and 2 +82460 4257 exists , 3 +82461 4257 does so with an artistry that also smacks of revelation 3 +82462 4257 so with an artistry that also smacks of revelation 3 +82463 4257 with an artistry that also smacks of revelation 3 +82464 4257 an artistry that also smacks of revelation 4 +82465 4257 an artistry 3 +82466 4257 artistry 3 +82467 4257 that also smacks of revelation 2 +82468 4257 also smacks of revelation 2 +82469 4257 smacks of revelation 2 +82470 4258 Suspend your disbelief here and now , or you 'll be shaking your head all the way to the credits . 1 +82471 4258 Suspend your disbelief here and now , or you 'll be shaking your head all the way to the credits 2 +82472 4258 Suspend your disbelief here and now , or 2 +82473 4258 Suspend your disbelief here and now , 1 +82474 4258 Suspend your disbelief here and now 2 +82475 4258 Suspend your disbelief 2 +82476 4258 your disbelief 2 +82477 4258 here and now 2 +82478 4258 you 'll be shaking your head all the way to the credits 1 +82479 4258 'll be shaking your head all the way to the credits 2 +82480 4258 be shaking your head all the way to the credits 0 +82481 4258 shaking your head all the way to the credits 1 +82482 4258 shaking your head 1 +82483 4258 all the way to the credits 3 +82484 4258 to the credits 2 +82485 4259 The banter between Calvin and his fellow barbers feels like a streetwise McLaughlin Group ... and never fails to entertain . 3 +82486 4259 The banter between Calvin and his fellow barbers 2 +82487 4259 The banter 2 +82488 4259 between Calvin and his fellow barbers 2 +82489 4259 Calvin and his fellow barbers 2 +82490 4259 Calvin and 2 +82491 4259 his fellow barbers 2 +82492 4259 fellow barbers 2 +82493 4259 barbers 2 +82494 4259 feels like a streetwise McLaughlin Group ... and never fails to entertain . 3 +82495 4259 feels like a streetwise McLaughlin Group ... and never fails to entertain 3 +82496 4259 feels like a streetwise McLaughlin Group ... and 2 +82497 4259 feels like a streetwise McLaughlin Group ... 2 +82498 4259 feels like a streetwise McLaughlin Group 2 +82499 4259 like a streetwise McLaughlin Group 2 +82500 4259 a streetwise McLaughlin Group 3 +82501 4259 streetwise McLaughlin Group 2 +82502 4259 streetwise 2 +82503 4259 McLaughlin Group 2 +82504 4259 McLaughlin 2 +82505 4259 never fails to entertain 4 +82506 4259 fails to entertain 0 +82507 4259 to entertain 3 +82508 4260 The film was immensely enjoyable thanks to great performances by both Steve Buscemi and Rosario Dawson ... 4 +82509 4260 was immensely enjoyable thanks to great performances by both Steve Buscemi and Rosario Dawson ... 4 +82510 4260 was immensely enjoyable thanks to great performances by both Steve Buscemi and Rosario Dawson 4 +82511 4260 was immensely enjoyable thanks to great performances 4 +82512 4260 was immensely enjoyable 3 +82513 4260 immensely enjoyable 4 +82514 4260 thanks to great performances 4 +82515 4260 to great performances 4 +82516 4260 great performances 4 +82517 4260 by both Steve Buscemi and Rosario Dawson 2 +82518 4260 both Steve Buscemi and Rosario Dawson 2 +82519 4260 Steve Buscemi and Rosario Dawson 2 +82520 4260 Buscemi and Rosario Dawson 2 +82521 4260 Buscemi 2 +82522 4260 and Rosario Dawson 2 +82523 4260 Rosario Dawson 2 +82524 4260 Rosario 2 +82525 4261 Looks more like a travel-agency video targeted at people who like to ride bikes topless and roll in the mud than a worthwhile glimpse of independent-community guiding lights . 0 +82526 4261 Looks more like a travel-agency video targeted at people who like to ride bikes 1 +82527 4261 more like a travel-agency video targeted at people who like to ride bikes 0 +82528 4261 more like a travel-agency video 1 +82529 4261 like a travel-agency video 1 +82530 4261 a travel-agency video 2 +82531 4261 travel-agency video 2 +82532 4261 travel-agency 2 +82533 4261 targeted at people who like to ride bikes 2 +82534 4261 targeted 2 +82535 4261 at people who like to ride bikes 2 +82536 4261 people who like to ride bikes 2 +82537 4261 who like to ride bikes 2 +82538 4261 like to ride bikes 3 +82539 4261 to ride bikes 2 +82540 4261 ride bikes 2 +82541 4261 topless and roll in the mud than a worthwhile glimpse of independent-community guiding lights . 1 +82542 4261 topless and roll in the mud than a worthwhile glimpse of independent-community guiding lights 1 +82543 4261 topless and roll 2 +82544 4261 topless and 2 +82545 4261 in the mud than a worthwhile glimpse of independent-community guiding lights 2 +82546 4261 the mud than a worthwhile glimpse of independent-community guiding lights 2 +82547 4261 the mud 2 +82548 4261 than a worthwhile glimpse of independent-community guiding lights 2 +82549 4261 a worthwhile glimpse of independent-community guiding lights 3 +82550 4261 a worthwhile glimpse 3 +82551 4261 worthwhile glimpse 4 +82552 4261 of independent-community guiding lights 2 +82553 4261 independent-community guiding lights 3 +82554 4261 independent-community 3 +82555 4261 guiding lights 3 +82556 4261 guiding 2 +82557 4262 A small independent film suffering from a severe case of Hollywood-itis . 1 +82558 4262 A small independent film suffering from a severe case of Hollywood-itis 2 +82559 4262 A small independent film 2 +82560 4262 small independent film 2 +82561 4262 suffering from a severe case of Hollywood-itis 1 +82562 4262 from a severe case of Hollywood-itis 1 +82563 4262 a severe case of Hollywood-itis 1 +82564 4262 a severe case 2 +82565 4262 severe case 2 +82566 4262 of Hollywood-itis 2 +82567 4262 Hollywood-itis 2 +82568 4263 A much more successful translation than its most famous previous film adaptation , writer-director Anthony Friedman 's similarly updated 1970 British production . 3 +82569 4263 A much more successful translation than its most famous previous film adaptation 4 +82570 4263 A much more successful translation 2 +82571 4263 much more successful translation 4 +82572 4263 much more successful 3 +82573 4263 than its most famous previous film adaptation 2 +82574 4263 its most famous previous film adaptation 2 +82575 4263 most famous previous film adaptation 2 +82576 4263 most famous 3 +82577 4263 previous film adaptation 2 +82578 4263 film adaptation 2 +82579 4263 , writer-director Anthony Friedman 's similarly updated 1970 British production . 2 +82580 4263 writer-director Anthony Friedman 's similarly updated 1970 British production . 2 +82581 4263 writer-director Anthony Friedman 2 +82582 4263 Anthony Friedman 2 +82583 4263 Friedman 2 +82584 4263 's similarly updated 1970 British production . 2 +82585 4263 's similarly updated 1970 British production 2 +82586 4263 's similarly 2 +82587 4263 updated 1970 British production 2 +82588 4263 1970 British production 2 +82589 4263 1970 2 +82590 4263 British production 2 +82591 4264 Writer-director David Jacobson and his star , Jeremy Renner , have made a remarkable film that explores the monster 's psychology not in order to excuse him but rather to demonstrate that his pathology evolved from human impulses that grew hideously twisted . 4 +82592 4264 Writer-director David Jacobson and his star , Jeremy Renner , 2 +82593 4264 Writer-director David Jacobson and his star , Jeremy Renner 2 +82594 4264 Writer-director David Jacobson and his star , 2 +82595 4264 Writer-director David Jacobson and his star 2 +82596 4264 Writer-director David Jacobson and 3 +82597 4264 Writer-director David Jacobson 3 +82598 4264 his star 2 +82599 4264 have made a remarkable film that explores the monster 's psychology not in order to excuse him but rather to demonstrate that his pathology evolved from human impulses that grew hideously twisted . 4 +82600 4264 have made a remarkable film that explores the monster 's psychology not in order to excuse him but rather to demonstrate that his pathology evolved from human impulses that grew hideously twisted 4 +82601 4264 made a remarkable film that explores the monster 's psychology not in order to excuse him but rather to demonstrate that his pathology evolved from human impulses that grew hideously twisted 4 +82602 4264 a remarkable film that explores the monster 's psychology not in order to excuse him but rather to demonstrate that his pathology evolved from human impulses that grew hideously twisted 4 +82603 4264 a remarkable film 4 +82604 4264 remarkable film 4 +82605 4264 that explores the monster 's psychology not in order to excuse him but rather to demonstrate that his pathology evolved from human impulses that grew hideously twisted 3 +82606 4264 explores the monster 's psychology not in order to excuse him but rather to demonstrate that his pathology evolved from human impulses that grew hideously twisted 2 +82607 4264 the monster 's psychology not in order to excuse him but rather to demonstrate that his pathology evolved from human impulses that grew hideously twisted 2 +82608 4264 the monster 's 2 +82609 4264 monster 's 2 +82610 4264 psychology not in order to excuse him but rather to demonstrate that his pathology evolved from human impulses that grew hideously twisted 2 +82611 4264 not in order to excuse him but rather to demonstrate that his pathology evolved from human impulses that grew hideously twisted 1 +82612 4264 not in order 2 +82613 4264 in order 2 +82614 4264 to excuse him but rather to demonstrate that his pathology evolved from human impulses that grew hideously twisted 2 +82615 4264 to excuse him but rather 2 +82616 4264 to excuse him 2 +82617 4264 excuse him 2 +82618 4264 to demonstrate that his pathology evolved from human impulses that grew hideously twisted 2 +82619 4264 demonstrate that his pathology evolved from human impulses that grew hideously twisted 1 +82620 4264 that his pathology evolved from human impulses that grew hideously twisted 2 +82621 4264 his pathology evolved from human impulses that grew hideously twisted 2 +82622 4264 his pathology 2 +82623 4264 pathology 2 +82624 4264 evolved from human impulses that grew hideously twisted 2 +82625 4264 from human impulses that grew hideously twisted 1 +82626 4264 human impulses that grew hideously twisted 1 +82627 4264 human impulses 2 +82628 4264 that grew hideously twisted 0 +82629 4264 grew hideously twisted 1 +82630 4264 hideously twisted 1 +82631 4264 hideously 0 +82632 4265 A portrait of an artist . 2 +82633 4265 A portrait of an artist 2 +82634 4266 A fun ride . 3 +82635 4266 A fun 3 +82636 4266 ride . 2 +82637 4267 This makes Minority Report necessary viewing for sci-fi fans , as the film has some of the best special effects ever . 4 +82638 4267 makes Minority Report necessary viewing for sci-fi fans , as the film has some of the best special effects ever . 4 +82639 4267 makes Minority Report necessary viewing for sci-fi fans , as the film has some of the best special effects ever 4 +82640 4267 makes Minority Report necessary viewing for sci-fi fans , 4 +82641 4267 makes Minority Report necessary viewing for sci-fi fans 3 +82642 4267 Minority Report necessary viewing for sci-fi fans 2 +82643 4267 necessary viewing for sci-fi fans 3 +82644 4267 viewing for sci-fi fans 2 +82645 4267 for sci-fi fans 2 +82646 4267 sci-fi fans 2 +82647 4267 as the film has some of the best special effects ever 4 +82648 4267 the film has some of the best special effects ever 4 +82649 4267 has some of the best special effects ever 3 +82650 4267 has some of the best special effects 3 +82651 4267 some of the best special effects 3 +82652 4267 of the best special effects 3 +82653 4267 the best special effects 3 +82654 4267 best special effects 4 +82655 4268 ... while each moment of this broken character study is rich in emotional texture , the journey does n't really go anywhere . 1 +82656 4268 while each moment of this broken character study is rich in emotional texture , the journey does n't really go anywhere . 2 +82657 4268 while each moment of this broken character study is rich in emotional texture 2 +82658 4268 each moment of this broken character study is rich in emotional texture 3 +82659 4268 each moment of this broken character study 2 +82660 4268 each moment 2 +82661 4268 of this broken character study 2 +82662 4268 this broken character study 1 +82663 4268 broken character study 1 +82664 4268 is rich in emotional texture 3 +82665 4268 rich in emotional texture 4 +82666 4268 in emotional texture 2 +82667 4268 emotional texture 2 +82668 4268 , the journey does n't really go anywhere . 1 +82669 4268 the journey does n't really go anywhere . 0 +82670 4268 does n't really go anywhere . 1 +82671 4268 does n't really go anywhere 1 +82672 4268 go anywhere 2 +82673 4269 Not all of the stories work and the ones that do are thin and scattered , but the film works well enough to make it worth watching . 3 +82674 4269 Not all of the stories work and the ones that do are thin and scattered , but the film works well enough to make it worth watching 3 +82675 4269 Not all of the stories work and the ones that do are thin and scattered , but 0 +82676 4269 Not all of the stories work and the ones that do are thin and scattered , 1 +82677 4269 Not all of the stories work and the ones that do are thin and scattered 2 +82678 4269 Not all of the stories work and the ones that do 1 +82679 4269 Not all 2 +82680 4269 of the stories work and the ones that do 2 +82681 4269 the stories work and the ones that do 2 +82682 4269 the stories work and 3 +82683 4269 the stories work 2 +82684 4269 stories work 3 +82685 4269 the ones that do 2 +82686 4269 that do 2 +82687 4269 are thin and scattered 2 +82688 4269 thin and scattered 2 +82689 4269 thin and 2 +82690 4269 the film works well enough to make it worth watching 3 +82691 4269 works well enough to make it worth watching 3 +82692 4269 works well enough 3 +82693 4269 to make it worth watching 3 +82694 4269 make it worth watching 3 +82695 4269 it worth watching 3 +82696 4269 worth watching 3 +82697 4270 This is one of the biggest disappointments of the year . 0 +82698 4270 is one of the biggest disappointments of the year . 0 +82699 4270 is one of the biggest disappointments of the year 0 +82700 4270 one of the biggest disappointments of the year 1 +82701 4270 of the biggest disappointments of the year 0 +82702 4270 the biggest disappointments of the year 1 +82703 4270 the biggest disappointments 1 +82704 4270 biggest disappointments 0 +82705 4271 But it is entertaining on an inferior level . 3 +82706 4271 it is entertaining on an inferior level . 1 +82707 4271 is entertaining on an inferior level . 2 +82708 4271 is entertaining on an inferior level 1 +82709 4271 entertaining on an inferior level 1 +82710 4271 on an inferior level 1 +82711 4271 an inferior level 1 +82712 4271 inferior level 1 +82713 4271 inferior 0 +82714 4272 It 's sincere to a fault , but , unfortunately , not very compelling or much fun . 2 +82715 4272 's sincere to a fault , but , unfortunately , not very compelling or much fun . 0 +82716 4272 's sincere to a fault , but , unfortunately , not very compelling or much fun 1 +82717 4272 's sincere to a fault , but , unfortunately , 1 +82718 4272 's sincere to a fault , but , unfortunately 1 +82719 4272 's sincere to a fault , but , 1 +82720 4272 's sincere to a fault , but 2 +82721 4272 sincere to a fault , but 2 +82722 4272 to a fault , but 2 +82723 4272 a fault , but 2 +82724 4272 a fault , 2 +82725 4272 not very compelling or much fun 0 +82726 4272 very compelling or much fun 3 +82727 4272 very compelling or 3 +82728 4273 The movie has generic virtues , and despite a lot of involved talent , seems done by the numbers . 2 +82729 4273 has generic virtues , and despite a lot of involved talent , seems done by the numbers . 2 +82730 4273 has generic virtues , and despite a lot of involved talent , seems done by the numbers 3 +82731 4273 has generic virtues , and despite a lot of involved talent , 2 +82732 4273 has generic virtues , and despite a lot of involved talent 2 +82733 4273 has generic virtues , and 2 +82734 4273 has generic virtues , 1 +82735 4273 has generic virtues 3 +82736 4273 generic virtues 2 +82737 4273 despite a lot of involved talent 2 +82738 4273 despite a lot 2 +82739 4273 of involved talent 3 +82740 4273 involved talent 3 +82741 4273 seems done by the numbers 2 +82742 4273 done by the numbers 2 +82743 4274 A road trip that will get you thinking , ` Are we there yet ? ' 2 +82744 4274 A road trip that will get you thinking , ` Are we there yet ? 1 +82745 4274 A road trip that will get you thinking , ` Are we there yet 2 +82746 4274 A road trip 2 +82747 4274 road trip 2 +82748 4274 that will get you thinking , ` Are we there yet 2 +82749 4274 will get you thinking , ` Are we there yet 1 +82750 4274 get you thinking , ` Are we there yet 2 +82751 4274 get you thinking , ` Are we there 2 +82752 4274 you thinking , ` Are we there 2 +82753 4274 thinking , ` Are we there 2 +82754 4274 thinking , ` 2 +82755 4274 thinking , 2 +82756 4274 Are we there 2 +82757 4274 Are we 2 +82758 4275 Stripped almost entirely of such tools as nudity , profanity and violence , LaBute does manage to make a few points about modern man and his problematic quest for human connection . 1 +82759 4275 Stripped almost entirely of such tools as nudity , profanity and violence 1 +82760 4275 Stripped almost entirely 1 +82761 4275 Stripped 2 +82762 4275 of such tools as nudity , profanity and violence 1 +82763 4275 such tools as nudity , profanity and violence 2 +82764 4275 such tools 2 +82765 4275 tools 2 +82766 4275 as nudity , profanity and violence 1 +82767 4275 nudity , profanity and violence 1 +82768 4275 , profanity and violence 2 +82769 4275 profanity and violence 1 +82770 4275 profanity and 2 +82771 4275 profanity 2 +82772 4275 , LaBute does manage to make a few points about modern man and his problematic quest for human connection . 3 +82773 4275 LaBute does manage to make a few points about modern man and his problematic quest for human connection . 3 +82774 4275 does manage to make a few points about modern man and his problematic quest for human connection . 2 +82775 4275 does manage to make a few points about modern man and his problematic quest for human connection 3 +82776 4275 manage to make a few points about modern man and his problematic quest for human connection 2 +82777 4275 to make a few points about modern man and his problematic quest for human connection 2 +82778 4275 make a few points about modern man and his problematic quest for human connection 2 +82779 4275 a few points about modern man and his problematic quest for human connection 3 +82780 4275 a few points about modern man and 2 +82781 4275 a few points about modern man 2 +82782 4275 a few points 2 +82783 4275 few points 1 +82784 4275 about modern man 2 +82785 4275 modern man 2 +82786 4275 his problematic quest for human connection 2 +82787 4275 his problematic quest 2 +82788 4275 problematic quest 1 +82789 4275 for human connection 3 +82790 4275 human connection 2 +82791 4276 Watching War Photographer , you come to believe that Nachtwey hates the wars he shows and empathizes with the victims he reveals . 3 +82792 4276 Watching War Photographer 2 +82793 4276 War Photographer 2 +82794 4276 Photographer 2 +82795 4276 , you come to believe that Nachtwey hates the wars he shows and empathizes with the victims he reveals . 3 +82796 4276 you come to believe that Nachtwey hates the wars he shows and empathizes with the victims he reveals . 3 +82797 4276 come to believe that Nachtwey hates the wars he shows and empathizes with the victims he reveals . 2 +82798 4276 come to believe that Nachtwey hates the wars he shows and empathizes with the victims he reveals 3 +82799 4276 to believe that Nachtwey hates the wars he shows and empathizes with the victims he reveals 2 +82800 4276 believe that Nachtwey hates the wars he shows and empathizes with the victims he reveals 3 +82801 4276 that Nachtwey hates the wars he shows and empathizes with the victims he reveals 2 +82802 4276 Nachtwey hates the wars he shows and empathizes with the victims he reveals 3 +82803 4276 hates the wars he shows and empathizes with the victims he reveals 2 +82804 4276 hates 1 +82805 4276 the wars he shows and empathizes with the victims he reveals 3 +82806 4276 the wars 2 +82807 4276 he shows and empathizes with the victims he reveals 3 +82808 4276 shows and empathizes with the victims he reveals 2 +82809 4276 shows and empathizes 2 +82810 4276 shows and 2 +82811 4276 empathizes 2 +82812 4276 with the victims he reveals 2 +82813 4276 the victims he reveals 2 +82814 4276 the victims 1 +82815 4276 he reveals 2 +82816 4277 To paraphrase a line from another Dickens ' novel , Nicholas Nickleby is too much like a fragment of an underdone potato . 0 +82817 4277 To paraphrase a line from another Dickens ' novel 3 +82818 4277 paraphrase a line from another Dickens ' novel 3 +82819 4277 paraphrase a line 2 +82820 4277 paraphrase 2 +82821 4277 a line 2 +82822 4277 from another Dickens ' novel 2 +82823 4277 another Dickens ' novel 2 +82824 4277 another Dickens ' 2 +82825 4277 , Nicholas Nickleby is too much like a fragment of an underdone potato . 1 +82826 4277 Nicholas Nickleby is too much like a fragment of an underdone potato . 1 +82827 4277 is too much like a fragment of an underdone potato . 1 +82828 4277 is too much like a fragment of an underdone potato 1 +82829 4277 too much like a fragment of an underdone potato 0 +82830 4277 much like a fragment of an underdone potato 1 +82831 4277 like a fragment of an underdone potato 0 +82832 4277 a fragment of an underdone potato 1 +82833 4277 a fragment 2 +82834 4277 fragment 2 +82835 4277 of an underdone potato 1 +82836 4277 an underdone potato 1 +82837 4277 underdone potato 1 +82838 4277 underdone 1 +82839 4277 potato 2 +82840 4278 -LRB- Rises -RRB- above its oh-so-Hollywood rejiggering and its conventional direction to give the film a soul and an unabashed sense of good old-fashioned escapism . 3 +82841 4278 -LRB- Rises -RRB- above its oh-so-Hollywood rejiggering and its conventional direction to give the film a soul and an unabashed sense of good old-fashioned escapism 3 +82842 4278 -LRB- Rises -RRB- 2 +82843 4278 Rises -RRB- 3 +82844 4278 above its oh-so-Hollywood rejiggering and its conventional direction to give the film a soul and an unabashed sense of good old-fashioned escapism 4 +82845 4278 its oh-so-Hollywood rejiggering and its conventional direction to give the film a soul and an unabashed sense of good old-fashioned escapism 3 +82846 4278 its oh-so-Hollywood rejiggering and 1 +82847 4278 its oh-so-Hollywood rejiggering 3 +82848 4278 oh-so-Hollywood rejiggering 2 +82849 4278 oh-so-Hollywood 2 +82850 4278 rejiggering 2 +82851 4278 its conventional direction to give the film a soul and an unabashed sense of good old-fashioned escapism 2 +82852 4278 conventional direction to give the film a soul and an unabashed sense of good old-fashioned escapism 3 +82853 4278 direction to give the film a soul and an unabashed sense of good old-fashioned escapism 3 +82854 4278 to give the film a soul and an unabashed sense of good old-fashioned escapism 3 +82855 4278 give the film a soul and an unabashed sense of good old-fashioned escapism 4 +82856 4278 a soul and an unabashed sense of good old-fashioned escapism 4 +82857 4278 a soul and 3 +82858 4278 a soul 2 +82859 4278 an unabashed sense of good old-fashioned escapism 3 +82860 4278 an unabashed sense 2 +82861 4278 unabashed sense 2 +82862 4278 of good old-fashioned escapism 3 +82863 4278 good old-fashioned escapism 2 +82864 4278 old-fashioned escapism 2 +82865 4279 Like its predecessor , it 's no classic , but it provides a reasonably attractive holiday contraption , one that families looking for a clean , kid-friendly outing should investigate . 2 +82866 4279 Like its predecessor , it 's no classic , but it provides a reasonably attractive holiday contraption , one that families looking for a clean , kid-friendly outing should investigate 2 +82867 4279 Like its predecessor , it 's no classic , but 1 +82868 4279 Like its predecessor , it 's no classic , 1 +82869 4279 Like its predecessor , it 's no classic 1 +82870 4279 Like its predecessor 2 +82871 4279 , it 's no classic 1 +82872 4279 it 's no classic 1 +82873 4279 's no classic 1 +82874 4279 no classic 2 +82875 4279 it provides a reasonably attractive holiday contraption , one that families looking for a clean , kid-friendly outing should investigate 4 +82876 4279 provides a reasonably attractive holiday contraption , one that families looking for a clean , kid-friendly outing should investigate 3 +82877 4279 a reasonably attractive holiday contraption , one that families looking for a clean , kid-friendly outing should investigate 3 +82878 4279 a reasonably attractive holiday contraption , 3 +82879 4279 a reasonably attractive holiday contraption 3 +82880 4279 reasonably attractive holiday contraption 3 +82881 4279 reasonably attractive 3 +82882 4279 holiday contraption 2 +82883 4279 contraption 2 +82884 4279 one that families looking for a clean , kid-friendly outing should investigate 3 +82885 4279 that families looking for a clean , kid-friendly outing should investigate 3 +82886 4279 families looking for a clean , kid-friendly outing should investigate 3 +82887 4279 families looking for a clean , kid-friendly outing 3 +82888 4279 looking for a clean , kid-friendly outing 2 +82889 4279 for a clean , kid-friendly outing 3 +82890 4279 a clean , kid-friendly outing 3 +82891 4279 clean , kid-friendly outing 3 +82892 4279 , kid-friendly outing 3 +82893 4279 kid-friendly outing 4 +82894 4279 kid-friendly 3 +82895 4279 should investigate 2 +82896 4279 investigate 2 +82897 4280 The direction has a fluid , no-nonsense authority , and the performances by Harris , Phifer and Cam ` ron seal the deal . 3 +82898 4280 The direction has a fluid , no-nonsense authority , and the performances by Harris , Phifer and Cam ` ron seal the deal 4 +82899 4280 The direction has a fluid , no-nonsense authority , and 3 +82900 4280 The direction has a fluid , no-nonsense authority , 2 +82901 4280 The direction has a fluid , no-nonsense authority 3 +82902 4280 has a fluid , no-nonsense authority 3 +82903 4280 a fluid , no-nonsense authority 3 +82904 4280 fluid , no-nonsense authority 3 +82905 4280 , no-nonsense authority 2 +82906 4280 no-nonsense authority 3 +82907 4280 no-nonsense 2 +82908 4280 the performances by Harris , Phifer and Cam ` ron seal the deal 3 +82909 4280 the performances by Harris , Phifer and Cam 2 +82910 4280 by Harris , Phifer and Cam 2 +82911 4280 Harris , Phifer and Cam 2 +82912 4280 , Phifer and Cam 2 +82913 4280 Phifer and Cam 2 +82914 4280 Phifer and 2 +82915 4280 Phifer 2 +82916 4280 Cam 2 +82917 4280 ` ron seal the deal 3 +82918 4280 ron seal the deal 2 +82919 4280 seal the deal 3 +82920 4280 seal 2 +82921 4280 the deal 2 +82922 4281 Self-congratulatory , misguided , and ill-informed , if nonetheless compulsively watchable . 2 +82923 4281 Self-congratulatory , misguided , and ill-informed , if nonetheless compulsively watchable 2 +82924 4281 Self-congratulatory , 2 +82925 4281 Self-congratulatory 1 +82926 4281 misguided , and ill-informed , if nonetheless compulsively watchable 1 +82927 4281 misguided , and ill-informed , if 1 +82928 4281 misguided , and ill-informed , 1 +82929 4281 misguided , and ill-informed 2 +82930 4281 misguided , and 1 +82931 4281 misguided , 2 +82932 4281 ill-informed 1 +82933 4281 nonetheless compulsively watchable 3 +82934 4282 An infuriating film . 0 +82935 4282 infuriating film . 0 +82936 4283 -LRB- Hayek -RRB- throws herself into this dream Hispanic role with a teeth-clenching gusto , she strikes a potent chemistry with Molina and she gradually makes us believe she is Kahlo . 4 +82937 4283 -LRB- Hayek -RRB- throws herself into this dream Hispanic role with a teeth-clenching gusto , she strikes a potent chemistry with Molina and she gradually makes us believe she is Kahlo 4 +82938 4283 -LRB- Hayek -RRB- throws herself into this dream Hispanic role with a teeth-clenching gusto , she strikes a potent chemistry with Molina and 3 +82939 4283 -LRB- Hayek -RRB- throws herself into this dream Hispanic role with a teeth-clenching gusto , she strikes a potent chemistry with Molina 3 +82940 4283 -LRB- Hayek -RRB- throws herself into this dream Hispanic role with a teeth-clenching gusto , 3 +82941 4283 -LRB- Hayek -RRB- throws herself into this dream Hispanic role with a teeth-clenching gusto 3 +82942 4283 -LRB- Hayek -RRB- 3 +82943 4283 Hayek -RRB- 2 +82944 4283 throws herself into this dream Hispanic role with a teeth-clenching gusto 3 +82945 4283 throws herself 2 +82946 4283 into this dream Hispanic role with a teeth-clenching gusto 3 +82947 4283 this dream Hispanic role with a teeth-clenching gusto 2 +82948 4283 this dream Hispanic role 3 +82949 4283 dream Hispanic role 2 +82950 4283 Hispanic role 2 +82951 4283 Hispanic 2 +82952 4283 with a teeth-clenching gusto 3 +82953 4283 a teeth-clenching gusto 3 +82954 4283 teeth-clenching gusto 3 +82955 4283 teeth-clenching 3 +82956 4283 gusto 3 +82957 4283 she strikes a potent chemistry with Molina 3 +82958 4283 strikes a potent chemistry with Molina 3 +82959 4283 strikes a potent chemistry 3 +82960 4283 a potent chemistry 3 +82961 4283 potent chemistry 3 +82962 4283 with Molina 2 +82963 4283 Molina 2 +82964 4283 she gradually makes us believe she is Kahlo 3 +82965 4283 gradually makes us believe she is Kahlo 3 +82966 4283 makes us believe she is Kahlo 3 +82967 4283 us believe she is Kahlo 2 +82968 4283 believe she is Kahlo 2 +82969 4283 she is Kahlo 2 +82970 4283 is Kahlo 2 +82971 4284 Call it magic realism or surrealism , but Miss Wonton floats beyond reality with a certain degree of wit and dignity . 4 +82972 4284 Call it magic realism or surrealism 2 +82973 4284 Call it magic 3 +82974 4284 it magic 3 +82975 4284 realism or surrealism 2 +82976 4284 realism or 2 +82977 4284 , but Miss Wonton floats beyond reality with a certain degree of wit and dignity . 4 +82978 4284 , but Miss Wonton floats beyond reality with a certain degree of wit and dignity 3 +82979 4284 Miss Wonton floats beyond reality with a certain degree of wit and dignity 3 +82980 4284 Miss Wonton 2 +82981 4284 Wonton 2 +82982 4284 floats beyond reality with a certain degree of wit and dignity 3 +82983 4284 floats beyond reality 2 +82984 4284 floats 2 +82985 4284 beyond reality 2 +82986 4284 with a certain degree of wit and dignity 3 +82987 4284 a certain degree of wit and dignity 3 +82988 4284 of wit and dignity 3 +82989 4284 wit and dignity 3 +82990 4285 There 's an admirable rigor to Jimmy 's relentless anger , and to the script 's refusal of a happy ending , but as those monologues stretch on and on , you realize there 's no place for this story to go but down . 1 +82991 4285 There 's an admirable rigor to Jimmy 's relentless anger , and to the script 's refusal of a happy ending , but as those monologues stretch on and on , you realize there 's no place for this story to go but down 1 +82992 4285 There 's an admirable rigor to Jimmy 's relentless anger , and to the script 's refusal of a happy ending , but 3 +82993 4285 There 's an admirable rigor to Jimmy 's relentless anger , and to the script 's refusal of a happy ending , 1 +82994 4285 There 's an admirable rigor to Jimmy 's relentless anger , and to the script 's refusal of a happy ending 3 +82995 4285 's an admirable rigor to Jimmy 's relentless anger , and to the script 's refusal of a happy ending 2 +82996 4285 an admirable rigor to Jimmy 's relentless anger , and to the script 's refusal of a happy ending 2 +82997 4285 an admirable rigor 3 +82998 4285 admirable rigor 3 +82999 4285 rigor 1 +83000 4285 to Jimmy 's relentless anger , and to the script 's refusal of a happy ending 1 +83001 4285 to Jimmy 's relentless anger 1 +83002 4285 Jimmy 's relentless anger 2 +83003 4285 Jimmy 's 2 +83004 4285 Jimmy 2 +83005 4285 relentless anger 2 +83006 4285 anger 1 +83007 4285 , and to the script 's refusal of a happy ending 1 +83008 4285 to the script 's refusal of a happy ending 1 +83009 4285 the script 's refusal of a happy ending 1 +83010 4285 the script 's refusal 1 +83011 4285 of a happy ending 3 +83012 4285 as those monologues stretch on and on , you realize there 's no place for this story to go but down 0 +83013 4285 as those monologues stretch on and on 1 +83014 4285 those monologues stretch on and on 1 +83015 4285 those monologues 2 +83016 4285 monologues 2 +83017 4285 stretch on and on 2 +83018 4285 , you realize there 's no place for this story to go but down 1 +83019 4285 you realize there 's no place for this story to go but down 3 +83020 4285 realize there 's no place for this story to go but down 0 +83021 4285 there 's no place for this story to go but down 1 +83022 4285 's no place for this story to go but down 1 +83023 4285 no place for this story to go but down 1 +83024 4285 no place 2 +83025 4285 for this story to go but down 1 +83026 4285 this story to go but down 1 +83027 4285 story to go but down 2 +83028 4285 to go but down 2 +83029 4285 go but down 1 +83030 4285 but down 2 +83031 4286 Rymer does n't trust laughs -- and does n't conjure proper respect for followers of the whole dead-undead genre , who deserve more from a vampire pic than a few shrieky special effects . 1 +83032 4286 Rymer 2 +83033 4286 does n't trust laughs -- and does n't conjure proper respect for followers of the whole dead-undead genre , who deserve more from a vampire pic than a few shrieky special effects . 1 +83034 4286 does n't trust laughs -- and does n't conjure proper respect for followers of the whole dead-undead genre , who deserve more from a vampire pic than a few shrieky special effects 1 +83035 4286 does n't trust laughs -- and 2 +83036 4286 does n't trust laughs -- 2 +83037 4286 does n't trust laughs 1 +83038 4286 trust laughs 3 +83039 4286 does n't conjure proper respect for followers of the whole dead-undead genre , who deserve more from a vampire pic than a few shrieky special effects 1 +83040 4286 conjure proper respect for followers of the whole dead-undead genre , who deserve more from a vampire pic than a few shrieky special effects 1 +83041 4286 conjure proper respect 3 +83042 4286 conjure 2 +83043 4286 proper respect 3 +83044 4286 for followers of the whole dead-undead genre , who deserve more from a vampire pic than a few shrieky special effects 1 +83045 4286 followers of the whole dead-undead genre , who deserve more from a vampire pic than a few shrieky special effects 1 +83046 4286 followers 2 +83047 4286 of the whole dead-undead genre , who deserve more from a vampire pic than a few shrieky special effects 1 +83048 4286 the whole dead-undead genre , who deserve more from a vampire pic than a few shrieky special effects 1 +83049 4286 the whole dead-undead genre , 2 +83050 4286 the whole dead-undead genre 1 +83051 4286 whole dead-undead genre 2 +83052 4286 dead-undead genre 1 +83053 4286 dead-undead 2 +83054 4286 who deserve more from a vampire pic than a few shrieky special effects 1 +83055 4286 deserve more from a vampire pic than a few shrieky special effects 2 +83056 4286 deserve more 2 +83057 4286 from a vampire pic than a few shrieky special effects 2 +83058 4286 a vampire pic than a few shrieky special effects 2 +83059 4286 a vampire pic 2 +83060 4286 vampire pic 2 +83061 4286 than a few shrieky special effects 2 +83062 4286 a few shrieky special effects 2 +83063 4286 few shrieky special effects 2 +83064 4286 shrieky special effects 1 +83065 4286 shrieky 2 +83066 4287 But here 's a glimpse at his life . 2 +83067 4287 here 's a glimpse at his life . 2 +83068 4287 's a glimpse at his life . 2 +83069 4287 's a glimpse at his life 2 +83070 4287 a glimpse at his life 2 +83071 4287 a glimpse 2 +83072 4287 at his life 2 +83073 4288 Shreve 's graceful dual narrative gets clunky on the screen , and we keep getting torn away from the compelling historical tale to a less-compelling soap opera . 1 +83074 4288 Shreve 's graceful dual narrative gets clunky on the screen , and we keep getting torn away from the compelling historical tale to a less-compelling soap opera 1 +83075 4288 Shreve 's graceful dual narrative gets clunky on the screen , and 1 +83076 4288 Shreve 's graceful dual narrative gets clunky on the screen , 1 +83077 4288 Shreve 's graceful dual narrative gets clunky on the screen 2 +83078 4288 Shreve 's graceful dual narrative 3 +83079 4288 Shreve 's 2 +83080 4288 Shreve 2 +83081 4288 graceful dual narrative 3 +83082 4288 dual narrative 2 +83083 4288 gets clunky on the screen 1 +83084 4288 clunky on the screen 1 +83085 4288 we keep getting torn away from the compelling historical tale to a less-compelling soap opera 1 +83086 4288 keep getting torn away from the compelling historical tale to a less-compelling soap opera 1 +83087 4288 getting torn away from the compelling historical tale to a less-compelling soap opera 1 +83088 4288 torn away from the compelling historical tale to a less-compelling soap opera 1 +83089 4288 torn away from the compelling historical tale 2 +83090 4288 torn away 1 +83091 4288 torn 2 +83092 4288 from the compelling historical tale 2 +83093 4288 the compelling historical tale 3 +83094 4288 compelling historical tale 3 +83095 4288 historical tale 2 +83096 4288 to a less-compelling soap opera 2 +83097 4288 a less-compelling soap opera 1 +83098 4288 less-compelling soap opera 2 +83099 4288 less-compelling 1 +83100 4289 To the civilized mind , a movie like Ballistic : Ecks Vs. Sever is more of an ordeal than an amusement . 0 +83101 4289 To the civilized mind 2 +83102 4289 the civilized mind 2 +83103 4289 civilized mind 2 +83104 4289 civilized 2 +83105 4289 , a movie like Ballistic : Ecks Vs. Sever is more of an ordeal than an amusement . 1 +83106 4289 a movie like Ballistic : Ecks Vs. Sever is more of an ordeal than an amusement . 0 +83107 4289 a movie like Ballistic : Ecks Vs. Sever 2 +83108 4289 like Ballistic : Ecks Vs. Sever 2 +83109 4289 is more of an ordeal than an amusement . 0 +83110 4289 is more of an ordeal than an amusement 1 +83111 4289 more of an ordeal than an amusement 0 +83112 4289 of an ordeal than an amusement 1 +83113 4289 an ordeal than an amusement 1 +83114 4289 an ordeal 1 +83115 4289 than an amusement 2 +83116 4289 an amusement 3 +83117 4289 amusement 3 +83118 4290 Ludicrous , but director Carl Franklin adds enough flourishes and freak-outs to make it entertaining . 3 +83119 4290 , but director Carl Franklin adds enough flourishes and freak-outs to make it entertaining . 3 +83120 4290 , but director Carl Franklin adds enough flourishes and freak-outs to make it entertaining 3 +83121 4290 director Carl Franklin adds enough flourishes and freak-outs to make it entertaining 3 +83122 4290 adds enough flourishes and freak-outs to make it entertaining 3 +83123 4290 enough flourishes and freak-outs to make it entertaining 3 +83124 4290 enough flourishes and freak-outs 1 +83125 4290 flourishes and freak-outs 2 +83126 4290 flourishes and 3 +83127 4290 flourishes 3 +83128 4290 freak-outs 2 +83129 4291 The irony is that this film 's cast is uniformly superb ; their performances could have -- should have -- been allowed to stand on their own . 3 +83130 4291 The irony is that this film 's cast is uniformly superb ; their performances could have -- should have -- been allowed to stand on their own 2 +83131 4291 The irony is that this film 's cast is uniformly superb ; 2 +83132 4291 The irony is that this film 's cast is uniformly superb 3 +83133 4291 The irony 2 +83134 4291 is that this film 's cast is uniformly superb 4 +83135 4291 that this film 's cast is uniformly superb 4 +83136 4291 this film 's cast is uniformly superb 3 +83137 4291 this film 's cast 2 +83138 4291 their performances could have -- should have -- been allowed to stand on their own 1 +83139 4291 their performances 2 +83140 4291 could have -- should have -- been allowed to stand on their own 1 +83141 4291 could have -- should have -- been allowed 1 +83142 4291 could have -- should have -- 2 +83143 4291 could have -- should have 1 +83144 4291 could have -- 2 +83145 4291 could have 2 +83146 4291 should have 2 +83147 4291 been allowed 2 +83148 4291 to stand on their own 2 +83149 4291 stand on their own 2 +83150 4292 They just do n't work in concert . 1 +83151 4292 just do n't work in concert . 1 +83152 4292 do n't work in concert . 1 +83153 4292 do n't work in concert 1 +83154 4292 work in concert 3 +83155 4292 in concert 2 +83156 4293 Robin Williams has thankfully ditched the saccharine sentimentality of Bicentennial Man in favour of an altogether darker side . 3 +83157 4293 has thankfully ditched the saccharine sentimentality of Bicentennial Man in favour of an altogether darker side . 3 +83158 4293 has thankfully ditched the saccharine sentimentality of Bicentennial Man in favour of an altogether darker side 3 +83159 4293 has thankfully 2 +83160 4293 thankfully 2 +83161 4293 ditched the saccharine sentimentality of Bicentennial Man in favour of an altogether darker side 3 +83162 4293 ditched the saccharine sentimentality of Bicentennial Man 3 +83163 4293 ditched 2 +83164 4293 the saccharine sentimentality of Bicentennial Man 1 +83165 4293 the saccharine sentimentality 1 +83166 4293 saccharine sentimentality 1 +83167 4293 of Bicentennial Man 2 +83168 4293 Bicentennial Man 2 +83169 4293 Bicentennial 2 +83170 4293 in favour of an altogether darker side 2 +83171 4293 favour of an altogether darker side 3 +83172 4293 favour 3 +83173 4293 of an altogether darker side 2 +83174 4293 an altogether darker side 2 +83175 4293 altogether darker side 1 +83176 4293 altogether darker 2 +83177 4294 The fourth in a series that I 'll bet most parents had thought -- hoped ! 2 +83178 4294 The fourth in a series that I 'll bet most parents had thought -- 2 +83179 4294 The fourth in a series that I 'll bet most parents had thought 2 +83180 4294 The fourth in a series 2 +83181 4294 The fourth 2 +83182 4294 fourth 2 +83183 4294 in a series 2 +83184 4294 that I 'll bet most parents had thought 2 +83185 4294 I 'll bet most parents had thought 3 +83186 4294 'll bet most parents had thought 2 +83187 4294 bet most parents had thought 2 +83188 4294 most parents had thought 2 +83189 4294 most parents 2 +83190 4294 had thought 2 +83191 4294 hoped ! 2 +83192 4295 I ca n't . 2 +83193 4295 ca n't . 2 +83194 4296 A whale of a good time for both children and parents seeking Christian-themed fun . 4 +83195 4296 A whale of a good time for both children and parents seeking Christian-themed fun 4 +83196 4296 A whale of a good time for both children and parents 4 +83197 4296 A whale 2 +83198 4296 of a good time for both children and parents 4 +83199 4296 a good time for both children and parents 4 +83200 4296 for both children and parents 3 +83201 4296 both children and parents 2 +83202 4296 children and parents 2 +83203 4296 children and 2 +83204 4296 seeking Christian-themed fun 3 +83205 4296 Christian-themed fun 3 +83206 4296 Christian-themed 2 +83207 4297 It 's difficult to conceive of anyone who has reached puberty actually finding the characters in Slackers or their antics amusing , let alone funny . 0 +83208 4297 's difficult to conceive of anyone who has reached puberty actually finding the characters in Slackers or their antics amusing , let alone funny . 1 +83209 4297 's difficult to conceive of anyone who has reached puberty actually finding the characters in Slackers or their antics amusing , let alone funny 0 +83210 4297 difficult to conceive of anyone who has reached puberty actually finding the characters in Slackers or their antics amusing , let alone funny 0 +83211 4297 to conceive of anyone who has reached puberty actually finding the characters in Slackers or their antics amusing , let alone funny 1 +83212 4297 conceive of anyone who has reached puberty actually finding the characters in Slackers or their antics amusing , let alone funny 1 +83213 4297 conceive 2 +83214 4297 of anyone who has reached puberty actually finding the characters in Slackers or their antics amusing , let alone funny 0 +83215 4297 anyone who has reached puberty actually finding the characters in Slackers or their antics amusing , let alone funny 0 +83216 4297 who has reached puberty actually finding the characters in Slackers or their antics amusing , let alone funny 0 +83217 4297 has reached puberty actually finding the characters in Slackers or their antics amusing , let alone funny 1 +83218 4297 reached puberty actually finding the characters in Slackers or their antics amusing , let alone funny 2 +83219 4297 reached puberty 2 +83220 4297 reached 2 +83221 4297 actually finding the characters in Slackers or their antics amusing , let alone funny 1 +83222 4297 finding the characters in Slackers or their antics amusing , let alone funny 3 +83223 4297 finding the characters in Slackers or their antics 2 +83224 4297 the characters in Slackers or their antics 2 +83225 4297 in Slackers or their antics 2 +83226 4297 Slackers or their antics 2 +83227 4297 Slackers or 2 +83228 4297 their antics 2 +83229 4297 amusing , let alone funny 3 +83230 4297 , let alone funny 1 +83231 4297 let alone funny 2 +83232 4297 alone funny 2 +83233 4298 Terminally bland , painfully slow and needlessly confusing ... The movie , shot on digital videotape rather than film , is frequently indecipherable . 1 +83234 4298 Terminally bland , painfully slow and needlessly confusing 0 +83235 4298 Terminally bland , painfully slow and 0 +83236 4298 Terminally bland , painfully slow 0 +83237 4298 Terminally bland , 3 +83238 4298 Terminally bland 1 +83239 4298 Terminally 2 +83240 4298 needlessly confusing 1 +83241 4298 ... The movie , shot on digital videotape rather than film , is frequently indecipherable . 1 +83242 4298 The movie , shot on digital videotape rather than film , is frequently indecipherable . 0 +83243 4298 The movie , shot on digital videotape rather than film , is frequently indecipherable 1 +83244 4298 The movie , shot on digital videotape rather than film , 2 +83245 4298 The movie , shot on digital videotape rather than film 1 +83246 4298 shot on digital videotape rather than film 1 +83247 4298 on digital videotape rather than film 2 +83248 4298 digital videotape rather than film 2 +83249 4298 digital videotape rather than 2 +83250 4298 digital videotape 2 +83251 4298 videotape 2 +83252 4298 is frequently indecipherable 2 +83253 4299 The movie 's blatant derivativeness is one reason it 's so lackluster . 1 +83254 4299 The movie 's blatant derivativeness 2 +83255 4299 blatant derivativeness 1 +83256 4299 derivativeness 1 +83257 4299 is one reason it 's so lackluster . 0 +83258 4299 is one reason it 's so lackluster 2 +83259 4299 one reason it 's so lackluster 1 +83260 4299 one reason 2 +83261 4299 it 's so lackluster 0 +83262 4299 's so lackluster 2 +83263 4299 so lackluster 1 +83264 4300 A reasonably entertaining sequel to 1994 's surprise family hit that may strain adult credibility . 3 +83265 4300 A reasonably entertaining sequel to 1994 's surprise family 3 +83266 4300 A reasonably entertaining sequel 3 +83267 4300 reasonably entertaining sequel 3 +83268 4300 reasonably entertaining 3 +83269 4300 to 1994 's surprise family 2 +83270 4300 1994 's surprise family 2 +83271 4300 1994 's 2 +83272 4300 1994 2 +83273 4300 surprise family 3 +83274 4300 hit that may strain adult credibility . 1 +83275 4300 hit that may strain adult credibility 1 +83276 4300 that may strain adult credibility 2 +83277 4300 may strain adult credibility 1 +83278 4300 strain adult credibility 2 +83279 4300 adult credibility 2 +83280 4301 What a great shame that such a talented director as Chen Kaige has chosen to make his English-language debut with a film so poorly plotted and scripted . 0 +83281 4301 What a great shame that such a talented director as Chen Kaige has chosen to make his English-language debut with a film 0 +83282 4301 a great shame that such a talented director as Chen Kaige has chosen to make his English-language debut with a film 0 +83283 4301 a great shame that such a talented director as Chen Kaige 1 +83284 4301 a great shame 2 +83285 4301 great shame 1 +83286 4301 that such a talented director as Chen Kaige 3 +83287 4301 such a talented director as Chen Kaige 3 +83288 4301 such a 2 +83289 4301 talented director as Chen Kaige 3 +83290 4301 talented director 4 +83291 4301 as Chen Kaige 2 +83292 4301 Chen Kaige 2 +83293 4301 Kaige 2 +83294 4301 has chosen to make his English-language debut with a film 1 +83295 4301 chosen to make his English-language debut with a film 2 +83296 4301 chosen 2 +83297 4301 to make his English-language debut with a film 2 +83298 4301 make his English-language debut with a film 2 +83299 4301 make his English-language debut 2 +83300 4301 his English-language debut 2 +83301 4301 English-language debut 2 +83302 4301 with a film 2 +83303 4301 so poorly plotted and scripted . 0 +83304 4301 so poorly 1 +83305 4301 plotted and scripted . 2 +83306 4301 plotted and scripted 2 +83307 4301 plotted and 2 +83308 4302 Directors Harry Gantz and Joe Gantz have chosen a fascinating subject matter , but the couples exposing themselves are n't all that interesting . 2 +83309 4302 Directors Harry Gantz and Joe Gantz have chosen a fascinating subject matter , but the couples exposing themselves are n't all that interesting 1 +83310 4302 Directors Harry Gantz and Joe Gantz have chosen a fascinating subject matter , but 2 +83311 4302 Directors Harry Gantz and Joe Gantz have chosen a fascinating subject matter , 3 +83312 4302 Directors Harry Gantz and Joe Gantz have chosen a fascinating subject matter 2 +83313 4302 Directors Harry Gantz and Joe Gantz 2 +83314 4302 Harry Gantz and Joe Gantz 2 +83315 4302 Gantz and Joe Gantz 2 +83316 4302 and Joe Gantz 2 +83317 4302 Joe Gantz 2 +83318 4302 have chosen a fascinating subject matter 4 +83319 4302 chosen a fascinating subject matter 3 +83320 4302 a fascinating subject matter 4 +83321 4302 fascinating subject matter 4 +83322 4302 fascinating subject 3 +83323 4302 the couples exposing themselves are n't all that interesting 1 +83324 4302 the couples 2 +83325 4302 exposing themselves are n't all that interesting 2 +83326 4302 themselves are n't all that interesting 1 +83327 4302 are n't all that interesting 1 +83328 4302 all that interesting 2 +83329 4303 No amount of blood and disintegrating vampire cadavers can obscure this movie 's lack of ideas . 1 +83330 4303 No amount of blood and disintegrating vampire cadavers 2 +83331 4303 of blood and disintegrating vampire cadavers 2 +83332 4303 blood and disintegrating vampire cadavers 2 +83333 4303 blood and 2 +83334 4303 disintegrating vampire cadavers 2 +83335 4303 vampire cadavers 2 +83336 4303 cadavers 2 +83337 4303 can obscure this movie 's lack of ideas . 1 +83338 4303 can obscure this movie 's lack of ideas 1 +83339 4303 obscure this movie 's lack of ideas 1 +83340 4303 this movie 's lack of ideas 0 +83341 4303 this movie 's lack 2 +83342 4304 A well-rounded tribute to a man whose achievements -- and complexities -- reached far beyond the end zone . 4 +83343 4304 A well-rounded tribute to a man whose achievements -- and complexities -- reached far beyond the end zone 2 +83344 4304 A well-rounded tribute 2 +83345 4304 well-rounded tribute 3 +83346 4304 well-rounded 3 +83347 4304 to a man whose achievements -- and complexities -- reached far beyond the end zone 3 +83348 4304 a man whose achievements -- and complexities -- reached far beyond the end zone 3 +83349 4304 whose achievements -- and complexities -- reached far beyond the end zone 4 +83350 4304 whose achievements -- and complexities -- 3 +83351 4304 whose achievements 2 +83352 4304 -- and complexities -- 2 +83353 4304 -- and complexities 2 +83354 4304 reached far beyond the end zone 2 +83355 4304 far beyond the end zone 2 +83356 4304 beyond the end zone 3 +83357 4304 the end zone 2 +83358 4304 end zone 2 +83359 4305 Ice Cube is n't quite out of ripe screwball ideas , but Friday After Next spreads them pretty thin . 1 +83360 4305 Ice Cube is n't quite out of ripe screwball ideas , but Friday After Next spreads them pretty thin 1 +83361 4305 Ice Cube is n't quite out of ripe screwball ideas , but 2 +83362 4305 Ice Cube is n't quite out of ripe screwball ideas , 2 +83363 4305 Ice Cube is n't quite out of ripe screwball ideas 2 +83364 4305 Ice Cube 2 +83365 4305 Cube 2 +83366 4305 is n't quite out of ripe screwball ideas 2 +83367 4305 is n't quite out of ripe 1 +83368 4305 quite out of ripe 2 +83369 4305 quite out 2 +83370 4305 of ripe 2 +83371 4305 screwball ideas 1 +83372 4305 Friday After Next spreads them pretty thin 1 +83373 4305 After Next spreads them pretty thin 3 +83374 4305 spreads them pretty thin 1 +83375 4305 spreads 2 +83376 4305 them pretty thin 2 +83377 4305 pretty thin 2 +83378 4306 ... a fairly disposable yet still entertaining B picture . 2 +83379 4306 a fairly disposable yet still entertaining B picture . 3 +83380 4306 a fairly disposable yet still entertaining B picture 3 +83381 4306 a fairly disposable yet still entertaining B 3 +83382 4306 fairly disposable yet still entertaining B 3 +83383 4306 fairly disposable yet still entertaining 3 +83384 4306 fairly disposable yet 1 +83385 4306 fairly disposable 0 +83386 4306 still entertaining 2 +83387 4307 Lawrence plumbs personal tragedy and also the human comedy . 3 +83388 4307 plumbs personal tragedy and also the human comedy . 3 +83389 4307 plumbs personal tragedy and also the human comedy 2 +83390 4307 personal tragedy and also the human comedy 3 +83391 4307 personal tragedy and also 2 +83392 4307 personal tragedy and 1 +83393 4307 personal tragedy 1 +83394 4307 the human comedy 2 +83395 4307 human comedy 3 +83396 4308 Romething 's really wrong with this ricture ! 1 +83397 4308 Romething 2 +83398 4308 's really wrong with this ricture ! 1 +83399 4308 's really wrong with this ricture 1 +83400 4308 really wrong with this ricture 1 +83401 4308 wrong with this ricture 1 +83402 4308 with this ricture 2 +83403 4308 this ricture 2 +83404 4308 ricture 2 +83405 4309 Performances all around are tops , with the two leads delivering Oscar-caliber performances . 3 +83406 4309 Performances all around 2 +83407 4309 are tops , with the two leads delivering Oscar-caliber performances . 4 +83408 4309 are tops , with the two leads delivering Oscar-caliber performances 4 +83409 4309 are tops , 2 +83410 4309 are tops 3 +83411 4309 with the two leads delivering Oscar-caliber performances 4 +83412 4309 the two leads delivering Oscar-caliber performances 4 +83413 4309 delivering Oscar-caliber performances 4 +83414 4309 Oscar-caliber performances 4 +83415 4309 Oscar-caliber 3 +83416 4310 While Van Wilder may not be the worst National Lampoon film , it 's far from being this generation 's Animal House . 2 +83417 4310 While Van Wilder may not be the worst National Lampoon film 1 +83418 4310 Van Wilder may not be the worst National Lampoon film 2 +83419 4310 may not be the worst National Lampoon film 2 +83420 4310 be the worst National Lampoon film 1 +83421 4310 the worst National Lampoon film 0 +83422 4310 worst National Lampoon film 1 +83423 4310 National Lampoon film 2 +83424 4310 Lampoon film 2 +83425 4310 , it 's far from being this generation 's Animal House . 1 +83426 4310 it 's far from being this generation 's Animal House . 1 +83427 4310 's far from being this generation 's Animal House . 2 +83428 4310 's far from being this generation 's Animal House 2 +83429 4310 far from being this generation 's Animal House 1 +83430 4310 from being this generation 's Animal House 2 +83431 4310 being this generation 's Animal House 3 +83432 4310 this generation 's Animal House 4 +83433 4310 this generation 's 2 +83434 4310 generation 's 2 +83435 4311 It 's not particularly well made , but since I found myself howling more than cringing , I 'd say the film works . 3 +83436 4311 It 's not particularly well made , but since I found myself howling more than cringing , I 'd say the film works 3 +83437 4311 It 's not particularly well made , but 1 +83438 4311 It 's not particularly well made , 2 +83439 4311 It 's not particularly well made 1 +83440 4311 's not particularly well made 0 +83441 4311 particularly well made 4 +83442 4311 well made 3 +83443 4311 since I found myself howling more than cringing , I 'd say the film works 2 +83444 4311 since I found myself howling more than cringing 2 +83445 4311 I found myself howling more than cringing 3 +83446 4311 found myself howling more than cringing 2 +83447 4311 howling more than cringing 2 +83448 4311 howling more 2 +83449 4311 howling 2 +83450 4311 than cringing 2 +83451 4311 cringing 1 +83452 4311 , I 'd say the film works 3 +83453 4311 I 'd say the film works 2 +83454 4311 'd say the film works 2 +83455 4311 say the film works 2 +83456 4311 the film works 3 +83457 4311 film works 2 +83458 4312 A sweet-tempered comedy that forgoes the knee-jerk misogyny that passes for humor in so many teenage comedies . 3 +83459 4312 A sweet-tempered comedy that forgoes the knee-jerk misogyny that passes for humor in so many teenage comedies 3 +83460 4312 A sweet-tempered comedy that forgoes 3 +83461 4312 A sweet-tempered comedy 3 +83462 4312 sweet-tempered comedy 3 +83463 4312 sweet-tempered 3 +83464 4312 that forgoes 2 +83465 4312 forgoes 2 +83466 4312 the knee-jerk misogyny that passes for humor in so many teenage comedies 1 +83467 4312 the knee-jerk misogyny 1 +83468 4312 knee-jerk misogyny 1 +83469 4312 misogyny 1 +83470 4312 that passes for humor in so many teenage comedies 2 +83471 4312 passes for humor in so many teenage comedies 2 +83472 4312 for humor in so many teenage comedies 3 +83473 4312 humor in so many teenage comedies 2 +83474 4312 in so many teenage comedies 2 +83475 4312 so many teenage comedies 2 +83476 4312 teenage comedies 2 +83477 4313 Smart , sassy interpretation of the Oscar Wilde play . 4 +83478 4313 Smart , sassy interpretation of the Oscar Wilde play 3 +83479 4313 sassy interpretation of the Oscar Wilde play 3 +83480 4313 sassy interpretation 3 +83481 4313 sassy 3 +83482 4313 of the Oscar Wilde play 3 +83483 4313 the Oscar Wilde play 2 +83484 4313 Oscar Wilde play 2 +83485 4313 Wilde play 2 +83486 4314 Significantly better than its 2002 children 's - movie competition . 3 +83487 4314 Significantly better than its 2002 children 's - movie competition 3 +83488 4314 Significantly better 3 +83489 4314 than its 2002 children 's - movie competition 2 +83490 4314 its 2002 children 's - movie competition 2 +83491 4314 its 2002 children 's 2 +83492 4314 2002 children 's 2 +83493 4314 - movie competition 2 +83494 4314 movie competition 2 +83495 4315 Though its atmosphere is intriguing ... the drama is finally too predictable to leave much of an impression . 2 +83496 4315 Though its atmosphere is intriguing 3 +83497 4315 its atmosphere is intriguing 3 +83498 4315 its atmosphere 2 +83499 4315 ... the drama is finally too predictable to leave much of an impression . 1 +83500 4315 the drama is finally too predictable to leave much of an impression . 0 +83501 4315 is finally too predictable to leave much of an impression . 2 +83502 4315 is finally too predictable to leave much of an impression 1 +83503 4315 is finally too predictable 2 +83504 4315 is finally 2 +83505 4315 too predictable 0 +83506 4315 to leave much of an impression 2 +83507 4315 leave much of an impression 2 +83508 4316 The big-screen Scooby makes the silly original cartoon seem smart and well-crafted in comparison . 0 +83509 4316 The big-screen Scooby 3 +83510 4316 big-screen Scooby 2 +83511 4316 makes the silly original cartoon seem smart and well-crafted in comparison . 1 +83512 4316 makes the silly original cartoon seem smart and well-crafted in comparison 3 +83513 4316 the silly original cartoon seem smart and well-crafted in comparison 2 +83514 4316 the silly original cartoon 2 +83515 4316 silly original cartoon 2 +83516 4316 original cartoon 3 +83517 4316 seem smart and well-crafted in comparison 3 +83518 4316 seem smart and well-crafted 3 +83519 4316 smart and well-crafted 4 +83520 4316 in comparison 2 +83521 4317 A depraved , incoherent , instantly disposable piece of hackery . 0 +83522 4317 A depraved , incoherent , instantly disposable piece of hackery 0 +83523 4317 A depraved , incoherent , instantly disposable piece 0 +83524 4317 depraved , incoherent , instantly disposable piece 1 +83525 4317 depraved , incoherent , instantly disposable 0 +83526 4317 , incoherent , instantly disposable 0 +83527 4317 incoherent , instantly disposable 0 +83528 4317 , instantly disposable 1 +83529 4317 instantly disposable 1 +83530 4317 of hackery 1 +83531 4317 hackery 1 +83532 4318 You wo n't look at religious fanatics -- or backyard sheds -- the same way again . 2 +83533 4318 wo n't look at religious fanatics -- or backyard sheds -- the same way again . 3 +83534 4318 wo n't look at religious fanatics -- or backyard sheds -- the same way again 2 +83535 4318 look at religious fanatics -- or backyard sheds -- the same way again 3 +83536 4318 look at religious fanatics -- or backyard sheds -- the same way 2 +83537 4318 at religious fanatics -- or backyard sheds -- the same way 2 +83538 4318 religious fanatics -- or backyard sheds -- the same way 2 +83539 4318 religious fanatics -- or backyard sheds -- 3 +83540 4318 religious fanatics 2 +83541 4318 fanatics 2 +83542 4318 -- or backyard sheds -- 2 +83543 4318 -- or backyard sheds 2 +83544 4318 -- or 2 +83545 4318 backyard sheds 2 +83546 4318 backyard 2 +83547 4319 So genial is the conceit , this is one of those rare pictures that you root for throughout , dearly hoping that the rich promise of the script will be realized on the screen . 3 +83548 4319 genial is the conceit , this is one of those rare pictures that you root for throughout , dearly hoping that the rich promise of the script will be realized on the screen . 2 +83549 4319 genial is the conceit , this is one of those rare pictures that you root for throughout , dearly hoping that the rich promise of the script will be realized on the screen 4 +83550 4319 genial is the conceit , this is one of those rare pictures that you root for throughout , 3 +83551 4319 genial is the conceit , this is one of those rare pictures that you root for throughout 4 +83552 4319 genial is the conceit , 1 +83553 4319 genial is the conceit 2 +83554 4319 is the conceit 2 +83555 4319 this is one of those rare pictures that you root for throughout 3 +83556 4319 is one of those rare pictures that you root for throughout 4 +83557 4319 is one of those rare pictures 3 +83558 4319 one of those rare pictures 2 +83559 4319 of those rare pictures 3 +83560 4319 those rare pictures 2 +83561 4319 rare pictures 2 +83562 4319 that you root for throughout 3 +83563 4319 you root for throughout 2 +83564 4319 root for throughout 2 +83565 4319 root 2 +83566 4319 for throughout 2 +83567 4319 dearly hoping that the rich promise of the script will be realized on the screen 2 +83568 4319 dearly 3 +83569 4319 hoping that the rich promise of the script will be realized on the screen 2 +83570 4319 that the rich promise of the script will be realized on the screen 3 +83571 4319 the rich promise of the script will be realized on the screen 3 +83572 4319 the rich promise of the script 3 +83573 4319 the rich promise 3 +83574 4319 rich promise 3 +83575 4319 of the script 2 +83576 4319 will be realized on the screen 2 +83577 4319 be realized on the screen 2 +83578 4319 realized on the screen 3 +83579 4320 The following things are not at all entertaining : The bad sound , the lack of climax and , worst of all , watching Seinfeld -LRB- who is also one of the film 's producers -RRB- do everything he can to look like a good guy . 0 +83580 4320 The following things are not at all entertaining : The bad sound , the lack of climax and , worst of all , watching Seinfeld -LRB- who is also one of the film 's producers -RRB- do everything he can to look like a good guy 0 +83581 4320 The following things are not at all entertaining : 1 +83582 4320 The following things are not at all entertaining 0 +83583 4320 The following things 2 +83584 4320 following things 2 +83585 4320 are not at all entertaining 0 +83586 4320 are not at all 2 +83587 4320 The bad sound , the lack of climax and , worst of all , watching Seinfeld -LRB- who is also one of the film 's producers -RRB- do everything he can to look like a good guy 0 +83588 4320 The bad sound , the lack of climax and , worst of all , 1 +83589 4320 The bad sound , the lack of climax and , worst of all 0 +83590 4320 The bad sound , 1 +83591 4320 The bad sound 1 +83592 4320 bad sound 1 +83593 4320 the lack of climax and , worst of all 1 +83594 4320 of climax and , worst of all 2 +83595 4320 climax and , worst of all 1 +83596 4320 climax and , 2 +83597 4320 climax and 2 +83598 4320 climax 3 +83599 4320 worst of all 2 +83600 4320 watching Seinfeld -LRB- who is also one of the film 's producers -RRB- do everything he can to look like a good guy 3 +83601 4320 Seinfeld -LRB- who is also one of the film 's producers -RRB- do everything he can to look like a good guy 2 +83602 4320 Seinfeld -LRB- who is also one of the film 's producers -RRB- 2 +83603 4320 -LRB- who is also one of the film 's producers -RRB- 2 +83604 4320 who is also one of the film 's producers -RRB- 2 +83605 4320 who is also one of the film 's producers 2 +83606 4320 is also one of the film 's producers 2 +83607 4320 one of the film 's producers 2 +83608 4320 of the film 's producers 2 +83609 4320 the film 's producers 2 +83610 4320 do everything he can to look like a good guy 2 +83611 4320 everything he can to look like a good guy 2 +83612 4320 he can to look like a good guy 2 +83613 4320 can to look like a good guy 2 +83614 4320 to look like a good guy 2 +83615 4320 look like a good guy 2 +83616 4320 like a good guy 3 +83617 4320 a good guy 3 +83618 4320 good guy 3 +83619 4321 Chances are you wo n't , either . 2 +83620 4321 are you wo n't , either . 2 +83621 4321 are you wo n't , either 2 +83622 4321 are you wo n't , 2 +83623 4321 are you wo n't 2 +83624 4321 you wo n't 2 +83625 4322 Chaiken ably balances real-time rhythms with propulsive incident . 3 +83626 4322 ably balances real-time rhythms with propulsive incident . 3 +83627 4322 ably 2 +83628 4322 balances real-time rhythms with propulsive incident . 3 +83629 4322 balances real-time rhythms with propulsive incident 3 +83630 4322 balances real-time rhythms 3 +83631 4322 real-time rhythms 3 +83632 4322 with propulsive incident 2 +83633 4322 propulsive incident 2 +83634 4322 propulsive 3 +83635 4323 An exhilarating serving of movie fluff . 2 +83636 4323 An exhilarating serving of movie fluff 3 +83637 4323 An exhilarating 3 +83638 4323 serving of movie fluff 2 +83639 4323 of movie fluff 1 +83640 4323 movie fluff 2 +83641 4324 The obnoxious special effects , the obligatory outbursts of flatulence and the incessant , so-five-minutes-ago pop music on the soundtrack overwhelm what is left of the scruffy , dopey old Hanna-Barbera charm . 0 +83642 4324 The obnoxious special effects , the obligatory outbursts of flatulence and the incessant , so-five-minutes-ago pop music on the soundtrack 1 +83643 4324 The obnoxious special effects , 1 +83644 4324 The obnoxious special effects 1 +83645 4324 obnoxious special effects 1 +83646 4324 the obligatory outbursts of flatulence and the incessant , so-five-minutes-ago pop music on the soundtrack 0 +83647 4324 the obligatory outbursts of flatulence and 1 +83648 4324 the obligatory outbursts of flatulence 2 +83649 4324 the obligatory outbursts 2 +83650 4324 obligatory outbursts 2 +83651 4324 of flatulence 2 +83652 4324 the incessant , so-five-minutes-ago pop music on the soundtrack 2 +83653 4324 the incessant , so-five-minutes-ago pop music 1 +83654 4324 incessant , so-five-minutes-ago pop music 1 +83655 4324 , so-five-minutes-ago pop music 2 +83656 4324 so-five-minutes-ago pop music 1 +83657 4324 so-five-minutes-ago 2 +83658 4324 pop music 2 +83659 4324 overwhelm what is left of the scruffy , dopey old Hanna-Barbera charm . 1 +83660 4324 overwhelm what is left of the scruffy , dopey old Hanna-Barbera charm 1 +83661 4324 overwhelm 2 +83662 4324 what is left of the scruffy , dopey old Hanna-Barbera charm 2 +83663 4324 is left of the scruffy , dopey old Hanna-Barbera charm 2 +83664 4324 left of the scruffy , dopey old Hanna-Barbera charm 2 +83665 4324 of the scruffy , dopey old Hanna-Barbera charm 2 +83666 4324 the scruffy , dopey old Hanna-Barbera charm 2 +83667 4324 scruffy , dopey old Hanna-Barbera charm 3 +83668 4324 scruffy , dopey old 1 +83669 4324 , dopey old 1 +83670 4324 dopey old 1 +83671 4324 Hanna-Barbera charm 3 +83672 4325 The movie is so thoughtlessly assembled . 3 +83673 4325 is so thoughtlessly assembled . 1 +83674 4325 is so thoughtlessly assembled 1 +83675 4325 thoughtlessly assembled 1 +83676 4325 thoughtlessly 1 +83677 4326 Antwone Fisher certainly does the trick of making us care about its protagonist and celebrate his victories but , with few exceptions , it rarely stoops to cheap manipulation or corny conventions to do it . 3 +83678 4326 Antwone Fisher certainly does the trick of making us care about its protagonist and celebrate his victories but , with few exceptions , it rarely stoops to cheap manipulation or corny conventions to do it 3 +83679 4326 Antwone Fisher certainly does the trick of making us care about its protagonist and celebrate his victories but 3 +83680 4326 Antwone Fisher certainly does the trick of making us care about its protagonist and celebrate his victories 3 +83681 4326 certainly does the trick of making us care about its protagonist and celebrate his victories 3 +83682 4326 does the trick of making us care about its protagonist and celebrate his victories 3 +83683 4326 the trick of making us care about its protagonist and celebrate his victories 2 +83684 4326 of making us care about its protagonist and celebrate his victories 3 +83685 4326 making us care about its protagonist and celebrate his victories 2 +83686 4326 us care about its protagonist and celebrate his victories 2 +83687 4326 care about its protagonist and celebrate his victories 3 +83688 4326 care about its protagonist and 2 +83689 4326 care about its protagonist 2 +83690 4326 about its protagonist 2 +83691 4326 celebrate his victories 2 +83692 4326 celebrate 4 +83693 4326 his victories 2 +83694 4326 , with few exceptions , it rarely stoops to cheap manipulation or corny conventions to do it 2 +83695 4326 with few exceptions , it rarely stoops to cheap manipulation or corny conventions to do it 3 +83696 4326 with few exceptions 2 +83697 4326 few exceptions 2 +83698 4326 exceptions 2 +83699 4326 , it rarely stoops to cheap manipulation or corny conventions to do it 2 +83700 4326 it rarely stoops to cheap manipulation or corny conventions to do it 3 +83701 4326 rarely stoops to cheap manipulation or corny conventions to do it 3 +83702 4326 stoops to cheap manipulation or corny conventions to do it 0 +83703 4326 stoops to cheap manipulation or corny conventions 0 +83704 4326 to cheap manipulation or corny conventions 1 +83705 4326 cheap manipulation or corny conventions 0 +83706 4326 manipulation or corny conventions 1 +83707 4326 or corny conventions 2 +83708 4326 corny conventions 0 +83709 4327 Goldmember is funny enough to justify the embarrassment of bringing a barf bag to the moviehouse . 2 +83710 4327 is funny enough to justify the embarrassment of bringing a barf bag to the moviehouse . 3 +83711 4327 is funny enough to justify the embarrassment of bringing a barf bag to the moviehouse 2 +83712 4327 funny enough to justify the embarrassment of bringing a barf bag to the moviehouse 2 +83713 4327 funny enough 3 +83714 4327 to justify the embarrassment of bringing a barf bag to the moviehouse 0 +83715 4327 justify the embarrassment of bringing a barf bag to the moviehouse 2 +83716 4327 the embarrassment of bringing a barf bag to the moviehouse 0 +83717 4327 the embarrassment 2 +83718 4327 of bringing a barf bag to the moviehouse 0 +83719 4327 bringing a barf bag to the moviehouse 1 +83720 4327 bringing a barf bag 1 +83721 4327 a barf bag 1 +83722 4327 barf bag 2 +83723 4327 barf 1 +83724 4327 to the moviehouse 2 +83725 4327 the moviehouse 2 +83726 4327 moviehouse 2 +83727 4328 ... Pray does n't have a passion for the material . 1 +83728 4328 Pray does n't have a passion for the material . 1 +83729 4328 does n't have a passion for the material . 1 +83730 4328 does n't have a passion for the material 1 +83731 4328 have a passion for the material 3 +83732 4328 a passion for the material 3 +83733 4328 a passion 2 +83734 4328 for the material 2 +83735 4329 It works its magic with such exuberance and passion that the film 's length becomes a part of its fun . 4 +83736 4329 works its magic with such exuberance and passion that the film 's length becomes a part of its fun . 3 +83737 4329 works its magic with such exuberance and passion that the film 's length becomes a part of its fun 3 +83738 4329 works its magic with such exuberance and passion 4 +83739 4329 works its magic 3 +83740 4329 its magic 3 +83741 4329 with such exuberance and passion 4 +83742 4329 such exuberance and passion 4 +83743 4329 exuberance and passion 4 +83744 4329 exuberance and 2 +83745 4329 that the film 's length becomes a part of its fun 3 +83746 4329 the film 's length becomes a part of its fun 3 +83747 4329 the film 's length 2 +83748 4329 becomes a part of its fun 3 +83749 4329 a part of its fun 3 +83750 4329 of its fun 2 +83751 4329 its fun 3 +83752 4330 The hackneyed story about an affluent damsel in distress who decides to fight her bully of a husband is simply too overdone . 1 +83753 4330 The hackneyed story about an affluent damsel in distress who decides to fight her bully of a husband 2 +83754 4330 The hackneyed story 1 +83755 4330 hackneyed story 1 +83756 4330 about an affluent damsel in distress who decides to fight her bully of a husband 2 +83757 4330 an affluent damsel in distress who decides to fight her bully of a husband 3 +83758 4330 an affluent damsel in distress 2 +83759 4330 an affluent damsel 2 +83760 4330 affluent damsel 2 +83761 4330 affluent 2 +83762 4330 damsel 2 +83763 4330 in distress 2 +83764 4330 distress 2 +83765 4330 who decides to fight her bully of a husband 2 +83766 4330 decides to fight her bully of a husband 2 +83767 4330 to fight her bully of a husband 2 +83768 4330 fight her bully of a husband 2 +83769 4330 her bully of a husband 1 +83770 4330 her bully 2 +83771 4330 bully 1 +83772 4330 of a husband 2 +83773 4330 is simply too overdone . 1 +83774 4330 is simply too overdone 1 +83775 4330 too overdone 1 +83776 4330 overdone 1 +83777 4331 All the Queen 's Men is a throwback war movie that fails on so many levels , it should pay reparations to viewers . 0 +83778 4331 All the Queen 's Men is a throwback war movie that fails on so many levels 2 +83779 4331 is a throwback war movie that fails on so many levels 0 +83780 4331 a throwback war movie that fails on so many levels 2 +83781 4331 a throwback war movie 3 +83782 4331 throwback war movie 2 +83783 4331 war movie 2 +83784 4331 that fails on so many levels 0 +83785 4331 fails on so many levels 0 +83786 4331 on so many levels 2 +83787 4331 so many levels 2 +83788 4331 , it should pay reparations to viewers . 0 +83789 4331 it should pay reparations to viewers . 0 +83790 4331 should pay reparations to viewers . 1 +83791 4331 should pay reparations to viewers 1 +83792 4331 pay reparations to viewers 0 +83793 4331 pay reparations 2 +83794 4331 reparations 2 +83795 4331 to viewers 2 +83796 4332 Blue Crush has all the trappings of an energetic , extreme-sports adventure , but ends up more of a creaky `` Pretty Woman '' retread , with the emphasis on self-empowering schmaltz and big-wave surfing that gives pic its title an afterthought . 1 +83797 4332 has all the trappings of an energetic , extreme-sports adventure , but ends up more of a creaky `` Pretty Woman '' retread , with the emphasis on self-empowering schmaltz and big-wave surfing that gives pic its title an afterthought . 1 +83798 4332 has all the trappings of an energetic , extreme-sports adventure , but ends up more of a creaky `` Pretty Woman '' retread , with the emphasis on self-empowering schmaltz and big-wave surfing that gives pic its title an afterthought 0 +83799 4332 has all the trappings of an energetic , extreme-sports adventure , but 3 +83800 4332 has all the trappings of an energetic , extreme-sports adventure , 3 +83801 4332 has all the trappings of an energetic , extreme-sports adventure 3 +83802 4332 all the trappings of an energetic , extreme-sports adventure 3 +83803 4332 all the trappings 2 +83804 4332 the trappings 2 +83805 4332 of an energetic , extreme-sports adventure 3 +83806 4332 an energetic , extreme-sports adventure 3 +83807 4332 energetic , extreme-sports adventure 3 +83808 4332 , extreme-sports adventure 2 +83809 4332 extreme-sports adventure 2 +83810 4332 extreme-sports 2 +83811 4332 ends up more of a creaky `` Pretty Woman '' retread , with the emphasis on self-empowering schmaltz and big-wave surfing that gives pic its title an afterthought 1 +83812 4332 up more of a creaky `` Pretty Woman '' retread , with the emphasis on self-empowering schmaltz and big-wave surfing that gives pic its title an afterthought 2 +83813 4332 more of a creaky `` Pretty Woman '' retread , with the emphasis on self-empowering schmaltz and big-wave surfing that gives pic its title an afterthought 1 +83814 4332 of a creaky `` Pretty Woman '' retread , with the emphasis on self-empowering schmaltz and big-wave surfing that gives pic its title an afterthought 1 +83815 4332 a creaky `` Pretty Woman '' retread , with the emphasis on self-empowering schmaltz and big-wave surfing that gives pic its title an afterthought 0 +83816 4332 a creaky `` Pretty Woman '' 1 +83817 4332 creaky `` Pretty Woman '' 2 +83818 4332 creaky 2 +83819 4332 `` Pretty Woman '' 2 +83820 4332 Pretty Woman '' 2 +83821 4332 Woman '' 2 +83822 4332 retread , with the emphasis on self-empowering schmaltz and big-wave surfing that gives pic its title an afterthought 1 +83823 4332 with the emphasis on self-empowering schmaltz and big-wave surfing that gives pic its title an afterthought 1 +83824 4332 the emphasis on self-empowering schmaltz and big-wave surfing that gives pic its title an afterthought 2 +83825 4332 the emphasis on self-empowering schmaltz and 1 +83826 4332 the emphasis on self-empowering schmaltz 2 +83827 4332 on self-empowering schmaltz 2 +83828 4332 self-empowering schmaltz 2 +83829 4332 self-empowering 2 +83830 4332 schmaltz 1 +83831 4332 big-wave surfing that gives pic its title an afterthought 2 +83832 4332 big-wave surfing 2 +83833 4332 big-wave 2 +83834 4332 that gives pic its title an afterthought 1 +83835 4332 gives pic its title an afterthought 2 +83836 4332 gives pic 2 +83837 4332 its title an afterthought 2 +83838 4332 an afterthought 2 +83839 4332 afterthought 2 +83840 4333 Yes they can swim , the title is merely Anne-Sophie Birot 's off-handed way of saying girls find adolescence difficult to wade through . 2 +83841 4333 Yes they can swim 2 +83842 4333 they can swim 3 +83843 4333 can swim 2 +83844 4333 , the title is merely Anne-Sophie Birot 's off-handed way of saying girls find adolescence difficult to wade through . 2 +83845 4333 the title is merely Anne-Sophie Birot 's off-handed way of saying girls find adolescence difficult to wade through . 2 +83846 4333 is merely Anne-Sophie Birot 's off-handed way of saying girls find adolescence difficult to wade through . 2 +83847 4333 is merely Anne-Sophie Birot 's off-handed way of saying girls find adolescence difficult to wade through 1 +83848 4333 is merely 2 +83849 4333 Anne-Sophie Birot 's off-handed way of saying girls find adolescence difficult to wade through 2 +83850 4333 Anne-Sophie Birot 's off-handed way 2 +83851 4333 Anne-Sophie Birot 's 2 +83852 4333 off-handed way 2 +83853 4333 off-handed 1 +83854 4333 of saying girls find adolescence difficult to wade through 2 +83855 4333 saying girls find adolescence difficult to wade through 3 +83856 4333 girls find adolescence difficult to wade through 2 +83857 4333 find adolescence difficult to wade through 1 +83858 4333 adolescence difficult to wade through 1 +83859 4333 difficult to wade through 1 +83860 4333 to wade through 1 +83861 4333 wade through 1 +83862 4334 It establishes its ominous mood and tension swiftly , and if the suspense never rises to a higher level , it is nevertheless maintained throughout . 3 +83863 4334 It establishes its ominous mood and tension swiftly , and if the suspense never rises to a higher level , it is nevertheless maintained throughout 3 +83864 4334 It establishes its ominous mood and tension swiftly , and 3 +83865 4334 It establishes its ominous mood and tension swiftly , 2 +83866 4334 It establishes its ominous mood and tension swiftly 2 +83867 4334 establishes its ominous mood and tension swiftly 2 +83868 4334 establishes its ominous mood and tension 3 +83869 4334 its ominous mood and tension 2 +83870 4334 ominous mood and tension 1 +83871 4334 mood and tension 2 +83872 4334 mood and 2 +83873 4334 if the suspense never rises to a higher level , it is nevertheless maintained throughout 3 +83874 4334 if the suspense never rises to a higher level 1 +83875 4334 the suspense never rises to a higher level 1 +83876 4334 the suspense 2 +83877 4334 never rises to a higher level 1 +83878 4334 rises to a higher level 3 +83879 4334 to a higher level 3 +83880 4334 a higher level 2 +83881 4334 higher level 3 +83882 4334 , it is nevertheless maintained throughout 2 +83883 4334 it is nevertheless maintained throughout 2 +83884 4334 is nevertheless maintained throughout 2 +83885 4334 is nevertheless 2 +83886 4334 maintained throughout 2 +83887 4335 The script is smart and dark - hallelujah for small favors . 3 +83888 4335 is smart and dark - hallelujah for small favors . 3 +83889 4335 is smart and dark - hallelujah for small favors 3 +83890 4335 smart and dark - hallelujah for small favors 3 +83891 4335 smart and dark - 3 +83892 4335 smart and dark 3 +83893 4335 hallelujah for small favors 3 +83894 4335 hallelujah 2 +83895 4335 for small favors 2 +83896 4335 small favors 2 +83897 4336 As part of Mr. Dong 's continuing exploration of homosexuality in America , Family Fundamentals is an earnest study in despair . 3 +83898 4336 As part of Mr. Dong 's continuing exploration of homosexuality in America 2 +83899 4336 part of Mr. Dong 's continuing exploration of homosexuality in America 2 +83900 4336 of Mr. Dong 's continuing exploration of homosexuality in America 2 +83901 4336 Mr. Dong 's continuing exploration of homosexuality in America 2 +83902 4336 Mr. Dong 's continuing exploration 2 +83903 4336 Mr. Dong 's 2 +83904 4336 continuing exploration 2 +83905 4336 continuing 2 +83906 4336 of homosexuality in America 2 +83907 4336 homosexuality in America 2 +83908 4336 homosexuality 2 +83909 4336 , Family Fundamentals is an earnest study in despair . 2 +83910 4336 Family Fundamentals is an earnest study in despair . 2 +83911 4336 is an earnest study in despair . 2 +83912 4336 is an earnest study in despair 4 +83913 4336 an earnest study in despair 3 +83914 4336 an earnest study 3 +83915 4336 earnest study 3 +83916 4336 in despair 2 +83917 4337 Makes the case for a strong education and good teachers being more valuable in the way they help increase an average student 's self-esteem , and not strictly in the knowledge imparted . 3 +83918 4337 the case for a strong education and good teachers being more valuable in the way they help increase an average student 's self-esteem , and not strictly in the knowledge imparted . 2 +83919 4337 the case for a strong education and good teachers being more valuable in the way they help increase an average student 's self-esteem , and not strictly in the knowledge imparted 3 +83920 4337 the case for a strong education and good teachers being more valuable in the way they help increase an average student 's self-esteem 3 +83921 4337 for a strong education and good teachers being more valuable in the way they help increase an average student 's self-esteem 3 +83922 4337 a strong education and good teachers being more valuable in the way they help increase an average student 's self-esteem 2 +83923 4337 a strong education and 3 +83924 4337 a strong education 2 +83925 4337 strong education 3 +83926 4337 good teachers being more valuable in the way they help increase an average student 's self-esteem 2 +83927 4337 good teachers 2 +83928 4337 teachers 2 +83929 4337 being more valuable in the way they help increase an average student 's self-esteem 3 +83930 4337 being more valuable 2 +83931 4337 more valuable 3 +83932 4337 in the way they help increase an average student 's self-esteem 3 +83933 4337 the way they help increase an average student 's self-esteem 3 +83934 4337 they help increase an average student 's self-esteem 3 +83935 4337 help increase an average student 's self-esteem 3 +83936 4337 increase an average student 's self-esteem 2 +83937 4337 increase 2 +83938 4337 an average student 's self-esteem 2 +83939 4337 an average student 's 2 +83940 4337 average student 's 2 +83941 4337 student 's 2 +83942 4337 , and not strictly in the knowledge imparted 3 +83943 4337 and not strictly in the knowledge imparted 2 +83944 4337 not strictly in the knowledge imparted 2 +83945 4337 strictly in the knowledge imparted 2 +83946 4337 in the knowledge imparted 3 +83947 4337 the knowledge imparted 2 +83948 4337 knowledge imparted 2 +83949 4337 imparted 2 +83950 4338 Diane Lane 's sophisticated performance ca n't rescue Adrian Lyne 's Unfaithful from its sleazy moralizing . 1 +83951 4338 Diane Lane 's sophisticated performance 4 +83952 4338 Diane Lane 's 2 +83953 4338 Lane 's 2 +83954 4338 sophisticated performance 4 +83955 4338 ca n't rescue Adrian Lyne 's Unfaithful from its sleazy moralizing . 0 +83956 4338 ca n't rescue Adrian Lyne 's Unfaithful from its sleazy moralizing 2 +83957 4338 rescue Adrian Lyne 's Unfaithful from its sleazy moralizing 1 +83958 4338 rescue Adrian Lyne 's Unfaithful 2 +83959 4338 Adrian Lyne 's Unfaithful 2 +83960 4338 Adrian Lyne 's 2 +83961 4338 Adrian 2 +83962 4338 from its sleazy moralizing 1 +83963 4338 its sleazy moralizing 0 +83964 4338 sleazy moralizing 1 +83965 4338 sleazy 1 +83966 4338 moralizing 3 +83967 4339 A gently funny , sweetly adventurous film that makes you feel genuinely good , that is to say , entirely unconned by false sentiment or sharp , overmanipulative Hollywood practices . 3 +83968 4339 A gently funny , sweetly adventurous film that makes you feel genuinely good , that is to say , 4 +83969 4339 A gently funny , sweetly adventurous film that makes you feel genuinely good , that is to say 4 +83970 4339 A gently funny , sweetly adventurous film that makes you feel genuinely good , 4 +83971 4339 A gently funny , sweetly adventurous film that makes you feel genuinely good 4 +83972 4339 A gently funny , sweetly adventurous film 4 +83973 4339 gently funny , sweetly adventurous film 4 +83974 4339 gently funny , sweetly adventurous 4 +83975 4339 funny , sweetly adventurous 3 +83976 4339 funny , 3 +83977 4339 sweetly adventurous 4 +83978 4339 that makes you feel genuinely good 4 +83979 4339 makes you feel genuinely good 4 +83980 4339 you feel genuinely good 3 +83981 4339 feel genuinely good 3 +83982 4339 genuinely good 4 +83983 4339 entirely unconned by false sentiment or sharp , overmanipulative Hollywood practices . 2 +83984 4339 unconned by false sentiment or sharp , overmanipulative Hollywood practices . 2 +83985 4339 unconned by false sentiment or sharp , overmanipulative Hollywood practices 2 +83986 4339 unconned 2 +83987 4339 by false sentiment or sharp , overmanipulative Hollywood practices 1 +83988 4339 false sentiment or sharp , overmanipulative Hollywood practices 1 +83989 4339 sentiment or sharp , overmanipulative Hollywood practices 1 +83990 4339 or sharp , overmanipulative Hollywood practices 2 +83991 4339 sharp , overmanipulative Hollywood practices 1 +83992 4339 , overmanipulative Hollywood practices 1 +83993 4339 overmanipulative Hollywood practices 1 +83994 4339 overmanipulative 1 +83995 4339 Hollywood practices 2 +83996 4339 practices 3 +83997 4340 Even with Harris 's strong effort , the script gives him little to effectively probe Lear 's soul-stripping breakdown . 2 +83998 4340 Even with Harris 's strong effort 2 +83999 4340 with Harris 's strong effort 2 +84000 4340 Harris 's strong effort 3 +84001 4340 Harris 's 2 +84002 4340 strong effort 3 +84003 4340 , the script gives him little to effectively probe Lear 's soul-stripping breakdown . 1 +84004 4340 the script gives him little to effectively probe Lear 's soul-stripping breakdown . 2 +84005 4340 gives him little to effectively probe Lear 's soul-stripping breakdown . 2 +84006 4340 gives him little to effectively probe Lear 's soul-stripping breakdown 2 +84007 4340 gives him little 2 +84008 4340 gives him 2 +84009 4340 to effectively probe Lear 's soul-stripping breakdown 2 +84010 4340 effectively probe Lear 's soul-stripping breakdown 3 +84011 4340 probe Lear 's soul-stripping breakdown 3 +84012 4340 Lear 's soul-stripping breakdown 2 +84013 4340 Lear 's 2 +84014 4340 soul-stripping breakdown 1 +84015 4340 soul-stripping 1 +84016 4341 A zombie movie in every sense of the word -- mindless , lifeless , meandering , loud , painful , obnoxious . 0 +84017 4341 A zombie movie in every sense of the word -- mindless , lifeless , meandering , loud , painful , obnoxious 0 +84018 4341 A zombie movie in every sense 1 +84019 4341 A zombie movie 2 +84020 4341 zombie movie 2 +84021 4341 zombie 2 +84022 4341 in every sense 2 +84023 4341 every sense 2 +84024 4341 of the word -- mindless , lifeless , meandering , loud , painful , obnoxious 0 +84025 4341 the word -- mindless , lifeless , meandering , loud , painful , obnoxious 0 +84026 4341 the word -- 2 +84027 4341 mindless , lifeless , meandering , loud , painful , obnoxious 0 +84028 4341 , lifeless , meandering , loud , painful , obnoxious 0 +84029 4341 lifeless , meandering , loud , painful , obnoxious 0 +84030 4341 , meandering , loud , painful , obnoxious 1 +84031 4341 meandering , loud , painful , obnoxious 0 +84032 4341 , loud , painful , obnoxious 1 +84033 4341 loud , painful , obnoxious 2 +84034 4341 , painful , obnoxious 1 +84035 4341 painful , obnoxious 1 +84036 4341 , obnoxious 1 +84037 4342 Lathan and Diggs carry the film with their charisma , and both exhibit sharp comic timing that makes the more hackneyed elements of the film easier to digest . 3 +84038 4342 Lathan and Diggs carry the film with their charisma , and both exhibit sharp comic timing that makes the more hackneyed elements of the film easier to digest 3 +84039 4342 Lathan and Diggs carry the film with their charisma , and 3 +84040 4342 Lathan and Diggs carry the film with their charisma , 2 +84041 4342 Lathan and Diggs carry the film with their charisma 3 +84042 4342 Lathan and Diggs 2 +84043 4342 Lathan and 2 +84044 4342 carry the film with their charisma 4 +84045 4342 the film with their charisma 3 +84046 4342 with their charisma 3 +84047 4342 their charisma 3 +84048 4342 both exhibit sharp comic timing that makes the more hackneyed elements of the film easier to digest 2 +84049 4342 exhibit sharp comic timing that makes the more hackneyed elements of the film easier to digest 3 +84050 4342 exhibit 2 +84051 4342 sharp comic timing that makes the more hackneyed elements of the film easier to digest 3 +84052 4342 sharp comic timing 3 +84053 4342 comic timing 2 +84054 4342 that makes the more hackneyed elements of the film easier to digest 2 +84055 4342 makes the more hackneyed elements of the film easier to digest 2 +84056 4342 the more hackneyed elements of the film easier to digest 1 +84057 4342 the more hackneyed elements of the film 1 +84058 4342 the more hackneyed elements 2 +84059 4342 more hackneyed elements 1 +84060 4342 more hackneyed 1 +84061 4342 easier to digest 3 +84062 4342 to digest 2 +84063 4342 digest 2 +84064 4343 Fontaine masterfully creates a portrait of two strong men in conflict , inextricably entwined through family history , each seeing himself in the other , neither liking what he sees . 3 +84065 4343 Fontaine masterfully 4 +84066 4343 creates a portrait of two strong men in conflict , inextricably entwined through family history , each seeing himself in the other , neither liking what he sees . 3 +84067 4343 creates a portrait of two strong men in conflict , inextricably entwined through family history , each seeing himself in the other , neither liking what he sees 4 +84068 4343 creates a portrait of two strong men in conflict , inextricably entwined through family history , 3 +84069 4343 creates a portrait of two strong men in conflict , inextricably entwined through family history 3 +84070 4343 creates a portrait of two strong men in conflict , 3 +84071 4343 creates a portrait of two strong men in conflict 2 +84072 4343 a portrait of two strong men in conflict 3 +84073 4343 of two strong men in conflict 2 +84074 4343 two strong men in conflict 2 +84075 4343 two strong men 2 +84076 4343 strong men 2 +84077 4343 in conflict 2 +84078 4343 inextricably entwined through family history 2 +84079 4343 inextricably 2 +84080 4343 entwined through family history 2 +84081 4343 entwined 2 +84082 4343 through family history 2 +84083 4343 family history 2 +84084 4343 each seeing himself in the other , neither liking what he sees 2 +84085 4343 seeing himself in the other , neither liking what he sees 2 +84086 4343 seeing himself in the other , neither 2 +84087 4343 seeing himself in the other , 3 +84088 4343 seeing himself in the other 2 +84089 4343 seeing himself 2 +84090 4343 in the other 2 +84091 4343 liking what he sees 2 +84092 4343 what he sees 2 +84093 4343 he sees 2 +84094 4344 Straightforward and old-fashioned in the best possible senses of both those words , Possession is a movie that puts itself squarely in the service of the lovers who inhabit it . 3 +84095 4344 Straightforward and old-fashioned in the best possible senses of both those words 4 +84096 4344 Straightforward and old-fashioned 3 +84097 4344 in the best possible senses of both those words 3 +84098 4344 the best possible senses of both those words 3 +84099 4344 the best possible senses 3 +84100 4344 best possible senses 3 +84101 4344 possible senses 2 +84102 4344 of both those words 2 +84103 4344 both those words 2 +84104 4344 those words 3 +84105 4344 , Possession is a movie that puts itself squarely in the service of the lovers who inhabit it . 3 +84106 4344 Possession is a movie that puts itself squarely in the service of the lovers who inhabit it . 3 +84107 4344 is a movie that puts itself squarely in the service of the lovers who inhabit it . 3 +84108 4344 is a movie that puts itself squarely in the service of the lovers who inhabit it 3 +84109 4344 a movie that puts itself squarely in the service of the lovers who inhabit it 2 +84110 4344 that puts itself squarely in the service of the lovers who inhabit it 2 +84111 4344 puts itself squarely in the service of the lovers who inhabit it 3 +84112 4344 puts itself 2 +84113 4344 squarely in the service of the lovers who inhabit it 2 +84114 4344 in the service of the lovers who inhabit it 3 +84115 4344 the service of the lovers who inhabit it 2 +84116 4344 of the lovers who inhabit it 2 +84117 4344 the lovers who inhabit it 2 +84118 4344 the lovers 3 +84119 4344 who inhabit it 3 +84120 4344 inhabit it 2 +84121 4345 Performances are potent , and the women 's stories are ably intercut and involving . 2 +84122 4345 Performances are potent , and the women 's stories are ably intercut and involving 3 +84123 4345 Performances are potent , and 3 +84124 4345 Performances are potent , 3 +84125 4345 Performances are potent 3 +84126 4345 are potent 3 +84127 4345 the women 's stories are ably intercut and involving 3 +84128 4345 the women 's stories 3 +84129 4345 the women 's 2 +84130 4345 are ably intercut and involving 3 +84131 4345 ably intercut and involving 2 +84132 4345 ably intercut and 2 +84133 4345 ably intercut 2 +84134 4345 intercut 2 +84135 4346 -LRB- It -RRB- has the feel of a summer popcorn movie . 2 +84136 4346 has the feel of a summer popcorn movie . 3 +84137 4346 has the feel of a summer popcorn movie 3 +84138 4346 the feel of a summer popcorn movie 3 +84139 4346 of a summer popcorn movie 3 +84140 4346 a summer popcorn movie 3 +84141 4346 summer popcorn movie 2 +84142 4346 popcorn movie 2 +84143 4347 My Big Fat Greek Wedding is that rare animal known as ' a perfect family film , ' because it 's about family . 3 +84144 4347 is that rare animal known as ' a perfect family film , ' because it 's about family . 4 +84145 4347 is that rare animal known as ' a perfect family film , ' because it 's about family 4 +84146 4347 is that rare animal known as ' a perfect family film , ' 4 +84147 4347 is that rare animal known as ' a perfect family film , 4 +84148 4347 is that rare animal known as ' a perfect family film 3 +84149 4347 that rare animal known as ' a perfect family film 3 +84150 4347 that rare animal 3 +84151 4347 rare animal 2 +84152 4347 known as ' a perfect family film 4 +84153 4347 as ' a perfect family film 3 +84154 4347 as ' 2 +84155 4347 a perfect family film 4 +84156 4347 perfect family film 3 +84157 4347 because it 's about family 2 +84158 4347 it 's about family 3 +84159 4347 's about family 2 +84160 4347 about family 2 +84161 4348 Not good enough to pass for a litmus test of the generation gap and not bad enough to repulse any generation of its fans . 1 +84162 4348 Not good enough to pass for a litmus test of the generation gap and not bad enough to repulse any generation of its fans 2 +84163 4348 Not good enough 1 +84164 4348 Not good 1 +84165 4348 to pass for a litmus test of the generation gap and not bad enough to repulse any generation of its fans 2 +84166 4348 pass for a litmus test of the generation gap and not bad enough to repulse any generation of its fans 3 +84167 4348 for a litmus test of the generation gap and not bad enough to repulse any generation of its fans 2 +84168 4348 for a litmus test of the generation gap 2 +84169 4348 a litmus test of the generation gap 2 +84170 4348 a litmus test 2 +84171 4348 of the generation gap 2 +84172 4348 the generation gap 2 +84173 4348 generation gap 2 +84174 4348 and not bad enough to repulse any generation of its fans 3 +84175 4348 not bad enough to repulse any generation of its fans 2 +84176 4348 bad enough to repulse any generation of its fans 0 +84177 4348 bad enough 0 +84178 4348 to repulse any generation of its fans 2 +84179 4348 repulse any generation of its fans 2 +84180 4348 repulse 1 +84181 4348 any generation of its fans 2 +84182 4348 any generation 2 +84183 4348 of its fans 2 +84184 4348 its fans 2 +84185 4349 Like its bizarre heroine , it irrigates our souls . 3 +84186 4349 Like its bizarre heroine 2 +84187 4349 its bizarre heroine 2 +84188 4349 bizarre heroine 2 +84189 4349 , it irrigates our souls . 3 +84190 4349 it irrigates our souls . 3 +84191 4349 irrigates our souls . 2 +84192 4349 irrigates our souls 2 +84193 4349 irrigates 2 +84194 4350 But this is Lohman 's film . 2 +84195 4350 this is Lohman 's film . 2 +84196 4350 is Lohman 's film . 2 +84197 4350 is Lohman 's film 2 +84198 4350 Lohman 's film 2 +84199 4350 Lohman 's 2 +84200 4351 If this is cinema , I pledge allegiance to Cagney and Lacey . 0 +84201 4351 If this is cinema 1 +84202 4351 this is cinema 4 +84203 4351 is cinema 3 +84204 4351 , I pledge allegiance to Cagney and Lacey . 3 +84205 4351 I pledge allegiance to Cagney and Lacey . 3 +84206 4351 pledge allegiance to Cagney and Lacey . 2 +84207 4351 pledge allegiance to Cagney and Lacey 2 +84208 4351 pledge allegiance 2 +84209 4351 pledge 2 +84210 4351 to Cagney and Lacey 2 +84211 4351 Cagney and Lacey 2 +84212 4351 Cagney and 2 +84213 4351 Lacey 2 +84214 4352 Constantly slips from the grasp of its maker . 0 +84215 4352 slips from the grasp of its maker . 2 +84216 4352 slips from the grasp of its maker 2 +84217 4352 slips 2 +84218 4352 from the grasp of its maker 2 +84219 4352 the grasp of its maker 2 +84220 4352 the grasp 2 +84221 4352 of its maker 2 +84222 4352 its maker 2 +84223 4353 In trying to be daring and original , it comes off as only occasionally satirical and never fresh . 2 +84224 4353 In trying to be daring and original 3 +84225 4353 trying to be daring and original 2 +84226 4353 to be daring and original 3 +84227 4353 be daring and original 3 +84228 4353 daring and original 4 +84229 4353 , it comes off as only occasionally satirical and never fresh . 1 +84230 4353 it comes off as only occasionally satirical and never fresh . 1 +84231 4353 comes off as only occasionally satirical and never fresh . 1 +84232 4353 comes off as only occasionally satirical and never fresh 0 +84233 4353 as only occasionally satirical and never fresh 1 +84234 4353 only occasionally satirical and never fresh 0 +84235 4353 only occasionally satirical and 3 +84236 4353 only occasionally satirical 2 +84237 4353 occasionally satirical 3 +84238 4353 never fresh 0 +84239 4354 Rouge is less about a superficial midlife crisis than it is about the need to stay in touch with your own skin , at 18 or 80 . 3 +84240 4354 is less about a superficial midlife crisis than it is about the need to stay in touch with your own skin , at 18 or 80 . 3 +84241 4354 is less about a superficial midlife crisis than it is about the need to stay in touch with your own skin , at 18 or 80 2 +84242 4354 is less about a superficial midlife crisis 1 +84243 4354 less about a superficial midlife crisis 2 +84244 4354 about a superficial midlife crisis 1 +84245 4354 a superficial midlife crisis 2 +84246 4354 superficial midlife crisis 1 +84247 4354 than it is about the need to stay in touch with your own skin , at 18 or 80 2 +84248 4354 it is about the need to stay in touch with your own skin , at 18 or 80 2 +84249 4354 is about the need to stay in touch with your own skin , at 18 or 80 3 +84250 4354 about the need to stay in touch with your own skin , at 18 or 80 3 +84251 4354 the need to stay in touch with your own skin , at 18 or 80 3 +84252 4354 need to stay in touch with your own skin , at 18 or 80 4 +84253 4354 to stay in touch with your own skin , at 18 or 80 2 +84254 4354 stay in touch with your own skin , at 18 or 80 2 +84255 4354 stay in touch with your own skin , 2 +84256 4354 stay in touch with your own skin 3 +84257 4354 stay in touch 2 +84258 4354 in touch 2 +84259 4354 with your own skin 2 +84260 4354 your own skin 2 +84261 4354 own skin 2 +84262 4354 at 18 or 80 3 +84263 4354 18 or 80 2 +84264 4354 18 or 2 +84265 4354 18 2 +84266 4355 A simpler , leaner treatment would have been preferable ; after all , being about nothing is sometimes funnier than being about something . 1 +84267 4355 A simpler , leaner treatment 2 +84268 4355 simpler , leaner treatment 2 +84269 4355 simpler , leaner 3 +84270 4355 simpler 2 +84271 4355 , leaner 2 +84272 4355 leaner 2 +84273 4355 would have been preferable ; after all , being about nothing is sometimes funnier than being about something . 2 +84274 4355 would have been preferable ; after all , being about nothing is sometimes funnier than being about something 2 +84275 4355 would have been preferable ; 2 +84276 4355 would have been preferable 2 +84277 4355 have been preferable 2 +84278 4355 been preferable 3 +84279 4355 preferable 3 +84280 4355 after all , being about nothing is sometimes funnier than being about something 2 +84281 4355 , being about nothing is sometimes funnier than being about something 3 +84282 4355 being about nothing is sometimes funnier than being about something 4 +84283 4355 being about nothing 2 +84284 4355 about nothing 1 +84285 4355 is sometimes funnier than being about something 2 +84286 4355 sometimes funnier than being about something 2 +84287 4355 funnier than being about something 3 +84288 4355 than being about something 2 +84289 4355 being about something 2 +84290 4356 The April 2002 instalment of the American War for Independence , complete with loads of CGI and bushels of violence , but not a drop of human blood . 1 +84291 4356 The April 2002 instalment of the American War for Independence , complete with loads of CGI and bushels of violence , but not a drop of human blood 2 +84292 4356 The April 2002 instalment of the American War 2 +84293 4356 The April 2002 instalment 2 +84294 4356 April 2002 instalment 2 +84295 4356 April 3 +84296 4356 2002 instalment 2 +84297 4356 instalment 2 +84298 4356 of the American War 2 +84299 4356 the American War 2 +84300 4356 American War 2 +84301 4356 for Independence , complete with loads of CGI and bushels of violence , but not a drop of human blood 0 +84302 4356 Independence , complete with loads of CGI and bushels of violence , but not a drop of human blood 1 +84303 4356 Independence , complete with loads of CGI and bushels of violence , but not a drop 2 +84304 4356 Independence , 2 +84305 4356 Independence 2 +84306 4356 complete with loads of CGI and bushels of violence , but not a drop 1 +84307 4356 complete with loads of CGI and bushels of violence 2 +84308 4356 with loads of CGI and bushels of violence 2 +84309 4356 loads of CGI and bushels of violence 1 +84310 4356 loads of CGI and 2 +84311 4356 loads of CGI 2 +84312 4356 of CGI 2 +84313 4356 bushels of violence 2 +84314 4356 bushels 2 +84315 4356 of violence 2 +84316 4356 , but not a drop 2 +84317 4356 , but not 2 +84318 4356 a drop 2 +84319 4356 of human blood 2 +84320 4356 human blood 2 +84321 4357 By the end you ca n't help but feel ` stoked . ' 3 +84322 4357 you ca n't help but feel ` stoked . ' 4 +84323 4357 ca n't help but feel ` stoked . ' 3 +84324 4357 ca n't help but feel ` stoked . 4 +84325 4357 ca n't help but feel ` stoked 3 +84326 4357 ca n't help but 2 +84327 4357 ca n't help 2 +84328 4357 feel ` stoked 3 +84329 4357 ` stoked 3 +84330 4358 Colorful , energetic and sweetly whimsical ... the rare sequel that 's better than its predecessor . 4 +84331 4358 Colorful , energetic and sweetly whimsical ... the rare sequel that 's better than its predecessor 4 +84332 4358 Colorful , energetic and sweetly whimsical ... 4 +84333 4358 Colorful , energetic and sweetly whimsical 4 +84334 4358 , energetic and sweetly whimsical 4 +84335 4358 energetic and sweetly whimsical 3 +84336 4358 energetic and sweetly 3 +84337 4358 the rare sequel that 's better than its predecessor 4 +84338 4358 the rare sequel 3 +84339 4358 rare sequel 3 +84340 4358 that 's better than its predecessor 3 +84341 4358 's better than its predecessor 3 +84342 4358 better than its predecessor 4 +84343 4359 Eccentric enough to stave off doldrums , Caruso 's self-conscious debut is also eminently forgettable . 2 +84344 4359 Eccentric enough to stave off doldrums 3 +84345 4359 enough to stave off doldrums 1 +84346 4359 to stave off doldrums 1 +84347 4359 stave off doldrums 2 +84348 4359 stave off 2 +84349 4359 stave 2 +84350 4359 doldrums 1 +84351 4359 , Caruso 's self-conscious debut is also eminently forgettable . 0 +84352 4359 Caruso 's self-conscious debut is also eminently forgettable . 0 +84353 4359 Caruso 's self-conscious debut 2 +84354 4359 Caruso 's 2 +84355 4359 Caruso 2 +84356 4359 self-conscious debut 1 +84357 4359 is also eminently forgettable . 1 +84358 4359 is also eminently forgettable 2 +84359 4359 eminently forgettable 0 +84360 4360 Originality is sorely lacking . 1 +84361 4360 is sorely lacking . 1 +84362 4360 is sorely lacking 1 +84363 4361 Polished , well-structured film . 3 +84364 4361 Polished , well-structured film 4 +84365 4361 Polished , 3 +84366 4361 well-structured film 4 +84367 4361 well-structured 4 +84368 4362 Lazy , miserable and smug . 0 +84369 4362 Lazy , miserable and smug 0 +84370 4362 Lazy , 1 +84371 4362 miserable and smug 1 +84372 4362 miserable and 0 +84373 4362 miserable 0 +84374 4363 It 's funny , touching , dramatically forceful , and beautifully shot . 4 +84375 4363 's funny , touching , dramatically forceful , and beautifully shot . 4 +84376 4363 's funny , touching , dramatically forceful , and beautifully shot 4 +84377 4363 funny , touching , dramatically forceful , and beautifully shot 4 +84378 4363 , touching , dramatically forceful , and beautifully shot 4 +84379 4363 touching , dramatically forceful , and beautifully shot 4 +84380 4363 , dramatically forceful , and beautifully shot 3 +84381 4363 dramatically forceful , and beautifully shot 4 +84382 4363 dramatically forceful 3 +84383 4363 , and beautifully shot 3 +84384 4364 Each scene immediately succumbs to gravity and plummets to earth . 0 +84385 4364 immediately succumbs to gravity and plummets to earth . 0 +84386 4364 succumbs to gravity and plummets to earth . 1 +84387 4364 succumbs to gravity and plummets to earth 1 +84388 4364 succumbs to gravity and plummets 1 +84389 4364 to gravity and plummets 1 +84390 4364 gravity and plummets 2 +84391 4364 gravity and 2 +84392 4364 plummets 1 +84393 4366 While it 's nothing we have n't seen before from Murphy , I Spy is still fun and enjoyable and so aggressively silly that it 's more than a worthwhile effort . 4 +84394 4366 While it 's nothing we have n't seen before from Murphy 2 +84395 4366 it 's nothing we have n't seen before from Murphy 2 +84396 4366 's nothing we have n't seen before from Murphy 2 +84397 4366 nothing we have n't seen before from Murphy 1 +84398 4366 we have n't seen before from Murphy 2 +84399 4366 have n't seen before from Murphy 2 +84400 4366 seen before from Murphy 2 +84401 4366 before from Murphy 2 +84402 4366 from Murphy 2 +84403 4366 , I Spy is still fun and enjoyable and so aggressively silly that it 's more than a worthwhile effort . 4 +84404 4366 I Spy is still fun and enjoyable and so aggressively silly that it 's more than a worthwhile effort . 3 +84405 4366 Spy is still fun and enjoyable and so aggressively silly that it 's more than a worthwhile effort . 3 +84406 4366 is still fun and enjoyable and so aggressively silly that it 's more than a worthwhile effort . 3 +84407 4366 is still fun and enjoyable and so aggressively silly that it 's more than a worthwhile effort 4 +84408 4366 is still fun and enjoyable and so aggressively silly 3 +84409 4366 still fun and enjoyable and so aggressively silly 3 +84410 4366 still fun and enjoyable and 3 +84411 4366 still fun and enjoyable 3 +84412 4366 fun and enjoyable 4 +84413 4366 so aggressively silly 2 +84414 4366 aggressively silly 1 +84415 4366 that it 's more than a worthwhile effort 3 +84416 4366 it 's more than a worthwhile effort 4 +84417 4366 's more than a worthwhile effort 2 +84418 4366 more than a worthwhile effort 3 +84419 4366 than a worthwhile effort 3 +84420 4366 a worthwhile effort 3 +84421 4366 worthwhile effort 3 +84422 4367 This version of H.G. Wells ' Time Machine was directed by H.G. Wells ' great-grandson . 2 +84423 4367 This version of H.G. Wells ' Time Machine 2 +84424 4367 of H.G. Wells ' Time Machine 2 +84425 4367 H.G. Wells ' Time Machine 2 +84426 4367 H.G. Wells ' 2 +84427 4367 Wells ' 2 +84428 4367 was directed by H.G. Wells ' great-grandson . 2 +84429 4367 was directed by H.G. Wells ' great-grandson 2 +84430 4367 directed by H.G. Wells ' great-grandson 2 +84431 4367 by H.G. Wells ' great-grandson 2 +84432 4367 H.G. Wells ' great-grandson 2 +84433 4368 It is different from others in its genre in that it is does not rely on dumb gags , anatomical humor , or character cliches ; it primarily relies on character to tell its story . 4 +84434 4368 It is different from others in its genre in that it is does not rely on dumb gags , anatomical humor , or character cliches ; it primarily relies on character to tell its story 3 +84435 4368 It is different from others in its genre in that it is does not rely on dumb gags , anatomical humor , or character cliches ; 3 +84436 4368 It is different from others in its genre in that it is does not rely on dumb gags , anatomical humor , or character cliches 3 +84437 4368 is different from others in its genre in that it is does not rely on dumb gags , anatomical humor , or character cliches 3 +84438 4368 different from others in its genre in that it is does not rely on dumb gags , anatomical humor , or character cliches 3 +84439 4368 from others in its genre in that it is does not rely on dumb gags , anatomical humor , or character cliches 3 +84440 4368 others in its genre in that it is does not rely on dumb gags , anatomical humor , or character cliches 1 +84441 4368 others in its genre 2 +84442 4368 in its genre 2 +84443 4368 its genre 2 +84444 4368 in that it is does not rely on dumb gags , anatomical humor , or character cliches 3 +84445 4368 in that 2 +84446 4368 it is does not rely on dumb gags , anatomical humor , or character cliches 3 +84447 4368 is does not rely on dumb gags , anatomical humor , or character cliches 2 +84448 4368 does not rely on dumb gags , anatomical humor , or character cliches 4 +84449 4368 rely on dumb gags , anatomical humor , or character cliches 1 +84450 4368 on dumb gags , anatomical humor , or character cliches 1 +84451 4368 dumb gags , anatomical humor , or character cliches 1 +84452 4368 dumb gags , anatomical humor , or 1 +84453 4368 dumb gags , anatomical humor , 0 +84454 4368 dumb gags , anatomical humor 1 +84455 4368 dumb gags , 1 +84456 4368 dumb gags 1 +84457 4368 anatomical humor 2 +84458 4368 anatomical 2 +84459 4368 character cliches 2 +84460 4368 it primarily relies on character to tell its story 2 +84461 4368 primarily relies on character to tell its story 2 +84462 4368 relies on character to tell its story 2 +84463 4368 relies on character 2 +84464 4368 on character 3 +84465 4368 to tell its story 2 +84466 4368 tell its story 3 +84467 4369 An amateurish , quasi-improvised acting exercise shot on ugly digital video . 0 +84468 4369 An amateurish , quasi-improvised acting exercise 0 +84469 4369 amateurish , quasi-improvised acting exercise 1 +84470 4369 amateurish , quasi-improvised 1 +84471 4369 , quasi-improvised 2 +84472 4369 quasi-improvised 2 +84473 4369 shot on ugly digital video . 0 +84474 4369 shot on ugly digital video 0 +84475 4369 on ugly digital video 1 +84476 4369 ugly digital video 1 +84477 4369 digital video 2 +84478 4370 Anyone else seen this before ? 2 +84479 4370 seen this before ? 2 +84480 4370 seen this before 1 +84481 4370 this before 2 +84482 4371 A meditation on faith and madness , Frailty is blood-curdling stuff . 3 +84483 4371 A meditation on faith and madness 3 +84484 4371 on faith and madness 2 +84485 4371 faith and madness 2 +84486 4371 faith and 2 +84487 4371 , Frailty is blood-curdling stuff . 2 +84488 4371 Frailty is blood-curdling stuff . 2 +84489 4371 is blood-curdling stuff . 2 +84490 4371 is blood-curdling stuff 3 +84491 4371 blood-curdling stuff 2 +84492 4371 blood-curdling 2 +84493 4372 If you like blood , guts and crazy beasts stalking men with guns though ... you will likely enjoy this monster . 3 +84494 4372 If you like blood 2 +84495 4372 you like blood 2 +84496 4372 like blood 2 +84497 4372 , guts and crazy beasts stalking men with guns though ... you will likely enjoy this monster . 3 +84498 4372 guts and crazy beasts stalking men with guns though ... you will likely enjoy this monster . 3 +84499 4372 guts and crazy beasts stalking men with guns though ... you will likely enjoy this monster 2 +84500 4372 guts and crazy beasts stalking men with guns though ... 2 +84501 4372 guts and crazy beasts stalking men with guns though 2 +84502 4372 guts and crazy beasts 2 +84503 4372 guts and 1 +84504 4372 guts 3 +84505 4372 crazy beasts 2 +84506 4372 beasts 2 +84507 4372 stalking men with guns though 2 +84508 4372 stalking men with guns 2 +84509 4372 stalking 0 +84510 4372 men with guns 1 +84511 4372 with guns 2 +84512 4372 you will likely enjoy this monster 3 +84513 4372 will likely enjoy this monster 3 +84514 4372 enjoy this monster 2 +84515 4372 this monster 2 +84516 4373 It 's only in fairy tales that princesses that are married for political reason live happily ever after . 1 +84517 4373 's only in fairy tales that princesses that are married for political reason live happily ever after . 2 +84518 4373 's only in fairy tales that princesses that are married for political reason live happily ever after 1 +84519 4373 's only in fairy tales 1 +84520 4373 in fairy tales 2 +84521 4373 fairy tales 2 +84522 4373 that princesses that are married for political reason live happily ever after 2 +84523 4373 princesses that are married for political reason live happily ever after 2 +84524 4373 princesses that are married for political reason 2 +84525 4373 princesses 3 +84526 4373 that are married for political reason 2 +84527 4373 are married for political reason 1 +84528 4373 married for political reason 2 +84529 4373 for political reason 2 +84530 4373 political reason 2 +84531 4373 live happily ever after 3 +84532 4373 live happily ever 4 +84533 4373 live happily 3 +84534 4374 After all , it 'll probably be in video stores by Christmas , and it might just be better suited to a night in the living room than a night at the movies . 1 +84535 4374 , it 'll probably be in video stores by Christmas , and it might just be better suited to a night in the living room than a night at the movies . 1 +84536 4374 it 'll probably be in video stores by Christmas , and it might just be better suited to a night in the living room than a night at the movies . 2 +84537 4374 it 'll probably be in video stores by Christmas , and it might just be better suited to a night in the living room than a night at the movies 1 +84538 4374 it 'll probably be in video stores by Christmas , and 2 +84539 4374 it 'll probably be in video stores by Christmas , 0 +84540 4374 it 'll probably be in video stores by Christmas 1 +84541 4374 'll probably be in video stores by Christmas 2 +84542 4374 be in video stores by Christmas 1 +84543 4374 be in video stores 2 +84544 4374 in video stores 2 +84545 4374 video stores 2 +84546 4374 by Christmas 2 +84547 4374 it might just be better suited to a night in the living room than a night at the movies 1 +84548 4374 might just be better suited to a night in the living room than a night at the movies 1 +84549 4374 be better suited to a night in the living room than a night at the movies 1 +84550 4374 better suited to a night in the living room than a night at the movies 1 +84551 4374 suited to a night in the living room than a night at the movies 1 +84552 4374 to a night in the living room than a night at the movies 1 +84553 4374 a night in the living room than a night at the movies 2 +84554 4374 a night 2 +84555 4374 in the living room than a night at the movies 2 +84556 4374 the living room than a night at the movies 2 +84557 4374 the living room 2 +84558 4374 living room 2 +84559 4374 than a night at the movies 2 +84560 4374 a night at the movies 2 +84561 4375 There 's much tongue in cheek in the film and there 's no doubt the filmmaker is having fun with it all . 3 +84562 4375 There 's much tongue in cheek in the film and there 's no doubt the filmmaker is having fun with it all 3 +84563 4375 There 's much tongue in cheek in the film and 2 +84564 4375 There 's much tongue in cheek in the film 2 +84565 4375 's much tongue in cheek in the film 2 +84566 4375 much tongue in cheek in the film 3 +84567 4375 much tongue 2 +84568 4375 in cheek in the film 2 +84569 4375 cheek in the film 2 +84570 4375 there 's no doubt the filmmaker is having fun with it all 3 +84571 4375 's no doubt the filmmaker is having fun with it all 2 +84572 4375 no doubt the filmmaker is having fun with it all 3 +84573 4375 the filmmaker is having fun with it all 2 +84574 4375 is having fun with it all 3 +84575 4375 having fun with it all 3 +84576 4375 fun with it all 3 +84577 4375 with it all 2 +84578 4376 A listless sci-fi comedy in which Eddie Murphy deploys two guises and elaborate futuristic sets to no particularly memorable effect . 0 +84579 4376 A listless sci-fi comedy in which Eddie Murphy deploys two 1 +84580 4376 A listless sci-fi comedy 2 +84581 4376 listless sci-fi comedy 1 +84582 4376 listless sci-fi 1 +84583 4376 in which Eddie Murphy deploys two 2 +84584 4376 Eddie Murphy deploys two 2 +84585 4376 deploys two 2 +84586 4376 deploys 2 +84587 4376 guises and elaborate futuristic sets to no particularly memorable effect . 2 +84588 4376 guises and elaborate futuristic sets to no particularly memorable effect 2 +84589 4376 guises and 2 +84590 4376 guises 2 +84591 4376 elaborate futuristic sets to no particularly memorable effect 1 +84592 4376 elaborate futuristic sets 3 +84593 4376 futuristic sets 3 +84594 4376 to no particularly memorable effect 1 +84595 4376 no particularly memorable effect 1 +84596 4376 particularly memorable effect 3 +84597 4376 particularly memorable 3 +84598 4377 It 's so badly made on every level that I 'm actually having a hard time believing people were paid to make it . 0 +84599 4377 's so badly made on every level that I 'm actually having a hard time believing people were paid to make it . 0 +84600 4377 's so badly made on every level that I 'm actually having a hard time believing people were paid to make it 0 +84601 4377 so badly made on every level that I 'm actually having a hard time believing people were paid to make it 0 +84602 4377 so badly made on every level 0 +84603 4377 badly made on every level 0 +84604 4377 made on every level 2 +84605 4377 on every level 2 +84606 4377 every level 2 +84607 4377 that I 'm actually having a hard time believing people were paid to make it 1 +84608 4377 I 'm actually having a hard time believing people were paid to make it 0 +84609 4377 'm actually having a hard time believing people were paid to make it 1 +84610 4377 'm actually 2 +84611 4377 having a hard time believing people were paid to make it 0 +84612 4377 having a hard time 2 +84613 4377 believing people were paid to make it 1 +84614 4377 believing 2 +84615 4377 people were paid to make it 2 +84616 4377 were paid to make it 2 +84617 4377 paid to make it 2 +84618 4377 to make it 2 +84619 4378 Twist open the Ouzo ! 2 +84620 4378 open the Ouzo ! 2 +84621 4378 open the Ouzo 2 +84622 4378 the Ouzo 2 +84623 4378 Ouzo 2 +84624 4379 Sewer rats could watch this movie and be so skeeved out that they 'd need a shower . 0 +84625 4379 Sewer rats 1 +84626 4379 Sewer 2 +84627 4379 rats 2 +84628 4379 could watch this movie and be so skeeved out that they 'd need a shower . 1 +84629 4379 could watch this movie and be so skeeved out that they 'd need a shower 1 +84630 4379 watch this movie and be so skeeved out that they 'd need a shower 2 +84631 4379 watch this movie and 2 +84632 4379 watch this movie 3 +84633 4379 be so skeeved out that they 'd need a shower 2 +84634 4379 so skeeved out that they 'd need a shower 3 +84635 4379 skeeved out that they 'd need a shower 1 +84636 4379 skeeved 1 +84637 4379 out that they 'd need a shower 2 +84638 4379 that they 'd need a shower 2 +84639 4379 they 'd need a shower 2 +84640 4379 'd need a shower 1 +84641 4379 need a shower 2 +84642 4379 a shower 2 +84643 4380 A hugely rewarding experience that 's every bit as enlightening , insightful and entertaining as Grant 's two best films -- Four Weddings and a Funeral and Bridget Jones 's Diary . 4 +84644 4380 A hugely rewarding experience that 's every bit as enlightening , insightful and entertaining as Grant 's two best films -- Four Weddings and a Funeral and Bridget Jones 's Diary 4 +84645 4380 A hugely rewarding experience that 's every bit as enlightening , insightful and entertaining as Grant 's two best films -- 4 +84646 4380 A hugely rewarding experience that 's every bit as enlightening , insightful and entertaining as Grant 's two best films 4 +84647 4380 A hugely rewarding experience 4 +84648 4380 hugely rewarding experience 4 +84649 4380 hugely rewarding 4 +84650 4380 that 's every bit as enlightening , insightful and entertaining as Grant 's two best films 4 +84651 4380 's every bit as enlightening , insightful and entertaining as Grant 's two best films 4 +84652 4380 's every bit 2 +84653 4380 as enlightening , insightful and entertaining as Grant 's two best films 4 +84654 4380 as enlightening , insightful and entertaining 3 +84655 4380 enlightening , insightful and entertaining 4 +84656 4380 enlightening 3 +84657 4380 , insightful and entertaining 3 +84658 4380 insightful and entertaining 4 +84659 4380 insightful and 3 +84660 4380 as Grant 's two best films 3 +84661 4380 Grant 's two best films 4 +84662 4380 Grant 's 2 +84663 4380 two best films 4 +84664 4380 Four Weddings and a Funeral and Bridget Jones 's Diary 2 +84665 4380 Four Weddings and 2 +84666 4380 Four Weddings 2 +84667 4380 Weddings 2 +84668 4380 a Funeral and Bridget Jones 's Diary 2 +84669 4380 a Funeral and Bridget Jones 's 2 +84670 4380 Funeral and Bridget Jones 's 2 +84671 4380 and Bridget Jones 's 2 +84672 4380 Bridget Jones 's 2 +84673 4380 Bridget 2 +84674 4380 Jones 's 2 +84675 4380 Diary 2 +84676 4381 The film jolts the laughs from the audience -- as if by cattle prod . 3 +84677 4381 jolts the laughs from the audience -- as if by cattle prod . 3 +84678 4381 jolts the laughs from the audience -- as if by cattle prod 3 +84679 4381 jolts the laughs from the audience -- 3 +84680 4381 jolts the laughs from the audience 3 +84681 4381 jolts the laughs 3 +84682 4381 jolts 2 +84683 4381 from the audience 2 +84684 4381 as if by cattle prod 1 +84685 4381 if by cattle prod 2 +84686 4381 if by cattle 2 +84687 4381 by cattle 2 +84688 4381 cattle 2 +84689 4381 prod 2 +84690 4382 With Rare Birds , as with The Shipping News before it , an attempt is made to transplant a Hollywood star into Newfoundland 's wild soil -- and The Rock once again resists the intrusion . 2 +84691 4382 With Rare Birds 2 +84692 4382 , as with The Shipping News before it , an attempt is made to transplant a Hollywood star into Newfoundland 's wild soil -- and The Rock once again resists the intrusion . 2 +84693 4382 as with The Shipping News before it , an attempt is made to transplant a Hollywood star into Newfoundland 's wild soil -- and The Rock once again resists the intrusion . 2 +84694 4382 as with The Shipping News before it , an attempt is made to transplant a Hollywood star into Newfoundland 's wild soil -- and The Rock once again resists the intrusion 2 +84695 4382 as with The Shipping News before it , an attempt is made to transplant a Hollywood star into Newfoundland 's wild soil -- and 2 +84696 4382 as with The Shipping News before it , an attempt is made to transplant a Hollywood star into Newfoundland 's wild soil -- 2 +84697 4382 as with The Shipping News before it , an attempt is made to transplant a Hollywood star into Newfoundland 's wild soil 2 +84698 4382 as with The Shipping News before it 2 +84699 4382 with The Shipping News before it 2 +84700 4382 The Shipping News before it 2 +84701 4382 The Shipping News 2 +84702 4382 Shipping News 2 +84703 4382 Shipping 2 +84704 4382 before it 2 +84705 4382 , an attempt is made to transplant a Hollywood star into Newfoundland 's wild soil 1 +84706 4382 an attempt is made to transplant a Hollywood star into Newfoundland 's wild soil 2 +84707 4382 is made to transplant a Hollywood star into Newfoundland 's wild soil 2 +84708 4382 made to transplant a Hollywood star into Newfoundland 's wild soil 3 +84709 4382 to transplant a Hollywood star into Newfoundland 's wild soil 2 +84710 4382 transplant a Hollywood star into Newfoundland 's wild soil 2 +84711 4382 transplant a Hollywood star 2 +84712 4382 transplant 2 +84713 4382 a Hollywood star 2 +84714 4382 Hollywood star 2 +84715 4382 into Newfoundland 's wild soil 2 +84716 4382 Newfoundland 's wild soil 2 +84717 4382 Newfoundland 's 2 +84718 4382 Newfoundland 2 +84719 4382 wild soil 2 +84720 4382 soil 2 +84721 4382 The Rock once again resists the intrusion 2 +84722 4382 once again resists the intrusion 2 +84723 4382 resists the intrusion 2 +84724 4382 resists 2 +84725 4382 the intrusion 2 +84726 4382 intrusion 2 +84727 4383 What makes this film special is Serry 's ability to take what is essentially a contained family conflict and put it into a much larger historical context . 4 +84728 4383 What makes this film special 3 +84729 4383 makes this film special 4 +84730 4383 this film special 3 +84731 4383 is Serry 's ability to take what is essentially a contained family conflict and put it into a much larger historical context . 3 +84732 4383 is Serry 's ability to take what is essentially a contained family conflict and put it into a much larger historical context 3 +84733 4383 Serry 's ability to take what is essentially a contained family conflict and put it into a much larger historical context 3 +84734 4383 Serry 's 2 +84735 4383 Serry 2 +84736 4383 ability to take what is essentially a contained family conflict and put it into a much larger historical context 3 +84737 4383 to take what is essentially a contained family conflict and put it into a much larger historical context 2 +84738 4383 take what is essentially a contained family conflict and put it into a much larger historical context 2 +84739 4383 take what is essentially a contained family conflict and 2 +84740 4383 take what is essentially a contained family conflict 2 +84741 4383 what is essentially a contained family conflict 2 +84742 4383 is essentially a contained family conflict 2 +84743 4383 a contained family conflict 2 +84744 4383 contained family conflict 2 +84745 4383 contained 2 +84746 4383 family conflict 2 +84747 4383 put it into a much larger historical context 2 +84748 4383 into a much larger historical context 2 +84749 4383 a much larger historical context 3 +84750 4383 much larger historical context 2 +84751 4383 much larger 2 +84752 4384 It 's a setup so easy it borders on facile , but keeping the film from cheap-shot mediocrity is its crack cast . 3 +84753 4384 It 's a setup so easy it borders on facile , but keeping the film from cheap-shot mediocrity is its crack cast 2 +84754 4384 It 's a setup so easy it borders on facile , but 1 +84755 4384 It 's a setup so easy it borders on facile , 1 +84756 4384 It 's a setup so easy it borders on facile 2 +84757 4384 's a setup so easy it borders on facile 2 +84758 4384 a setup so easy it borders on facile 1 +84759 4384 a setup so easy 2 +84760 4384 a setup 2 +84761 4384 so easy 2 +84762 4384 it borders on facile 1 +84763 4384 borders on facile 2 +84764 4384 on facile 2 +84765 4384 keeping the film from cheap-shot mediocrity is its crack cast 2 +84766 4384 keeping the film from cheap-shot mediocrity 2 +84767 4384 from cheap-shot mediocrity 1 +84768 4384 cheap-shot mediocrity 0 +84769 4384 cheap-shot 1 +84770 4384 is its crack cast 2 +84771 4384 its crack cast 3 +84772 4384 crack cast 3 +84773 4385 If swimfan does catch on , it may be because teens are looking for something to make them laugh . 1 +84774 4385 If swimfan does catch on 2 +84775 4385 swimfan does catch on 3 +84776 4385 does catch on 2 +84777 4385 catch on 2 +84778 4385 , it may be because teens are looking for something to make them laugh . 1 +84779 4385 it may be because teens are looking for something to make them laugh . 3 +84780 4385 may be because teens are looking for something to make them laugh . 2 +84781 4385 may be because teens are looking for something to make them laugh 2 +84782 4385 be because teens are looking for something to make them laugh 2 +84783 4385 because teens are looking for something to make them laugh 2 +84784 4385 teens are looking for something to make them laugh 3 +84785 4385 are looking for something to make them laugh 2 +84786 4385 looking for something to make them laugh 2 +84787 4385 looking for something 2 +84788 4385 for something 2 +84789 4385 to make them laugh 2 +84790 4385 make them laugh 3 +84791 4385 them laugh 2 +84792 4386 A hard look at one man 's occupational angst and its subsequent reinvention , a terrifying study of bourgeois desperation worthy of Claude Chabrol . 3 +84793 4386 A hard look at one man 's occupational angst and its subsequent reinvention , a terrifying study of bourgeois 2 +84794 4386 A hard look 2 +84795 4386 hard look 2 +84796 4386 at one man 's occupational angst and its subsequent reinvention , a terrifying study of bourgeois 0 +84797 4386 one man 's occupational angst and its subsequent reinvention , a terrifying study of bourgeois 2 +84798 4386 one man 's occupational angst and 2 +84799 4386 one man 's occupational angst 2 +84800 4386 occupational angst 2 +84801 4386 occupational 2 +84802 4386 its subsequent reinvention , a terrifying study of bourgeois 1 +84803 4386 its subsequent reinvention , 2 +84804 4386 its subsequent reinvention 2 +84805 4386 subsequent reinvention 2 +84806 4386 subsequent 2 +84807 4386 reinvention 2 +84808 4386 a terrifying study of bourgeois 2 +84809 4386 a terrifying study 2 +84810 4386 terrifying study 2 +84811 4386 of bourgeois 2 +84812 4386 desperation worthy of Claude Chabrol . 2 +84813 4386 desperation worthy of Claude Chabrol 2 +84814 4386 desperation worthy 1 +84815 4386 of Claude Chabrol 2 +84816 4387 Granddad of Le Nouvelle Vague , Jean-Luc Godard continues to baffle the faithful with his games of hide-and-seek . 2 +84817 4387 Granddad of Le Nouvelle Vague 2 +84818 4387 Granddad 2 +84819 4387 of Le Nouvelle Vague 2 +84820 4387 Le Nouvelle Vague 2 +84821 4387 Nouvelle Vague 2 +84822 4387 , Jean-Luc Godard continues to baffle the faithful with his games of hide-and-seek . 2 +84823 4387 Jean-Luc Godard continues to baffle the faithful with his games of hide-and-seek . 2 +84824 4387 Jean-Luc Godard 2 +84825 4387 Jean-Luc 2 +84826 4387 continues to baffle the faithful with his games of hide-and-seek . 1 +84827 4387 continues to baffle the faithful with his games of hide-and-seek 2 +84828 4387 to baffle the faithful with his games of hide-and-seek 1 +84829 4387 baffle the faithful with his games of hide-and-seek 2 +84830 4387 baffle the faithful 2 +84831 4387 baffle 2 +84832 4387 the faithful 3 +84833 4387 with his games of hide-and-seek 2 +84834 4387 his games of hide-and-seek 2 +84835 4387 his games 2 +84836 4387 of hide-and-seek 2 +84837 4387 hide-and-seek 2 +84838 4388 Like an episode of MTV 's Undressed , with 20 times the creativity but without any more substance ... indulgently entertaining but could have and should have been deeper . 2 +84839 4388 Like an episode of MTV 's Undressed 2 +84840 4388 an episode of MTV 's Undressed 2 +84841 4388 of MTV 's Undressed 2 +84842 4388 MTV 's Undressed 2 +84843 4388 MTV 's 2 +84844 4388 Undressed 2 +84845 4388 , with 20 times the creativity but without any more substance ... indulgently entertaining but could have and should have been deeper . 3 +84846 4388 with 20 times the creativity but without any more substance ... indulgently entertaining but could have and should have been deeper . 2 +84847 4388 with 20 times 3 +84848 4388 20 times 2 +84849 4388 the creativity but without any more substance ... indulgently entertaining but could have and should have been deeper . 2 +84850 4388 the creativity but without any more substance ... indulgently entertaining 3 +84851 4388 the creativity but without any more substance ... 2 +84852 4388 the creativity 3 +84853 4388 but without any more substance ... 2 +84854 4388 without any more substance ... 1 +84855 4388 without any more substance 2 +84856 4388 any more substance 2 +84857 4388 more substance 2 +84858 4388 indulgently entertaining 4 +84859 4388 indulgently 2 +84860 4388 but could have and should have been deeper . 1 +84861 4388 but could have and should have been deeper 1 +84862 4388 could have and should have been deeper 1 +84863 4388 could have and 2 +84864 4388 should have been deeper 1 +84865 4388 have been deeper 2 +84866 4388 been deeper 2 +84867 4389 A grand fart coming from a director beginning to resemble someone 's crazy French grandfather . 0 +84868 4389 A grand fart coming from a director beginning to resemble someone 's crazy French grandfather 0 +84869 4389 A grand fart 1 +84870 4389 grand fart 1 +84871 4389 fart 1 +84872 4389 coming from a director beginning to resemble someone 's crazy French grandfather 1 +84873 4389 from a director beginning to resemble someone 's crazy French grandfather 1 +84874 4389 a director beginning to resemble someone 's crazy French grandfather 1 +84875 4389 beginning to resemble someone 's crazy French grandfather 1 +84876 4389 to resemble someone 's crazy French grandfather 2 +84877 4389 resemble someone 's crazy French grandfather 2 +84878 4389 someone 's crazy French grandfather 2 +84879 4389 someone 's 2 +84880 4389 crazy French grandfather 2 +84881 4389 French grandfather 2 +84882 4389 grandfather 2 +84883 4390 Jackson tries to keep the plates spinning as best he can , but all the bouncing back and forth ca n't help but become a bit tedious -- even with the breathtaking landscapes and villainous varmints there to distract you from the ricocheting . 2 +84884 4390 Jackson tries to keep the plates spinning as best he can , but all the bouncing back and forth ca n't help but become a bit tedious -- even with the breathtaking landscapes and villainous varmints there to distract you from the ricocheting 1 +84885 4390 Jackson tries to keep the plates spinning as best he can , but 1 +84886 4390 Jackson tries to keep the plates spinning as best he can , 2 +84887 4390 Jackson tries to keep the plates spinning as best he can 3 +84888 4390 tries to keep the plates spinning as best he can 2 +84889 4390 to keep the plates spinning as best he can 2 +84890 4390 keep the plates spinning as best he can 2 +84891 4390 the plates spinning as best he can 2 +84892 4390 the plates 2 +84893 4390 plates 2 +84894 4390 spinning as best he can 2 +84895 4390 as best he can 2 +84896 4390 best he can 2 +84897 4390 he can 2 +84898 4390 all the bouncing back and forth ca n't help but become a bit tedious -- even with the breathtaking landscapes and villainous varmints there to distract you from the ricocheting 1 +84899 4390 all the bouncing 1 +84900 4390 the bouncing 2 +84901 4390 bouncing 2 +84902 4390 back and forth ca n't help but become a bit tedious -- even with the breathtaking landscapes and villainous varmints there to distract you from the ricocheting 2 +84903 4390 back and forth ca n't help but become a bit tedious -- 1 +84904 4390 back and forth ca n't help but become a bit tedious 1 +84905 4390 back and forth ca n't help but 2 +84906 4390 back and forth ca n't help 2 +84907 4390 become a bit tedious 2 +84908 4390 a bit tedious 1 +84909 4390 even with the breathtaking landscapes and villainous varmints there to distract you from the ricocheting 2 +84910 4390 with the breathtaking landscapes and villainous varmints there to distract you from the ricocheting 3 +84911 4390 the breathtaking landscapes and villainous varmints there to distract you from the ricocheting 2 +84912 4390 the breathtaking landscapes and villainous 3 +84913 4390 the breathtaking landscapes and 3 +84914 4390 the breathtaking landscapes 3 +84915 4390 breathtaking landscapes 4 +84916 4390 varmints there to distract you from the ricocheting 2 +84917 4390 varmints 1 +84918 4390 there to distract you from the ricocheting 2 +84919 4390 to distract you from the ricocheting 1 +84920 4390 distract you from the ricocheting 1 +84921 4390 distract you 1 +84922 4390 from the ricocheting 2 +84923 4390 the ricocheting 2 +84924 4390 ricocheting 2 +84925 4391 Like a medium-grade network sitcom -- mostly inoffensive , fitfully amusing , but ultimately so weightless that a decent draft in the auditorium might blow it off the screen . 1 +84926 4391 Like a medium-grade network sitcom -- mostly inoffensive 1 +84927 4391 a medium-grade network sitcom -- mostly inoffensive 2 +84928 4391 a medium-grade network sitcom -- 1 +84929 4391 a medium-grade network sitcom 2 +84930 4391 medium-grade network sitcom 1 +84931 4391 medium-grade 2 +84932 4391 network sitcom 2 +84933 4391 mostly inoffensive 2 +84934 4391 , fitfully amusing , but ultimately so weightless that a decent draft in the auditorium might blow it off the screen . 0 +84935 4391 fitfully amusing , but ultimately so weightless that a decent draft in the auditorium might blow it off the screen . 2 +84936 4391 fitfully amusing , but ultimately so 2 +84937 4391 amusing , but ultimately so 3 +84938 4391 amusing , but 2 +84939 4391 amusing , 3 +84940 4391 ultimately so 2 +84941 4391 weightless that a decent draft in the auditorium might blow it off the screen . 1 +84942 4391 weightless that a decent draft in the auditorium might blow it off the screen 1 +84943 4391 weightless 2 +84944 4391 that a decent draft in the auditorium might blow it off the screen 1 +84945 4391 a decent draft in the auditorium might blow it off the screen 1 +84946 4391 a decent draft in the auditorium 2 +84947 4391 a decent draft 2 +84948 4391 decent draft 3 +84949 4391 draft 2 +84950 4391 in the auditorium 2 +84951 4391 the auditorium 2 +84952 4391 auditorium 2 +84953 4391 might blow it off the screen 2 +84954 4391 blow it off the screen 1 +84955 4391 blow it 2 +84956 4391 off the screen 2 +84957 4392 A film in a class with Spike Lee 's masterful Do The Right Thing . 4 +84958 4392 A film in a class with Spike Lee 's masterful 4 +84959 4392 in a class with Spike Lee 's masterful 3 +84960 4392 a class with Spike Lee 's masterful 3 +84961 4392 with Spike Lee 's masterful 4 +84962 4392 Spike Lee 's masterful 2 +84963 4392 Spike Lee 's 2 +84964 4392 Do The Right Thing . 2 +84965 4392 Do The Right Thing 2 +84966 4392 The Right Thing 3 +84967 4392 Right Thing 2 +84968 4393 Is it possible for a documentary to be utterly entranced by its subject and still show virtually no understanding of it ? 1 +84969 4393 Is it possible for a documentary to be utterly entranced by its subject and still show virtually no understanding of it 1 +84970 4393 Is it possible for a documentary 2 +84971 4393 possible for a documentary 2 +84972 4393 for a documentary 2 +84973 4393 to be utterly entranced by its subject and still show virtually no understanding of it 2 +84974 4393 be utterly entranced by its subject and still show virtually no understanding of it 1 +84975 4393 be utterly entranced by its subject and 3 +84976 4393 be utterly entranced by its subject 2 +84977 4393 utterly entranced by its subject 2 +84978 4393 entranced by its subject 2 +84979 4393 by its subject 2 +84980 4393 still show virtually no understanding of it 1 +84981 4393 show virtually no understanding of it 2 +84982 4393 virtually no understanding of it 1 +84983 4393 virtually no understanding 1 +84984 4393 no understanding 2 +84985 4394 Scotland looks wonderful , the fans are often funny fanatics , the showdown sure beats a bad day of golf . 3 +84986 4394 Scotland looks wonderful , the fans are often funny fanatics , the showdown sure beats a bad day of golf 3 +84987 4394 Scotland looks wonderful , the fans are often funny fanatics , 3 +84988 4394 Scotland looks wonderful , the fans are often funny fanatics 3 +84989 4394 Scotland looks wonderful , 3 +84990 4394 Scotland looks wonderful 3 +84991 4394 looks wonderful 3 +84992 4394 the fans are often funny fanatics 3 +84993 4394 the fans 2 +84994 4394 are often funny fanatics 3 +84995 4394 funny fanatics 3 +84996 4394 the showdown sure beats a bad day of golf 2 +84997 4394 the showdown 2 +84998 4394 showdown 1 +84999 4394 sure beats a bad day of golf 2 +85000 4394 beats a bad day of golf 2 +85001 4394 a bad day of golf 2 +85002 4394 a bad day 1 +85003 4394 bad day 1 +85004 4394 of golf 2 +85005 4395 has a whip-smart sense of narrative bluffs . 3 +85006 4395 has a whip-smart sense of narrative bluffs 3 +85007 4395 a whip-smart sense of narrative bluffs 3 +85008 4395 a whip-smart sense 2 +85009 4395 whip-smart sense 2 +85010 4395 whip-smart 3 +85011 4395 of narrative bluffs 2 +85012 4395 narrative bluffs 2 +85013 4395 bluffs 2 +85014 4396 A solidly entertaining little film . 3 +85015 4396 A solidly entertaining little film 4 +85016 4396 A solidly entertaining 4 +85017 4397 Films about loss , grief and recovery are pretty valuable these days . 3 +85018 4397 Films about loss , grief and recovery 2 +85019 4397 about loss , grief and recovery 2 +85020 4397 loss , grief and recovery 2 +85021 4397 , grief and recovery 2 +85022 4397 grief and recovery 2 +85023 4397 grief and 2 +85024 4397 are pretty valuable these days . 2 +85025 4397 are pretty valuable these days 3 +85026 4397 are pretty valuable 3 +85027 4397 pretty valuable 3 +85028 4398 I found it slow , predictable and not very amusing . 0 +85029 4398 found it slow , predictable and not very amusing . 0 +85030 4398 found it slow , predictable and not very amusing 1 +85031 4398 it slow , predictable and not very amusing 0 +85032 4398 slow , predictable and not very amusing 0 +85033 4398 slow , predictable and 1 +85034 4398 slow , predictable 1 +85035 4398 not very amusing 1 +85036 4398 very amusing 4 +85037 4399 By turns touching , raucously amusing , uncomfortable , and , yes , even sexy , Never Again is a welcome and heartwarming addition to the romantic comedy genre . 4 +85038 4399 By turns touching , raucously amusing , uncomfortable , and , yes , even sexy 4 +85039 4399 turns touching , raucously amusing , uncomfortable , and , yes , even sexy 3 +85040 4399 touching , raucously amusing , uncomfortable , and , yes , even sexy 3 +85041 4399 touching , raucously amusing , uncomfortable , and , yes , 3 +85042 4399 touching , raucously amusing , uncomfortable , and 3 +85043 4399 touching , raucously amusing , uncomfortable , 2 +85044 4399 touching , raucously amusing , uncomfortable 3 +85045 4399 touching , raucously amusing , 4 +85046 4399 touching , raucously amusing 3 +85047 4399 touching , 3 +85048 4399 raucously amusing 4 +85049 4399 raucously 3 +85050 4399 , yes , 2 +85051 4399 yes , 2 +85052 4399 even sexy 3 +85053 4399 , Never Again is a welcome and heartwarming addition to the romantic comedy genre . 4 +85054 4399 Never Again is a welcome and heartwarming addition to the romantic comedy genre . 3 +85055 4399 is a welcome and heartwarming addition to the romantic comedy genre . 3 +85056 4399 is a welcome and heartwarming addition to the romantic comedy genre 3 +85057 4399 a welcome and heartwarming addition to the romantic comedy genre 4 +85058 4399 a welcome and heartwarming addition 4 +85059 4399 welcome and heartwarming addition 3 +85060 4399 welcome and heartwarming 3 +85061 4399 welcome and 2 +85062 4399 to the romantic comedy genre 2 +85063 4400 There are deeply religious and spiritual people in this world who would argue that entering a church , synagogue or temple does n't mean you have to check your brain at the door . 3 +85064 4400 are deeply religious and spiritual people in this world who would argue that entering a church , synagogue or temple does n't mean you have to check your brain at the door . 2 +85065 4400 are deeply religious and spiritual people in this world who would argue that entering a church , synagogue or temple does n't mean you have to check your brain at the door 2 +85066 4400 deeply religious and spiritual people in this world who would argue that entering a church , synagogue or temple does n't mean you have to check your brain at the door 2 +85067 4400 deeply religious and spiritual people 2 +85068 4400 religious and spiritual people 2 +85069 4400 and spiritual people 2 +85070 4400 spiritual people 2 +85071 4400 in this world who would argue that entering a church , synagogue or temple does n't mean you have to check your brain at the door 2 +85072 4400 this world who would argue that entering a church , synagogue or temple does n't mean you have to check your brain at the door 2 +85073 4400 who would argue that entering a church , synagogue or temple does n't mean you have to check your brain at the door 2 +85074 4400 would argue that entering a church , synagogue or temple does n't mean you have to check your brain at the door 2 +85075 4400 argue that entering a church , synagogue or temple does n't mean you have to check your brain at the door 1 +85076 4400 that entering a church , synagogue or temple does n't mean you have to check your brain at the door 2 +85077 4400 entering a church , synagogue or temple does n't mean you have to check your brain at the door 2 +85078 4400 entering a church , synagogue or temple 2 +85079 4400 entering 3 +85080 4400 a church , synagogue or temple 2 +85081 4400 church , synagogue or temple 2 +85082 4400 , synagogue or temple 2 +85083 4400 synagogue or temple 2 +85084 4400 synagogue or 2 +85085 4400 synagogue 2 +85086 4400 does n't mean you have to check your brain at the door 1 +85087 4400 mean you have to check your brain at the door 2 +85088 4400 you have to check your brain at the door 1 +85089 4400 have to check your brain at the door 0 +85090 4400 to check your brain at the door 1 +85091 4400 check your brain at the door 1 +85092 4400 check your brain 1 +85093 4401 out ballsy and stylish 3 +85094 4401 ballsy and stylish 2 +85095 4401 ballsy and 3 +85096 4401 ballsy 3 +85097 4401 fails to keep it up and 1 +85098 4401 fails to keep it up 2 +85099 4401 to keep it up 2 +85100 4401 keep it up 4 +85101 4402 Hardman is a grating , mannered onscreen presence , which is especially unfortunate in light of the fine work done by most of the rest of her cast . 2 +85102 4402 Hardman 2 +85103 4402 is a grating , mannered onscreen presence , which is especially unfortunate in light of the fine work done by most of the rest of her cast . 1 +85104 4402 is a grating , mannered onscreen presence , which is especially unfortunate in light of the fine work done by most of the rest of her cast 1 +85105 4402 a grating , mannered onscreen presence , which is especially unfortunate in light of the fine work done by most of the rest of her cast 2 +85106 4402 a grating , mannered onscreen presence , 1 +85107 4402 a grating , mannered onscreen presence 2 +85108 4402 grating , mannered onscreen presence 1 +85109 4402 grating , mannered 2 +85110 4402 , mannered 2 +85111 4402 onscreen presence 2 +85112 4402 which is especially unfortunate in light of the fine work done by most of the rest of her cast 1 +85113 4402 is especially unfortunate in light of the fine work done by most of the rest of her cast 1 +85114 4402 especially unfortunate in light of the fine work done by most of the rest of her cast 1 +85115 4402 unfortunate in light of the fine work done by most of the rest of her cast 1 +85116 4402 unfortunate 2 +85117 4402 in light of the fine work done by most of the rest of her cast 2 +85118 4402 light of the fine work done by most of the rest of her cast 2 +85119 4402 of the fine work done by most of the rest of her cast 3 +85120 4402 the fine work done by most of the rest of her cast 3 +85121 4402 the fine work 3 +85122 4402 fine work 4 +85123 4402 done by most of the rest of her cast 2 +85124 4402 by most of the rest of her cast 2 +85125 4402 most of the rest of her cast 2 +85126 4402 of the rest of her cast 2 +85127 4402 the rest of her cast 2 +85128 4402 of her cast 2 +85129 4403 An undeniably gorgeous , terminally smitten document of a troubadour , his acolytes , and the triumph of his band . 3 +85130 4403 An undeniably gorgeous , terminally 4 +85131 4403 undeniably gorgeous , terminally 3 +85132 4403 undeniably gorgeous 4 +85133 4403 , terminally 2 +85134 4403 smitten document of a troubadour , his acolytes , and the triumph of his band . 3 +85135 4403 smitten document of a troubadour , his acolytes , and the triumph of his band 2 +85136 4403 smitten 2 +85137 4403 document of a troubadour , his acolytes , and the triumph of his band 2 +85138 4403 of a troubadour , his acolytes , and the triumph of his band 3 +85139 4403 a troubadour , his acolytes , and the triumph of his band 2 +85140 4403 a troubadour , his acolytes , and 2 +85141 4403 a troubadour , his acolytes , 2 +85142 4403 a troubadour , his acolytes 2 +85143 4403 a troubadour , 2 +85144 4403 a troubadour 3 +85145 4403 troubadour 2 +85146 4403 his acolytes 2 +85147 4403 acolytes 2 +85148 4403 the triumph of his band 3 +85149 4403 the triumph 3 +85150 4403 of his band 2 +85151 4403 his band 2 +85152 4404 the attempt to complicate the story only defies credibility 1 +85153 4404 the attempt to complicate the story 1 +85154 4404 attempt to complicate the story 2 +85155 4404 to complicate the story 2 +85156 4404 complicate the story 2 +85157 4404 complicate 2 +85158 4404 only defies credibility 1 +85159 4404 defies credibility 2 +85160 4405 If you 're over 25 , have an IQ over 90 , and have a driver 's license , you should be able to find better entertainment . 0 +85161 4405 If you 're over 25 , have an IQ over 90 , and have a driver 's license 1 +85162 4405 you 're over 25 , have an IQ over 90 , and have a driver 's license 2 +85163 4405 're over 25 , have an IQ over 90 , and have a driver 's license 1 +85164 4405 're over 25 , have an IQ over 90 , and 2 +85165 4405 're over 25 , have an IQ over 90 , 1 +85166 4405 're over 25 , have an IQ over 90 2 +85167 4405 're over 25 , 2 +85168 4405 're over 25 3 +85169 4405 over 25 2 +85170 4405 have an IQ over 90 2 +85171 4405 an IQ over 90 2 +85172 4405 an IQ 2 +85173 4405 over 90 2 +85174 4405 have a driver 's license 2 +85175 4405 a driver 's license 2 +85176 4405 a driver 's 2 +85177 4405 driver 's 2 +85178 4405 license 2 +85179 4405 , you should be able to find better entertainment . 1 +85180 4405 you should be able to find better entertainment . 0 +85181 4405 should be able to find better entertainment . 2 +85182 4405 should be able to find better entertainment 1 +85183 4405 be able to find better entertainment 1 +85184 4405 able to find better entertainment 2 +85185 4405 to find better entertainment 1 +85186 4405 find better entertainment 2 +85187 4405 better entertainment 3 +85188 4406 The film was produced by Jerry Bruckheimer and directed by Joel Schumacher , and reflects the worst of their shallow styles : wildly overproduced , inadequately motivated every step of the way and demographically targeted to please every one -LRB- and no one -RRB- . 1 +85189 4406 was produced by Jerry Bruckheimer and directed by Joel Schumacher , and reflects the worst of their shallow styles : wildly overproduced , inadequately motivated every step of the way and demographically targeted to please every one -LRB- and no one -RRB- . 1 +85190 4406 was produced by Jerry Bruckheimer and directed by Joel Schumacher , and reflects the worst of their shallow styles : wildly overproduced , inadequately motivated every step of the way and demographically targeted to please every one -LRB- and no one -RRB- 0 +85191 4406 was produced by Jerry Bruckheimer and directed by Joel Schumacher , and reflects the worst of their shallow styles : wildly overproduced , inadequately motivated every step of the way and 0 +85192 4406 was produced by Jerry Bruckheimer and directed by Joel Schumacher , and reflects the worst of their shallow styles : wildly overproduced , inadequately motivated every step of the way 0 +85193 4406 was produced by Jerry Bruckheimer and directed by Joel Schumacher , and reflects the worst of their shallow styles : 1 +85194 4406 was produced by Jerry Bruckheimer and directed by Joel Schumacher , and reflects the worst of their shallow styles 0 +85195 4406 was produced by Jerry Bruckheimer and directed by Joel Schumacher , and 2 +85196 4406 was produced by Jerry Bruckheimer and directed by Joel Schumacher , 2 +85197 4406 was produced by Jerry Bruckheimer and directed by Joel Schumacher 2 +85198 4406 produced by Jerry Bruckheimer and directed by Joel Schumacher 2 +85199 4406 produced by Jerry Bruckheimer and 2 +85200 4406 produced by Jerry Bruckheimer 2 +85201 4406 by Jerry Bruckheimer 2 +85202 4406 reflects the worst of their shallow styles 1 +85203 4406 the worst of their shallow styles 1 +85204 4406 of their shallow styles 2 +85205 4406 their shallow styles 1 +85206 4406 shallow styles 1 +85207 4406 wildly overproduced , inadequately motivated every step of the way 0 +85208 4406 wildly overproduced , inadequately motivated every step 0 +85209 4406 wildly overproduced , inadequately motivated 2 +85210 4406 wildly overproduced , 1 +85211 4406 wildly overproduced 1 +85212 4406 inadequately motivated 1 +85213 4406 inadequately 1 +85214 4406 every step 2 +85215 4406 demographically targeted to please every one -LRB- and no one -RRB- 2 +85216 4406 demographically 2 +85217 4406 targeted to please every one -LRB- and no one -RRB- 2 +85218 4406 to please every one -LRB- and no one -RRB- 2 +85219 4406 please every one -LRB- and no one -RRB- 2 +85220 4406 every one -LRB- and no one -RRB- 1 +85221 4406 every one 2 +85222 4406 -LRB- and no one -RRB- 2 +85223 4406 and no one -RRB- 3 +85224 4406 and no one 2 +85225 4407 Highlighted by a gritty style and an excellent cast , it 's better than one might expect when you look at the list of movies starring Ice-T in a major role . 3 +85226 4407 Highlighted by a gritty style and an excellent cast 4 +85227 4407 by a gritty style and an excellent cast 4 +85228 4407 a gritty style and an excellent cast 4 +85229 4407 a gritty style and 2 +85230 4407 a gritty style 2 +85231 4407 gritty style 2 +85232 4407 an excellent cast 4 +85233 4407 , it 's better than one might expect when you look at the list of movies starring Ice-T in a major role . 3 +85234 4407 it 's better than one might expect when you look at the list of movies starring Ice-T in a major role . 3 +85235 4407 's better than one might expect when you look at the list of movies starring Ice-T in a major role . 3 +85236 4407 's better than one might expect when you look at the list of movies starring Ice-T in a major role 4 +85237 4407 's better 3 +85238 4407 than one might expect when you look at the list of movies starring Ice-T in a major role 3 +85239 4407 one might expect when you look at the list of movies starring Ice-T in a major role 2 +85240 4407 might expect when you look at the list of movies starring Ice-T in a major role 2 +85241 4407 expect when you look at the list of movies starring Ice-T in a major role 2 +85242 4407 when you look at the list of movies starring Ice-T in a major role 2 +85243 4407 you look at the list of movies starring Ice-T in a major role 2 +85244 4407 look at the list of movies starring Ice-T in a major role 1 +85245 4407 at the list of movies starring Ice-T in a major role 2 +85246 4407 the list of movies starring Ice-T in a major role 2 +85247 4407 of movies starring Ice-T in a major role 2 +85248 4407 movies starring Ice-T in a major role 2 +85249 4407 starring Ice-T in a major role 2 +85250 4407 Ice-T in a major role 2 +85251 4407 in a major role 2 +85252 4407 a major role 2 +85253 4407 major role 2 +85254 4408 The film is moody , oozing , chilling and heart-warming all at once ... a twisting , unpredictable , cat-and-mouse thriller . 4 +85255 4408 is moody , oozing , chilling and heart-warming all at once ... a twisting , unpredictable , cat-and-mouse thriller . 4 +85256 4408 is moody , oozing , chilling and heart-warming all at once ... a twisting , unpredictable , cat-and-mouse thriller 4 +85257 4408 is moody , oozing , chilling and heart-warming all at once ... 3 +85258 4408 is moody , oozing , chilling and heart-warming all at once 3 +85259 4408 is moody , oozing , chilling and heart-warming 3 +85260 4408 moody , oozing , chilling and heart-warming 3 +85261 4408 , oozing , chilling and heart-warming 3 +85262 4408 oozing , chilling and heart-warming 3 +85263 4408 , chilling and heart-warming 3 +85264 4408 chilling and heart-warming 3 +85265 4408 chilling and 2 +85266 4408 heart-warming 4 +85267 4408 a twisting , unpredictable , cat-and-mouse thriller 4 +85268 4408 a twisting , unpredictable , 2 +85269 4408 a twisting , unpredictable 2 +85270 4408 a twisting , 2 +85271 4408 a twisting 2 +85272 4408 cat-and-mouse thriller 2 +85273 4408 cat-and-mouse 2 +85274 4409 Believability was n't one of the film 's virtues . 1 +85275 4409 was n't one of the film 's virtues . 1 +85276 4409 was n't one of the film 's virtues 1 +85277 4409 one of the film 's virtues 2 +85278 4409 of the film 's virtues 2 +85279 4409 the film 's virtues 2 +85280 4410 Much of All About Lily Chou-Chou is mesmerizing : some of its plaintiveness could make you weep . 4 +85281 4410 Much of All About Lily Chou-Chou is mesmerizing : some of its plaintiveness could make you weep 4 +85282 4410 Much of All About Lily Chou-Chou is mesmerizing : 3 +85283 4410 Much of All About Lily Chou-Chou is mesmerizing 4 +85284 4410 Much of All About Lily Chou-Chou 2 +85285 4410 of All About Lily Chou-Chou 2 +85286 4410 All About Lily Chou-Chou 2 +85287 4410 is mesmerizing 4 +85288 4410 some of its plaintiveness could make you weep 2 +85289 4410 some of its plaintiveness 2 +85290 4410 of its plaintiveness 2 +85291 4410 its plaintiveness 2 +85292 4410 plaintiveness 1 +85293 4410 could make you weep 1 +85294 4410 make you weep 2 +85295 4410 you weep 2 +85296 4410 weep 2 +85297 4411 Mandel Holland 's direction is uninspired , and his scripting unsurprising , but the performances by Phifer and Black are ultimately winning . 2 +85298 4411 Mandel Holland 's direction is uninspired , and his scripting unsurprising , but the performances by Phifer and Black are ultimately winning 3 +85299 4411 Mandel Holland 's direction is uninspired , and his scripting unsurprising , but 1 +85300 4411 Mandel Holland 's direction is uninspired , and his scripting unsurprising , 1 +85301 4411 Mandel Holland 's direction is uninspired , and his scripting unsurprising 1 +85302 4411 Mandel Holland 's direction is uninspired , and 1 +85303 4411 Mandel Holland 's direction is uninspired , 1 +85304 4411 Mandel Holland 's direction is uninspired 1 +85305 4411 Mandel Holland 's direction 2 +85306 4411 Mandel Holland 's 2 +85307 4411 Mandel 2 +85308 4411 Holland 's 2 +85309 4411 Holland 2 +85310 4411 is uninspired 1 +85311 4411 his scripting unsurprising 1 +85312 4411 his scripting 2 +85313 4411 the performances by Phifer and Black are ultimately winning 4 +85314 4411 the performances by Phifer and Black 2 +85315 4411 by Phifer and Black 2 +85316 4411 Phifer and Black 2 +85317 4411 are ultimately winning 3 +85318 4411 are ultimately 2 +85319 4412 We do n't even like their characters . 1 +85320 4412 do n't even like their characters . 1 +85321 4412 do n't even like their characters 1 +85322 4412 like their characters 3 +85323 4413 It is parochial , accessible to a chosen few , standoffish to everyone else , and smugly suggests a superior moral tone is more important than filmmaking skill 1 +85324 4413 is parochial , accessible to a chosen few , standoffish to everyone else , and smugly suggests a superior moral tone is more important than filmmaking skill 1 +85325 4413 parochial , accessible to a chosen few , standoffish to everyone else , and smugly suggests a superior moral tone is more important than filmmaking skill 0 +85326 4413 , accessible to a chosen few , standoffish to everyone else , and smugly suggests a superior moral tone is more important than filmmaking skill 0 +85327 4413 accessible to a chosen few , standoffish to everyone else , and smugly suggests a superior moral tone is more important than filmmaking skill 0 +85328 4413 accessible to a chosen few 2 +85329 4413 to a chosen few 2 +85330 4413 a chosen few 2 +85331 4413 chosen few 2 +85332 4413 , standoffish to everyone else , and smugly suggests a superior moral tone is more important than filmmaking skill 1 +85333 4413 standoffish to everyone else , and smugly suggests a superior moral tone is more important than filmmaking skill 1 +85334 4413 standoffish to everyone else 1 +85335 4413 standoffish 2 +85336 4413 to everyone else 2 +85337 4413 everyone else 2 +85338 4413 , and smugly suggests a superior moral tone is more important than filmmaking skill 1 +85339 4413 smugly suggests a superior moral tone is more important than filmmaking skill 2 +85340 4413 smugly 1 +85341 4413 suggests a superior moral tone is more important than filmmaking skill 1 +85342 4413 suggests a superior moral tone is more important 2 +85343 4413 a superior moral tone is more important 2 +85344 4413 a superior moral tone 4 +85345 4413 superior moral tone 3 +85346 4413 moral tone 2 +85347 4413 is more important 2 +85348 4413 more important 2 +85349 4413 than filmmaking skill 2 +85350 4413 filmmaking skill 2 +85351 4414 It 's full of cheesy dialogue , but great trashy fun that finally returns De Palma to his pulpy thrillers of the early '80s . 3 +85352 4414 's full of cheesy dialogue , but great trashy fun that finally returns De Palma to his pulpy thrillers of the early '80s . 3 +85353 4414 's full of cheesy dialogue , but great trashy fun that finally returns De Palma to his pulpy thrillers of the early '80s 4 +85354 4414 full of cheesy dialogue , but great trashy fun that finally returns De Palma to his pulpy thrillers of the early '80s 3 +85355 4414 full of cheesy dialogue , but 2 +85356 4414 full of cheesy dialogue , 1 +85357 4414 full of cheesy dialogue 0 +85358 4414 of cheesy dialogue 1 +85359 4414 cheesy dialogue 1 +85360 4414 great trashy fun that finally returns De Palma to his pulpy thrillers of the early '80s 3 +85361 4414 great trashy fun 4 +85362 4414 trashy fun 3 +85363 4414 that finally returns De Palma to his pulpy thrillers of the early '80s 3 +85364 4414 finally returns De Palma to his pulpy thrillers of the early '80s 3 +85365 4414 returns De Palma to his pulpy thrillers of the early '80s 3 +85366 4414 De Palma to his pulpy thrillers of the early '80s 2 +85367 4414 De Palma to his pulpy thrillers 2 +85368 4414 De Palma 2 +85369 4414 to his pulpy thrillers 3 +85370 4414 his pulpy thrillers 2 +85371 4414 pulpy thrillers 2 +85372 4414 of the early '80s 2 +85373 4414 the early '80s 2 +85374 4414 early '80s 2 +85375 4414 '80s 2 +85376 4415 It 's bedeviled by labored writing and slack direction . 1 +85377 4415 's bedeviled by labored writing and slack direction . 2 +85378 4415 's bedeviled by labored writing and slack direction 2 +85379 4415 bedeviled by labored writing and slack direction 1 +85380 4415 bedeviled 2 +85381 4415 by labored writing and slack direction 0 +85382 4415 labored writing and slack direction 1 +85383 4415 writing and slack direction 1 +85384 4415 and slack direction 1 +85385 4415 slack direction 2 +85386 4416 Comes off as a long , laborious whine , the bellyaching of a paranoid and unlikable man . 0 +85387 4416 Comes off as a long 1 +85388 4416 as a long 2 +85389 4416 a long 2 +85390 4416 , laborious whine , the bellyaching of a paranoid and unlikable man . 2 +85391 4416 laborious whine , the bellyaching of a paranoid and unlikable man . 1 +85392 4416 laborious whine , the bellyaching of a paranoid and unlikable man 1 +85393 4416 laborious 1 +85394 4416 whine , the bellyaching of a paranoid and unlikable man 1 +85395 4416 whine , 2 +85396 4416 whine 2 +85397 4416 the bellyaching of a paranoid and unlikable man 1 +85398 4416 the bellyaching 2 +85399 4416 bellyaching 2 +85400 4416 of a paranoid and unlikable man 1 +85401 4416 a paranoid and unlikable man 2 +85402 4416 paranoid and unlikable man 2 +85403 4416 paranoid and unlikable 1 +85404 4416 paranoid and 2 +85405 4417 There has to be a few advantages to never growing old . 2 +85406 4417 has to be a few advantages to never growing old . 3 +85407 4417 has to be a few advantages to never growing old 3 +85408 4417 to be a few advantages to never growing old 2 +85409 4417 be a few advantages to never growing old 2 +85410 4417 a few advantages to never growing old 3 +85411 4417 a few advantages 3 +85412 4417 few advantages 2 +85413 4417 advantages 2 +85414 4417 to never growing old 2 +85415 4417 never growing old 3 +85416 4417 growing old 1 +85417 4418 An often watchable , though goofy and lurid , blast of a costume drama set in the late 15th century . 3 +85418 4418 An often watchable , though goofy and lurid , blast of a costume drama 3 +85419 4418 An often watchable , though goofy and lurid , blast 2 +85420 4418 often watchable , though goofy and lurid , blast 3 +85421 4418 often watchable , though goofy and lurid , 3 +85422 4418 often watchable 3 +85423 4418 , though goofy and lurid , 3 +85424 4418 though goofy and lurid , 2 +85425 4418 goofy and lurid , 2 +85426 4418 goofy and lurid 2 +85427 4418 goofy and 2 +85428 4418 of a costume drama 2 +85429 4418 a costume drama 2 +85430 4418 set in the late 15th century . 2 +85431 4418 set in the late 15th century 2 +85432 4418 in the late 15th century 2 +85433 4418 the late 15th century 2 +85434 4418 late 15th century 2 +85435 4418 15th century 2 +85436 4418 15th 2 +85437 4419 For his first attempt at film noir , Spielberg presents a fascinating but flawed look at the near future . 3 +85438 4419 For his first attempt at film noir 2 +85439 4419 his first attempt at film noir 2 +85440 4419 his first attempt 2 +85441 4419 first attempt 2 +85442 4419 at film noir 2 +85443 4419 , Spielberg presents a fascinating but flawed look at the near future . 2 +85444 4419 Spielberg presents a fascinating but flawed look at the near future . 3 +85445 4419 presents a fascinating but flawed look at the near future . 2 +85446 4419 presents a fascinating but flawed look at the near future 3 +85447 4419 a fascinating but flawed look at the near future 2 +85448 4419 a fascinating but flawed look 2 +85449 4419 fascinating but flawed look 3 +85450 4419 fascinating but flawed 2 +85451 4419 fascinating but 2 +85452 4419 at the near future 2 +85453 4419 the near future 2 +85454 4419 near future 2 +85455 4420 Every moment crackles with tension , and by the end of the flick , you 're on the edge of your seat . 4 +85456 4420 Every moment crackles with tension , and by the end of the flick , you 're on the edge of your seat 4 +85457 4420 Every moment crackles with tension , and 3 +85458 4420 Every moment crackles with tension , 3 +85459 4420 Every moment crackles with tension 4 +85460 4420 Every moment 2 +85461 4420 crackles with tension 2 +85462 4420 with tension 1 +85463 4420 by the end of the flick , you 're on the edge of your seat 4 +85464 4420 by the end of the flick 2 +85465 4420 the end of the flick 2 +85466 4420 of the flick 2 +85467 4420 the flick 2 +85468 4420 , you 're on the edge of your seat 3 +85469 4420 you 're on the edge of your seat 3 +85470 4420 're on the edge of your seat 3 +85471 4420 on the edge of your seat 4 +85472 4420 the edge of your seat 4 +85473 4420 of your seat 2 +85474 4421 K-19 will not go down in the annals of cinema as one of the great submarine stories , but it is an engaging and exciting narrative of Man confronting the Demons of his own fear and paranoia . 3 +85475 4421 K-19 will not go down in the annals of cinema as one of the great submarine stories , but it is an engaging and exciting narrative of Man confronting the Demons of his own fear and paranoia 3 +85476 4421 K-19 will not go down in the annals of cinema as one of the great submarine stories , but 3 +85477 4421 K-19 will not go down in the annals of cinema as one of the great submarine stories , 0 +85478 4421 K-19 will not go down in the annals of cinema as one of the great submarine stories 1 +85479 4421 will not go down in the annals of cinema as one of the great submarine stories 1 +85480 4421 go down in the annals of cinema as one of the great submarine stories 4 +85481 4421 go down in the annals of cinema 3 +85482 4421 in the annals of cinema 3 +85483 4421 the annals of cinema 2 +85484 4421 the annals 2 +85485 4421 annals 2 +85486 4421 as one of the great submarine stories 4 +85487 4421 one of the great submarine stories 4 +85488 4421 of the great submarine stories 2 +85489 4421 the great submarine stories 2 +85490 4421 great submarine stories 4 +85491 4421 submarine stories 2 +85492 4421 it is an engaging and exciting narrative of Man confronting the Demons of his own fear and paranoia 4 +85493 4421 is an engaging and exciting narrative of Man confronting the Demons of his own fear and paranoia 4 +85494 4421 an engaging and exciting narrative of Man confronting the Demons of his own fear and paranoia 4 +85495 4421 an engaging and exciting narrative 4 +85496 4421 engaging and exciting narrative 4 +85497 4421 engaging and exciting 4 +85498 4421 engaging and 3 +85499 4421 of Man confronting the Demons of his own fear and paranoia 2 +85500 4421 Man confronting the Demons of his own fear and paranoia 2 +85501 4421 confronting the Demons of his own fear and paranoia 2 +85502 4421 confronting 2 +85503 4421 the Demons of his own fear and paranoia 1 +85504 4421 the Demons 2 +85505 4421 of his own fear and paranoia 2 +85506 4421 his own fear and paranoia 2 +85507 4421 own fear and paranoia 1 +85508 4421 fear and paranoia 1 +85509 4422 Angel presents events partly from the perspective of Aurelie and Christelle , and infuses the film with the sensibility of a particularly nightmarish fairytale . 3 +85510 4422 presents events partly from the perspective of Aurelie and Christelle , and infuses the film with the sensibility of a particularly nightmarish fairytale . 3 +85511 4422 presents events partly from the perspective of Aurelie and Christelle , and infuses the film with the sensibility of a particularly nightmarish fairytale 3 +85512 4422 presents events partly from the perspective of Aurelie and Christelle , and 2 +85513 4422 presents events partly from the perspective of Aurelie and Christelle , 2 +85514 4422 presents events partly from the perspective of Aurelie and Christelle 2 +85515 4422 presents events 2 +85516 4422 partly from the perspective of Aurelie and Christelle 2 +85517 4422 from the perspective of Aurelie and Christelle 2 +85518 4422 the perspective of Aurelie and Christelle 2 +85519 4422 of Aurelie and Christelle 2 +85520 4422 Aurelie and Christelle 2 +85521 4422 Aurelie and 2 +85522 4422 Aurelie 2 +85523 4422 Christelle 2 +85524 4422 infuses the film with the sensibility of a particularly nightmarish fairytale 2 +85525 4422 infuses the film 3 +85526 4422 with the sensibility of a particularly nightmarish fairytale 2 +85527 4422 the sensibility of a particularly nightmarish fairytale 2 +85528 4422 the sensibility 2 +85529 4422 of a particularly nightmarish fairytale 1 +85530 4422 a particularly nightmarish fairytale 1 +85531 4422 particularly nightmarish fairytale 2 +85532 4422 particularly nightmarish 1 +85533 4422 nightmarish 1 +85534 4422 fairytale 3 +85535 4423 Guys say mean things and shoot a lot of bullets . 1 +85536 4423 say mean things and shoot a lot of bullets . 2 +85537 4423 say mean things and shoot a lot of bullets 0 +85538 4423 mean things and shoot a lot of bullets 2 +85539 4423 mean things and 2 +85540 4423 mean things 1 +85541 4423 shoot a lot of bullets 2 +85542 4423 a lot of bullets 2 +85543 4423 of bullets 2 +85544 4424 Like blended shades of lipstick , these components combine into one terrific story with lots of laughs . 4 +85545 4424 Like blended shades of lipstick 2 +85546 4424 blended shades of lipstick 2 +85547 4424 blended shades 2 +85548 4424 of lipstick 2 +85549 4424 lipstick 2 +85550 4424 , these components combine into one terrific story with lots of laughs . 4 +85551 4424 these components combine into one terrific story with lots of laughs . 3 +85552 4424 these components 2 +85553 4424 components 2 +85554 4424 combine into one terrific story with lots of laughs . 4 +85555 4424 combine into one terrific story with lots of laughs 4 +85556 4424 into one terrific story with lots of laughs 4 +85557 4424 one terrific story with lots of laughs 3 +85558 4424 one terrific story 4 +85559 4424 terrific story 4 +85560 4424 with lots of laughs 4 +85561 4424 of laughs 3 +85562 4425 Solondz may be convinced that he has something significant to say , but he is n't talking a talk that appeals to me . 1 +85563 4425 Solondz may be convinced that he has something significant to say , but he is n't talking a talk that appeals to me 1 +85564 4425 Solondz may be convinced that he has something significant to say , but 1 +85565 4425 Solondz may be convinced that he has something significant to say , 2 +85566 4425 Solondz may be convinced that he has something significant to say 2 +85567 4425 may be convinced that he has something significant to say 1 +85568 4425 be convinced that he has something significant to say 2 +85569 4425 be convinced 2 +85570 4425 that he has something significant to say 2 +85571 4425 he has something significant to say 3 +85572 4425 has something significant to say 3 +85573 4425 something significant to say 2 +85574 4425 significant to say 2 +85575 4425 he is n't talking a talk that appeals to me 1 +85576 4425 is n't talking a talk that appeals to me 1 +85577 4425 talking a talk that appeals to me 3 +85578 4425 a talk that appeals to me 3 +85579 4425 a talk 2 +85580 4425 that appeals to me 3 +85581 4425 appeals to me 3 +85582 4425 appeals 3 +85583 4426 The obligatory break-ups and hook-ups do n't seem to have much emotional impact on the characters . 2 +85584 4426 The obligatory break-ups and hook-ups 2 +85585 4426 The obligatory break-ups and 1 +85586 4426 The obligatory break-ups 2 +85587 4426 obligatory break-ups 2 +85588 4426 break-ups 2 +85589 4426 hook-ups 2 +85590 4426 do n't seem to have much emotional impact on the characters . 1 +85591 4426 do n't seem to have much emotional impact on the characters 1 +85592 4426 seem to have much emotional impact on the characters 3 +85593 4426 to have much emotional impact on the characters 2 +85594 4426 have much emotional impact on the characters 3 +85595 4426 much emotional impact on the characters 2 +85596 4426 much emotional impact 3 +85597 4426 on the characters 2 +85598 4427 It may ... work as a jaunt down memory lane for teens and young adults who grew up on televised Scooby-Doo shows or reruns . 3 +85599 4427 may ... work as a jaunt down memory lane for teens and young adults who grew up on televised Scooby-Doo shows or reruns . 3 +85600 4427 may ... work as a jaunt down memory lane for teens and young adults who grew up on televised Scooby-Doo shows or reruns 2 +85601 4427 may ... 2 +85602 4427 work as a jaunt down memory lane for teens and young adults who grew up on televised Scooby-Doo shows or reruns 3 +85603 4427 as a jaunt down memory lane for teens and young adults who grew up on televised Scooby-Doo shows or reruns 2 +85604 4427 a jaunt down memory lane for teens and young adults who grew up on televised Scooby-Doo shows or reruns 3 +85605 4427 a jaunt down memory lane for teens and 2 +85606 4427 a jaunt down memory lane for teens 3 +85607 4427 a jaunt down memory lane 2 +85608 4427 jaunt down memory lane 2 +85609 4427 jaunt 2 +85610 4427 down memory lane 3 +85611 4427 memory lane 2 +85612 4427 for teens 2 +85613 4427 young adults who grew up on televised Scooby-Doo shows or reruns 2 +85614 4427 young adults 2 +85615 4427 who grew up on televised Scooby-Doo shows or reruns 2 +85616 4427 grew up on televised Scooby-Doo shows or reruns 2 +85617 4427 on televised Scooby-Doo shows or reruns 3 +85618 4427 televised Scooby-Doo shows or reruns 2 +85619 4427 televised 2 +85620 4427 Scooby-Doo shows or reruns 2 +85621 4427 shows or reruns 2 +85622 4427 shows or 2 +85623 4427 reruns 2 +85624 4428 Could as easily have been called ` Under Siege 3 : In Alcatraz ' ... a cinematic corpse that never springs to life . 1 +85625 4428 Could as easily have been called ` Under Siege 3 : In Alcatraz ' ... a cinematic corpse that never springs to life 1 +85626 4428 Could as easily have been called ` Under Siege 3 : 2 +85627 4428 Could as easily have been called ` Under Siege 3 2 +85628 4428 as easily have been called ` Under Siege 3 2 +85629 4428 as easily 2 +85630 4428 have been called ` Under Siege 3 1 +85631 4428 been called ` Under Siege 3 2 +85632 4428 called ` Under Siege 3 2 +85633 4428 ` Under Siege 3 2 +85634 4428 Under Siege 3 2 +85635 4428 Siege 3 2 +85636 4428 In Alcatraz ' ... a cinematic corpse that never springs to life 0 +85637 4428 In Alcatraz ' ... a cinematic corpse 0 +85638 4428 Alcatraz ' ... a cinematic corpse 1 +85639 4428 Alcatraz ' ... 2 +85640 4428 Alcatraz ' 2 +85641 4428 Alcatraz 3 +85642 4428 a cinematic corpse 1 +85643 4428 cinematic corpse 1 +85644 4428 corpse 1 +85645 4428 that never springs to life 1 +85646 4428 never springs to life 1 +85647 4428 springs to life 2 +85648 4428 springs 2 +85649 4429 Whatever one makes of its political edge , this is beautiful filmmaking from one of French cinema 's master craftsmen . 4 +85650 4429 Whatever one makes of its political edge 2 +85651 4429 one makes of its political edge 2 +85652 4429 one makes 3 +85653 4429 of its political edge 2 +85654 4429 its political edge 2 +85655 4429 political edge 2 +85656 4429 , this is beautiful filmmaking from one of French cinema 's master craftsmen . 4 +85657 4429 this is beautiful filmmaking from one of French cinema 's master craftsmen . 3 +85658 4429 is beautiful filmmaking from one of French cinema 's master craftsmen . 4 +85659 4429 is beautiful filmmaking from one of French cinema 's master craftsmen 3 +85660 4429 is beautiful 3 +85661 4429 filmmaking from one of French cinema 's master craftsmen 4 +85662 4429 from one of French cinema 's master craftsmen 3 +85663 4429 one of French cinema 's master craftsmen 4 +85664 4429 of French cinema 's master craftsmen 3 +85665 4429 French cinema 's master craftsmen 3 +85666 4429 French cinema 's 2 +85667 4429 master craftsmen 3 +85668 4429 craftsmen 2 +85669 4430 Much of it is funny , but there are also some startling , surrealistic moments ... 3 +85670 4430 Much of it is funny , but there are also some startling , surrealistic moments 3 +85671 4430 Much of it is funny , but 3 +85672 4430 Much of it is funny , 3 +85673 4430 Much of it is funny 3 +85674 4430 there are also some startling , surrealistic moments 3 +85675 4430 are also some startling , surrealistic moments 3 +85676 4430 are also 3 +85677 4430 some startling , surrealistic moments 3 +85678 4430 startling , surrealistic moments 2 +85679 4430 , surrealistic moments 3 +85680 4430 surrealistic moments 2 +85681 4430 surrealistic 3 +85682 4431 Has all the scenic appeal of a cesspool . 0 +85683 4431 Has all the scenic appeal of a cesspool 0 +85684 4431 all the scenic appeal of a cesspool 0 +85685 4431 all the scenic appeal 2 +85686 4431 the scenic appeal 2 +85687 4431 scenic appeal 2 +85688 4431 of a cesspool 0 +85689 4431 a cesspool 1 +85690 4431 cesspool 0 +85691 4432 works , it 's thanks to Huston 's revelatory performance . 3 +85692 4432 , it 's thanks to Huston 's revelatory performance . 4 +85693 4432 it 's thanks to Huston 's revelatory performance . 3 +85694 4432 's thanks to Huston 's revelatory performance . 3 +85695 4432 's thanks to Huston 's revelatory performance 3 +85696 4432 thanks to Huston 's revelatory performance 3 +85697 4432 to Huston 's revelatory performance 4 +85698 4432 Huston 's revelatory performance 3 +85699 4432 Huston 's 2 +85700 4432 revelatory performance 3 +85701 4433 What 's worse is that Pelosi knows it . 1 +85702 4433 What 's worse 1 +85703 4433 's worse 1 +85704 4433 is that Pelosi knows it . 2 +85705 4433 is that Pelosi knows it 2 +85706 4433 that Pelosi knows it 2 +85707 4433 Pelosi knows it 2 +85708 4433 Pelosi 2 +85709 4433 knows it 2 +85710 4434 Told in scattered fashion , the movie only intermittently lives up to the stories and faces and music of the men who are its subject . 1 +85711 4434 Told in scattered fashion 1 +85712 4434 in scattered fashion 2 +85713 4434 scattered fashion 2 +85714 4434 , the movie only intermittently lives up to the stories and faces and music of the men who are its subject . 2 +85715 4434 the movie only intermittently lives up to the stories and faces and music of the men who are its subject . 2 +85716 4434 the movie only 2 +85717 4434 movie only 2 +85718 4434 intermittently lives up to the stories and faces and music of the men who are its subject . 2 +85719 4434 lives up to the stories and faces and music of the men who are its subject . 4 +85720 4434 lives up to the stories and faces and music of the men who are its subject 3 +85721 4434 lives up 3 +85722 4434 to the stories and faces and music of the men who are its subject 2 +85723 4434 the stories and faces and music of the men who are its subject 3 +85724 4434 the stories and faces and 2 +85725 4434 the stories and faces 2 +85726 4434 stories and faces 2 +85727 4434 stories and 2 +85728 4434 faces 2 +85729 4434 music of the men who are its subject 2 +85730 4434 music of the men 2 +85731 4434 of the men 2 +85732 4434 the men 2 +85733 4434 who are its subject 2 +85734 4434 are its subject 2 +85735 4435 The Mothman Prophecies , which is mostly a bore , seems to exist only for its climactic setpiece . 1 +85736 4435 The Mothman Prophecies , which is mostly a bore , 1 +85737 4435 The Mothman Prophecies , which is mostly a bore 1 +85738 4435 The Mothman Prophecies , 2 +85739 4435 which is mostly a bore 1 +85740 4435 is mostly a bore 0 +85741 4435 a bore 1 +85742 4435 seems to exist only for its climactic setpiece . 2 +85743 4435 seems to exist only for its climactic setpiece 1 +85744 4435 to exist only for its climactic setpiece 2 +85745 4435 exist only for its climactic setpiece 1 +85746 4435 exist only 2 +85747 4435 for its climactic setpiece 2 +85748 4435 its climactic setpiece 2 +85749 4435 climactic setpiece 3 +85750 4435 setpiece 2 +85751 4436 The action sequences are fun and reminiscent of combat scenes from the Star Wars series . 3 +85752 4436 are fun and reminiscent of combat scenes from the Star Wars series . 3 +85753 4436 are fun and reminiscent of combat scenes from the Star Wars series 3 +85754 4436 are fun and reminiscent of combat scenes 3 +85755 4436 fun and reminiscent of combat scenes 2 +85756 4436 fun and reminiscent 3 +85757 4436 of combat scenes 2 +85758 4436 combat scenes 2 +85759 4436 from the Star Wars series 2 +85760 4436 the Star Wars series 2 +85761 4436 Star Wars series 2 +85762 4436 Wars series 2 +85763 4437 An easy watch , except for the annoying demeanour of its lead character . 2 +85764 4437 An easy watch 3 +85765 4437 easy watch 3 +85766 4437 , except for the annoying demeanour of its lead character . 1 +85767 4437 except for the annoying demeanour of its lead character . 1 +85768 4437 except for the annoying demeanour of its lead character 1 +85769 4437 for the annoying demeanour of its lead character 1 +85770 4437 the annoying demeanour of its lead character 1 +85771 4437 the annoying demeanour 1 +85772 4437 annoying demeanour 0 +85773 4437 demeanour 2 +85774 4437 of its lead character 2 +85775 4437 its lead character 2 +85776 4437 lead character 2 +85777 4438 A bittersweet drama about the limbo of grief and how truth-telling can open the door to liberation . 3 +85778 4438 A bittersweet drama about the limbo of grief and how truth-telling 3 +85779 4438 A bittersweet drama 3 +85780 4438 bittersweet drama 3 +85781 4438 about the limbo of grief and how truth-telling 2 +85782 4438 the limbo of grief and how truth-telling 2 +85783 4438 the limbo 2 +85784 4438 limbo 2 +85785 4438 of grief and how truth-telling 2 +85786 4438 grief and how truth-telling 2 +85787 4438 how truth-telling 2 +85788 4438 truth-telling 3 +85789 4438 can open the door to liberation . 3 +85790 4438 can open the door to liberation 2 +85791 4438 open the door to liberation 2 +85792 4438 open the door 2 +85793 4438 to liberation 2 +85794 4439 Ferrara 's strongest and most touching movie of recent years . 4 +85795 4439 's strongest and most touching movie of recent years . 4 +85796 4439 's strongest and most touching movie of recent years 4 +85797 4439 strongest and most touching movie of recent years 4 +85798 4439 strongest and 3 +85799 4439 most touching movie of recent years 4 +85800 4439 most touching movie 3 +85801 4439 touching movie 3 +85802 4440 Crudup 's screen presence is the one thing that holds interest in the midst of a mushy , existential exploration of why men leave their families . 3 +85803 4440 Crudup 's screen presence 3 +85804 4440 is the one thing that holds interest in the midst of a mushy , existential exploration of why men leave their families . 2 +85805 4440 is the one thing that holds interest in the midst of a mushy , existential exploration of why men leave their families 3 +85806 4440 the one thing that holds interest in the midst of a mushy , existential exploration of why men leave their families 1 +85807 4440 that holds interest in the midst of a mushy , existential exploration of why men leave their families 3 +85808 4440 holds interest in the midst of a mushy , existential exploration of why men leave their families 3 +85809 4440 holds interest 3 +85810 4440 in the midst of a mushy , existential exploration of why men leave their families 2 +85811 4440 the midst of a mushy , existential exploration of why men leave their families 2 +85812 4440 the midst 2 +85813 4440 of a mushy , existential exploration of why men leave their families 1 +85814 4440 a mushy , existential exploration of why men leave their families 1 +85815 4440 a mushy , existential exploration 2 +85816 4440 mushy , existential exploration 1 +85817 4440 , existential exploration 2 +85818 4440 existential exploration 3 +85819 4440 of why men leave their families 2 +85820 4440 why men leave their families 2 +85821 4440 men leave their families 2 +85822 4440 leave their families 1 +85823 4440 their families 2 +85824 4441 Hardly a film that comes along every day . 3 +85825 4441 a film that comes along every day . 1 +85826 4441 film that comes along every day . 2 +85827 4441 film that comes along every day 2 +85828 4441 that comes along every day 2 +85829 4441 comes along every day 3 +85830 4441 along every day 2 +85831 4442 By the end of the movie , you 're definitely convinced that these women are spectacular . 3 +85832 4442 By the end of the movie 2 +85833 4442 , you 're definitely convinced that these women are spectacular . 3 +85834 4442 you 're definitely convinced that these women are spectacular . 4 +85835 4442 're definitely convinced that these women are spectacular . 3 +85836 4442 're definitely convinced that these women are spectacular 3 +85837 4442 're definitely 2 +85838 4442 convinced that these women are spectacular 3 +85839 4442 that these women are spectacular 4 +85840 4442 these women are spectacular 4 +85841 4442 are spectacular 3 +85842 4443 Your appreciation of it will depend on what experiences you bring to it and what associations you choose to make . 2 +85843 4443 Your appreciation of it 3 +85844 4443 Your appreciation 2 +85845 4443 will depend on what experiences you bring to it and what associations you choose to make . 2 +85846 4443 will depend on what experiences you bring to it and what associations you choose to make 2 +85847 4443 depend on what experiences you bring to it and what associations you choose to make 2 +85848 4443 depend 2 +85849 4443 on what experiences you bring to it and what associations you choose to make 2 +85850 4443 what experiences you bring to it and what associations you choose to make 2 +85851 4443 what experiences you bring to it and 2 +85852 4443 what experiences you bring to it 2 +85853 4443 experiences you bring to it 3 +85854 4443 you bring to it 2 +85855 4443 bring to it 2 +85856 4443 what associations you choose to make 2 +85857 4443 associations you choose to make 2 +85858 4443 associations 2 +85859 4443 you choose to make 2 +85860 4443 choose to make 2 +85861 4444 Here , common sense flies out the window , along with the hail of bullets , none of which ever seem to hit Sascha . 1 +85862 4444 , common sense flies out the window , along with the hail of bullets , none of which ever seem to hit Sascha . 1 +85863 4444 common sense flies out the window , along with the hail of bullets , none of which ever seem to hit Sascha . 0 +85864 4444 common sense 3 +85865 4444 flies out the window , along with the hail of bullets , none of which ever seem to hit Sascha . 2 +85866 4444 flies out the window , along with the hail of bullets , none of which ever seem to hit Sascha 2 +85867 4444 flies 2 +85868 4444 out the window , along with the hail of bullets , none of which ever seem to hit Sascha 2 +85869 4444 the window , along with the hail of bullets , none of which ever seem to hit Sascha 2 +85870 4444 the window , along with the hail of bullets , none of which ever seem to hit 2 +85871 4444 the window , 2 +85872 4444 the window 2 +85873 4444 along with the hail of bullets , none of which ever seem to hit 2 +85874 4444 with the hail of bullets , none of which ever seem to hit 1 +85875 4444 the hail of bullets , none of which ever seem to hit 1 +85876 4444 the hail 2 +85877 4444 hail 2 +85878 4444 of bullets , none of which ever seem to hit 2 +85879 4444 bullets , none of which ever seem to hit 2 +85880 4444 bullets , 2 +85881 4444 none of which ever seem to hit 1 +85882 4444 none of which 2 +85883 4444 ever seem to hit 2 +85884 4444 seem to hit 3 +85885 4444 to hit 2 +85886 4444 Sascha 2 +85887 4445 To get at the root psychology of this film would require many sessions on the couch of Dr. Freud . 1 +85888 4445 To get at the root psychology of this film 2 +85889 4445 get at the root psychology of this film 2 +85890 4445 at the root psychology of this film 2 +85891 4445 the root psychology of this film 2 +85892 4445 the root psychology 2 +85893 4445 root psychology 2 +85894 4445 would require many sessions on the couch of Dr. Freud . 1 +85895 4445 would require many sessions on the couch of Dr. Freud 1 +85896 4445 require many sessions on the couch of Dr. Freud 2 +85897 4445 require many sessions 2 +85898 4445 many sessions 2 +85899 4445 on the couch of Dr. Freud 2 +85900 4445 the couch of Dr. Freud 2 +85901 4445 the couch 2 +85902 4445 couch 2 +85903 4445 of Dr. Freud 2 +85904 4445 Dr. Freud 2 +85905 4445 Dr. 2 +85906 4446 Not a film for the faint of heart or conservative of spirit , but for the rest of us -- especially San Francisco lovers -- it 's a spirited film and a must-see . 3 +85907 4446 Not a film for the faint of heart or conservative of spirit , but for the rest of us -- especially San Francisco lovers -- it 's a spirited film and a must-see 4 +85908 4446 Not a film for the faint of heart or conservative of spirit , but for the rest of us -- especially San Francisco lovers -- 3 +85909 4446 Not a film for the faint of heart or conservative of spirit , but for the rest of us -- especially San Francisco lovers 4 +85910 4446 Not a film 2 +85911 4446 for the faint of heart or conservative of spirit , but for the rest of us -- especially San Francisco lovers 3 +85912 4446 the faint of heart or conservative of spirit , but for the rest of us -- especially San Francisco lovers 2 +85913 4446 faint of heart or conservative of spirit , but for the rest of us -- especially San Francisco lovers 3 +85914 4446 faint of heart or conservative of spirit , but for the rest of us -- especially San Francisco 2 +85915 4446 faint of heart or conservative of spirit 1 +85916 4446 faint 2 +85917 4446 of heart or conservative of spirit 3 +85918 4446 heart or conservative of spirit 2 +85919 4446 heart or conservative 3 +85920 4446 heart or 2 +85921 4446 of spirit 3 +85922 4446 , but for the rest of us -- especially San Francisco 2 +85923 4446 for the rest of us -- especially San Francisco 2 +85924 4446 the rest of us -- especially San Francisco 2 +85925 4446 of us -- especially San Francisco 2 +85926 4446 us -- especially San Francisco 2 +85927 4446 us -- especially 2 +85928 4446 us -- 2 +85929 4446 San Francisco 2 +85930 4446 San 2 +85931 4446 Francisco 2 +85932 4446 it 's a spirited film and a must-see 4 +85933 4446 's a spirited film and a must-see 3 +85934 4446 a spirited film and a must-see 4 +85935 4446 a spirited film and 3 +85936 4446 a spirited film 3 +85937 4446 spirited film 3 +85938 4446 spirited 4 +85939 4446 a must-see 4 +85940 4446 must-see 4 +85941 4447 It 's hard to quibble with a flick boasting this many genuine cackles , but Notorious C.H.O. still feels like a promising work-in-progress . 3 +85942 4447 It 's hard to quibble with a flick boasting this many genuine cackles , but Notorious C.H.O. still feels like a promising work-in-progress 3 +85943 4447 It 's hard to quibble with a flick boasting this many genuine cackles , but 3 +85944 4447 It 's hard to quibble with a flick boasting this many genuine cackles , 3 +85945 4447 It 's hard to quibble with a flick boasting this many genuine cackles 4 +85946 4447 's hard to quibble with a flick boasting this many genuine cackles 3 +85947 4447 hard to quibble with a flick boasting this many genuine cackles 3 +85948 4447 to quibble with a flick boasting this many genuine cackles 3 +85949 4447 quibble with a flick boasting this many genuine cackles 3 +85950 4447 quibble 2 +85951 4447 with a flick boasting this many genuine cackles 3 +85952 4447 a flick boasting this many genuine cackles 3 +85953 4447 boasting this many genuine cackles 4 +85954 4447 this many genuine cackles 2 +85955 4447 many genuine cackles 4 +85956 4447 genuine cackles 2 +85957 4447 cackles 2 +85958 4447 Notorious C.H.O. still feels like a promising work-in-progress 3 +85959 4447 still feels like a promising work-in-progress 2 +85960 4447 feels like a promising work-in-progress 2 +85961 4447 like a promising work-in-progress 3 +85962 4447 a promising work-in-progress 3 +85963 4447 promising work-in-progress 3 +85964 4447 work-in-progress 2 +85965 4448 One-sided documentary offers simplistic explanations to a very complex situation . 1 +85966 4448 One-sided documentary 1 +85967 4448 offers simplistic explanations to a very complex situation . 2 +85968 4448 offers simplistic explanations to a very complex situation 2 +85969 4448 offers simplistic explanations 2 +85970 4448 simplistic explanations 2 +85971 4448 explanations 2 +85972 4448 to a very complex situation 2 +85973 4448 a very complex situation 3 +85974 4448 very complex situation 2 +85975 4448 very complex 3 +85976 4449 All in all , an interesting look at the life of the campaign-trail press , especially ones that do n't really care for the candidate they 're forced to follow . 3 +85977 4449 All in all , an interesting look at the life of the campaign-trail press , especially ones that do n't really care for the candidate 2 +85978 4449 in all , an interesting look at the life of the campaign-trail press , especially ones that do n't really care for the candidate 3 +85979 4449 all , an interesting look at the life of the campaign-trail press , especially ones that do n't really care for the candidate 3 +85980 4449 an interesting look at the life of the campaign-trail press , especially ones that do n't really care for the candidate 4 +85981 4449 an interesting look at the life of the campaign-trail press , especially ones 3 +85982 4449 at the life of the campaign-trail press , especially ones 2 +85983 4449 the life of the campaign-trail press , especially ones 2 +85984 4449 of the campaign-trail press , especially ones 2 +85985 4449 the campaign-trail press , especially ones 2 +85986 4449 the campaign-trail press , especially 2 +85987 4449 the campaign-trail press , 2 +85988 4449 the campaign-trail press 3 +85989 4449 campaign-trail press 2 +85990 4449 campaign-trail 2 +85991 4449 that do n't really care for the candidate 1 +85992 4449 do n't really care for the candidate 1 +85993 4449 care for the candidate 2 +85994 4449 for the candidate 2 +85995 4449 the candidate 2 +85996 4449 candidate 2 +85997 4449 they 're forced to follow . 2 +85998 4449 're forced to follow . 2 +85999 4449 're forced to follow 2 +86000 4449 forced to follow 1 +86001 4449 to follow 2 +86002 4450 Hugh Grant 's act is so consuming that sometimes it 's difficult to tell who the other actors in the movie are . 3 +86003 4450 Hugh Grant 's act 2 +86004 4450 Hugh Grant 's 2 +86005 4450 is so consuming that sometimes it 's difficult to tell who the other actors in the movie are . 2 +86006 4450 is so consuming that sometimes it 's difficult to tell who the other actors in the movie are 2 +86007 4450 consuming that sometimes it 's difficult to tell who the other actors in the movie are 2 +86008 4450 that sometimes it 's difficult to tell who the other actors in the movie are 1 +86009 4450 sometimes it 's difficult to tell who the other actors in the movie are 1 +86010 4450 it 's difficult to tell who the other actors in the movie are 2 +86011 4450 's difficult to tell who the other actors in the movie are 1 +86012 4450 difficult to tell who the other actors in the movie are 1 +86013 4450 to tell who the other actors in the movie are 2 +86014 4450 tell who the other actors in the movie are 2 +86015 4450 who the other actors in the movie are 2 +86016 4450 the other actors in the movie are 2 +86017 4450 the other actors in the movie 2 +86018 4450 the other actors 2 +86019 4450 other actors 2 +86020 4451 Although Frailty fits into a classic genre , in its script and execution it is a remarkably original work . 3 +86021 4451 Although Frailty fits into a classic genre , in its script and execution 2 +86022 4451 Frailty fits into a classic genre , in its script and execution 3 +86023 4451 fits into a classic genre , in its script and execution 3 +86024 4451 fits into a classic genre , 3 +86025 4451 fits into a classic genre 3 +86026 4451 into a classic genre 3 +86027 4451 a classic genre 3 +86028 4451 classic genre 2 +86029 4451 in its script and execution 2 +86030 4451 its script and execution 3 +86031 4451 script and execution 2 +86032 4451 script and 2 +86033 4451 it is a remarkably original work . 3 +86034 4451 is a remarkably original work . 4 +86035 4451 is a remarkably original work 3 +86036 4451 a remarkably original work 4 +86037 4451 remarkably original work 3 +86038 4451 remarkably original 4 +86039 4452 Brisk hack job . 0 +86040 4452 Brisk hack job 1 +86041 4452 Brisk hack 1 +86042 4453 Malcolm McDowell is cool . 3 +86043 4453 is cool . 3 +86044 4453 is cool 2 +86045 4454 Your taste for Jonah - A Veggie Tales Movie may well depend on your threshold for pop manifestations of the Holy Spirit . 2 +86046 4454 Your taste for Jonah 2 +86047 4454 Your taste 2 +86048 4454 for Jonah 2 +86049 4454 - A Veggie Tales Movie may well depend on your threshold for pop manifestations of the Holy Spirit . 1 +86050 4454 A Veggie Tales Movie may well depend on your threshold for pop manifestations of the Holy Spirit . 1 +86051 4454 A Veggie Tales Movie may well depend on your threshold for pop manifestations of the Holy Spirit 2 +86052 4454 A Veggie Tales Movie 2 +86053 4454 Veggie Tales Movie 3 +86054 4454 Veggie 2 +86055 4454 Tales Movie 2 +86056 4454 may well depend on your threshold for pop manifestations of the Holy Spirit 2 +86057 4454 depend on your threshold for pop manifestations of the Holy Spirit 1 +86058 4454 on your threshold for pop manifestations of the Holy Spirit 2 +86059 4454 your threshold for pop manifestations of the Holy Spirit 2 +86060 4454 your threshold 2 +86061 4454 for pop manifestations of the Holy Spirit 2 +86062 4454 pop manifestations of the Holy Spirit 3 +86063 4454 pop manifestations 2 +86064 4454 manifestations 2 +86065 4454 of the Holy Spirit 2 +86066 4454 the Holy Spirit 2 +86067 4454 Holy Spirit 2 +86068 4455 An exhilarating experience . 4 +86069 4456 both overstuffed and undernourished ... The film ca n't be called a solid success , although there 's plenty of evidence here to indicate Clooney might have better luck next time . 2 +86070 4456 both overstuffed and undernourished ... The film ca n't be called a solid success , although there 's plenty of evidence here to indicate Clooney might have better luck next time 0 +86071 4456 both overstuffed and undernourished ... 0 +86072 4456 both overstuffed and undernourished 1 +86073 4456 overstuffed and undernourished 1 +86074 4456 overstuffed and 1 +86075 4456 overstuffed 1 +86076 4456 The film ca n't be called a solid success , although there 's plenty of evidence here to indicate Clooney might have better luck next time 1 +86077 4456 ca n't be called a solid success , although there 's plenty of evidence here to indicate Clooney might have better luck next time 2 +86078 4456 be called a solid success , although there 's plenty of evidence here to indicate Clooney might have better luck next time 3 +86079 4456 called a solid success , although there 's plenty of evidence here to indicate Clooney might have better luck next time 2 +86080 4456 called a solid success , 4 +86081 4456 called a solid success 3 +86082 4456 a solid success 4 +86083 4456 solid success 4 +86084 4456 although there 's plenty of evidence here to indicate Clooney might have better luck next time 2 +86085 4456 there 's plenty of evidence here to indicate Clooney might have better luck next time 2 +86086 4456 's plenty of evidence here to indicate Clooney might have better luck next time 1 +86087 4456 's plenty of evidence here 2 +86088 4456 's plenty of evidence 3 +86089 4456 plenty of evidence 2 +86090 4456 of evidence 2 +86091 4456 evidence 2 +86092 4456 to indicate Clooney might have better luck next time 1 +86093 4456 indicate Clooney might have better luck next time 2 +86094 4456 indicate 2 +86095 4456 Clooney might have better luck next time 1 +86096 4456 might have better luck next time 2 +86097 4456 have better luck next time 1 +86098 4456 have better luck 2 +86099 4456 better luck 1 +86100 4456 next time 2 +86101 4457 ... Myers has turned his franchise into the movie version of an adolescent dirty-joke book done up in post-Tarantino pop-culture riffs ... 2 +86102 4457 Myers has turned his franchise into the movie version of an adolescent dirty-joke book done up in post-Tarantino pop-culture riffs ... 2 +86103 4457 has turned his franchise into the movie version of an adolescent dirty-joke book done up in post-Tarantino pop-culture riffs ... 2 +86104 4457 has turned his franchise into the movie version of an adolescent dirty-joke book done up in post-Tarantino pop-culture riffs 1 +86105 4457 turned his franchise into the movie version of an adolescent dirty-joke book done up in post-Tarantino pop-culture riffs 2 +86106 4457 turned his franchise 2 +86107 4457 his franchise 2 +86108 4457 into the movie version of an adolescent dirty-joke book done up in post-Tarantino pop-culture riffs 2 +86109 4457 the movie version of an adolescent dirty-joke book done up in post-Tarantino pop-culture riffs 1 +86110 4457 the movie version 2 +86111 4457 of an adolescent dirty-joke book done up in post-Tarantino pop-culture riffs 1 +86112 4457 an adolescent dirty-joke book done up in post-Tarantino pop-culture riffs 2 +86113 4457 an adolescent dirty-joke book 2 +86114 4457 adolescent dirty-joke book 1 +86115 4457 dirty-joke book 2 +86116 4457 dirty-joke 2 +86117 4457 done up in post-Tarantino pop-culture riffs 2 +86118 4457 done up 2 +86119 4457 in post-Tarantino pop-culture riffs 2 +86120 4457 post-Tarantino pop-culture riffs 2 +86121 4457 post-Tarantino 3 +86122 4457 pop-culture riffs 2 +86123 4457 pop-culture 3 +86124 4458 Especially compared with the television series that inspired the movie . 2 +86125 4458 Especially compared with the television series that inspired the movie 2 +86126 4458 compared with the television series that inspired the movie 2 +86127 4458 with the television series that inspired the movie 2 +86128 4458 the television series that inspired the movie 3 +86129 4458 the television series 2 +86130 4458 that inspired the movie 2 +86131 4458 inspired the movie 2 +86132 4459 More of the same from Taiwanese auteur Tsai Ming-liang , which is good news to anyone who 's fallen under the sweet , melancholy spell of this unique director 's previous films . 3 +86133 4459 More of the same from Taiwanese auteur Tsai Ming-liang , which is good news to anyone who 's fallen under the sweet , melancholy spell of this unique director 's previous films 4 +86134 4459 of the same from Taiwanese auteur Tsai Ming-liang , which is good news to anyone who 's fallen under the sweet , melancholy spell of this unique director 's previous films 4 +86135 4459 the same from Taiwanese auteur Tsai Ming-liang , which is good news to anyone who 's fallen under the sweet , melancholy spell of this unique director 's previous films 3 +86136 4459 the same from Taiwanese auteur Tsai Ming-liang , 2 +86137 4459 the same from Taiwanese auteur Tsai Ming-liang 2 +86138 4459 from Taiwanese auteur Tsai Ming-liang 2 +86139 4459 Taiwanese auteur Tsai Ming-liang 2 +86140 4459 Taiwanese 2 +86141 4459 auteur Tsai Ming-liang 2 +86142 4459 Tsai Ming-liang 2 +86143 4459 Ming-liang 2 +86144 4459 which is good news to anyone who 's fallen under the sweet , melancholy spell of this unique director 's previous films 4 +86145 4459 is good news to anyone who 's fallen under the sweet , melancholy spell of this unique director 's previous films 3 +86146 4459 good news to anyone who 's fallen under the sweet , melancholy spell of this unique director 's previous films 4 +86147 4459 good news to anyone 3 +86148 4459 good news 3 +86149 4459 to anyone 2 +86150 4459 who 's fallen under the sweet , melancholy spell of this unique director 's previous films 3 +86151 4459 's fallen under the sweet , melancholy spell of this unique director 's previous films 3 +86152 4459 fallen under the sweet , melancholy spell of this unique director 's previous films 3 +86153 4459 under the sweet , melancholy spell of this unique director 's previous films 3 +86154 4459 the sweet , melancholy spell of this unique director 's previous films 2 +86155 4459 the sweet , melancholy spell 3 +86156 4459 sweet , melancholy spell 3 +86157 4459 , melancholy spell 2 +86158 4459 melancholy spell 2 +86159 4459 of this unique director 's previous films 3 +86160 4459 this unique director 's previous films 3 +86161 4459 this unique director 's 2 +86162 4459 unique director 's 3 +86163 4459 previous films 2 +86164 4460 Worth seeing just for Weaver and LaPaglia . 3 +86165 4460 Worth seeing just for Weaver and LaPaglia 3 +86166 4460 seeing just for Weaver and LaPaglia 2 +86167 4460 seeing just 2 +86168 4460 for Weaver and LaPaglia 2 +86169 4460 Weaver and LaPaglia 2 +86170 4460 Weaver and 2 +86171 4460 Weaver 2 +86172 4460 LaPaglia 2 +86173 4461 This 90-minute dud could pass for Mike Tyson 's E ! 0 +86174 4461 This 90-minute dud 0 +86175 4461 90-minute dud 1 +86176 4461 could pass for Mike Tyson 's E ! 2 +86177 4461 could pass for Mike Tyson 's E 2 +86178 4461 pass for Mike Tyson 's E 2 +86179 4461 for Mike Tyson 's E 2 +86180 4461 Mike Tyson 's E 2 +86181 4461 Mike Tyson 's 2 +86182 4461 Tyson 's 2 +86183 4461 Tyson 2 +86184 4462 But mainstream audiences will find little of interest in this film , which is often preachy and poorly acted . 1 +86185 4462 mainstream audiences will find little of interest in this film , which is often preachy and poorly acted . 0 +86186 4462 will find little of interest in this film , which is often preachy and poorly acted . 1 +86187 4462 will find little of interest in this film , which is often preachy and poorly acted 0 +86188 4462 find little of interest in this film , which is often preachy and poorly acted 1 +86189 4462 find little of interest 1 +86190 4462 little of interest 2 +86191 4462 in this film , which is often preachy and poorly acted 1 +86192 4462 this film , which is often preachy and poorly acted 1 +86193 4462 which is often preachy and poorly acted 1 +86194 4462 is often preachy and poorly acted 0 +86195 4462 is often preachy and poorly 2 +86196 4462 is often preachy and 0 +86197 4462 is often preachy 1 +86198 4463 With miscast leads , banal dialogue and an absurdly overblown climax , Killing Me Softly belongs firmly in the so-bad-it 's - good camp . 2 +86199 4463 With miscast leads , banal dialogue and an absurdly overblown climax 0 +86200 4463 miscast leads , banal dialogue and an absurdly overblown climax 0 +86201 4463 miscast leads , banal dialogue and 0 +86202 4463 miscast leads , banal dialogue 0 +86203 4463 miscast leads , 1 +86204 4463 miscast leads 1 +86205 4463 miscast 2 +86206 4463 an absurdly overblown climax 0 +86207 4463 absurdly overblown climax 1 +86208 4463 overblown climax 1 +86209 4463 , Killing Me Softly belongs firmly in the so-bad-it 's - good camp . 2 +86210 4463 Killing Me Softly belongs firmly in the so-bad-it 's - good camp . 2 +86211 4463 Killing Me 2 +86212 4463 Softly belongs firmly in the so-bad-it 's - good camp . 2 +86213 4463 Softly 2 +86214 4463 belongs firmly in the so-bad-it 's - good camp . 3 +86215 4463 belongs firmly in the so-bad-it 's - good camp 2 +86216 4463 belongs firmly 2 +86217 4463 in the so-bad-it 's - good camp 2 +86218 4463 the so-bad-it 's - good camp 3 +86219 4463 the so-bad-it 's 1 +86220 4463 so-bad-it 's 1 +86221 4463 so-bad-it 0 +86222 4463 - good camp 3 +86223 4463 good camp 3 +86224 4464 An encouraging effort from McCrudden 3 +86225 4464 An encouraging effort 3 +86226 4464 encouraging effort 3 +86227 4464 from McCrudden 2 +86228 4464 McCrudden 2 +86229 4465 Watching these eccentrics is both inspiring and pure joy . 4 +86230 4465 Watching these eccentrics 2 +86231 4465 these eccentrics 2 +86232 4465 eccentrics 1 +86233 4465 is both inspiring and pure joy . 4 +86234 4465 is both inspiring and pure joy 3 +86235 4465 both inspiring and pure joy 3 +86236 4465 inspiring and pure joy 3 +86237 4465 inspiring and pure 3 +86238 4465 inspiring and 4 +86239 4466 Suffers from a lack of clarity and audacity that a subject as monstrous and pathetic as Dahmer demands . 0 +86240 4466 Suffers from a lack of clarity and audacity that a subject as monstrous and pathetic as Dahmer 0 +86241 4466 from a lack of clarity and audacity that a subject as monstrous and pathetic as Dahmer 0 +86242 4466 a lack of clarity and audacity that a subject as monstrous and pathetic as Dahmer 1 +86243 4466 a lack of clarity and audacity 1 +86244 4466 a lack 1 +86245 4466 of clarity and audacity 2 +86246 4466 clarity and audacity 3 +86247 4466 clarity and 3 +86248 4466 that a subject as monstrous and pathetic as Dahmer 1 +86249 4466 a subject as monstrous and pathetic as Dahmer 2 +86250 4466 subject as monstrous and pathetic as Dahmer 1 +86251 4466 subject as monstrous and 2 +86252 4466 subject as monstrous 1 +86253 4466 as monstrous 1 +86254 4466 pathetic as Dahmer 1 +86255 4466 as Dahmer 1 +86256 4466 demands . 2 +86257 4467 It has the air of a surprisingly juvenile lark , a pop-influenced prank whose charms are immediately apparent and wear thin with repetition . 1 +86258 4467 has the air of a surprisingly juvenile lark , a pop-influenced prank whose charms are immediately apparent and wear thin with repetition . 1 +86259 4467 has the air of a surprisingly juvenile lark , a pop-influenced prank whose charms are immediately apparent and wear thin with repetition 1 +86260 4467 has the air of a surprisingly juvenile lark , a pop-influenced prank whose charms are immediately apparent and 2 +86261 4467 has the air of a surprisingly juvenile lark , a pop-influenced prank whose charms are immediately apparent 2 +86262 4467 the air of a surprisingly juvenile lark , a pop-influenced prank whose charms are immediately apparent 2 +86263 4467 of a surprisingly juvenile lark , a pop-influenced prank whose charms are immediately apparent 3 +86264 4467 a surprisingly juvenile lark , a pop-influenced prank whose charms are immediately apparent 2 +86265 4467 a surprisingly juvenile lark , 1 +86266 4467 a surprisingly juvenile lark 2 +86267 4467 surprisingly juvenile lark 2 +86268 4467 surprisingly juvenile 1 +86269 4467 a pop-influenced prank whose charms are immediately apparent 3 +86270 4467 a pop-influenced prank 2 +86271 4467 pop-influenced prank 2 +86272 4467 pop-influenced 2 +86273 4467 prank 2 +86274 4467 whose charms are immediately apparent 4 +86275 4467 charms are immediately apparent 3 +86276 4467 are immediately apparent 2 +86277 4467 immediately apparent 2 +86278 4467 wear thin with repetition 1 +86279 4467 thin with repetition 2 +86280 4467 with repetition 2 +86281 4468 Transcends its agenda to deliver awe-inspiring , at times sublime , visuals and offer a fascinating glimpse into the subculture of extreme athletes whose derring-do puts the X into the games . 4 +86282 4468 Transcends its agenda to deliver awe-inspiring , at times sublime , visuals and offer a fascinating glimpse into the subculture of extreme athletes whose derring-do puts the X into the games 4 +86283 4468 Transcends its agenda to deliver awe-inspiring , at times sublime , visuals and 4 +86284 4468 Transcends its agenda to deliver awe-inspiring , at times sublime , visuals 4 +86285 4468 its agenda to deliver awe-inspiring , at times sublime , visuals 4 +86286 4468 agenda to deliver awe-inspiring , at times sublime , visuals 3 +86287 4468 agenda 2 +86288 4468 to deliver awe-inspiring , at times sublime , visuals 3 +86289 4468 deliver awe-inspiring , at times sublime , visuals 4 +86290 4468 awe-inspiring , at times sublime , visuals 4 +86291 4468 , at times sublime , visuals 3 +86292 4468 , at times sublime , 3 +86293 4468 at times sublime , 2 +86294 4468 at times sublime 2 +86295 4468 times sublime 2 +86296 4468 sublime 3 +86297 4468 offer a fascinating glimpse into the subculture of extreme athletes whose derring-do puts the X into the games 4 +86298 4468 offer a fascinating glimpse 3 +86299 4468 a fascinating glimpse 3 +86300 4468 fascinating glimpse 3 +86301 4468 into the subculture of extreme athletes whose derring-do puts the X into the games 3 +86302 4468 the subculture of extreme athletes whose derring-do puts the X into the games 3 +86303 4468 the subculture of extreme athletes 2 +86304 4468 the subculture 2 +86305 4468 of extreme athletes 2 +86306 4468 extreme athletes 2 +86307 4468 athletes 2 +86308 4468 whose derring-do puts the X into the games 3 +86309 4468 whose derring-do 2 +86310 4468 derring-do 3 +86311 4468 puts the X into the games 2 +86312 4468 puts the X 2 +86313 4468 the X 2 +86314 4468 into the games 2 +86315 4468 the games 2 +86316 4469 The people in Jessica are so recognizable and true that , as in real life , we 're never sure how things will work out . 3 +86317 4469 The people in Jessica 2 +86318 4469 in Jessica 2 +86319 4469 are so recognizable and true that , as in real life , we 're never sure how things will work out . 2 +86320 4469 are so recognizable and true that , as in real life , we 're never sure how things will work out 2 +86321 4469 so recognizable and true that , as in real life , we 're never sure how things will work out 3 +86322 4469 recognizable and true that , as in real life , we 're never sure how things will work out 3 +86323 4469 recognizable and true 3 +86324 4469 recognizable and 2 +86325 4469 that , as in real life , we 're never sure how things will work out 2 +86326 4469 , as in real life , we 're never sure how things will work out 2 +86327 4469 , as in real life , 2 +86328 4469 as in real life , 2 +86329 4469 as in real life 2 +86330 4469 in real life 2 +86331 4469 we 're never sure how things will work out 2 +86332 4469 're never sure how things will work out 2 +86333 4469 sure how things will work out 2 +86334 4469 how things will work out 2 +86335 4469 things will work out 2 +86336 4469 will work out 2 +86337 4470 Thanks to Ice Cube , Benjamins feels an awful lot like Friday in Miami . 2 +86338 4470 Thanks to Ice Cube , Benjamins 2 +86339 4470 to Ice Cube , Benjamins 2 +86340 4470 Ice Cube , Benjamins 2 +86341 4470 Cube , Benjamins 2 +86342 4470 , Benjamins 2 +86343 4470 feels an awful lot like Friday in Miami . 2 +86344 4470 feels an awful lot like Friday in Miami 2 +86345 4470 feels an awful lot 2 +86346 4470 an awful lot 2 +86347 4470 awful lot 2 +86348 4470 like Friday in Miami 2 +86349 4470 Friday in Miami 2 +86350 4470 in Miami 2 +86351 4471 The work of a filmmaker who has secrets buried at the heart of his story and knows how to take time revealing them . 3 +86352 4471 The work of a filmmaker who has secrets buried at the heart of his story and knows how to take time revealing them 4 +86353 4471 of a filmmaker who has secrets buried at the heart of his story and knows how to take time revealing them 4 +86354 4471 a filmmaker who has secrets buried at the heart of his story and knows how to take time revealing them 2 +86355 4471 who has secrets buried at the heart of his story and knows how to take time revealing them 3 +86356 4471 has secrets buried at the heart of his story and knows how to take time revealing them 3 +86357 4471 has secrets buried at the heart of his story and 2 +86358 4471 has secrets buried at the heart of his story 2 +86359 4471 has secrets 2 +86360 4471 buried at the heart of his story 3 +86361 4471 buried 2 +86362 4471 at the heart of his story 2 +86363 4471 the heart of his story 2 +86364 4471 of his story 2 +86365 4471 knows how to take time revealing them 2 +86366 4471 how to take time revealing them 2 +86367 4471 to take time revealing them 2 +86368 4471 take time revealing them 2 +86369 4471 take time 2 +86370 4471 revealing them 2 +86371 4472 It 's a lot to ask people to sit still for two hours and change watching such a character , especially when rendered in as flat and impassive a manner as Phoenix 's . 1 +86372 4472 's a lot to ask people to sit still for two hours and change watching such a character , especially when rendered in as flat and impassive a manner as Phoenix 's . 0 +86373 4472 's a lot to ask people to sit still for two hours and change watching such a character , especially when rendered in as flat and impassive a manner as Phoenix 's 0 +86374 4472 a lot to ask people to sit still for two hours and change watching such a character , especially when rendered in as flat and impassive a manner as Phoenix 's 0 +86375 4472 lot to ask people to sit still for two hours and change watching such a character , especially when rendered in as flat and impassive a manner as Phoenix 's 1 +86376 4472 to ask people to sit still for two hours and change watching such a character , especially when rendered in as flat and impassive a manner as Phoenix 's 0 +86377 4472 ask people to sit still for two hours and change watching such a character , especially when rendered in as flat and impassive a manner as Phoenix 's 1 +86378 4472 people to sit still for two hours and change watching such a character , especially when rendered in as flat and impassive a manner as Phoenix 's 2 +86379 4472 to sit still for two hours and change watching such a character , especially when rendered in as flat and impassive a manner as Phoenix 's 0 +86380 4472 sit still for two hours and change watching such a character , especially when rendered in as flat and impassive a manner as Phoenix 's 1 +86381 4472 sit still for two hours and 2 +86382 4472 sit still for two hours 2 +86383 4472 change watching such a character , especially when rendered in as flat and impassive a manner as Phoenix 's 1 +86384 4472 change watching such a character , especially when rendered in as flat and 1 +86385 4472 change watching such a character , especially when rendered in as flat 1 +86386 4472 change watching such a character , 1 +86387 4472 change watching such a character 3 +86388 4472 watching such a character 2 +86389 4472 such a character 2 +86390 4472 especially when rendered in as flat 2 +86391 4472 rendered in as flat 1 +86392 4472 in as flat 1 +86393 4472 as flat 2 +86394 4472 impassive a manner as Phoenix 's 2 +86395 4472 impassive a manner 1 +86396 4472 impassive 2 +86397 4472 as Phoenix 's 2 +86398 4472 Phoenix 's 2 +86399 4473 While Broomfield 's film does n't capture the effect of these tragic deaths on hip-hop culture , it succeeds as a powerful look at a failure of our justice system . 3 +86400 4473 While Broomfield 's film does n't capture the effect of these tragic deaths on hip-hop culture 1 +86401 4473 Broomfield 's film does n't capture the effect of these tragic deaths on hip-hop culture 1 +86402 4473 Broomfield 's film 2 +86403 4473 does n't capture the effect of these tragic deaths on hip-hop culture 1 +86404 4473 capture the effect of these tragic deaths on hip-hop culture 2 +86405 4473 capture the effect of these tragic deaths 2 +86406 4473 the effect of these tragic deaths 2 +86407 4473 of these tragic deaths 1 +86408 4473 these tragic deaths 2 +86409 4473 tragic deaths 1 +86410 4473 on hip-hop culture 2 +86411 4473 , it succeeds as a powerful look at a failure of our justice system . 3 +86412 4473 it succeeds as a powerful look at a failure of our justice system . 3 +86413 4473 succeeds as a powerful look at a failure of our justice system . 4 +86414 4473 succeeds as a powerful look at a failure of our justice system 3 +86415 4473 as a powerful look at a failure of our justice system 3 +86416 4473 a powerful look at a failure of our justice system 3 +86417 4473 a powerful look 3 +86418 4473 powerful look 3 +86419 4473 at a failure of our justice system 1 +86420 4473 a failure of our justice system 2 +86421 4473 of our justice system 2 +86422 4473 our justice system 2 +86423 4473 justice system 2 +86424 4474 When it comes to the battle of Hollywood vs. Woo , it looks like Woo 's a P.O.W. 1 +86425 4474 When it comes to the battle of Hollywood vs. Woo 2 +86426 4474 it comes to the battle of Hollywood vs. Woo 2 +86427 4474 comes to the battle of Hollywood vs. Woo 2 +86428 4474 to the battle of Hollywood vs. Woo 2 +86429 4474 the battle of Hollywood vs. Woo 2 +86430 4474 the battle 1 +86431 4474 of Hollywood vs. Woo 2 +86432 4474 Hollywood vs. Woo 2 +86433 4474 Hollywood vs. 2 +86434 4474 , it looks like Woo 's a P.O.W. 2 +86435 4474 it looks like Woo 's a P.O.W. 1 +86436 4474 looks like Woo 's a P.O.W. 2 +86437 4474 like Woo 's a P.O.W. 2 +86438 4474 Woo 's a P.O.W. 2 +86439 4474 's a P.O.W. 2 +86440 4474 a P.O.W. 2 +86441 4474 P.O.W. 2 +86442 4475 The sentimental cliches mar an otherwise excellent film . 3 +86443 4475 The sentimental cliches 1 +86444 4475 sentimental cliches 1 +86445 4475 mar an otherwise excellent film . 2 +86446 4475 mar an otherwise excellent film 2 +86447 4475 mar 2 +86448 4475 an otherwise excellent film 3 +86449 4475 otherwise excellent film 4 +86450 4475 otherwise excellent 3 +86451 4476 An extremely funny , ultimately heartbreaking look at life in contemporary China . 3 +86452 4476 An extremely funny , ultimately heartbreaking 4 +86453 4476 extremely funny , ultimately heartbreaking 3 +86454 4476 funny , ultimately heartbreaking 3 +86455 4476 , ultimately heartbreaking 2 +86456 4476 ultimately heartbreaking 2 +86457 4476 look at life in contemporary China . 2 +86458 4476 look at life in contemporary China 2 +86459 4476 at life in contemporary China 2 +86460 4476 life in contemporary China 2 +86461 4476 in contemporary China 2 +86462 4476 contemporary China 2 +86463 4477 Finally , the French-produced `` Read My Lips '' is a movie that understands characters must come first . 3 +86464 4477 , the French-produced `` Read My Lips '' is a movie that understands characters must come first . 3 +86465 4477 the French-produced `` Read My Lips '' is a movie that understands characters must come first . 3 +86466 4477 the French-produced `` Read My Lips '' 2 +86467 4477 the French-produced `` Read My Lips 2 +86468 4477 the French-produced `` 2 +86469 4477 the French-produced 2 +86470 4477 French-produced 2 +86471 4477 is a movie that understands characters must come first . 2 +86472 4477 is a movie that understands characters must come first 3 +86473 4477 a movie that understands characters must come first 3 +86474 4477 that understands characters must come first 2 +86475 4477 understands characters must come first 3 +86476 4477 characters must come first 2 +86477 4477 must come first 2 +86478 4477 come first 2 +86479 4478 The movie just has too much on its plate to really stay afloat for its just under ninety minute running time . 2 +86480 4478 just has too much on its plate to really stay afloat for its just under ninety minute running time . 1 +86481 4478 has too much on its plate to really stay afloat for its just under ninety minute running time . 1 +86482 4478 has too much on its plate to really stay afloat for its just under ninety minute running time 1 +86483 4478 has too much on its plate 2 +86484 4478 too much on its plate 1 +86485 4478 on its plate 2 +86486 4478 its plate 2 +86487 4478 plate 2 +86488 4478 to really stay afloat for its just under ninety minute running time 1 +86489 4478 to really 2 +86490 4478 stay afloat for its just under ninety minute running time 1 +86491 4478 for its just under ninety minute running time 2 +86492 4478 its just under ninety minute running time 2 +86493 4478 just under ninety minute running time 2 +86494 4478 just under ninety minute 2 +86495 4478 under ninety minute 2 +86496 4478 ninety minute 2 +86497 4479 Gaghan 2 +86498 4479 thrown 2 +86499 4479 at this nonsensical story 1 +86500 4479 this nonsensical story 1 +86501 4479 nonsensical story 1 +86502 4480 While Glover , the irrepressible eccentric of River 's Edge , Dead Man and Back to the Future , is perfect casting for the role , he represents Bartleby 's main overall flaw . 2 +86503 4480 While Glover , the irrepressible eccentric of River 's Edge , Dead Man and Back to the Future , is perfect casting for the role 4 +86504 4480 Glover , the irrepressible eccentric of River 's Edge , Dead Man and Back to the Future , is perfect casting for the role 4 +86505 4480 Glover , the irrepressible eccentric of River 's Edge , Dead Man and Back to the Future , 3 +86506 4480 Glover , the irrepressible eccentric of River 's Edge , Dead Man and Back to the Future 2 +86507 4480 Glover , 2 +86508 4480 Glover 2 +86509 4480 the irrepressible eccentric of River 's Edge , Dead Man and Back to the Future 3 +86510 4480 the irrepressible eccentric 2 +86511 4480 irrepressible eccentric 2 +86512 4480 irrepressible 2 +86513 4480 of River 's Edge , Dead Man and Back to the Future 2 +86514 4480 of River 's Edge , Dead Man 2 +86515 4480 River 's Edge , Dead Man 2 +86516 4480 River 's 2 +86517 4480 Edge , Dead Man 2 +86518 4480 , Dead Man 2 +86519 4480 and Back to the Future 2 +86520 4480 Back to the Future 2 +86521 4480 to the Future 2 +86522 4480 is perfect casting for the role 3 +86523 4480 is perfect 3 +86524 4480 casting for the role 3 +86525 4480 for the role 2 +86526 4480 , he represents Bartleby 's main overall flaw . 2 +86527 4480 he represents Bartleby 's main overall flaw . 2 +86528 4480 represents Bartleby 's main overall flaw . 1 +86529 4480 represents Bartleby 's main overall flaw 2 +86530 4480 Bartleby 's main overall flaw 2 +86531 4480 main overall flaw 2 +86532 4480 overall flaw 1 +86533 4481 Long before it 's over , you 'll be thinking of 51 ways to leave this loser . 0 +86534 4481 Long before it 's over 2 +86535 4481 before it 's over 2 +86536 4481 it 's over 2 +86537 4481 's over 2 +86538 4481 , you 'll be thinking of 51 ways to leave this loser . 1 +86539 4481 you 'll be thinking of 51 ways to leave this loser . 0 +86540 4481 'll be thinking of 51 ways to leave this loser . 0 +86541 4481 'll be thinking of 51 ways to leave this loser 0 +86542 4481 be thinking of 51 ways to leave this loser 0 +86543 4481 thinking of 51 ways to leave this loser 1 +86544 4481 thinking of 51 ways 2 +86545 4481 of 51 ways 2 +86546 4481 51 ways 2 +86547 4481 to leave this loser 1 +86548 4481 leave this loser 0 +86549 4481 this loser 0 +86550 4481 loser 1 +86551 4482 According to the script , Grant and Bullock 's characters are made for each other . 3 +86552 4482 According to the script 2 +86553 4482 According 2 +86554 4482 to the script 2 +86555 4482 , Grant and Bullock 's characters are made for each other . 3 +86556 4482 Grant and Bullock 's characters are made for each other . 2 +86557 4482 Grant and Bullock 's characters 2 +86558 4482 Grant and Bullock 's 2 +86559 4482 and Bullock 's 2 +86560 4482 are made for each other . 3 +86561 4482 are made for each other 2 +86562 4482 made for each other 2 +86563 4482 for each other 3 +86564 4483 This low-rent -- and even lower-wit -- rip-off of the Farrelly brothers ' oeuvre gets way too mushy -- and in a relatively short amount of time . 1 +86565 4483 This low-rent -- and even lower-wit -- rip-off of the Farrelly brothers ' oeuvre 1 +86566 4483 This low-rent -- and even lower-wit -- rip-off 0 +86567 4483 low-rent -- and even lower-wit -- rip-off 0 +86568 4483 low-rent -- and even lower-wit -- 1 +86569 4483 low-rent -- and even lower-wit 1 +86570 4483 low-rent -- and 2 +86571 4483 low-rent -- 1 +86572 4483 low-rent 2 +86573 4483 even lower-wit 1 +86574 4483 lower-wit 1 +86575 4483 of the Farrelly brothers ' oeuvre 2 +86576 4483 the Farrelly brothers ' oeuvre 2 +86577 4483 the Farrelly brothers ' 2 +86578 4483 Farrelly brothers ' 2 +86579 4483 brothers ' 2 +86580 4483 oeuvre 2 +86581 4483 gets way too mushy -- and in a relatively short amount of time . 1 +86582 4483 gets way too mushy -- and in a relatively short amount of time 2 +86583 4483 way too mushy -- and in a relatively short amount of time 1 +86584 4483 too mushy -- and in a relatively short amount of time 1 +86585 4483 too mushy 1 +86586 4483 -- and in a relatively short amount of time 2 +86587 4483 in a relatively short amount of time 2 +86588 4483 a relatively short amount of time 2 +86589 4483 a relatively short amount 2 +86590 4483 relatively short amount 2 +86591 4483 relatively short 2 +86592 4484 The real question this movie poses is not ` Who ? ' 2 +86593 4484 real question this movie poses is not ` Who ? ' 2 +86594 4484 real question this movie poses 2 +86595 4484 real question 2 +86596 4484 this movie poses 2 +86597 4484 is not ` Who ? ' 2 +86598 4484 is not ` Who ? 3 +86599 4484 is not ` 2 +86600 4484 Who ? 2 +86601 4485 It does give a taste of the Burning Man ethos , an appealing blend of counter-cultural idealism and hedonistic creativity . 3 +86602 4485 does give a taste of the Burning Man ethos , an appealing blend of counter-cultural idealism and hedonistic creativity . 4 +86603 4485 does give a taste of the Burning Man ethos , an appealing blend of counter-cultural idealism and hedonistic creativity 3 +86604 4485 give a taste of the Burning Man ethos , an appealing blend of counter-cultural idealism and hedonistic creativity 3 +86605 4485 give a taste of the Burning Man ethos , 2 +86606 4485 give a taste of the Burning Man ethos 2 +86607 4485 a taste of the Burning Man ethos 2 +86608 4485 of the Burning Man ethos 2 +86609 4485 the Burning Man ethos 2 +86610 4485 Burning Man ethos 2 +86611 4485 Burning 1 +86612 4485 Man ethos 2 +86613 4485 an appealing blend of counter-cultural idealism and hedonistic creativity 3 +86614 4485 an appealing blend 3 +86615 4485 appealing blend 3 +86616 4485 of counter-cultural idealism and hedonistic creativity 2 +86617 4485 counter-cultural idealism and hedonistic creativity 3 +86618 4485 counter-cultural idealism and 2 +86619 4485 counter-cultural idealism 2 +86620 4485 counter-cultural 3 +86621 4485 hedonistic creativity 3 +86622 4486 delightfully rendered 4 +86623 4487 -LRB- Seagal 's -RRB- strenuous attempt at a change in expression could very well clinch him this year 's Razzie . 1 +86624 4487 -LRB- Seagal 's -RRB- strenuous attempt at a change in expression 1 +86625 4487 -LRB- Seagal 's -RRB- strenuous attempt 1 +86626 4487 strenuous attempt 2 +86627 4487 strenuous 1 +86628 4487 at a change in expression 2 +86629 4487 a change in expression 3 +86630 4487 a change 2 +86631 4487 in expression 2 +86632 4487 could very well clinch him this year 's Razzie . 1 +86633 4487 could very well clinch him this year 's Razzie 1 +86634 4487 could very well 2 +86635 4487 clinch him this year 's Razzie 1 +86636 4487 clinch 2 +86637 4487 him this year 's Razzie 1 +86638 4487 this year 's Razzie 1 +86639 4487 Razzie 2 +86640 4488 -LRB- A -RRB- crushing disappointment . 0 +86641 4488 -LRB- A -RRB- crushing disappointment 0 +86642 4488 crushing disappointment 1 +86643 4488 crushing 2 +86644 4489 Like the excruciating End of Days , Collateral Damage presents Schwarzenegger as a tragic figure , but sympathy really belongs with any viewer forced to watch him try out so many complicated facial expressions . 1 +86645 4489 Like the excruciating End of Days , Collateral Damage presents Schwarzenegger as a tragic figure , but sympathy really belongs with any viewer forced to watch him try out so many complicated facial expressions 1 +86646 4489 Like the excruciating End of Days , Collateral Damage presents Schwarzenegger as a tragic figure , but 1 +86647 4489 Like the excruciating End of Days , Collateral Damage presents Schwarzenegger as a tragic figure , 1 +86648 4489 Like the excruciating End of Days , Collateral Damage presents Schwarzenegger as a tragic figure 2 +86649 4489 Like the excruciating End of Days 0 +86650 4489 the excruciating End of Days 1 +86651 4489 the excruciating End 1 +86652 4489 excruciating End 0 +86653 4489 of Days 2 +86654 4489 , Collateral Damage presents Schwarzenegger as a tragic figure 1 +86655 4489 Collateral Damage presents Schwarzenegger as a tragic figure 2 +86656 4489 presents Schwarzenegger as a tragic figure 2 +86657 4489 Schwarzenegger as a tragic figure 2 +86658 4489 as a tragic figure 1 +86659 4489 a tragic figure 2 +86660 4489 tragic figure 2 +86661 4489 sympathy really belongs with any viewer forced to watch him try out so many complicated facial expressions 1 +86662 4489 really belongs with any viewer forced to watch him try out so many complicated facial expressions 1 +86663 4489 belongs with any viewer forced to watch him try out so many complicated facial expressions 2 +86664 4489 with any viewer forced to watch him try out so many complicated facial expressions 1 +86665 4489 any viewer forced to watch him try out so many complicated facial expressions 1 +86666 4489 any viewer 2 +86667 4489 forced to watch him try out so many complicated facial expressions 1 +86668 4489 to watch him try out so many complicated facial expressions 2 +86669 4489 watch him try out so many complicated facial expressions 2 +86670 4489 him try out so many complicated facial expressions 2 +86671 4489 try out so many complicated facial expressions 2 +86672 4489 try out 2 +86673 4489 so many complicated facial expressions 2 +86674 4489 many complicated facial expressions 2 +86675 4489 many complicated 2 +86676 4489 facial expressions 2 +86677 4489 facial 2 +86678 4489 expressions 2 +86679 4490 A battle between bug-eye theatre and dead-eye matinee . 1 +86680 4490 A battle between bug-eye theatre and dead-eye 1 +86681 4490 between bug-eye theatre and dead-eye 2 +86682 4490 bug-eye theatre and dead-eye 1 +86683 4490 bug-eye 2 +86684 4490 theatre and dead-eye 2 +86685 4490 theatre and 2 +86686 4490 dead-eye 2 +86687 4490 matinee . 2 +86688 4491 No amount of burning , blasting , stabbing , and shooting can hide a weak script . 0 +86689 4491 No amount of burning , blasting , stabbing , and shooting 1 +86690 4491 of burning , blasting , stabbing , and shooting 2 +86691 4491 burning , blasting , stabbing , and shooting 2 +86692 4491 burning , blasting , stabbing , and 2 +86693 4491 burning , blasting , stabbing , 2 +86694 4491 burning , blasting , stabbing 1 +86695 4491 burning , blasting , 2 +86696 4491 burning , blasting 2 +86697 4491 burning , 2 +86698 4491 blasting 2 +86699 4491 stabbing 2 +86700 4491 can hide a weak script . 2 +86701 4491 can hide a weak script 2 +86702 4491 hide a weak script 1 +86703 4492 Not a strike against Yang 's similarly themed Yi Yi , but I found What Time ? 1 +86704 4492 Not a strike against Yang 's similarly themed Yi Yi 2 +86705 4492 Not a strike 3 +86706 4492 a strike 2 +86707 4492 against Yang 's similarly themed Yi Yi 2 +86708 4492 Yang 's similarly themed Yi Yi 2 +86709 4492 Yang 's 2 +86710 4492 Yang 2 +86711 4492 similarly themed Yi Yi 2 +86712 4492 Yi Yi 2 +86713 4492 Yi 2 +86714 4492 , but I found What Time ? 2 +86715 4492 , but I found What Time 2 +86716 4492 I found What Time 2 +86717 4492 found What Time 2 +86718 4493 Nohe 's documentary about the event is sympathetic without being gullible : He is n't blind to the silliness , but also captures moments of spontaneous creativity and authentic co-operative interaction . 3 +86719 4493 Nohe 's documentary about the event is sympathetic without being gullible : He is n't blind to the silliness , but also captures moments of spontaneous creativity and authentic co-operative interaction 3 +86720 4493 Nohe 's documentary about the event is sympathetic without being gullible : 2 +86721 4493 Nohe 's documentary about the event is sympathetic without being gullible 3 +86722 4493 Nohe 's documentary about the event 2 +86723 4493 Nohe 's documentary 2 +86724 4493 Nohe 's 2 +86725 4493 Nohe 2 +86726 4493 about the event 2 +86727 4493 the event 2 +86728 4493 is sympathetic without being gullible 3 +86729 4493 sympathetic without being gullible 3 +86730 4493 without being gullible 2 +86731 4493 being gullible 1 +86732 4493 gullible 2 +86733 4493 He is n't blind to the silliness , but also captures moments of spontaneous creativity and authentic co-operative interaction 3 +86734 4493 is n't blind to the silliness , but also captures moments of spontaneous creativity and authentic co-operative interaction 4 +86735 4493 is n't blind to the silliness , but 2 +86736 4493 is n't blind to the silliness , 2 +86737 4493 is n't blind to the silliness 2 +86738 4493 blind to the silliness 1 +86739 4493 to the silliness 2 +86740 4493 also captures moments of spontaneous creativity and authentic co-operative interaction 3 +86741 4493 captures moments of spontaneous creativity and authentic co-operative interaction 3 +86742 4493 moments of spontaneous creativity and authentic co-operative interaction 3 +86743 4493 of spontaneous creativity and authentic co-operative interaction 3 +86744 4493 spontaneous creativity and authentic co-operative interaction 3 +86745 4493 spontaneous creativity and 3 +86746 4493 spontaneous creativity 3 +86747 4493 authentic co-operative interaction 2 +86748 4493 co-operative interaction 2 +86749 4493 co-operative 2 +86750 4494 A film of ideas and wry comic mayhem . 3 +86751 4494 A film of ideas and wry comic mayhem 4 +86752 4494 of ideas and wry comic mayhem 2 +86753 4494 ideas and wry comic mayhem 3 +86754 4494 wry comic mayhem 3 +86755 4494 comic mayhem 2 +86756 4495 There 's something to be said for a studio-produced film that never bothers to hand viewers a suitcase full of easy answers . 3 +86757 4495 's something to be said for a studio-produced film that never bothers to hand viewers a suitcase full of easy answers . 3 +86758 4495 's something to be said for a studio-produced film that never bothers to hand viewers a suitcase full of easy answers 3 +86759 4495 something to be said for a studio-produced film that never bothers to hand viewers a suitcase full of easy answers 3 +86760 4495 to be said for a studio-produced film that never bothers to hand viewers a suitcase full of easy answers 3 +86761 4495 be said for a studio-produced film that never bothers to hand viewers a suitcase full of easy answers 3 +86762 4495 said for a studio-produced film that never bothers to hand viewers a suitcase full of easy answers 2 +86763 4495 for a studio-produced film that never bothers to hand viewers a suitcase full of easy answers 2 +86764 4495 a studio-produced film that never bothers to hand viewers a suitcase full of easy answers 2 +86765 4495 a studio-produced film 2 +86766 4495 studio-produced film 2 +86767 4495 studio-produced 2 +86768 4495 that never bothers to hand viewers a suitcase full of easy answers 2 +86769 4495 never bothers to hand viewers a suitcase full of easy answers 2 +86770 4495 bothers to hand viewers a suitcase full of easy answers 2 +86771 4495 bothers 2 +86772 4495 to hand viewers a suitcase full of easy answers 2 +86773 4495 hand viewers a suitcase full of easy answers 1 +86774 4495 hand viewers 2 +86775 4495 a suitcase full of easy answers 2 +86776 4495 a suitcase 2 +86777 4495 suitcase 2 +86778 4495 full of easy answers 2 +86779 4495 of easy answers 2 +86780 4495 easy answers 2 +86781 4496 All too familiar ... basically the sort of cautionary tale that was old when ` Angels With Dirty Faces ' appeared in 1938 . 1 +86782 4496 All too familiar ... basically the sort of cautionary tale that was old when ` Angels With Dirty Faces ' appeared in 1938 1 +86783 4496 All too familiar ... 1 +86784 4496 basically the sort of cautionary tale that was old when ` Angels With Dirty Faces ' appeared in 1938 1 +86785 4496 basically the sort of cautionary tale 2 +86786 4496 basically the sort 2 +86787 4496 of cautionary tale 2 +86788 4496 that was old when ` Angels With Dirty Faces ' appeared in 1938 1 +86789 4496 was old when ` Angels With Dirty Faces ' appeared in 1938 2 +86790 4496 was old 2 +86791 4496 when ` Angels With Dirty Faces ' appeared in 1938 2 +86792 4496 ` Angels With Dirty Faces ' appeared in 1938 2 +86793 4496 Angels With Dirty Faces ' appeared in 1938 2 +86794 4496 Angels With Dirty Faces 2 +86795 4496 With Dirty Faces 2 +86796 4496 Dirty Faces 3 +86797 4496 ' appeared in 1938 3 +86798 4496 appeared in 1938 3 +86799 4496 in 1938 2 +86800 4496 1938 2 +86801 4497 A gem of a romantic crime comedy that turns out to be clever , amusing and unpredictable . 4 +86802 4497 A gem of a romantic crime comedy that turns out to be clever , amusing and unpredictable 4 +86803 4497 of a romantic crime comedy that turns out to be clever , amusing and unpredictable 4 +86804 4497 a romantic crime comedy that turns out to be clever , amusing and unpredictable 3 +86805 4497 a romantic crime comedy 3 +86806 4497 romantic crime comedy 3 +86807 4497 that turns out to be clever , amusing and unpredictable 4 +86808 4497 turns out to be clever , amusing and unpredictable 3 +86809 4497 to be clever , amusing and unpredictable 4 +86810 4497 be clever , amusing and unpredictable 3 +86811 4497 clever , amusing and unpredictable 3 +86812 4497 , amusing and unpredictable 3 +86813 4497 amusing and unpredictable 4 +86814 4497 amusing and 4 +86815 4498 Austin Powers in Goldmember is a cinematic car wreck , a catastrophic collision of tastelessness and gall that nevertheless will leave fans clamoring for another ride . 1 +86816 4498 is a cinematic car wreck , a catastrophic collision of tastelessness and gall that nevertheless will leave fans clamoring for another ride . 3 +86817 4498 is a cinematic car wreck , a catastrophic collision of tastelessness and gall that nevertheless will leave fans clamoring for another ride 1 +86818 4498 a cinematic car wreck , a catastrophic collision of tastelessness and gall that nevertheless will leave fans clamoring for another ride 2 +86819 4498 a cinematic car wreck , 0 +86820 4498 a cinematic car wreck 2 +86821 4498 cinematic car wreck 1 +86822 4498 car wreck 1 +86823 4498 wreck 1 +86824 4498 a catastrophic collision of tastelessness and gall that nevertheless will leave fans clamoring for another ride 2 +86825 4498 a catastrophic collision of tastelessness and gall 0 +86826 4498 a catastrophic collision 1 +86827 4498 catastrophic collision 1 +86828 4498 catastrophic 2 +86829 4498 of tastelessness and gall 1 +86830 4498 tastelessness and gall 1 +86831 4498 tastelessness and 0 +86832 4498 gall 2 +86833 4498 that nevertheless will leave fans clamoring for another ride 4 +86834 4498 nevertheless will leave fans clamoring for another ride 3 +86835 4498 will leave fans clamoring for another ride 3 +86836 4498 leave fans clamoring for another ride 3 +86837 4498 fans clamoring for another ride 3 +86838 4498 clamoring for another ride 3 +86839 4498 clamoring 2 +86840 4498 for another ride 2 +86841 4498 another ride 2 +86842 4499 Even Murphy 's expert comic timing and famed charisma ca n't rescue this effort . 1 +86843 4499 Even Murphy 's expert comic timing and famed charisma 2 +86844 4499 Even Murphy 's expert comic timing and 3 +86845 4499 Even Murphy 's expert comic timing 2 +86846 4499 Murphy 's expert comic timing 3 +86847 4499 Murphy 's 2 +86848 4499 expert comic timing 4 +86849 4499 famed charisma 3 +86850 4499 famed 3 +86851 4499 ca n't rescue this effort . 1 +86852 4499 ca n't rescue this effort 1 +86853 4499 rescue this effort 2 +86854 4499 this effort 2 +86855 4500 It 's incredible the number of stories the Holocaust has generated . 3 +86856 4500 's incredible the number of stories the Holocaust has generated . 2 +86857 4500 's incredible the number of stories the Holocaust has generated 3 +86858 4500 's incredible the number of stories 3 +86859 4500 incredible the number of stories 2 +86860 4500 the number of stories 2 +86861 4500 of stories 2 +86862 4500 the Holocaust has generated 2 +86863 4500 the Holocaust 1 +86864 4500 has generated 2 +86865 4501 This is an interesting movie ! '' 4 +86866 4501 is an interesting movie ! '' 3 +86867 4501 is an interesting movie ! 4 +86868 4501 is an interesting movie 3 +86869 4501 an interesting movie 3 +86870 4501 interesting movie 4 +86871 4502 The dialogue is cumbersome , the simpering soundtrack and editing more so . 1 +86872 4502 The dialogue is cumbersome , the simpering soundtrack and editing more so 0 +86873 4502 The dialogue is cumbersome , 1 +86874 4502 The dialogue is cumbersome 1 +86875 4502 is cumbersome 1 +86876 4502 cumbersome 1 +86877 4502 the simpering soundtrack and editing more so 1 +86878 4502 the simpering soundtrack and editing 1 +86879 4502 the simpering soundtrack and 2 +86880 4502 the simpering soundtrack 1 +86881 4502 simpering soundtrack 1 +86882 4502 simpering 2 +86883 4502 more so 2 +86884 4503 Yo , it 's The Days Of Our Lives meets Electric Boogaloo . 2 +86885 4503 Yo , it 's The Days Of Our Lives 2 +86886 4503 Yo 2 +86887 4503 , it 's The Days Of Our Lives 2 +86888 4503 it 's The Days Of Our Lives 2 +86889 4503 's The Days Of Our Lives 2 +86890 4503 The Days Of Our Lives 2 +86891 4503 Of Our Lives 2 +86892 4503 meets Electric Boogaloo . 2 +86893 4503 meets Electric Boogaloo 2 +86894 4503 Electric Boogaloo 2 +86895 4503 Electric 4 +86896 4503 Boogaloo 2 +86897 4504 The movie is genial but never inspired , and little about it will stay with you . 1 +86898 4504 is genial but never inspired , and little about it will stay with you . 1 +86899 4504 is genial but never inspired , and little about it will stay with you 1 +86900 4504 is genial but never inspired , and little 3 +86901 4504 genial but never inspired , and little 1 +86902 4504 genial but never inspired , and 2 +86903 4504 genial but never inspired , 2 +86904 4504 genial but never inspired 2 +86905 4504 genial but 2 +86906 4504 never inspired 1 +86907 4504 about it will stay with you 3 +86908 4504 it will stay with you 3 +86909 4504 will stay with you 2 +86910 4504 stay with you 2 +86911 4505 That old adage about women being unknowable gets an exhilarating new interpretation in Morvern Callar . 3 +86912 4505 That old adage about women being unknowable 3 +86913 4505 That old adage 2 +86914 4505 about women being unknowable 2 +86915 4505 women being unknowable 2 +86916 4505 being unknowable 2 +86917 4505 unknowable 1 +86918 4505 gets an exhilarating new interpretation in Morvern Callar . 3 +86919 4505 gets an exhilarating new interpretation in Morvern Callar 4 +86920 4505 an exhilarating new interpretation in Morvern Callar 4 +86921 4505 an exhilarating new interpretation 3 +86922 4505 exhilarating new interpretation 3 +86923 4505 exhilarating new 4 +86924 4505 in Morvern Callar 2 +86925 4506 Pray has really done his subject justice . 3 +86926 4506 has really done his subject justice . 4 +86927 4506 has really done his subject justice 2 +86928 4506 has really 2 +86929 4506 done his subject justice 3 +86930 4506 his subject justice 3 +86931 4506 subject justice 2 +86932 4507 It 's a shame the marvelous first 101 minutes have to be combined with the misconceived final 5 . 1 +86933 4507 's a shame the marvelous first 101 minutes have to be combined with the misconceived final 5 . 1 +86934 4507 's a shame the marvelous first 101 minutes have to be combined with the misconceived final 5 2 +86935 4507 a shame the marvelous first 101 minutes have to be combined with the misconceived final 5 1 +86936 4507 the marvelous first 101 minutes have to be combined with the misconceived final 5 3 +86937 4507 the marvelous first 101 minutes 3 +86938 4507 marvelous first 101 minutes 3 +86939 4507 marvelous first 101 4 +86940 4507 marvelous first 3 +86941 4507 have to be combined with the misconceived final 5 2 +86942 4507 to be combined with the misconceived final 5 2 +86943 4507 be combined with the misconceived final 5 2 +86944 4507 combined with the misconceived final 5 1 +86945 4507 with the misconceived final 5 2 +86946 4507 the misconceived final 5 3 +86947 4507 misconceived final 5 1 +86948 4507 misconceived final 1 +86949 4507 misconceived 1 +86950 4508 Are we dealing with dreams , visions or being told what actually happened as if it were the third ending of Clue ? 1 +86951 4508 Are we dealing with dreams , visions or being told what actually happened as if it were the third ending of Clue 1 +86952 4508 dealing with dreams , visions or being told what actually happened as if it were the third ending of Clue 1 +86953 4508 dealing with dreams , visions or 2 +86954 4508 dealing with dreams , visions 2 +86955 4508 with dreams , visions 2 +86956 4508 dreams , visions 2 +86957 4508 dreams , 3 +86958 4508 being told what actually happened as if it were the third ending of Clue 2 +86959 4508 told what actually happened as if it were the third ending of Clue 1 +86960 4508 what actually happened as if it were the third ending of Clue 2 +86961 4508 actually happened as if it were the third ending of Clue 3 +86962 4508 happened as if it were the third ending of Clue 2 +86963 4508 as if it were the third ending of Clue 2 +86964 4508 if it were the third ending of Clue 2 +86965 4508 it were the third ending of Clue 2 +86966 4508 were the third ending of Clue 2 +86967 4508 the third ending of Clue 2 +86968 4508 the third ending 2 +86969 4508 third ending 2 +86970 4508 of Clue 2 +86971 4508 Clue 2 +86972 4509 As dumb and cheesy as they may be , the cartoons look almost Shakespearean -- both in depth and breadth -- after watching this digital-effects-heavy , supposed family-friendly comedy . 3 +86973 4509 As dumb and cheesy 1 +86974 4509 dumb and cheesy 0 +86975 4509 dumb and 1 +86976 4509 as they may be , the cartoons look almost Shakespearean -- both in depth and breadth -- after watching this digital-effects-heavy , supposed family-friendly comedy . 1 +86977 4509 as they may be 2 +86978 4509 they may be 2 +86979 4509 , the cartoons look almost Shakespearean -- both in depth and breadth -- after watching this digital-effects-heavy , supposed family-friendly comedy . 1 +86980 4509 the cartoons look almost Shakespearean -- both in depth and breadth -- after watching this digital-effects-heavy , supposed family-friendly comedy . 3 +86981 4509 the cartoons 2 +86982 4509 look almost Shakespearean -- both in depth and breadth -- after watching this digital-effects-heavy , supposed family-friendly comedy . 2 +86983 4509 look almost Shakespearean -- both in depth and breadth -- after watching this digital-effects-heavy , supposed family-friendly comedy 1 +86984 4509 almost Shakespearean -- both in depth and breadth -- after watching this digital-effects-heavy , supposed family-friendly comedy 3 +86985 4509 almost Shakespearean -- both in depth and breadth -- 3 +86986 4509 Shakespearean -- both in depth and breadth -- 3 +86987 4509 -- both in depth and breadth -- 2 +86988 4509 both in depth and breadth -- 2 +86989 4509 both in depth and breadth 2 +86990 4509 in depth and breadth 2 +86991 4509 depth and breadth 2 +86992 4509 after watching this digital-effects-heavy , supposed family-friendly comedy 1 +86993 4509 watching this digital-effects-heavy , supposed family-friendly comedy 1 +86994 4509 this digital-effects-heavy , supposed family-friendly comedy 1 +86995 4509 digital-effects-heavy , supposed family-friendly comedy 2 +86996 4509 digital-effects-heavy 2 +86997 4509 , supposed family-friendly comedy 2 +86998 4509 supposed family-friendly comedy 2 +86999 4509 family-friendly comedy 3 +87000 4509 family-friendly 3 +87001 4510 One of those strained caper movies that 's hardly any fun to watch and begins to vaporize from your memory minutes after it ends . 0 +87002 4510 strained caper movies that 's hardly any fun to watch and begins to vaporize from your memory minutes after it ends . 1 +87003 4510 strained caper movies that 's hardly any fun to watch and begins to vaporize from your memory minutes after it ends 0 +87004 4510 strained caper movies that 's hardly any fun to watch and 1 +87005 4510 strained caper movies that 's hardly any fun to watch 0 +87006 4510 caper movies that 's hardly any fun to watch 1 +87007 4510 caper movies 2 +87008 4510 that 's hardly any fun to watch 1 +87009 4510 's hardly any fun to watch 1 +87010 4510 's hardly 2 +87011 4510 any fun to watch 2 +87012 4510 begins to vaporize from your memory minutes after it ends 0 +87013 4510 to vaporize from your memory minutes after it ends 1 +87014 4510 vaporize from your memory minutes after it ends 0 +87015 4510 vaporize from your memory minutes 1 +87016 4510 vaporize 2 +87017 4510 from your memory minutes 2 +87018 4510 your memory minutes 2 +87019 4510 memory minutes 2 +87020 4510 after it ends 2 +87021 4510 it ends 2 +87022 4511 A well-put-together piece of urban satire . 3 +87023 4511 A well-put-together piece of urban satire 3 +87024 4511 A well-put-together piece 4 +87025 4511 well-put-together piece 4 +87026 4511 well-put-together 3 +87027 4511 of urban satire 2 +87028 4511 urban satire 2 +87029 4512 A few zingers aside , the writing is indifferent , and Jordan Brady 's direction is prosaic . 1 +87030 4512 A few zingers aside 3 +87031 4512 A few zingers 2 +87032 4512 few zingers 2 +87033 4512 , the writing is indifferent , and Jordan Brady 's direction is prosaic . 1 +87034 4512 the writing is indifferent , and Jordan Brady 's direction is prosaic . 2 +87035 4512 the writing is indifferent , and Jordan Brady 's direction is prosaic 1 +87036 4512 the writing is indifferent , and 1 +87037 4512 the writing is indifferent , 1 +87038 4512 the writing is indifferent 1 +87039 4512 is indifferent 2 +87040 4512 indifferent 1 +87041 4512 Jordan Brady 's direction is prosaic 2 +87042 4512 Jordan Brady 's direction 2 +87043 4512 Jordan Brady 's 2 +87044 4512 Brady 's 2 +87045 4512 is prosaic 2 +87046 4512 prosaic 2 +87047 4513 Deflated ending aside , there 's much to recommend the film . 3 +87048 4513 Deflated ending aside 2 +87049 4513 ending aside 2 +87050 4513 , there 's much to recommend the film . 4 +87051 4513 there 's much to recommend the film . 4 +87052 4513 's much to recommend the film . 3 +87053 4513 's much to recommend the film 3 +87054 4513 much to recommend the film 3 +87055 4513 to recommend the film 2 +87056 4513 recommend the film 3 +87057 4514 To call this film a lump of coal would only be to flatter it . 0 +87058 4514 To call this film a lump of coal 1 +87059 4514 call this film a lump of coal 1 +87060 4514 call this film 2 +87061 4514 a lump of coal 2 +87062 4514 would only be to flatter it . 2 +87063 4514 would only be to flatter it 2 +87064 4514 would only 2 +87065 4514 be to flatter it 2 +87066 4514 to flatter it 2 +87067 4514 flatter it 3 +87068 4514 flatter 3 +87069 4515 A weird and wonderful comedy . 4 +87070 4515 A weird and wonderful comedy 4 +87071 4515 weird and wonderful comedy 4 +87072 4515 weird and wonderful 3 +87073 4515 weird and 2 +87074 4516 Wishy-washy . 1 +87075 4517 Hypnotically dull , relentlessly downbeat , laughably predictable wail pitched to the cadence of a depressed fifteen-year-old 's suicidal poetry . 0 +87076 4517 Hypnotically dull , relentlessly downbeat 1 +87077 4517 Hypnotically dull , 1 +87078 4517 Hypnotically dull 0 +87079 4517 relentlessly downbeat 1 +87080 4517 , laughably predictable wail pitched to the cadence of a depressed fifteen-year-old 's suicidal poetry . 0 +87081 4517 laughably predictable wail pitched to the cadence of a depressed fifteen-year-old 's suicidal poetry . 2 +87082 4517 laughably predictable wail 2 +87083 4517 laughably predictable 2 +87084 4517 wail 2 +87085 4517 pitched to the cadence of a depressed fifteen-year-old 's suicidal poetry . 1 +87086 4517 pitched to the cadence of a depressed fifteen-year-old 's suicidal poetry 2 +87087 4517 to the cadence of a depressed fifteen-year-old 's suicidal poetry 0 +87088 4517 the cadence of a depressed fifteen-year-old 's suicidal poetry 1 +87089 4517 the cadence 2 +87090 4517 cadence 2 +87091 4517 of a depressed fifteen-year-old 's suicidal poetry 1 +87092 4517 a depressed fifteen-year-old 's suicidal poetry 1 +87093 4517 a depressed fifteen-year-old 's 2 +87094 4517 depressed fifteen-year-old 's 1 +87095 4517 depressed 1 +87096 4517 fifteen-year-old 's 2 +87097 4517 fifteen-year-old 2 +87098 4517 suicidal poetry 2 +87099 4517 suicidal 1 +87100 4518 Writer-director Stephen Gaghan has made the near-fatal mistake of being what the English call ` too clever by half . ' 1 +87101 4518 Writer-director Stephen Gaghan 2 +87102 4518 Stephen Gaghan 2 +87103 4518 has made the near-fatal mistake of being what the English call ` too clever by half . ' 1 +87104 4518 has made the near-fatal mistake of being what the English call ` too clever by half . 0 +87105 4518 has made the near-fatal mistake of being what the English call ` too clever by half 2 +87106 4518 made the near-fatal mistake of being what the English call ` too clever by half 1 +87107 4518 the near-fatal mistake of being what the English call ` too clever by half 1 +87108 4518 the near-fatal mistake 2 +87109 4518 near-fatal mistake 0 +87110 4518 near-fatal 2 +87111 4518 of being what the English call ` too clever by half 2 +87112 4518 being what the English call ` too clever by half 2 +87113 4518 what the English call ` too clever by half 1 +87114 4518 the English call ` too clever by half 3 +87115 4518 the English 2 +87116 4518 call ` too clever by half 2 +87117 4518 call ` too clever 2 +87118 4518 ` too clever 2 +87119 4519 A compelling pre-WWII drama with vivid characters and a warm , moving message . 4 +87120 4519 A compelling pre-WWII drama with vivid characters and a warm , moving message 3 +87121 4519 A compelling pre-WWII drama 3 +87122 4519 compelling pre-WWII drama 4 +87123 4519 pre-WWII drama 2 +87124 4519 pre-WWII 2 +87125 4519 with vivid characters and a warm , moving message 4 +87126 4519 vivid characters and a warm , moving message 4 +87127 4519 vivid characters and 3 +87128 4519 vivid characters 3 +87129 4519 a warm , moving message 3 +87130 4519 warm , moving message 3 +87131 4519 warm , moving 3 +87132 4520 If there 's one big point to Promises , it 's that nothing can change while physical and psychological barriers keep the sides from speaking even one word to each other . 2 +87133 4520 If there 's one big point to Promises 2 +87134 4520 there 's one big point to Promises 2 +87135 4520 's one big point to Promises 2 +87136 4520 one big point to Promises 2 +87137 4520 one big point 2 +87138 4520 big point 2 +87139 4520 to Promises 2 +87140 4520 , it 's that nothing can change while physical and psychological barriers keep the sides from speaking even one word to each other . 2 +87141 4520 it 's that nothing can change while physical and psychological barriers keep the sides from speaking even one word to each other . 2 +87142 4520 's that nothing can change while physical and psychological barriers keep the sides from speaking even one word to each other . 2 +87143 4520 's that nothing can change while physical and psychological barriers keep the sides from speaking even one word to each other 2 +87144 4520 that nothing can change while physical and psychological barriers keep the sides from speaking even one word to each other 2 +87145 4520 nothing can change while physical and psychological barriers keep the sides from speaking even one word to each other 2 +87146 4520 can change while physical and psychological barriers keep the sides from speaking even one word to each other 2 +87147 4520 change while physical and psychological barriers keep the sides from speaking even one word to each other 2 +87148 4520 while physical and psychological barriers keep the sides from speaking even one word to each other 2 +87149 4520 physical and psychological barriers keep the sides from speaking even one word to each other 2 +87150 4520 physical and psychological barriers 2 +87151 4520 and psychological barriers 2 +87152 4520 psychological barriers 2 +87153 4520 keep the sides from speaking even one word to each other 2 +87154 4520 keep the sides 2 +87155 4520 the sides 2 +87156 4520 from speaking even one word to each other 2 +87157 4520 speaking even one word to each other 2 +87158 4520 speaking even one word 2 +87159 4520 even one word 2 +87160 4521 is never quite able to overcome the cultural moat surrounding its ludicrous and contrived plot . ' 0 +87161 4521 is never quite able to overcome the cultural moat surrounding its ludicrous and contrived plot . 1 +87162 4521 is never quite able to overcome the cultural moat surrounding its ludicrous and contrived plot 1 +87163 4521 is never quite able 1 +87164 4521 quite able 3 +87165 4521 to overcome the cultural moat surrounding its ludicrous and contrived plot 1 +87166 4521 overcome the cultural moat surrounding its ludicrous and contrived plot 1 +87167 4521 the cultural moat surrounding its ludicrous and contrived plot 0 +87168 4521 the cultural moat 2 +87169 4521 cultural moat 2 +87170 4521 moat 2 +87171 4521 surrounding its ludicrous and contrived plot 0 +87172 4521 its ludicrous and contrived plot 1 +87173 4521 ludicrous and contrived plot 0 +87174 4521 ludicrous and contrived 0 +87175 4521 ludicrous and 1 +87176 4522 Savvy director Robert J. Siegel and his co-writers keep the story subtle and us in suspense . 3 +87177 4522 Savvy director Robert J. Siegel and his co-writers 3 +87178 4522 Savvy director Robert J. Siegel and 4 +87179 4522 Savvy director Robert J. Siegel 2 +87180 4522 his co-writers 2 +87181 4522 keep the story subtle and us in suspense . 2 +87182 4522 keep the story subtle and us in suspense 3 +87183 4522 the story subtle and us in suspense 3 +87184 4522 the story subtle and 2 +87185 4522 the story subtle 2 +87186 4522 us in suspense 2 +87187 4522 in suspense 2 +87188 4523 The script has less spice than a rat burger and The Rock 's fighting skills are more in line with Steven Seagal . 1 +87189 4523 The script has less spice than a rat burger and The Rock 's fighting skills are more in line with Steven Seagal 0 +87190 4523 The script has less spice than a rat burger and 0 +87191 4523 The script has less spice than a rat burger 1 +87192 4523 has less spice than a rat burger 0 +87193 4523 has less spice 2 +87194 4523 less spice 2 +87195 4523 spice 3 +87196 4523 than a rat burger 2 +87197 4523 a rat burger 2 +87198 4523 rat burger 2 +87199 4523 rat 2 +87200 4523 The Rock 's fighting skills are more in line with Steven Seagal 3 +87201 4523 The Rock 's fighting skills 2 +87202 4523 The Rock 's 2 +87203 4523 fighting skills 2 +87204 4523 are more in line with Steven Seagal 2 +87205 4523 are more in line 2 +87206 4523 more in line 2 +87207 4523 in line 2 +87208 4523 with Steven Seagal 3 +87209 4524 Sensitively examines general issues of race and justice among the poor , and specifically raises serious questions about the death penalty and asks what good the execution of a mentally challenged woman could possibly do . 2 +87210 4524 Sensitively 2 +87211 4524 examines general issues of race and justice among the poor , and specifically raises serious questions about the death penalty and asks what good the execution of a mentally challenged woman could possibly do . 3 +87212 4524 examines general issues of race and justice among the poor , and specifically raises serious questions about the death penalty and asks what good the execution of a mentally challenged woman could possibly do 3 +87213 4524 examines general issues of race and justice among the poor , and 1 +87214 4524 examines general issues of race and justice among the poor , 2 +87215 4524 examines general issues of race and justice among the poor 2 +87216 4524 examines general issues of race and justice 2 +87217 4524 general issues of race and justice 2 +87218 4524 general issues 2 +87219 4524 of race and justice 2 +87220 4524 race and justice 2 +87221 4524 race and 2 +87222 4524 among the poor 2 +87223 4524 the poor 2 +87224 4524 specifically raises serious questions about the death penalty and asks what good the execution of a mentally challenged woman could possibly do 2 +87225 4524 raises serious questions about the death penalty and asks what good the execution of a mentally challenged woman could possibly do 2 +87226 4524 raises serious questions about the death penalty and 2 +87227 4524 raises serious questions about the death penalty 2 +87228 4524 raises serious questions 1 +87229 4524 serious questions 2 +87230 4524 about the death penalty 2 +87231 4524 the death penalty 1 +87232 4524 death penalty 1 +87233 4524 penalty 2 +87234 4524 asks what good the execution of a mentally challenged woman could possibly do 2 +87235 4524 what good the execution of a mentally challenged woman could possibly do 1 +87236 4524 good the execution of a mentally challenged woman could possibly do 3 +87237 4524 good the execution of a mentally challenged woman 2 +87238 4524 good the execution 3 +87239 4524 of a mentally challenged woman 2 +87240 4524 a mentally challenged woman 2 +87241 4524 mentally challenged woman 2 +87242 4524 mentally challenged 2 +87243 4524 could possibly do 2 +87244 4525 In The Pianist , Polanski is saying what he has long wanted to say , confronting the roots of his own preoccupations and obsessions , and he allows nothing to get in the way . 3 +87245 4525 In The Pianist 3 +87246 4525 , Polanski is saying what he has long wanted to say , confronting the roots of his own preoccupations and obsessions , and he allows nothing to get in the way . 2 +87247 4525 Polanski is saying what he has long wanted to say , confronting the roots of his own preoccupations and obsessions , and he allows nothing to get in the way . 3 +87248 4525 Polanski is saying what he has long wanted to say , confronting the roots of his own preoccupations and obsessions , and he allows nothing to get in the way 3 +87249 4525 Polanski is saying what he has long wanted to say , confronting the roots of his own preoccupations and obsessions , and 2 +87250 4525 Polanski is saying what he has long wanted to say , confronting the roots of his own preoccupations and obsessions , 2 +87251 4525 Polanski is saying what he has long wanted to say , confronting the roots of his own preoccupations and obsessions 3 +87252 4525 is saying what he has long wanted to say , confronting the roots of his own preoccupations and obsessions 2 +87253 4525 saying what he has long wanted to say , confronting the roots of his own preoccupations and obsessions 2 +87254 4525 what he has long wanted to say , confronting the roots of his own preoccupations and obsessions 2 +87255 4525 he has long wanted to say , confronting the roots of his own preoccupations and obsessions 2 +87256 4525 has long wanted to say , confronting the roots of his own preoccupations and obsessions 2 +87257 4525 has long 2 +87258 4525 wanted to say , confronting the roots of his own preoccupations and obsessions 2 +87259 4525 wanted to say , 2 +87260 4525 wanted to say 2 +87261 4525 confronting the roots of his own preoccupations and obsessions 2 +87262 4525 the roots of his own preoccupations and obsessions 2 +87263 4525 the roots 2 +87264 4525 of his own preoccupations and obsessions 2 +87265 4525 his own preoccupations and obsessions 3 +87266 4525 own preoccupations and obsessions 2 +87267 4525 preoccupations and obsessions 2 +87268 4525 preoccupations and 2 +87269 4525 preoccupations 2 +87270 4525 obsessions 2 +87271 4525 he allows nothing to get in the way 3 +87272 4525 allows nothing to get in the way 2 +87273 4525 allows nothing 1 +87274 4525 to get in the way 1 +87275 4525 get in the way 1 +87276 4526 I felt trapped and with no obvious escape for the entire 100 minutes . 1 +87277 4526 felt trapped and with no obvious escape for the entire 100 minutes . 1 +87278 4526 felt trapped and with no obvious escape for the entire 100 minutes 0 +87279 4526 felt trapped and with no obvious escape 1 +87280 4526 trapped and with no obvious escape 2 +87281 4526 trapped and 1 +87282 4526 with no obvious escape 1 +87283 4526 no obvious escape 1 +87284 4526 obvious escape 2 +87285 4526 for the entire 100 minutes 2 +87286 4526 the entire 100 minutes 2 +87287 4526 entire 100 minutes 2 +87288 4527 The action quickly sinks into by-the-numbers territory . 1 +87289 4527 quickly sinks into by-the-numbers territory . 1 +87290 4527 sinks into by-the-numbers territory . 1 +87291 4527 sinks into by-the-numbers territory 1 +87292 4527 into by-the-numbers territory 1 +87293 4527 by-the-numbers territory 2 +87294 4528 Some Body is a shaky , uncertain film that nevertheless touches a few raw nerves . 3 +87295 4528 is a shaky , uncertain film that nevertheless touches a few raw nerves . 1 +87296 4528 is a shaky , uncertain film that nevertheless touches a few raw nerves 1 +87297 4528 a shaky , uncertain film that nevertheless touches a few raw nerves 2 +87298 4528 a shaky , uncertain film 1 +87299 4528 shaky , uncertain film 1 +87300 4528 shaky 1 +87301 4528 , uncertain film 1 +87302 4528 uncertain film 2 +87303 4528 that nevertheless touches a few raw nerves 3 +87304 4528 nevertheless touches a few raw nerves 2 +87305 4528 touches a few raw nerves 2 +87306 4528 a few raw nerves 2 +87307 4528 few raw nerves 2 +87308 4528 raw nerves 2 +87309 4529 At the end , when the now computerized Yoda finally reveals his martial artistry , the film ascends to a kinetic life so teeming that even cranky adults may rediscover the quivering kid inside . 3 +87310 4529 , when the now computerized Yoda finally reveals his martial artistry , the film ascends to a kinetic life so teeming that even cranky adults may rediscover the quivering kid inside . 4 +87311 4529 when the now computerized Yoda finally reveals his martial artistry , the film ascends to a kinetic life so teeming that even cranky adults may rediscover the quivering kid inside . 3 +87312 4529 when the now computerized Yoda finally reveals his martial artistry 2 +87313 4529 the now computerized Yoda finally reveals his martial artistry 2 +87314 4529 the now computerized Yoda 2 +87315 4529 now computerized Yoda 2 +87316 4529 computerized Yoda 2 +87317 4529 computerized 2 +87318 4529 Yoda 2 +87319 4529 finally reveals his martial artistry 2 +87320 4529 reveals his martial artistry 2 +87321 4529 his martial artistry 3 +87322 4529 martial artistry 2 +87323 4529 , the film ascends to a kinetic life so teeming that even cranky adults may rediscover the quivering kid inside . 4 +87324 4529 the film ascends to a kinetic life so teeming that even cranky adults may rediscover the quivering kid inside . 4 +87325 4529 ascends to a kinetic life so teeming that even cranky adults may rediscover the quivering kid inside . 4 +87326 4529 ascends to a kinetic life so teeming that even cranky adults may rediscover the quivering kid inside 4 +87327 4529 ascends 2 +87328 4529 to a kinetic life so teeming that even cranky adults may rediscover the quivering kid inside 3 +87329 4529 a kinetic life so teeming that even cranky adults may rediscover the quivering kid inside 3 +87330 4529 a kinetic life 2 +87331 4529 kinetic life 2 +87332 4529 kinetic 2 +87333 4529 so teeming that even cranky adults may rediscover the quivering kid inside 4 +87334 4529 teeming that even cranky adults may rediscover the quivering kid inside 3 +87335 4529 that even cranky adults may rediscover the quivering kid inside 4 +87336 4529 even cranky adults may rediscover the quivering kid inside 3 +87337 4529 even cranky adults 2 +87338 4529 cranky adults 1 +87339 4529 may rediscover the quivering kid inside 2 +87340 4529 rediscover the quivering kid inside 3 +87341 4529 rediscover the quivering kid 2 +87342 4529 rediscover 2 +87343 4529 the quivering kid 2 +87344 4529 quivering kid 2 +87345 4529 quivering 2 +87346 4530 Rarely , a movie is more than a movie . 3 +87347 4530 , a movie is more than a movie . 2 +87348 4530 a movie is more than a movie . 3 +87349 4530 is more than a movie . 3 +87350 4530 is more than a movie 3 +87351 4530 more than a movie 3 +87352 4531 Lacks the inspiration of the original and has a bloated plot that stretches the running time about 10 minutes past a child 's interest and an adult 's patience . 0 +87353 4531 Lacks the inspiration of the original and has a bloated plot that stretches the running time about 10 minutes past a child 's interest and an adult 's patience 0 +87354 4531 Lacks the inspiration of the original and 1 +87355 4531 Lacks the inspiration of the original 1 +87356 4531 the inspiration of the original 3 +87357 4531 the inspiration 3 +87358 4531 has a bloated plot that stretches the running time about 10 minutes past a child 's interest and an adult 's patience 0 +87359 4531 has a bloated plot that stretches the running time about 10 minutes 1 +87360 4531 a bloated plot that stretches the running time about 10 minutes 0 +87361 4531 a bloated plot 1 +87362 4531 bloated plot 1 +87363 4531 that stretches the running time about 10 minutes 1 +87364 4531 stretches the running time about 10 minutes 2 +87365 4531 stretches the running time 2 +87366 4531 about 10 minutes 2 +87367 4531 about 10 2 +87368 4531 past a child 's interest and an adult 's patience 1 +87369 4531 a child 's interest and an adult 's patience 1 +87370 4531 a child 's interest and 3 +87371 4531 a child 's interest 2 +87372 4531 a child 's 2 +87373 4531 an adult 's patience 2 +87374 4531 an adult 's 2 +87375 4531 adult 's 2 +87376 4532 A strong and confident work which works so well for the first 89 minutes , but ends so horrendously confusing in the final two 3 +87377 4532 A strong and confident work which works so well for the first 89 minutes , but ends so horrendously confusing 1 +87378 4532 A strong and confident work 4 +87379 4532 strong and confident work 4 +87380 4532 strong and confident 3 +87381 4532 which works so well for the first 89 minutes , but ends so horrendously confusing 1 +87382 4532 works so well for the first 89 minutes , but ends so horrendously confusing 1 +87383 4532 works so well for the first 89 minutes , but 1 +87384 4532 works so well for the first 89 minutes , 3 +87385 4532 works so well for the first 89 minutes 3 +87386 4532 works so well 3 +87387 4532 for the first 89 minutes 2 +87388 4532 the first 89 minutes 2 +87389 4532 first 89 minutes 2 +87390 4532 89 minutes 2 +87391 4532 89 2 +87392 4532 ends so horrendously confusing 0 +87393 4532 so horrendously confusing 0 +87394 4532 horrendously confusing 0 +87395 4532 in the final two 2 +87396 4532 the final two 2 +87397 4532 final two 2 +87398 4533 Merchant has n't directed this movie so much as produced it -- like sausage . 2 +87399 4533 has n't directed this movie so much as produced it -- like sausage . 2 +87400 4533 has n't directed this movie so much as produced it -- like sausage 1 +87401 4533 directed this movie so much as produced it -- like sausage 1 +87402 4533 this movie so much as produced it -- like sausage 1 +87403 4533 this movie so much as produced it -- 2 +87404 4533 this movie so much as produced it 2 +87405 4533 so much as produced it 2 +87406 4533 so much as 2 +87407 4533 much as 2 +87408 4533 produced it 2 +87409 4533 like sausage 2 +87410 4533 sausage 2 +87411 4534 Everything in Maid in Manhattan is exceedingly pleasant , designed not to offend . 3 +87412 4534 Everything in Maid in Manhattan 2 +87413 4534 in Maid in Manhattan 2 +87414 4534 is exceedingly pleasant , designed not to offend . 3 +87415 4534 is exceedingly pleasant , designed not to offend 3 +87416 4534 is exceedingly pleasant , 4 +87417 4534 is exceedingly pleasant 4 +87418 4534 exceedingly pleasant 4 +87419 4534 designed not to offend 2 +87420 4534 not to offend 2 +87421 4535 The series ' message about making the right choice in the face of tempting alternatives remains prominent , as do the girls ' amusing personalities . 3 +87422 4535 The series ' message about making the right choice in the face of tempting alternatives 3 +87423 4535 The series ' message 2 +87424 4535 The series ' 2 +87425 4535 series ' 2 +87426 4535 about making the right choice in the face of tempting alternatives 2 +87427 4535 making the right choice in the face of tempting alternatives 3 +87428 4535 making the right choice 3 +87429 4535 the right choice 3 +87430 4535 right choice 3 +87431 4535 in the face of tempting alternatives 2 +87432 4535 the face of tempting alternatives 2 +87433 4535 of tempting alternatives 2 +87434 4535 tempting alternatives 2 +87435 4535 tempting 2 +87436 4535 alternatives 2 +87437 4535 remains prominent , as do the girls ' amusing personalities . 3 +87438 4535 remains prominent , as do the girls ' amusing personalities 3 +87439 4535 remains prominent , 3 +87440 4535 remains prominent 3 +87441 4535 prominent 3 +87442 4535 as do the girls ' amusing personalities 3 +87443 4535 do the girls ' amusing personalities 2 +87444 4535 the girls ' amusing personalities 3 +87445 4535 amusing personalities 3 +87446 4536 Adam SANDLER ! 2 +87447 4536 SANDLER ! 2 +87448 4537 The problem is that the movie has no idea of it is serious or not . 1 +87449 4537 is that the movie has no idea of it is serious or not . 1 +87450 4537 is that the movie has no idea of it is serious or not 1 +87451 4537 that the movie has no idea of it is serious or not 1 +87452 4537 that the movie has no idea of it is serious or 1 +87453 4537 that the movie has no idea of it is serious 1 +87454 4537 the movie has no idea of it is serious 1 +87455 4537 has no idea of it is serious 1 +87456 4537 no idea of it is serious 1 +87457 4537 no idea of it 2 +87458 4537 is serious 2 +87459 4538 It 's just weirdness for the sake of weirdness , and where Human Nature should be ingratiating , it 's just grating . 1 +87460 4538 It 's just weirdness for the sake of weirdness , and where Human Nature should be ingratiating , it 's just grating 1 +87461 4538 It 's just weirdness for the sake of weirdness , and 1 +87462 4538 It 's just weirdness for the sake of weirdness , 1 +87463 4538 It 's just weirdness for the sake of weirdness 1 +87464 4538 's just weirdness for the sake of weirdness 1 +87465 4538 weirdness for the sake of weirdness 1 +87466 4538 for the sake of weirdness 2 +87467 4538 the sake of weirdness 2 +87468 4538 of weirdness 2 +87469 4538 where Human Nature should be ingratiating , it 's just grating 1 +87470 4538 where Human Nature should be ingratiating 1 +87471 4538 Human Nature should be ingratiating 1 +87472 4538 should be ingratiating 2 +87473 4538 be ingratiating 2 +87474 4538 , it 's just grating 1 +87475 4538 it 's just grating 1 +87476 4538 's just grating 1 +87477 4539 A touching , sophisticated film that almost seems like a documentary in the way it captures an Italian immigrant family on the brink of major changes . 3 +87478 4539 A touching , sophisticated film that almost seems like a documentary in the way 4 +87479 4539 A touching , sophisticated film 3 +87480 4539 touching , sophisticated film 4 +87481 4539 , sophisticated film 3 +87482 4539 sophisticated film 3 +87483 4539 that almost seems like a documentary in the way 2 +87484 4539 almost seems like a documentary in the way 3 +87485 4539 seems like a documentary in the way 2 +87486 4539 like a documentary in the way 1 +87487 4539 a documentary in the way 2 +87488 4539 it captures an Italian immigrant family on the brink of major changes . 2 +87489 4539 captures an Italian immigrant family on the brink of major changes . 3 +87490 4539 captures an Italian immigrant family on the brink of major changes 3 +87491 4539 captures an Italian immigrant family 2 +87492 4539 an Italian immigrant family 2 +87493 4539 Italian immigrant family 2 +87494 4539 immigrant family 2 +87495 4539 immigrant 2 +87496 4539 on the brink of major changes 3 +87497 4539 the brink of major changes 2 +87498 4539 of major changes 2 +87499 4539 major changes 2 +87500 4540 Spectacularly beautiful , not to mention mysterious , sensual , emotionally intense , and replete with virtuoso throat-singing . 4 +87501 4540 Spectacularly beautiful 4 +87502 4540 , not to mention mysterious , sensual , emotionally intense , and replete with virtuoso throat-singing . 4 +87503 4540 not to mention mysterious , sensual , emotionally intense , and replete with virtuoso throat-singing . 3 +87504 4540 not to mention mysterious , sensual , emotionally intense , and replete with virtuoso throat-singing 4 +87505 4540 to mention mysterious , sensual , emotionally intense , and replete with virtuoso throat-singing 3 +87506 4540 mention mysterious , sensual , emotionally intense , and replete with virtuoso throat-singing 4 +87507 4540 mention mysterious , sensual , emotionally intense , and replete 3 +87508 4540 mysterious , sensual , emotionally intense , and replete 3 +87509 4540 mysterious , sensual , emotionally intense , and 3 +87510 4540 mysterious , sensual , emotionally intense , 4 +87511 4540 mysterious , sensual , emotionally intense 4 +87512 4540 mysterious , sensual , 3 +87513 4540 mysterious , sensual 3 +87514 4540 mysterious , 3 +87515 4540 emotionally intense 3 +87516 4540 with virtuoso throat-singing 3 +87517 4540 virtuoso throat-singing 3 +87518 4540 virtuoso 3 +87519 4540 throat-singing 2 +87520 4541 Thoroughly awful . 0 +87521 4541 Thoroughly awful 0 +87522 4542 Despite Hoffman 's best efforts , Wilson remains a silent , lumpish cipher ; his encounters reveal nothing about who he is or who he was before . 2 +87523 4542 Despite Hoffman 's best efforts , Wilson remains a silent , lumpish cipher ; his encounters reveal nothing about who he is or who he was before 1 +87524 4542 Despite Hoffman 's best efforts , Wilson remains a silent , lumpish cipher ; 2 +87525 4542 Despite Hoffman 's best efforts , Wilson remains a silent , lumpish cipher 1 +87526 4542 Despite Hoffman 's best efforts 1 +87527 4542 Hoffman 's best efforts 3 +87528 4542 best efforts 3 +87529 4542 , Wilson remains a silent , lumpish cipher 1 +87530 4542 Wilson remains a silent , lumpish cipher 1 +87531 4542 remains a silent , lumpish cipher 1 +87532 4542 a silent , lumpish cipher 1 +87533 4542 silent , lumpish cipher 1 +87534 4542 , lumpish cipher 1 +87535 4542 lumpish cipher 2 +87536 4542 lumpish 2 +87537 4542 his encounters reveal nothing about who he is or who he was before 1 +87538 4542 his encounters 2 +87539 4542 reveal nothing about who he is or who he was before 1 +87540 4542 nothing about who he is or who he was before 1 +87541 4542 about who he is or who he was before 2 +87542 4542 who he is or who he was before 2 +87543 4542 who he is or 2 +87544 4542 who he is 2 +87545 4542 who he was before 3 +87546 4542 he was before 2 +87547 4542 was before 2 +87548 4543 A summer entertainment adults can see without feeling embarrassed , but it could have been more . 3 +87549 4543 A summer entertainment adults can see without feeling embarrassed , but it could have been more 2 +87550 4543 A summer entertainment adults can see without feeling embarrassed , but 3 +87551 4543 A summer entertainment adults can see without feeling embarrassed , 4 +87552 4543 A summer entertainment adults can see without feeling embarrassed 4 +87553 4543 entertainment adults can see without feeling embarrassed 3 +87554 4543 entertainment adults 2 +87555 4543 can see without feeling embarrassed 3 +87556 4543 see without feeling embarrassed 2 +87557 4543 without feeling embarrassed 2 +87558 4543 feeling embarrassed 1 +87559 4543 it could have been more 2 +87560 4543 could have been more 2 +87561 4543 have been more 2 +87562 4543 been more 2 +87563 4544 Intimate and panoramic . 3 +87564 4544 Intimate and panoramic 3 +87565 4544 panoramic 2 +87566 4545 These people are really going to love The Piano Teacher . 4 +87567 4545 are really going to love The Piano Teacher . 3 +87568 4545 are really going to love The Piano Teacher 3 +87569 4545 are really 2 +87570 4545 going to love The Piano Teacher 4 +87571 4545 to love The Piano Teacher 3 +87572 4545 love The Piano Teacher 3 +87573 4546 , The Sum of All Fears is simply a well-made and satisfying thriller . 4 +87574 4546 , The Sum of All Fears 2 +87575 4546 , The Sum 2 +87576 4546 is simply a well-made and satisfying thriller . 4 +87577 4546 is simply a well-made and satisfying thriller 4 +87578 4546 a well-made and satisfying thriller 4 +87579 4546 well-made and satisfying thriller 4 +87580 4546 well-made and satisfying 4 +87581 4546 well-made and 3 +87582 4547 It is philosophy , illustrated through everyday events . 3 +87583 4547 is philosophy , illustrated through everyday events . 2 +87584 4547 is philosophy , illustrated through everyday events 3 +87585 4547 philosophy , illustrated through everyday events 2 +87586 4547 philosophy , 2 +87587 4547 illustrated through everyday events 2 +87588 4547 illustrated 2 +87589 4547 through everyday events 2 +87590 4547 everyday events 2 +87591 4548 Another useless recycling of a brutal mid - '70s American sports movie . 1 +87592 4548 Another useless recycling of a brutal mid - '70s American sports movie 0 +87593 4548 Another useless recycling of a brutal mid - 1 +87594 4548 Another useless recycling of a brutal mid 1 +87595 4548 Another useless recycling 0 +87596 4548 useless recycling 2 +87597 4548 recycling 3 +87598 4548 of a brutal mid 1 +87599 4548 a brutal mid 2 +87600 4548 brutal mid 1 +87601 4548 mid 2 +87602 4548 '70s American sports movie 2 +87603 4548 '70s American sports 2 +87604 4548 American sports 3 +87605 4549 A plodding look at the French Revolution through the eyes of aristocrats . 2 +87606 4549 A plodding 2 +87607 4549 look at the French Revolution through the eyes of aristocrats . 3 +87608 4549 look at the French Revolution through the eyes of aristocrats 2 +87609 4549 look at the French Revolution 2 +87610 4549 at the French Revolution 2 +87611 4549 the French Revolution 2 +87612 4549 French Revolution 2 +87613 4549 through the eyes of aristocrats 2 +87614 4549 the eyes of aristocrats 2 +87615 4549 of aristocrats 2 +87616 4549 aristocrats 2 +87617 4550 Ali 's graduation from little screen to big is far less painful than his opening scene encounter with an over-amorous terrier . 2 +87618 4550 Ali 's graduation from little screen to big 3 +87619 4550 Ali 's graduation 2 +87620 4550 Ali 's 2 +87621 4550 Ali 2 +87622 4550 graduation 2 +87623 4550 from little screen to big 3 +87624 4550 little screen to big 2 +87625 4550 little screen 2 +87626 4550 to big 2 +87627 4550 is far less painful than his opening scene encounter with an over-amorous terrier . 2 +87628 4550 is far less painful than his opening scene encounter with an over-amorous terrier 2 +87629 4550 far less painful than his opening scene encounter with an over-amorous terrier 2 +87630 4550 far less painful 2 +87631 4550 less painful 2 +87632 4550 than his opening scene encounter with an over-amorous terrier 3 +87633 4550 his opening scene encounter with an over-amorous terrier 2 +87634 4550 his opening scene encounter 2 +87635 4550 opening scene encounter 2 +87636 4550 scene encounter 2 +87637 4550 with an over-amorous terrier 2 +87638 4550 an over-amorous terrier 2 +87639 4550 over-amorous terrier 2 +87640 4550 over-amorous 2 +87641 4550 terrier 2 +87642 4551 There is a welcome lack of pretension about the film , which very simply sets out to entertain and ends up delivering in good measure . 4 +87643 4551 is a welcome lack of pretension about the film , which very simply sets out to entertain and ends up delivering in good measure . 3 +87644 4551 is a welcome lack of pretension about the film , which very simply sets out to entertain and ends up delivering in good measure 4 +87645 4551 a welcome lack of pretension about the film , which very simply sets out to entertain and ends up delivering in good measure 2 +87646 4551 a welcome lack 3 +87647 4551 welcome lack 2 +87648 4551 of pretension about the film , which very simply sets out to entertain and ends up delivering in good measure 3 +87649 4551 pretension about the film , which very simply sets out to entertain and ends up delivering in good measure 4 +87650 4551 about the film , which very simply sets out to entertain and ends up delivering in good measure 3 +87651 4551 the film , which very simply sets out to entertain and ends up delivering in good measure 3 +87652 4551 which very simply sets out to entertain and ends up delivering in good measure 3 +87653 4551 very simply sets out to entertain and ends up delivering in good measure 3 +87654 4551 very simply 2 +87655 4551 sets out to entertain and ends up delivering in good measure 4 +87656 4551 sets out to entertain and 3 +87657 4551 sets out to entertain 3 +87658 4551 ends up delivering in good measure 3 +87659 4551 delivering in good measure 3 +87660 4551 in good measure 3 +87661 4551 good measure 3 +87662 4552 Could this be the first major studio production shot on video tape instead of film ? 1 +87663 4552 Could this be the first major studio production shot on video tape instead of film 2 +87664 4552 Could this 2 +87665 4552 be the first major studio production shot on video tape instead of film 3 +87666 4552 the first major studio production shot on video tape instead of film 2 +87667 4552 the first major studio production 2 +87668 4552 first major studio production 3 +87669 4552 major studio production 2 +87670 4552 studio production 2 +87671 4552 shot on video tape instead of film 2 +87672 4552 on video tape instead of film 2 +87673 4552 video tape instead of film 2 +87674 4552 video tape 2 +87675 4552 tape 2 +87676 4552 instead of film 2 +87677 4553 Ice Age posits a heretofore unfathomable question : Is it possible for computer-generated characters to go through the motions ? 2 +87678 4553 posits a heretofore unfathomable question : Is it possible for computer-generated characters to go through the motions ? 2 +87679 4553 posits a heretofore unfathomable question : Is it possible for computer-generated characters to go through the motions 2 +87680 4553 posits a heretofore unfathomable question : Is it possible for computer-generated characters 2 +87681 4553 posits 2 +87682 4553 a heretofore unfathomable question : Is it possible for computer-generated characters 1 +87683 4553 a heretofore unfathomable question : 2 +87684 4553 a heretofore unfathomable question 1 +87685 4553 heretofore unfathomable question 2 +87686 4553 heretofore 2 +87687 4553 unfathomable question 2 +87688 4553 unfathomable 1 +87689 4553 Is it possible for computer-generated characters 2 +87690 4553 possible for computer-generated characters 2 +87691 4553 for computer-generated characters 2 +87692 4553 computer-generated characters 2 +87693 4553 to go through the motions 2 +87694 4553 go through the motions 2 +87695 4554 Walsh ca n't quite negotiate the many inconsistencies in Janice 's behavior or compensate for them by sheer force of charm . 2 +87696 4554 ca n't quite negotiate the many inconsistencies in Janice 's behavior or compensate for them by sheer force of charm . 2 +87697 4554 ca n't quite negotiate the many inconsistencies in Janice 's behavior or compensate for them by sheer force of charm 3 +87698 4554 negotiate the many inconsistencies in Janice 's behavior or compensate for them by sheer force of charm 3 +87699 4554 negotiate the many inconsistencies in Janice 's behavior or 1 +87700 4554 negotiate the many inconsistencies in Janice 's behavior 2 +87701 4554 the many inconsistencies in Janice 's behavior 2 +87702 4554 the many inconsistencies 1 +87703 4554 many inconsistencies 1 +87704 4554 in Janice 's behavior 3 +87705 4554 Janice 's behavior 1 +87706 4554 Janice 's 2 +87707 4554 compensate for them by sheer force of charm 2 +87708 4554 compensate for them 2 +87709 4554 by sheer force of charm 3 +87710 4554 sheer force of charm 3 +87711 4554 sheer force 2 +87712 4554 of charm 3 +87713 4555 The screenplay never lets us forget that Bourne was once an amoral assassin just like the ones who are pursuing him ... There is never really a true `` us '' versus `` them '' . 3 +87714 4555 The screenplay never lets us forget that Bourne was once an amoral assassin just like the ones who are pursuing him ... There is never really a true `` us '' versus `` them '' 3 +87715 4555 The screenplay never lets us forget that Bourne was once an amoral assassin just like the ones who are pursuing him ... 2 +87716 4555 The screenplay never lets us forget that Bourne was once an amoral assassin just like the ones who are pursuing him 3 +87717 4555 never lets us forget that Bourne was once an amoral assassin just like the ones who are pursuing him 2 +87718 4555 lets us forget that Bourne was once an amoral assassin just like the ones who are pursuing him 2 +87719 4555 us forget that Bourne was once an amoral assassin just like the ones who are pursuing him 2 +87720 4555 forget that Bourne was once an amoral assassin just like the ones who are pursuing him 2 +87721 4555 that Bourne was once an amoral assassin just like the ones who are pursuing him 2 +87722 4555 Bourne was once an amoral assassin just like the ones who are pursuing him 2 +87723 4555 was once an amoral assassin just like the ones who are pursuing him 1 +87724 4555 was once an amoral assassin just 2 +87725 4555 was once an amoral assassin 2 +87726 4555 was once 2 +87727 4555 an amoral assassin 2 +87728 4555 amoral assassin 1 +87729 4555 amoral 1 +87730 4555 like the ones who are pursuing him 2 +87731 4555 the ones who are pursuing him 2 +87732 4555 who are pursuing him 2 +87733 4555 are pursuing him 2 +87734 4555 pursuing him 2 +87735 4555 pursuing 2 +87736 4555 There is never really a true `` us '' versus `` them '' 2 +87737 4555 is never really a true `` us '' versus `` them '' 2 +87738 4555 really a true `` us '' versus `` them '' 3 +87739 4555 really a true 3 +87740 4555 a true 3 +87741 4555 `` us '' versus `` them '' 2 +87742 4555 us '' versus `` them '' 2 +87743 4555 '' versus `` them '' 2 +87744 4555 versus `` them '' 2 +87745 4555 `` them '' 2 +87746 4555 them '' 2 +87747 4556 There 's real visual charge to the filmmaking , and a strong erotic spark to the most crucial lip-reading sequence . 3 +87748 4556 There 's real visual charge to the filmmaking , and a strong erotic spark to the most crucial lip-reading sequence 3 +87749 4556 There 's real visual charge to the filmmaking , and 3 +87750 4556 There 's real visual charge to the filmmaking , 4 +87751 4556 There 's real visual charge to the filmmaking 3 +87752 4556 's real visual charge to the filmmaking 3 +87753 4556 real visual charge to the filmmaking 3 +87754 4556 real visual charge 3 +87755 4556 visual charge 2 +87756 4556 charge 2 +87757 4556 to the filmmaking 2 +87758 4556 a strong erotic spark to the most crucial lip-reading sequence 3 +87759 4556 a strong erotic 2 +87760 4556 strong erotic 3 +87761 4556 spark to the most crucial lip-reading sequence 2 +87762 4556 to the most crucial lip-reading sequence 1 +87763 4556 the most crucial lip-reading sequence 2 +87764 4556 most crucial lip-reading sequence 2 +87765 4556 most crucial 2 +87766 4556 lip-reading sequence 2 +87767 4556 lip-reading 1 +87768 4557 Does n't add up to much . 0 +87769 4557 Does n't add up to much 1 +87770 4558 Please , someone , stop Eric Schaeffer before he makes another film . 0 +87771 4558 , someone , stop Eric Schaeffer before he makes another film . 1 +87772 4558 someone , stop Eric Schaeffer before he makes another film . 0 +87773 4558 , stop Eric Schaeffer before he makes another film . 0 +87774 4558 stop Eric Schaeffer before he makes another film . 2 +87775 4558 stop Eric Schaeffer before he makes another film 0 +87776 4558 stop Eric Schaeffer 2 +87777 4558 before he makes another film 2 +87778 4558 he makes another film 2 +87779 4558 makes another film 2 +87780 4558 another film 2 +87781 4559 Tsai Ming-liang 's witty , wistful new film , What Time Is It There ? 3 +87782 4559 Tsai Ming-liang 's witty , wistful new film 3 +87783 4559 Ming-liang 's witty , wistful new film 4 +87784 4559 Ming-liang 's 2 +87785 4559 witty , wistful new film 3 +87786 4559 , wistful new film 3 +87787 4559 wistful new film 3 +87788 4559 , What Time Is It There ? 2 +87789 4560 A lively and engaging examination of how similar obsessions can dominate a family . 4 +87790 4560 A lively and engaging examination of how similar obsessions can dominate a family 3 +87791 4560 A lively and engaging examination 4 +87792 4560 lively and engaging examination 4 +87793 4560 and engaging examination 3 +87794 4560 engaging examination 3 +87795 4560 of how similar obsessions can dominate a family 2 +87796 4560 how similar obsessions can dominate a family 2 +87797 4560 similar obsessions can dominate a family 1 +87798 4560 similar obsessions 2 +87799 4560 can dominate a family 2 +87800 4560 dominate a family 1 +87801 4561 With each of her three protagonists , Miller eloquently captures the moment when a woman 's life , out of a deep-seated , emotional need , is about to turn onto a different path . 4 +87802 4561 With each of her three protagonists 2 +87803 4561 each of her three protagonists 2 +87804 4561 of her three protagonists 2 +87805 4561 her three protagonists 2 +87806 4561 three protagonists 2 +87807 4561 , Miller eloquently captures the moment when a woman 's life , out of a deep-seated , emotional need , is about to turn onto a different path . 3 +87808 4561 Miller eloquently captures the moment when a woman 's life , out of a deep-seated , emotional need , is about to turn onto a different path . 4 +87809 4561 Miller eloquently 2 +87810 4561 captures the moment when a woman 's life , out of a deep-seated , emotional need , is about to turn onto a different path . 3 +87811 4561 captures the moment when a woman 's life , out of a deep-seated , emotional need , is about to turn onto a different path 3 +87812 4561 the moment when a woman 's life , out of a deep-seated , emotional need , is about to turn onto a different path 3 +87813 4561 when a woman 's life , out of a deep-seated , emotional need , is about to turn onto a different path 3 +87814 4561 a woman 's life , out of a deep-seated , emotional need , is about to turn onto a different path 2 +87815 4561 a woman 's life , out of a deep-seated , emotional need , 2 +87816 4561 a woman 's life , out of a deep-seated , emotional need 2 +87817 4561 a woman 's life , 2 +87818 4561 a woman 's life 2 +87819 4561 out of a deep-seated , emotional need 2 +87820 4561 of a deep-seated , emotional need 2 +87821 4561 a deep-seated , emotional need 2 +87822 4561 deep-seated , emotional need 3 +87823 4561 deep-seated , emotional 3 +87824 4561 deep-seated 2 +87825 4561 , emotional 2 +87826 4561 is about to turn onto a different path 3 +87827 4561 about to turn onto a different path 2 +87828 4561 to turn onto a different path 2 +87829 4561 turn onto a different path 2 +87830 4561 onto a different path 3 +87831 4561 a different path 2 +87832 4561 different path 2 +87833 4562 I did n't think so . 2 +87834 4562 did n't think so . 2 +87835 4562 did n't think so 2 +87836 4563 There are n't too many films that can be as simultaneously funny , offbeat and heartwarming -LRB- without a thick shmear of the goo , at least -RRB- , but `` Elling '' manages to do all three quite well , making it one of the year 's most enjoyable releases . 4 +87837 4563 There are n't too many films that can be as simultaneously funny , offbeat and heartwarming -LRB- without a thick shmear of the goo , at least -RRB- , but `` Elling '' manages to do all three quite well , making it one of the year 's most enjoyable releases 4 +87838 4563 There are n't too many films that can be as simultaneously funny , offbeat and heartwarming -LRB- without a thick shmear of the goo , at least -RRB- , but 4 +87839 4563 There are n't too many films that can be as simultaneously funny , offbeat and heartwarming -LRB- without a thick shmear of the goo , at least -RRB- , 3 +87840 4563 There are n't too many films that can be as simultaneously funny , offbeat and heartwarming -LRB- without a thick shmear of the goo , at least -RRB- 4 +87841 4563 are n't too many films that can be as simultaneously funny , offbeat and heartwarming -LRB- without a thick shmear of the goo , at least -RRB- 3 +87842 4563 too many films that can be as simultaneously funny , offbeat and heartwarming -LRB- without a thick shmear of the goo , at least -RRB- 3 +87843 4563 too many films 1 +87844 4563 many films 2 +87845 4563 that can be as simultaneously funny , offbeat and heartwarming -LRB- without a thick shmear of the goo , at least -RRB- 3 +87846 4563 can be as simultaneously funny , offbeat and heartwarming -LRB- without a thick shmear of the goo , at least -RRB- 2 +87847 4563 be as simultaneously funny , offbeat and heartwarming -LRB- without a thick shmear of the goo , at least -RRB- 4 +87848 4563 be as simultaneously funny , offbeat and heartwarming 4 +87849 4563 as simultaneously funny , offbeat and heartwarming 4 +87850 4563 as simultaneously funny , offbeat and 4 +87851 4563 as simultaneously funny , offbeat 3 +87852 4563 as simultaneously funny , 3 +87853 4563 as simultaneously funny 4 +87854 4563 as simultaneously 2 +87855 4563 -LRB- without a thick shmear of the goo , at least -RRB- 2 +87856 4563 without a thick shmear of the goo , at least -RRB- 2 +87857 4563 without a thick shmear of the goo , at least 2 +87858 4563 a thick shmear of the goo , at least 2 +87859 4563 a thick shmear 2 +87860 4563 thick shmear 2 +87861 4563 shmear 2 +87862 4563 of the goo , at least 2 +87863 4563 the goo , at least 2 +87864 4563 the goo , 2 +87865 4563 the goo 1 +87866 4563 goo 2 +87867 4563 `` Elling '' manages to do all three quite well , making it one of the year 's most enjoyable releases 4 +87868 4563 Elling '' manages to do all three quite well , making it one of the year 's most enjoyable releases 4 +87869 4563 '' manages to do all three quite well , making it one of the year 's most enjoyable releases 4 +87870 4563 manages to do all three quite well , making it one of the year 's most enjoyable releases 4 +87871 4563 to do all three quite well , making it one of the year 's most enjoyable releases 4 +87872 4563 do all three quite well , making it one of the year 's most enjoyable releases 4 +87873 4563 do all three quite well , 3 +87874 4563 do all three quite well 3 +87875 4563 do all three 2 +87876 4563 all three 2 +87877 4563 quite well 2 +87878 4563 making it one of the year 's most enjoyable releases 4 +87879 4563 it one of the year 's most enjoyable releases 4 +87880 4563 one of the year 's most enjoyable releases 4 +87881 4563 of the year 's most enjoyable releases 4 +87882 4563 the year 's most enjoyable releases 3 +87883 4563 most enjoyable releases 4 +87884 4563 most enjoyable 4 +87885 4563 releases 2 +87886 4564 And in a sense , that 's a liability . 1 +87887 4564 in a sense , that 's a liability . 1 +87888 4564 in a sense 2 +87889 4564 , that 's a liability . 1 +87890 4564 that 's a liability . 1 +87891 4564 's a liability . 2 +87892 4564 's a liability 1 +87893 4564 a liability 0 +87894 4565 Both heartbreaking and heartwarming ... just a simple fable done in an artless sytle , but it 's tremendously moving . 4 +87895 4565 Both heartbreaking and heartwarming ... just a simple fable done in an artless sytle , but it 's tremendously moving 3 +87896 4565 Both heartbreaking and heartwarming ... 3 +87897 4565 Both heartbreaking and heartwarming 3 +87898 4565 Both heartbreaking and 3 +87899 4565 Both heartbreaking 1 +87900 4565 just a simple fable done in an artless sytle , but it 's tremendously moving 4 +87901 4565 just a simple fable done in an artless sytle , but 2 +87902 4565 just a simple fable done in an artless sytle , 0 +87903 4565 just a simple fable done in an artless sytle 1 +87904 4565 just a simple fable 2 +87905 4565 a simple fable 2 +87906 4565 simple fable 2 +87907 4565 done in an artless sytle 2 +87908 4565 in an artless sytle 2 +87909 4565 an artless sytle 2 +87910 4565 artless sytle 1 +87911 4565 artless 0 +87912 4565 sytle 2 +87913 4565 it 's tremendously moving 4 +87914 4565 's tremendously moving 4 +87915 4565 tremendously moving 4 +87916 4565 tremendously 2 +87917 4566 It 's unlikely we 'll see a better thriller this year . 3 +87918 4566 's unlikely we 'll see a better thriller this year . 4 +87919 4566 's unlikely we 'll see a better thriller this year 4 +87920 4566 unlikely we 'll see a better thriller this year 2 +87921 4566 we 'll see a better thriller this year 2 +87922 4566 'll see a better thriller this year 1 +87923 4566 see a better thriller this year 1 +87924 4566 see a better thriller 0 +87925 4566 a better thriller 3 +87926 4566 better thriller 3 +87927 4567 Deliberately and devotedly constructed , Far from Heaven is too picture postcard perfect , too neat and new pin-like , too obviously a recreation to resonate . 3 +87928 4567 Deliberately and devotedly constructed 4 +87929 4567 devotedly constructed 2 +87930 4567 devotedly 2 +87931 4567 , Far from Heaven is too picture postcard perfect , too neat and new pin-like , too obviously a recreation to resonate . 2 +87932 4567 Far from Heaven is too picture postcard perfect , too neat and new pin-like , too obviously a recreation to resonate . 2 +87933 4567 Far from Heaven 2 +87934 4567 is too picture postcard perfect , too neat and new pin-like , too obviously a recreation to resonate . 1 +87935 4567 is too picture postcard perfect , too neat and new pin-like , too obviously a recreation to resonate 1 +87936 4567 is too picture postcard perfect , too neat and new pin-like , too obviously 2 +87937 4567 is too picture postcard perfect , too neat and new pin-like , 1 +87938 4567 is too picture postcard perfect , too neat and new pin-like 1 +87939 4567 picture postcard perfect , too neat and new pin-like 1 +87940 4567 postcard perfect , too neat and new pin-like 2 +87941 4567 postcard perfect , 3 +87942 4567 postcard perfect 3 +87943 4567 too neat and new pin-like 1 +87944 4567 too neat and 2 +87945 4567 too neat 2 +87946 4567 new pin-like 2 +87947 4567 pin-like 2 +87948 4567 too obviously 1 +87949 4567 a recreation to resonate 2 +87950 4567 recreation to resonate 3 +87951 4567 recreation 2 +87952 4567 to resonate 2 +87953 4568 The trouble is , its filmmakers run out of clever ideas and visual gags about halfway through . 1 +87954 4568 is , its filmmakers run out of clever ideas and visual gags about halfway through . 1 +87955 4568 is , its filmmakers run out of clever ideas and visual gags about halfway through 2 +87956 4568 its filmmakers run out of clever ideas and visual gags about halfway through 1 +87957 4568 its filmmakers 2 +87958 4568 run out of clever ideas and visual gags about halfway through 1 +87959 4568 run out of clever ideas and visual gags 1 +87960 4568 run out 2 +87961 4568 of clever ideas and visual gags 3 +87962 4568 clever ideas and visual gags 3 +87963 4568 clever ideas and 3 +87964 4568 clever ideas 3 +87965 4568 visual gags 1 +87966 4568 about halfway through 2 +87967 4568 halfway through 2 +87968 4569 It 's just plain lurid when it is n't downright silly . 1 +87969 4569 's just plain lurid when it is n't downright silly . 1 +87970 4569 's just plain lurid when it is n't downright silly 0 +87971 4569 's just plain lurid 1 +87972 4569 plain lurid 1 +87973 4569 when it is n't downright silly 2 +87974 4569 it is n't downright silly 2 +87975 4569 is n't downright silly 1 +87976 4569 downright silly 1 +87977 4570 director Hoffman , his writer and Kline 's agent should serve detention 0 +87978 4570 director Hoffman , his writer and Kline 's agent 2 +87979 4570 director Hoffman , his writer and 2 +87980 4570 director Hoffman , his writer 2 +87981 4570 director Hoffman , 2 +87982 4570 director Hoffman 2 +87983 4570 his writer 2 +87984 4570 Kline 's agent 2 +87985 4570 should serve detention 1 +87986 4570 serve detention 2 +87987 4570 detention 1 +87988 4571 Nor is it a romantic comedy . 2 +87989 4571 is it a romantic comedy . 2 +87990 4571 is it a romantic comedy 2 +87991 4571 a romantic 3 +87992 4572 -LRB- Jeff 's -RRB- gorgeous , fluid compositions , underlined by Neil Finn and Edmund McWilliams 's melancholy music , are charged with metaphor , but rarely easy , obvious or self-indulgent . 3 +87993 4572 -LRB- Jeff 's -RRB- gorgeous , fluid compositions , 4 +87994 4572 -LRB- Jeff 's -RRB- gorgeous , fluid compositions 4 +87995 4572 -LRB- Jeff 's -RRB- gorgeous , 3 +87996 4572 -LRB- Jeff 's -RRB- gorgeous 3 +87997 4572 Jeff 's -RRB- gorgeous 3 +87998 4572 Jeff 's 2 +87999 4572 -RRB- gorgeous 4 +88000 4572 fluid compositions 2 +88001 4572 compositions 2 +88002 4572 underlined by Neil Finn and Edmund McWilliams 's melancholy music , are charged with metaphor , but rarely easy , obvious or self-indulgent . 2 +88003 4572 underlined by Neil Finn and Edmund McWilliams 's melancholy music , are charged with metaphor , but rarely easy , obvious or self-indulgent 2 +88004 4572 underlined by Neil Finn and Edmund 2 +88005 4572 underlined 2 +88006 4572 by Neil Finn and Edmund 2 +88007 4572 Neil Finn and Edmund 2 +88008 4572 Finn and Edmund 2 +88009 4572 Finn and 2 +88010 4572 Finn 3 +88011 4572 Edmund 2 +88012 4572 McWilliams 's melancholy music , are charged with metaphor , but rarely easy , obvious or self-indulgent 2 +88013 4572 McWilliams 's melancholy music , are charged with metaphor , but 2 +88014 4572 McWilliams 's melancholy music , are charged with metaphor , 3 +88015 4572 McWilliams 's melancholy music , are charged with metaphor 2 +88016 4572 McWilliams 's melancholy music 2 +88017 4572 McWilliams 's 2 +88018 4572 McWilliams 2 +88019 4572 melancholy music 2 +88020 4572 , are charged with metaphor 2 +88021 4572 are charged with metaphor 2 +88022 4572 charged with metaphor 2 +88023 4572 charged 3 +88024 4572 with metaphor 2 +88025 4572 rarely easy , obvious or self-indulgent 3 +88026 4572 easy , obvious or self-indulgent 2 +88027 4572 , obvious or self-indulgent 2 +88028 4572 obvious or self-indulgent 1 +88029 4572 obvious or 2 +88030 4573 Whereas Oliver Stone 's conspiracy thriller JFK was long , intricate , star-studded and visually flashy , Interview with the Assassin draws its considerable power from simplicity . 3 +88031 4573 Whereas Oliver Stone 's conspiracy thriller JFK was long , intricate , star-studded and visually flashy 3 +88032 4573 Whereas 2 +88033 4573 Oliver Stone 's conspiracy thriller JFK was long , intricate , star-studded and visually flashy 3 +88034 4573 Oliver Stone 's conspiracy thriller JFK 3 +88035 4573 Oliver Stone 's 2 +88036 4573 Stone 's 2 +88037 4573 conspiracy thriller JFK 2 +88038 4573 conspiracy 2 +88039 4573 thriller JFK 2 +88040 4573 JFK 2 +88041 4573 was long , intricate , star-studded and visually flashy 3 +88042 4573 long , intricate , star-studded and visually flashy 3 +88043 4573 long , intricate , star-studded and 3 +88044 4573 long , intricate , star-studded 3 +88045 4573 long , intricate , 2 +88046 4573 long , intricate 2 +88047 4573 long , 1 +88048 4573 star-studded 3 +88049 4573 , Interview with the Assassin draws its considerable power from simplicity . 3 +88050 4573 Interview with the Assassin draws its considerable power from simplicity . 3 +88051 4573 Interview with the Assassin 2 +88052 4573 draws its considerable power from simplicity . 3 +88053 4573 draws its considerable power from simplicity 3 +88054 4573 draws its considerable power 3 +88055 4573 its considerable power 3 +88056 4573 considerable power 3 +88057 4573 from simplicity 2 +88058 4574 I can analyze this movie in three words : Thumbs Friggin ' Down . 0 +88059 4574 can analyze this movie in three words : Thumbs Friggin ' Down . 0 +88060 4574 can analyze this movie in three words : Thumbs Friggin ' Down 0 +88061 4574 analyze this movie in three words : Thumbs Friggin ' Down 0 +88062 4574 analyze this movie 2 +88063 4574 in three words : Thumbs Friggin ' Down 0 +88064 4574 three words : Thumbs Friggin ' Down 0 +88065 4574 three words : 2 +88066 4574 three words 2 +88067 4574 Thumbs Friggin ' Down 0 +88068 4574 Thumbs Friggin ' 2 +88069 4574 Friggin ' 2 +88070 4574 Friggin 2 +88071 4575 It 's all arty and jazzy and people sit and stare and turn away from one another instead of talking and it 's all about the silences and if you 're into that , have at it . 1 +88072 4575 It 's all arty and jazzy and people sit and stare and turn away from one another instead of talking and it 's all about the silences and if you 're into that , have at it 1 +88073 4575 It 's all arty and jazzy and 2 +88074 4575 It 's all arty and jazzy 3 +88075 4575 's all arty and jazzy 2 +88076 4575 all arty and jazzy 3 +88077 4575 arty and jazzy 3 +88078 4575 arty and 3 +88079 4575 people sit and stare and turn away from one another instead of talking and it 's all about the silences and if you 're into that , have at it 1 +88080 4575 sit and stare and turn away from one another instead of talking and it 's all about the silences and if you 're into that , have at it 1 +88081 4575 sit and stare and turn away from one another instead of talking and 1 +88082 4575 sit and stare and turn away from one another instead of talking 1 +88083 4575 sit and stare and 2 +88084 4575 sit and stare 2 +88085 4575 sit and 2 +88086 4575 turn away from one another instead of talking 1 +88087 4575 turn away from one 1 +88088 4575 turn away 2 +88089 4575 from one 2 +88090 4575 another instead of talking 2 +88091 4575 instead of talking 2 +88092 4575 of talking 2 +88093 4575 it 's all about the silences and if you 're into that , have at it 2 +88094 4575 it 's all about the silences and if you 're into that 2 +88095 4575 it 's all about the silences and 2 +88096 4575 it 's all about the silences 2 +88097 4575 's all about the silences 2 +88098 4575 all about the silences 2 +88099 4575 about the silences 2 +88100 4575 the silences 2 +88101 4575 silences 1 +88102 4575 if you 're into that 2 +88103 4575 you 're into that 2 +88104 4575 're into that 2 +88105 4575 into that 2 +88106 4575 , have at it 2 +88107 4575 have at it 3 +88108 4576 The feature-length stretch ... strains the show 's concept . 1 +88109 4576 The feature-length stretch ... strains the show 's concept 1 +88110 4576 The feature-length stretch ... 2 +88111 4576 The feature-length stretch 2 +88112 4576 feature-length stretch 1 +88113 4576 strains the show 's concept 2 +88114 4576 the show 's concept 3 +88115 4576 the show 's 2 +88116 4576 show 's 2 +88117 4577 The most surprising thing about this film is that they are actually releasing it into theaters . 0 +88118 4577 The most surprising thing about this film 3 +88119 4577 The most surprising thing 3 +88120 4577 most surprising thing 3 +88121 4577 most surprising 2 +88122 4577 is that they are actually releasing it into theaters . 2 +88123 4577 is that they are actually releasing it into theaters 2 +88124 4577 that they are actually releasing it into theaters 1 +88125 4577 they are actually releasing it into theaters 2 +88126 4577 are actually releasing it into theaters 1 +88127 4577 are actually 2 +88128 4577 releasing it into theaters 2 +88129 4577 releasing it 2 +88130 4577 releasing 3 +88131 4577 into theaters 2 +88132 4578 The film has the high-buffed gloss and high-octane jolts you expect of De Palma , but what makes it transporting is that it 's also one of the smartest , most pleasurable expressions of pure movie love to come from an American director in years . 3 +88133 4578 The film has the high-buffed gloss and high-octane jolts you expect of De Palma , but what makes it transporting is that it 's also one of the smartest 3 +88134 4578 has the high-buffed gloss and high-octane jolts you expect of De Palma , but what makes it transporting is that it 's also one of the smartest 3 +88135 4578 has the high-buffed gloss and high-octane jolts 2 +88136 4578 the high-buffed gloss and high-octane jolts 3 +88137 4578 the high-buffed gloss and 2 +88138 4578 the high-buffed gloss 2 +88139 4578 high-buffed gloss 2 +88140 4578 high-buffed 2 +88141 4578 high-octane jolts 3 +88142 4578 you expect of De Palma , but what makes it transporting is that it 's also one of the smartest 3 +88143 4578 you expect of De Palma , but 2 +88144 4578 you expect of De Palma , 2 +88145 4578 you expect of De Palma 2 +88146 4578 expect of De Palma 2 +88147 4578 of De Palma 2 +88148 4578 what makes it transporting is that it 's also one of the smartest 4 +88149 4578 makes it transporting is that it 's also one of the smartest 2 +88150 4578 it transporting is that it 's also one of the smartest 4 +88151 4578 transporting is that it 's also one of the smartest 3 +88152 4578 transporting 2 +88153 4578 is that it 's also one of the smartest 3 +88154 4578 that it 's also one of the smartest 3 +88155 4578 it 's also one of the smartest 3 +88156 4578 's also one of the smartest 3 +88157 4578 one of the smartest 4 +88158 4578 of the smartest 3 +88159 4578 the smartest 3 +88160 4578 , most pleasurable expressions of pure movie love to come from an American director in years . 4 +88161 4578 most pleasurable expressions of pure movie love to come from an American director in years . 4 +88162 4578 most pleasurable expressions of pure movie 3 +88163 4578 most pleasurable expressions 3 +88164 4578 pleasurable expressions 3 +88165 4578 of pure movie 3 +88166 4578 pure movie 3 +88167 4578 love to come from an American director in years . 2 +88168 4578 love to come from an American director in years 3 +88169 4578 to come from an American director in years 3 +88170 4578 come from an American director in years 2 +88171 4578 from an American director in years 2 +88172 4578 an American director in years 2 +88173 4578 an American director 2 +88174 4578 American director 2 +88175 4579 A mess . 1 +88176 4580 A dopey movie clothed in excess layers of hipness . 2 +88177 4580 A dopey movie clothed in excess layers of hipness 1 +88178 4580 A dopey movie 1 +88179 4580 dopey movie 1 +88180 4580 clothed in excess layers of hipness 1 +88181 4580 clothed 2 +88182 4580 in excess layers of hipness 1 +88183 4580 excess layers of hipness 1 +88184 4580 excess layers 1 +88185 4580 of hipness 2 +88186 4580 hipness 3 +88187 4581 Standing by Yourself is haunting ... -LRB- It 's -RRB- what punk rock music used to be , and what the video medium could use more of : spirit , perception , conviction . 3 +88188 4581 Standing by Yourself 2 +88189 4581 by Yourself 2 +88190 4581 is haunting ... -LRB- It 's -RRB- what punk rock music used to be , and what the video medium could use more of : spirit , perception , conviction . 3 +88191 4581 is haunting ... -LRB- It 's -RRB- what punk rock music used to be , and what the video medium could use more of : spirit , perception , conviction 3 +88192 4581 is haunting ... 2 +88193 4581 is haunting 2 +88194 4581 -LRB- It 's -RRB- what punk rock music used to be , and what the video medium could use more of : spirit , perception , conviction 3 +88195 4581 -LRB- It 's -RRB- what punk rock music used to be , and 3 +88196 4581 -LRB- It 's -RRB- what punk rock music used to be , 3 +88197 4581 -LRB- It 's -RRB- what punk rock music used to be 2 +88198 4581 -LRB- It 's -RRB- 2 +88199 4581 It 's -RRB- 2 +88200 4581 what punk rock music used to be 3 +88201 4581 what punk rock music 3 +88202 4581 what punk 1 +88203 4581 rock music 2 +88204 4581 what the video medium could use more of : spirit , perception , conviction 2 +88205 4581 the video medium could use more of : spirit , perception , conviction 2 +88206 4581 the video medium 2 +88207 4581 video medium 2 +88208 4581 could use more of : spirit , perception , conviction 1 +88209 4581 use more of : spirit , perception , conviction 2 +88210 4581 more of : spirit , perception , conviction 3 +88211 4581 of : spirit , perception , conviction 2 +88212 4581 of : 2 +88213 4581 spirit , perception , conviction 3 +88214 4581 spirit , 2 +88215 4581 perception , conviction 3 +88216 4581 perception , 2 +88217 4581 perception 2 +88218 4582 Gone are the flamboyant mannerisms that are the trademark of several of his performances . 2 +88219 4582 are the flamboyant mannerisms that are the trademark of several of his performances . 3 +88220 4582 are the flamboyant mannerisms that are the trademark of several of his performances 2 +88221 4582 the flamboyant mannerisms that are the trademark of several of his performances 3 +88222 4582 the flamboyant mannerisms 3 +88223 4582 flamboyant mannerisms 3 +88224 4582 that are the trademark of several of his performances 2 +88225 4582 are the trademark of several of his performances 2 +88226 4582 the trademark of several of his performances 3 +88227 4582 the trademark 2 +88228 4582 of several of his performances 2 +88229 4582 several of his performances 2 +88230 4582 of his performances 2 +88231 4582 his performances 2 +88232 4583 This is surely one of the most frantic , virulent and foul-natured Christmas season pics ever delivered by a Hollywood studio . 0 +88233 4583 is surely one of the most frantic , virulent and foul-natured Christmas season pics ever delivered by a Hollywood studio . 0 +88234 4583 is surely one of the most frantic , virulent and foul-natured Christmas season pics ever delivered by a Hollywood studio 0 +88235 4583 one of the most frantic , virulent and foul-natured Christmas season pics ever delivered by a Hollywood studio 0 +88236 4583 of the most frantic , virulent and foul-natured Christmas season pics ever delivered by a Hollywood studio 1 +88237 4583 the most frantic , virulent and foul-natured Christmas season pics ever delivered by a Hollywood studio 2 +88238 4583 the most frantic , virulent and foul-natured 1 +88239 4583 most frantic , virulent and foul-natured 1 +88240 4583 frantic , virulent and foul-natured 1 +88241 4583 , virulent and foul-natured 1 +88242 4583 virulent and foul-natured 1 +88243 4583 virulent and 2 +88244 4583 virulent 2 +88245 4583 foul-natured 1 +88246 4583 Christmas season pics ever delivered by a Hollywood studio 2 +88247 4583 Christmas season pics 2 +88248 4583 season pics 2 +88249 4583 pics 2 +88250 4583 ever delivered by a Hollywood studio 2 +88251 4583 delivered by a Hollywood studio 2 +88252 4583 by a Hollywood studio 2 +88253 4583 a Hollywood studio 2 +88254 4583 Hollywood studio 2 +88255 4584 It 's better than mid-range Steven Seagal , but not as sharp as Jet Li on rollerblades . 2 +88256 4584 's better than mid-range Steven Seagal , but not as sharp as Jet Li on rollerblades . 2 +88257 4584 's better than mid-range Steven Seagal , but not as sharp as Jet Li on rollerblades 2 +88258 4584 's better than mid-range Steven Seagal , but not as sharp 1 +88259 4584 better than mid-range Steven Seagal , but not as sharp 2 +88260 4584 better than mid-range Steven Seagal , but 3 +88261 4584 better than mid-range Steven Seagal , 3 +88262 4584 better than mid-range Steven Seagal 2 +88263 4584 than mid-range Steven Seagal 2 +88264 4584 mid-range Steven Seagal 2 +88265 4584 mid-range 2 +88266 4584 not as sharp 1 +88267 4584 as Jet Li on rollerblades 3 +88268 4584 Jet Li on rollerblades 2 +88269 4584 Jet Li 2 +88270 4584 Jet 3 +88271 4584 Li 2 +88272 4584 on rollerblades 3 +88273 4584 rollerblades 2 +88274 4585 Filled with low-brow humor , gratuitous violence and a disturbing disregard for life . 1 +88275 4585 Filled with low-brow humor , gratuitous violence and a disturbing disregard for life 2 +88276 4585 Filled with low-brow humor , gratuitous violence and a disturbing disregard 1 +88277 4585 with low-brow humor , gratuitous violence and a disturbing disregard 1 +88278 4585 low-brow humor , gratuitous violence and a disturbing disregard 0 +88279 4585 low-brow humor , gratuitous violence and 1 +88280 4585 low-brow humor , gratuitous violence 0 +88281 4585 low-brow humor , 1 +88282 4585 low-brow humor 1 +88283 4585 low-brow 1 +88284 4585 gratuitous violence 2 +88285 4585 a disturbing disregard 0 +88286 4585 disturbing disregard 1 +88287 4585 disregard 2 +88288 4585 for life 2 +88289 4586 It should be interesting , it should be poignant , it turns out to be affected and boring . 1 +88290 4586 It should be interesting , it should be poignant , it turns out to be affected and boring 1 +88291 4586 It should be interesting , it should be poignant , 2 +88292 4586 It should be interesting , it should be poignant 2 +88293 4586 It should be interesting , 2 +88294 4586 It should be interesting 3 +88295 4586 should be interesting 3 +88296 4586 it should be poignant 3 +88297 4586 should be poignant 1 +88298 4586 it turns out to be affected and boring 1 +88299 4586 turns out to be affected and boring 1 +88300 4586 to be affected and boring 1 +88301 4586 be affected and boring 2 +88302 4586 affected and boring 1 +88303 4586 affected and 2 +88304 4587 With an unflappable air of decadent urbanity , Everett remains a perfect Wildean actor , and a relaxed Firth displays impeccable comic skill . 4 +88305 4587 With an unflappable air of decadent urbanity 3 +88306 4587 an unflappable air of decadent urbanity 2 +88307 4587 an unflappable air 2 +88308 4587 unflappable air 3 +88309 4587 of decadent urbanity 2 +88310 4587 decadent urbanity 2 +88311 4587 urbanity 2 +88312 4587 , Everett remains a perfect Wildean actor , and a relaxed Firth displays impeccable comic skill . 4 +88313 4587 Everett remains a perfect Wildean actor , and a relaxed Firth displays impeccable comic skill . 3 +88314 4587 Everett remains a perfect Wildean actor , and a relaxed Firth displays impeccable comic skill 4 +88315 4587 Everett remains a perfect Wildean actor , and 3 +88316 4587 Everett remains a perfect Wildean actor , 3 +88317 4587 Everett remains a perfect Wildean actor 3 +88318 4587 Everett 2 +88319 4587 remains a perfect Wildean actor 4 +88320 4587 a perfect Wildean actor 4 +88321 4587 perfect Wildean actor 3 +88322 4587 Wildean actor 2 +88323 4587 Wildean 2 +88324 4587 a relaxed Firth displays impeccable comic skill 4 +88325 4587 a relaxed Firth 2 +88326 4587 relaxed Firth 2 +88327 4587 Firth 2 +88328 4587 displays impeccable comic skill 4 +88329 4587 impeccable comic skill 3 +88330 4587 comic skill 3 +88331 4588 Wins my vote for ` The 2002 Enemy of Cinema ' Award . 2 +88332 4588 Wins my vote for ` The 2002 Enemy of Cinema ' Award 2 +88333 4588 Wins my vote 4 +88334 4588 my vote 2 +88335 4588 vote 2 +88336 4588 for ` The 2002 Enemy of Cinema ' Award 2 +88337 4588 for ` 2 +88338 4588 The 2002 Enemy of Cinema ' Award 2 +88339 4588 The 2002 Enemy 2 +88340 4588 2002 Enemy 2 +88341 4588 of Cinema ' Award 3 +88342 4588 Cinema ' Award 2 +88343 4588 Cinema ' 2 +88344 4589 The film 's messages of tolerance and diversity are n't particularly original , but one ca n't help but be drawn in by the sympathetic characters . 3 +88345 4589 The film 's messages of tolerance and diversity are n't particularly original , but one ca n't help but be drawn in by the sympathetic characters 3 +88346 4589 The film 's messages of tolerance and diversity are n't particularly original , but 1 +88347 4589 The film 's messages of tolerance and diversity are n't particularly original , 2 +88348 4589 The film 's messages of tolerance and diversity are n't particularly original 1 +88349 4589 The film 's messages of tolerance and diversity 2 +88350 4589 The film 's messages 2 +88351 4589 of tolerance and diversity 2 +88352 4589 tolerance and diversity 3 +88353 4589 tolerance and 2 +88354 4589 are n't particularly original 2 +88355 4589 particularly original 3 +88356 4589 one ca n't help but be drawn in by the sympathetic characters 3 +88357 4589 ca n't help but be drawn in by the sympathetic characters 3 +88358 4589 be drawn in by the sympathetic characters 3 +88359 4589 drawn in by the sympathetic characters 3 +88360 4589 in by the sympathetic characters 3 +88361 4589 by the sympathetic characters 2 +88362 4589 the sympathetic characters 2 +88363 4589 sympathetic characters 3 +88364 4590 A serious movie with serious ideas . 4 +88365 4590 A serious movie with serious ideas 3 +88366 4590 A serious movie 3 +88367 4590 serious movie 2 +88368 4590 with serious ideas 3 +88369 4590 serious ideas 2 +88370 4591 Steers refreshingly clear of the usual cliches . 3 +88371 4591 Steers refreshingly clear of the usual cliches 4 +88372 4591 Steers refreshingly clear 3 +88373 4591 refreshingly clear 3 +88374 4591 of the usual cliches 2 +88375 4591 the usual cliches 1 +88376 4591 usual cliches 2 +88377 4592 Too bad Maggio could n't come up with a better script . 1 +88378 4592 Too bad Maggio 2 +88379 4592 Maggio 2 +88380 4592 could n't come up with a better script . 0 +88381 4592 could n't come up with a better script 2 +88382 4592 come up with a better script 1 +88383 4592 with a better script 3 +88384 4592 a better script 3 +88385 4592 better script 3 +88386 4593 About the only thing to give the movie points for is bravado -- to take an entirely stale concept and push it through the audience 's meat grinder one more time . 0 +88387 4593 About the only thing to give the movie points for 2 +88388 4593 About the only thing 2 +88389 4593 to give the movie points for 2 +88390 4593 give the movie points for 3 +88391 4593 give the movie points 2 +88392 4593 give the movie 2 +88393 4593 is bravado -- to take an entirely stale concept and push it through the audience 's meat grinder one more time . 2 +88394 4593 is bravado -- to take an entirely stale concept and push it through the audience 's meat grinder one more time 1 +88395 4593 bravado -- to take an entirely stale concept and push it through the audience 's meat grinder one more time 1 +88396 4593 bravado -- 2 +88397 4593 to take an entirely stale concept and push it through the audience 's meat grinder one more time 0 +88398 4593 take an entirely stale concept and push it through the audience 's meat grinder one more time 1 +88399 4593 take an entirely stale concept and 1 +88400 4593 take an entirely stale concept 2 +88401 4593 an entirely stale concept 1 +88402 4593 entirely stale concept 0 +88403 4593 entirely stale 1 +88404 4593 push it through the audience 's meat grinder one more time 1 +88405 4593 push it through the audience 's meat grinder one more 2 +88406 4593 push it 2 +88407 4593 through the audience 's meat grinder one more 1 +88408 4593 through the audience 's meat grinder 2 +88409 4593 the audience 's meat grinder 2 +88410 4593 the audience 's 2 +88411 4594 A fairly enjoyable mixture of Longest Yard ... and the 1999 Guy Ritchie caper Lock Stock and Two Smoking Barrels . 3 +88412 4594 A fairly enjoyable mixture of Longest Yard ... and the 1999 Guy Ritchie 3 +88413 4594 A fairly enjoyable mixture 3 +88414 4594 fairly enjoyable mixture 3 +88415 4594 fairly enjoyable 3 +88416 4594 of Longest Yard ... and the 1999 Guy Ritchie 2 +88417 4594 Longest Yard ... and the 1999 Guy Ritchie 2 +88418 4594 Longest Yard ... and 2 +88419 4594 Longest Yard ... 2 +88420 4594 the 1999 Guy Ritchie 2 +88421 4594 1999 Guy Ritchie 2 +88422 4594 caper Lock Stock and Two Smoking Barrels . 2 +88423 4594 caper Lock Stock and Two Smoking Barrels 2 +88424 4594 Lock Stock and Two Smoking Barrels 2 +88425 4594 Lock Stock and 2 +88426 4594 Lock Stock 2 +88427 4595 Thought-provoking and stylish , if also somewhat hermetic . 3 +88428 4595 Thought-provoking and stylish 4 +88429 4595 , if also somewhat hermetic . 2 +88430 4595 if also somewhat hermetic . 3 +88431 4595 if also somewhat hermetic 2 +88432 4595 also somewhat hermetic 2 +88433 4595 somewhat hermetic 2 +88434 4595 hermetic 2 +88435 4596 I also believe that Resident Evil is not it . 1 +88436 4596 also believe that Resident Evil is not it . 2 +88437 4596 believe that Resident Evil is not it . 1 +88438 4596 believe that Resident Evil is not it 1 +88439 4596 that Resident Evil is not it 1 +88440 4596 Resident Evil is not it 1 +88441 4596 is not it 1 +88442 4597 Hashiguchi vividly captures the way young Japanese live now , chafing against their culture 's manic mix of millennial brusqueness and undying , traditional politesse . 3 +88443 4597 vividly captures the way young Japanese live now , chafing against their culture 's manic mix of millennial brusqueness and undying , traditional politesse . 3 +88444 4597 captures the way young Japanese live now , chafing against their culture 's manic mix of millennial brusqueness and undying , traditional politesse . 3 +88445 4597 captures the way young Japanese live now , chafing against their culture 's manic mix of millennial brusqueness and undying , traditional politesse 3 +88446 4597 the way young Japanese live now , chafing against their culture 's manic mix of millennial brusqueness and undying , traditional politesse 2 +88447 4597 young Japanese live now , chafing against their culture 's manic mix of millennial brusqueness and undying , traditional politesse 2 +88448 4597 young Japanese 2 +88449 4597 live now , chafing against their culture 's manic mix of millennial brusqueness and undying , traditional politesse 2 +88450 4597 live now , 2 +88451 4597 live now 2 +88452 4597 chafing against their culture 's manic mix of millennial brusqueness and undying , traditional politesse 2 +88453 4597 against their culture 's manic mix of millennial brusqueness and undying , traditional politesse 2 +88454 4597 their culture 's manic mix of millennial brusqueness and undying , traditional politesse 3 +88455 4597 their culture 's manic mix 2 +88456 4597 their culture 's 2 +88457 4597 culture 's 2 +88458 4597 manic mix 2 +88459 4597 of millennial brusqueness and undying , traditional politesse 2 +88460 4597 millennial brusqueness and undying , traditional politesse 2 +88461 4597 millennial brusqueness and 2 +88462 4597 millennial brusqueness 2 +88463 4597 millennial 2 +88464 4597 undying , traditional politesse 2 +88465 4597 undying 2 +88466 4597 , traditional politesse 2 +88467 4597 traditional politesse 2 +88468 4597 politesse 2 +88469 4598 Though it 's not very well shot or composed or edited , the score is too insistent and the dialogue is frequently overwrought and crudely literal , the film shatters you in waves . 1 +88470 4598 Though it 's not very well shot or composed or edited , the score is too insistent and the dialogue is frequently overwrought and crudely literal 0 +88471 4598 Though it 's not very well shot or composed or edited , the score is too insistent and 1 +88472 4598 Though it 's not very well shot or composed or edited , the score is too insistent 1 +88473 4598 Though it 's not very well shot or composed or edited 1 +88474 4598 it 's not very well shot or composed or edited 1 +88475 4598 's not very well shot or composed or edited 0 +88476 4598 very well shot or composed or edited 4 +88477 4598 very well shot or 4 +88478 4598 very well shot 4 +88479 4598 composed or edited 1 +88480 4598 composed or 2 +88481 4598 , the score is too insistent 1 +88482 4598 the score is too insistent 1 +88483 4598 is too insistent 1 +88484 4598 too insistent 1 +88485 4598 the dialogue is frequently overwrought and crudely literal 0 +88486 4598 is frequently overwrought and crudely literal 1 +88487 4598 overwrought and crudely literal 0 +88488 4598 and crudely literal 1 +88489 4598 crudely literal 1 +88490 4598 crudely 1 +88491 4598 , the film shatters you in waves . 3 +88492 4598 the film shatters you in waves . 4 +88493 4598 shatters you in waves . 2 +88494 4598 shatters you in waves 2 +88495 4598 shatters you 2 +88496 4598 in waves 2 +88497 4598 waves 2 +88498 4599 A lovely film ... elegant , witty and beneath a prim exterior unabashedly romantic ... hugely enjoyable in its own right though not really faithful to its source 's complexity . 4 +88499 4599 A lovely film ... elegant , witty and beneath a prim exterior unabashedly romantic ... hugely enjoyable in its own right though not really faithful to its source 's complexity 4 +88500 4599 A lovely film ... elegant , witty and beneath a prim exterior unabashedly romantic ... 4 +88501 4599 A lovely film ... elegant , witty and beneath a prim exterior unabashedly romantic 3 +88502 4599 A lovely film ... 4 +88503 4599 A lovely film 4 +88504 4599 lovely film 4 +88505 4599 elegant , witty and beneath a prim exterior unabashedly romantic 3 +88506 4599 elegant , witty and beneath a prim exterior 3 +88507 4599 elegant , witty and beneath 4 +88508 4599 , witty and beneath 3 +88509 4599 witty and beneath 3 +88510 4599 a prim exterior 2 +88511 4599 prim exterior 2 +88512 4599 prim 2 +88513 4599 unabashedly romantic 3 +88514 4599 unabashedly 2 +88515 4599 hugely enjoyable in its own right though not really faithful to its source 's complexity 3 +88516 4599 hugely enjoyable in its own right though not really faithful to 3 +88517 4599 hugely enjoyable in its own right though not really faithful 3 +88518 4599 hugely enjoyable in its own right though not really 3 +88519 4599 hugely enjoyable in its own right though 3 +88520 4599 hugely enjoyable in its own right 4 +88521 4599 enjoyable in its own right 3 +88522 4599 in its own right 2 +88523 4599 its own right 2 +88524 4599 own right 2 +88525 4599 its source 's complexity 3 +88526 4599 its source 's 2 +88527 4599 source 's 2 +88528 4600 A movie that harps on media-constructed ` issues ' like whether compromise is the death of self ... this Orgasm -LRB- wo n't be an -RRB- exceedingly memorable one for most people . 1 +88529 4600 A movie that harps on media-constructed ` issues ' 1 +88530 4600 that harps on media-constructed ` issues ' 2 +88531 4600 harps on media-constructed ` issues ' 1 +88532 4600 harps 2 +88533 4600 on media-constructed ` issues ' 2 +88534 4600 media-constructed ` issues ' 2 +88535 4600 media-constructed 2 +88536 4600 ` issues ' 2 +88537 4600 issues ' 1 +88538 4600 like whether compromise is the death of self ... this Orgasm -LRB- wo n't be an -RRB- exceedingly memorable one for most people . 1 +88539 4600 like whether compromise is the death of self ... this Orgasm -LRB- wo n't be an -RRB- exceedingly memorable one for most people 1 +88540 4600 whether compromise is the death of self ... this Orgasm -LRB- wo n't be an -RRB- exceedingly memorable one for most people 0 +88541 4600 compromise is the death of self ... this Orgasm -LRB- wo n't be an -RRB- exceedingly memorable one for most people 1 +88542 4600 is the death of self ... this Orgasm -LRB- wo n't be an -RRB- exceedingly memorable one for most people 1 +88543 4600 the death of self ... this Orgasm -LRB- wo n't be an -RRB- exceedingly memorable one for most people 1 +88544 4600 the death of self ... this Orgasm -LRB- wo n't be an -RRB- 1 +88545 4600 the death of self ... this Orgasm 2 +88546 4600 the death of self ... 2 +88547 4600 the death of self 2 +88548 4600 the death 1 +88549 4600 of self 2 +88550 4600 this Orgasm 2 +88551 4600 -LRB- wo n't be an -RRB- 2 +88552 4600 wo n't be an -RRB- 1 +88553 4600 wo n't be an 2 +88554 4600 be an 2 +88555 4600 exceedingly memorable one for most people 3 +88556 4600 exceedingly memorable one 3 +88557 4600 exceedingly memorable 4 +88558 4600 for most people 2 +88559 4600 most people 2 +88560 4601 Both a successful adaptation and an enjoyable film in its own right . 4 +88561 4601 Both a successful adaptation and an enjoyable film in its own right 4 +88562 4601 a successful adaptation and an enjoyable film in its own right 3 +88563 4601 a successful adaptation and 3 +88564 4601 a successful adaptation 3 +88565 4601 successful adaptation 3 +88566 4601 an enjoyable film in its own right 3 +88567 4601 an enjoyable film 4 +88568 4601 enjoyable film 4 +88569 4602 Mediocre fable from Burkina Faso . 1 +88570 4602 fable from Burkina Faso . 2 +88571 4602 fable from Burkina Faso 2 +88572 4602 from Burkina Faso 3 +88573 4603 A lot of the credit for the film 's winning tone must go to Grant , who has n't lost a bit of the dry humor that first made audiences on both sides of the Atlantic love him . 3 +88574 4603 A lot of the credit for the film 's winning tone 3 +88575 4603 of the credit for the film 's winning tone 3 +88576 4603 the credit for the film 's winning tone 3 +88577 4603 for the film 's winning tone 3 +88578 4603 the film 's winning tone 3 +88579 4603 must go to Grant , who has n't lost a bit of the dry humor that first made audiences on both sides of the Atlantic love him . 3 +88580 4603 must go to Grant , who has n't lost a bit of the dry humor that first made audiences on both sides of the Atlantic love him 3 +88581 4603 go to Grant , who has n't lost a bit of the dry humor that first made audiences on both sides of the Atlantic love him 4 +88582 4603 to Grant , who has n't lost a bit of the dry humor that first made audiences on both sides of the Atlantic love him 3 +88583 4603 Grant , who has n't lost a bit of the dry humor that first made audiences on both sides of the Atlantic love him 4 +88584 4603 Grant , 2 +88585 4603 who has n't lost a bit of the dry humor that first made audiences on both sides of the Atlantic love him 4 +88586 4603 has n't lost a bit of the dry humor that first made audiences on both sides of the Atlantic love him 4 +88587 4603 lost a bit of the dry humor that first made audiences on both sides of the Atlantic love him 2 +88588 4603 a bit of the dry humor that first made audiences on both sides of the Atlantic love him 3 +88589 4603 of the dry humor that first made audiences on both sides of the Atlantic love him 3 +88590 4603 the dry humor that first made audiences on both sides of the Atlantic love him 3 +88591 4603 the dry humor 1 +88592 4603 dry humor 3 +88593 4603 that first made audiences on both sides of the Atlantic love him 3 +88594 4603 first made audiences on both sides of the Atlantic love him 3 +88595 4603 made audiences on both sides of the Atlantic love him 3 +88596 4603 audiences on both sides of the Atlantic love him 4 +88597 4603 audiences on both sides of the Atlantic 2 +88598 4603 on both sides of the Atlantic 2 +88599 4603 both sides of the Atlantic 2 +88600 4603 of the Atlantic 2 +88601 4603 the Atlantic 2 +88602 4603 love him 4 +88603 4604 little action , almost no suspense or believable tension , one-dimensional characters up the wazoo and sets that can only be described as sci-fi generic . 1 +88604 4604 little action , almost no suspense or believable tension , one-dimensional characters up the wazoo and sets that 0 +88605 4604 little action , almost no suspense or believable tension , one-dimensional characters up the wazoo and sets 0 +88606 4604 little action , almost no suspense or believable tension , one-dimensional characters up 1 +88607 4604 little action , almost no suspense or believable tension , 1 +88608 4604 little action , almost no suspense or believable tension 0 +88609 4604 little action , almost 1 +88610 4604 little action , 1 +88611 4604 little action 1 +88612 4604 no suspense or believable tension 2 +88613 4604 suspense or believable tension 3 +88614 4604 or believable tension 2 +88615 4604 believable tension 2 +88616 4604 one-dimensional characters up 2 +88617 4604 one-dimensional characters 1 +88618 4604 the wazoo and sets 2 +88619 4604 wazoo and sets 1 +88620 4604 wazoo and 2 +88621 4604 wazoo 2 +88622 4604 can only be described as sci-fi generic . 1 +88623 4604 can only be described as sci-fi generic 1 +88624 4604 be described as sci-fi generic 2 +88625 4604 described as sci-fi generic 1 +88626 4604 as sci-fi generic 1 +88627 4604 sci-fi generic 1 +88628 4605 It 's exactly the kind of movie Toback 's detractors always accuse him of making . 1 +88629 4605 's exactly the kind of movie Toback 's detractors always accuse him of making . 1 +88630 4605 's exactly the kind of movie Toback 's detractors always accuse him of making 1 +88631 4605 's exactly 2 +88632 4605 the kind of movie Toback 's detractors always accuse him of making 1 +88633 4605 Toback 's detractors always accuse him of making 2 +88634 4605 Toback 's detractors 2 +88635 4605 detractors 2 +88636 4605 always accuse him of making 2 +88637 4605 accuse him of making 2 +88638 4605 accuse him 2 +88639 4605 accuse 2 +88640 4605 of making 2 +88641 4606 This odd , distant Portuguese import more or less borrows from Bad Lieutenant and Les Vampires , and comes up with a kind of art-house gay porn film . 1 +88642 4606 This odd , distant Portuguese import more or less 1 +88643 4606 This odd , distant Portuguese import 2 +88644 4606 odd , distant Portuguese import 2 +88645 4606 , distant Portuguese import 2 +88646 4606 distant Portuguese import 2 +88647 4606 Portuguese import 2 +88648 4606 more or less 2 +88649 4606 more or 2 +88650 4606 borrows from Bad Lieutenant and Les Vampires , and comes up with a kind of art-house gay porn film . 2 +88651 4606 borrows from Bad Lieutenant and Les Vampires , and comes up with a kind of art-house gay porn film 2 +88652 4606 borrows from Bad Lieutenant and Les Vampires , and 2 +88653 4606 borrows from Bad Lieutenant and Les Vampires , 1 +88654 4606 borrows from Bad Lieutenant and Les Vampires 2 +88655 4606 from Bad Lieutenant and Les Vampires 2 +88656 4606 Bad Lieutenant and Les Vampires 2 +88657 4606 Bad Lieutenant and 2 +88658 4606 Bad Lieutenant 2 +88659 4606 Les Vampires 2 +88660 4606 Les 3 +88661 4606 comes up with a kind of art-house gay porn film 1 +88662 4606 with a kind of art-house gay porn film 2 +88663 4606 a kind of art-house gay porn film 2 +88664 4606 a kind 3 +88665 4606 of art-house gay porn film 2 +88666 4606 art-house gay porn film 1 +88667 4606 gay porn film 1 +88668 4607 Maryam is a small film , but it offers large rewards . 3 +88669 4607 Maryam is a small film , but it offers large rewards 4 +88670 4607 Maryam is a small film , but 2 +88671 4607 Maryam is a small film , 2 +88672 4607 Maryam is a small film 2 +88673 4607 Maryam 2 +88674 4607 is a small film 2 +88675 4607 a small film 2 +88676 4607 small film 2 +88677 4607 it offers large rewards 4 +88678 4607 offers large rewards 3 +88679 4607 large rewards 3 +88680 4608 While centered on the life experiences of a particular theatrical family , this marvelous documentary touches -- ever so gracefully -- on the entire history of the Yiddish theater , both in America and Israel . 4 +88681 4608 While centered on the life experiences of a particular theatrical family 2 +88682 4608 centered on the life experiences of a particular theatrical family 2 +88683 4608 centered 2 +88684 4608 on the life experiences of a particular theatrical family 2 +88685 4608 the life experiences of a particular theatrical family 2 +88686 4608 the life experiences 2 +88687 4608 of a particular theatrical family 3 +88688 4608 a particular theatrical family 2 +88689 4608 particular theatrical family 2 +88690 4608 theatrical family 2 +88691 4608 , this marvelous documentary touches -- ever so gracefully -- on the entire history of the Yiddish theater , both in America and Israel . 4 +88692 4608 this marvelous documentary touches -- ever so gracefully -- on the entire history of the Yiddish theater , both in America and Israel . 4 +88693 4608 marvelous documentary touches -- ever so gracefully -- on the entire history of the Yiddish theater , both in America and Israel . 4 +88694 4608 marvelous documentary touches -- ever so gracefully -- on the entire history of the Yiddish theater , both in America and Israel 3 +88695 4608 marvelous documentary touches -- ever so gracefully -- 3 +88696 4608 marvelous documentary touches 4 +88697 4608 documentary touches 2 +88698 4608 -- ever so gracefully -- 3 +88699 4608 ever so gracefully -- 3 +88700 4608 ever so gracefully 3 +88701 4608 so gracefully 4 +88702 4608 gracefully 3 +88703 4608 on the entire history of the Yiddish theater , both in America and Israel 2 +88704 4608 on the entire history of the Yiddish theater 2 +88705 4608 the entire history of the Yiddish theater 2 +88706 4608 the entire history 2 +88707 4608 entire history 2 +88708 4608 of the Yiddish theater 2 +88709 4608 the Yiddish theater 2 +88710 4608 Yiddish theater 2 +88711 4608 , both in America and Israel 2 +88712 4608 in America and Israel 2 +88713 4608 America and Israel 2 +88714 4608 America and 2 +88715 4608 Israel 2 +88716 4609 The first mistake , I suspect , is casting Shatner as a legendary professor and Kunis as a brilliant college student -- where 's Pauly Shore as the rocket scientist ? 1 +88717 4609 The first mistake , I suspect , 1 +88718 4609 The first mistake 1 +88719 4609 first mistake 1 +88720 4609 is casting Shatner as a legendary professor and Kunis as a brilliant college student -- where 's Pauly Shore as the rocket scientist ? 2 +88721 4609 casting Shatner as a legendary professor and Kunis as a brilliant college student -- where 's Pauly Shore as the rocket scientist ? 1 +88722 4609 casting Shatner as a legendary professor and Kunis 2 +88723 4609 Shatner as a legendary professor and Kunis 2 +88724 4609 as a legendary professor and Kunis 2 +88725 4609 a legendary professor and Kunis 2 +88726 4609 a legendary professor and 2 +88727 4609 a legendary professor 3 +88728 4609 legendary professor 2 +88729 4609 legendary 3 +88730 4609 professor 2 +88731 4609 Kunis 2 +88732 4609 as a brilliant college student -- where 's Pauly Shore as the rocket scientist ? 2 +88733 4609 a brilliant college student -- where 's Pauly Shore as the rocket scientist ? 3 +88734 4609 a brilliant college student -- 3 +88735 4609 a brilliant college student 3 +88736 4609 brilliant college student 2 +88737 4609 college student 2 +88738 4609 where 's Pauly Shore as the rocket scientist ? 2 +88739 4609 's Pauly Shore as the rocket scientist ? 2 +88740 4609 's Pauly Shore as the rocket scientist 2 +88741 4609 Pauly Shore as the rocket scientist 2 +88742 4609 as the rocket scientist 2 +88743 4609 the rocket scientist 2 +88744 4609 rocket scientist 2 +88745 4609 rocket 2 +88746 4609 scientist 2 +88747 4610 A faster paced family flick . 3 +88748 4610 A faster paced family 2 +88749 4610 faster paced family 2 +88750 4610 faster paced 2 +88751 4611 Rifkin 's references are ... impeccable throughout . 4 +88752 4611 Rifkin 's references 2 +88753 4611 Rifkin 's 2 +88754 4611 Rifkin 2 +88755 4611 are ... impeccable throughout . 3 +88756 4611 are ... impeccable throughout 4 +88757 4611 are ... 3 +88758 4611 impeccable throughout 3 +88759 4612 This odd , poetic road movie , spiked by jolts of pop music , pretty much takes place in Morton 's ever-watchful gaze -- and it 's a tribute to the actress , and to her inventive director , that the journey is such a mesmerizing one . 4 +88760 4612 This odd , poetic road movie , spiked by jolts of pop music , pretty much takes place in Morton 's ever-watchful gaze -- and it 's a tribute to the actress , and to her inventive director , that the journey is such a mesmerizing one 4 +88761 4612 This odd , poetic road movie , spiked by jolts of pop music , pretty much takes place in Morton 's ever-watchful gaze -- and 2 +88762 4612 This odd , poetic road movie , spiked by jolts of pop music , pretty much takes place in Morton 's ever-watchful gaze -- 3 +88763 4612 This odd , poetic road movie , spiked by jolts of pop music , pretty much takes place in Morton 's ever-watchful gaze 3 +88764 4612 This odd , poetic road movie , spiked by jolts of pop music , 3 +88765 4612 This odd , poetic road movie , spiked by jolts of pop music 3 +88766 4612 This odd , poetic road movie , 3 +88767 4612 This odd , poetic road movie 2 +88768 4612 odd , poetic road movie 3 +88769 4612 , poetic road movie 2 +88770 4612 poetic road movie 3 +88771 4612 spiked by jolts of pop music 3 +88772 4612 spiked 2 +88773 4612 by jolts of pop music 2 +88774 4612 jolts of pop music 2 +88775 4612 of pop music 2 +88776 4612 pretty much takes place in Morton 's ever-watchful gaze 2 +88777 4612 takes place in Morton 's ever-watchful gaze 3 +88778 4612 place in Morton 's ever-watchful gaze 2 +88779 4612 in Morton 's ever-watchful gaze 2 +88780 4612 Morton 's ever-watchful gaze 2 +88781 4612 Morton 's 2 +88782 4612 ever-watchful gaze 2 +88783 4612 ever-watchful 3 +88784 4612 it 's a tribute to the actress , and to her inventive director , that the journey is such a mesmerizing one 4 +88785 4612 's a tribute to the actress , and to her inventive director , that the journey is such a mesmerizing one 4 +88786 4612 's a tribute to the actress , and to her inventive director , 3 +88787 4612 's a tribute to the actress , and to her inventive director 3 +88788 4612 a tribute to the actress , and to her inventive director 3 +88789 4612 to the actress , and to her inventive director 3 +88790 4612 to the actress 2 +88791 4612 the actress 2 +88792 4612 , and to her inventive director 3 +88793 4612 to her inventive director 3 +88794 4612 her inventive director 3 +88795 4612 inventive director 4 +88796 4612 that the journey is such a mesmerizing one 4 +88797 4612 the journey is such a mesmerizing one 4 +88798 4612 is such a mesmerizing one 3 +88799 4612 such a mesmerizing one 4 +88800 4612 a mesmerizing one 4 +88801 4612 mesmerizing one 4 +88802 4613 Contains the humor , characterization , poignancy , and intelligence of a bad sitcom . 1 +88803 4613 Contains the humor , characterization , poignancy , and intelligence of a bad sitcom 1 +88804 4613 the humor , characterization , poignancy , and intelligence of a bad sitcom 0 +88805 4613 the humor , characterization , poignancy , and intelligence 4 +88806 4613 humor , characterization , poignancy , and intelligence 4 +88807 4613 , characterization , poignancy , and intelligence 3 +88808 4613 characterization , poignancy , and intelligence 4 +88809 4613 , poignancy , and intelligence 3 +88810 4613 poignancy , and intelligence 3 +88811 4613 , and intelligence 3 +88812 4613 of a bad sitcom 2 +88813 4613 a bad sitcom 0 +88814 4613 bad sitcom 1 +88815 4614 A movie that the less charitable might describe as a castrated cross between Highlander and Lolita . 1 +88816 4614 A movie that the less charitable might describe as a castrated 1 +88817 4614 that the less charitable might describe as a castrated 1 +88818 4614 the less charitable might describe as a castrated 1 +88819 4614 the less charitable 2 +88820 4614 less charitable 1 +88821 4614 charitable 3 +88822 4614 might describe as a castrated 1 +88823 4614 describe as a castrated 1 +88824 4614 as a castrated 1 +88825 4614 a castrated 2 +88826 4614 castrated 1 +88827 4614 cross between Highlander and Lolita . 2 +88828 4614 cross between Highlander and Lolita 3 +88829 4614 between Highlander and Lolita 2 +88830 4614 Highlander and Lolita 2 +88831 4614 Highlander and 2 +88832 4614 Highlander 3 +88833 4615 It stars schticky Chris Rock and stolid Anthony Hopkins , who seem barely in the same movie . 1 +88834 4615 stars schticky Chris Rock and stolid Anthony Hopkins , who seem barely in the same movie . 1 +88835 4615 stars schticky Chris Rock and stolid Anthony Hopkins , who seem barely in the same movie 2 +88836 4615 schticky Chris Rock and stolid Anthony Hopkins , who seem barely in the same movie 1 +88837 4615 schticky Chris Rock and stolid Anthony Hopkins , 1 +88838 4615 schticky Chris Rock and stolid Anthony Hopkins 3 +88839 4615 schticky 1 +88840 4615 Chris Rock and stolid Anthony Hopkins 2 +88841 4615 Rock and stolid Anthony Hopkins 3 +88842 4615 and stolid Anthony Hopkins 2 +88843 4615 stolid Anthony Hopkins 2 +88844 4615 who seem barely in the same movie 1 +88845 4615 seem barely in the same movie 1 +88846 4615 seem barely 2 +88847 4615 in the same movie 2 +88848 4615 the same movie 2 +88849 4616 The film does a solid job of slowly , steadily building up to the climactic burst of violence . 4 +88850 4616 does a solid job of slowly , steadily building up to the climactic burst of violence . 3 +88851 4616 does a solid job of slowly , steadily building up to the climactic burst of violence 3 +88852 4616 does a solid job of slowly , 3 +88853 4616 does a solid job of slowly 3 +88854 4616 does a solid job 3 +88855 4616 a solid job 2 +88856 4616 solid job 3 +88857 4616 of slowly 2 +88858 4616 steadily building up to the climactic burst of violence 2 +88859 4616 steadily 2 +88860 4616 building up to the climactic burst of violence 3 +88861 4616 building up 2 +88862 4616 to the climactic burst of violence 3 +88863 4616 the climactic burst of violence 1 +88864 4616 the climactic burst 2 +88865 4616 climactic burst 3 +88866 4617 Same guy with both hats . 2 +88867 4617 Same guy with both hats 2 +88868 4617 Same guy 2 +88869 4617 with both hats 2 +88870 4617 both hats 2 +88871 4617 hats 2 +88872 4618 You 've already seen City by the Sea under a variety of titles , but it 's worth yet another visit . 3 +88873 4618 You 've already seen City by the Sea under a variety of titles , but it 's worth yet another visit 3 +88874 4618 You 've already seen City by the Sea under a variety of titles , but 1 +88875 4618 You 've already seen City by the Sea under a variety of titles , 2 +88876 4618 You 've already seen City by the Sea under a variety of titles 1 +88877 4618 've already seen City by the Sea under a variety of titles 1 +88878 4618 seen City by the Sea under a variety of titles 2 +88879 4618 seen City by the Sea 2 +88880 4618 seen City 3 +88881 4618 by the Sea 2 +88882 4618 the Sea 2 +88883 4618 under a variety of titles 2 +88884 4618 a variety of titles 2 +88885 4618 of titles 2 +88886 4618 it 's worth yet another visit 3 +88887 4618 's worth yet another visit 3 +88888 4618 worth yet another visit 3 +88889 4618 yet another visit 1 +88890 4618 another visit 3 +88891 4619 Unfortunately , neither Sendak nor the directors are particularly engaging or articulate . 2 +88892 4619 , neither Sendak nor the directors are particularly engaging or articulate . 1 +88893 4619 neither Sendak nor the directors are particularly engaging or articulate . 1 +88894 4619 neither Sendak nor the directors 2 +88895 4619 Sendak nor the directors 2 +88896 4619 Sendak nor 2 +88897 4619 Sendak 2 +88898 4619 are particularly engaging or articulate . 4 +88899 4619 are particularly engaging or articulate 2 +88900 4619 particularly engaging or articulate 2 +88901 4619 particularly engaging or 2 +88902 4619 particularly engaging 4 +88903 4620 It 's not as awful as some of the recent Hollywood trip tripe ... but it 's far from a groundbreaking endeavor . 1 +88904 4620 It 's not as awful as some of the recent Hollywood trip tripe ... but it 's far from a groundbreaking endeavor 1 +88905 4620 It 's not as awful as some of the recent Hollywood trip tripe ... but 2 +88906 4620 It 's not as awful as some of the recent Hollywood trip tripe ... 2 +88907 4620 It 's not as awful as some of the recent Hollywood trip tripe 2 +88908 4620 's not as awful as some of the recent Hollywood trip tripe 3 +88909 4620 as awful as some of the recent Hollywood trip tripe 1 +88910 4620 awful as some of the recent Hollywood trip tripe 1 +88911 4620 as some of the recent Hollywood trip tripe 1 +88912 4620 some of the recent Hollywood trip tripe 2 +88913 4620 of the recent Hollywood trip tripe 1 +88914 4620 the recent Hollywood trip tripe 2 +88915 4620 recent Hollywood trip tripe 1 +88916 4620 Hollywood trip tripe 2 +88917 4620 trip tripe 1 +88918 4620 tripe 1 +88919 4620 it 's far from a groundbreaking endeavor 1 +88920 4620 's far from a groundbreaking endeavor 1 +88921 4620 far from a groundbreaking endeavor 0 +88922 4620 from a groundbreaking endeavor 3 +88923 4620 a groundbreaking endeavor 4 +88924 4620 groundbreaking endeavor 3 +88925 4620 groundbreaking 3 +88926 4621 Greg Kinnear gives a mesmerizing performance as a full-fledged sex addict who is in complete denial about his obsessive behavior . 4 +88927 4621 Greg Kinnear 2 +88928 4621 Greg 2 +88929 4621 gives a mesmerizing performance as a full-fledged sex addict who is in complete denial about his obsessive behavior . 3 +88930 4621 gives a mesmerizing performance as a full-fledged sex addict who is in complete denial about his obsessive behavior 3 +88931 4621 a mesmerizing performance as a full-fledged sex addict who is in complete denial about his obsessive behavior 3 +88932 4621 a mesmerizing performance as a full-fledged sex addict 3 +88933 4621 a mesmerizing performance 3 +88934 4621 mesmerizing performance 4 +88935 4621 as a full-fledged sex addict 2 +88936 4621 a full-fledged sex addict 2 +88937 4621 full-fledged sex addict 2 +88938 4621 full-fledged 2 +88939 4621 sex addict 2 +88940 4621 who is in complete denial about his obsessive behavior 1 +88941 4621 is in complete denial about his obsessive behavior 2 +88942 4621 in complete denial about his obsessive behavior 2 +88943 4621 complete denial about his obsessive behavior 1 +88944 4621 complete denial 2 +88945 4621 about his obsessive behavior 2 +88946 4621 his obsessive behavior 2 +88947 4621 obsessive behavior 2 +88948 4622 Try Hell House , which documents the cautionary Christian spook-a-rama of the same name . 2 +88949 4622 Try Hell House , which documents the cautionary Christian spook-a-rama of the same name 2 +88950 4622 Hell House , which documents the cautionary Christian spook-a-rama of the same name 2 +88951 4622 Hell House , 1 +88952 4622 which documents the cautionary Christian spook-a-rama of the same name 2 +88953 4622 documents the cautionary Christian spook-a-rama of the same name 2 +88954 4622 documents 2 +88955 4622 the cautionary Christian spook-a-rama of the same name 2 +88956 4622 the cautionary Christian spook-a-rama 2 +88957 4622 cautionary Christian spook-a-rama 1 +88958 4622 Christian spook-a-rama 2 +88959 4622 spook-a-rama 3 +88960 4623 Barney throws away the goodwill the first half of his movie generates by orchestrating a finale that is impenetrable and dull . 1 +88961 4623 Barney 2 +88962 4623 throws away the goodwill the first half of his movie generates by orchestrating a finale that is impenetrable and dull . 0 +88963 4623 throws away the goodwill the first half of his movie generates by orchestrating a finale that is impenetrable and dull 1 +88964 4623 throws away 3 +88965 4623 the goodwill the first half of his movie generates by orchestrating a finale that is impenetrable and dull 1 +88966 4623 the goodwill 2 +88967 4623 the first half of his movie generates by orchestrating a finale that is impenetrable and dull 1 +88968 4623 the first half of his movie 2 +88969 4623 generates by orchestrating a finale that is impenetrable and dull 0 +88970 4623 by orchestrating a finale that is impenetrable and dull 0 +88971 4623 orchestrating a finale that is impenetrable and dull 0 +88972 4623 orchestrating 3 +88973 4623 a finale that is impenetrable and dull 0 +88974 4623 a finale 2 +88975 4623 that is impenetrable and dull 1 +88976 4623 is impenetrable and dull 0 +88977 4623 impenetrable and dull 2 +88978 4623 impenetrable and 1 +88979 4624 I could just feel the screenwriter at every moment ` Tap , tap , tap , tap , tapping away ' on this screenplay . 1 +88980 4624 could just feel the screenwriter at every moment ` Tap , tap , tap , tap , tapping away ' on this screenplay . 2 +88981 4624 could just feel the screenwriter at every moment ` Tap , tap , tap , tap , tapping away ' on this screenplay 1 +88982 4624 feel the screenwriter at every moment ` Tap , tap , tap , tap , tapping away ' on this screenplay 1 +88983 4624 feel the screenwriter at every moment ` Tap , tap , tap , tap , 2 +88984 4624 feel the screenwriter at every moment ` Tap , tap , tap , tap 2 +88985 4624 feel the screenwriter at every moment ` Tap , tap , tap , 3 +88986 4624 feel the screenwriter at every moment ` Tap , tap , tap 2 +88987 4624 feel the screenwriter at every moment ` Tap , tap , 2 +88988 4624 feel the screenwriter at every moment ` Tap , tap 2 +88989 4624 feel the screenwriter at every moment ` Tap , 2 +88990 4624 feel the screenwriter at every moment ` Tap 3 +88991 4624 feel the screenwriter at every moment ` 2 +88992 4624 feel the screenwriter at every moment 3 +88993 4624 feel the screenwriter 2 +88994 4624 at every moment 2 +88995 4624 tapping away ' on this screenplay 2 +88996 4624 tapping away ' 2 +88997 4624 tapping away 2 +88998 4624 on this screenplay 3 +88999 4624 this screenplay 2 +89000 4625 Its engaging simplicity is driven by appealing leads . 4 +89001 4625 Its engaging simplicity 3 +89002 4625 engaging simplicity 3 +89003 4625 is driven by appealing leads . 2 +89004 4625 is driven by appealing leads 3 +89005 4625 driven by appealing leads 3 +89006 4625 by appealing leads 2 +89007 4625 appealing leads 3 +89008 4626 Lan Yu is a genuine love story , full of traditional layers of awakening and ripening and separation and recovery . 4 +89009 4626 is a genuine love story , full of traditional layers of awakening and ripening and separation and recovery . 3 +89010 4626 is a genuine love story , full of traditional layers of awakening and ripening and separation and recovery 4 +89011 4626 a genuine love story , full of traditional layers of awakening and ripening and separation and recovery 4 +89012 4626 a genuine love story , 3 +89013 4626 a genuine love story 4 +89014 4626 genuine love story 4 +89015 4626 full of traditional layers of awakening and ripening and separation and recovery 3 +89016 4626 of traditional layers of awakening and ripening and separation and recovery 3 +89017 4626 traditional layers of awakening and ripening and separation and recovery 3 +89018 4626 traditional layers of awakening and ripening and 3 +89019 4626 traditional layers of awakening and ripening 2 +89020 4626 traditional layers 2 +89021 4626 of awakening and ripening 3 +89022 4626 awakening and ripening 3 +89023 4626 awakening and 3 +89024 4626 ripening 2 +89025 4626 separation and recovery 2 +89026 4626 separation and 2 +89027 4627 Enough is not a bad movie , just mediocre . 1 +89028 4627 is not a bad movie , just mediocre . 1 +89029 4627 is not a bad movie , just mediocre 2 +89030 4627 a bad movie , just mediocre 0 +89031 4627 a bad movie , 0 +89032 4627 just mediocre 2 +89033 4628 We 're left with a story that tries to grab us , only to keep letting go at all the wrong moments . 1 +89034 4628 're left with a story that tries to grab us , only to keep letting go at all the wrong moments . 1 +89035 4628 're left with a story that tries to grab us , only to keep letting go at all the wrong moments 1 +89036 4628 left with a story that tries to grab us , only to keep letting go at all the wrong moments 0 +89037 4628 with a story that tries to grab us , only to keep letting go at all the wrong moments 1 +89038 4628 a story that tries to grab us , only to keep letting go at all the wrong moments 1 +89039 4628 that tries to grab us , only to keep letting go at all the wrong moments 1 +89040 4628 tries to grab us , only to keep letting go at all the wrong moments 1 +89041 4628 to grab us , only to keep letting go at all the wrong moments 1 +89042 4628 grab us , only to keep letting go at all the wrong moments 1 +89043 4628 grab us , 2 +89044 4628 grab us 3 +89045 4628 only to keep letting go at all the wrong moments 1 +89046 4628 to keep letting go at all the wrong moments 1 +89047 4628 keep letting go at all the wrong moments 2 +89048 4628 letting go at all the wrong moments 1 +89049 4628 go at all the wrong moments 1 +89050 4628 at all the wrong moments 2 +89051 4628 all the wrong moments 2 +89052 4628 the wrong moments 2 +89053 4628 wrong moments 2 +89054 4629 A generic family comedy unlikely to be appreciated by anyone outside the under-10 set . 0 +89055 4629 A generic family comedy unlikely to be appreciated by anyone outside the under-10 set 2 +89056 4629 A generic family comedy 2 +89057 4629 generic family comedy 2 +89058 4629 unlikely to be appreciated by anyone outside the under-10 set 0 +89059 4629 to be appreciated by anyone outside the under-10 set 2 +89060 4629 be appreciated by anyone outside the under-10 set 1 +89061 4629 appreciated by anyone outside the under-10 set 2 +89062 4629 appreciated 3 +89063 4629 by anyone outside the under-10 set 2 +89064 4629 anyone outside the under-10 set 2 +89065 4629 outside the under-10 set 1 +89066 4629 the under-10 set 2 +89067 4629 under-10 set 1 +89068 4629 under-10 2 +89069 4630 It 's just plain boring . 2 +89070 4630 's just plain boring . 2 +89071 4630 's just plain boring 0 +89072 4630 plain boring 3 +89073 4631 Plays like one of those conversations that Comic Book Guy on `` The Simpsons '' has . 1 +89074 4631 like one of those conversations that Comic Book Guy on `` The Simpsons '' has . 2 +89075 4631 like one of those conversations that Comic Book Guy on `` The Simpsons '' has 2 +89076 4631 like one of those conversations 2 +89077 4631 one of those conversations 2 +89078 4631 of those conversations 2 +89079 4631 those conversations 2 +89080 4631 that Comic Book Guy on `` The Simpsons '' has 2 +89081 4631 Comic Book Guy on `` The Simpsons '' has 2 +89082 4631 Comic Book Guy on `` The Simpsons '' 2 +89083 4631 Comic Book Guy 2 +89084 4631 Book Guy 2 +89085 4631 on `` The Simpsons '' 2 +89086 4631 `` The Simpsons '' 2 +89087 4631 The Simpsons '' 2 +89088 4631 Simpsons '' 2 +89089 4632 While Parker and co-writer Catherine di Napoli are faithful to Melville 's plotline , they and a fully engaged supporting cast ... have made the old boy 's characters more quick-witted than any English Lit major would have thought possible . 4 +89090 4632 While Parker and co-writer Catherine di Napoli are faithful to Melville 's plotline , they and a fully engaged supporting cast ... have made the old boy 's characters more quick-witted than any English Lit 3 +89091 4632 Parker and co-writer Catherine di Napoli are faithful to Melville 's plotline , they and a fully engaged supporting cast ... have made the old boy 's characters more quick-witted than any English Lit 3 +89092 4632 Parker and co-writer Catherine di Napoli are faithful to Melville 's plotline , they and a fully engaged supporting cast 3 +89093 4632 Parker and co-writer Catherine di Napoli are faithful to Melville 's plotline , they and 2 +89094 4632 Parker and co-writer Catherine di Napoli are faithful to Melville 's plotline , they 3 +89095 4632 Parker and co-writer Catherine di Napoli 2 +89096 4632 and co-writer Catherine di Napoli 2 +89097 4632 co-writer Catherine di Napoli 2 +89098 4632 Catherine di Napoli 2 +89099 4632 di Napoli 2 +89100 4632 di 2 +89101 4632 Napoli 2 +89102 4632 are faithful to Melville 's plotline , they 3 +89103 4632 are faithful to Melville 's plotline , 2 +89104 4632 are faithful to Melville 's plotline 2 +89105 4632 faithful to Melville 's plotline 3 +89106 4632 to Melville 's plotline 2 +89107 4632 Melville 's plotline 2 +89108 4632 Melville 's 2 +89109 4632 Melville 2 +89110 4632 a fully engaged supporting cast 3 +89111 4632 fully engaged supporting cast 3 +89112 4632 fully engaged 2 +89113 4632 ... have made the old boy 's characters more quick-witted than any English Lit 3 +89114 4632 have made the old boy 's characters more quick-witted than any English Lit 3 +89115 4632 made the old boy 's characters more quick-witted than any English Lit 3 +89116 4632 the old boy 's characters more quick-witted than any English Lit 3 +89117 4632 the old boy 's characters 2 +89118 4632 the old boy 's 2 +89119 4632 old boy 's 2 +89120 4632 more quick-witted than any English Lit 3 +89121 4632 quick-witted than any English Lit 3 +89122 4632 quick-witted 3 +89123 4632 than any English Lit 2 +89124 4632 any English Lit 2 +89125 4632 English Lit 2 +89126 4632 Lit 2 +89127 4632 major would have thought possible . 2 +89128 4632 would have thought possible . 2 +89129 4632 would have thought possible 2 +89130 4632 have thought possible 3 +89131 4632 thought possible 2 +89132 4633 The result puts a human face on Derrida , and makes one of the great minds of our times interesting and accessible to people who normally could n't care less . 3 +89133 4633 puts a human face on Derrida , and makes one of the great minds of our times interesting and accessible to people who normally could n't care less . 3 +89134 4633 puts a human face on Derrida , and makes one of the great minds of our times interesting and accessible to people who normally could n't care less 4 +89135 4633 puts a human face on Derrida , and makes one of the great minds of our times interesting and accessible 4 +89136 4633 puts a human face on Derrida , and 2 +89137 4633 puts a human face on Derrida , 2 +89138 4633 puts a human face on Derrida 2 +89139 4633 puts a human face 3 +89140 4633 on Derrida 2 +89141 4633 makes one of the great minds of our times interesting and accessible 3 +89142 4633 one of the great minds of our times interesting and accessible 3 +89143 4633 one of the great minds of our times 4 +89144 4633 of the great minds of our times 3 +89145 4633 the great minds of our times 4 +89146 4633 the great minds 3 +89147 4633 great minds 3 +89148 4633 interesting and accessible 3 +89149 4633 to people who normally could n't care less 2 +89150 4633 people who normally could n't care less 2 +89151 4633 who normally could n't care less 1 +89152 4633 normally could n't care less 1 +89153 4633 could n't care less 1 +89154 4633 care less 1 +89155 4634 Memorable for a peculiar malaise that renders its tension flaccid and , by extension , its surprises limp and its resolutions ritual . 1 +89156 4634 Memorable for a peculiar malaise that renders its tension flaccid and , by extension , its surprises limp and its resolutions ritual 0 +89157 4634 Memorable for a peculiar malaise that renders its tension flaccid and , by extension , its surprises limp and 1 +89158 4634 Memorable for a peculiar malaise that renders its tension flaccid and , by extension , its surprises limp 1 +89159 4634 Memorable for a peculiar malaise that renders its tension flaccid and , 0 +89160 4634 Memorable for a peculiar malaise that renders its tension flaccid and 1 +89161 4634 Memorable for a peculiar malaise that renders its tension flaccid 1 +89162 4634 Memorable for a peculiar malaise that renders its tension 3 +89163 4634 for a peculiar malaise that renders its tension 2 +89164 4634 a peculiar malaise that renders its tension 1 +89165 4634 a peculiar malaise 1 +89166 4634 peculiar malaise 1 +89167 4634 that renders its tension 2 +89168 4634 renders its tension 2 +89169 4634 renders 2 +89170 4634 its tension 2 +89171 4634 by extension , its surprises limp 2 +89172 4634 by extension 2 +89173 4634 , its surprises limp 2 +89174 4634 its surprises limp 1 +89175 4634 its surprises 3 +89176 4634 its resolutions ritual 2 +89177 4634 its resolutions 2 +89178 4634 ritual 2 +89179 4635 The bodily function jokes are about what you 'd expect , but there are rich veins of funny stuff in this movie . 3 +89180 4635 The bodily function jokes are about what you 'd expect , but there are rich veins of funny stuff in this movie 3 +89181 4635 The bodily function jokes are about what you 'd expect , but 2 +89182 4635 The bodily function jokes are about what you 'd expect , 1 +89183 4635 The bodily function jokes are about what you 'd expect 2 +89184 4635 The bodily function jokes 2 +89185 4635 bodily function jokes 1 +89186 4635 function jokes 2 +89187 4635 are about what you 'd expect 2 +89188 4635 about what you 'd expect 2 +89189 4635 what you 'd expect 2 +89190 4635 there are rich veins of funny stuff in this movie 3 +89191 4635 are rich veins of funny stuff in this movie 4 +89192 4635 rich veins of funny stuff in this movie 4 +89193 4635 rich veins 2 +89194 4635 veins 2 +89195 4635 of funny stuff in this movie 2 +89196 4635 funny stuff in this movie 3 +89197 4636 The director and her capable cast appear to be caught in a heady whirl of New Age-inspired good intentions , but the spell they cast is n't the least bit mesmerizing . 2 +89198 4636 The director and her capable cast appear to be caught in a heady whirl of New Age-inspired good intentions , but the spell they cast is n't the least bit mesmerizing 1 +89199 4636 The director and her capable cast appear to be caught in a heady whirl of New Age-inspired good intentions , but 3 +89200 4636 The director and her capable cast appear to be caught in a heady whirl of New Age-inspired good intentions , 3 +89201 4636 The director and her capable cast appear to be caught in a heady whirl of New Age-inspired good intentions 3 +89202 4636 The director and her capable cast 3 +89203 4636 The director and 2 +89204 4636 her capable cast 3 +89205 4636 appear to be caught in a heady whirl of New Age-inspired good intentions 2 +89206 4636 to be caught in a heady whirl of New Age-inspired good intentions 3 +89207 4636 be caught in a heady whirl of New Age-inspired good intentions 3 +89208 4636 caught in a heady whirl of New Age-inspired good intentions 3 +89209 4636 in a heady whirl of New Age-inspired good intentions 3 +89210 4636 a heady whirl of New Age-inspired good intentions 4 +89211 4636 a heady whirl 3 +89212 4636 heady whirl 2 +89213 4636 whirl 2 +89214 4636 of New Age-inspired good intentions 3 +89215 4636 New Age-inspired good intentions 3 +89216 4636 New Age-inspired 2 +89217 4636 Age-inspired 2 +89218 4636 the spell they cast is n't the least bit mesmerizing 0 +89219 4636 the spell they cast 2 +89220 4636 the spell 2 +89221 4636 they cast 2 +89222 4636 is n't the least bit mesmerizing 1 +89223 4636 the least bit mesmerizing 1 +89224 4636 least bit mesmerizing 2 +89225 4637 Road to Perdition does display greatness , and it 's worth seeing . 4 +89226 4637 Road to Perdition does display greatness , and it 's worth seeing 4 +89227 4637 Road to Perdition does display greatness , and 3 +89228 4637 Road to Perdition does display greatness , 2 +89229 4637 Road to Perdition does display greatness 3 +89230 4637 does display greatness 3 +89231 4637 display greatness 3 +89232 4637 it 's worth seeing 3 +89233 4637 's worth seeing 3 +89234 4638 You 'll cry for your money back . 0 +89235 4638 'll cry for your money back . 0 +89236 4638 'll cry for your money back 1 +89237 4638 cry for your money back 0 +89238 4638 cry for your money 2 +89239 4638 for your money 2 +89240 4638 your money 2 +89241 4639 The picture uses humor and a heartfelt conviction to tell a story about discovering your destination in life , but also acknowledging the places , and the people , from whence you came . 3 +89242 4639 The picture uses humor and a heartfelt conviction to tell a story about discovering your destination in life , but also acknowledging the places , and the people , from whence you came 3 +89243 4639 The picture uses humor and a heartfelt conviction to tell a story about discovering your destination in life , but 3 +89244 4639 The picture uses humor and a heartfelt conviction to tell a story about discovering your destination in life , 4 +89245 4639 The picture uses humor and a heartfelt conviction to tell a story about discovering your destination in life 4 +89246 4639 uses humor and a heartfelt conviction to tell a story about discovering your destination in life 4 +89247 4639 humor and a heartfelt conviction to tell a story about discovering your destination in life 4 +89248 4639 humor and a heartfelt conviction 3 +89249 4639 a heartfelt conviction 3 +89250 4639 heartfelt conviction 3 +89251 4639 to tell a story about discovering your destination in life 2 +89252 4639 tell a story about discovering your destination in life 2 +89253 4639 tell a story 2 +89254 4639 about discovering your destination in life 3 +89255 4639 discovering your destination in life 3 +89256 4639 discovering your destination 2 +89257 4639 your destination 2 +89258 4639 also acknowledging the places , and the people , from whence you came 2 +89259 4639 also acknowledging the places , and the people , from whence 2 +89260 4639 acknowledging the places , and the people , from whence 2 +89261 4639 acknowledging the places , and the people , 2 +89262 4639 acknowledging 2 +89263 4639 the places , and the people , 3 +89264 4639 the places , and the people 2 +89265 4639 the places , and 2 +89266 4639 the places , 2 +89267 4639 the places 2 +89268 4639 from whence 2 +89269 4639 whence 2 +89270 4640 Starts promisingly but disintegrates into a dreary , humorless soap opera . 1 +89271 4640 promisingly but disintegrates into a dreary , humorless soap opera . 0 +89272 4640 but disintegrates into a dreary , humorless soap opera . 1 +89273 4640 but disintegrates into a dreary , humorless soap opera 1 +89274 4640 disintegrates into a dreary , humorless soap opera 0 +89275 4640 disintegrates 1 +89276 4640 into a dreary , humorless soap opera 0 +89277 4640 a dreary , humorless soap opera 0 +89278 4640 dreary , humorless soap opera 0 +89279 4640 , humorless soap opera 1 +89280 4640 humorless soap opera 0 +89281 4641 Either a fascinating study of the relationship between mothers and their children or a disturbing story about sociopaths and their marks . 2 +89282 4641 Either a fascinating study of the relationship between mothers and their children or a disturbing story about sociopaths and their marks 3 +89283 4641 a fascinating study of the relationship between mothers and their children or a disturbing story about sociopaths and their marks 3 +89284 4641 a fascinating study of the relationship between mothers and 3 +89285 4641 a fascinating study of the relationship between mothers 4 +89286 4641 of the relationship between mothers 2 +89287 4641 the relationship between mothers 3 +89288 4641 between mothers 2 +89289 4641 mothers 3 +89290 4641 their children or a disturbing story about sociopaths and their marks 1 +89291 4641 their children or 2 +89292 4641 their children 3 +89293 4641 a disturbing story about sociopaths and their marks 3 +89294 4641 a disturbing story 2 +89295 4641 disturbing story 1 +89296 4641 about sociopaths and their marks 2 +89297 4641 sociopaths and their marks 2 +89298 4641 sociopaths and 2 +89299 4641 sociopaths 1 +89300 4641 their marks 2 +89301 4642 You will likely prefer to keep on watching . 3 +89302 4642 will likely prefer to keep on watching . 3 +89303 4642 will likely prefer to keep on watching 3 +89304 4642 prefer to keep on watching 3 +89305 4642 to keep on watching 2 +89306 4642 keep on watching 2 +89307 4642 on watching 2 +89308 4643 -LRB- Garbus -RRB- discards the potential for pathological study , exhuming instead , the skewed melodrama of the circumstantial situation . 2 +89309 4643 -LRB- Garbus -RRB- 3 +89310 4643 Garbus -RRB- 2 +89311 4643 Garbus 2 +89312 4643 discards the potential for pathological study , exhuming instead , the skewed melodrama of the circumstantial situation . 1 +89313 4643 discards the potential for pathological study , exhuming instead , the skewed melodrama of the circumstantial situation 2 +89314 4643 discards 2 +89315 4643 the potential for pathological study , exhuming instead , the skewed melodrama of the circumstantial situation 2 +89316 4643 the potential for pathological study , exhuming instead , 2 +89317 4643 the potential for pathological study , exhuming instead 2 +89318 4643 the potential for pathological study , 2 +89319 4643 the potential for pathological study 2 +89320 4643 for pathological study 2 +89321 4643 pathological study 2 +89322 4643 pathological 2 +89323 4643 exhuming instead 2 +89324 4643 exhuming 2 +89325 4643 the skewed melodrama of the circumstantial situation 2 +89326 4643 the skewed melodrama 3 +89327 4643 skewed melodrama 1 +89328 4643 of the circumstantial situation 3 +89329 4643 the circumstantial situation 2 +89330 4643 circumstantial situation 2 +89331 4643 circumstantial 2 +89332 4644 Even though it is infused with the sensibility of a video director , it does n't make for completely empty entertainment 2 +89333 4644 Even though it is infused with the sensibility of a video director 2 +89334 4644 though it is infused with the sensibility of a video director 2 +89335 4644 it is infused with the sensibility of a video director 3 +89336 4644 is infused with the sensibility of a video director 3 +89337 4644 infused with the sensibility of a video director 3 +89338 4644 with the sensibility of a video director 3 +89339 4644 the sensibility of a video director 2 +89340 4644 of a video director 2 +89341 4644 a video director 2 +89342 4644 video director 2 +89343 4644 , it does n't make for completely empty entertainment 2 +89344 4644 it does n't make for completely empty entertainment 3 +89345 4644 does n't make for completely empty entertainment 2 +89346 4644 make for completely empty entertainment 1 +89347 4644 for completely empty entertainment 0 +89348 4644 completely empty entertainment 1 +89349 4644 completely empty 1 +89350 4645 Only in its final surprising shots does Rabbit-Proof Fence find the authority it 's looking for . 2 +89351 4645 Only in its final surprising shots 2 +89352 4645 in its final surprising shots 3 +89353 4645 its final surprising shots 3 +89354 4645 final surprising shots 3 +89355 4645 surprising shots 2 +89356 4645 does Rabbit-Proof Fence find the authority it 's looking for . 2 +89357 4645 does Rabbit-Proof Fence find the authority it 's looking for 2 +89358 4645 does Rabbit-Proof Fence 2 +89359 4645 find the authority it 's looking for 2 +89360 4645 the authority it 's looking for 2 +89361 4645 the authority 1 +89362 4645 it 's looking for 2 +89363 4645 's looking for 3 +89364 4646 A certain sexiness underlines even the dullest tangents . 3 +89365 4646 A certain sexiness 3 +89366 4646 certain sexiness 3 +89367 4646 sexiness 3 +89368 4646 underlines even the dullest tangents . 2 +89369 4646 underlines even the dullest tangents 1 +89370 4646 underlines 2 +89371 4646 even the dullest tangents 2 +89372 4646 the dullest tangents 1 +89373 4646 dullest tangents 1 +89374 4646 tangents 2 +89375 4647 While it 's all quite tasteful to look at , the attention process tends to do a little fleeing of its own . 1 +89376 4647 While it 's all quite tasteful to look at 2 +89377 4647 it 's all quite tasteful to look at 3 +89378 4647 's all quite tasteful to look at 3 +89379 4647 quite tasteful to look at 3 +89380 4647 tasteful to look at 3 +89381 4647 , the attention process tends to do a little fleeing of its own . 1 +89382 4647 the attention process tends to do a little fleeing of its own . 1 +89383 4647 the attention process 2 +89384 4647 attention process 2 +89385 4647 tends to do a little fleeing of its own . 1 +89386 4647 tends to do a little fleeing of its own 2 +89387 4647 to do a little fleeing of its own 1 +89388 4647 do a little fleeing of its own 1 +89389 4647 a little fleeing of its own 1 +89390 4647 a little fleeing 2 +89391 4647 little fleeing 2 +89392 4647 fleeing 2 +89393 4648 One of those rare films that seems as though it was written for no one , but somehow manages to convince almost everyone that it was put on the screen , just for them . 4 +89394 4648 One of those rare films that seems as though it was written for no one , but somehow 2 +89395 4648 of those rare films that seems as though it was written for no one , but somehow 2 +89396 4648 those rare films that seems as though it was written for no one , but somehow 2 +89397 4648 those rare films 2 +89398 4648 rare films 2 +89399 4648 that seems as though it was written for no one , but somehow 1 +89400 4648 seems as though it was written for no one , but somehow 1 +89401 4648 as though it was written for no one , but somehow 2 +89402 4648 though it was written for no one , but somehow 3 +89403 4648 though it was written for no one 2 +89404 4648 it was written for no one 1 +89405 4648 was written for no one 1 +89406 4648 written for no one 3 +89407 4648 for no one 1 +89408 4648 , but somehow 2 +89409 4648 manages to convince almost everyone that it was put on the screen , just for them . 3 +89410 4648 manages to convince almost everyone that it was put on the screen , just for them 3 +89411 4648 to convince almost everyone that it was put on the screen , just for them 3 +89412 4648 convince almost everyone that it was put on the screen , just for them 3 +89413 4648 convince almost everyone 2 +89414 4648 almost everyone 2 +89415 4648 that it was put on the screen , just for them 2 +89416 4648 it was put on the screen , just for them 2 +89417 4648 was put on the screen , just for them 2 +89418 4648 put on the screen , just for them 2 +89419 4648 on the screen , just for them 2 +89420 4648 , just for them 3 +89421 4648 just for them 2 +89422 4649 Watch Barbershop again if you 're in need of a Cube fix -- this is n't worth sitting through . 1 +89423 4649 Watch Barbershop again if you 're in need of a Cube fix -- this is n't worth sitting through 0 +89424 4649 Watch Barbershop again if you 're in need of a Cube fix -- 3 +89425 4649 Watch Barbershop again if you 're in need of a Cube fix 3 +89426 4649 Watch Barbershop 2 +89427 4649 again if you 're in need of a Cube fix 2 +89428 4649 if you 're in need of a Cube fix 2 +89429 4649 you 're in need of a Cube fix 2 +89430 4649 're in need of a Cube fix 2 +89431 4649 in need of a Cube fix 2 +89432 4649 need of a Cube fix 1 +89433 4649 of a Cube fix 2 +89434 4649 a Cube fix 2 +89435 4649 Cube fix 2 +89436 4649 fix 2 +89437 4649 this is n't worth sitting through 0 +89438 4649 is n't worth sitting through 1 +89439 4649 worth sitting through 3 +89440 4649 sitting through 2 +89441 4650 You could easily mistake it for a sketchy work-in-progress that was inexplicably rushed to the megaplexes before its time . 0 +89442 4650 could easily mistake it for a sketchy work-in-progress that was inexplicably rushed to the megaplexes before its time . 0 +89443 4650 could easily mistake it for a sketchy work-in-progress that was inexplicably rushed to the megaplexes before its time 1 +89444 4650 mistake it for a sketchy work-in-progress that was inexplicably rushed to the megaplexes before its time 1 +89445 4650 mistake it 2 +89446 4650 for a sketchy work-in-progress that was inexplicably rushed to the megaplexes before its time 0 +89447 4650 a sketchy work-in-progress that was inexplicably rushed to the megaplexes before its time 1 +89448 4650 a sketchy work-in-progress 1 +89449 4650 sketchy work-in-progress 2 +89450 4650 that was inexplicably rushed to the megaplexes before its time 1 +89451 4650 was inexplicably rushed to the megaplexes before its time 1 +89452 4650 was inexplicably 2 +89453 4650 rushed to the megaplexes before its time 2 +89454 4650 rushed to the megaplexes 1 +89455 4650 to the megaplexes 2 +89456 4650 the megaplexes 2 +89457 4650 megaplexes 2 +89458 4650 before its time 2 +89459 4651 A sour attempt at making a Farrelly Brothers-style , down-and-dirty laugher for the female set . 1 +89460 4651 A sour attempt at making a Farrelly Brothers-style , down-and-dirty laugher for the female 0 +89461 4651 A sour attempt 1 +89462 4651 sour attempt 1 +89463 4651 at making a Farrelly Brothers-style , down-and-dirty laugher for the female 2 +89464 4651 making a Farrelly Brothers-style , down-and-dirty laugher for the female 3 +89465 4651 making a Farrelly Brothers-style , down-and-dirty laugher 2 +89466 4651 a Farrelly Brothers-style , down-and-dirty laugher 3 +89467 4651 Farrelly Brothers-style , down-and-dirty laugher 3 +89468 4651 Brothers-style , down-and-dirty laugher 2 +89469 4651 Brothers-style 2 +89470 4651 , down-and-dirty laugher 2 +89471 4651 down-and-dirty laugher 3 +89472 4651 down-and-dirty 1 +89473 4651 laugher 2 +89474 4651 for the female 2 +89475 4651 the female 2 +89476 4651 set . 2 +89477 4652 There are just too many characters saying too many clever things and getting into too many pointless situations . 1 +89478 4652 are just too many characters saying too many clever things and getting into too many pointless situations . 2 +89479 4652 are just too many characters saying too many clever things and getting into too many pointless situations 0 +89480 4652 are just 2 +89481 4652 too many characters saying too many clever things and getting into too many pointless situations 1 +89482 4652 too many characters saying too many clever things and 1 +89483 4652 too many characters saying too many clever things 2 +89484 4652 too many characters 1 +89485 4652 many characters 2 +89486 4652 saying too many clever things 2 +89487 4652 too many clever things 1 +89488 4652 clever things 2 +89489 4652 getting into too many pointless situations 1 +89490 4652 into too many pointless situations 1 +89491 4652 too many pointless situations 1 +89492 4652 too many pointless 2 +89493 4652 many pointless 1 +89494 4653 There is so much plodding sensitivity . 2 +89495 4653 is so much plodding sensitivity . 2 +89496 4653 is so much plodding sensitivity 1 +89497 4653 is so much 2 +89498 4653 plodding sensitivity 2 +89499 4654 But be warned , you too may feel time has decided to stand still . 2 +89500 4654 But be warned 2 +89501 4654 be warned 1 +89502 4654 warned 1 +89503 4654 , you too may feel time has decided to stand still . 1 +89504 4654 you too may feel time has decided to stand still . 1 +89505 4654 too may feel time has decided to stand still . 2 +89506 4654 may feel time has decided to stand still . 1 +89507 4654 may feel time has decided to stand still 2 +89508 4654 feel time has decided to stand still 1 +89509 4654 time has decided to stand still 2 +89510 4654 has decided to stand still 2 +89511 4654 decided to stand still 2 +89512 4654 decided 2 +89513 4654 to stand still 2 +89514 4654 stand still 2 +89515 4655 Hey everybody , wanna watch a movie in which a guy dressed as a children 's party clown gets violently gang-raped ? 0 +89516 4655 everybody , wanna watch a movie in which a guy dressed as a children 's party clown gets violently gang-raped ? 0 +89517 4655 , wanna watch a movie in which a guy dressed as a children 's party clown gets violently gang-raped ? 1 +89518 4655 wanna watch a movie in which a guy dressed as a children 's party clown gets violently gang-raped ? 1 +89519 4655 wanna 2 +89520 4655 watch a movie in which a guy dressed as a children 's party clown gets violently gang-raped ? 1 +89521 4655 watch a movie in which a guy dressed as a children 's party clown gets violently gang-raped 1 +89522 4655 a movie in which a guy dressed as a children 's party clown gets violently gang-raped 1 +89523 4655 in which a guy dressed as a children 's party clown gets violently gang-raped 1 +89524 4655 a guy dressed as a children 's party clown gets violently gang-raped 1 +89525 4655 dressed as a children 's party clown gets violently gang-raped 0 +89526 4655 as a children 's party clown gets violently gang-raped 1 +89527 4655 a children 's party clown gets violently gang-raped 1 +89528 4655 a children 's party clown 1 +89529 4655 party clown 2 +89530 4655 clown 2 +89531 4655 gets violently gang-raped 0 +89532 4655 violently gang-raped 2 +89533 4655 violently 2 +89534 4655 gang-raped 2 +89535 4656 All three descriptions suit Evelyn , a besotted and obvious drama that tells us nothing new . 1 +89536 4656 All three descriptions suit Evelyn , a besotted and obvious drama that tells us nothing new 0 +89537 4656 All three descriptions suit Evelyn , 2 +89538 4656 All three descriptions suit Evelyn 2 +89539 4656 three descriptions suit Evelyn 2 +89540 4656 descriptions suit Evelyn 2 +89541 4656 descriptions 2 +89542 4656 suit Evelyn 2 +89543 4656 suit 2 +89544 4656 a besotted and obvious drama that tells us nothing new 1 +89545 4656 a besotted and obvious drama 1 +89546 4656 besotted and obvious drama 0 +89547 4656 besotted and obvious 1 +89548 4656 besotted and 2 +89549 4656 besotted 2 +89550 4656 that tells us nothing new 1 +89551 4656 tells us nothing new 1 +89552 4656 us nothing new 1 +89553 4657 Courtney CHASES Stuart with a CELL PHONE . 2 +89554 4657 Courtney CHASES Stuart with a CELL PHONE 2 +89555 4657 Courtney CHASES Stuart 2 +89556 4657 Courtney 2 +89557 4657 CHASES Stuart 2 +89558 4657 with a CELL PHONE 2 +89559 4657 a CELL PHONE 2 +89560 4657 CELL PHONE 2 +89561 4658 Boasts a handful of virtuosic set pieces and offers a fair amount of trashy , kinky fun . 3 +89562 4658 Boasts a handful of virtuosic set pieces and offers a fair amount of trashy , kinky fun 3 +89563 4658 Boasts a handful of virtuosic set pieces and 3 +89564 4658 Boasts a handful of virtuosic set pieces 3 +89565 4658 a handful of virtuosic set pieces 3 +89566 4658 a handful 3 +89567 4658 of virtuosic set pieces 3 +89568 4658 virtuosic set pieces 3 +89569 4658 virtuosic 3 +89570 4658 offers a fair amount of trashy , kinky fun 3 +89571 4658 a fair amount of trashy , kinky fun 2 +89572 4658 of trashy , kinky fun 3 +89573 4658 trashy , kinky fun 3 +89574 4658 , kinky fun 3 +89575 4658 kinky fun 3 +89576 4659 If ever a concept came handed down from the movie gods on a silver platter , this is it . 4 +89577 4659 If ever a concept came handed down from the movie gods on a silver platter 4 +89578 4659 ever a concept came handed down from the movie gods on a silver platter 4 +89579 4659 ever a concept 2 +89580 4659 came handed down from the movie gods on a silver platter 4 +89581 4659 handed down from the movie gods on a silver platter 4 +89582 4659 handed down from the movie gods 4 +89583 4659 handed down 1 +89584 4659 from the movie gods 3 +89585 4659 the movie gods 2 +89586 4659 movie gods 2 +89587 4659 gods 2 +89588 4659 on a silver platter 2 +89589 4659 a silver platter 2 +89590 4659 silver platter 2 +89591 4660 Wiseman is patient and uncompromising , letting his camera observe and record the lives of women torn apart by a legacy of abuse . 3 +89592 4660 Wiseman is patient and uncompromising , letting his camera observe and record the lives of women torn apart by a legacy of abuse 3 +89593 4660 Wiseman is patient and 3 +89594 4660 Wiseman is patient 3 +89595 4660 is patient 2 +89596 4660 uncompromising , letting his camera observe and record the lives of women torn apart by a legacy of abuse 2 +89597 4660 uncompromising , letting 2 +89598 4660 his camera observe and record the lives of women torn apart by a legacy of abuse 2 +89599 4660 observe and record the lives of women torn apart by a legacy of abuse 2 +89600 4660 observe and 2 +89601 4660 observe 2 +89602 4660 record the lives of women torn apart by a legacy of abuse 1 +89603 4660 the lives of women torn apart by a legacy of abuse 1 +89604 4660 of women torn apart by a legacy of abuse 1 +89605 4660 women torn apart by a legacy of abuse 1 +89606 4660 torn apart by a legacy of abuse 1 +89607 4660 torn apart 1 +89608 4660 by a legacy of abuse 1 +89609 4660 a legacy of abuse 2 +89610 4660 a legacy 3 +89611 4660 of abuse 1 +89612 4661 Admirably ambitious but self-indulgent . 2 +89613 4661 Admirably ambitious but self-indulgent 2 +89614 4661 ambitious but self-indulgent 1 +89615 4661 ambitious but 2 +89616 4662 Can be viewed as pure composition and form -- film as music 3 +89617 4662 Can be viewed as pure composition and form -- 3 +89618 4662 be viewed as pure composition and form -- 3 +89619 4662 viewed as pure composition and form -- 3 +89620 4662 as pure composition and form -- 3 +89621 4662 pure composition and form -- 2 +89622 4662 pure composition and form 3 +89623 4662 pure composition and 3 +89624 4662 pure composition 3 +89625 4662 film as music 2 +89626 4662 as music 2 +89627 4663 Skillfully weaves both the elements of the plot and a powerfully evocative mood combining heated sexuality with a haunting sense of malaise . 4 +89628 4663 weaves both the elements of the plot and a powerfully evocative mood combining heated sexuality with a haunting sense of malaise . 3 +89629 4663 weaves both the elements of the plot and a powerfully evocative mood combining heated sexuality with a haunting sense of malaise 3 +89630 4663 weaves 2 +89631 4663 both the elements of the plot and a powerfully evocative mood combining heated sexuality with a haunting sense of malaise 4 +89632 4663 both the elements 2 +89633 4663 of the plot and a powerfully evocative mood combining heated sexuality with a haunting sense of malaise 3 +89634 4663 the plot and a powerfully evocative mood combining heated sexuality with a haunting sense of malaise 3 +89635 4663 the plot and a powerfully evocative mood 4 +89636 4663 a powerfully evocative mood 4 +89637 4663 powerfully evocative mood 4 +89638 4663 powerfully evocative 4 +89639 4663 combining heated sexuality with a haunting sense of malaise 3 +89640 4663 combining heated sexuality 2 +89641 4663 combining 2 +89642 4663 heated sexuality 3 +89643 4663 with a haunting sense of malaise 2 +89644 4663 a haunting sense of malaise 1 +89645 4663 a haunting sense 2 +89646 4663 haunting sense 2 +89647 4663 of malaise 1 +89648 4664 The premise itself is just SOOOOO tired . 0 +89649 4664 itself is just SOOOOO tired . 0 +89650 4664 is just SOOOOO tired . 1 +89651 4664 is just SOOOOO tired 0 +89652 4664 SOOOOO tired 1 +89653 4664 SOOOOO 2 +89654 4665 As violent , profane and exploitative as the most offensive action flick you 've ever seen . 1 +89655 4665 As violent 2 +89656 4665 , profane and exploitative as the most offensive action flick you 've ever seen . 0 +89657 4665 profane and exploitative as the most offensive action flick you 've ever seen . 0 +89658 4665 profane and exploitative as the most offensive action 1 +89659 4665 profane and exploitative 1 +89660 4665 profane and 2 +89661 4665 as the most offensive action 1 +89662 4665 the most offensive action 1 +89663 4665 most offensive action 1 +89664 4665 flick you 've ever seen . 2 +89665 4665 flick you 've ever seen 2 +89666 4666 One of the best movies of the year . 4 +89667 4666 One of the best movies of the year 4 +89668 4666 of the best movies of the year 4 +89669 4666 the best movies of the year 4 +89670 4666 the best movies 4 +89671 4666 best movies 3 +89672 4667 Any film that does n't even in passing mention political prisoners , poverty and the boat loads of people who try to escape the country is less a documentary and more propaganda by way of a valentine sealed with a kiss . 1 +89673 4667 Any film that does n't even in passing mention political prisoners , poverty and the boat loads of people who try to escape the country 1 +89674 4667 that does n't even in passing mention political prisoners , poverty and the boat loads of people who try to escape the country 1 +89675 4667 does n't even in passing mention political prisoners , poverty and the boat loads of people who try to escape the country 1 +89676 4667 does n't even in passing 2 +89677 4667 even in passing 2 +89678 4667 in passing 2 +89679 4667 mention political prisoners , poverty and the boat loads of people who try to escape the country 2 +89680 4667 political prisoners , poverty and the boat loads of people who try to escape the country 1 +89681 4667 political prisoners , poverty and 2 +89682 4667 political prisoners , poverty 2 +89683 4667 political prisoners , 2 +89684 4667 political prisoners 2 +89685 4667 prisoners 2 +89686 4667 the boat loads of people who try to escape the country 1 +89687 4667 the boat loads 2 +89688 4667 boat loads 2 +89689 4667 of people who try to escape the country 2 +89690 4667 people who try to escape the country 2 +89691 4667 who try to escape the country 2 +89692 4667 try to escape the country 2 +89693 4667 to escape the country 2 +89694 4667 escape the country 2 +89695 4667 is less a documentary and more propaganda by way of a valentine sealed with a kiss . 1 +89696 4667 is less a documentary and more propaganda by way of a valentine sealed with a kiss 1 +89697 4667 is less a documentary and more propaganda 2 +89698 4667 less a documentary and more propaganda 1 +89699 4667 a documentary and more propaganda 1 +89700 4667 more propaganda 1 +89701 4667 by way of a valentine sealed with a kiss 3 +89702 4667 way of a valentine sealed with a kiss 2 +89703 4667 of a valentine sealed with a kiss 3 +89704 4667 a valentine sealed with a kiss 3 +89705 4667 a valentine 2 +89706 4667 valentine 3 +89707 4667 sealed with a kiss 3 +89708 4667 sealed 2 +89709 4667 with a kiss 2 +89710 4668 Late Marriage is an in-your-face family drama and black comedy that is filled with raw emotions conveying despair and love . 3 +89711 4668 is an in-your-face family drama and black comedy that is filled with raw emotions conveying despair and love . 3 +89712 4668 is an in-your-face family drama and black comedy that is filled with raw emotions conveying despair and love 3 +89713 4668 an in-your-face family drama and black comedy that is filled with raw emotions conveying despair and love 3 +89714 4668 an in-your-face family drama and black comedy 2 +89715 4668 in-your-face family drama and black comedy 3 +89716 4668 in-your-face 2 +89717 4668 family drama and black comedy 2 +89718 4668 drama and black comedy 2 +89719 4668 that is filled with raw emotions conveying despair and love 3 +89720 4668 is filled with raw emotions conveying despair and love 3 +89721 4668 filled with raw emotions conveying despair and love 3 +89722 4668 filled with raw emotions 3 +89723 4668 with raw emotions 3 +89724 4668 raw emotions 3 +89725 4668 conveying despair and love 2 +89726 4668 despair and love 2 +89727 4668 despair and 1 +89728 4669 But it does have one saving grace . 3 +89729 4669 it does have one saving grace . 3 +89730 4669 does have one saving grace . 2 +89731 4669 does have one saving grace 2 +89732 4669 have one saving grace 3 +89733 4669 one saving grace 2 +89734 4669 saving grace 3 +89735 4670 A first-class , thoroughly involving B movie that effectively combines two surefire , beloved genres -- the prison flick and the fight film . 4 +89736 4670 A first-class , thoroughly involving B movie that effectively combines two surefire , beloved genres -- the prison flick and the fight film 3 +89737 4670 A first-class , thoroughly involving B movie that effectively combines two surefire , beloved genres -- 4 +89738 4670 A first-class , thoroughly involving B movie that effectively combines two surefire , beloved genres 4 +89739 4670 A first-class , thoroughly involving B movie 4 +89740 4670 first-class , thoroughly involving B movie 2 +89741 4670 first-class , thoroughly involving 4 +89742 4670 first-class 3 +89743 4670 , thoroughly involving 3 +89744 4670 thoroughly involving 4 +89745 4670 B movie 1 +89746 4670 that effectively combines two surefire , beloved genres 3 +89747 4670 effectively combines two surefire , beloved genres 4 +89748 4670 combines two surefire , beloved genres 4 +89749 4670 two surefire , beloved genres 3 +89750 4670 surefire , beloved genres 4 +89751 4670 , beloved genres 3 +89752 4670 beloved genres 3 +89753 4670 beloved 3 +89754 4670 the prison flick and the fight film 2 +89755 4670 the prison flick and 2 +89756 4670 the prison flick 2 +89757 4670 prison flick 2 +89758 4670 the fight film 2 +89759 4670 fight film 2 +89760 4671 Kaufman 's script is never especially clever and often is rather pretentious . 1 +89761 4671 Kaufman 's script 2 +89762 4671 is never especially clever and often is rather pretentious . 1 +89763 4671 is never especially clever and often is rather pretentious 0 +89764 4671 is never especially clever and often 1 +89765 4671 is never especially clever and 1 +89766 4671 is never especially clever 2 +89767 4671 especially clever 3 +89768 4671 is rather pretentious 1 +89769 4671 rather pretentious 2 +89770 4672 Despite a quieter middle section , involving Aragorn 's dreams of Arwen , this is even better than The Fellowship . 3 +89771 4672 Despite a quieter middle section 2 +89772 4672 a quieter middle section 2 +89773 4672 quieter middle section 2 +89774 4672 middle section 2 +89775 4672 , involving Aragorn 's dreams of Arwen , this is even better than The Fellowship . 3 +89776 4672 involving Aragorn 's dreams of Arwen , this is even better than The Fellowship . 4 +89777 4672 involving Aragorn 's dreams of Arwen 2 +89778 4672 Aragorn 's dreams of Arwen 2 +89779 4672 Aragorn 's dreams 2 +89780 4672 Aragorn 's 2 +89781 4672 Aragorn 2 +89782 4672 of Arwen 2 +89783 4672 Arwen 2 +89784 4672 , this is even better than The Fellowship . 3 +89785 4672 this is even better than The Fellowship . 3 +89786 4672 is even better than The Fellowship . 4 +89787 4672 is even better than The Fellowship 4 +89788 4672 even better than The Fellowship 3 +89789 4672 than The Fellowship 2 +89790 4672 The Fellowship 2 +89791 4672 Fellowship 2 +89792 4673 plays like an unbalanced mixture of graphic combat footage and almost saccharine domestic interludes that are pure Hollywood . 1 +89793 4673 like an unbalanced mixture of graphic combat footage and almost saccharine domestic interludes that are pure Hollywood . 1 +89794 4673 like an unbalanced mixture of graphic combat footage and almost saccharine domestic interludes that are pure Hollywood 2 +89795 4673 an unbalanced mixture of graphic combat footage and almost saccharine domestic interludes that are pure Hollywood 1 +89796 4673 an unbalanced mixture of graphic combat footage and 1 +89797 4673 an unbalanced mixture of graphic combat footage 1 +89798 4673 an unbalanced mixture 0 +89799 4673 unbalanced mixture 1 +89800 4673 unbalanced 1 +89801 4673 of graphic combat footage 2 +89802 4673 graphic combat footage 2 +89803 4673 combat footage 2 +89804 4673 almost saccharine domestic interludes that are pure Hollywood 2 +89805 4673 almost saccharine domestic interludes 3 +89806 4673 almost saccharine 2 +89807 4673 domestic interludes 2 +89808 4673 interludes 2 +89809 4673 that are pure Hollywood 2 +89810 4673 are pure Hollywood 3 +89811 4673 pure Hollywood 1 +89812 4674 Scooby Doo is surely everything its fans are hoping it will be , and in that sense is a movie that deserves recommendation . 4 +89813 4674 Scooby Doo 2 +89814 4674 Doo 2 +89815 4674 is surely everything its fans are hoping it will be , and in that sense is a movie that deserves recommendation . 4 +89816 4674 is surely everything its fans are hoping it will be , and in that sense is a movie that deserves recommendation 3 +89817 4674 everything its fans are hoping it will be , and in that sense is a movie that deserves recommendation 4 +89818 4674 its fans are hoping it will be , and in that sense is a movie that deserves recommendation 3 +89819 4674 are hoping it will be , and in that sense is a movie that deserves recommendation 3 +89820 4674 hoping it will be , and in that sense is a movie that deserves recommendation 3 +89821 4674 it will be , and in that sense is a movie that deserves recommendation 3 +89822 4674 it will be , and 2 +89823 4674 it will be , 3 +89824 4674 it will be 2 +89825 4674 in that sense is a movie that deserves recommendation 3 +89826 4674 sense is a movie that deserves recommendation 3 +89827 4674 is a movie that deserves recommendation 4 +89828 4674 a movie that deserves recommendation 4 +89829 4674 that deserves recommendation 3 +89830 4674 deserves recommendation 3 +89831 4675 Kids should have a stirring time at this beautifully drawn movie . 4 +89832 4675 should have a stirring time at this beautifully drawn movie . 4 +89833 4675 should have a stirring time at this beautifully drawn movie 4 +89834 4675 have a stirring time at this beautifully drawn movie 4 +89835 4675 a stirring time at this beautifully drawn movie 4 +89836 4675 a stirring time 2 +89837 4675 stirring time 2 +89838 4675 at this beautifully drawn movie 4 +89839 4675 this beautifully drawn movie 4 +89840 4675 this beautifully 4 +89841 4675 drawn movie 2 +89842 4676 Recoing 's fantastic performance does n't exactly reveal what makes Vincent tick , but perhaps any definitive explanation for it would have felt like a cheat . 2 +89843 4676 Recoing 's fantastic performance 3 +89844 4676 Recoing 's 2 +89845 4676 Recoing 2 +89846 4676 fantastic performance 3 +89847 4676 does n't exactly reveal what makes Vincent tick , but perhaps any definitive explanation for it would have felt like a cheat . 2 +89848 4676 does n't exactly reveal what makes Vincent tick , but perhaps any definitive explanation for it would have felt like a cheat 3 +89849 4676 does n't exactly 2 +89850 4676 reveal what makes Vincent tick , but perhaps any definitive explanation for it would have felt like a cheat 2 +89851 4676 what makes Vincent tick , but perhaps any definitive explanation for it would have felt like a cheat 3 +89852 4676 makes Vincent tick , but perhaps any definitive explanation for it would have felt like a cheat 2 +89853 4676 Vincent tick , but perhaps any definitive explanation for it would have felt like a cheat 2 +89854 4676 Vincent tick , but perhaps 2 +89855 4676 Vincent tick , but 2 +89856 4676 Vincent tick , 2 +89857 4676 Vincent tick 2 +89858 4676 any definitive explanation for it would have felt like a cheat 1 +89859 4676 any definitive explanation 2 +89860 4676 definitive explanation 3 +89861 4676 for it would have felt like a cheat 1 +89862 4676 it would have felt like a cheat 2 +89863 4676 would have felt like a cheat 1 +89864 4676 have felt like a cheat 1 +89865 4676 felt like a cheat 2 +89866 4676 like a cheat 2 +89867 4677 It all looks and plays like a $ 40 million version of a game you 're more likely to enjoy on a computer . 1 +89868 4677 all looks and plays like a $ 40 million version of a game you 're more likely to enjoy on a computer . 0 +89869 4677 looks and plays like a $ 40 million version of a game you 're more likely to enjoy on a computer . 1 +89870 4677 looks and plays like a $ 40 million version of a game you 're more likely to enjoy on a computer 1 +89871 4677 looks and plays 2 +89872 4677 like a $ 40 million version of a game you 're more likely to enjoy on a computer 2 +89873 4677 a $ 40 million version of a game you 're more likely to enjoy on a computer 1 +89874 4677 a $ 40 million version of a game 1 +89875 4677 a $ 40 million version 2 +89876 4677 $ 40 million version 2 +89877 4677 $ 40 million 2 +89878 4677 $ 40 2 +89879 4677 of a game 2 +89880 4677 you 're more likely to enjoy on a computer 1 +89881 4677 're more likely to enjoy on a computer 1 +89882 4677 more likely to enjoy on a computer 2 +89883 4677 likely to enjoy on a computer 2 +89884 4677 to enjoy on a computer 2 +89885 4677 enjoy on a computer 2 +89886 4677 on a computer 2 +89887 4677 a computer 2 +89888 4678 The movie is about as deep as that sentiment . 1 +89889 4678 is about as deep as that sentiment . 2 +89890 4678 is about as deep as that sentiment 1 +89891 4678 is about as deep 2 +89892 4678 about as deep 2 +89893 4678 as deep 2 +89894 4678 as that sentiment 3 +89895 4678 that sentiment 2 +89896 4679 Woo has as much right to make a huge action sequence as any director , but how long will filmmakers copy the `` Saving Private Ryan '' battle scenes before realizing Steven Spielberg got it right the first time ? 1 +89897 4679 Woo has as much right to make a huge action sequence as any director 3 +89898 4679 has as much right to make a huge action sequence as any director 3 +89899 4679 has as much right 2 +89900 4679 as much right 2 +89901 4679 much right 2 +89902 4679 to make a huge action sequence as any director 2 +89903 4679 make a huge action sequence as any director 3 +89904 4679 make a huge action sequence 3 +89905 4679 a huge action sequence 3 +89906 4679 huge action sequence 3 +89907 4679 action sequence 2 +89908 4679 as any director 2 +89909 4679 any director 2 +89910 4679 , but how long will filmmakers copy the `` Saving Private Ryan '' battle scenes before realizing Steven Spielberg got it right the first time ? 1 +89911 4679 , but how long will filmmakers copy the `` Saving Private Ryan '' battle scenes before realizing Steven Spielberg got it right the first time 2 +89912 4679 how long will filmmakers copy the `` Saving Private Ryan '' battle scenes before realizing Steven Spielberg got it right the first time 1 +89913 4679 how long will filmmakers copy the `` Saving Private Ryan '' battle scenes before realizing Steven Spielberg 1 +89914 4679 how long 2 +89915 4679 will filmmakers copy the `` Saving Private Ryan '' battle scenes before realizing Steven Spielberg 2 +89916 4679 will filmmakers 2 +89917 4679 copy the `` Saving Private Ryan '' battle scenes before realizing Steven Spielberg 2 +89918 4679 the `` Saving Private Ryan '' battle scenes before realizing Steven Spielberg 2 +89919 4679 the `` Saving Private Ryan '' battle scenes 3 +89920 4679 `` Saving Private Ryan '' battle scenes 2 +89921 4679 Saving Private Ryan '' battle scenes 2 +89922 4679 Private Ryan '' battle scenes 2 +89923 4679 Ryan '' battle scenes 2 +89924 4679 '' battle scenes 2 +89925 4679 before realizing Steven Spielberg 2 +89926 4679 realizing Steven Spielberg 2 +89927 4679 got it right the first time 3 +89928 4679 got it right 3 +89929 4679 it right 2 +89930 4680 ` Unfaithful ' cheats on itself and retreats to comfortable territory . 1 +89931 4680 Unfaithful ' cheats on itself and retreats to comfortable territory . 1 +89932 4680 ' cheats on itself and retreats to comfortable territory . 2 +89933 4680 cheats on itself and retreats to comfortable territory . 0 +89934 4680 cheats on itself and retreats to comfortable territory 1 +89935 4680 cheats on itself and retreats 2 +89936 4680 cheats 2 +89937 4680 on itself and retreats 2 +89938 4680 itself and retreats 1 +89939 4680 itself and 2 +89940 4680 retreats 2 +89941 4680 to comfortable territory 2 +89942 4680 comfortable territory 2 +89943 4681 High drama , Disney-style - a wing and a prayer and a hunky has-been pursuing his castle in the sky . 3 +89944 4681 High drama , Disney-style - a wing and a prayer and a hunky has-been pursuing his castle in the sky 3 +89945 4681 High drama , Disney-style - 2 +89946 4681 High drama , Disney-style 3 +89947 4681 High drama , 3 +89948 4681 Disney-style 2 +89949 4681 a wing and a prayer and a hunky has-been pursuing his castle in the sky 2 +89950 4681 a wing and a prayer and 2 +89951 4681 a wing and a prayer 2 +89952 4681 a wing and 2 +89953 4681 a wing 2 +89954 4681 wing 2 +89955 4681 a prayer 2 +89956 4681 prayer 2 +89957 4681 a hunky has-been pursuing his castle in the sky 2 +89958 4681 a hunky has-been 1 +89959 4681 hunky has-been 1 +89960 4681 hunky 2 +89961 4681 has-been 1 +89962 4681 pursuing his castle in the sky 2 +89963 4681 pursuing his castle 2 +89964 4681 his castle 2 +89965 4681 castle 2 +89966 4681 in the sky 2 +89967 4681 the sky 2 +89968 4681 sky 2 +89969 4682 Works because we 're never sure if Ohlinger 's on the level or merely a dying , delusional man trying to get into the history books before he croaks . 2 +89970 4682 Works because we 're never sure if Ohlinger 's on the level or merely a dying , delusional man trying to get into the history books before he croaks 3 +89971 4682 Works because we 're never sure if Ohlinger 's on the level or merely 3 +89972 4682 because we 're never sure if Ohlinger 's on the level or merely 2 +89973 4682 we 're never sure if Ohlinger 's on the level or merely 2 +89974 4682 're never sure if Ohlinger 's on the level or merely 2 +89975 4682 sure if Ohlinger 's on the level or merely 2 +89976 4682 if Ohlinger 's on the level or merely 2 +89977 4682 Ohlinger 's on the level or merely 2 +89978 4682 Ohlinger 2 +89979 4682 's on the level or merely 2 +89980 4682 on the level or merely 2 +89981 4682 on the level or 2 +89982 4682 on the level 2 +89983 4682 a dying , delusional man trying to get into the history books before he croaks 2 +89984 4682 a dying , delusional man 2 +89985 4682 dying , delusional man 2 +89986 4682 , delusional man 1 +89987 4682 delusional man 1 +89988 4682 trying to get into the history books before he croaks 2 +89989 4682 to get into the history books before he croaks 2 +89990 4682 get into the history books before he croaks 1 +89991 4682 get into the history books 2 +89992 4682 into the history books 2 +89993 4682 the history books 2 +89994 4682 history books 2 +89995 4682 before he croaks 2 +89996 4682 he croaks 1 +89997 4682 croaks 2 +89998 4683 Bravo reveals the true intent of her film by carefully selecting interview subjects who will construct a portrait of Castro so predominantly charitable it can only be seen as propaganda . 2 +89999 4683 Bravo 2 +90000 4683 reveals the true intent of her film by carefully selecting interview subjects who will construct a portrait of Castro so predominantly charitable it can only be seen as propaganda . 1 +90001 4683 reveals the true intent of her film by carefully selecting interview subjects who will construct a portrait of Castro so predominantly charitable it can only be seen as propaganda 1 +90002 4683 reveals the true intent of her film 2 +90003 4683 the true intent of her film 2 +90004 4683 the true intent 2 +90005 4683 true intent 3 +90006 4683 of her film 2 +90007 4683 by carefully selecting interview subjects who will construct a portrait of Castro so predominantly charitable it can only be seen as propaganda 1 +90008 4683 carefully selecting interview subjects who will construct a portrait of Castro so predominantly charitable it can only be seen as propaganda 2 +90009 4683 selecting interview subjects who will construct a portrait of Castro so predominantly charitable it can only be seen as propaganda 1 +90010 4683 selecting 2 +90011 4683 interview subjects who will construct a portrait of Castro so predominantly charitable it can only be seen as propaganda 1 +90012 4683 interview subjects who will construct a portrait of Castro 2 +90013 4683 interview subjects 2 +90014 4683 who will construct a portrait of Castro 2 +90015 4683 will construct a portrait of Castro 2 +90016 4683 construct a portrait of Castro 2 +90017 4683 a portrait of Castro 2 +90018 4683 of Castro 2 +90019 4683 Castro 1 +90020 4683 so predominantly charitable it can only be seen as propaganda 1 +90021 4683 predominantly charitable it can only be seen as propaganda 1 +90022 4683 predominantly 2 +90023 4683 charitable it can only be seen as propaganda 1 +90024 4683 it can only be seen as propaganda 1 +90025 4683 can only be seen as propaganda 1 +90026 4683 be seen as propaganda 1 +90027 4683 seen as propaganda 1 +90028 4683 as propaganda 2 +90029 4684 The very definition of what critics have come to term an `` ambitious failure . '' 1 +90030 4684 The very definition of what critics have come to term an `` ambitious failure . 0 +90031 4684 The very definition of what critics have come to term an `` ambitious failure 1 +90032 4684 The very definition 2 +90033 4684 very definition 2 +90034 4684 of what critics have come to term an `` ambitious failure 0 +90035 4684 what critics have come to term an `` ambitious failure 0 +90036 4684 critics have come to term an `` ambitious failure 1 +90037 4684 have come to term an `` ambitious failure 1 +90038 4684 come to term an `` ambitious failure 0 +90039 4684 to term an `` ambitious failure 0 +90040 4684 term an `` ambitious failure 0 +90041 4684 an `` ambitious failure 0 +90042 4684 `` ambitious failure 1 +90043 4684 ambitious failure 1 +90044 4685 Ah , the travails of metropolitan life ! 2 +90045 4685 , the travails of metropolitan life ! 2 +90046 4685 the travails of metropolitan life ! 2 +90047 4685 the travails of metropolitan life 2 +90048 4685 of metropolitan life 2 +90049 4685 metropolitan life 2 +90050 4686 No film could possibly be more contemptuous of the single female population . 0 +90051 4686 No film 2 +90052 4686 could possibly be more contemptuous of the single female population . 3 +90053 4686 could possibly be more contemptuous of the single female population 1 +90054 4686 be more contemptuous of the single female population 2 +90055 4686 more contemptuous of the single female population 1 +90056 4686 contemptuous of the single female population 1 +90057 4686 contemptuous 2 +90058 4686 of the single female population 2 +90059 4686 the single female population 2 +90060 4686 single female population 2 +90061 4686 female population 1 +90062 4686 population 3 +90063 4687 It 's Splash without the jokes . 0 +90064 4687 's Splash without the jokes . 1 +90065 4687 's Splash without the jokes 1 +90066 4687 Splash without the jokes 1 +90067 4687 without the jokes 2 +90068 4688 Despite its raucous intent , XXX is as conventional as a Nike ad and as rebellious as spring break . 2 +90069 4688 Despite its raucous intent 2 +90070 4688 its raucous intent 2 +90071 4688 raucous intent 2 +90072 4688 , XXX is as conventional as a Nike ad and as rebellious as spring break . 3 +90073 4688 XXX is as conventional as a Nike ad and as rebellious as spring break . 2 +90074 4688 is as conventional as a Nike ad and as rebellious as spring break . 2 +90075 4688 is as conventional as a Nike ad and as rebellious as spring break 2 +90076 4688 is as conventional as a Nike ad and as rebellious 2 +90077 4688 as conventional as a Nike ad and as rebellious 2 +90078 4688 as conventional as a Nike ad and 2 +90079 4688 as conventional as a Nike ad 1 +90080 4688 conventional as a Nike ad 1 +90081 4688 as a Nike ad 2 +90082 4688 a Nike ad 2 +90083 4688 Nike ad 2 +90084 4688 Nike 2 +90085 4688 as rebellious 1 +90086 4688 rebellious 1 +90087 4688 as spring break 2 +90088 4689 This is a finely written , superbly acted offbeat thriller . 4 +90089 4689 is a finely written , superbly acted offbeat thriller . 4 +90090 4689 is a finely written , superbly acted offbeat thriller 4 +90091 4689 a finely written , superbly acted offbeat thriller 4 +90092 4689 a finely written , 3 +90093 4689 a finely written 3 +90094 4689 superbly acted offbeat thriller 4 +90095 4689 acted offbeat thriller 3 +90096 4689 offbeat thriller 3 +90097 4690 If not a home run , then at least a solid base hit . 3 +90098 4690 If not a home run , then at least 3 +90099 4690 not a home run , then at least 2 +90100 4690 not a home 2 +90101 4690 a home 2 +90102 4690 run , then at least 2 +90103 4690 run , then 2 +90104 4690 run , 2 +90105 4690 a solid base hit . 3 +90106 4690 a solid base 3 +90107 4690 solid base 3 +90108 4691 I 've yet to find an actual Vietnam War combat movie actually produced by either the North or South Vietnamese , but at least now we 've got something pretty damn close . 3 +90109 4691 I 've yet to find an actual Vietnam War combat movie actually produced by either the North or South Vietnamese , but at least now we 've got something pretty damn close 3 +90110 4691 I 've yet to find an actual Vietnam War combat movie actually produced by either the North or South Vietnamese , but 2 +90111 4691 I 've yet to find an actual Vietnam War combat movie actually produced by either the North or South Vietnamese , 2 +90112 4691 I 've yet to find an actual Vietnam War combat movie actually produced by either the North or South Vietnamese 1 +90113 4691 've yet to find an actual Vietnam War combat movie actually produced by either the North or South Vietnamese 2 +90114 4691 've yet 2 +90115 4691 to find an actual Vietnam War combat movie actually produced by either the North or South Vietnamese 2 +90116 4691 find an actual Vietnam War combat movie actually produced by either the North or South Vietnamese 2 +90117 4691 an actual Vietnam War combat movie actually produced by either the North or South Vietnamese 2 +90118 4691 an actual Vietnam War combat movie 3 +90119 4691 actual Vietnam War combat movie 2 +90120 4691 Vietnam War combat movie 2 +90121 4691 War combat movie 2 +90122 4691 combat movie 2 +90123 4691 actually produced by either the North or South Vietnamese 2 +90124 4691 produced by either the North or South Vietnamese 2 +90125 4691 by either the North or South Vietnamese 2 +90126 4691 either the North or South Vietnamese 2 +90127 4691 the North or South Vietnamese 2 +90128 4691 North or South Vietnamese 3 +90129 4691 or South Vietnamese 2 +90130 4691 South Vietnamese 2 +90131 4691 at least now we 've got something pretty damn close 3 +90132 4691 now we 've got something pretty damn close 3 +90133 4691 we 've got something pretty damn close 2 +90134 4691 've got something pretty damn close 3 +90135 4691 got something pretty damn close 2 +90136 4691 got something 3 +90137 4691 pretty damn close 2 +90138 4691 damn close 2 +90139 4692 We never truly come to care about the main characters and whether or not they 'll wind up together , and Michele 's spiritual quest is neither amusing nor dramatic enough to sustain interest . 0 +90140 4692 We never truly come to care about the main characters and whether or not they 'll wind up together , and Michele 's spiritual quest is neither amusing nor dramatic enough to sustain interest 0 +90141 4692 We never truly come to care about the main characters and whether or not they 'll wind up together , and 1 +90142 4692 We never truly come to care about the main characters and whether or not they 'll wind up together , 1 +90143 4692 We never truly come to care about the main characters and whether or not they 'll wind up together 0 +90144 4692 never truly come to care about the main characters and whether or not they 'll wind up together 1 +90145 4692 truly come to care about the main characters and whether or not they 'll wind up together 3 +90146 4692 truly come to care about the main characters and 2 +90147 4692 truly come to care about the main characters 3 +90148 4692 come to care about the main characters 3 +90149 4692 to care about the main characters 2 +90150 4692 care about the main characters 2 +90151 4692 about the main characters 2 +90152 4692 the main characters 2 +90153 4692 main characters 2 +90154 4692 whether or not they 'll wind up together 2 +90155 4692 they 'll wind up together 2 +90156 4692 'll wind up together 2 +90157 4692 wind up together 2 +90158 4692 Michele 's spiritual quest is neither amusing nor dramatic enough to sustain interest 1 +90159 4692 Michele 's spiritual quest 2 +90160 4692 Michele 's 2 +90161 4692 Michele 2 +90162 4692 spiritual quest 2 +90163 4692 is neither amusing nor dramatic enough to sustain interest 0 +90164 4692 neither amusing nor dramatic enough to sustain interest 0 +90165 4692 amusing nor dramatic enough to sustain interest 1 +90166 4692 amusing nor 2 +90167 4692 dramatic enough to sustain interest 3 +90168 4692 dramatic enough 3 +90169 4692 to sustain interest 2 +90170 4693 You 'll get the enjoyable basic minimum . 2 +90171 4693 'll get the enjoyable basic minimum . 2 +90172 4693 'll get the enjoyable basic minimum 2 +90173 4693 get the enjoyable basic minimum 3 +90174 4693 the enjoyable basic minimum 2 +90175 4693 enjoyable basic minimum 3 +90176 4693 enjoyable basic 3 +90177 4694 A shimmeringly lovely coming-of-age portrait , shot in artful , watery tones of blue , green and brown . 4 +90178 4694 A shimmeringly lovely coming-of-age portrait 4 +90179 4694 shimmeringly lovely coming-of-age portrait 4 +90180 4694 shimmeringly lovely 4 +90181 4694 shimmeringly 2 +90182 4694 coming-of-age portrait 3 +90183 4694 , shot in artful , watery tones of blue , green and brown . 3 +90184 4694 shot in artful , watery tones of blue , green and brown . 3 +90185 4694 shot in artful , watery tones of blue , green and brown 3 +90186 4694 in artful , watery tones of blue , green and brown 3 +90187 4694 artful , watery tones of blue , green and brown 3 +90188 4694 artful , watery tones 3 +90189 4694 , watery tones 2 +90190 4694 watery tones 1 +90191 4694 watery 2 +90192 4694 of blue , green and brown 2 +90193 4694 blue , green and brown 2 +90194 4694 , green and brown 2 +90195 4694 green and brown 2 +90196 4694 green and 2 +90197 4695 The Salton Sea has moments of inspired humour , though every scrap is of the darkest variety . 3 +90198 4695 The Salton Sea 2 +90199 4695 Salton Sea 2 +90200 4695 Salton 2 +90201 4695 has moments of inspired humour , though every scrap is of the darkest variety . 2 +90202 4695 has moments of inspired humour , though every scrap is of the darkest variety 2 +90203 4695 has moments of inspired humour , 3 +90204 4695 has moments of inspired humour 3 +90205 4695 moments of inspired humour 3 +90206 4695 of inspired humour 3 +90207 4695 inspired humour 3 +90208 4695 though every scrap is of the darkest variety 2 +90209 4695 every scrap is of the darkest variety 3 +90210 4695 every scrap 2 +90211 4695 scrap 1 +90212 4695 is of the darkest variety 1 +90213 4695 of the darkest variety 1 +90214 4695 the darkest variety 1 +90215 4695 darkest variety 2 +90216 4695 darkest 2 +90217 4696 Bears about as much resemblance to the experiences of most battered women as Spider-Man does to the experiences of most teenagers . 1 +90218 4696 Bears about as much resemblance to the experiences of most battered women as Spider-Man 1 +90219 4696 about as much resemblance to the experiences of most battered women as Spider-Man 1 +90220 4696 as much resemblance to the experiences of most battered women as Spider-Man 1 +90221 4696 as much resemblance to the experiences of most battered women 2 +90222 4696 as much resemblance 2 +90223 4696 resemblance 2 +90224 4696 to the experiences of most battered women 2 +90225 4696 the experiences of most battered women 2 +90226 4696 the experiences 2 +90227 4696 of most battered women 2 +90228 4696 most battered women 1 +90229 4696 battered women 2 +90230 4696 battered 2 +90231 4696 as Spider-Man 2 +90232 4696 does to the experiences of most teenagers . 2 +90233 4696 does to the experiences of most teenagers 2 +90234 4696 to the experiences of most teenagers 2 +90235 4696 the experiences of most teenagers 2 +90236 4696 of most teenagers 2 +90237 4696 most teenagers 2 +90238 4697 Has all the values of a straight-to-video movie , but because it has a bigger-name cast , it gets a full theatrical release . 1 +90239 4697 Has all the values of a straight-to-video movie , but because it has a bigger-name cast , it gets a full theatrical release 2 +90240 4697 Has all the values of a straight-to-video movie , 1 +90241 4697 Has all the values of a straight-to-video movie 1 +90242 4697 all the values of a straight-to-video movie 1 +90243 4697 all the values 2 +90244 4697 of a straight-to-video movie 2 +90245 4697 a straight-to-video movie 1 +90246 4697 straight-to-video movie 1 +90247 4697 straight-to-video 1 +90248 4697 but because it has a bigger-name cast , it gets a full theatrical release 3 +90249 4697 because it has a bigger-name cast , it gets a full theatrical release 2 +90250 4697 because it has a bigger-name cast 3 +90251 4697 it has a bigger-name cast 3 +90252 4697 has a bigger-name cast 3 +90253 4697 a bigger-name cast 3 +90254 4697 bigger-name cast 2 +90255 4697 bigger-name 2 +90256 4697 , it gets a full theatrical release 2 +90257 4697 it gets a full theatrical release 2 +90258 4697 gets a full theatrical release 2 +90259 4697 a full theatrical release 2 +90260 4697 full theatrical release 2 +90261 4698 The soundtrack alone is worth the price of admission . 4 +90262 4698 alone is worth the price of admission . 4 +90263 4698 is worth the price of admission . 4 +90264 4698 is worth the price of admission 3 +90265 4699 It 's very Beavis and Butthead , yet always seems to elicit a chuckle . 3 +90266 4699 's very Beavis and Butthead , yet always seems to elicit a chuckle . 2 +90267 4699 's very Beavis and Butthead , yet always seems to elicit a chuckle 3 +90268 4699 's very Beavis and Butthead , yet always 1 +90269 4699 's very Beavis and Butthead , yet 2 +90270 4699 's very Beavis and Butthead , 3 +90271 4699 's very Beavis and Butthead 2 +90272 4699 very Beavis and Butthead 2 +90273 4699 Beavis and Butthead 2 +90274 4699 Beavis and 2 +90275 4699 Beavis 2 +90276 4699 Butthead 2 +90277 4699 seems to elicit a chuckle 3 +90278 4699 to elicit a chuckle 2 +90279 4699 elicit a chuckle 3 +90280 4699 elicit 2 +90281 4700 Connoisseurs of Chinese film will be pleased to discover that Tian 's meticulous talent has not withered during his enforced hiatus . 3 +90282 4700 Connoisseurs of Chinese film 2 +90283 4700 of Chinese film 2 +90284 4700 will be pleased to discover that Tian 's meticulous talent has not withered during his enforced hiatus . 3 +90285 4700 will be pleased to discover that Tian 's meticulous talent has not withered during his enforced hiatus 3 +90286 4700 be pleased to discover that Tian 's meticulous talent has not withered during his enforced hiatus 3 +90287 4700 pleased to discover that Tian 's meticulous talent has not withered during his enforced hiatus 3 +90288 4700 pleased 4 +90289 4700 to discover that Tian 's meticulous talent has not withered during his enforced hiatus 3 +90290 4700 discover that Tian 's meticulous talent has not withered during his enforced hiatus 4 +90291 4700 that Tian 's meticulous talent has not withered during his enforced hiatus 3 +90292 4700 Tian 's meticulous talent has not withered during his enforced hiatus 4 +90293 4700 Tian 's meticulous talent 3 +90294 4700 Tian 's 2 +90295 4700 meticulous talent 3 +90296 4700 meticulous 2 +90297 4700 has not withered during his enforced hiatus 2 +90298 4700 has not 2 +90299 4700 withered during his enforced hiatus 2 +90300 4700 withered 1 +90301 4700 during his enforced hiatus 2 +90302 4700 his enforced hiatus 2 +90303 4700 enforced hiatus 2 +90304 4700 enforced 2 +90305 4700 hiatus 2 +90306 4701 -LRB- Taymor -RRB- utilizes the idea of making Kahlo 's art a living , breathing part of the movie , often catapulting the artist into her own work . 4 +90307 4701 -LRB- Taymor -RRB- 2 +90308 4701 Taymor -RRB- 2 +90309 4701 utilizes the idea of making Kahlo 's art a living , breathing part of the movie , often catapulting the artist into her own work . 4 +90310 4701 utilizes the idea of making Kahlo 's art a living , breathing part of the movie , often catapulting the artist into her own work 3 +90311 4701 utilizes 2 +90312 4701 the idea of making Kahlo 's art a living , breathing part of the movie , often catapulting the artist into her own work 3 +90313 4701 of making Kahlo 's art a living , breathing part of the movie , often catapulting the artist into her own work 3 +90314 4701 making Kahlo 's art a living , breathing part of the movie , often catapulting the artist into her own work 4 +90315 4701 making Kahlo 's art a living , breathing part of the movie , often 3 +90316 4701 making Kahlo 's art a living , breathing part of the movie , 3 +90317 4701 making Kahlo 's art a living , breathing part of the movie 3 +90318 4701 making Kahlo 's art a living , 3 +90319 4701 making Kahlo 's art a living 3 +90320 4701 making Kahlo 's art 2 +90321 4701 Kahlo 's art 2 +90322 4701 a living 2 +90323 4701 breathing part of the movie 2 +90324 4701 breathing 2 +90325 4701 part of the movie 2 +90326 4701 catapulting the artist into her own work 3 +90327 4701 catapulting the artist 3 +90328 4701 catapulting 3 +90329 4701 into her own work 2 +90330 4701 her own work 2 +90331 4701 own work 2 +90332 4702 This is rote spookiness , with nary an original idea -LRB- or role , or edit , or score , or anything , really -RRB- in sight , and the whole of the proceedings beg the question ` Why ? ' 0 +90333 4702 This is rote spookiness , with nary an original idea -LRB- or role , or edit , or score , or anything , really -RRB- in sight , and the whole of the proceedings beg the question ` Why ? 0 +90334 4702 This is rote spookiness , with nary an original idea -LRB- or role , or edit , or score , or anything , really -RRB- in sight , and the whole of the proceedings beg the question ` Why 0 +90335 4702 This is rote spookiness , with nary an original idea -LRB- or role , or edit , or score , or anything , really -RRB- in sight , and 0 +90336 4702 This is rote spookiness , with nary an original idea -LRB- or role , or edit , or score , or anything , really -RRB- in sight , 1 +90337 4702 This is rote spookiness , with nary an original idea -LRB- or role , or edit , or score , or anything , really -RRB- in sight 1 +90338 4702 is rote spookiness , with nary an original idea -LRB- or role , or edit , or score , or anything , really -RRB- in sight 0 +90339 4702 is rote spookiness , 2 +90340 4702 is rote spookiness 1 +90341 4702 rote spookiness 2 +90342 4702 with nary an original idea -LRB- or role , or edit , or score , or anything , really -RRB- in sight 0 +90343 4702 nary an original idea -LRB- or role , or edit , or score , or anything , really -RRB- in sight 0 +90344 4702 nary an original idea -LRB- or role , or edit , or score , or anything , really -RRB- 2 +90345 4702 -LRB- or role , or edit , or score , or anything , really -RRB- 1 +90346 4702 -LRB- or role , or edit , or score , or anything , really 1 +90347 4702 role , or edit , or score , or anything , really 3 +90348 4702 role , or edit , or score , or 2 +90349 4702 role , or edit , or score , 2 +90350 4702 role , 2 +90351 4702 or edit , or score , 2 +90352 4702 or edit , or score 2 +90353 4702 or edit , or 2 +90354 4702 or edit , 2 +90355 4702 or edit 2 +90356 4702 edit 1 +90357 4702 anything , really 2 +90358 4702 anything , 2 +90359 4702 in sight 2 +90360 4702 the whole of the proceedings beg the question ` Why 2 +90361 4702 the whole of the proceedings 2 +90362 4702 of the proceedings 2 +90363 4702 beg the question ` Why 1 +90364 4702 beg the question ` 2 +90365 4702 beg the question 2 +90366 4702 beg 2 +90367 4702 the question 2 +90368 4703 Beautiful , angry and sad , with a curious sick poetry , as if the Marquis de Sade had gone in for pastel landscapes . 3 +90369 4703 Beautiful , angry and sad , with a curious sick poetry , as if the Marquis de Sade 3 +90370 4703 Beautiful , angry and sad , 3 +90371 4703 Beautiful , angry and sad 3 +90372 4703 angry and sad 1 +90373 4703 angry and 1 +90374 4703 with a curious sick poetry , as if the Marquis de Sade 2 +90375 4703 a curious sick poetry , as if the Marquis de Sade 2 +90376 4703 a curious sick poetry , as if 2 +90377 4703 a curious sick poetry , 1 +90378 4703 a curious sick poetry 2 +90379 4703 curious sick poetry 2 +90380 4703 sick poetry 2 +90381 4703 had gone in for pastel landscapes . 3 +90382 4703 had gone in for pastel landscapes 2 +90383 4703 gone in for pastel landscapes 2 +90384 4703 in for pastel landscapes 2 +90385 4703 for pastel landscapes 2 +90386 4703 pastel landscapes 3 +90387 4703 pastel 2 +90388 4704 Fluffy neo-noir hiding behind cutesy film references . 1 +90389 4704 Fluffy neo-noir hiding behind cutesy film references 1 +90390 4704 Fluffy neo-noir 1 +90391 4704 neo-noir 2 +90392 4704 hiding behind cutesy film references 1 +90393 4704 hiding 2 +90394 4704 behind cutesy film references 3 +90395 4704 cutesy film references 2 +90396 4704 film references 2 +90397 4705 ... a cinematic disaster so inadvertently sidesplitting it 's worth the price of admission for the ridicule factor alone . 1 +90398 4705 a cinematic disaster so inadvertently sidesplitting it 's worth the price of admission for the ridicule factor alone . 1 +90399 4705 a cinematic disaster so inadvertently sidesplitting it 1 +90400 4705 a cinematic disaster 0 +90401 4705 cinematic disaster 0 +90402 4705 so inadvertently sidesplitting it 2 +90403 4705 inadvertently sidesplitting it 1 +90404 4705 sidesplitting it 2 +90405 4705 's worth the price of admission for the ridicule factor alone . 2 +90406 4705 's worth the price of admission for the ridicule factor alone 3 +90407 4705 's worth the price of admission for the ridicule factor 2 +90408 4705 worth the price of admission for the ridicule factor 2 +90409 4705 the price of admission for the ridicule factor 0 +90410 4705 of admission for the ridicule factor 1 +90411 4705 admission for the ridicule factor 1 +90412 4705 for the ridicule factor 1 +90413 4705 the ridicule factor 1 +90414 4705 ridicule factor 1 +90415 4705 factor 2 +90416 4706 An overwrought Taiwanese soaper about three people and their mixed-up relationship . 2 +90417 4706 An overwrought Taiwanese soaper about three people and their mixed-up relationship 1 +90418 4706 An overwrought Taiwanese soaper 1 +90419 4706 overwrought Taiwanese soaper 1 +90420 4706 Taiwanese soaper 2 +90421 4706 soaper 2 +90422 4706 about three people and their mixed-up relationship 2 +90423 4706 three people and their mixed-up relationship 2 +90424 4706 three people and 2 +90425 4706 three people 2 +90426 4706 their mixed-up relationship 2 +90427 4706 mixed-up relationship 3 +90428 4707 What little grace -LRB- Rifkin 's -RRB- tale of precarious skid-row dignity achieves is pushed into the margins by predictable plotting and tiresome histrionics . 1 +90429 4707 What little grace -LRB- Rifkin 's -RRB- tale of precarious skid-row dignity achieves 1 +90430 4707 little grace -LRB- Rifkin 's -RRB- tale of precarious skid-row dignity achieves 2 +90431 4707 little grace -LRB- Rifkin 's -RRB- tale of precarious skid-row dignity 3 +90432 4707 little grace -LRB- Rifkin 's -RRB- tale 2 +90433 4707 little grace -LRB- Rifkin 's -RRB- 2 +90434 4707 little grace 2 +90435 4707 -LRB- Rifkin 's -RRB- 2 +90436 4707 Rifkin 's -RRB- 2 +90437 4707 of precarious skid-row dignity 2 +90438 4707 precarious skid-row dignity 2 +90439 4707 skid-row dignity 2 +90440 4707 skid-row 1 +90441 4707 is pushed into the margins by predictable plotting and tiresome histrionics . 1 +90442 4707 is pushed into the margins by predictable plotting and tiresome histrionics 1 +90443 4707 pushed into the margins by predictable plotting and tiresome histrionics 0 +90444 4707 pushed into the margins 1 +90445 4707 pushed 2 +90446 4707 into the margins 2 +90447 4707 the margins 2 +90448 4707 margins 2 +90449 4707 by predictable plotting and tiresome histrionics 1 +90450 4707 predictable plotting and tiresome histrionics 0 +90451 4707 predictable plotting and 1 +90452 4707 predictable plotting 1 +90453 4707 tiresome histrionics 2 +90454 4708 The locale ... remains far more interesting than the story at hand . 1 +90455 4708 The locale 2 +90456 4708 locale 2 +90457 4708 ... remains far more interesting than the story at hand . 2 +90458 4708 remains far more interesting than the story at hand . 2 +90459 4708 remains far more interesting than the story at hand 2 +90460 4708 far more interesting than the story at hand 3 +90461 4708 than the story at hand 2 +90462 4708 the story at hand 2 +90463 4709 The story ... is inspiring , ironic , and revelatory of just how ridiculous and money-oriented the record industry really is . 4 +90464 4709 ... is inspiring , ironic , and revelatory of just how ridiculous and money-oriented the record industry really is . 3 +90465 4709 is inspiring , ironic , and revelatory of just how ridiculous and money-oriented the record industry really is . 3 +90466 4709 is inspiring , ironic , and revelatory of just how ridiculous and money-oriented the record industry really is 2 +90467 4709 is inspiring , ironic , and revelatory of just 3 +90468 4709 inspiring , ironic , and revelatory of just 3 +90469 4709 inspiring , ironic , and 3 +90470 4709 inspiring , ironic , 4 +90471 4709 inspiring , ironic 4 +90472 4709 revelatory of just 2 +90473 4709 of just 2 +90474 4709 how ridiculous and money-oriented the record industry really is 1 +90475 4709 how ridiculous and money-oriented 0 +90476 4709 ridiculous and money-oriented 0 +90477 4709 ridiculous and 1 +90478 4709 money-oriented 1 +90479 4709 the record industry really is 2 +90480 4709 the record industry 2 +90481 4709 record industry 2 +90482 4710 Though Frodo 's quest remains unfulfilled , a hardy group of determined New Zealanders has proved its creative mettle . 2 +90483 4710 Though Frodo 's quest remains unfulfilled 2 +90484 4710 Frodo 's quest remains unfulfilled 1 +90485 4710 Frodo 's quest 2 +90486 4710 Frodo 's 2 +90487 4710 Frodo 2 +90488 4710 remains unfulfilled 1 +90489 4710 , a hardy group of determined New Zealanders has proved its creative mettle . 4 +90490 4710 a hardy group of determined New Zealanders has proved its creative mettle . 4 +90491 4710 a hardy group of determined New Zealanders 2 +90492 4710 a hardy group 2 +90493 4710 hardy group 3 +90494 4710 hardy 2 +90495 4710 of determined New Zealanders 2 +90496 4710 determined New Zealanders 3 +90497 4710 New Zealanders 2 +90498 4710 Zealanders 2 +90499 4710 has proved its creative mettle . 3 +90500 4710 has proved its creative mettle 3 +90501 4710 proved its creative mettle 3 +90502 4710 its creative mettle 3 +90503 4710 creative mettle 3 +90504 4710 mettle 3 +90505 4711 Brutally honest and told with humor and poignancy , which makes its message resonate . 4 +90506 4711 Brutally honest and told with humor and poignancy 3 +90507 4711 Brutally honest and 3 +90508 4711 told with humor and poignancy 4 +90509 4711 with humor and poignancy 3 +90510 4711 humor and poignancy 3 +90511 4711 , which makes its message resonate . 2 +90512 4711 which makes its message resonate . 3 +90513 4711 makes its message resonate . 3 +90514 4711 makes its message resonate 3 +90515 4711 its message resonate 2 +90516 4711 message resonate 3 +90517 4712 Human Nature is a goofball movie , in the way that Malkovich was , but it tries too hard . 3 +90518 4712 Human Nature is a goofball movie , in the way that Malkovich was , but it tries too hard 1 +90519 4712 Human Nature is a goofball movie , in the way that Malkovich was , but 2 +90520 4712 Human Nature is a goofball movie , in the way that Malkovich was , 2 +90521 4712 Human Nature is a goofball movie , in the way that Malkovich was 2 +90522 4712 is a goofball movie , in the way that Malkovich was 3 +90523 4712 a goofball movie , in the way that Malkovich was 2 +90524 4712 a goofball movie , 2 +90525 4712 a goofball movie 2 +90526 4712 goofball movie 2 +90527 4712 goofball 2 +90528 4712 in the way that Malkovich was 2 +90529 4712 the way that Malkovich was 2 +90530 4712 that Malkovich was 2 +90531 4712 Malkovich was 2 +90532 4712 it tries too hard 2 +90533 4712 tries too hard 1 +90534 4713 It 's rare for any movie to be as subtle and touching as The Son 's Room . 3 +90535 4713 's rare for any movie to be as subtle and touching as The Son 's Room . 4 +90536 4713 's rare for any movie to be as subtle and touching as The Son 's Room 4 +90537 4713 's rare for any movie 2 +90538 4713 rare for any movie 3 +90539 4713 for any movie 2 +90540 4713 to be as subtle and touching as The Son 's Room 3 +90541 4713 be as subtle and touching as The Son 's Room 3 +90542 4713 as subtle and touching as The Son 's Room 3 +90543 4713 as subtle and 2 +90544 4713 touching as The Son 's Room 3 +90545 4713 as The Son 's Room 2 +90546 4713 The Son 's Room 2 +90547 4713 The Son 's 2 +90548 4714 A low-budget affair , Tadpole was shot on digital video , and the images often look smeary and blurry , to the point of distraction . 0 +90549 4714 A low-budget affair , Tadpole was shot on digital video , and the images often look smeary and blurry , to the point of distraction 1 +90550 4714 A low-budget affair , Tadpole was shot on digital video , and 2 +90551 4714 A low-budget affair , Tadpole was shot on digital video , 1 +90552 4714 A low-budget affair , Tadpole was shot on digital video 2 +90553 4714 A low-budget affair , Tadpole 1 +90554 4714 A low-budget affair , 2 +90555 4714 A low-budget affair 1 +90556 4714 low-budget affair 1 +90557 4714 was shot on digital video 2 +90558 4714 shot on digital video 2 +90559 4714 on digital video 2 +90560 4714 the images often look smeary and blurry , to the point of distraction 1 +90561 4714 often look smeary and blurry , to the point of distraction 0 +90562 4714 look smeary and blurry , to the point of distraction 0 +90563 4714 smeary and blurry , to the point of distraction 1 +90564 4714 smeary and blurry , 1 +90565 4714 smeary and blurry 1 +90566 4714 smeary and 1 +90567 4714 smeary 1 +90568 4714 to the point of distraction 1 +90569 4714 the point of distraction 2 +90570 4714 of distraction 2 +90571 4715 The movie 's seams may show ... but Pellington gives `` Mothman '' an irresistibly uncanny ambience that goes a long way toward keeping the picture compelling . 3 +90572 4715 The movie 's seams may show ... but Pellington gives `` Mothman '' an irresistibly uncanny ambience that goes a long way toward keeping the picture compelling 3 +90573 4715 The movie 's seams may show ... but 3 +90574 4715 The movie 's seams may show ... 1 +90575 4715 The movie 's seams may show 1 +90576 4715 The movie 's seams 2 +90577 4715 may show 2 +90578 4715 Pellington gives `` Mothman '' an irresistibly uncanny ambience that goes a long way toward keeping the picture compelling 3 +90579 4715 gives `` Mothman '' an irresistibly uncanny ambience that goes a long way toward keeping the picture compelling 3 +90580 4715 gives `` Mothman '' 2 +90581 4715 `` Mothman '' 2 +90582 4715 Mothman '' 2 +90583 4715 an irresistibly uncanny ambience that goes a long way toward keeping the picture compelling 3 +90584 4715 an irresistibly uncanny ambience 3 +90585 4715 irresistibly uncanny ambience 3 +90586 4715 uncanny ambience 2 +90587 4715 ambience 2 +90588 4715 that goes a long way toward keeping the picture compelling 3 +90589 4715 goes a long way toward keeping the picture compelling 3 +90590 4715 goes a long way 2 +90591 4715 toward keeping the picture compelling 3 +90592 4715 keeping the picture compelling 3 +90593 4715 the picture compelling 2 +90594 4716 Stale first act , Scrooge story , blatant product placement , some very good comedic songs , strong finish , dumb fart jokes . 1 +90595 4716 Stale first act , Scrooge story , blatant product placement , some very good comedic songs , strong finish , dumb fart jokes 2 +90596 4716 Stale first act , Scrooge story , blatant product placement , some very good comedic songs , strong finish , 2 +90597 4716 Stale first act , Scrooge story , blatant product placement , some very good comedic songs , strong finish 3 +90598 4716 Stale first act , Scrooge story , blatant product placement , 1 +90599 4716 Stale first act , Scrooge story , blatant product placement 0 +90600 4716 Stale first act , Scrooge story , 1 +90601 4716 Stale first act , Scrooge story 1 +90602 4716 Stale first act , 2 +90603 4716 Stale first act 2 +90604 4716 first act 2 +90605 4716 Scrooge story 2 +90606 4716 blatant product placement 1 +90607 4716 product placement 2 +90608 4716 placement 2 +90609 4716 some very good comedic songs , strong finish 4 +90610 4716 some very good comedic songs , 3 +90611 4716 some very good comedic songs 3 +90612 4716 very good comedic songs 3 +90613 4716 comedic songs 2 +90614 4716 strong finish 3 +90615 4716 dumb fart jokes 1 +90616 4716 dumb fart 1 +90617 4717 Manipulative claptrap , a period-piece movie-of-the-week , plain old blarney ... take your pick . 0 +90618 4717 Manipulative claptrap , a period-piece movie-of-the-week , plain old blarney ... 0 +90619 4717 Manipulative claptrap , a period-piece movie-of-the-week , plain old blarney 2 +90620 4717 Manipulative claptrap , a period-piece movie-of-the-week , 1 +90621 4717 Manipulative claptrap , a period-piece movie-of-the-week 1 +90622 4717 Manipulative claptrap , 1 +90623 4717 Manipulative claptrap 1 +90624 4717 claptrap 2 +90625 4717 a period-piece movie-of-the-week 2 +90626 4717 period-piece movie-of-the-week 1 +90627 4717 period-piece 2 +90628 4717 movie-of-the-week 3 +90629 4717 plain old blarney 0 +90630 4717 plain old 1 +90631 4717 blarney 2 +90632 4717 take your pick . 2 +90633 4717 take your pick 2 +90634 4717 your pick 2 +90635 4718 the Venezuelans say things like `` si , pretty much '' and `` por favor , go home '' when talking to Americans . 2 +90636 4718 the Venezuelans 2 +90637 4718 Venezuelans 2 +90638 4718 say things like `` si , pretty much '' and `` por favor , go home '' when talking to Americans . 2 +90639 4718 say things like `` si , pretty much '' and `` por favor , go home '' when talking to Americans 2 +90640 4718 say things 2 +90641 4718 like `` si , pretty much '' and `` por favor , go home '' when talking to Americans 2 +90642 4718 `` si , pretty much '' and `` por favor , go home '' when talking to Americans 2 +90643 4718 `` si , pretty much '' and `` por favor , 2 +90644 4718 si , pretty much '' and `` por favor , 2 +90645 4718 si , pretty much '' and `` por favor 2 +90646 4718 si , pretty much '' and `` 2 +90647 4718 si , pretty much '' and 2 +90648 4718 si , pretty much '' 2 +90649 4718 si , pretty much 2 +90650 4718 si , 2 +90651 4718 si 2 +90652 4718 por favor 2 +90653 4718 por 2 +90654 4718 go home '' when talking to Americans 1 +90655 4718 go home '' 2 +90656 4718 when talking to Americans 2 +90657 4718 talking to Americans 2 +90658 4718 to Americans 2 +90659 4719 It 's not original enough . 1 +90660 4719 's not original enough . 1 +90661 4719 's not original enough 1 +90662 4719 original enough 2 +90663 4720 Confessions is n't always coherent , but it 's sharply comic and surprisingly touching , so hold the gong . 3 +90664 4720 Confessions is n't always coherent , but it 's sharply comic and surprisingly touching , so hold the gong 3 +90665 4720 Confessions is n't always coherent , but 2 +90666 4720 Confessions is n't always coherent , 1 +90667 4720 Confessions is n't always coherent 1 +90668 4720 is n't always coherent 1 +90669 4720 is n't always 2 +90670 4720 it 's sharply comic and surprisingly touching , so hold the gong 4 +90671 4720 's sharply comic and surprisingly touching , so hold the gong 3 +90672 4720 's sharply comic and surprisingly touching , 4 +90673 4720 's sharply comic and surprisingly touching 4 +90674 4720 sharply comic and surprisingly touching 4 +90675 4720 sharply comic and 3 +90676 4720 sharply comic 4 +90677 4720 sharply 3 +90678 4720 surprisingly touching 3 +90679 4720 so hold the gong 2 +90680 4720 hold the gong 2 +90681 4720 the gong 2 +90682 4721 An empty exercise , a florid but ultimately vapid crime melodrama with lots of surface flash but little emotional resonance . 1 +90683 4721 An empty exercise , a florid but ultimately vapid crime melodrama with lots of surface 2 +90684 4721 An empty exercise , 1 +90685 4721 An empty exercise 1 +90686 4721 empty exercise 1 +90687 4721 a florid but ultimately vapid crime melodrama with lots of surface 0 +90688 4721 a florid but ultimately vapid crime melodrama 1 +90689 4721 florid but ultimately vapid crime melodrama 1 +90690 4721 florid but ultimately vapid 2 +90691 4721 florid but 2 +90692 4721 florid 2 +90693 4721 ultimately vapid 1 +90694 4721 crime melodrama 2 +90695 4721 with lots of surface 2 +90696 4721 lots of surface 2 +90697 4721 of surface 2 +90698 4721 flash but little emotional resonance . 2 +90699 4721 flash but little emotional resonance 1 +90700 4721 but little emotional resonance 2 +90701 4721 little emotional resonance 1 +90702 4722 ` Possession , ' based on the book by A.S. Byatt , demands that LaBute deal with the subject of love head-on ; trading in his cynicism for reverence and a little wit 3 +90703 4722 ` Possession , ' based on the book by A.S. Byatt , demands that LaBute deal with the subject of love head-on ; 2 +90704 4722 ` Possession , ' based on the book by A.S. Byatt , demands that LaBute deal with the subject of love head-on 2 +90705 4722 ` Possession , ' 2 +90706 4722 Possession , ' 2 +90707 4722 Possession , 2 +90708 4722 based on the book by A.S. Byatt , demands that LaBute deal with the subject of love head-on 2 +90709 4722 based on the book by A.S. Byatt , demands 2 +90710 4722 based on the book 2 +90711 4722 on the book 2 +90712 4722 by A.S. Byatt , demands 2 +90713 4722 A.S. Byatt , demands 2 +90714 4722 A.S. Byatt , 2 +90715 4722 A.S. Byatt 2 +90716 4722 A.S. 2 +90717 4722 that LaBute deal with the subject of love head-on 2 +90718 4722 LaBute deal with the subject of love head-on 2 +90719 4722 deal with the subject of love head-on 3 +90720 4722 with the subject of love head-on 3 +90721 4722 the subject of love head-on 2 +90722 4722 of love head-on 2 +90723 4722 love head-on 3 +90724 4722 head-on 2 +90725 4722 trading in his cynicism for reverence and a little wit 3 +90726 4722 trading 2 +90727 4722 in his cynicism for reverence and a little wit 2 +90728 4722 his cynicism for reverence and a little wit 2 +90729 4722 his cynicism 2 +90730 4722 for reverence and a little wit 3 +90731 4722 reverence and a little wit 2 +90732 4722 reverence and 2 +90733 4722 reverence 2 +90734 4722 a little wit 3 +90735 4723 Terrific as Nadia , a Russian mail-order bride who comes to America speaking not a word of English , it 's Kidman who holds the film together with a supremely kittenish performance that gradually accumulates more layers . 3 +90736 4723 Terrific as Nadia , a Russian mail-order bride who comes to America speaking not a word of English 4 +90737 4723 as Nadia , a Russian mail-order bride who comes to America speaking not a word of English 2 +90738 4723 Nadia , a Russian mail-order bride who comes to America speaking not a word of English 2 +90739 4723 Nadia , 2 +90740 4723 Nadia 2 +90741 4723 a Russian mail-order bride who comes to America speaking not a word of English 2 +90742 4723 a Russian mail-order bride 2 +90743 4723 Russian mail-order bride 2 +90744 4723 mail-order bride 2 +90745 4723 mail-order 2 +90746 4723 who comes to America speaking not a word of English 1 +90747 4723 comes to America speaking not a word of English 2 +90748 4723 to America speaking not a word of English 2 +90749 4723 America speaking not a word of English 2 +90750 4723 speaking not a word of English 2 +90751 4723 not a word of English 1 +90752 4723 not a word 2 +90753 4723 of English 2 +90754 4723 , it 's Kidman who holds the film together with a supremely kittenish performance that gradually accumulates more layers . 4 +90755 4723 it 's Kidman who holds the film together with a supremely kittenish performance that gradually accumulates more layers . 3 +90756 4723 's Kidman who holds the film together with a supremely kittenish performance that gradually accumulates more layers . 4 +90757 4723 's Kidman who holds the film together with a supremely kittenish performance that gradually accumulates more layers 3 +90758 4723 Kidman who holds the film together with a supremely kittenish performance that gradually accumulates more layers 3 +90759 4723 who holds the film together with a supremely kittenish performance that gradually accumulates more layers 3 +90760 4723 holds the film together with a supremely kittenish performance that gradually accumulates more layers 4 +90761 4723 holds the film 3 +90762 4723 together with a supremely kittenish performance that gradually accumulates more layers 3 +90763 4723 with a supremely kittenish performance that gradually accumulates more layers 2 +90764 4723 a supremely kittenish performance that gradually accumulates more layers 3 +90765 4723 a supremely kittenish performance 3 +90766 4723 supremely kittenish performance 2 +90767 4723 supremely kittenish 3 +90768 4723 kittenish 2 +90769 4723 that gradually accumulates more layers 2 +90770 4723 gradually accumulates more layers 3 +90771 4723 accumulates more layers 2 +90772 4723 accumulates 2 +90773 4723 more layers 2 +90774 4724 Morrissette has performed a difficult task indeed - he 's taken one of the world 's most fascinating stories and made it dull , lifeless , and irritating . 1 +90775 4724 Morrissette has performed a difficult task indeed - he 's taken one of the world 's most fascinating stories and made it dull , lifeless , and irritating 1 +90776 4724 Morrissette has performed a difficult task indeed - 2 +90777 4724 Morrissette has performed a difficult task indeed 3 +90778 4724 Morrissette 2 +90779 4724 has performed a difficult task indeed 3 +90780 4724 performed a difficult task indeed 3 +90781 4724 performed a difficult task 2 +90782 4724 a difficult task 2 +90783 4724 difficult task 2 +90784 4724 he 's taken one of the world 's most fascinating stories and made it dull , lifeless , and irritating 0 +90785 4724 's taken one of the world 's most fascinating stories and made it dull , lifeless , and irritating 0 +90786 4724 taken one of the world 's most fascinating stories and made it dull , lifeless , and irritating 0 +90787 4724 taken one of the world 's most fascinating stories and 3 +90788 4724 taken one of the world 's most fascinating stories 2 +90789 4724 one of the world 's most fascinating stories 4 +90790 4724 of the world 's most fascinating stories 3 +90791 4724 the world 's most fascinating stories 4 +90792 4724 most fascinating stories 4 +90793 4724 fascinating stories 4 +90794 4724 made it dull , lifeless , and irritating 0 +90795 4724 it dull , lifeless , and irritating 0 +90796 4724 dull , lifeless , and irritating 0 +90797 4724 dull , lifeless 0 +90798 4724 , lifeless 1 +90799 4724 , and irritating 1 +90800 4725 Probes in a light-hearted way the romantic problems of individuals for whom the yearning for passion spells discontent . 3 +90801 4725 Probes in a light-hearted way the romantic problems of individuals for whom the yearning for passion spells discontent 4 +90802 4725 Probes in a light-hearted way the romantic problems of individuals 3 +90803 4725 Probes in a light-hearted way the romantic problems 3 +90804 4725 Probes 2 +90805 4725 in a light-hearted way the romantic problems 3 +90806 4725 a light-hearted way the romantic problems 4 +90807 4725 a light-hearted way 3 +90808 4725 light-hearted way 3 +90809 4725 the romantic problems 2 +90810 4725 romantic problems 2 +90811 4725 of individuals 2 +90812 4725 for whom the yearning for passion spells discontent 2 +90813 4725 whom the yearning for passion spells discontent 2 +90814 4725 the yearning for passion spells discontent 2 +90815 4725 the yearning for passion 2 +90816 4725 the yearning 2 +90817 4725 for passion 2 +90818 4725 spells discontent 2 +90819 4725 spells 2 +90820 4726 At some point , all this visual trickery stops being clever and devolves into flashy , vaguely silly overkill . 1 +90821 4726 At some point 2 +90822 4726 some point 2 +90823 4726 , all this visual trickery stops being clever and devolves into flashy , vaguely silly overkill . 1 +90824 4726 all this visual trickery stops being clever and devolves into flashy , vaguely silly overkill . 0 +90825 4726 all this visual trickery 2 +90826 4726 this visual trickery 1 +90827 4726 visual trickery 2 +90828 4726 trickery 1 +90829 4726 stops being clever and devolves into flashy , vaguely silly overkill . 1 +90830 4726 stops being clever and devolves into flashy , vaguely silly overkill 1 +90831 4726 being clever and devolves into flashy , vaguely silly overkill 2 +90832 4726 being clever and devolves 2 +90833 4726 clever and devolves 2 +90834 4726 into flashy , vaguely silly overkill 2 +90835 4726 flashy , vaguely silly overkill 2 +90836 4726 , vaguely silly overkill 1 +90837 4726 vaguely silly overkill 1 +90838 4726 silly overkill 1 +90839 4726 overkill 2 +90840 4727 A rambling ensemble piece with loosely connected characters and plots that never quite gel . 1 +90841 4727 A rambling ensemble piece with loosely connected characters and plots that never quite gel 1 +90842 4727 A rambling ensemble piece 2 +90843 4727 rambling ensemble piece 2 +90844 4727 ensemble piece 2 +90845 4727 with loosely connected characters and plots that never quite gel 1 +90846 4727 loosely connected characters and plots that never quite gel 1 +90847 4727 loosely connected characters and 1 +90848 4727 loosely connected characters 1 +90849 4727 loosely connected 1 +90850 4727 connected 2 +90851 4727 plots that never quite gel 1 +90852 4727 plots 2 +90853 4727 that never quite gel 1 +90854 4727 never quite gel 1 +90855 4728 Director Alfonso Cuaron gets vivid , convincing performances from a fine cast , and generally keeps things going at a rapid pace , occasionally using an omniscient voice-over narrator in the manner of French New Wave films . 3 +90856 4728 Director Alfonso Cuaron 2 +90857 4728 Alfonso Cuaron 2 +90858 4728 Alfonso 2 +90859 4728 Cuaron 2 +90860 4728 gets vivid , convincing performances from a fine cast , and generally keeps things going at a rapid pace , occasionally using an omniscient voice-over narrator in the manner of French New Wave films . 4 +90861 4728 gets vivid , convincing performances from a fine cast , and generally keeps things going at a rapid pace , occasionally using an omniscient voice-over narrator in the manner of French New Wave films 4 +90862 4728 gets vivid , convincing performances from a fine cast , and 4 +90863 4728 gets vivid , convincing performances from a fine cast , 3 +90864 4728 gets vivid , convincing performances from a fine cast 3 +90865 4728 gets vivid , convincing performances 4 +90866 4728 vivid , convincing performances 4 +90867 4728 vivid , convincing 3 +90868 4728 , convincing 3 +90869 4728 from a fine cast 3 +90870 4728 a fine cast 3 +90871 4728 fine cast 2 +90872 4728 generally keeps things going at a rapid pace , occasionally using an omniscient voice-over narrator in the manner of French New Wave films 2 +90873 4728 keeps things going at a rapid pace , occasionally using an omniscient voice-over narrator in the manner of French New Wave films 3 +90874 4728 things going at a rapid pace , occasionally using an omniscient voice-over narrator in the manner of French New Wave films 3 +90875 4728 going at a rapid pace , occasionally using an omniscient voice-over narrator in the manner of French New Wave films 3 +90876 4728 going at a rapid pace , occasionally 3 +90877 4728 going at a rapid pace , 3 +90878 4728 going at a rapid pace 3 +90879 4728 at a rapid pace 2 +90880 4728 a rapid pace 2 +90881 4728 rapid pace 2 +90882 4728 rapid 2 +90883 4728 using an omniscient voice-over narrator in the manner of French New Wave films 2 +90884 4728 using an omniscient voice-over narrator 2 +90885 4728 an omniscient voice-over narrator 2 +90886 4728 omniscient voice-over narrator 2 +90887 4728 omniscient 2 +90888 4728 voice-over narrator 2 +90889 4728 narrator 2 +90890 4728 in the manner of French New Wave films 2 +90891 4728 the manner of French New Wave films 2 +90892 4728 of French New Wave films 2 +90893 4728 French New Wave films 2 +90894 4728 New Wave films 2 +90895 4728 Wave films 2 +90896 4729 A movie that feels like the pilot episode of a new teen-targeted action TV series . 2 +90897 4729 A movie that feels 2 +90898 4729 that feels 2 +90899 4729 like the pilot episode of a new teen-targeted action TV series . 2 +90900 4729 like the pilot episode of a new teen-targeted action TV series 2 +90901 4729 the pilot episode of a new teen-targeted action TV series 2 +90902 4729 the pilot episode 2 +90903 4729 pilot episode 3 +90904 4729 pilot 2 +90905 4729 of a new teen-targeted action TV series 3 +90906 4729 a new teen-targeted action TV series 2 +90907 4729 new teen-targeted action TV series 2 +90908 4729 teen-targeted action TV series 3 +90909 4729 teen-targeted 2 +90910 4729 action TV series 2 +90911 4730 It 's replaced by some dramatic scenes that are jarring and deeply out of place in what could have -LRB- and probably should have -RRB- been a lighthearted comedy . 1 +90912 4730 's replaced by some dramatic scenes that are jarring and deeply out of place in what could have -LRB- and probably should have -RRB- been a lighthearted comedy . 1 +90913 4730 's replaced by some dramatic scenes that are jarring and deeply out of place in what could have -LRB- and probably should have -RRB- been a lighthearted comedy 2 +90914 4730 replaced by some dramatic scenes that are jarring and deeply out of place in what could have -LRB- and probably should have -RRB- been a lighthearted comedy 1 +90915 4730 by some dramatic scenes that are jarring and deeply out of place in what could have -LRB- and probably should have -RRB- been a lighthearted comedy 1 +90916 4730 some dramatic scenes that are jarring and deeply out of place in what could have -LRB- and probably should have -RRB- been a lighthearted comedy 1 +90917 4730 some dramatic scenes 2 +90918 4730 that are jarring and deeply out of place in what could have -LRB- and probably should have -RRB- been a lighthearted comedy 1 +90919 4730 are jarring and deeply out of place in what could have -LRB- and probably should have -RRB- been a lighthearted comedy 1 +90920 4730 are jarring and deeply out of place in what could have -LRB- and probably should have -RRB- 0 +90921 4730 are jarring and deeply out of place in what could have 1 +90922 4730 are jarring and 2 +90923 4730 are jarring 2 +90924 4730 jarring 2 +90925 4730 deeply out of place in what could have 1 +90926 4730 deeply out of place 1 +90927 4730 deeply out 2 +90928 4730 of place 2 +90929 4730 in what could have 2 +90930 4730 what could have 1 +90931 4730 -LRB- and probably should have -RRB- 1 +90932 4730 -LRB- and probably should have 1 +90933 4730 probably should have 2 +90934 4730 been a lighthearted comedy 3 +90935 4730 a lighthearted comedy 3 +90936 4730 lighthearted comedy 3 +90937 4731 waydowntown may not be an important movie , or even a good one , but it provides a nice change of mindless pace in collision with the hot Oscar season currently underway . 3 +90938 4731 waydowntown may not be an important movie , or even a good one , but it provides a nice change of mindless pace in collision with the hot Oscar season currently underway 3 +90939 4731 waydowntown may not be an important movie , or even a good one , but 2 +90940 4731 waydowntown may not be an important movie , or even a good one , 1 +90941 4731 waydowntown may not be an important movie , or even a good one 1 +90942 4731 may not be an important movie , or even a good one 1 +90943 4731 be an important movie , or even a good one 3 +90944 4731 an important movie , or even a good one 3 +90945 4731 an important movie , or even 3 +90946 4731 an important movie , or 2 +90947 4731 an important movie , 3 +90948 4731 an important movie 4 +90949 4731 important movie 3 +90950 4731 it provides a nice change of mindless pace in collision with the hot Oscar season currently underway 2 +90951 4731 provides a nice change of mindless pace in collision with the hot Oscar season currently underway 3 +90952 4731 provides a nice change of mindless pace in collision 3 +90953 4731 a nice change of mindless pace in collision 3 +90954 4731 a nice change 3 +90955 4731 nice change 3 +90956 4731 of mindless pace in collision 1 +90957 4731 mindless pace in collision 1 +90958 4731 mindless pace 1 +90959 4731 in collision 2 +90960 4731 with the hot Oscar season currently underway 2 +90961 4731 with the hot Oscar season currently 2 +90962 4731 the hot Oscar season currently 2 +90963 4731 the hot Oscar season 2 +90964 4731 hot Oscar season 2 +90965 4731 Oscar season 2 +90966 4731 underway 2 +90967 4732 It 's a funny little movie with clever dialogue and likeable characters . 4 +90968 4732 's a funny little movie with clever dialogue and likeable characters . 4 +90969 4732 's a funny little movie with clever dialogue and likeable characters 4 +90970 4732 a funny little movie with clever dialogue and likeable characters 2 +90971 4732 a funny little movie 3 +90972 4732 funny little movie 4 +90973 4732 with clever dialogue and likeable characters 3 +90974 4732 clever dialogue and likeable characters 4 +90975 4732 dialogue and likeable characters 3 +90976 4732 and likeable characters 3 +90977 4732 likeable characters 3 +90978 4733 A retread of material already thoroughly plumbed by Martin Scorsese . 1 +90979 4733 A retread of material 2 +90980 4733 A retread 1 +90981 4733 already thoroughly plumbed by Martin Scorsese . 2 +90982 4733 thoroughly plumbed by Martin Scorsese . 2 +90983 4733 plumbed by Martin Scorsese . 2 +90984 4733 plumbed by Martin Scorsese 2 +90985 4733 plumbed 2 +90986 4733 by Martin Scorsese 2 +90987 4734 There is a difference between movies with the courage to go over the top and movies that do n't care about being stupid 1 +90988 4734 is a difference between movies with the courage to go over the top and movies that do n't care about being stupid 2 +90989 4734 a difference between movies with the courage to go over the top and movies that do n't care about being stupid 2 +90990 4734 a difference 2 +90991 4734 between movies with the courage to go over the top and movies that do n't care about being stupid 2 +90992 4734 movies with the courage to go over the top and movies that do n't care about being stupid 3 +90993 4734 with the courage to go over the top and movies that do n't care about being stupid 2 +90994 4734 the courage to go over the top and movies that do n't care about being stupid 3 +90995 4734 courage to go over the top and movies that do n't care about being stupid 2 +90996 4734 to go over the top and movies that do n't care about being stupid 2 +90997 4734 go over the top and movies that do n't care about being stupid 1 +90998 4734 go over 2 +90999 4734 the top and movies that do n't care about being stupid 1 +91000 4734 the top and movies 3 +91001 4734 top and movies 2 +91002 4734 top and 2 +91003 4734 that do n't care about being stupid 1 +91004 4734 do n't care about being stupid 1 +91005 4734 care about being stupid 2 +91006 4734 about being stupid 2 +91007 4734 being stupid 1 +91008 4735 Barney 's ideas about creation and identity do n't really seem all that profound , at least by way of what can be gleaned from this three-hour endurance test built around an hour 's worth of actual material . 1 +91009 4735 Barney 's ideas about creation and identity 2 +91010 4735 Barney 's ideas 2 +91011 4735 Barney 's 3 +91012 4735 about creation and identity 2 +91013 4735 creation and identity 2 +91014 4735 creation and 2 +91015 4735 do n't really seem all that profound , at least by way of what can be gleaned from this three-hour endurance test built around an hour 's worth of actual material . 0 +91016 4735 do n't really seem all that profound , at least by way of what can be gleaned from this three-hour endurance test built around an hour 's worth of actual material 0 +91017 4735 seem all that profound , at least by way of what can be gleaned from this three-hour endurance test built around an hour 's worth of actual material 1 +91018 4735 seem all that profound , at least 2 +91019 4735 all that profound , at least 2 +91020 4735 that profound , at least 3 +91021 4735 that profound , 2 +91022 4735 that profound 2 +91023 4735 by way of what can be gleaned from this three-hour endurance test built around an hour 's worth of actual material 1 +91024 4735 way of what can be gleaned from this three-hour endurance test built around an hour 's worth of actual material 1 +91025 4735 of what can be gleaned from this three-hour endurance test built around an hour 's worth of actual material 2 +91026 4735 what can be gleaned from this three-hour endurance test built around an hour 's worth of actual material 1 +91027 4735 can be gleaned from this three-hour endurance test built around an hour 's worth of actual material 1 +91028 4735 be gleaned from this three-hour endurance test built around an hour 's worth of actual material 2 +91029 4735 gleaned from this three-hour endurance test built around an hour 's worth of actual material 1 +91030 4735 from this three-hour endurance test built around an hour 's worth of actual material 1 +91031 4735 this three-hour endurance test built around an hour 's worth of actual material 0 +91032 4735 this three-hour endurance test 1 +91033 4735 three-hour endurance test 1 +91034 4735 endurance test 2 +91035 4735 endurance 2 +91036 4735 built around an hour 's worth of actual material 2 +91037 4735 around an hour 's worth of actual material 2 +91038 4735 an hour 's worth of actual material 3 +91039 4735 an hour 's worth 2 +91040 4735 an hour 's 2 +91041 4735 hour 's 2 +91042 4735 of actual material 2 +91043 4735 actual material 2 +91044 4736 Holm does his sly , intricate magic , and Iben Hjelje is entirely appealing as Pumpkin . 3 +91045 4736 Holm does his sly , intricate magic , and Iben Hjelje is entirely appealing as Pumpkin 4 +91046 4736 Holm does his sly , intricate magic , and 3 +91047 4736 Holm does his sly , intricate magic , 3 +91048 4736 Holm does his sly , intricate magic 3 +91049 4736 does his sly , intricate magic 4 +91050 4736 his sly , intricate magic 3 +91051 4736 sly , intricate magic 3 +91052 4736 , intricate magic 3 +91053 4736 intricate magic 4 +91054 4736 Iben Hjelje is entirely appealing as Pumpkin 3 +91055 4736 Iben Hjelje 2 +91056 4736 Iben 2 +91057 4736 Hjelje 2 +91058 4736 is entirely appealing as Pumpkin 3 +91059 4736 is entirely 2 +91060 4736 appealing as Pumpkin 2 +91061 4736 as Pumpkin 2 +91062 4737 Even with all its botches , Enigma offers all the pleasure of a handsome and well-made entertainment . 3 +91063 4737 Even with all its botches 2 +91064 4737 with all its botches 1 +91065 4737 all its botches 2 +91066 4737 its botches 1 +91067 4737 botches 0 +91068 4737 , Enigma offers all the pleasure of a handsome and well-made entertainment . 3 +91069 4737 Enigma offers all the pleasure of a handsome and well-made entertainment . 4 +91070 4737 offers all the pleasure of a handsome and well-made entertainment . 4 +91071 4737 offers all the pleasure of a handsome and well-made entertainment 3 +91072 4737 all the pleasure of a handsome and well-made entertainment 3 +91073 4737 all the pleasure 2 +91074 4737 of a handsome and well-made entertainment 4 +91075 4737 a handsome and well-made entertainment 4 +91076 4737 handsome and well-made entertainment 4 +91077 4737 and well-made entertainment 4 +91078 4737 well-made entertainment 3 +91079 4738 Watching this film , what we feel is n't mainly suspense or excitement . 1 +91080 4738 Watching this film , what we feel 2 +91081 4738 this film , what we feel 2 +91082 4738 what we feel 2 +91083 4738 we feel 2 +91084 4738 is n't mainly suspense or excitement . 1 +91085 4738 is n't mainly suspense or excitement 2 +91086 4738 is n't mainly 2 +91087 4738 suspense or excitement 2 +91088 4738 suspense or 2 +91089 4739 It gives devastating testimony to both people 's capacity for evil and their heroic capacity for good . 3 +91090 4739 gives devastating testimony to both people 's capacity for evil and their heroic capacity for good . 1 +91091 4739 gives devastating testimony to both people 's capacity for evil and their heroic capacity for good 2 +91092 4739 gives devastating testimony 1 +91093 4739 devastating testimony 1 +91094 4739 to both people 's capacity for evil and their heroic capacity for good 3 +91095 4739 both people 's capacity for evil and their heroic capacity for good 3 +91096 4739 both people 's capacity for evil and 2 +91097 4739 both people 's capacity for evil 2 +91098 4739 both people 's capacity 3 +91099 4739 both people 's 2 +91100 4739 people 's 2 +91101 4739 for evil 1 +91102 4739 their heroic capacity for good 3 +91103 4739 their heroic capacity 3 +91104 4739 heroic capacity 2 +91105 4740 A damn fine and a truly distinctive and a deeply pertinent film . 4 +91106 4740 A damn fine and a truly distinctive and a deeply pertinent film 1 +91107 4740 A damn fine and 3 +91108 4740 A damn fine 3 +91109 4740 a truly distinctive and a deeply pertinent film 4 +91110 4740 truly distinctive and a deeply pertinent film 3 +91111 4740 truly distinctive and a deeply pertinent 3 +91112 4740 truly distinctive and 3 +91113 4740 truly distinctive 3 +91114 4740 a deeply pertinent 2 +91115 4740 a deeply 2 +91116 4740 pertinent 2 +91117 4741 If you 're the kind of parent who enjoys intentionally introducing your kids to films which will cause loads of irreparable damage that years and years of costly analysis could never fix , I have just one word for you - -- Decasia 0 +91118 4741 If you 're the kind of parent who enjoys intentionally introducing your kids to films which will cause loads of irreparable damage that years and years of costly analysis could never fix 0 +91119 4741 you 're the kind of parent who enjoys intentionally introducing your kids to films which will cause loads of irreparable damage that years and years of costly analysis could never fix 0 +91120 4741 're the kind of parent who enjoys intentionally introducing your kids to films which will cause loads of irreparable damage that years and years of costly analysis could never fix 0 +91121 4741 the kind of parent who enjoys intentionally introducing your kids to films which will cause loads of irreparable damage that years and years of costly analysis could never fix 1 +91122 4741 the kind of parent 2 +91123 4741 of parent 2 +91124 4741 parent 2 +91125 4741 who enjoys intentionally introducing your kids to films which will cause loads of irreparable damage that years and years of costly analysis could never fix 1 +91126 4741 enjoys intentionally introducing your kids to films which will cause loads of irreparable damage that years and years of costly analysis could never fix 0 +91127 4741 intentionally introducing your kids to films which will cause loads of irreparable damage that years and years of costly analysis could never fix 0 +91128 4741 intentionally 2 +91129 4741 introducing your kids to films which will cause loads of irreparable damage that years and years of costly analysis could never fix 0 +91130 4741 introducing your kids 2 +91131 4741 your kids 3 +91132 4741 to films which will cause loads of irreparable damage that years and years of costly analysis could never fix 1 +91133 4741 films which will cause loads of irreparable damage that years and years of costly analysis could never fix 1 +91134 4741 which will cause loads of irreparable damage that years and years of costly analysis could never fix 1 +91135 4741 will cause loads of irreparable damage that years and years of costly analysis could never fix 0 +91136 4741 cause loads of irreparable damage that years and years of costly analysis could never fix 0 +91137 4741 cause loads of irreparable damage 1 +91138 4741 loads of irreparable damage 1 +91139 4741 of irreparable damage 1 +91140 4741 irreparable damage 2 +91141 4741 irreparable 1 +91142 4741 that years and years of costly analysis could never fix 1 +91143 4741 years and years of costly analysis could never fix 0 +91144 4741 years and years of costly analysis 2 +91145 4741 years and years 2 +91146 4741 years and 2 +91147 4741 of costly analysis 2 +91148 4741 costly analysis 2 +91149 4741 analysis 2 +91150 4741 could never fix 2 +91151 4741 could never 2 +91152 4741 , I have just one word for you - -- Decasia 2 +91153 4741 I have just one word for you - -- Decasia 2 +91154 4741 have just one word for you - -- Decasia 2 +91155 4741 just one word for you - -- Decasia 2 +91156 4741 just one word for you - -- 2 +91157 4741 just one word for you - 2 +91158 4741 just one word 2 +91159 4741 for you - 2 +91160 4742 Meyjes ' provocative film might be called an example of the haphazardness of evil . 3 +91161 4742 Meyjes ' provocative film 3 +91162 4742 Meyjes ' 2 +91163 4742 provocative film 3 +91164 4742 might be called an example of the haphazardness of evil . 2 +91165 4742 might be called an example of the haphazardness of evil 2 +91166 4742 be called an example of the haphazardness of evil 2 +91167 4742 called an example of the haphazardness of evil 2 +91168 4742 an example of the haphazardness of evil 2 +91169 4742 of the haphazardness of evil 2 +91170 4742 the haphazardness of evil 1 +91171 4742 the haphazardness 2 +91172 4742 haphazardness 1 +91173 4742 of evil 2 +91174 4743 Observant intelligence constantly vies with pretension -- and sometimes plain wacky implausibility -- throughout Maelstrom . 2 +91175 4743 Observant intelligence 3 +91176 4743 constantly vies with pretension -- and sometimes plain wacky implausibility -- throughout Maelstrom . 2 +91177 4743 vies with pretension -- and sometimes plain wacky implausibility -- throughout Maelstrom . 1 +91178 4743 vies with pretension -- and sometimes plain wacky implausibility -- throughout Maelstrom 2 +91179 4743 vies with pretension -- and sometimes plain wacky implausibility -- 1 +91180 4743 vies 2 +91181 4743 with pretension -- and sometimes plain wacky implausibility -- 1 +91182 4743 pretension -- and sometimes plain wacky implausibility -- 2 +91183 4743 -- and sometimes plain wacky implausibility -- 2 +91184 4743 and sometimes plain wacky implausibility -- 2 +91185 4743 sometimes plain wacky implausibility -- 2 +91186 4743 plain wacky implausibility -- 1 +91187 4743 plain wacky implausibility 1 +91188 4743 wacky implausibility 1 +91189 4743 throughout Maelstrom 2 +91190 4744 This gorgeous epic is guaranteed to lift the spirits of the whole family . 4 +91191 4744 This gorgeous epic 4 +91192 4744 gorgeous epic 4 +91193 4744 is guaranteed to lift the spirits of the whole family . 4 +91194 4744 is guaranteed to lift the spirits of the whole family 4 +91195 4744 guaranteed to lift the spirits of the whole family 4 +91196 4744 to lift the spirits of the whole family 4 +91197 4744 lift the spirits of the whole family 4 +91198 4744 lift 3 +91199 4744 the spirits of the whole family 2 +91200 4744 of the whole family 2 +91201 4744 the whole family 2 +91202 4744 whole family 3 +91203 4745 Land , people and narrative flow together in a stark portrait of motherhood deferred and desire explored . 3 +91204 4745 Land , people and narrative flow 2 +91205 4745 , people and narrative flow 2 +91206 4745 people and narrative flow 2 +91207 4745 and narrative flow 3 +91208 4745 narrative flow 2 +91209 4745 together in a stark portrait of motherhood deferred and desire explored . 2 +91210 4745 together in a stark portrait of motherhood deferred and desire 3 +91211 4745 in a stark portrait of motherhood deferred and desire 2 +91212 4745 a stark portrait of motherhood deferred and desire 3 +91213 4745 a stark portrait 3 +91214 4745 stark portrait 2 +91215 4745 of motherhood deferred and desire 3 +91216 4745 motherhood deferred and desire 2 +91217 4745 motherhood 3 +91218 4745 deferred and desire 3 +91219 4745 deferred and 2 +91220 4745 deferred 2 +91221 4745 explored . 2 +91222 4746 It collapses when Mr. Taylor tries to shift the tone to a thriller 's rush . 1 +91223 4746 collapses when Mr. Taylor tries to shift the tone to a thriller 's rush . 1 +91224 4746 collapses when Mr. Taylor tries to shift the tone to a thriller 's rush 1 +91225 4746 when Mr. Taylor tries to shift the tone to a thriller 's rush 2 +91226 4746 Mr. Taylor tries to shift the tone to a thriller 's rush 3 +91227 4746 Mr. Taylor 2 +91228 4746 tries to shift the tone to a thriller 's rush 3 +91229 4746 to shift the tone to a thriller 's rush 2 +91230 4746 shift the tone to a thriller 's rush 2 +91231 4746 shift the tone 2 +91232 4746 to a thriller 's rush 2 +91233 4746 a thriller 's rush 2 +91234 4746 a thriller 's 2 +91235 4746 thriller 's 2 +91236 4747 A tone poem of transgression . 3 +91237 4747 A tone poem of transgression 2 +91238 4747 A tone poem 2 +91239 4747 tone poem 2 +91240 4747 of transgression 2 +91241 4747 transgression 2 +91242 4748 A mean-spirited film made by someone who surely read The Catcher in the Rye but clearly suffers from dyslexia 0 +91243 4748 A mean-spirited film 1 +91244 4748 mean-spirited film 0 +91245 4748 made by someone who surely read The Catcher in the Rye but clearly suffers from dyslexia 2 +91246 4748 by someone who surely read The Catcher in the Rye but clearly suffers from dyslexia 2 +91247 4748 someone who surely read The Catcher in the Rye but clearly suffers from dyslexia 1 +91248 4748 who surely read The Catcher in the Rye but clearly suffers from dyslexia 1 +91249 4748 surely read The Catcher in the Rye but clearly suffers from dyslexia 1 +91250 4748 read The Catcher in the Rye but clearly suffers from dyslexia 2 +91251 4748 read The Catcher in the Rye but 2 +91252 4748 read The Catcher in the Rye 2 +91253 4748 read The Catcher 2 +91254 4748 The Catcher 2 +91255 4748 Catcher 2 +91256 4748 in the Rye 2 +91257 4748 the Rye 2 +91258 4748 Rye 2 +91259 4748 clearly suffers from dyslexia 2 +91260 4748 suffers from dyslexia 2 +91261 4748 from dyslexia 2 +91262 4748 dyslexia 2 +91263 4749 The secrets of time travel will have been discovered , indulged in and rejected as boring before I see this piece of crap again . 0 +91264 4749 The secrets of time travel 2 +91265 4749 The secrets 2 +91266 4749 of time travel 2 +91267 4749 time travel 2 +91268 4749 will have been discovered , indulged in and rejected as boring before I see this piece of crap again . 0 +91269 4749 will have been discovered , indulged in and rejected as boring before I see this piece of crap again 1 +91270 4749 have been discovered , indulged in and rejected as boring before I see this piece of crap again 1 +91271 4749 been discovered , indulged in and rejected as boring before I see this piece of crap again 0 +91272 4749 discovered , indulged in and rejected as boring before I see this piece of crap again 1 +91273 4749 discovered , indulged in and 2 +91274 4749 discovered , indulged in 3 +91275 4749 discovered , 2 +91276 4749 discovered 2 +91277 4749 indulged in 2 +91278 4749 indulged 2 +91279 4749 rejected as boring before I see this piece of crap again 0 +91280 4749 as boring before I see this piece of crap again 1 +91281 4749 boring before I see this piece of crap again 0 +91282 4749 before I see this piece of crap again 0 +91283 4749 I see this piece of crap again 1 +91284 4749 see this piece of crap again 0 +91285 4749 see this piece of crap 0 +91286 4749 this piece of crap 0 +91287 4749 this piece 2 +91288 4749 of crap 1 +91289 4750 Has all the hallmarks of a movie designed strictly for children 's home video , a market so insatiable it absorbs all manner of lame entertainment , as long as 3-year-olds find it diverting . 1 +91290 4750 Has all the hallmarks of a movie designed strictly for children 's home video , a market so insatiable it absorbs all manner of lame entertainment , as long as 3-year-olds find it diverting 1 +91291 4750 Has all the hallmarks of a movie 3 +91292 4750 all the hallmarks of a movie 3 +91293 4750 all the hallmarks 2 +91294 4750 the hallmarks 3 +91295 4750 designed strictly for children 's home video , a market so insatiable it absorbs all manner of lame entertainment , as long as 3-year-olds find it diverting 2 +91296 4750 designed strictly for children 's home video , 1 +91297 4750 designed strictly for children 's home video 2 +91298 4750 designed strictly 2 +91299 4750 for children 's home video 2 +91300 4750 children 's home video 2 +91301 4750 home video 2 +91302 4750 a market so insatiable it absorbs all manner of lame entertainment , as long as 3-year-olds find it diverting 2 +91303 4750 a market so insatiable it absorbs all manner of lame entertainment , as long as 3-year-olds 2 +91304 4750 a market 2 +91305 4750 so insatiable it absorbs all manner of lame entertainment , as long as 3-year-olds 2 +91306 4750 so insatiable it absorbs all manner of lame entertainment , 1 +91307 4750 so insatiable it absorbs all manner of lame entertainment 2 +91308 4750 so insatiable 3 +91309 4750 insatiable 2 +91310 4750 it absorbs all manner of lame entertainment 2 +91311 4750 absorbs all manner of lame entertainment 3 +91312 4750 absorbs 2 +91313 4750 all manner of lame entertainment 1 +91314 4750 of lame entertainment 1 +91315 4750 lame entertainment 1 +91316 4750 as long as 3-year-olds 2 +91317 4750 long as 3-year-olds 2 +91318 4750 long as 2 +91319 4750 3-year-olds 2 +91320 4750 find it diverting 1 +91321 4750 it diverting 2 +91322 4751 One of those terrific documentaries that collect a bunch of people who are enthusiastic about something and then figures out how to make us share their enthusiasm . 4 +91323 4751 One of those terrific documentaries that collect a bunch of people who are enthusiastic about something and then 4 +91324 4751 of those terrific documentaries that collect a bunch of people who are enthusiastic about something and then 3 +91325 4751 those terrific documentaries that collect a bunch of people who are enthusiastic about something and then 2 +91326 4751 those terrific documentaries 4 +91327 4751 terrific documentaries 3 +91328 4751 that collect a bunch of people who are enthusiastic about something and then 3 +91329 4751 collect a bunch of people who are enthusiastic about something and then 2 +91330 4751 a bunch of people who are enthusiastic about something and then 2 +91331 4751 of people who are enthusiastic about something and then 2 +91332 4751 people who are enthusiastic about something and then 3 +91333 4751 who are enthusiastic about something and then 3 +91334 4751 are enthusiastic about something and then 2 +91335 4751 enthusiastic about something and then 2 +91336 4751 about something and then 2 +91337 4751 something and then 2 +91338 4751 something and 2 +91339 4751 figures out how to make us share their enthusiasm . 3 +91340 4751 figures out how to make us share their enthusiasm 3 +91341 4751 figures out 2 +91342 4751 how to make us share their enthusiasm 3 +91343 4751 to make us share their enthusiasm 3 +91344 4751 make us share their enthusiasm 3 +91345 4751 us share their enthusiasm 3 +91346 4751 share their enthusiasm 3 +91347 4751 their enthusiasm 3 +91348 4752 ` Sophisticated ' viewers who refuse to admit that they do n't like it will likely call it ` challenging ' to their fellow sophisticates . 2 +91349 4752 ` Sophisticated ' viewers who refuse to admit that they do n't like it 1 +91350 4752 ` Sophisticated ' viewers 3 +91351 4752 Sophisticated ' viewers 2 +91352 4752 ' viewers 2 +91353 4752 who refuse to admit that they do n't like it 1 +91354 4752 refuse to admit that they do n't like it 1 +91355 4752 refuse 2 +91356 4752 to admit that they do n't like it 2 +91357 4752 admit that they do n't like it 2 +91358 4752 that they do n't like it 2 +91359 4752 they do n't like it 1 +91360 4752 do n't like it 1 +91361 4752 will likely call it ` challenging ' to their fellow sophisticates . 2 +91362 4752 will likely call it ` challenging ' to their fellow sophisticates 2 +91363 4752 call it ` challenging ' to their fellow sophisticates 2 +91364 4752 it ` challenging ' to their fellow sophisticates 2 +91365 4752 ` challenging ' to their fellow sophisticates 2 +91366 4752 challenging ' to their fellow sophisticates 2 +91367 4752 challenging ' 2 +91368 4752 to their fellow sophisticates 2 +91369 4752 their fellow sophisticates 2 +91370 4752 fellow sophisticates 3 +91371 4752 sophisticates 2 +91372 4753 Sometimes charming , sometimes infuriating , this Argentinean ` dramedy ' succeeds mainly on the shoulders of its actors . 3 +91373 4753 Sometimes charming , sometimes infuriating 3 +91374 4753 charming , sometimes infuriating 3 +91375 4753 charming , 4 +91376 4753 sometimes infuriating 2 +91377 4753 , this Argentinean ` dramedy ' succeeds mainly on the shoulders of its actors . 2 +91378 4753 this Argentinean ` dramedy ' succeeds mainly on the shoulders of its actors . 3 +91379 4753 this Argentinean ` dramedy ' 2 +91380 4753 Argentinean ` dramedy ' 3 +91381 4753 Argentinean 2 +91382 4753 ` dramedy ' 2 +91383 4753 dramedy ' 3 +91384 4753 dramedy 2 +91385 4753 succeeds mainly on the shoulders of its actors . 3 +91386 4753 succeeds mainly on the shoulders of its actors 2 +91387 4753 succeeds mainly 3 +91388 4753 on the shoulders of its actors 3 +91389 4753 the shoulders of its actors 2 +91390 4753 the shoulders 2 +91391 4754 The story suffers a severe case of oversimplification , superficiality and silliness . 0 +91392 4754 suffers a severe case of oversimplification , superficiality and silliness . 0 +91393 4754 suffers a severe case of oversimplification , superficiality and silliness 1 +91394 4754 a severe case of oversimplification , superficiality and silliness 1 +91395 4754 of oversimplification , superficiality and silliness 2 +91396 4754 oversimplification , superficiality and silliness 1 +91397 4754 oversimplification 2 +91398 4754 , superficiality and silliness 1 +91399 4754 superficiality and silliness 1 +91400 4754 superficiality and 1 +91401 4754 superficiality 1 +91402 4755 Featherweight romantic comedy has a few nice twists in a standard plot and the charisma of Hugh Grant and Sandra Bullock . 3 +91403 4755 Featherweight romantic comedy 2 +91404 4755 Featherweight 2 +91405 4755 has a few nice twists in a standard plot and the charisma of Hugh Grant and Sandra Bullock . 3 +91406 4755 has a few nice twists in a standard plot and the charisma of Hugh Grant and Sandra Bullock 3 +91407 4755 a few nice twists in a standard plot and the charisma of Hugh Grant and Sandra Bullock 3 +91408 4755 a few nice twists in a standard plot and 3 +91409 4755 a few nice twists in a standard plot 3 +91410 4755 a few nice twists 3 +91411 4755 few nice twists 3 +91412 4755 nice twists 3 +91413 4755 in a standard plot 1 +91414 4755 a standard plot 2 +91415 4755 standard plot 2 +91416 4755 the charisma of Hugh Grant and Sandra Bullock 3 +91417 4755 the charisma 3 +91418 4755 of Hugh Grant and Sandra Bullock 2 +91419 4755 Hugh Grant and Sandra Bullock 2 +91420 4755 Hugh Grant and 2 +91421 4756 Flashy gadgets and whirling fight sequences may look cool , but they ca n't distract from the flawed support structure holding Equilibrium up . 1 +91422 4756 Flashy gadgets and whirling fight sequences may look cool , but they ca n't distract from the flawed support structure holding Equilibrium up 1 +91423 4756 Flashy gadgets and whirling fight sequences may look cool , but 2 +91424 4756 Flashy gadgets and whirling fight sequences may look cool , 2 +91425 4756 Flashy gadgets and whirling fight sequences may look cool 3 +91426 4756 Flashy gadgets and whirling fight sequences 2 +91427 4756 gadgets and whirling fight sequences 2 +91428 4756 and whirling fight sequences 3 +91429 4756 whirling fight sequences 2 +91430 4756 whirling 2 +91431 4756 fight sequences 2 +91432 4756 may look cool 3 +91433 4756 look cool 2 +91434 4756 they ca n't distract from the flawed support structure holding Equilibrium up 1 +91435 4756 ca n't distract from the flawed support structure holding Equilibrium up 1 +91436 4756 distract from the flawed support structure holding Equilibrium up 1 +91437 4756 from the flawed support structure holding Equilibrium up 1 +91438 4756 the flawed support structure holding Equilibrium up 1 +91439 4756 the flawed support structure 1 +91440 4756 flawed support structure 1 +91441 4756 support structure 2 +91442 4756 holding Equilibrium up 1 +91443 4756 holding Equilibrium 2 +91444 4756 holding 2 +91445 4757 Able to provide insight into a fascinating part of theater history . 3 +91446 4757 Able to provide insight into a fascinating part of theater history 3 +91447 4757 to provide insight into a fascinating part of theater history 3 +91448 4757 provide insight into a fascinating part of theater history 3 +91449 4757 provide insight 3 +91450 4757 into a fascinating part of theater history 4 +91451 4757 a fascinating part of theater history 4 +91452 4757 a fascinating part 3 +91453 4757 fascinating part 3 +91454 4757 of theater history 3 +91455 4757 theater history 2 +91456 4758 The movie straddles the fence between escapism and social commentary , and on both sides it falls short . 1 +91457 4758 The movie straddles the fence between escapism and social commentary , and on both sides it falls short 1 +91458 4758 The movie straddles the fence between escapism and social commentary , and 2 +91459 4758 The movie straddles the fence between escapism and social commentary , 1 +91460 4758 The movie straddles the fence between escapism and social commentary 2 +91461 4758 straddles the fence between escapism and social commentary 2 +91462 4758 straddles 2 +91463 4758 the fence between escapism and social commentary 2 +91464 4758 the fence 2 +91465 4758 between escapism and social commentary 2 +91466 4758 escapism and social commentary 2 +91467 4758 and social commentary 1 +91468 4758 on both sides it falls short 1 +91469 4758 on both sides 2 +91470 4758 it falls short 1 +91471 4759 The story is virtually impossible to follow here , but there 's a certain style and wit to the dialogue . 2 +91472 4759 The story is virtually impossible to follow here , but there 's a certain style and wit to the dialogue 2 +91473 4759 The story is virtually impossible to follow here , but 1 +91474 4759 The story is virtually impossible to follow here , 1 +91475 4759 The story is virtually impossible to follow here 1 +91476 4759 is virtually impossible to follow here 1 +91477 4759 is virtually impossible 1 +91478 4759 to follow here 2 +91479 4759 follow here 2 +91480 4759 there 's a certain style and wit to the dialogue 3 +91481 4759 's a certain style and wit to the dialogue 3 +91482 4759 a certain style and wit to the dialogue 3 +91483 4759 a certain style and wit 3 +91484 4759 certain style and wit 3 +91485 4759 style and wit 3 +91486 4759 to the dialogue 2 +91487 4760 It reaffirms life as it looks in the face of death . 3 +91488 4760 reaffirms life as it looks in the face of death . 2 +91489 4760 reaffirms life as it looks in the face of death 3 +91490 4760 reaffirms life 3 +91491 4760 reaffirms 2 +91492 4760 as it looks in the face of death 2 +91493 4760 it looks in the face of death 2 +91494 4760 looks in the face of death 2 +91495 4760 in the face of death 2 +91496 4760 the face of death 1 +91497 4762 It is a popcorn film , not a must-own , or even a must-see . 1 +91498 4762 is a popcorn film , not a must-own , or even a must-see . 1 +91499 4762 is a popcorn film , not a must-own , or even a must-see 1 +91500 4762 a popcorn film , not a must-own , or even a must-see 1 +91501 4762 a popcorn film , not a must-own , or 2 +91502 4762 a popcorn film , not a must-own , 3 +91503 4762 a popcorn film , not a must-own 2 +91504 4762 a popcorn film , 2 +91505 4762 a popcorn film 2 +91506 4762 popcorn film 2 +91507 4762 not a must-own 1 +91508 4762 a must-own 4 +91509 4762 must-own 2 +91510 4762 even a must-see 3 +91511 4763 An emotionally and spiritually compelling journey seen through the right eyes , with the right actors and with the kind of visual flair that shows what great cinema can really do . 4 +91512 4763 An emotionally and spiritually compelling journey 3 +91513 4763 emotionally and spiritually compelling journey 3 +91514 4763 emotionally and spiritually compelling 4 +91515 4763 emotionally and spiritually 2 +91516 4763 emotionally and 2 +91517 4763 spiritually 3 +91518 4763 seen through the right eyes , with the right actors and with the kind of visual flair that shows what great cinema can really do . 3 +91519 4763 seen through the right eyes , with the right actors and with the kind of visual flair that shows what great cinema can really do 4 +91520 4763 seen through the right eyes , 2 +91521 4763 seen through the right eyes 3 +91522 4763 through the right eyes 2 +91523 4763 the right eyes 2 +91524 4763 right eyes 2 +91525 4763 with the right actors and with the kind of visual flair that shows what great cinema can really do 4 +91526 4763 with the right actors and 2 +91527 4763 with the right actors 2 +91528 4763 the right actors 2 +91529 4763 right actors 3 +91530 4763 with the kind of visual flair that shows what great cinema can really do 3 +91531 4763 the kind of visual flair that shows what great cinema can really do 4 +91532 4763 the kind of visual flair 2 +91533 4763 of visual flair 3 +91534 4763 that shows what great cinema can really do 4 +91535 4763 shows what great cinema can really do 4 +91536 4763 what great cinema can really do 4 +91537 4763 great cinema can really do 3 +91538 4763 can really do 2 +91539 4763 can really 2 +91540 4764 Believes so fervently in humanity that it feels almost anachronistic , and it is too cute by half . 2 +91541 4764 Believes so fervently in humanity that it feels almost anachronistic , and it is too cute by half 2 +91542 4764 Believes so fervently in humanity that it feels almost anachronistic , and 2 +91543 4764 Believes so fervently in humanity that it feels almost anachronistic , 2 +91544 4764 Believes so fervently in humanity that it feels almost anachronistic 3 +91545 4764 Believes 2 +91546 4764 so fervently in humanity that it feels almost anachronistic 2 +91547 4764 fervently in humanity that it feels almost anachronistic 2 +91548 4764 fervently in humanity 2 +91549 4764 in humanity 2 +91550 4764 that it feels almost anachronistic 1 +91551 4764 it feels almost anachronistic 2 +91552 4764 feels almost anachronistic 2 +91553 4764 almost anachronistic 1 +91554 4764 it is too cute by half 2 +91555 4764 is too cute by half 2 +91556 4764 too cute by half 2 +91557 4764 cute by half 2 +91558 4765 With We Were Soldiers , Hollywood makes a valiant attempt to tell a story about the Vietnam War before the pathology set in . 3 +91559 4765 With We Were Soldiers 2 +91560 4765 We Were Soldiers 3 +91561 4765 Were Soldiers 2 +91562 4765 , Hollywood makes a valiant attempt to tell a story about the Vietnam War before the pathology set in . 2 +91563 4765 Hollywood makes a valiant attempt to tell a story about the Vietnam War before the pathology set in . 2 +91564 4765 makes a valiant attempt to tell a story about the Vietnam War before the pathology set in . 2 +91565 4765 makes a valiant attempt to tell a story about the Vietnam War before the pathology set in 2 +91566 4765 a valiant attempt to tell a story about the Vietnam War before the pathology set in 3 +91567 4765 valiant attempt to tell a story about the Vietnam War before the pathology set in 4 +91568 4765 attempt to tell a story about the Vietnam War before the pathology set in 2 +91569 4765 to tell a story about the Vietnam War before the pathology set in 2 +91570 4765 tell a story about the Vietnam War before the pathology set in 3 +91571 4765 tell a story about the Vietnam War 2 +91572 4765 a story about the Vietnam War 2 +91573 4765 about the Vietnam War 2 +91574 4765 the Vietnam War 2 +91575 4765 Vietnam War 1 +91576 4765 before the pathology set in 2 +91577 4765 the pathology set in 2 +91578 4765 the pathology 2 +91579 4765 set in 2 +91580 4766 Shyamalan offers copious hints along the way -- myriad signs , if you will -- that beneath the familiar , funny surface is a far bigger , far more meaningful story than one in which little green men come to Earth for harvesting purposes . 3 +91581 4766 offers copious hints along the way -- myriad signs , if you will -- that beneath the familiar , funny surface is a far bigger , far more meaningful story than one in which little green men come to Earth for harvesting purposes . 3 +91582 4766 offers copious hints along the way -- myriad signs , if you will -- that beneath the familiar , funny surface is a far bigger , far more meaningful story than one in which little green men come to Earth for harvesting purposes 4 +91583 4766 offers copious hints 2 +91584 4766 copious hints 2 +91585 4766 copious 2 +91586 4766 hints 2 +91587 4766 along the way -- myriad signs , if you will -- that beneath the familiar , funny surface is a far bigger , far more meaningful story than one in which little green men come to Earth for harvesting purposes 3 +91588 4766 the way -- myriad signs , if you will -- that beneath the familiar , funny surface is a far bigger , far more meaningful story than one in which little green men come to Earth for harvesting purposes 2 +91589 4766 the way -- myriad signs , if you will -- 2 +91590 4766 -- myriad signs , if you will -- 2 +91591 4766 myriad signs , if you will -- 2 +91592 4766 myriad signs , if you will 2 +91593 4766 myriad signs , if 2 +91594 4766 myriad signs , 2 +91595 4766 myriad signs 2 +91596 4766 myriad 2 +91597 4766 that beneath the familiar , funny surface is a far bigger , far more meaningful story than one in which little green men come to Earth for harvesting purposes 4 +91598 4766 that beneath the familiar , funny surface 3 +91599 4766 beneath the familiar , funny surface 3 +91600 4766 the familiar , funny surface 3 +91601 4766 familiar , funny surface 3 +91602 4766 familiar , funny 3 +91603 4766 , funny 4 +91604 4766 is a far bigger , far more meaningful story than one in which little green men come to Earth for harvesting purposes 3 +91605 4766 a far bigger , far more meaningful story than one in which little green men come to Earth for harvesting purposes 2 +91606 4766 a far bigger , far more meaningful story than one 3 +91607 4766 a far bigger , far more meaningful story 4 +91608 4766 far bigger , far more meaningful story 3 +91609 4766 far bigger 2 +91610 4766 , far more meaningful story 3 +91611 4766 far more meaningful story 3 +91612 4766 far more meaningful 3 +91613 4766 more meaningful 3 +91614 4766 in which little green men come to Earth for harvesting purposes 2 +91615 4766 little green men come to Earth for harvesting purposes 2 +91616 4766 little green men 2 +91617 4766 green men 1 +91618 4766 come to Earth for harvesting purposes 2 +91619 4766 to Earth for harvesting purposes 2 +91620 4766 Earth for harvesting purposes 2 +91621 4766 for harvesting purposes 2 +91622 4766 harvesting purposes 2 +91623 4766 harvesting 2 +91624 4767 Partly a schmaltzy , by-the-numbers romantic comedy , partly a shallow rumination on the emptiness of success -- and entirely soulless . 0 +91625 4767 a schmaltzy , by-the-numbers romantic comedy , partly a shallow rumination on the emptiness of success -- and entirely soulless . 0 +91626 4767 a schmaltzy , by-the-numbers romantic comedy , partly a shallow rumination on the emptiness of success -- and entirely 1 +91627 4767 a schmaltzy , by-the-numbers romantic comedy , 2 +91628 4767 a schmaltzy , by-the-numbers romantic comedy 2 +91629 4767 schmaltzy , by-the-numbers romantic comedy 1 +91630 4767 , by-the-numbers romantic comedy 2 +91631 4767 by-the-numbers romantic comedy 2 +91632 4767 partly a shallow rumination on the emptiness of success -- and entirely 2 +91633 4767 partly a shallow rumination on the emptiness of success -- and 2 +91634 4767 partly a shallow rumination on the emptiness of success -- 1 +91635 4767 partly a shallow rumination on the emptiness of success 1 +91636 4767 a shallow rumination on the emptiness of success 1 +91637 4767 a shallow rumination 1 +91638 4767 shallow rumination 1 +91639 4767 rumination 2 +91640 4767 on the emptiness of success 2 +91641 4767 the emptiness of success 2 +91642 4767 of success 2 +91643 4767 soulless . 1 +91644 4768 With this new Rollerball , sense and sensibility have been overrun by what can only be characterized as robotic sentiment . 2 +91645 4768 With this new Rollerball 3 +91646 4768 this new Rollerball 2 +91647 4768 new Rollerball 2 +91648 4768 , sense and sensibility have been overrun by what can only be characterized as robotic sentiment . 0 +91649 4768 sense and sensibility have been overrun by what can only be characterized as robotic sentiment . 1 +91650 4768 sense and sensibility 2 +91651 4768 sense and 2 +91652 4768 have been overrun by what can only be characterized as robotic sentiment . 1 +91653 4768 have been overrun by what can only be characterized as robotic sentiment 1 +91654 4768 been overrun by what can only be characterized as robotic sentiment 1 +91655 4768 overrun by what can only be characterized as robotic sentiment 2 +91656 4768 by what can only be characterized as robotic sentiment 1 +91657 4768 what can only be characterized as robotic sentiment 1 +91658 4768 can only be characterized as robotic sentiment 2 +91659 4768 be characterized as robotic sentiment 1 +91660 4768 characterized as robotic sentiment 1 +91661 4768 characterized 2 +91662 4768 as robotic sentiment 2 +91663 4768 robotic sentiment 2 +91664 4768 robotic 2 +91665 4769 A beautifully tooled action thriller about love and terrorism in Korea . 4 +91666 4769 tooled action thriller about love and terrorism in Korea . 2 +91667 4769 tooled action thriller about love and terrorism in Korea 2 +91668 4769 tooled action thriller about love and terrorism 3 +91669 4769 tooled action thriller 2 +91670 4769 tooled 2 +91671 4769 action thriller 2 +91672 4769 about love and terrorism 2 +91673 4769 love and terrorism 2 +91674 4769 in Korea 2 +91675 4770 An escapist confection that 's pure entertainment . 4 +91676 4770 An escapist 2 +91677 4770 confection that 's pure entertainment . 3 +91678 4770 confection that 's pure entertainment 3 +91679 4770 confection 2 +91680 4770 that 's pure entertainment 4 +91681 4770 's pure entertainment 3 +91682 4770 pure entertainment 4 +91683 4771 One of those rare films that come by once in a while with flawless amounts of acting , direction , story and pace . 3 +91684 4771 One of those rare films that come by once in a while with flawless amounts of acting , direction , story and pace 3 +91685 4771 of those rare films that come by once in a while with flawless amounts of acting , direction , story and pace 4 +91686 4771 those rare films that come by once in a while with flawless amounts of acting , direction , story and pace 4 +91687 4771 that come by once in a while with flawless amounts of acting , direction , story and pace 4 +91688 4771 come by once in a while with flawless amounts of acting , direction , story and pace 3 +91689 4771 come by once in a while 2 +91690 4771 come by once 2 +91691 4771 by once 2 +91692 4771 with flawless amounts of acting , direction , story and pace 4 +91693 4771 flawless amounts of acting , direction , story and pace 4 +91694 4771 flawless amounts 3 +91695 4771 flawless 4 +91696 4771 of acting , direction , story and pace 2 +91697 4771 acting , direction , story and pace 2 +91698 4771 , direction , story and pace 2 +91699 4771 direction , story and pace 2 +91700 4771 , story and pace 2 +91701 4771 story and pace 3 +91702 4772 What they see in each other also is difficult to fathom . 1 +91703 4772 What they see in each other 2 +91704 4772 they see in each other 2 +91705 4772 see in each other 2 +91706 4772 also is difficult to fathom . 1 +91707 4772 is difficult to fathom . 1 +91708 4772 is difficult to fathom 1 +91709 4772 difficult to fathom 1 +91710 4772 to fathom 2 +91711 4772 fathom 1 +91712 4773 Where This was lazy but enjoyable , a formula comedy redeemed by its stars , That is even lazier and far less enjoyable . 1 +91713 4773 Where This was lazy but enjoyable 3 +91714 4773 This was lazy but enjoyable 3 +91715 4773 was lazy but enjoyable 3 +91716 4773 lazy but enjoyable 3 +91717 4773 lazy but 2 +91718 4773 , a formula comedy redeemed by its stars , That is even lazier and far less enjoyable . 1 +91719 4773 , a formula comedy redeemed by its stars , 3 +91720 4773 a formula comedy redeemed by its stars , 3 +91721 4773 a formula comedy redeemed by its stars 3 +91722 4773 a formula comedy 1 +91723 4773 formula comedy 2 +91724 4773 redeemed by its stars 3 +91725 4773 redeemed 3 +91726 4773 by its stars 2 +91727 4773 That is even lazier and far less enjoyable . 0 +91728 4773 is even lazier and far less enjoyable . 1 +91729 4773 is even lazier and far less enjoyable 0 +91730 4773 even lazier and far less enjoyable 1 +91731 4773 even lazier and 1 +91732 4773 even lazier 1 +91733 4773 lazier 1 +91734 4773 far less enjoyable 1 +91735 4773 less enjoyable 1 +91736 4774 I 'll put it this way : If you 're in the mood for a melodrama narrated by talking fish , this is the movie for you . 2 +91737 4774 I 'll put it this way : If you 're in the mood for a melodrama narrated by talking fish , this is the movie for you 3 +91738 4774 I 'll put it this way : 2 +91739 4774 I 'll put it this way 2 +91740 4774 'll put it this way 2 +91741 4774 put it this way 2 +91742 4774 it this way 2 +91743 4774 this way 2 +91744 4774 If you 're in the mood for a melodrama narrated by talking fish , this is the movie for you 2 +91745 4774 If you 're in the mood for a melodrama narrated by talking fish 1 +91746 4774 you 're in the mood for a melodrama narrated by talking fish 2 +91747 4774 're in the mood for a melodrama narrated by talking fish 3 +91748 4774 in the mood for a melodrama narrated by talking fish 1 +91749 4774 the mood for a melodrama narrated by talking fish 2 +91750 4774 for a melodrama narrated by talking fish 2 +91751 4774 a melodrama narrated by talking fish 2 +91752 4774 a melodrama 2 +91753 4774 narrated by talking fish 2 +91754 4774 narrated 2 +91755 4774 by talking fish 2 +91756 4774 talking fish 2 +91757 4774 , this is the movie for you 3 +91758 4774 this is the movie for you 3 +91759 4774 is the movie for you 3 +91760 4774 the movie for you 3 +91761 4775 So-so entertainment . 2 +91762 4775 entertainment . 3 +91763 4776 Taken as a whole , The Tuxedo does n't add up to a whole lot . 1 +91764 4776 Taken as a whole 2 +91765 4776 as a whole 2 +91766 4776 a whole 2 +91767 4776 , The Tuxedo does n't add up to a whole lot . 1 +91768 4776 The Tuxedo does n't add up to a whole lot . 1 +91769 4776 does n't add up to a whole lot . 1 +91770 4776 does n't add up to a whole lot 0 +91771 4776 add up to a whole lot 2 +91772 4776 to a whole lot 2 +91773 4777 The structure is simple , but in its own way , Rabbit-Proof Fence is a quest story as grand as The Lord of the Rings . 3 +91774 4777 The structure is simple , but in its own way , Rabbit-Proof Fence is a quest story as grand as The Lord of the Rings 3 +91775 4777 The structure is simple , but 3 +91776 4777 The structure is simple , 2 +91777 4777 The structure is simple 2 +91778 4777 is simple 2 +91779 4777 in its own way , Rabbit-Proof Fence is a quest story as grand as The Lord of the Rings 4 +91780 4777 , Rabbit-Proof Fence is a quest story as grand as The Lord of the Rings 3 +91781 4777 Rabbit-Proof Fence is a quest story as grand as The Lord of the Rings 4 +91782 4777 is a quest story as grand as The Lord of the Rings 2 +91783 4777 a quest story as grand as The Lord of the Rings 4 +91784 4777 a quest story 2 +91785 4777 quest story 2 +91786 4777 as grand as The Lord of the Rings 3 +91787 4777 grand as The Lord of the Rings 3 +91788 4777 as The Lord of the Rings 2 +91789 4777 The Lord of the Rings 3 +91790 4778 If Oscar had a category called Best Bad Film You Thought Was Going To Be Really Awful But Was n't , Guys would probably be duking it out with The Queen of the Damned for the honor . 1 +91791 4778 If Oscar had a category called Best Bad Film You Thought Was Going To Be Really Awful But Was n't 3 +91792 4778 Oscar had a category called Best Bad Film You Thought Was Going To Be Really Awful But Was n't 2 +91793 4778 had a category called Best Bad Film You Thought Was Going To Be Really Awful But Was n't 2 +91794 4778 a category called Best Bad Film You Thought Was Going To Be Really Awful But Was n't 1 +91795 4778 a category 2 +91796 4778 called Best Bad Film You Thought Was Going To Be Really Awful But Was n't 2 +91797 4778 called Best Bad Film You Thought Was Going To Be Really Awful But 1 +91798 4778 called Best Bad Film You Thought Was Going To Be Really Awful 1 +91799 4778 called Best 2 +91800 4778 Bad Film You Thought Was Going To Be Really Awful 1 +91801 4778 You Thought Was Going To Be Really Awful 0 +91802 4778 Thought Was Going To Be Really Awful 1 +91803 4778 Was Going To Be Really Awful 1 +91804 4778 Going To Be Really Awful 0 +91805 4778 To Be Really Awful 1 +91806 4778 Be Really Awful 0 +91807 4778 Really Awful 0 +91808 4778 , Guys would probably be duking it out with The Queen of the Damned for the honor . 2 +91809 4778 Guys would probably be duking it out with The Queen of the Damned for the honor . 3 +91810 4778 would probably be duking it out with The Queen of the Damned for the honor . 1 +91811 4778 would probably be duking it out with The Queen of the Damned for the honor 2 +91812 4778 be duking it out with The Queen of the Damned for the honor 2 +91813 4778 duking it out with The Queen of the Damned for the honor 2 +91814 4778 duking it out with The Queen of the Damned 2 +91815 4778 duking it out 2 +91816 4778 duking it 2 +91817 4778 duking 2 +91818 4778 with The Queen of the Damned 2 +91819 4778 The Queen of the Damned 2 +91820 4778 The Queen 2 +91821 4778 for the honor 2 +91822 4778 the honor 3 +91823 4779 You feel good , you feel sad , you feel pissed off , but in the end , you feel alive - which is what they did . 4 +91824 4779 You feel good , you feel sad , you feel pissed off , but in the end , you feel alive - which is what they did 4 +91825 4779 You feel good , you feel sad , you feel pissed off , but 2 +91826 4779 You feel good , you feel sad , you feel pissed off , 3 +91827 4779 You feel good , you feel sad , you feel pissed off 2 +91828 4779 You feel good , you feel sad , 3 +91829 4779 You feel good , you feel sad 3 +91830 4779 You feel good , 3 +91831 4779 You feel good 4 +91832 4779 you feel sad 2 +91833 4779 feel sad 1 +91834 4779 you feel pissed off 1 +91835 4779 feel pissed off 1 +91836 4779 pissed off 1 +91837 4779 pissed 0 +91838 4779 in the end , you feel alive - which is what they did 3 +91839 4779 , you feel alive - which is what they did 3 +91840 4779 you feel alive - which is what they did 4 +91841 4779 feel alive - which is what they did 3 +91842 4779 feel alive - 3 +91843 4779 feel alive 2 +91844 4779 which is what they did 2 +91845 4779 is what they did 2 +91846 4779 what they did 2 +91847 4779 they did 2 +91848 4780 Takashi Miike keeps pushing the envelope : Ichi the Killer 3 +91849 4780 Takashi Miike keeps pushing the envelope : 3 +91850 4780 Takashi Miike keeps pushing the envelope 3 +91851 4780 keeps pushing the envelope 2 +91852 4780 pushing the envelope 2 +91853 4780 pushing 2 +91854 4780 the envelope 2 +91855 4780 envelope 2 +91856 4780 Ichi the Killer 2 +91857 4781 High Crimes is a cinematic misdemeanor , a routine crime thriller remarkable only for its lack of logic and misuse of two fine actors , Morgan Freeman and Ashley Judd . 0 +91858 4781 High Crimes is a cinematic misdemeanor 1 +91859 4781 is a cinematic misdemeanor 1 +91860 4781 a cinematic misdemeanor 2 +91861 4781 cinematic misdemeanor 2 +91862 4781 misdemeanor 1 +91863 4781 , a routine crime thriller remarkable only for its lack of logic and misuse of two fine actors , Morgan Freeman and Ashley Judd . 1 +91864 4781 a routine crime thriller remarkable only for its lack of logic and misuse of two fine actors , Morgan Freeman and Ashley Judd . 1 +91865 4781 a routine crime 1 +91866 4781 routine crime 1 +91867 4781 thriller remarkable only for its lack of logic and misuse of two fine actors , Morgan Freeman and Ashley Judd . 1 +91868 4781 thriller remarkable only for its lack of logic and misuse of two fine actors , Morgan Freeman and Ashley Judd 1 +91869 4781 thriller remarkable only 2 +91870 4781 thriller remarkable 3 +91871 4781 for its lack of logic and misuse of two fine actors , Morgan Freeman and Ashley Judd 1 +91872 4781 its lack of logic and misuse of two fine actors , Morgan Freeman and Ashley Judd 0 +91873 4781 of logic and misuse of two fine actors , Morgan Freeman and Ashley Judd 0 +91874 4781 logic and misuse of two fine actors , Morgan Freeman and Ashley Judd 1 +91875 4781 logic and misuse 1 +91876 4781 logic and 2 +91877 4781 misuse 1 +91878 4781 of two fine actors , Morgan Freeman and Ashley Judd 3 +91879 4781 two fine actors , Morgan Freeman and Ashley Judd 4 +91880 4781 two fine actors , Morgan Freeman and 3 +91881 4781 two fine actors , Morgan Freeman 3 +91882 4781 two fine actors , 3 +91883 4781 two fine actors 3 +91884 4781 fine actors 4 +91885 4781 Morgan Freeman 2 +91886 4781 Morgan 2 +91887 4781 Ashley Judd 2 +91888 4781 Ashley 2 +91889 4781 Judd 2 +91890 4782 Rob Schneider 's infantile cross-dressing routines fill The Hot Chick , the latest gimmick from this unimaginative comedian . 0 +91891 4782 Rob Schneider 's infantile cross-dressing routines 1 +91892 4782 Rob Schneider 's 2 +91893 4782 Schneider 's 2 +91894 4782 infantile cross-dressing routines 1 +91895 4782 cross-dressing routines 2 +91896 4782 cross-dressing 1 +91897 4782 routines 2 +91898 4782 fill The Hot Chick , the latest gimmick from this unimaginative comedian . 1 +91899 4782 fill The Hot Chick , the latest gimmick from this unimaginative comedian 0 +91900 4782 The Hot Chick , the latest gimmick from this unimaginative comedian 1 +91901 4782 The Hot Chick , 2 +91902 4782 the latest gimmick from this unimaginative comedian 1 +91903 4782 the latest gimmick 2 +91904 4782 latest gimmick 2 +91905 4782 gimmick 1 +91906 4782 from this unimaginative comedian 1 +91907 4782 this unimaginative comedian 1 +91908 4782 unimaginative comedian 1 +91909 4783 Never does `` Lilo & Stitch '' reach the emotion or timelessness of Disney 's great past , or even that of more recent successes such as `` Mulan '' or `` Tarzan . '' 1 +91910 4783 does `` Lilo & Stitch '' reach the emotion or timelessness of Disney 's great past , or even that of more recent successes such as `` Mulan '' or `` Tarzan . '' 2 +91911 4783 does `` Lilo & Stitch '' reach the emotion or timelessness of Disney 's great past , or even that of more recent successes such as `` Mulan '' or `` Tarzan . 3 +91912 4783 does `` Lilo & Stitch '' reach the emotion or timelessness of Disney 's great past , or even that of more recent successes such as `` Mulan '' or `` Tarzan 2 +91913 4783 `` Lilo & Stitch '' reach the emotion or timelessness of Disney 's great past , or even that of more recent successes such as `` Mulan '' or `` Tarzan 2 +91914 4783 Lilo & Stitch '' reach the emotion or timelessness of Disney 's great past , or even that of more recent successes such as `` Mulan '' or `` Tarzan 4 +91915 4783 '' reach the emotion or timelessness of Disney 's great past , or even that of more recent successes such as `` Mulan '' or `` Tarzan 3 +91916 4783 reach the emotion or timelessness of Disney 's great past , or even that of more recent successes such as `` Mulan '' or `` Tarzan 3 +91917 4783 the emotion or timelessness of Disney 's great past , or even that of more recent successes such as `` Mulan '' or `` Tarzan 3 +91918 4783 the emotion or timelessness of Disney 's great past , or even 3 +91919 4783 the emotion or timelessness of Disney 's great past , or 3 +91920 4783 the emotion or timelessness of Disney 's great past , 3 +91921 4783 the emotion or timelessness of Disney 's great past 4 +91922 4783 the emotion or timelessness 2 +91923 4783 emotion or timelessness 2 +91924 4783 emotion or 2 +91925 4783 timelessness 3 +91926 4783 of Disney 's great past 3 +91927 4783 Disney 's great past 3 +91928 4783 great past 3 +91929 4783 that of more recent successes such as `` Mulan '' or `` Tarzan 2 +91930 4783 of more recent successes such as `` Mulan '' or `` Tarzan 2 +91931 4783 more recent successes such as `` Mulan '' or `` Tarzan 2 +91932 4783 more recent successes 3 +91933 4783 recent successes 3 +91934 4783 successes 3 +91935 4783 such as `` Mulan '' or `` Tarzan 2 +91936 4783 as `` Mulan '' or `` Tarzan 2 +91937 4783 `` Mulan '' or `` Tarzan 2 +91938 4783 Mulan '' or `` Tarzan 2 +91939 4783 Mulan '' or `` 2 +91940 4783 Mulan '' or 2 +91941 4783 Mulan '' 2 +91942 4783 Mulan 2 +91943 4783 Tarzan 2 +91944 4784 lazily and glumly settles into a most traditional , reserved kind of filmmaking . 1 +91945 4784 lazily and glumly 1 +91946 4784 lazily and 2 +91947 4784 lazily 1 +91948 4784 glumly 2 +91949 4784 settles into a most traditional , reserved kind of filmmaking . 2 +91950 4784 settles into a most traditional , reserved kind of filmmaking 3 +91951 4784 into a most traditional , reserved kind of filmmaking 2 +91952 4784 a most traditional , reserved kind of filmmaking 3 +91953 4784 a most traditional , reserved kind 2 +91954 4784 most traditional , reserved kind 2 +91955 4784 most traditional , reserved 2 +91956 4784 traditional , reserved 2 +91957 4784 , reserved 2 +91958 4785 Boasts enough funny dialogue and sharp characterizations to be mildly amusing . 3 +91959 4785 Boasts enough funny dialogue and sharp 3 +91960 4785 Boasts enough funny 3 +91961 4785 enough funny 3 +91962 4785 dialogue and sharp 3 +91963 4785 characterizations to be mildly amusing . 2 +91964 4785 characterizations to be mildly amusing 3 +91965 4785 to be mildly amusing 3 +91966 4785 be mildly amusing 3 +91967 4786 We ca n't accuse Kung Pow for misfiring , since it is exactly what it wants to be : an atrociously , mind-numbingly , indescribably bad movie . 0 +91968 4786 ca n't accuse Kung Pow for misfiring , since it is exactly what it wants to be : an atrociously , mind-numbingly , indescribably bad movie . 0 +91969 4786 ca n't accuse Kung Pow for misfiring , since it is exactly what it wants to be : an atrociously , mind-numbingly , indescribably bad movie 1 +91970 4786 accuse Kung Pow for misfiring , since it is exactly what it wants to be : an atrociously , mind-numbingly , indescribably bad movie 0 +91971 4786 accuse Kung Pow for misfiring , 2 +91972 4786 accuse Kung Pow for misfiring 2 +91973 4786 Kung Pow for misfiring 2 +91974 4786 for misfiring 2 +91975 4786 misfiring 1 +91976 4786 since it is exactly what it wants to be : an atrociously , mind-numbingly , indescribably bad movie 0 +91977 4786 it is exactly what it wants to be : an atrociously , mind-numbingly , indescribably bad movie 0 +91978 4786 is exactly what it wants to be : an atrociously , mind-numbingly , indescribably bad movie 0 +91979 4786 exactly what it wants to be : an atrociously , mind-numbingly , indescribably bad movie 0 +91980 4786 exactly what it wants to be 3 +91981 4786 it wants to be 3 +91982 4786 wants to be 2 +91983 4786 : an atrociously , mind-numbingly , indescribably bad movie 0 +91984 4786 an atrociously , mind-numbingly , indescribably bad movie 0 +91985 4786 atrociously , mind-numbingly , indescribably bad movie 0 +91986 4786 atrociously , mind-numbingly , indescribably bad 0 +91987 4786 atrociously 1 +91988 4786 , mind-numbingly , indescribably bad 0 +91989 4786 mind-numbingly , indescribably bad 0 +91990 4786 , indescribably bad 0 +91991 4786 indescribably bad 0 +91992 4786 indescribably 2 +91993 4787 Defies logic , the laws of physics and almost anyone 's willingness to believe in it . 2 +91994 4787 Defies logic , the laws of physics and almost anyone 's willingness to believe in it 2 +91995 4787 Defies logic , 1 +91996 4787 Defies logic 2 +91997 4787 the laws of physics and almost anyone 's willingness to believe in it 2 +91998 4787 the laws of physics and 2 +91999 4787 the laws of physics 2 +92000 4787 the laws 2 +92001 4787 laws 2 +92002 4787 of physics 2 +92003 4787 physics 2 +92004 4787 almost anyone 's willingness to believe in it 3 +92005 4787 almost anyone 's 2 +92006 4787 anyone 's 2 +92007 4787 willingness to believe in it 3 +92008 4787 to believe in it 2 +92009 4788 ` Enigma ' is the kind of engaging historical drama that Hollywood appears to have given up on in favor of sentimental war movies in the vein of ` We Were Soldiers . ' 2 +92010 4788 Enigma ' is the kind of engaging historical drama that Hollywood appears to have given up on in favor of sentimental war movies in the vein of ` We Were Soldiers . ' 3 +92011 4788 ' is the kind of engaging historical drama that Hollywood appears to have given up on in favor of sentimental war movies in the vein of ` We Were Soldiers . ' 3 +92012 4788 is the kind of engaging historical drama that Hollywood appears to have given up on in favor of sentimental war movies in the vein of ` We Were Soldiers . ' 4 +92013 4788 is the kind of engaging historical drama that Hollywood appears to have given up on in favor of sentimental war movies in the vein of ` We Were Soldiers . 4 +92014 4788 is the kind of engaging historical drama that Hollywood appears to have given up on in favor of sentimental war movies in the vein of ` We Were Soldiers 4 +92015 4788 the kind of engaging historical drama that Hollywood appears to have given up on in favor of sentimental war movies in the vein of ` We Were Soldiers 3 +92016 4788 of engaging historical drama that Hollywood appears to have given up on in favor of sentimental war movies in the vein of ` We Were Soldiers 3 +92017 4788 engaging historical drama that Hollywood appears to have given up on in favor of sentimental war movies in the vein of ` We Were Soldiers 3 +92018 4788 engaging historical drama 3 +92019 4788 historical drama 2 +92020 4788 that Hollywood appears to have given up on in favor of sentimental war movies in the vein of ` We Were Soldiers 2 +92021 4788 Hollywood appears to have given up on in favor of sentimental war movies in the vein of ` We Were Soldiers 2 +92022 4788 appears to have given up on in favor of sentimental war movies in the vein of ` We Were Soldiers 2 +92023 4788 to have given up on in favor of sentimental war movies in the vein of ` We Were Soldiers 2 +92024 4788 have given up on in favor of sentimental war movies in the vein of ` We Were Soldiers 2 +92025 4788 given up on in favor of sentimental war movies in the vein of ` We Were Soldiers 2 +92026 4788 given up on in favor of sentimental war movies 2 +92027 4788 on in favor of sentimental war movies 2 +92028 4788 in favor of sentimental war movies 3 +92029 4788 favor of sentimental war movies 3 +92030 4788 of sentimental war movies 3 +92031 4788 sentimental war movies 3 +92032 4788 in the vein of ` We Were Soldiers 2 +92033 4788 the vein of ` We Were Soldiers 2 +92034 4788 the vein 2 +92035 4788 of ` We Were Soldiers 3 +92036 4789 An impressive hybrid . 4 +92037 4789 impressive hybrid . 3 +92038 4789 hybrid . 2 +92039 4790 A movie that ca n't get sufficient distance from Leroy 's delusions to escape their maudlin influence . 1 +92040 4790 A movie that ca n't get sufficient distance from Leroy 's 1 +92041 4790 that ca n't get sufficient distance from Leroy 's 1 +92042 4790 ca n't get sufficient distance from Leroy 's 1 +92043 4790 get sufficient distance from Leroy 's 2 +92044 4790 get sufficient distance 2 +92045 4790 sufficient distance 2 +92046 4790 from Leroy 's 2 +92047 4790 Leroy 's 2 +92048 4790 Leroy 2 +92049 4790 delusions to escape their maudlin influence . 1 +92050 4790 delusions to escape their maudlin influence 2 +92051 4790 delusions 1 +92052 4790 to escape their maudlin influence 2 +92053 4790 escape their maudlin influence 2 +92054 4790 their maudlin influence 2 +92055 4790 maudlin influence 2 +92056 4791 Idiotic and ugly . 0 +92057 4791 Idiotic and ugly 0 +92058 4791 Idiotic and 0 +92059 4792 What might 've been an exhilarating exploration of an odd love triangle becomes a sprawl of uncoordinated vectors . 2 +92060 4792 What might 've been an exhilarating exploration of an odd love triangle 1 +92061 4792 might 've been an exhilarating exploration of an odd love triangle 2 +92062 4792 've been an exhilarating exploration of an odd love triangle 3 +92063 4792 been an exhilarating exploration of an odd love triangle 4 +92064 4792 an exhilarating exploration of an odd love triangle 3 +92065 4792 an exhilarating exploration 3 +92066 4792 exhilarating exploration 4 +92067 4792 of an odd love triangle 2 +92068 4792 an odd love triangle 2 +92069 4792 odd love triangle 2 +92070 4792 becomes a sprawl of uncoordinated vectors . 1 +92071 4792 becomes a sprawl of uncoordinated vectors 1 +92072 4792 a sprawl of uncoordinated vectors 1 +92073 4792 a sprawl 2 +92074 4792 sprawl 2 +92075 4792 of uncoordinated vectors 1 +92076 4792 uncoordinated vectors 2 +92077 4792 uncoordinated 1 +92078 4792 vectors 2 +92079 4793 It has the right approach and the right opening premise , but it lacks the zest and it goes for a plot twist instead of trusting the material . 2 +92080 4793 It has the right approach and the right opening premise , but it lacks the zest and it goes for a plot twist instead of trusting the material 2 +92081 4793 It has the right approach and the right opening premise , but 2 +92082 4793 It has the right approach and the right opening premise , 4 +92083 4793 It has the right approach and the right opening premise 3 +92084 4793 has the right approach and the right opening premise 3 +92085 4793 the right approach and the right opening premise 3 +92086 4793 the right approach and 3 +92087 4793 the right approach 3 +92088 4793 right approach 3 +92089 4793 the right opening premise 3 +92090 4793 right opening premise 3 +92091 4793 opening premise 2 +92092 4793 it lacks the zest and it goes for a plot twist instead of trusting the material 1 +92093 4793 it lacks the zest and 1 +92094 4793 it lacks the zest 2 +92095 4793 lacks the zest 1 +92096 4793 the zest 2 +92097 4793 zest 2 +92098 4793 it goes for a plot twist instead of trusting the material 1 +92099 4793 goes for a plot twist instead of trusting the material 2 +92100 4793 for a plot twist instead of trusting the material 1 +92101 4793 a plot twist instead of trusting the material 1 +92102 4793 a plot twist 2 +92103 4793 plot twist 2 +92104 4793 instead of trusting the material 1 +92105 4793 of trusting the material 2 +92106 4793 trusting the material 3 +92107 4793 trusting 3 +92108 4794 Ultimately engages less for its story of actorly existential despair than for its boundary-hopping formal innovations and glimpse into another kind of Chinese ` cultural revolution . ' 3 +92109 4794 engages less for its story of actorly existential despair than for its boundary-hopping formal innovations and glimpse into another kind of Chinese ` cultural revolution . ' 3 +92110 4794 engages less for its story of actorly existential despair than for its boundary-hopping formal innovations and glimpse into another kind of Chinese ` cultural revolution . 3 +92111 4794 engages less for its story of actorly existential despair than for its boundary-hopping formal innovations and glimpse into another kind of Chinese ` cultural revolution 2 +92112 4794 less for its story of actorly existential despair than for its boundary-hopping formal innovations and glimpse into another kind of Chinese ` cultural revolution 2 +92113 4794 less for its story of actorly existential despair than for its boundary-hopping formal innovations and glimpse into another kind of Chinese 3 +92114 4794 for its story of actorly existential despair than for its boundary-hopping formal innovations and glimpse into another kind of Chinese 3 +92115 4794 its story of actorly existential despair than for its boundary-hopping formal innovations and glimpse into another kind of Chinese 3 +92116 4794 of actorly existential despair than for its boundary-hopping formal innovations and glimpse into another kind of Chinese 2 +92117 4794 actorly existential despair than for its boundary-hopping formal innovations and glimpse into another kind of Chinese 3 +92118 4794 actorly existential despair 2 +92119 4794 actorly existential 2 +92120 4794 actorly 2 +92121 4794 than for its boundary-hopping formal innovations and glimpse into another kind of Chinese 2 +92122 4794 than for its boundary-hopping formal innovations and glimpse 2 +92123 4794 for its boundary-hopping formal innovations and glimpse 3 +92124 4794 its boundary-hopping formal innovations and glimpse 3 +92125 4794 boundary-hopping formal innovations and glimpse 3 +92126 4794 boundary-hopping 2 +92127 4794 formal innovations and glimpse 2 +92128 4794 innovations and glimpse 3 +92129 4794 innovations and 3 +92130 4794 innovations 2 +92131 4794 into another kind of Chinese 2 +92132 4794 another kind of Chinese 2 +92133 4794 another kind 2 +92134 4794 of Chinese 2 +92135 4794 ` cultural revolution 3 +92136 4794 cultural revolution 2 +92137 4795 A backhanded ode to female camaraderie penned by a man who has little clue about either the nature of women or of friendship . 1 +92138 4795 A backhanded ode to female camaraderie 2 +92139 4795 A backhanded ode 2 +92140 4795 backhanded ode 2 +92141 4795 backhanded 2 +92142 4795 to female camaraderie 2 +92143 4795 female camaraderie 2 +92144 4795 penned by a man who has little clue about either the nature of women or of friendship . 0 +92145 4795 penned by a man who has little clue about either the nature of women or of friendship 2 +92146 4795 penned 2 +92147 4795 by a man who has little clue about either the nature of women or of friendship 2 +92148 4795 a man who has little clue about either the nature of women or of friendship 0 +92149 4795 who has little clue about either the nature of women or of friendship 0 +92150 4795 has little clue about either the nature of women or of friendship 1 +92151 4795 has little clue 1 +92152 4795 little clue 2 +92153 4795 about either the nature of women or of friendship 2 +92154 4795 about either the nature of women or 3 +92155 4795 about either the nature of women 2 +92156 4795 either the nature of women 2 +92157 4795 either the nature 2 +92158 4795 of friendship 2 +92159 4796 Bad in such a bizarre way that it 's almost worth seeing , if only to witness the crazy confluence of purpose and taste . 2 +92160 4796 Bad in such a bizarre way 0 +92161 4796 in such a bizarre way 2 +92162 4796 such a bizarre way 2 +92163 4796 a bizarre way 2 +92164 4796 bizarre way 2 +92165 4796 that it 's almost worth seeing , if only to witness the crazy confluence of purpose and taste . 2 +92166 4796 that it 's almost worth seeing , if only to witness the crazy confluence of purpose and taste 3 +92167 4796 it 's almost worth seeing , if only to witness the crazy confluence of purpose and taste 3 +92168 4796 's almost worth seeing , if only to witness the crazy confluence of purpose and taste 3 +92169 4796 's almost worth seeing , 2 +92170 4796 's almost worth seeing 2 +92171 4796 if only to witness the crazy confluence of purpose and taste 2 +92172 4796 to witness the crazy confluence of purpose and taste 2 +92173 4796 witness the crazy confluence of purpose and taste 3 +92174 4796 the crazy confluence of purpose and taste 2 +92175 4796 the crazy confluence 2 +92176 4796 crazy confluence 1 +92177 4796 confluence 2 +92178 4796 of purpose and taste 3 +92179 4796 purpose and taste 3 +92180 4797 A surprisingly funny movie . 4 +92181 4797 A surprisingly funny movie 3 +92182 4797 surprisingly funny movie 3 +92183 4797 surprisingly funny 3 +92184 4798 With not a lot of help from the screenplay -LRB- proficient , but singularly cursory -RRB- , -LRB- Testud -RRB- acts with the feral intensity of the young Bette Davis . 2 +92185 4798 With not a lot of help from the screenplay -LRB- proficient , but singularly cursory -RRB- 2 +92186 4798 not a lot of help from the screenplay -LRB- proficient , but singularly cursory -RRB- 2 +92187 4798 not a lot 2 +92188 4798 of help from the screenplay -LRB- proficient , but singularly cursory -RRB- 3 +92189 4798 help from the screenplay -LRB- proficient , but singularly cursory -RRB- 3 +92190 4798 from the screenplay -LRB- proficient , but singularly cursory -RRB- 2 +92191 4798 from the screenplay 2 +92192 4798 -LRB- proficient , but singularly cursory -RRB- 2 +92193 4798 proficient , but singularly cursory -RRB- 2 +92194 4798 proficient , but singularly cursory 2 +92195 4798 proficient , but 2 +92196 4798 proficient , 4 +92197 4798 singularly cursory 2 +92198 4798 cursory 1 +92199 4798 , -LRB- Testud -RRB- acts with the feral intensity of the young Bette Davis . 3 +92200 4798 -LRB- Testud -RRB- acts with the feral intensity of the young Bette Davis . 2 +92201 4798 -LRB- Testud -RRB- 2 +92202 4798 Testud -RRB- 2 +92203 4798 acts with the feral intensity of the young Bette Davis . 3 +92204 4798 acts with the feral intensity of the young Bette Davis 3 +92205 4798 with the feral intensity of the young Bette Davis 3 +92206 4798 the feral intensity of the young Bette Davis 3 +92207 4798 the feral intensity 3 +92208 4798 feral intensity 3 +92209 4798 of the young Bette Davis 2 +92210 4798 the young Bette Davis 2 +92211 4798 young Bette Davis 2 +92212 4798 Bette Davis 2 +92213 4798 Bette 2 +92214 4799 Cletis is playful but highly studied and dependent for its success on a patient viewer . 3 +92215 4799 is playful but highly studied and dependent for its success on a patient viewer . 3 +92216 4799 is playful but highly studied and dependent for its success on a patient viewer 3 +92217 4799 playful but highly studied and dependent for its success on a patient viewer 3 +92218 4799 playful but highly studied and 3 +92219 4799 playful but highly studied 3 +92220 4799 playful but 2 +92221 4799 highly studied 3 +92222 4799 studied 2 +92223 4799 dependent for its success on a patient viewer 2 +92224 4799 dependent 2 +92225 4799 for its success on a patient viewer 3 +92226 4799 its success on a patient viewer 4 +92227 4799 its success 3 +92228 4799 on a patient viewer 2 +92229 4799 a patient viewer 3 +92230 4799 patient viewer 2 +92231 4800 Rife with the rueful , wry humor springing out of Yiddish culture and language . 3 +92232 4800 Rife with the rueful , wry humor springing out of Yiddish culture and language 3 +92233 4800 Rife 2 +92234 4800 with the rueful , wry humor springing out of Yiddish culture and language 2 +92235 4800 the rueful , wry humor springing out of Yiddish culture and language 3 +92236 4800 the rueful , wry humor 3 +92237 4800 rueful , wry humor 3 +92238 4800 , wry humor 2 +92239 4800 wry humor 3 +92240 4800 springing out of Yiddish culture and language 2 +92241 4800 springing out 2 +92242 4800 springing 3 +92243 4800 of Yiddish culture and language 2 +92244 4800 Yiddish culture and language 2 +92245 4800 culture and language 2 +92246 4801 Two Weeks Notice has appeal beyond being a Sandra Bullock vehicle or a standard romantic comedy . 3 +92247 4801 Two Weeks Notice 2 +92248 4801 Weeks Notice 2 +92249 4801 has appeal beyond being a Sandra Bullock vehicle or a standard romantic comedy . 3 +92250 4801 has appeal beyond being a Sandra Bullock vehicle or a standard romantic comedy 4 +92251 4801 appeal beyond being a Sandra Bullock vehicle or a standard romantic comedy 3 +92252 4801 beyond being a Sandra Bullock vehicle or a standard romantic comedy 3 +92253 4801 being a Sandra Bullock vehicle or a standard romantic comedy 2 +92254 4801 a Sandra Bullock vehicle or a standard romantic comedy 2 +92255 4801 a Sandra Bullock vehicle or 2 +92256 4801 a Sandra Bullock vehicle 2 +92257 4801 Sandra Bullock vehicle 2 +92258 4801 Bullock vehicle 2 +92259 4801 a standard romantic comedy 2 +92260 4801 standard romantic comedy 2 +92261 4802 than ` Magnifique ' . 2 +92262 4802 than ` Magnifique ' 3 +92263 4802 than ` Magnifique 3 +92264 4802 than ` 2 +92265 4802 Magnifique 3 +92266 4803 Cockettes has the glorious , gaudy benefit of much stock footage of Those Days , featuring all manner of drag queen , bearded lady and lactating hippie . 2 +92267 4803 Cockettes 2 +92268 4803 has the glorious , gaudy benefit of much stock footage of Those Days , featuring all manner of drag queen , bearded lady and lactating hippie . 2 +92269 4803 has the glorious , gaudy benefit of much stock footage of Those Days , featuring all manner of drag queen , bearded lady and lactating hippie 3 +92270 4803 the glorious , gaudy benefit of much stock footage of Those Days , featuring all manner of drag queen , bearded lady and lactating hippie 3 +92271 4803 the glorious , gaudy benefit of much stock footage of Those Days , 3 +92272 4803 the glorious , gaudy benefit of much stock footage of Those Days 3 +92273 4803 the glorious , gaudy benefit 2 +92274 4803 glorious , gaudy benefit 4 +92275 4803 , gaudy benefit 2 +92276 4803 gaudy benefit 2 +92277 4803 of much stock footage of Those Days 2 +92278 4803 much stock footage of Those Days 2 +92279 4803 much stock footage 2 +92280 4803 stock footage 1 +92281 4803 of Those Days 2 +92282 4803 Those Days 2 +92283 4803 featuring all manner of drag queen , bearded lady and lactating hippie 2 +92284 4803 all manner of drag queen , bearded lady and lactating hippie 1 +92285 4803 of drag queen , bearded lady and lactating hippie 3 +92286 4803 drag queen , bearded lady and lactating hippie 2 +92287 4803 drag queen , 1 +92288 4803 drag queen 2 +92289 4803 bearded lady and lactating hippie 2 +92290 4803 bearded lady and 2 +92291 4803 bearded lady 2 +92292 4803 bearded 2 +92293 4803 lactating hippie 1 +92294 4803 lactating 2 +92295 4804 It 's horribly depressing and not very well done . 0 +92296 4804 's horribly depressing and not very well done . 1 +92297 4804 's horribly depressing and not very well done 1 +92298 4804 horribly depressing and not very well done 1 +92299 4804 horribly depressing and not 0 +92300 4804 horribly depressing and 0 +92301 4804 horribly depressing 0 +92302 4804 horribly 0 +92303 4804 very well done 4 +92304 4805 The kids in the audience at the preview screening seemed bored , cheering the pratfalls but little else ; their parents , wise folks that they are , read books . 1 +92305 4805 The kids in the audience at the preview screening seemed bored , cheering the pratfalls but little else ; their parents , wise folks that they are , read books 1 +92306 4805 The kids in the audience at the preview screening seemed bored , cheering the pratfalls but little else ; 1 +92307 4805 The kids in the audience at the preview screening seemed bored , cheering the pratfalls but little else 1 +92308 4805 The kids in the audience at the preview screening 2 +92309 4805 in the audience at the preview screening 2 +92310 4805 the audience at the preview screening 2 +92311 4805 at the preview screening 2 +92312 4805 the preview screening 2 +92313 4805 preview screening 2 +92314 4805 seemed bored , cheering the pratfalls but little else 1 +92315 4805 seemed bored , 2 +92316 4805 seemed bored 1 +92317 4805 cheering the pratfalls but little else 2 +92318 4805 the pratfalls but little else 1 +92319 4805 pratfalls but little else 2 +92320 4805 pratfalls but little 2 +92321 4805 pratfalls but 2 +92322 4805 their parents , wise folks that they are , read books 3 +92323 4805 their parents , wise folks that they are , 2 +92324 4805 their parents , wise folks that they are 3 +92325 4805 their parents , 2 +92326 4805 wise folks that they are 3 +92327 4805 wise folks 2 +92328 4805 that they are 2 +92329 4805 read books 2 +92330 4806 Michael Moore 's latest documentary about America 's thirst for violence is his best film yet ... 4 +92331 4806 Michael Moore 's latest documentary about America 's thirst for violence 2 +92332 4806 Michael Moore 's latest documentary 2 +92333 4806 latest documentary 2 +92334 4806 about America 's thirst for violence 2 +92335 4806 America 's thirst for violence 1 +92336 4806 America 's thirst 3 +92337 4806 thirst 3 +92338 4806 for violence 1 +92339 4806 is his best film yet ... 4 +92340 4806 is his best film yet 4 +92341 4806 is his best film 4 +92342 4807 One of the best rock documentaries ever . 4 +92343 4807 One of the best rock 4 +92344 4807 of the best rock 3 +92345 4807 the best rock 3 +92346 4807 best rock 3 +92347 4807 documentaries ever . 2 +92348 4807 documentaries ever 2 +92349 4808 A terrible movie that some people will nevertheless find moving . 0 +92350 4808 A terrible movie that some people 0 +92351 4808 that some people 2 +92352 4808 will nevertheless find moving . 3 +92353 4808 will nevertheless find moving 3 +92354 4808 will nevertheless 2 +92355 4808 find moving 2 +92356 4809 This is more a case of ` Sacre bleu ! ' 2 +92357 4809 is more a case of ` Sacre bleu ! ' 2 +92358 4809 is more a case of ` Sacre bleu ! 2 +92359 4809 is more a case of ` Sacre bleu 1 +92360 4809 a case of ` Sacre bleu 2 +92361 4809 of ` Sacre bleu 2 +92362 4809 Sacre bleu 2 +92363 4809 Sacre 2 +92364 4809 bleu 2 +92365 4810 Reggio and Glass so rhapsodize cynicism , with repetition and languorous slo-mo sequences , that Glass 's dirgelike score becomes a fang-baring lullaby . 1 +92366 4810 so rhapsodize cynicism , with repetition and languorous slo-mo sequences , that Glass 's dirgelike score becomes a fang-baring lullaby . 1 +92367 4810 rhapsodize cynicism , with repetition and languorous slo-mo sequences , that Glass 's dirgelike score becomes a fang-baring lullaby . 1 +92368 4810 rhapsodize cynicism , with repetition and languorous slo-mo sequences , that Glass 's dirgelike score becomes a fang-baring lullaby 2 +92369 4810 rhapsodize cynicism , with repetition and languorous slo-mo sequences , 1 +92370 4810 rhapsodize cynicism , with repetition and languorous slo-mo sequences 2 +92371 4810 rhapsodize cynicism , 2 +92372 4810 rhapsodize cynicism 2 +92373 4810 rhapsodize 2 +92374 4810 with repetition and languorous slo-mo sequences 2 +92375 4810 repetition and languorous slo-mo sequences 1 +92376 4810 and languorous slo-mo sequences 2 +92377 4810 languorous slo-mo sequences 1 +92378 4810 slo-mo sequences 2 +92379 4810 that Glass 's dirgelike score becomes a fang-baring lullaby 2 +92380 4810 Glass 's dirgelike score becomes a fang-baring lullaby 1 +92381 4810 Glass 's dirgelike score 3 +92382 4810 Glass 's 2 +92383 4810 dirgelike score 2 +92384 4810 dirgelike 2 +92385 4810 becomes a fang-baring lullaby 2 +92386 4810 a fang-baring lullaby 2 +92387 4810 fang-baring lullaby 1 +92388 4810 fang-baring 2 +92389 4810 lullaby 2 +92390 4811 With Dickens ' words and writer-director Douglas McGrath 's even-toned direction , a ripping good yarn is told . 4 +92391 4811 With Dickens ' words and writer-director Douglas McGrath 's even-toned direction 3 +92392 4811 Dickens ' words and writer-director Douglas McGrath 's even-toned direction 3 +92393 4811 Dickens ' words and 2 +92394 4811 Dickens ' words 3 +92395 4811 writer-director Douglas McGrath 's even-toned direction 3 +92396 4811 writer-director Douglas McGrath 's 2 +92397 4811 Douglas McGrath 's 2 +92398 4811 McGrath 's 2 +92399 4811 even-toned direction 3 +92400 4811 even-toned 2 +92401 4811 , a ripping good yarn is told . 3 +92402 4811 a ripping good yarn is told . 3 +92403 4811 a ripping good yarn 3 +92404 4811 ripping good yarn 2 +92405 4811 ripping 2 +92406 4811 good yarn 3 +92407 4811 is told . 2 +92408 4811 is told 2 +92409 4812 A dramatic comedy as pleasantly dishonest and pat as any Hollywood fluff . 1 +92410 4812 A dramatic comedy as pleasantly 4 +92411 4812 A dramatic comedy 2 +92412 4812 dramatic comedy 3 +92413 4812 as pleasantly 3 +92414 4812 dishonest and pat as any Hollywood fluff . 1 +92415 4812 dishonest and pat as any Hollywood fluff 2 +92416 4812 dishonest and pat 1 +92417 4812 dishonest and 1 +92418 4812 as any Hollywood fluff 1 +92419 4812 any Hollywood fluff 1 +92420 4812 Hollywood fluff 1 +92421 4813 Let 's face it -- there are n't many reasons anyone would want to see Crossroads if they 're not big fans of teen pop kitten Britney Spears . 2 +92422 4813 Let 's face it -- there are n't many reasons anyone would want to see Crossroads if they 're not big fans of teen pop kitten Britney Spears 1 +92423 4813 Let 's face it -- 3 +92424 4813 Let 's face it 2 +92425 4813 face it 2 +92426 4813 there are n't many reasons anyone would want to see Crossroads if they 're not big fans of teen pop kitten Britney Spears 0 +92427 4813 are n't many reasons anyone would want to see Crossroads if they 're not big fans of teen pop kitten Britney Spears 0 +92428 4813 many reasons anyone would want to see Crossroads if they 're not big fans of teen pop kitten Britney Spears 2 +92429 4813 many reasons 2 +92430 4813 anyone would want to see Crossroads if they 're not big fans of teen pop kitten Britney Spears 2 +92431 4813 would want to see Crossroads if they 're not big fans of teen pop kitten Britney Spears 1 +92432 4813 want to see Crossroads if they 're not big fans of teen pop kitten Britney Spears 2 +92433 4813 to see Crossroads if they 're not big fans of teen pop kitten Britney Spears 2 +92434 4813 see Crossroads if they 're not big fans of teen pop kitten Britney Spears 1 +92435 4813 see Crossroads 3 +92436 4813 if they 're not big fans of teen pop kitten Britney Spears 1 +92437 4813 they 're not big fans of teen pop kitten Britney Spears 2 +92438 4813 're not big fans of teen pop kitten Britney Spears 1 +92439 4813 big fans of teen pop kitten Britney Spears 2 +92440 4813 big fans 3 +92441 4813 of teen pop kitten Britney Spears 2 +92442 4813 teen pop kitten Britney Spears 2 +92443 4813 pop kitten Britney Spears 2 +92444 4813 kitten Britney Spears 2 +92445 4813 kitten 2 +92446 4813 Britney Spears 2 +92447 4814 Sa da TAY ! 2 +92448 4814 Sa 2 +92449 4814 da TAY ! 2 +92450 4814 TAY ! 2 +92451 4814 TAY 2 +92452 4815 Simplistic , silly and tedious . 1 +92453 4815 Simplistic , silly and tedious 1 +92454 4815 Simplistic , 2 +92455 4815 silly and tedious 1 +92456 4816 -LRB- Russell -RRB- makes good B movies -LRB- The Mask , The Blob -RRB- , and The Scorpion King more than ably meets those standards . 3 +92457 4816 -LRB- Russell -RRB- makes good B movies -LRB- The Mask , The Blob -RRB- , and The Scorpion King more than ably meets those standards 3 +92458 4816 -LRB- Russell -RRB- makes good B movies -LRB- The Mask , The Blob -RRB- , and 3 +92459 4816 -LRB- Russell -RRB- makes good B movies -LRB- The Mask , The Blob -RRB- , 2 +92460 4816 -LRB- Russell -RRB- makes good B movies -LRB- The Mask , The Blob -RRB- 3 +92461 4816 -LRB- Russell -RRB- 2 +92462 4816 Russell -RRB- 2 +92463 4816 makes good B movies -LRB- The Mask , The Blob -RRB- 3 +92464 4816 good B movies -LRB- The Mask , The Blob -RRB- 3 +92465 4816 good B movies 3 +92466 4816 -LRB- The Mask , The Blob -RRB- 2 +92467 4816 The Mask , The Blob -RRB- 2 +92468 4816 The Mask , The Blob 2 +92469 4816 The Mask , 2 +92470 4816 The Mask 2 +92471 4816 Mask 2 +92472 4816 The Blob 2 +92473 4816 Blob 1 +92474 4816 The Scorpion King more than ably meets those standards 3 +92475 4816 The Scorpion King more than ably 3 +92476 4816 more than ably 3 +92477 4816 than ably 2 +92478 4816 meets those standards 3 +92479 4816 those standards 2 +92480 4817 The movie wavers between Hallmark card sentimentality and goofy , life-affirming moments straight out of a cellular phone commercial . 1 +92481 4817 wavers between Hallmark card sentimentality and goofy , life-affirming moments straight out of a cellular phone commercial . 2 +92482 4817 wavers between Hallmark card sentimentality and goofy , life-affirming moments straight out of a cellular phone commercial 1 +92483 4817 wavers 2 +92484 4817 between Hallmark card sentimentality and goofy , life-affirming moments straight out of a cellular phone commercial 1 +92485 4817 Hallmark card sentimentality and goofy , life-affirming moments straight out of a cellular phone commercial 2 +92486 4817 Hallmark card sentimentality and 1 +92487 4817 Hallmark card sentimentality 1 +92488 4817 card sentimentality 2 +92489 4817 goofy , life-affirming moments straight out of a cellular phone commercial 2 +92490 4817 goofy , life-affirming moments 3 +92491 4817 , life-affirming moments 3 +92492 4817 life-affirming moments 3 +92493 4817 straight out of a cellular phone commercial 1 +92494 4817 out of a cellular phone commercial 1 +92495 4817 of a cellular phone commercial 2 +92496 4817 a cellular phone commercial 1 +92497 4817 cellular phone commercial 2 +92498 4817 cellular 2 +92499 4817 phone commercial 2 +92500 4818 Fans of the modern day Hong Kong action film finally have the worthy successor to A Better Tomorrow and The Killer which they have been patiently waiting for . 3 +92501 4818 Fans of the modern day Hong Kong action film 2 +92502 4818 of the modern day Hong Kong action film 2 +92503 4818 the modern day Hong Kong action film 2 +92504 4818 the modern day 3 +92505 4818 modern day 2 +92506 4818 Hong Kong action film 2 +92507 4818 Kong action film 2 +92508 4818 finally have the worthy successor to A Better Tomorrow and The Killer which they have been patiently waiting for . 3 +92509 4818 have the worthy successor to A Better Tomorrow and The Killer which they have been patiently waiting for . 3 +92510 4818 have the worthy successor to A Better Tomorrow and The Killer which they have been patiently waiting for 4 +92511 4818 the worthy successor to A Better Tomorrow and The Killer which they have been patiently waiting for 3 +92512 4818 the worthy successor to A Better Tomorrow and 3 +92513 4818 the worthy successor to A Better Tomorrow 3 +92514 4818 the worthy successor 3 +92515 4818 worthy successor 3 +92516 4818 to A Better Tomorrow 3 +92517 4818 A Better Tomorrow 2 +92518 4818 Better Tomorrow 2 +92519 4818 The Killer which they have been patiently waiting for 2 +92520 4818 which they have been patiently waiting for 3 +92521 4818 they have been patiently waiting for 4 +92522 4818 have been patiently waiting for 2 +92523 4818 been patiently waiting for 2 +92524 4818 patiently waiting for 2 +92525 4818 patiently 2 +92526 4818 waiting for 2 +92527 4819 The overall feel is not unlike watching a glorified episode of `` 7th Heaven . '' 1 +92528 4819 The overall feel 2 +92529 4819 overall feel 2 +92530 4819 is not unlike watching a glorified episode of `` 7th Heaven . '' 1 +92531 4819 is not unlike watching a glorified episode of `` 7th Heaven . 1 +92532 4819 is not unlike watching a glorified episode of `` 7th Heaven 2 +92533 4819 unlike watching a glorified episode of `` 7th Heaven 2 +92534 4819 watching a glorified episode of `` 7th Heaven 2 +92535 4819 a glorified episode of `` 7th Heaven 1 +92536 4819 a glorified episode 0 +92537 4819 glorified episode 2 +92538 4819 of `` 7th Heaven 2 +92539 4819 7th Heaven 1 +92540 4819 7th 2 +92541 4820 The story itself is actually quite vapid . 1 +92542 4820 itself is actually quite vapid . 1 +92543 4820 is actually quite vapid . 2 +92544 4820 is actually quite vapid 2 +92545 4820 quite vapid 1 +92546 4821 This new Time Machine is hardly perfect ... yet it proves surprisingly serviceable . 2 +92547 4821 This new Time Machine is hardly perfect ... yet it proves surprisingly serviceable 3 +92548 4821 This new Time Machine is hardly perfect ... 1 +92549 4821 This new Time Machine is hardly perfect 1 +92550 4821 This new Time Machine 2 +92551 4821 new Time Machine 2 +92552 4821 is hardly perfect 1 +92553 4821 hardly perfect 1 +92554 4821 yet it proves surprisingly serviceable 3 +92555 4821 it proves surprisingly serviceable 3 +92556 4821 proves surprisingly serviceable 3 +92557 4821 surprisingly serviceable 3 +92558 4822 Even by the intentionally low standards of frat-boy humor , Sorority Boys is a bowser . 0 +92559 4822 Even by the intentionally low standards of frat-boy humor 1 +92560 4822 by the intentionally low standards of frat-boy humor 1 +92561 4822 the intentionally low standards of frat-boy humor 0 +92562 4822 the intentionally low standards 1 +92563 4822 intentionally low standards 2 +92564 4822 intentionally low 1 +92565 4822 of frat-boy humor 2 +92566 4822 frat-boy humor 2 +92567 4822 frat-boy 2 +92568 4822 , Sorority Boys is a bowser . 2 +92569 4822 Sorority Boys is a bowser . 1 +92570 4822 Sorority Boys 2 +92571 4822 Sorority 2 +92572 4822 is a bowser . 1 +92573 4822 is a bowser 1 +92574 4822 a bowser 1 +92575 4822 bowser 3 +92576 4823 Rather , pity anyone who sees this mishmash . 0 +92577 4823 , pity anyone who sees this mishmash . 0 +92578 4823 pity anyone who sees this mishmash . 0 +92579 4823 pity anyone who sees this 0 +92580 4823 pity anyone 2 +92581 4823 who sees this 2 +92582 4823 sees this 2 +92583 4823 mishmash . 1 +92584 4824 Despite Auteuil 's performance , it 's a rather listless amble down the middle of the road , where the thematic ironies are too obvious and the sexual politics too smug . 1 +92585 4824 Despite Auteuil 's performance 1 +92586 4824 Auteuil 's performance 2 +92587 4824 Auteuil 's 2 +92588 4824 , it 's a rather listless amble down the middle of the road , where the thematic ironies are too obvious and the sexual politics too smug . 1 +92589 4824 it 's a rather listless amble down the middle of the road , where the thematic ironies are too obvious and the sexual politics too smug . 1 +92590 4824 's a rather listless amble down the middle of the road , where the thematic ironies are too obvious and the sexual politics too smug . 0 +92591 4824 's a rather listless amble down the middle of the road , where the thematic ironies are too obvious and the sexual politics too smug 1 +92592 4824 's a rather listless amble down 1 +92593 4824 a rather listless amble down 1 +92594 4824 a rather listless amble 1 +92595 4824 rather listless amble 1 +92596 4824 rather listless 2 +92597 4824 amble 2 +92598 4824 the middle of the road , where the thematic ironies are too obvious and the sexual politics too smug 1 +92599 4824 of the road , where the thematic ironies are too obvious and the sexual politics too smug 1 +92600 4824 the road , where the thematic ironies are too obvious and the sexual politics too smug 1 +92601 4824 the road , 2 +92602 4824 where the thematic ironies are too obvious and the sexual politics too smug 1 +92603 4824 the thematic ironies are too obvious and the sexual politics too smug 1 +92604 4824 the thematic ironies are too obvious and 2 +92605 4824 the thematic ironies are too obvious 1 +92606 4824 the thematic ironies 2 +92607 4824 thematic ironies 2 +92608 4824 are too obvious 1 +92609 4824 too obvious 2 +92610 4824 the sexual politics too smug 1 +92611 4824 the sexual politics 2 +92612 4824 sexual politics 2 +92613 4824 too smug 1 +92614 4825 If horses could fly , this is surely what they 'd look like . 2 +92615 4825 If horses could fly 2 +92616 4825 horses could fly 2 +92617 4825 could fly 2 +92618 4825 , this is surely what they 'd look like . 3 +92619 4825 this is surely what they 'd look like . 2 +92620 4825 is surely what they 'd look like . 2 +92621 4825 is surely what they 'd look like 2 +92622 4825 what they 'd look like 2 +92623 4825 they 'd look like 2 +92624 4825 'd look like 2 +92625 4825 look like 2 +92626 4826 A big-budget\/all-star movie as unblinkingly pure as The Hours is a distinct rarity , and an event . 3 +92627 4826 A big-budget\/all-star movie as unblinkingly pure as The Hours 3 +92628 4826 A big-budget\/all-star movie 3 +92629 4826 big-budget\/all-star movie 3 +92630 4826 big-budget\/all-star 2 +92631 4826 as unblinkingly pure as The Hours 1 +92632 4826 unblinkingly pure as The Hours 3 +92633 4826 unblinkingly pure as 3 +92634 4826 unblinkingly pure 3 +92635 4826 unblinkingly 2 +92636 4826 is a distinct rarity , and an event . 3 +92637 4826 is a distinct rarity , and an event 3 +92638 4826 a distinct rarity , and an event 4 +92639 4826 a distinct rarity , and 3 +92640 4826 a distinct rarity , 2 +92641 4826 a distinct rarity 3 +92642 4826 distinct rarity 3 +92643 4826 rarity 3 +92644 4826 an event 2 +92645 4827 A huge box-office hit in Korea , Shiri is a must for genre fans . 3 +92646 4827 A huge box-office hit in Korea 3 +92647 4827 A huge box-office 3 +92648 4827 huge box-office 3 +92649 4827 box-office 2 +92650 4827 hit in Korea 2 +92651 4827 , Shiri is a must for genre fans . 3 +92652 4827 Shiri is a must for genre fans . 4 +92653 4827 Shiri 2 +92654 4827 is a must for genre fans . 3 +92655 4827 is a must for genre fans 3 +92656 4827 is a must 4 +92657 4827 for genre fans 3 +92658 4827 genre fans 2 +92659 4828 Don Michael Paul uses quick-cuts , -LRB- very -RRB- large shadows and wide-angle shots taken from a distance to hide the liberal use of a body double -LRB- for Seagal -RRB- . 2 +92660 4828 Don Michael Paul 2 +92661 4828 Michael Paul 2 +92662 4828 uses quick-cuts , -LRB- very -RRB- large shadows and wide-angle shots taken from a distance to hide the liberal use of a body double -LRB- for Seagal -RRB- . 1 +92663 4828 uses quick-cuts , -LRB- very -RRB- large shadows and wide-angle shots taken from a distance to hide the liberal use of a body double -LRB- for Seagal -RRB- 1 +92664 4828 quick-cuts , -LRB- very -RRB- large shadows and wide-angle shots taken from a distance to hide the liberal use of a body double -LRB- for Seagal -RRB- 1 +92665 4828 quick-cuts , -LRB- very -RRB- large shadows and wide-angle shots taken from a distance to hide the liberal use of a body double 2 +92666 4828 quick-cuts , -LRB- very -RRB- 2 +92667 4828 quick-cuts , 2 +92668 4828 quick-cuts 2 +92669 4828 -LRB- very -RRB- 2 +92670 4828 very -RRB- 2 +92671 4828 large shadows and wide-angle shots taken from a distance to hide the liberal use of a body double 1 +92672 4828 large shadows and 2 +92673 4828 large shadows 2 +92674 4828 wide-angle shots taken from a distance to hide the liberal use of a body double 1 +92675 4828 wide-angle shots 2 +92676 4828 wide-angle 2 +92677 4828 taken from a distance to hide the liberal use of a body double 1 +92678 4828 taken from a distance 2 +92679 4828 from a distance 2 +92680 4828 a distance 2 +92681 4828 to hide the liberal use of a body double 2 +92682 4828 hide the liberal use of a body double 2 +92683 4828 the liberal use of a body double 2 +92684 4828 the liberal use 2 +92685 4828 liberal use 2 +92686 4828 of a body double 2 +92687 4828 a body double 2 +92688 4828 body double 2 +92689 4828 -LRB- for Seagal -RRB- 2 +92690 4828 for Seagal -RRB- 2 +92691 4828 for Seagal 2 +92692 4829 It 's clear that Mehta simply wanted to update her beloved genre for the thousands of Indians who fancy themselves too sophisticated for the cheese-laced spectacles that pack 'em in on the subcontinent . 2 +92693 4829 's clear that Mehta simply wanted to update her beloved genre for the thousands of Indians who fancy themselves too sophisticated for the cheese-laced spectacles that pack 'em in on the subcontinent . 2 +92694 4829 's clear that Mehta simply wanted to update her beloved genre for the thousands of Indians who fancy themselves too sophisticated for the cheese-laced spectacles that pack 'em in on the subcontinent 2 +92695 4829 that Mehta simply wanted to update her beloved genre for the thousands of Indians who fancy themselves too sophisticated for the cheese-laced spectacles that pack 'em in on the subcontinent 2 +92696 4829 Mehta simply wanted to update her beloved genre for the thousands of Indians who fancy themselves too sophisticated for the cheese-laced spectacles that pack 'em in on the subcontinent 2 +92697 4829 simply wanted to update her beloved genre for the thousands of Indians who fancy themselves too sophisticated for the cheese-laced spectacles that pack 'em in on the subcontinent 1 +92698 4829 wanted to update her beloved genre for the thousands of Indians who fancy themselves too sophisticated for the cheese-laced spectacles that pack 'em in on the subcontinent 2 +92699 4829 to update her beloved genre for the thousands of Indians who fancy themselves too sophisticated for the cheese-laced spectacles that pack 'em in on the subcontinent 2 +92700 4829 update her beloved genre for the thousands of Indians who fancy themselves too sophisticated for the cheese-laced spectacles that pack 'em in on the subcontinent 3 +92701 4829 update her beloved genre 2 +92702 4829 her beloved genre 2 +92703 4829 beloved genre 3 +92704 4829 for the thousands of Indians who fancy themselves too sophisticated for the cheese-laced spectacles that pack 'em in on the subcontinent 1 +92705 4829 the thousands of Indians who fancy themselves too sophisticated for the cheese-laced spectacles that pack 'em in on the subcontinent 2 +92706 4829 the thousands of Indians 2 +92707 4829 who fancy themselves too sophisticated for the cheese-laced spectacles that pack 'em in on the subcontinent 2 +92708 4829 fancy themselves too sophisticated for the cheese-laced spectacles that pack 'em in on the subcontinent 1 +92709 4829 themselves too sophisticated for the cheese-laced spectacles that pack 'em in on the subcontinent 1 +92710 4829 too sophisticated for the cheese-laced spectacles that pack 'em in on the subcontinent 2 +92711 4829 sophisticated for the cheese-laced spectacles that pack 'em in on the subcontinent 3 +92712 4829 for the cheese-laced spectacles that pack 'em in on the subcontinent 2 +92713 4829 the cheese-laced spectacles that pack 'em in on the subcontinent 3 +92714 4829 the cheese-laced spectacles 2 +92715 4829 cheese-laced spectacles 1 +92716 4829 cheese-laced 2 +92717 4829 spectacles 2 +92718 4829 that pack 'em in on the subcontinent 2 +92719 4829 pack 'em in on the subcontinent 3 +92720 4829 pack 'em 2 +92721 4829 in on the subcontinent 2 +92722 4829 on the subcontinent 2 +92723 4829 the subcontinent 2 +92724 4829 subcontinent 2 +92725 4830 A wonderful , ghastly film . 3 +92726 4830 A wonderful , ghastly film 3 +92727 4830 wonderful , ghastly film 4 +92728 4830 wonderful , ghastly 4 +92729 4830 , ghastly 1 +92730 4830 ghastly 1 +92731 4831 As improbable as this premise may seem , Abbass 's understated , shining performance offers us the sense that on some elemental level , Lilia deeply wants to break free of her old life . 4 +92732 4831 As improbable as this premise may seem , Abbass 's understated 2 +92733 4831 improbable as this premise may seem , Abbass 's understated 3 +92734 4831 improbable as this premise may seem 1 +92735 4831 as this premise may seem 2 +92736 4831 this premise may seem 2 +92737 4831 this premise 2 +92738 4831 may seem 2 +92739 4831 , Abbass 's understated 2 +92740 4831 Abbass 's understated 3 +92741 4831 Abbass 2 +92742 4831 's understated 2 +92743 4831 , shining performance offers us the sense that on some elemental level , Lilia deeply wants to break free of her old life . 3 +92744 4831 shining performance offers us the sense that on some elemental level , Lilia deeply wants to break free of her old life . 4 +92745 4831 shining performance 4 +92746 4831 offers us the sense that on some elemental level , Lilia deeply wants to break free of her old life . 3 +92747 4831 offers us the sense that on some elemental level , Lilia deeply wants to break free of her old life 3 +92748 4831 offers us the sense 2 +92749 4831 offers us 2 +92750 4831 that on some elemental level , Lilia deeply wants to break free of her old life 2 +92751 4831 on some elemental level , Lilia deeply wants to break free of her old life 2 +92752 4831 on some elemental level 2 +92753 4831 some elemental level 2 +92754 4831 elemental level 2 +92755 4831 elemental 2 +92756 4831 , Lilia deeply wants to break free of her old life 2 +92757 4831 Lilia deeply wants to break free of her old life 2 +92758 4831 deeply wants to break free of her old life 2 +92759 4831 wants to break free of her old life 3 +92760 4831 to break free of her old life 4 +92761 4831 break free of her old life 3 +92762 4831 free of her old life 2 +92763 4831 of her old life 2 +92764 4831 her old life 2 +92765 4831 old life 2 +92766 4832 Instead , he focuses on the anguish that can develop when one mulls leaving the familiar to traverse uncharted ground . 2 +92767 4832 , he focuses on the anguish that can develop when one mulls leaving the familiar to traverse uncharted ground . 2 +92768 4832 he focuses on the anguish that can develop when one mulls leaving the familiar to traverse uncharted ground . 2 +92769 4832 focuses on the anguish that can develop when one mulls leaving the familiar to traverse uncharted ground . 3 +92770 4832 focuses on the anguish that can develop when one mulls leaving the familiar to traverse uncharted ground 2 +92771 4832 on the anguish that can develop when one mulls leaving the familiar to traverse uncharted ground 3 +92772 4832 the anguish that can develop when one mulls leaving the familiar to traverse uncharted ground 1 +92773 4832 the anguish 1 +92774 4832 that can develop when one mulls leaving the familiar to traverse uncharted ground 2 +92775 4832 can develop when one mulls leaving the familiar to traverse uncharted ground 2 +92776 4832 develop when one mulls leaving the familiar to traverse uncharted ground 2 +92777 4832 when one mulls leaving the familiar to traverse uncharted ground 1 +92778 4832 one mulls leaving the familiar to traverse uncharted ground 2 +92779 4832 mulls leaving the familiar to traverse uncharted ground 2 +92780 4832 mulls 2 +92781 4832 leaving the familiar to traverse uncharted ground 2 +92782 4832 the familiar to traverse uncharted ground 2 +92783 4832 familiar to traverse uncharted ground 3 +92784 4832 familiar to traverse 2 +92785 4832 to traverse 2 +92786 4832 traverse 2 +92787 4832 uncharted ground 2 +92788 4833 A timely look back at civil disobedience , anti-war movements and the power of strong voices . 3 +92789 4833 A timely 2 +92790 4833 look back at civil disobedience , anti-war movements and the power of strong voices . 3 +92791 4833 look back at civil disobedience , anti-war movements and the power of strong voices 2 +92792 4833 at civil disobedience , anti-war movements and the power of strong voices 2 +92793 4833 civil disobedience , anti-war movements and the power of strong voices 3 +92794 4833 civil disobedience , anti-war movements and 2 +92795 4833 civil disobedience , anti-war movements 2 +92796 4833 civil disobedience , 2 +92797 4833 civil disobedience 2 +92798 4833 civil 2 +92799 4833 disobedience 2 +92800 4833 anti-war movements 2 +92801 4833 anti-war 2 +92802 4833 the power of strong voices 3 +92803 4833 of strong voices 3 +92804 4833 strong voices 3 +92805 4834 It 's stylishly directed with verve ... 3 +92806 4834 's stylishly directed with verve ... 4 +92807 4834 's stylishly directed with verve 3 +92808 4834 stylishly directed with verve 3 +92809 4834 stylishly 3 +92810 4834 directed with verve 3 +92811 4834 with verve 3 +92812 4835 I had a dream that a smart comedy would come along to rescue me from a summer of teen-driven , toilet-humor codswallop , and its name was Earnest . 4 +92813 4835 I had a dream that a smart comedy would come along to rescue me from a summer of teen-driven , toilet-humor codswallop , and its name was Earnest 2 +92814 4835 I had a dream that a smart comedy would come along to rescue me from a summer of teen-driven , toilet-humor codswallop , and 3 +92815 4835 I had a dream that a smart comedy would come along to rescue me from a summer of teen-driven , toilet-humor codswallop , 1 +92816 4835 I had a dream that a smart comedy would come along to rescue me from a summer of teen-driven , toilet-humor codswallop 3 +92817 4835 had a dream that a smart comedy would come along to rescue me from a summer of teen-driven , toilet-humor codswallop 2 +92818 4835 had a dream 2 +92819 4835 that a smart comedy would come along to rescue me from a summer of teen-driven , toilet-humor codswallop 2 +92820 4835 a smart comedy would come along to rescue me from a summer of teen-driven , toilet-humor codswallop 3 +92821 4835 a smart comedy 3 +92822 4835 smart comedy 3 +92823 4835 would come along to rescue me from a summer of teen-driven , toilet-humor codswallop 2 +92824 4835 come along to rescue me from a summer of teen-driven , toilet-humor codswallop 2 +92825 4835 to rescue me from a summer of teen-driven , toilet-humor codswallop 3 +92826 4835 rescue me from a summer of teen-driven , toilet-humor codswallop 1 +92827 4835 rescue me 2 +92828 4835 from a summer of teen-driven , toilet-humor codswallop 1 +92829 4835 a summer of teen-driven , toilet-humor codswallop 1 +92830 4835 of teen-driven , toilet-humor codswallop 1 +92831 4835 teen-driven , toilet-humor codswallop 1 +92832 4835 teen-driven 2 +92833 4835 , toilet-humor codswallop 2 +92834 4835 toilet-humor codswallop 1 +92835 4835 toilet-humor 1 +92836 4835 codswallop 0 +92837 4835 its name was Earnest 2 +92838 4835 its name 2 +92839 4835 was Earnest 2 +92840 4836 Demonstrates a vivid imagination and an impressive style that result in some terrific setpieces . 3 +92841 4836 Demonstrates a vivid imagination and an impressive style that result in some terrific setpieces 3 +92842 4836 Demonstrates a vivid imagination and an impressive style 4 +92843 4836 a vivid imagination and an impressive style 4 +92844 4836 a vivid imagination and 3 +92845 4836 a vivid imagination 3 +92846 4836 vivid imagination 4 +92847 4836 an impressive style 4 +92848 4836 impressive style 3 +92849 4836 that result in some terrific setpieces 2 +92850 4836 that result 2 +92851 4836 in some terrific setpieces 3 +92852 4836 some terrific setpieces 3 +92853 4836 terrific setpieces 4 +92854 4836 setpieces 2 +92855 4837 It is a strength of a documentary to disregard available bias , especially as temptingly easy as it would have been with this premise . 3 +92856 4837 is a strength of a documentary to disregard available bias , especially as temptingly easy as it would have been with this premise . 2 +92857 4837 is a strength of a documentary to disregard available bias , especially as temptingly easy as it would have been with this premise 3 +92858 4837 is a strength of a documentary to disregard available bias , especially 3 +92859 4837 is a strength of a documentary to disregard available bias , 3 +92860 4837 is a strength of a documentary to disregard available bias 2 +92861 4837 a strength of a documentary to disregard available bias 3 +92862 4837 a strength 3 +92863 4837 of a documentary to disregard available bias 2 +92864 4837 a documentary to disregard available bias 3 +92865 4837 documentary to disregard available bias 3 +92866 4837 to disregard available bias 2 +92867 4837 disregard available bias 2 +92868 4837 available bias 2 +92869 4837 bias 1 +92870 4837 as temptingly easy as it would have been with this premise 3 +92871 4837 as temptingly easy 3 +92872 4837 temptingly easy 2 +92873 4837 temptingly 2 +92874 4837 as it would have been with this premise 2 +92875 4837 it would have been with this premise 2 +92876 4837 would have been with this premise 2 +92877 4837 have been with this premise 2 +92878 4837 been with this premise 2 +92879 4837 with this premise 2 +92880 4838 The predominantly amateur cast is painful to watch , so stilted and unconvincing are the performances . 0 +92881 4838 The predominantly amateur cast is painful to watch , so stilted and unconvincing 0 +92882 4838 predominantly amateur cast is painful to watch , so stilted and unconvincing 1 +92883 4838 predominantly amateur cast is painful to watch , 1 +92884 4838 predominantly amateur cast is painful to watch 0 +92885 4838 predominantly amateur 1 +92886 4838 cast is painful to watch 1 +92887 4838 is painful to watch 0 +92888 4838 painful to watch 0 +92889 4838 so stilted and unconvincing 0 +92890 4838 stilted and unconvincing 1 +92891 4838 stilted and 2 +92892 4838 are the performances . 2 +92893 4838 are the performances 2 +92894 4839 Hmmm ... might I suggest that the wayward wooden one end it all by stuffing himself into an electric pencil sharpener ? 1 +92895 4839 Hmmm 1 +92896 4839 ... might I suggest that the wayward wooden one end it all by stuffing himself into an electric pencil sharpener ? 1 +92897 4839 might I suggest that the wayward wooden one end it all by stuffing himself into an electric pencil sharpener ? 1 +92898 4839 might I suggest that the wayward wooden one end it all by stuffing himself into an electric pencil sharpener 0 +92899 4839 I suggest that the wayward wooden one end it all by stuffing himself into an electric pencil sharpener 1 +92900 4839 suggest that the wayward wooden one end it all by stuffing himself into an electric pencil sharpener 1 +92901 4839 that the wayward wooden one end it all by stuffing himself into an electric pencil sharpener 0 +92902 4839 the wayward wooden one end it all by stuffing himself into an electric pencil sharpener 1 +92903 4839 the wayward wooden one 2 +92904 4839 wayward wooden one 1 +92905 4839 wooden one 2 +92906 4839 end it all by stuffing himself into an electric pencil sharpener 1 +92907 4839 end it 2 +92908 4839 all by stuffing himself into an electric pencil sharpener 1 +92909 4839 by stuffing himself into an electric pencil sharpener 2 +92910 4839 stuffing himself into an electric pencil sharpener 1 +92911 4839 stuffing himself 2 +92912 4839 stuffing 2 +92913 4839 into an electric pencil sharpener 2 +92914 4839 an electric pencil sharpener 3 +92915 4839 electric pencil sharpener 2 +92916 4839 pencil sharpener 2 +92917 4839 pencil 2 +92918 4839 sharpener 2 +92919 4840 A pretty decent kid-pleasing , tolerable-to-adults lark of a movie . 3 +92920 4840 A pretty decent kid-pleasing , tolerable-to-adults lark of a movie 3 +92921 4840 A pretty decent kid-pleasing , 3 +92922 4840 A pretty decent kid-pleasing 3 +92923 4840 pretty decent kid-pleasing 3 +92924 4840 decent kid-pleasing 3 +92925 4840 kid-pleasing 2 +92926 4840 tolerable-to-adults lark of a movie 1 +92927 4840 tolerable-to-adults lark 2 +92928 4840 tolerable-to-adults 1 +92929 4841 A tightly directed , highly professional film that 's old-fashioned in all the best possible ways . 3 +92930 4841 A tightly 2 +92931 4841 tightly 2 +92932 4841 directed , highly professional film that 's old-fashioned in all the best possible ways . 3 +92933 4841 directed , highly professional film that 's old-fashioned in all the best possible ways 3 +92934 4841 highly professional film that 's old-fashioned in all the best possible ways 4 +92935 4841 highly professional film 4 +92936 4841 professional film 3 +92937 4841 that 's old-fashioned in all the best possible ways 4 +92938 4841 's old-fashioned in all the best possible ways 4 +92939 4841 old-fashioned in all the best possible ways 3 +92940 4841 in all the best possible ways 3 +92941 4841 all the best possible ways 3 +92942 4841 the best possible ways 4 +92943 4841 best possible ways 3 +92944 4841 best possible 3 +92945 4842 You 're not merely watching history , you 're engulfed by it . 4 +92946 4842 You 're not merely watching history 3 +92947 4842 're not merely watching history 3 +92948 4842 're not merely 2 +92949 4842 watching history 2 +92950 4842 , you 're engulfed by it . 4 +92951 4842 you 're engulfed by it . 3 +92952 4842 're engulfed by it . 4 +92953 4842 're engulfed by it 2 +92954 4842 engulfed by it 2 +92955 4842 engulfed 2 +92956 4842 by it 2 +92957 4843 White Oleander may leave you rolling your eyes in the dark , but that does n't mean you wo n't like looking at it . 3 +92958 4843 White Oleander may leave you rolling your eyes in the dark , but that does n't mean you wo n't like looking at it 3 +92959 4843 White Oleander may leave you rolling your eyes in the dark , but 2 +92960 4843 White Oleander may leave you rolling your eyes in the dark , 0 +92961 4843 White Oleander may leave you rolling your eyes in the dark 2 +92962 4843 White Oleander 2 +92963 4843 Oleander 2 +92964 4843 may leave you rolling your eyes in the dark 1 +92965 4843 leave you rolling your eyes in the dark 2 +92966 4843 you rolling your eyes in the dark 2 +92967 4843 rolling your eyes in the dark 1 +92968 4843 rolling your eyes 1 +92969 4843 your eyes 2 +92970 4843 in the dark 2 +92971 4843 the dark 1 +92972 4843 that does n't mean you wo n't like looking at it 2 +92973 4843 does n't mean you wo n't like looking at it 3 +92974 4843 mean you wo n't like looking at it 2 +92975 4843 you wo n't like looking at it 0 +92976 4843 wo n't like looking at it 1 +92977 4843 like looking at it 2 +92978 4843 looking at it 2 +92979 4844 Bad Company has one of the most moronic screenplays of the year , full of holes that will be obvious even to those who are n't looking for them . 1 +92980 4844 has one of the most moronic screenplays of the year , full of holes that will be obvious even to those who are n't looking for them . 0 +92981 4844 has one of the most moronic screenplays of the year , full of holes that will be obvious even to those who are n't looking for them 2 +92982 4844 one of the most moronic screenplays of the year , full of holes that will be obvious even to those who are n't looking for them 1 +92983 4844 of the most moronic screenplays of the year , full of holes that will be obvious even to those who are n't looking for them 0 +92984 4844 the most moronic screenplays of the year , full of holes that will be obvious even to those who are n't looking for them 2 +92985 4844 the most moronic screenplays of the year , 0 +92986 4844 the most moronic screenplays of the year 0 +92987 4844 the most moronic screenplays 1 +92988 4844 most moronic screenplays 0 +92989 4844 most moronic 0 +92990 4844 full of holes that will be obvious even to those who are n't looking for them 0 +92991 4844 of holes that will be obvious even to those who are n't looking for them 1 +92992 4844 holes that will be obvious even to those who are n't looking for them 1 +92993 4844 that will be obvious even to those who are n't looking for them 2 +92994 4844 will be obvious even to those who are n't looking for them 2 +92995 4844 be obvious even to those who are n't looking for them 2 +92996 4844 obvious even to those who are n't looking for them 2 +92997 4844 obvious even 2 +92998 4844 to those who are n't looking for them 2 +92999 4844 those who are n't looking for them 2 +93000 4844 who are n't looking for them 2 +93001 4844 are n't looking for them 2 +93002 4844 looking for them 2 +93003 4845 The film does n't show enough of the creative process or even of what was created for the non-fan to figure out what makes Wilco a big deal . 1 +93004 4845 does n't show enough of the creative process or even of what was created for the non-fan to figure out what makes Wilco a big deal . 1 +93005 4845 does n't show enough of the creative process or even of what was created for the non-fan to figure out what makes Wilco a big deal 2 +93006 4845 show enough of the creative process or even of what was created for the non-fan to figure out what makes Wilco a big deal 2 +93007 4845 enough of the creative process or even of what was created for the non-fan to figure out what makes Wilco a big deal 2 +93008 4845 enough of the creative process or even 2 +93009 4845 of the creative process or even 2 +93010 4845 the creative process or even 2 +93011 4845 creative process or even 2 +93012 4845 process or even 2 +93013 4845 process or 2 +93014 4845 of what was created for the non-fan to figure out what makes Wilco a big deal 3 +93015 4845 what was created for the non-fan to figure out what makes Wilco a big deal 2 +93016 4845 was created for the non-fan to figure out what makes Wilco a big deal 3 +93017 4845 created for the non-fan to figure out what makes Wilco a big deal 2 +93018 4845 created for the non-fan 2 +93019 4845 for the non-fan 2 +93020 4845 the non-fan 2 +93021 4845 non-fan 2 +93022 4845 to figure out what makes Wilco a big deal 2 +93023 4845 figure out what makes Wilco a big deal 2 +93024 4845 what makes Wilco a big deal 2 +93025 4845 makes Wilco a big deal 2 +93026 4845 Wilco a big deal 2 +93027 4845 a big deal 2 +93028 4845 big deal 2 +93029 4846 A drama ? 2 +93030 4846 drama ? 2 +93031 4847 A fast-paced , glitzy but extremely silly piece . 2 +93032 4847 A fast-paced , glitzy but extremely silly piece 2 +93033 4847 A fast-paced , 2 +93034 4847 A fast-paced 3 +93035 4847 glitzy but extremely silly piece 1 +93036 4847 glitzy 2 +93037 4847 but extremely silly piece 1 +93038 4847 extremely silly piece 2 +93039 4847 extremely silly 1 +93040 4848 Even if it made its original release date last fall , it would 've reeked of a been-there , done-that sameness . 1 +93041 4848 Even if it made its original release date last fall 1 +93042 4848 if it made its original release date last fall 2 +93043 4848 it made its original release date last fall 2 +93044 4848 made its original release date last fall 2 +93045 4848 made its original release date 2 +93046 4848 its original release date 2 +93047 4848 original release date 2 +93048 4848 release date 2 +93049 4848 last fall 2 +93050 4848 , it would 've reeked of a been-there , done-that sameness . 2 +93051 4848 it would 've reeked of a been-there , done-that sameness . 1 +93052 4848 would 've reeked of a been-there , done-that sameness . 1 +93053 4848 would 've reeked of a been-there , done-that sameness 2 +93054 4848 've reeked of a been-there , done-that sameness 1 +93055 4848 reeked of a been-there , done-that sameness 0 +93056 4848 reeked 2 +93057 4848 of a been-there , done-that sameness 1 +93058 4848 a been-there , done-that sameness 1 +93059 4848 a been-there , 1 +93060 4848 a been-there 1 +93061 4848 done-that sameness 2 +93062 4848 done-that 2 +93063 4848 sameness 1 +93064 4849 It 's hard to imagine acting that could be any flatter . 0 +93065 4849 's hard to imagine acting that could be any flatter . 1 +93066 4849 's hard to imagine acting that could be any flatter 1 +93067 4849 hard to imagine acting that could be any flatter 0 +93068 4849 to imagine acting that could be any flatter 0 +93069 4849 imagine acting that could be any flatter 1 +93070 4849 acting that could be any flatter 0 +93071 4849 that could be any flatter 2 +93072 4849 could be any flatter 1 +93073 4849 be any flatter 1 +93074 4849 any flatter 2 +93075 4850 I 'm sure the filmmakers found this a remarkable and novel concept , but 2 +93076 4850 I 'm sure the filmmakers found this a remarkable and novel concept , 3 +93077 4850 I 'm sure the filmmakers found this a remarkable and novel concept 2 +93078 4850 'm sure the filmmakers found this a remarkable and novel concept 3 +93079 4850 sure the filmmakers found this a remarkable and novel concept 3 +93080 4850 the filmmakers found this a remarkable and novel concept 3 +93081 4850 found this a remarkable and novel concept 3 +93082 4850 this a remarkable and novel concept 4 +93083 4850 a remarkable and novel concept 3 +93084 4850 a remarkable and novel 4 +93085 4850 remarkable and novel 3 +93086 4850 anybody who has ever seen an independent film 2 +93087 4850 who has ever seen an independent film 2 +93088 4850 has ever seen an independent film 2 +93089 4850 seen an independent film 2 +93090 4850 is instead 2 +93091 4851 All the sensuality , all the eroticism of a good vampire tale has been , pardon the pun , sucked out and replaced by goth goofiness . 1 +93092 4851 All the sensuality , all the eroticism of a good vampire tale 3 +93093 4851 All the sensuality , 2 +93094 4851 All the sensuality 2 +93095 4851 the sensuality 2 +93096 4851 all the eroticism of a good vampire tale 2 +93097 4851 all the eroticism 2 +93098 4851 the eroticism 2 +93099 4851 eroticism 2 +93100 4851 of a good vampire tale 3 +93101 4851 a good vampire tale 3 +93102 4851 good vampire tale 3 +93103 4851 vampire tale 2 +93104 4851 has been , pardon the pun , sucked out and replaced by goth goofiness . 1 +93105 4851 has been , pardon the pun , sucked out and replaced by goth goofiness 1 +93106 4851 been , pardon the pun , sucked out and replaced by goth goofiness 1 +93107 4851 been , pardon the pun , sucked out and 2 +93108 4851 been , pardon the pun , sucked out 1 +93109 4851 been , pardon the pun , 2 +93110 4851 been , pardon the pun 2 +93111 4851 been , 2 +93112 4851 pardon the pun 2 +93113 4851 pardon 2 +93114 4851 the pun 2 +93115 4851 sucked out 2 +93116 4851 replaced by goth goofiness 1 +93117 4851 by goth goofiness 2 +93118 4851 goth goofiness 2 +93119 4851 goth 2 +93120 4852 The events of the film are just so WEIRD that I honestly never knew what the hell was coming next . 1 +93121 4852 The events of the film 2 +93122 4852 are just so WEIRD that I honestly never knew what the hell was coming next . 3 +93123 4852 are just so WEIRD that I honestly never knew what the hell was coming next 2 +93124 4852 are just so 2 +93125 4852 just so 2 +93126 4852 WEIRD that I honestly never knew what the hell was coming next 3 +93127 4852 that I honestly never knew what the hell was coming next 2 +93128 4852 I honestly never knew what the hell was coming next 3 +93129 4852 honestly never knew what the hell was coming next 2 +93130 4852 never knew what the hell was coming next 1 +93131 4852 knew what the hell was coming next 0 +93132 4852 what the hell was coming next 1 +93133 4852 the hell was coming next 2 +93134 4852 was coming next 2 +93135 4852 coming next 2 +93136 4853 The problem is that Van Wilder does little that is actually funny with the material . 1 +93137 4853 is that Van Wilder does little that is actually funny with the material . 1 +93138 4853 is that Van Wilder does little that is actually funny with the material 0 +93139 4853 that Van Wilder does little that is actually funny with the material 1 +93140 4853 Van Wilder does little that is actually funny with the material 1 +93141 4853 does little that is actually funny with the material 1 +93142 4853 little that is actually funny with the material 2 +93143 4853 that is actually funny with the material 3 +93144 4853 is actually funny with the material 3 +93145 4853 funny with the material 3 +93146 4854 The Ya-Ya 's have many secrets and one is - the books are better . 0 +93147 4854 The Ya-Ya 's have many secrets and one is - the books are better 1 +93148 4854 The Ya-Ya 's have many secrets and one is - 2 +93149 4854 The Ya-Ya 's have many secrets and one is 2 +93150 4854 The Ya-Ya 's have many secrets and 2 +93151 4854 The Ya-Ya 's have many secrets 2 +93152 4854 The Ya-Ya 's 2 +93153 4854 Ya-Ya 's 3 +93154 4854 have many secrets 2 +93155 4854 many secrets 2 +93156 4854 one is 2 +93157 4854 the books are better 1 +93158 4854 are better 2 +93159 4855 his -LRB- Nelson 's -RRB- screenplay needs some serious re-working to show more of the dilemma , rather than have his characters stage shouting matches about it . 1 +93160 4855 his -LRB- Nelson 's -RRB- screenplay needs some serious re-working to show more of the dilemma , rather than have his characters stage shouting 0 +93161 4855 his -LRB- Nelson 's -RRB- screenplay 3 +93162 4855 -LRB- Nelson 's -RRB- screenplay 2 +93163 4855 -LRB- Nelson 's -RRB- 2 +93164 4855 Nelson 's -RRB- 2 +93165 4855 needs some serious re-working to show more of the dilemma , rather than have his characters stage shouting 1 +93166 4855 some serious re-working to show more of the dilemma , rather than have his characters stage shouting 1 +93167 4855 serious re-working to show more of the dilemma , rather than have his characters stage shouting 1 +93168 4855 re-working to show more of the dilemma , rather than have his characters stage shouting 1 +93169 4855 re-working 2 +93170 4855 to show more of the dilemma , rather than have his characters stage shouting 2 +93171 4855 show more of the dilemma , rather than have his characters stage shouting 1 +93172 4855 show more of the dilemma , rather than 1 +93173 4855 show more of the dilemma , 2 +93174 4855 show more of the dilemma 2 +93175 4855 more of the dilemma 2 +93176 4855 of the dilemma 2 +93177 4855 the dilemma 2 +93178 4855 have his characters stage shouting 2 +93179 4855 his characters stage shouting 2 +93180 4855 his characters stage 3 +93181 4855 characters stage 2 +93182 4855 shouting 2 +93183 4855 matches about it . 3 +93184 4855 matches about it 2 +93185 4856 Over and over again . 1 +93186 4856 over again . 2 +93187 4856 again . 2 +93188 4857 This is not a Jackie Chan movie . 1 +93189 4857 is not a Jackie Chan movie . 2 +93190 4857 is not a Jackie Chan movie 2 +93191 4857 a Jackie Chan movie 3 +93192 4857 Jackie Chan movie 2 +93193 4857 Chan movie 2 +93194 4858 It 's quite another to feel physically caught up in the process . 2 +93195 4858 's quite another to feel physically caught up in the process . 2 +93196 4858 's quite another to feel physically caught up in the process 2 +93197 4858 's quite another 2 +93198 4858 quite another 2 +93199 4858 to feel physically caught up in the process 2 +93200 4858 feel physically caught up in the process 2 +93201 4858 physically caught up in the process 3 +93202 4858 caught up in the process 2 +93203 4859 But there 's plenty to offend everyone ... 1 +93204 4859 there 's plenty to offend everyone ... 0 +93205 4859 's plenty to offend everyone ... 0 +93206 4859 's plenty to offend everyone 1 +93207 4859 plenty to offend everyone 1 +93208 4859 to offend everyone 2 +93209 4859 offend everyone 1 +93210 4860 He thinks the film is just as much a document about him as it is about the subject . 1 +93211 4860 thinks the film is just as much a document about him as it is about the subject . 2 +93212 4860 thinks the film is just as much a document about him as it is about the subject 2 +93213 4860 the film is just as much a document about him as it is about the subject 2 +93214 4860 is just as much a document about him as it is about the subject 2 +93215 4860 is just as much a document about him 2 +93216 4860 is just as much 2 +93217 4860 just as much 2 +93218 4860 a document about him 2 +93219 4860 a document 2 +93220 4860 about him 2 +93221 4860 as it is about the subject 2 +93222 4860 it is about the subject 2 +93223 4860 is about the subject 2 +93224 4860 about the subject 2 +93225 4861 What emerges is an unsettling picture of childhood innocence combined with indoctrinated prejudice . 3 +93226 4861 What emerges 2 +93227 4861 is an unsettling picture of childhood innocence combined with indoctrinated prejudice . 3 +93228 4861 is an unsettling picture of childhood innocence combined with indoctrinated prejudice 2 +93229 4861 an unsettling picture of childhood innocence combined with indoctrinated prejudice 2 +93230 4861 an unsettling picture 1 +93231 4861 unsettling picture 2 +93232 4861 of childhood innocence combined with indoctrinated prejudice 1 +93233 4861 childhood innocence combined with indoctrinated prejudice 3 +93234 4861 childhood innocence 3 +93235 4861 combined with indoctrinated prejudice 1 +93236 4861 with indoctrinated prejudice 1 +93237 4861 indoctrinated prejudice 1 +93238 4861 indoctrinated 2 +93239 4861 prejudice 2 +93240 4862 Not quite as miraculous as its DreamWorks makers would have you believe , but it more than adequately fills the eyes and stirs the emotions . 3 +93241 4862 Not quite as miraculous as its DreamWorks makers would have you believe , but it more than adequately fills the eyes and stirs the emotions 3 +93242 4862 Not quite as miraculous as its DreamWorks makers would have you believe , but 2 +93243 4862 Not quite as miraculous as its DreamWorks makers would have you believe , 2 +93244 4862 Not quite as miraculous as its DreamWorks makers would have you believe 1 +93245 4862 Not quite as miraculous as its DreamWorks makers 1 +93246 4862 as miraculous as its DreamWorks makers 4 +93247 4862 miraculous as its DreamWorks makers 4 +93248 4862 miraculous 4 +93249 4862 as its DreamWorks makers 2 +93250 4862 its DreamWorks makers 2 +93251 4862 DreamWorks makers 2 +93252 4862 DreamWorks 2 +93253 4862 it more than adequately fills the eyes and stirs the emotions 4 +93254 4862 more than adequately fills the eyes and stirs the emotions 3 +93255 4862 more than adequately fills the eyes and 3 +93256 4862 more than adequately fills the eyes 2 +93257 4862 adequately fills the eyes 3 +93258 4862 fills the eyes 3 +93259 4862 stirs the emotions 3 +93260 4863 This is n't a new idea . 1 +93261 4863 is n't a new idea . 2 +93262 4863 is n't a new idea 1 +93263 4863 a new idea 3 +93264 4863 new idea 2 +93265 4864 A tour de force drama about the astonishingly pivotal role of imagination in the soulful development of two rowdy teenagers . 3 +93266 4864 A tour de 2 +93267 4864 tour de 3 +93268 4864 tour 2 +93269 4864 force drama about the astonishingly pivotal role of imagination in the soulful development of two rowdy teenagers . 2 +93270 4864 force drama about the astonishingly pivotal role of imagination in the soulful development of two rowdy teenagers 2 +93271 4864 force drama 2 +93272 4864 about the astonishingly pivotal role of imagination in the soulful development of two rowdy teenagers 3 +93273 4864 the astonishingly pivotal role of imagination in the soulful development of two rowdy teenagers 3 +93274 4864 the astonishingly pivotal role 3 +93275 4864 astonishingly pivotal role 3 +93276 4864 astonishingly pivotal 4 +93277 4864 pivotal 2 +93278 4864 of imagination in the soulful development of two rowdy teenagers 3 +93279 4864 imagination in the soulful development of two rowdy teenagers 3 +93280 4864 in the soulful development of two rowdy teenagers 3 +93281 4864 the soulful development of two rowdy teenagers 3 +93282 4864 the soulful development 4 +93283 4864 soulful development 3 +93284 4864 of two rowdy teenagers 2 +93285 4864 two rowdy teenagers 2 +93286 4864 rowdy teenagers 2 +93287 4865 That death is merely a transition is a common tenet in the world 's religions . 2 +93288 4865 That death 2 +93289 4865 is merely a transition is a common tenet in the world 's religions . 2 +93290 4865 is merely a transition is a common tenet in the world 's religions 2 +93291 4865 a transition is a common tenet in the world 's religions 2 +93292 4865 a transition 2 +93293 4865 is a common tenet in the world 's religions 2 +93294 4865 a common tenet in the world 's religions 2 +93295 4865 a common tenet 2 +93296 4865 common tenet 2 +93297 4865 tenet 2 +93298 4865 in the world 's religions 2 +93299 4865 the world 's religions 2 +93300 4865 religions 2 +93301 4866 Wiseman reveals the victims of domestic abuse in all of their pity and terror . 2 +93302 4866 reveals the victims of domestic abuse in all of their pity and terror . 2 +93303 4866 reveals the victims of domestic abuse in all of their pity and terror 2 +93304 4866 reveals the victims of domestic abuse 2 +93305 4866 the victims of domestic abuse 2 +93306 4866 of domestic abuse 2 +93307 4866 domestic abuse 1 +93308 4866 in all of their pity and terror 0 +93309 4866 all of their pity and terror 2 +93310 4866 of their pity and terror 2 +93311 4866 their pity and terror 2 +93312 4866 pity and terror 1 +93313 4867 It 's all surface psychodramatics . 0 +93314 4867 's all surface psychodramatics . 2 +93315 4867 's all surface psychodramatics 1 +93316 4867 surface psychodramatics 2 +93317 4867 psychodramatics 2 +93318 4868 While Scorsese 's bold images and generally smart casting ensure that `` Gangs '' is never lethargic , the movie is hindered by a central plot that 's peppered with false starts and populated by characters who are nearly impossible to care about . 1 +93319 4868 While Scorsese 's bold images and generally smart casting ensure that `` Gangs '' is never lethargic 3 +93320 4868 Scorsese 's bold images and generally smart casting ensure that `` Gangs '' is never lethargic 3 +93321 4868 Scorsese 's bold images and generally smart casting 3 +93322 4868 Scorsese 's bold images and 2 +93323 4868 Scorsese 's bold images 4 +93324 4868 bold images 2 +93325 4868 generally smart casting 3 +93326 4868 generally smart 3 +93327 4868 ensure that `` Gangs '' is never lethargic 2 +93328 4868 that `` Gangs '' is never lethargic 3 +93329 4868 `` Gangs '' is never lethargic 3 +93330 4868 Gangs '' is never lethargic 2 +93331 4868 '' is never lethargic 3 +93332 4868 is never lethargic 3 +93333 4868 lethargic 1 +93334 4868 , the movie is hindered by a central plot that 's peppered with false starts and populated by characters who are nearly impossible to care about . 0 +93335 4868 the movie is hindered by a central plot that 's peppered with false starts and populated by characters who are nearly impossible to care about . 0 +93336 4868 is hindered by a central plot that 's peppered with false starts and populated by characters who are nearly impossible to care about . 1 +93337 4868 is hindered by a central plot that 's peppered with false starts and populated by characters who are nearly impossible to care about 0 +93338 4868 hindered by a central plot that 's peppered with false starts and populated by characters who are nearly impossible to care about 0 +93339 4868 hindered 1 +93340 4868 by a central plot that 's peppered with false starts and populated by characters who are nearly impossible to care about 0 +93341 4868 a central plot that 's peppered with false starts and populated by characters who are nearly impossible to care about 1 +93342 4868 a central plot 2 +93343 4868 central plot 2 +93344 4868 that 's peppered with false starts and populated by characters who are nearly impossible to care about 1 +93345 4868 's peppered with false starts and populated by characters who are nearly impossible to care about 1 +93346 4868 peppered with false starts and populated by characters who are nearly impossible to care about 0 +93347 4868 peppered with false starts and 1 +93348 4868 peppered with false starts 1 +93349 4868 peppered 2 +93350 4868 with false starts 1 +93351 4868 false starts 2 +93352 4868 populated by characters who are nearly impossible to care about 0 +93353 4868 populated 2 +93354 4868 by characters who are nearly impossible to care about 0 +93355 4868 characters who are nearly impossible to care about 0 +93356 4868 who are nearly impossible to care about 1 +93357 4868 are nearly impossible to care about 1 +93358 4868 nearly impossible to care about 0 +93359 4869 Amy and Matthew have a bit of a phony relationship , but the film works in spite of it . 3 +93360 4869 Amy and Matthew have a bit of a phony relationship , but the film works in spite of it 2 +93361 4869 Amy and Matthew have a bit of a phony relationship , but 1 +93362 4869 Amy and Matthew have a bit of a phony relationship , 1 +93363 4869 Amy and Matthew have a bit of a phony relationship 1 +93364 4869 Amy and Matthew 2 +93365 4869 Amy and 2 +93366 4869 have a bit of a phony relationship 2 +93367 4869 a bit of a phony relationship 1 +93368 4869 of a phony relationship 2 +93369 4869 a phony relationship 1 +93370 4869 phony relationship 1 +93371 4869 the film works in spite of it 3 +93372 4869 works in spite of it 2 +93373 4869 in spite of it 2 +93374 4869 spite of it 3 +93375 4870 One can only assume that the jury who bestowed star Hoffman 's brother Gordy with the Waldo Salt Screenwriting award at 2002 's Sundance Festival were honoring an attempt to do something different over actually pulling it off 1 +93376 4870 can only assume that the jury who bestowed star Hoffman 's brother Gordy with the Waldo Salt Screenwriting award at 2002 's Sundance Festival were honoring an attempt to do something different over actually pulling it off 1 +93377 4870 assume that the jury who bestowed star Hoffman 's brother Gordy with the Waldo Salt Screenwriting award at 2002 's Sundance Festival were honoring an attempt to do something different over actually pulling it off 1 +93378 4870 that the jury who bestowed star Hoffman 's brother Gordy with the Waldo Salt Screenwriting award at 2002 's Sundance Festival were honoring an attempt to do something different over actually pulling it off 1 +93379 4870 the jury who bestowed star Hoffman 's brother Gordy with the Waldo Salt Screenwriting award at 2002 's Sundance Festival were honoring an attempt to do something different over actually pulling it off 2 +93380 4870 the jury who bestowed star Hoffman 's brother Gordy with the Waldo Salt Screenwriting award at 2002 's Sundance Festival 2 +93381 4870 the jury 2 +93382 4870 jury 2 +93383 4870 who bestowed star Hoffman 's brother Gordy with the Waldo Salt Screenwriting award at 2002 's Sundance Festival 2 +93384 4870 bestowed star Hoffman 's brother Gordy with the Waldo Salt Screenwriting award at 2002 's Sundance Festival 3 +93385 4870 bestowed star Hoffman 's brother Gordy with the Waldo Salt Screenwriting award 2 +93386 4870 bestowed star Hoffman 's brother Gordy 2 +93387 4870 bestowed 2 +93388 4870 star Hoffman 's brother Gordy 2 +93389 4870 star Hoffman 's 2 +93390 4870 brother Gordy 2 +93391 4870 Gordy 2 +93392 4870 with the Waldo Salt Screenwriting award 3 +93393 4870 the Waldo Salt Screenwriting award 2 +93394 4870 Waldo Salt Screenwriting award 3 +93395 4870 Waldo 2 +93396 4870 Salt Screenwriting award 2 +93397 4870 Screenwriting award 3 +93398 4870 at 2002 's Sundance Festival 3 +93399 4870 2002 's Sundance Festival 2 +93400 4870 Sundance Festival 3 +93401 4870 were honoring an attempt to do something different over actually pulling it off 2 +93402 4870 honoring an attempt to do something different over actually pulling it off 2 +93403 4870 honoring 3 +93404 4870 an attempt to do something different over actually pulling it off 1 +93405 4870 attempt to do something different over actually pulling it off 3 +93406 4870 to do something different over actually pulling it off 2 +93407 4870 do something different over actually pulling it off 2 +93408 4870 something different over actually pulling it off 2 +93409 4870 different over actually pulling it off 2 +93410 4870 over actually pulling it off 2 +93411 4870 actually pulling it off 3 +93412 4870 pulling it off 2 +93413 4870 pulling it 2 +93414 4871 An affable but undernourished romantic comedy that fails to match the freshness of the actress-producer and writer 's previous collaboration , Miss Congeniality . 1 +93415 4871 An affable but undernourished romantic comedy that fails to match the freshness of the actress-producer and writer 1 +93416 4871 An affable but undernourished romantic comedy 2 +93417 4871 affable but undernourished romantic comedy 2 +93418 4871 affable but undernourished 2 +93419 4871 affable but 2 +93420 4871 that fails to match the freshness of the actress-producer and writer 1 +93421 4871 fails to match the freshness of the actress-producer and writer 0 +93422 4871 to match the freshness of the actress-producer and writer 3 +93423 4871 match the freshness of the actress-producer and writer 3 +93424 4871 the freshness of the actress-producer and writer 2 +93425 4871 the freshness 2 +93426 4871 of the actress-producer and writer 2 +93427 4871 the actress-producer and writer 2 +93428 4871 actress-producer and writer 1 +93429 4871 actress-producer and 2 +93430 4871 actress-producer 2 +93431 4871 's previous collaboration , Miss Congeniality . 2 +93432 4871 's previous collaboration , Miss Congeniality 2 +93433 4871 previous collaboration , Miss Congeniality 2 +93434 4871 previous collaboration , 2 +93435 4871 previous collaboration 2 +93436 4871 Miss Congeniality 3 +93437 4871 Congeniality 2 +93438 4872 A thoroughly entertaining comedy that uses Grant 's own twist of acidity to prevent itself from succumbing to its own bathos . 4 +93439 4872 A thoroughly entertaining comedy that 4 +93440 4872 thoroughly entertaining comedy that 3 +93441 4872 thoroughly entertaining 4 +93442 4872 comedy that 2 +93443 4872 uses Grant 's own twist of acidity to prevent itself from succumbing to its own bathos . 2 +93444 4872 uses Grant 's own twist of acidity to prevent itself from succumbing to its own bathos 3 +93445 4872 uses Grant 's own twist of acidity 3 +93446 4872 Grant 's own twist of acidity 2 +93447 4872 Grant 's own twist 2 +93448 4872 own twist 2 +93449 4872 of acidity 2 +93450 4872 acidity 1 +93451 4872 to prevent itself from succumbing to its own bathos 2 +93452 4872 prevent itself from succumbing to its own bathos 2 +93453 4872 prevent itself 2 +93454 4872 from succumbing to its own bathos 2 +93455 4872 succumbing to its own bathos 1 +93456 4872 to its own bathos 2 +93457 4872 its own bathos 2 +93458 4872 own bathos 2 +93459 4873 Spielberg 's picture is smarter and subtler than -LRB- Total Recall and Blade Runner -RRB- , although its plot may prove too convoluted for fun-seeking summer audiences . 3 +93460 4873 Spielberg 's picture 2 +93461 4873 is smarter and subtler than -LRB- Total Recall and Blade Runner -RRB- , although its plot may prove too convoluted for fun-seeking summer audiences . 2 +93462 4873 is smarter and subtler than -LRB- Total Recall and Blade Runner -RRB- , although its plot may prove too convoluted for fun-seeking summer audiences 3 +93463 4873 is smarter and subtler than -LRB- Total Recall and Blade Runner -RRB- , 3 +93464 4873 is smarter and subtler than -LRB- Total Recall and Blade Runner -RRB- 2 +93465 4873 is smarter and subtler 3 +93466 4873 smarter and subtler 3 +93467 4873 subtler 2 +93468 4873 than -LRB- Total Recall and Blade Runner -RRB- 2 +93469 4873 -LRB- Total Recall and Blade Runner -RRB- 2 +93470 4873 Total Recall and Blade Runner -RRB- 2 +93471 4873 Total Recall and Blade Runner 2 +93472 4873 Total Recall and 2 +93473 4873 Total Recall 2 +93474 4873 Blade Runner 2 +93475 4873 although its plot may prove too convoluted for fun-seeking summer audiences 2 +93476 4873 its plot may prove too convoluted for fun-seeking summer audiences 1 +93477 4873 its plot 2 +93478 4873 may prove too convoluted for fun-seeking summer audiences 1 +93479 4873 prove too convoluted for fun-seeking summer audiences 1 +93480 4873 prove too convoluted 1 +93481 4873 too convoluted 1 +93482 4873 for fun-seeking summer audiences 3 +93483 4873 fun-seeking summer audiences 3 +93484 4873 fun-seeking 3 +93485 4873 summer audiences 2 +93486 4874 Chamber of Secrets will find millions of eager fans . 4 +93487 4874 Chamber of Secrets 3 +93488 4874 will find millions of eager fans . 3 +93489 4874 will find millions of eager fans 4 +93490 4874 find millions of eager fans 3 +93491 4874 millions of eager fans 4 +93492 4874 of eager fans 3 +93493 4874 eager fans 3 +93494 4875 An instantly forgettable snow-and-stuntwork extravaganza that likely will be upstaged by an avalanche of more appealing holiday-season product . 1 +93495 4875 An instantly forgettable snow-and-stuntwork extravaganza that likely 1 +93496 4875 An instantly forgettable snow-and-stuntwork extravaganza 1 +93497 4875 instantly forgettable snow-and-stuntwork extravaganza 1 +93498 4875 snow-and-stuntwork extravaganza 3 +93499 4875 snow-and-stuntwork 2 +93500 4875 that likely 3 +93501 4875 will be upstaged by an avalanche of more appealing holiday-season product . 2 +93502 4875 will be upstaged by an avalanche of more appealing holiday-season product 1 +93503 4875 be upstaged by an avalanche of more appealing holiday-season product 2 +93504 4875 upstaged by an avalanche of more appealing holiday-season product 3 +93505 4875 upstaged 2 +93506 4875 by an avalanche of more appealing holiday-season product 2 +93507 4875 an avalanche of more appealing holiday-season product 3 +93508 4875 an avalanche 2 +93509 4875 avalanche 1 +93510 4875 of more appealing holiday-season product 3 +93511 4875 more appealing holiday-season product 4 +93512 4875 more appealing 3 +93513 4875 holiday-season product 2 +93514 4875 holiday-season 2 +93515 4876 After sitting through this sloppy , made-for-movie comedy special , it makes me wonder if Lawrence hates criticism so much that he refuses to evaluate his own work . 0 +93516 4876 After sitting through this sloppy , made-for-movie comedy special 0 +93517 4876 sitting through this sloppy , made-for-movie comedy special 0 +93518 4876 through this sloppy , made-for-movie comedy special 1 +93519 4876 this sloppy , made-for-movie comedy special 1 +93520 4876 sloppy , made-for-movie comedy special 1 +93521 4876 sloppy , made-for-movie 0 +93522 4876 , made-for-movie 2 +93523 4876 made-for-movie 2 +93524 4876 comedy special 3 +93525 4876 , it makes me wonder if Lawrence hates criticism so much that he refuses to evaluate his own work . 1 +93526 4876 it makes me wonder if Lawrence hates criticism so much that he refuses to evaluate his own work . 1 +93527 4876 makes me wonder if Lawrence hates criticism so much that he refuses to evaluate his own work . 2 +93528 4876 makes me wonder if Lawrence hates criticism so much that he refuses to evaluate his own work 1 +93529 4876 me wonder if Lawrence hates criticism so much that he refuses to evaluate his own work 0 +93530 4876 wonder if Lawrence hates criticism so much that he refuses to evaluate his own work 1 +93531 4876 if Lawrence hates criticism so much that he refuses to evaluate his own work 2 +93532 4876 Lawrence hates criticism so much that he refuses to evaluate his own work 1 +93533 4876 hates criticism so much that he refuses to evaluate his own work 1 +93534 4876 hates criticism 2 +93535 4876 so much that he refuses to evaluate his own work 1 +93536 4876 that he refuses to evaluate his own work 1 +93537 4876 he refuses to evaluate his own work 1 +93538 4876 refuses to evaluate his own work 1 +93539 4876 to evaluate his own work 2 +93540 4876 evaluate his own work 2 +93541 4876 his own work 2 +93542 4877 A chick flick for guys . 2 +93543 4877 flick for guys . 2 +93544 4877 flick for guys 2 +93545 4877 for guys 2 +93546 4878 If you 've the patience , there are great rewards here . 3 +93547 4878 If you 've the patience 2 +93548 4878 you 've the patience 2 +93549 4878 've the patience 2 +93550 4878 , there are great rewards here . 3 +93551 4878 there are great rewards here . 3 +93552 4878 are great rewards here . 3 +93553 4878 are great rewards here 3 +93554 4878 are great rewards 3 +93555 4878 great rewards 4 +93556 4879 Among the many pleasures are the lively intelligence of the artists and their perceptiveness about their own situations . 3 +93557 4879 Among the many pleasures 3 +93558 4879 the many pleasures 2 +93559 4879 many pleasures 3 +93560 4879 are the lively intelligence of the artists and their perceptiveness about their own situations . 3 +93561 4879 are the lively intelligence of the artists and their perceptiveness about their own situations 3 +93562 4879 the lively intelligence of the artists and their perceptiveness about their own situations 4 +93563 4879 the lively intelligence of the artists and 3 +93564 4879 the lively intelligence of the artists 3 +93565 4879 the lively intelligence 3 +93566 4879 lively intelligence 3 +93567 4879 of the artists 2 +93568 4879 the artists 2 +93569 4879 their perceptiveness about their own situations 3 +93570 4879 their perceptiveness 2 +93571 4879 perceptiveness 2 +93572 4879 about their own situations 2 +93573 4879 their own situations 2 +93574 4879 own situations 2 +93575 4880 The film reminds me of a vastly improved Germanic version of My Big Fat Greek Wedding -- with better characters , some genuine quirkiness and at least a measure of style . 3 +93576 4880 reminds me of a vastly improved Germanic version of My Big Fat Greek Wedding -- with better characters , some genuine quirkiness and at least a measure of style . 3 +93577 4880 reminds me of a vastly improved Germanic version of My Big Fat Greek Wedding -- with better characters , some genuine quirkiness and at least a measure of style 3 +93578 4880 reminds me of a vastly improved Germanic version of My Big Fat Greek Wedding -- 4 +93579 4880 reminds me of a vastly improved Germanic version of My Big Fat Greek Wedding 3 +93580 4880 reminds me 2 +93581 4880 of a vastly improved Germanic version of My Big Fat Greek Wedding 3 +93582 4880 a vastly improved Germanic version of My Big Fat Greek Wedding 3 +93583 4880 a vastly improved Germanic version 4 +93584 4880 vastly improved Germanic version 3 +93585 4880 vastly improved 3 +93586 4880 vastly 2 +93587 4880 Germanic version 2 +93588 4880 Germanic 2 +93589 4880 of My Big Fat Greek Wedding 2 +93590 4880 with better characters , some genuine quirkiness and at least a measure of style 3 +93591 4880 better characters , some genuine quirkiness and at least a measure of style 3 +93592 4880 better characters , some genuine quirkiness and at least 3 +93593 4880 better characters , some genuine quirkiness and 3 +93594 4880 better characters , some genuine quirkiness 2 +93595 4880 better characters , 3 +93596 4880 better characters 3 +93597 4880 some genuine quirkiness 3 +93598 4880 genuine quirkiness 3 +93599 4880 a measure of style 3 +93600 4880 of style 2 +93601 4881 Harvard Man is a semi-throwback , a reminiscence without nostalgia or sentimentality . 2 +93602 4881 is a semi-throwback , a reminiscence without nostalgia or sentimentality . 2 +93603 4881 is a semi-throwback , a reminiscence without nostalgia or sentimentality 1 +93604 4881 a semi-throwback , a reminiscence without nostalgia or sentimentality 1 +93605 4881 a semi-throwback , 2 +93606 4881 a semi-throwback 2 +93607 4881 semi-throwback 2 +93608 4881 a reminiscence without nostalgia or sentimentality 1 +93609 4881 a reminiscence 2 +93610 4881 reminiscence 2 +93611 4881 without nostalgia or sentimentality 2 +93612 4881 nostalgia or sentimentality 2 +93613 4881 nostalgia or 2 +93614 4882 Diaz , Applegate , Blair and Posey are suitably kooky which should appeal to women and they strip down often enough to keep men alert , if not amused . 3 +93615 4882 Diaz , Applegate , Blair and Posey 2 +93616 4882 Diaz 2 +93617 4882 , Applegate , Blair and Posey 2 +93618 4882 Applegate , Blair and Posey 2 +93619 4882 Applegate 2 +93620 4882 , Blair and Posey 2 +93621 4882 Blair and Posey 2 +93622 4882 Blair and 2 +93623 4882 Posey 3 +93624 4882 are suitably kooky which should appeal to women and they strip down often enough to keep men alert , if not amused . 2 +93625 4882 are suitably kooky which should appeal to women and they strip down often enough to keep men alert , if not amused 2 +93626 4882 suitably kooky which should appeal to women and they strip down often enough to keep men alert , if not amused 3 +93627 4882 suitably kooky which should appeal to women and 3 +93628 4882 suitably kooky which should appeal to women 3 +93629 4882 kooky which should appeal to women 3 +93630 4882 which should appeal to women 3 +93631 4882 should appeal to women 3 +93632 4882 appeal to women 3 +93633 4882 to women 2 +93634 4882 they strip down often enough to keep men alert , if not amused 1 +93635 4882 they strip down often enough to keep men 2 +93636 4882 strip down often enough to keep men 2 +93637 4882 strip down 2 +93638 4882 strip 2 +93639 4882 often enough to keep men 2 +93640 4882 enough to keep men 3 +93641 4882 to keep men 2 +93642 4882 keep men 2 +93643 4882 alert , if not amused 2 +93644 4882 alert , if not 3 +93645 4882 alert , 2 +93646 4883 Plotless collection of moronic stunts is by far the worst movie of the year . 0 +93647 4883 Plotless collection of moronic stunts 0 +93648 4883 Plotless collection 1 +93649 4883 of moronic stunts 1 +93650 4883 moronic stunts 2 +93651 4883 is by far the worst movie of the year . 0 +93652 4883 is by far the worst movie of the year 1 +93653 4883 by far the worst movie of the year 0 +93654 4883 far the worst movie of the year 1 +93655 4883 far the worst movie 0 +93656 4884 It all plays out ... like a high-end John Hughes comedy , a kind of Elder Bueller 's Time Out . 3 +93657 4884 all plays out ... like a high-end John Hughes comedy , a kind of Elder Bueller 's Time Out . 3 +93658 4884 plays out ... like a high-end John Hughes comedy , a kind of Elder Bueller 's Time Out . 3 +93659 4884 plays out ... like a high-end John Hughes comedy , a kind of Elder Bueller 's Time Out 4 +93660 4884 plays out ... 2 +93661 4884 plays out 2 +93662 4884 like a high-end John Hughes comedy , a kind of Elder Bueller 's Time Out 3 +93663 4884 a high-end John Hughes comedy , a kind of Elder Bueller 's Time Out 3 +93664 4884 a high-end John Hughes comedy , 4 +93665 4884 a high-end John Hughes comedy 4 +93666 4884 high-end John Hughes comedy 2 +93667 4884 high-end 2 +93668 4884 John Hughes comedy 3 +93669 4884 Hughes comedy 3 +93670 4884 Hughes 2 +93671 4884 a kind of Elder Bueller 's Time Out 2 +93672 4884 of Elder Bueller 's Time Out 2 +93673 4884 Elder Bueller 's Time Out 2 +93674 4884 Elder Bueller 's 2 +93675 4884 Elder 2 +93676 4884 Bueller 's 2 +93677 4885 A smug and convoluted action-comedy that does n't allow an earnest moment to pass without reminding audiences that it 's only a movie . 0 +93678 4885 A smug and convoluted action-comedy that 2 +93679 4885 smug and convoluted action-comedy that 1 +93680 4885 smug and convoluted 0 +93681 4885 action-comedy that 2 +93682 4885 does n't allow an earnest moment to pass without reminding audiences that it 's only a movie . 1 +93683 4885 does n't allow an earnest moment to pass without reminding audiences that it 's only a movie 1 +93684 4885 allow an earnest moment to pass without reminding audiences that it 's only a movie 2 +93685 4885 allow an earnest moment 2 +93686 4885 an earnest moment 3 +93687 4885 earnest moment 3 +93688 4885 to pass without reminding audiences that it 's only a movie 3 +93689 4885 pass without reminding audiences that it 's only a movie 1 +93690 4885 without reminding audiences that it 's only a movie 2 +93691 4885 reminding audiences that it 's only a movie 2 +93692 4885 reminding audiences 2 +93693 4885 reminding 2 +93694 4885 that it 's only a movie 2 +93695 4885 it 's only a movie 2 +93696 4885 's only a movie 2 +93697 4886 Love Liza is a festival film that would have been better off staying on the festival circuit . 1 +93698 4886 is a festival film that would have been better off staying on the festival circuit . 1 +93699 4886 is a festival film that would have been better off staying on the festival circuit 1 +93700 4886 a festival film that would have been better off staying on the festival circuit 1 +93701 4886 a festival film 2 +93702 4886 festival film 2 +93703 4886 that would have been better off staying on the festival circuit 1 +93704 4886 would have been better off staying on the festival circuit 1 +93705 4886 have been better off staying on the festival circuit 1 +93706 4886 been better off staying on the festival circuit 2 +93707 4886 better off staying on the festival circuit 0 +93708 4886 better off 2 +93709 4886 staying on the festival circuit 2 +93710 4886 on the festival circuit 2 +93711 4886 the festival circuit 2 +93712 4886 festival circuit 2 +93713 4887 Simple , poignant and leavened with humor , it 's a film that affirms the nourishing aspects of love and companionship . 3 +93714 4887 Simple , poignant and leavened with humor 3 +93715 4887 Simple , poignant and leavened 3 +93716 4887 , poignant and leavened 3 +93717 4887 poignant and leavened 3 +93718 4887 with humor 3 +93719 4887 , it 's a film that affirms the nourishing aspects of love and companionship . 4 +93720 4887 it 's a film that affirms the nourishing aspects of love and companionship . 4 +93721 4887 's a film that affirms the nourishing aspects of love and companionship . 4 +93722 4887 's a film that affirms the nourishing aspects of love and companionship 3 +93723 4887 a film that affirms the nourishing aspects of love and companionship 4 +93724 4887 that affirms the nourishing aspects of love and companionship 4 +93725 4887 affirms the nourishing aspects of love and companionship 3 +93726 4887 the nourishing aspects of love and companionship 3 +93727 4887 the nourishing aspects 2 +93728 4887 nourishing aspects 3 +93729 4887 of love and companionship 3 +93730 4887 love and companionship 2 +93731 4887 companionship 3 +93732 4888 Presents a good case while failing to provide a reason for us to care beyond the very basic dictums of human decency . 2 +93733 4888 Presents a good case while failing to provide a reason for us to care beyond the very basic dictums of human decency 1 +93734 4888 a good case while failing to provide a reason for us to care beyond the very basic dictums of human decency 1 +93735 4888 a good case while 2 +93736 4888 good case while 2 +93737 4888 case while 3 +93738 4888 failing to provide a reason for us to care beyond the very basic dictums of human decency 2 +93739 4888 to provide a reason for us to care beyond the very basic dictums of human decency 2 +93740 4888 provide a reason for us to care beyond the very basic dictums of human decency 1 +93741 4888 provide a reason for us 2 +93742 4888 a reason for us 2 +93743 4888 a reason 2 +93744 4888 for us 3 +93745 4888 to care beyond the very basic dictums of human decency 2 +93746 4888 care beyond the very basic dictums of human decency 2 +93747 4888 beyond the very basic dictums of human decency 1 +93748 4888 the very basic dictums of human decency 2 +93749 4888 the very basic dictums 1 +93750 4888 very basic dictums 2 +93751 4888 very basic 1 +93752 4888 dictums 3 +93753 4888 of human decency 2 +93754 4888 human decency 2 +93755 4889 This seductive tease of a thriller gets the job done . 3 +93756 4889 This seductive tease of a thriller 3 +93757 4889 This seductive tease 3 +93758 4889 seductive tease 2 +93759 4889 tease 2 +93760 4889 of a thriller 2 +93761 4889 gets the job done . 3 +93762 4890 The movie is ingenious fun . 4 +93763 4890 is ingenious fun . 4 +93764 4890 is ingenious fun 3 +93765 4890 ingenious fun 4 +93766 4891 Noyce creates a film of near-hypnotic physical beauty even as he tells a story as horrifying as any in the heart-breakingly extensive annals of white-on-black racism . 2 +93767 4891 creates a film of near-hypnotic physical beauty even as he tells a story as horrifying as any in the heart-breakingly extensive annals of white-on-black racism . 4 +93768 4891 creates a film of near-hypnotic physical beauty even as he tells a story as horrifying as any in the heart-breakingly extensive annals of white-on-black racism 4 +93769 4891 creates a film of near-hypnotic physical beauty 4 +93770 4891 a film of near-hypnotic physical beauty 3 +93771 4891 of near-hypnotic physical beauty 4 +93772 4891 near-hypnotic physical beauty 3 +93773 4891 near-hypnotic 2 +93774 4891 physical beauty 3 +93775 4891 even as he tells a story as horrifying as any in the heart-breakingly extensive annals of white-on-black racism 2 +93776 4891 as he tells a story as horrifying as any in the heart-breakingly extensive annals of white-on-black racism 2 +93777 4891 he tells a story as horrifying as any in the heart-breakingly extensive annals of white-on-black racism 2 +93778 4891 tells a story as horrifying as any in the heart-breakingly extensive annals of white-on-black racism 2 +93779 4891 tells a story 3 +93780 4891 as horrifying as any in the heart-breakingly extensive annals of white-on-black racism 2 +93781 4891 horrifying as any in the heart-breakingly extensive annals of white-on-black racism 2 +93782 4891 as any in the heart-breakingly extensive annals of white-on-black racism 1 +93783 4891 any in the heart-breakingly extensive annals of white-on-black racism 2 +93784 4891 in the heart-breakingly extensive annals of white-on-black racism 2 +93785 4891 the heart-breakingly extensive annals of white-on-black racism 2 +93786 4891 the heart-breakingly extensive annals 2 +93787 4891 heart-breakingly extensive annals 1 +93788 4891 heart-breakingly 2 +93789 4891 extensive annals 2 +93790 4891 of white-on-black racism 2 +93791 4891 white-on-black racism 1 +93792 4891 white-on-black 2 +93793 4892 It 's a fanboy ` what if ? ' 2 +93794 4892 's a fanboy ` what if ? ' 2 +93795 4892 's a fanboy ` what if ? 2 +93796 4892 's a fanboy ` what if 2 +93797 4892 a fanboy ` what if 2 +93798 4892 fanboy ` what if 2 +93799 4892 fanboy 2 +93800 4892 ` what if 2 +93801 4892 what if 2 +93802 4893 Melds derivative elements into something that is often quite rich and exciting , and always a beauty to behold . 4 +93803 4893 Melds derivative elements into something that is often quite rich and exciting , and always a beauty to behold 3 +93804 4893 Melds 2 +93805 4893 derivative elements into something that is often quite rich and exciting , and always a beauty to behold 4 +93806 4893 derivative elements into something that is often quite rich and exciting , and always 3 +93807 4893 derivative elements into something that is often quite rich and exciting , and 4 +93808 4893 derivative elements into something that is often quite rich and exciting , 3 +93809 4893 derivative elements into something that is often quite rich and exciting 4 +93810 4893 derivative elements into something 2 +93811 4893 derivative elements 2 +93812 4893 that is often quite rich and exciting 4 +93813 4893 is often quite rich and exciting 4 +93814 4893 quite rich and exciting 4 +93815 4893 rich and exciting 3 +93816 4893 a beauty to behold 4 +93817 4893 beauty to behold 3 +93818 4894 As plain and pedestrian as catsup -- 0 +93819 4894 As plain and pedestrian as catsup 0 +93820 4894 As plain and pedestrian as 1 +93821 4894 As plain and 2 +93822 4894 As plain 2 +93823 4894 catsup 2 +93824 4895 ` Like a child with an important message to tell ... -LRB- Skins ' -RRB- faults are easy to forgive because the intentions are lofty . ' 2 +93825 4895 Like a child with an important message to tell ... -LRB- Skins ' -RRB- faults are easy to forgive because the intentions are lofty . ' 2 +93826 4895 Like a child with an important message to tell ... -LRB- Skins ' -RRB- faults are easy to forgive because the intentions are lofty . 3 +93827 4895 Like a child with an important message to tell ... -LRB- Skins ' -RRB- faults are easy to forgive because the intentions are lofty 2 +93828 4895 Like a child with an important message to tell ... 3 +93829 4895 Like a child with an important message to tell 3 +93830 4895 a child with an important message to tell 3 +93831 4895 a child 2 +93832 4895 with an important message to tell 3 +93833 4895 an important message to tell 3 +93834 4895 important message to tell 3 +93835 4895 message to tell 2 +93836 4895 -LRB- Skins ' -RRB- faults are easy to forgive because the intentions are lofty 3 +93837 4895 Skins ' -RRB- faults are easy to forgive because the intentions are lofty 3 +93838 4895 Skins ' 2 +93839 4895 -RRB- faults are easy to forgive because the intentions are lofty 3 +93840 4895 faults are easy to forgive because the intentions are lofty 3 +93841 4895 are easy to forgive because the intentions are lofty 3 +93842 4895 easy to forgive because the intentions are lofty 2 +93843 4895 to forgive because the intentions are lofty 2 +93844 4895 forgive because the intentions are lofty 2 +93845 4895 because the intentions are lofty 2 +93846 4895 the intentions are lofty 3 +93847 4895 the intentions 2 +93848 4895 are lofty 2 +93849 4896 It is n't that Stealing Harvard is a horrible movie -- if only it were that grand a failure ! 0 +93850 4896 is n't that Stealing Harvard is a horrible movie -- if only it were that grand a failure ! 0 +93851 4896 is n't that Stealing Harvard is a horrible movie -- if only it were that grand a failure 1 +93852 4896 that Stealing Harvard is a horrible movie -- if only it were that grand a failure 0 +93853 4896 Stealing Harvard is a horrible movie -- if only it were that grand a failure 0 +93854 4896 is a horrible movie -- if only it were that grand a failure 0 +93855 4896 is a horrible movie -- 0 +93856 4896 is a horrible movie 0 +93857 4896 a horrible movie 0 +93858 4896 horrible movie 0 +93859 4896 if only it were that grand a failure 1 +93860 4896 it were that grand a failure 0 +93861 4896 were that grand a failure 1 +93862 4896 that grand a failure 0 +93863 4896 grand a failure 0 +93864 4897 When your subject is illusion versus reality , should n't the reality seem at least passably real ? 1 +93865 4897 When your subject is illusion versus reality 2 +93866 4897 your subject is illusion versus reality 2 +93867 4897 your subject 2 +93868 4897 is illusion versus reality 2 +93869 4897 illusion versus reality 2 +93870 4897 versus reality 2 +93871 4897 , should n't the reality seem at least passably real ? 1 +93872 4897 should n't the reality seem at least passably real ? 2 +93873 4897 should n't the reality seem at least passably real 1 +93874 4897 should n't the reality 2 +93875 4897 seem at least passably real 3 +93876 4897 at least passably real 3 +93877 4897 at least passably 3 +93878 4898 This is the kind of movie that gets a quick release before real contenders arrive in September . 0 +93879 4898 is the kind of movie that gets a quick release before real contenders arrive in September . 1 +93880 4898 is the kind of movie that gets a quick release before real contenders arrive in September 1 +93881 4898 the kind of movie that gets a quick release before real contenders arrive in September 2 +93882 4898 that gets a quick release before real contenders arrive in September 1 +93883 4898 gets a quick release before real contenders arrive in September 2 +93884 4898 gets a quick release 2 +93885 4898 a quick release 2 +93886 4898 quick release 2 +93887 4898 before real contenders arrive in September 2 +93888 4898 real contenders arrive in September 2 +93889 4898 real contenders 3 +93890 4898 contenders 3 +93891 4898 arrive in September 2 +93892 4898 in September 2 +93893 4898 September 2 +93894 4899 For devotees of French cinema , Safe Conduct is so rich with period minutiae it 's like dying and going to celluloid heaven . 4 +93895 4899 For devotees of French cinema 3 +93896 4899 devotees of French cinema 2 +93897 4899 devotees 2 +93898 4899 of French cinema 2 +93899 4899 , Safe Conduct is so rich with period minutiae it 's like dying and going to celluloid heaven . 3 +93900 4899 Safe Conduct is so rich with period minutiae it 's like dying and going to celluloid heaven . 3 +93901 4899 is so rich with period minutiae it 's like dying and going to celluloid heaven . 4 +93902 4899 is so rich with period minutiae it 's like dying and going to celluloid heaven 4 +93903 4899 is so rich with period minutiae 3 +93904 4899 so rich with period minutiae 3 +93905 4899 rich with period minutiae 3 +93906 4899 with period minutiae 2 +93907 4899 period minutiae 2 +93908 4899 minutiae 2 +93909 4899 it 's like dying and going to celluloid heaven 3 +93910 4899 's like dying and going to celluloid heaven 4 +93911 4899 like dying and going to celluloid heaven 2 +93912 4899 dying and going to celluloid heaven 2 +93913 4899 dying and going 1 +93914 4899 dying and 1 +93915 4899 to celluloid heaven 2 +93916 4899 celluloid heaven 3 +93917 4900 You can see the would-be surprises coming a mile away , and the execution of these twists is delivered with a hammer . 2 +93918 4900 You can see the would-be surprises coming a mile away , and the execution of these twists is delivered with a hammer 1 +93919 4900 You can see the would-be surprises coming a mile away , and 1 +93920 4900 You can see the would-be surprises coming a mile away , 2 +93921 4900 You can see the would-be surprises coming a mile away 1 +93922 4900 can see the would-be surprises coming a mile away 1 +93923 4900 see the would-be surprises coming a mile away 1 +93924 4900 the would-be surprises coming a mile away 1 +93925 4900 the would-be surprises 2 +93926 4900 would-be surprises 2 +93927 4900 the execution of these twists is delivered with a hammer 2 +93928 4900 the execution of these twists 2 +93929 4900 of these twists 2 +93930 4900 these twists 2 +93931 4900 is delivered with a hammer 2 +93932 4900 delivered with a hammer 2 +93933 4900 with a hammer 2 +93934 4900 a hammer 2 +93935 4900 hammer 2 +93936 4901 If only Merchant paid more attention the story . 1 +93937 4901 If only Merchant paid more attention the story 2 +93938 4901 only Merchant paid more attention the story 2 +93939 4901 only Merchant 2 +93940 4901 paid more attention the story 2 +93941 4901 paid more attention 2 +93942 4902 As the princess , Sorvino glides gracefully from male persona to female without missing a beat . 3 +93943 4902 As the princess 2 +93944 4902 , Sorvino glides gracefully from male persona to female without missing a beat . 4 +93945 4902 Sorvino glides gracefully from male persona to female without missing a beat . 3 +93946 4902 glides gracefully from male persona to female without missing a beat . 4 +93947 4902 glides gracefully from male persona to female without missing a beat 4 +93948 4902 glides gracefully from male persona to female 4 +93949 4902 glides 3 +93950 4902 gracefully from male persona to female 2 +93951 4902 from male persona to female 2 +93952 4902 from male persona 2 +93953 4902 male persona 2 +93954 4902 to female 2 +93955 4902 without missing a beat 2 +93956 4902 missing a beat 1 +93957 4902 a beat 2 +93958 4903 The things this movie tries to get the audience to buy just wo n't fly with most intelligent viewers . 1 +93959 4903 The things this movie tries to get the audience to buy just 1 +93960 4903 this movie tries to get the audience to buy just 2 +93961 4903 tries to get the audience to buy just 2 +93962 4903 to get the audience to buy just 2 +93963 4903 get the audience to buy just 2 +93964 4903 the audience to buy just 2 +93965 4903 audience to buy just 2 +93966 4903 to buy just 2 +93967 4903 buy just 2 +93968 4903 wo n't fly with most intelligent viewers . 1 +93969 4903 wo n't fly with most intelligent viewers 2 +93970 4903 fly with most intelligent viewers 3 +93971 4903 with most intelligent viewers 3 +93972 4903 most intelligent viewers 3 +93973 4903 most intelligent 2 +93974 4904 Though its rather routine script is loaded with familiar situations , the movie has a cinematic fluidity and sense of intelligence that makes it work more than it probably should . 3 +93975 4904 Though its rather routine script is loaded with familiar situations 1 +93976 4904 its rather routine script is loaded with familiar situations 2 +93977 4904 its rather routine script 1 +93978 4904 rather routine script 2 +93979 4904 rather routine 1 +93980 4904 is loaded with familiar situations 2 +93981 4904 loaded with familiar situations 2 +93982 4904 with familiar situations 2 +93983 4904 , the movie has a cinematic fluidity and sense of intelligence that makes it work more than it probably should . 3 +93984 4904 the movie has a cinematic fluidity and sense of intelligence that makes it work more than it probably should . 3 +93985 4904 has a cinematic fluidity and sense of intelligence that makes it work more than it probably should . 4 +93986 4904 has a cinematic fluidity and sense of intelligence that makes it work more than it probably should 3 +93987 4904 a cinematic fluidity and sense of intelligence that makes it work more than it probably should 3 +93988 4904 a cinematic fluidity and sense of intelligence 4 +93989 4904 a cinematic fluidity and sense 3 +93990 4904 cinematic fluidity and sense 3 +93991 4904 fluidity and sense 3 +93992 4904 fluidity and 2 +93993 4904 fluidity 2 +93994 4904 that makes it work more than it probably should 2 +93995 4904 makes it work more than it probably should 3 +93996 4904 it work more than it probably should 2 +93997 4904 work more than it probably should 1 +93998 4904 more than it probably should 2 +93999 4904 than it probably should 2 +94000 4904 it probably should 2 +94001 4904 probably should 3 +94002 4905 It 's a brilliant , honest performance by Nicholson , but the film is an agonizing bore except when the fantastic Kathy Bates turns up . 2 +94003 4905 It 's a brilliant , honest performance by Nicholson , but the film is an agonizing bore except when the fantastic Kathy Bates turns up 2 +94004 4905 It 's a brilliant , honest performance by Nicholson , but 3 +94005 4905 It 's a brilliant , honest performance by Nicholson , 4 +94006 4905 It 's a brilliant , honest performance by Nicholson 4 +94007 4905 's a brilliant , honest performance by Nicholson 4 +94008 4905 a brilliant , honest performance by Nicholson 4 +94009 4905 a brilliant , honest performance 4 +94010 4905 brilliant , honest performance 4 +94011 4905 , honest performance 3 +94012 4905 honest performance 4 +94013 4905 by Nicholson 2 +94014 4905 the film is an agonizing bore except when the fantastic Kathy Bates turns up 1 +94015 4905 is an agonizing bore except when the fantastic Kathy Bates turns up 0 +94016 4905 an agonizing bore except when the fantastic Kathy Bates turns up 2 +94017 4905 an agonizing bore 0 +94018 4905 agonizing bore 0 +94019 4905 agonizing 0 +94020 4905 except when the fantastic Kathy Bates turns up 3 +94021 4905 when the fantastic Kathy Bates turns up 3 +94022 4905 the fantastic Kathy Bates turns up 4 +94023 4905 the fantastic Kathy Bates 3 +94024 4905 fantastic Kathy Bates 3 +94025 4905 Kathy Bates 2 +94026 4905 Bates 2 +94027 4905 turns up 2 +94028 4906 cynical and serious look at teenage boys doing what they do best - being teenagers . 2 +94029 4906 cynical and serious 2 +94030 4906 cynical and 2 +94031 4906 look at teenage boys doing what they do best - being teenagers . 3 +94032 4906 look at teenage boys doing what they do best - being teenagers 2 +94033 4906 look at teenage boys 2 +94034 4906 at teenage boys 2 +94035 4906 doing what they do best - being teenagers 2 +94036 4906 what they do best - being teenagers 2 +94037 4906 they do best - being teenagers 3 +94038 4906 do best - being teenagers 2 +94039 4906 do best - 3 +94040 4906 do best 2 +94041 4906 being teenagers 2 +94042 4907 This is for the most part a useless movie , even with a great director at the helm . 1 +94043 4907 is for the most part a useless movie , even with a great director at the helm . 1 +94044 4907 is for the most part a useless movie , even with a great director at the helm 2 +94045 4907 for the most part a useless movie , even with a great director at the helm 0 +94046 4907 the most part a useless movie , even with a great director at the helm 1 +94047 4907 the most part a useless movie , even with 0 +94048 4907 the most part a useless movie , even 1 +94049 4907 the most part a useless movie , 0 +94050 4907 the most part a useless movie 1 +94051 4907 a useless movie 0 +94052 4907 useless movie 0 +94053 4907 a great director at the helm 3 +94054 4907 a great director 3 +94055 4907 great director 4 +94056 4907 at the helm 3 +94057 4907 the helm 2 +94058 4907 helm 2 +94059 4908 Mr. Deeds is not really a film as much as it is a loose collection of not-so-funny gags , scattered moments of lazy humor . 0 +94060 4908 is not really a film as much as it is a loose collection of not-so-funny gags , scattered moments of lazy humor . 0 +94061 4908 is not really a film as much as it is a loose collection of not-so-funny gags , scattered moments of lazy humor 0 +94062 4908 is not really a film as much 2 +94063 4908 is not really 2 +94064 4908 a film as much 2 +94065 4908 as it is a loose collection of not-so-funny gags , scattered moments of lazy humor 1 +94066 4908 it is a loose collection of not-so-funny gags , scattered moments of lazy humor 1 +94067 4908 is a loose collection of not-so-funny gags , scattered moments of lazy humor 1 +94068 4908 a loose collection of not-so-funny gags , scattered moments of lazy humor 1 +94069 4908 a loose collection 1 +94070 4908 loose collection 2 +94071 4908 of not-so-funny gags , scattered moments of lazy humor 2 +94072 4908 not-so-funny gags , scattered moments of lazy humor 1 +94073 4908 not-so-funny gags , 1 +94074 4908 not-so-funny gags 1 +94075 4908 not-so-funny 0 +94076 4908 scattered moments of lazy humor 2 +94077 4908 scattered moments 2 +94078 4908 of lazy humor 3 +94079 4908 lazy humor 2 +94080 4909 Secretary manages a neat trick , bundling the flowers of perversity , comedy and romance into a strangely tempting bouquet of a movie . 4 +94081 4909 manages a neat trick , bundling the flowers of perversity , comedy and romance into a strangely tempting bouquet of a movie . 3 +94082 4909 manages a neat trick , bundling the flowers of perversity , comedy and romance into a strangely tempting bouquet of a movie 3 +94083 4909 manages a neat trick , 2 +94084 4909 manages a neat trick 3 +94085 4909 a neat trick 3 +94086 4909 neat trick 3 +94087 4909 bundling the flowers of perversity , comedy and romance into a strangely tempting bouquet of a movie 3 +94088 4909 bundling the flowers of perversity , comedy and romance 2 +94089 4909 bundling 2 +94090 4909 the flowers of perversity , comedy and romance 3 +94091 4909 the flowers 2 +94092 4909 flowers 2 +94093 4909 of perversity , comedy and romance 3 +94094 4909 perversity , comedy and romance 2 +94095 4909 , comedy and romance 3 +94096 4909 comedy and romance 2 +94097 4909 into a strangely tempting bouquet of a movie 3 +94098 4909 a strangely tempting bouquet of a movie 3 +94099 4909 a strangely tempting bouquet 3 +94100 4909 strangely tempting bouquet 3 +94101 4909 strangely tempting 3 +94102 4909 bouquet 2 +94103 4910 It 's dull , spiritless , silly and monotonous : an ultra-loud blast of pointless mayhem , going nowhere fast . 0 +94104 4910 's dull , spiritless , silly and monotonous : an ultra-loud blast of pointless mayhem , going nowhere fast . 0 +94105 4910 's dull , spiritless , silly and monotonous : an ultra-loud blast of pointless mayhem , going nowhere fast 0 +94106 4910 's dull , spiritless , silly and monotonous : 2 +94107 4910 's dull , spiritless , silly and monotonous 0 +94108 4910 dull , spiritless , silly and monotonous 0 +94109 4910 , spiritless , silly and monotonous 2 +94110 4910 spiritless , silly and monotonous 0 +94111 4910 spiritless 2 +94112 4910 , silly and monotonous 1 +94113 4910 silly and monotonous 1 +94114 4910 monotonous 1 +94115 4910 an ultra-loud blast of pointless mayhem , going nowhere fast 1 +94116 4910 an ultra-loud blast of pointless mayhem , 0 +94117 4910 an ultra-loud blast of pointless mayhem 1 +94118 4910 an ultra-loud blast 3 +94119 4910 ultra-loud blast 2 +94120 4910 ultra-loud 2 +94121 4910 of pointless mayhem 1 +94122 4910 pointless mayhem 1 +94123 4910 going nowhere fast 0 +94124 4910 nowhere fast 1 +94125 4911 Yet another weepy Southern bore-athon . 2 +94126 4911 another weepy Southern bore-athon . 0 +94127 4911 weepy Southern bore-athon . 0 +94128 4911 Southern bore-athon . 1 +94129 4911 bore-athon . 0 +94130 4911 bore-athon 1 +94131 4912 It 's actually pretty funny , but in all the wrong places . 2 +94132 4912 's actually pretty funny , but in all the wrong places . 1 +94133 4912 's actually pretty funny , but in all the wrong places 1 +94134 4912 's actually pretty funny , but 3 +94135 4912 's actually pretty funny , 3 +94136 4912 's actually pretty funny 3 +94137 4912 in all the wrong places 1 +94138 4912 all the wrong places 1 +94139 4912 the wrong places 2 +94140 4912 wrong places 1 +94141 4913 Madonna has made herself over so often now , there 's apparently nothing left to work with , sort of like Michael Jackson 's nose . 0 +94142 4913 Madonna has made herself over so often now 2 +94143 4913 has made herself over so often now 2 +94144 4913 made herself over so often now 2 +94145 4913 made herself 2 +94146 4913 over so often now 2 +94147 4913 so often now 2 +94148 4913 often now 2 +94149 4913 , there 's apparently nothing left to work with , sort of like Michael Jackson 's nose . 1 +94150 4913 there 's apparently nothing left to work with , sort of like Michael Jackson 's nose . 0 +94151 4913 's apparently nothing left to work with , sort of like Michael Jackson 's nose . 1 +94152 4913 's apparently nothing left to work with , sort of like Michael Jackson 's nose 0 +94153 4913 's apparently 2 +94154 4913 nothing left to work with , sort of like Michael Jackson 's nose 1 +94155 4913 left to work with , sort of like Michael Jackson 's nose 1 +94156 4913 to work with , sort of like Michael Jackson 's nose 1 +94157 4913 work with , sort of like Michael Jackson 's nose 1 +94158 4913 work with , 2 +94159 4913 work with 2 +94160 4913 sort of like Michael Jackson 's nose 2 +94161 4913 like Michael Jackson 's nose 2 +94162 4913 Michael Jackson 's nose 2 +94163 4913 Michael Jackson 's 2 +94164 4914 Bottom-rung New Jack City wannabe . 1 +94165 4914 Bottom-rung New Jack City 1 +94166 4914 Bottom-rung 1 +94167 4914 New Jack City 2 +94168 4914 Jack City 2 +94169 4914 wannabe . 1 +94170 4915 There is a general air of exuberance in All About The Benjamins that 's hard to resist . 3 +94171 4915 is a general air of exuberance in All About The Benjamins that 's hard to resist . 3 +94172 4915 is a general air of exuberance in All About The Benjamins that 's hard to resist 3 +94173 4915 is a general air of exuberance in All 2 +94174 4915 a general air of exuberance in All 2 +94175 4915 a general air 2 +94176 4915 of exuberance in All 2 +94177 4915 exuberance in All 3 +94178 4915 About The Benjamins that 's hard to resist 3 +94179 4915 The Benjamins that 's hard to resist 3 +94180 4915 that 's hard to resist 3 +94181 4915 's hard to resist 3 +94182 4915 hard to resist 3 +94183 4916 There is a certain sense of experimentation and improvisation to this film that may not always work , but it is nevertheless compelling . 3 +94184 4916 There is a certain sense of experimentation and improvisation to this film that may not always work , but it is nevertheless compelling 3 +94185 4916 There is a certain sense of experimentation and improvisation to this film that may not always work , but 1 +94186 4916 There is a certain sense of experimentation and improvisation to this film that may not always work , 1 +94187 4916 There is a certain sense of experimentation and improvisation to this film that may not always work 1 +94188 4916 is a certain sense of experimentation and improvisation to this film that may not always work 1 +94189 4916 a certain sense of experimentation and improvisation to this film that may not always work 1 +94190 4916 a certain sense of experimentation and improvisation 3 +94191 4916 a certain sense 2 +94192 4916 certain sense 2 +94193 4916 of experimentation and improvisation 2 +94194 4916 experimentation and improvisation 3 +94195 4916 experimentation and 2 +94196 4916 experimentation 2 +94197 4916 to this film that may not always work 1 +94198 4916 this film that may not always work 1 +94199 4916 that may not always work 1 +94200 4916 may not always work 1 +94201 4916 may not always 2 +94202 4916 it is nevertheless compelling 3 +94203 4916 is nevertheless compelling 3 +94204 4917 The film is a masterpiece of nuance and characterization , marred only by an inexplicable , utterly distracting blunder at the very end . 2 +94205 4917 is a masterpiece of nuance and characterization , marred only by an inexplicable , utterly distracting blunder at the very end . 3 +94206 4917 is a masterpiece of nuance and characterization , marred only by an inexplicable , utterly distracting blunder at the very end 2 +94207 4917 a masterpiece of nuance and characterization , marred only by an inexplicable , utterly distracting blunder at the very end 2 +94208 4917 a masterpiece of nuance and characterization , 4 +94209 4917 a masterpiece of nuance and characterization 4 +94210 4917 of nuance and characterization 3 +94211 4917 nuance and characterization 2 +94212 4917 nuance and 2 +94213 4917 marred only by an inexplicable , utterly distracting blunder at the very end 1 +94214 4917 marred only 2 +94215 4917 marred 1 +94216 4917 by an inexplicable , utterly distracting blunder at the very end 1 +94217 4917 an inexplicable , utterly distracting blunder at the very end 0 +94218 4917 an inexplicable , utterly distracting blunder 2 +94219 4917 inexplicable , utterly distracting blunder 1 +94220 4917 , utterly distracting blunder 1 +94221 4917 utterly distracting blunder 0 +94222 4917 utterly distracting 1 +94223 4917 blunder 1 +94224 4917 at the very end 2 +94225 4917 the very end 2 +94226 4917 very end 2 +94227 4918 Playfully profound ... and crazier than Michael Jackson on the top floor of a skyscraper nursery surrounded by open windows . 3 +94228 4918 Playfully profound ... and crazier than Michael Jackson on the top floor of a skyscraper nursery 3 +94229 4918 Playfully profound ... and crazier than Michael Jackson on the top floor of a skyscraper 3 +94230 4918 Playfully profound ... and 3 +94231 4918 Playfully profound ... 4 +94232 4918 Playfully profound 3 +94233 4918 Playfully 3 +94234 4918 crazier than Michael Jackson on the top floor of a skyscraper 2 +94235 4918 crazier 2 +94236 4918 than Michael Jackson on the top floor of a skyscraper 2 +94237 4918 Michael Jackson on the top floor of a skyscraper 2 +94238 4918 Michael Jackson 2 +94239 4918 on the top floor of a skyscraper 2 +94240 4918 the top floor of a skyscraper 2 +94241 4918 the top floor 2 +94242 4918 top floor 2 +94243 4918 of a skyscraper 2 +94244 4918 a skyscraper 3 +94245 4918 skyscraper 2 +94246 4918 nursery 2 +94247 4918 surrounded by open windows . 2 +94248 4918 surrounded by open windows 3 +94249 4918 by open windows 2 +94250 4918 open windows 3 +94251 4919 -LRB- Gosling 's -RRB- combination of explosive physical energy and convincing intelligence helps create a complex , unpredictable character . 3 +94252 4919 -LRB- Gosling 's -RRB- combination of explosive physical energy and convincing intelligence 3 +94253 4919 -LRB- Gosling 's -RRB- combination 2 +94254 4919 Gosling 's -RRB- combination 2 +94255 4919 Gosling 's 2 +94256 4919 -RRB- combination 2 +94257 4919 of explosive physical energy and convincing intelligence 4 +94258 4919 explosive physical energy and convincing intelligence 4 +94259 4919 explosive physical energy and 3 +94260 4919 explosive physical energy 3 +94261 4919 physical energy 3 +94262 4919 convincing intelligence 4 +94263 4919 helps create a complex , unpredictable character . 3 +94264 4919 helps create a complex , unpredictable character 3 +94265 4919 create a complex , unpredictable character 3 +94266 4919 a complex , unpredictable character 2 +94267 4919 complex , unpredictable character 4 +94268 4919 , unpredictable character 2 +94269 4919 unpredictable character 1 +94270 4920 Both a beautifully made nature film and a tribute to a woman whose passion for this region and its inhabitants still shines in her quiet blue eyes . 4 +94271 4920 Both a beautifully 3 +94272 4920 made nature film and a tribute to a woman whose passion for this region and its inhabitants still shines in her quiet blue eyes . 3 +94273 4920 made nature film and a tribute to a woman whose passion for this region and its inhabitants still shines in her quiet blue eyes 3 +94274 4920 made nature film and a tribute 3 +94275 4920 nature film and a tribute 3 +94276 4920 nature film and 2 +94277 4920 to a woman whose passion for this region and its inhabitants still shines in her quiet blue eyes 3 +94278 4920 a woman whose passion for this region and its inhabitants still shines in her quiet blue eyes 4 +94279 4920 whose passion for this region and its inhabitants still shines in her quiet blue eyes 2 +94280 4920 whose passion for this region and its inhabitants 2 +94281 4920 whose passion 2 +94282 4920 for this region and its inhabitants 2 +94283 4920 this region and its inhabitants 3 +94284 4920 this region and 3 +94285 4920 this region 2 +94286 4920 its inhabitants 2 +94287 4920 inhabitants 2 +94288 4920 still shines in her quiet blue eyes 3 +94289 4920 shines in her quiet blue eyes 3 +94290 4920 in her quiet blue eyes 2 +94291 4920 her quiet blue eyes 2 +94292 4920 quiet blue eyes 2 +94293 4920 blue eyes 2 +94294 4921 Dense , exhilarating documentary . 3 +94295 4921 Dense , exhilarating documentary 4 +94296 4921 Dense , 2 +94297 4921 exhilarating documentary 4 +94298 4922 Not even Steven Spielberg has dreamed up such blatant and sickening product placement in a movie . 0 +94299 4922 even Steven Spielberg has dreamed up such blatant and sickening product placement in a movie . 0 +94300 4922 Steven Spielberg has dreamed up such blatant and sickening product placement in a movie . 1 +94301 4922 has dreamed up such blatant and sickening product placement in a movie . 1 +94302 4922 has dreamed up such blatant and sickening product placement in a movie 0 +94303 4922 dreamed up such blatant and sickening product placement in a movie 1 +94304 4922 dreamed up such blatant and sickening product placement 1 +94305 4922 dreamed up 3 +94306 4922 dreamed 2 +94307 4922 such blatant and sickening product placement 1 +94308 4922 blatant and sickening product placement 0 +94309 4922 and sickening product placement 1 +94310 4922 sickening product placement 1 +94311 4922 in a movie 2 +94312 4923 As it stands , Crocodile Hunter has the hurried , badly cobbled look of the 1959 Godzilla , which combined scenes of a Japanese monster flick with canned shots of Raymond Burr commenting on the monster 's path of destruction . 1 +94313 4923 , Crocodile Hunter has the hurried , badly cobbled look of the 1959 Godzilla , which combined scenes of a Japanese monster flick with canned shots of Raymond Burr commenting on the monster 's path of destruction . 1 +94314 4923 Crocodile Hunter has the hurried , badly cobbled look of the 1959 Godzilla , which combined scenes of a Japanese monster flick with canned shots of Raymond Burr commenting on the monster 's path of destruction . 0 +94315 4923 Crocodile Hunter 2 +94316 4923 has the hurried , badly cobbled look of the 1959 Godzilla , which combined scenes of a Japanese monster flick with canned shots of Raymond Burr commenting on the monster 's path of destruction . 2 +94317 4923 has the hurried , badly cobbled look of the 1959 Godzilla , which combined scenes of a Japanese monster flick with canned shots of Raymond Burr commenting on the monster 's path of destruction 2 +94318 4923 the hurried , badly cobbled look of the 1959 Godzilla , which combined scenes of a Japanese monster flick with canned shots of Raymond Burr commenting on the monster 's path of destruction 0 +94319 4923 the hurried , badly cobbled look 1 +94320 4923 hurried , badly cobbled look 1 +94321 4923 hurried 2 +94322 4923 , badly cobbled look 1 +94323 4923 badly cobbled look 1 +94324 4923 badly cobbled 1 +94325 4923 of the 1959 Godzilla , which combined scenes of a Japanese monster flick with canned shots of Raymond Burr commenting on the monster 's path of destruction 2 +94326 4923 the 1959 Godzilla , which combined scenes of a Japanese monster flick with canned shots of Raymond Burr commenting on the monster 's path of destruction 2 +94327 4923 the 1959 Godzilla , 2 +94328 4923 the 1959 Godzilla 2 +94329 4923 1959 Godzilla 2 +94330 4923 1959 2 +94331 4923 Godzilla 2 +94332 4923 which combined scenes of a Japanese monster flick with canned shots of Raymond Burr commenting on the monster 's path of destruction 2 +94333 4923 combined scenes of a Japanese monster flick with canned shots of Raymond Burr commenting on the monster 's path of destruction 1 +94334 4923 combined scenes of a Japanese monster 2 +94335 4923 combined scenes 2 +94336 4923 of a Japanese monster 2 +94337 4923 a Japanese monster 2 +94338 4923 Japanese monster 2 +94339 4923 flick with canned shots of Raymond Burr commenting on the monster 's path of destruction 2 +94340 4923 with canned shots of Raymond Burr commenting on the monster 's path of destruction 2 +94341 4923 canned shots of Raymond Burr commenting on the monster 's path of destruction 2 +94342 4923 canned shots 2 +94343 4923 of Raymond Burr commenting on the monster 's path of destruction 2 +94344 4923 Raymond Burr commenting on the monster 's path of destruction 2 +94345 4923 Raymond Burr 2 +94346 4923 Raymond 2 +94347 4923 commenting on the monster 's path of destruction 2 +94348 4923 commenting 2 +94349 4923 on the monster 's path of destruction 1 +94350 4923 the monster 's path of destruction 2 +94351 4923 the monster 's path 2 +94352 4923 of destruction 1 +94353 4924 Those of you who are not an eighth grade girl will most likely doze off during this one . 0 +94354 4924 Those of you who are not an eighth grade girl 2 +94355 4924 Those of you 2 +94356 4924 who are not an eighth grade girl 2 +94357 4924 are not an eighth grade girl 2 +94358 4924 an eighth grade girl 2 +94359 4924 eighth grade girl 2 +94360 4924 eighth 2 +94361 4924 grade girl 2 +94362 4924 will most likely doze off during this one . 0 +94363 4924 will most likely doze off during this one 1 +94364 4924 will most likely 2 +94365 4924 doze off during this one 0 +94366 4924 doze off 1 +94367 4924 during this one 2 +94368 4925 is that it 's a crime movie made by someone who obviously knows nothing about crime . 0 +94369 4925 is that it 's a crime movie made by someone who obviously knows nothing about crime 1 +94370 4925 that it 's a crime movie made by someone who obviously knows nothing about crime 1 +94371 4925 it 's a crime movie made by someone who obviously knows nothing about crime 0 +94372 4925 's a crime movie made by someone who obviously knows nothing about crime 1 +94373 4925 a crime movie made by someone who obviously knows nothing about crime 0 +94374 4925 a crime movie 2 +94375 4925 made by someone who obviously knows nothing about crime 0 +94376 4925 by someone who obviously knows nothing about crime 1 +94377 4925 someone who obviously knows nothing about crime 1 +94378 4925 who obviously knows nothing about crime 2 +94379 4925 obviously knows nothing about crime 2 +94380 4925 knows nothing about crime 2 +94381 4925 nothing about crime 1 +94382 4925 about crime 2 +94383 4926 The movie , despite its rough edges and a tendency to sag in certain places , is wry and engrossing . 3 +94384 4926 , despite its rough edges and a tendency to sag in certain places , is wry and engrossing . 2 +94385 4926 despite its rough edges and a tendency to sag in certain places , is wry and engrossing . 3 +94386 4926 despite its rough edges and a tendency to sag in certain places 1 +94387 4926 its rough edges and a tendency to sag in certain places 1 +94388 4926 its rough edges and 2 +94389 4926 its rough edges 1 +94390 4926 rough edges 1 +94391 4926 rough 1 +94392 4926 a tendency to sag in certain places 0 +94393 4926 tendency to sag in certain places 2 +94394 4926 tendency 3 +94395 4926 to sag in certain places 1 +94396 4926 sag in certain places 1 +94397 4926 sag 2 +94398 4926 in certain places 2 +94399 4926 certain places 2 +94400 4926 , is wry and engrossing . 3 +94401 4926 is wry and engrossing . 3 +94402 4926 is wry and engrossing 2 +94403 4926 wry and engrossing 3 +94404 4926 wry and 2 +94405 4927 A noble failure . 1 +94406 4927 noble failure . 1 +94407 4927 failure . 0 +94408 4928 Becomes a bit of a mishmash : a tearjerker that does n't and a thriller that wo n't . 0 +94409 4928 Becomes a bit of a mishmash : a tearjerker that does n't and a thriller that wo n't 2 +94410 4928 Becomes a bit of a mishmash : 2 +94411 4928 Becomes a bit of a mishmash 1 +94412 4928 Becomes a bit 2 +94413 4928 of a mishmash 1 +94414 4928 a mishmash 1 +94415 4928 a tearjerker that does n't and a thriller that wo n't 0 +94416 4928 a tearjerker that does n't and 2 +94417 4928 a tearjerker that does n't 2 +94418 4928 a tearjerker 3 +94419 4928 a thriller that wo n't 2 +94420 4928 that wo n't 2 +94421 4929 As ex-Marine Walter , who may or may not have shot Kennedy , actor Raymond J. Barry is perfectly creepy and believable . 3 +94422 4929 As ex-Marine Walter , who may or may not have shot Kennedy 2 +94423 4929 ex-Marine Walter , who may or may not have shot Kennedy 2 +94424 4929 ex-Marine Walter , 2 +94425 4929 ex-Marine Walter 2 +94426 4929 ex-Marine 2 +94427 4929 who may or may not have shot Kennedy 2 +94428 4929 may or may not have shot Kennedy 2 +94429 4929 have shot Kennedy 2 +94430 4929 shot Kennedy 2 +94431 4929 Kennedy 2 +94432 4929 , actor Raymond J. Barry is perfectly creepy and believable . 4 +94433 4929 actor Raymond J. Barry is perfectly creepy and believable . 4 +94434 4929 actor Raymond J. Barry 2 +94435 4929 Raymond J. Barry 2 +94436 4929 J. Barry 2 +94437 4929 is perfectly creepy and believable . 3 +94438 4929 is perfectly creepy and believable 3 +94439 4929 perfectly creepy and believable 3 +94440 4929 creepy and believable 3 +94441 4929 creepy and 2 +94442 4930 It 's not a bad plot ; but , unfortunately , the movie is nowhere near as refined as all the classic dramas it borrows from . 2 +94443 4930 It 's not a bad plot ; but , unfortunately , the movie is nowhere near as refined as all the classic dramas it borrows from 1 +94444 4930 It 's not a bad plot ; but , 2 +94445 4930 It 's not a bad plot ; but 2 +94446 4930 It 's not a bad plot ; 3 +94447 4930 It 's not a bad plot 2 +94448 4930 's not a bad plot 2 +94449 4930 a bad plot 0 +94450 4930 bad plot 0 +94451 4930 unfortunately , the movie is nowhere near as refined as all the classic dramas it borrows from 1 +94452 4930 , the movie is nowhere near as refined as all the classic dramas it borrows from 2 +94453 4930 the movie is nowhere near as refined as all the classic dramas it borrows from 2 +94454 4930 is nowhere near as refined as all the classic dramas it borrows from 1 +94455 4930 is nowhere near as 2 +94456 4930 nowhere near as 2 +94457 4930 near as 2 +94458 4930 refined as all the classic dramas it borrows from 2 +94459 4930 as all the classic dramas it borrows from 2 +94460 4930 all the classic dramas it borrows from 2 +94461 4930 all the classic dramas 3 +94462 4930 the classic dramas 2 +94463 4930 classic dramas 3 +94464 4930 it borrows from 2 +94465 4930 borrows from 2 +94466 4931 Until its final minutes this is a perceptive study of two families in crisis -- and of two girls whose friendship is severely tested by bad luck and their own immaturity . 1 +94467 4931 Until its final minutes 2 +94468 4931 its final minutes 2 +94469 4931 final minutes 2 +94470 4931 this is a perceptive study of two families in crisis -- and of two girls whose friendship is severely tested by bad luck and their own immaturity . 3 +94471 4931 is a perceptive study of two families in crisis -- and of two girls whose friendship is severely tested by bad luck and their own immaturity . 2 +94472 4931 is a perceptive study of two families in crisis -- and of two girls whose friendship is severely tested by bad luck and their own immaturity 2 +94473 4931 a perceptive study of two families in crisis -- and of two girls whose friendship is severely tested by bad luck and their own immaturity 3 +94474 4931 a perceptive study 3 +94475 4931 perceptive study 2 +94476 4931 of two families in crisis -- and of two girls whose friendship is severely tested by bad luck and their own immaturity 2 +94477 4931 two families in crisis -- and of two girls whose friendship is severely tested by bad luck and their own immaturity 2 +94478 4931 in crisis -- and of two girls whose friendship is severely tested by bad luck and their own immaturity 3 +94479 4931 in crisis 0 +94480 4931 -- and of two girls whose friendship is severely tested by bad luck and their own immaturity 2 +94481 4931 of two girls whose friendship is severely tested by bad luck and their own immaturity 2 +94482 4931 two girls whose friendship is severely tested by bad luck and their own immaturity 2 +94483 4931 two girls 2 +94484 4931 whose friendship is severely tested by bad luck and their own immaturity 2 +94485 4931 whose friendship 2 +94486 4931 is severely tested by bad luck and their own immaturity 2 +94487 4931 is severely 2 +94488 4931 tested by bad luck and their own immaturity 1 +94489 4931 tested 2 +94490 4931 by bad luck and their own immaturity 1 +94491 4931 bad luck and their own immaturity 1 +94492 4931 bad luck and 1 +94493 4931 bad luck 1 +94494 4931 their own immaturity 1 +94495 4931 own immaturity 2 +94496 4931 immaturity 1 +94497 4932 I liked a lot of the smaller scenes . 3 +94498 4932 liked a lot of the smaller scenes . 3 +94499 4932 liked a lot of the smaller scenes 3 +94500 4932 a lot of the smaller scenes 3 +94501 4932 of the smaller scenes 2 +94502 4932 the smaller scenes 2 +94503 4932 smaller scenes 2 +94504 4932 smaller 2 +94505 4933 Beautifully reclaiming the story of Carmen and recreating it an in an African idiom . 3 +94506 4933 Beautifully reclaiming the story of Carmen and recreating it an in an African idiom 3 +94507 4933 Beautifully reclaiming the story of Carmen and 4 +94508 4933 Beautifully reclaiming the story of Carmen 4 +94509 4933 reclaiming the story of Carmen 2 +94510 4933 reclaiming 2 +94511 4933 the story of Carmen 2 +94512 4933 of Carmen 2 +94513 4933 recreating it an in an African idiom 3 +94514 4933 recreating it an 2 +94515 4933 in an African idiom 2 +94516 4933 an African idiom 2 +94517 4933 African idiom 2 +94518 4933 idiom 2 +94519 4934 but rather , ` How can you charge money for this ? ' 0 +94520 4934 , ` How can you charge money for this ? ' 0 +94521 4934 ` How can you charge money for this ? ' 1 +94522 4934 How can you charge money for this ? ' 0 +94523 4934 How can you 2 +94524 4934 can you 2 +94525 4934 charge money for this ? ' 1 +94526 4934 charge money for this ? 0 +94527 4934 charge money for this 2 +94528 4934 money for this 2 +94529 4935 What could have been a daytime soap opera is actually a compelling look at a young woman 's tragic odyssey . 3 +94530 4935 What could have been a daytime soap opera 2 +94531 4935 could have been a daytime soap opera 1 +94532 4935 have been a daytime soap opera 2 +94533 4935 been a daytime soap opera 2 +94534 4935 a daytime soap opera 2 +94535 4935 daytime soap opera 2 +94536 4935 is actually a compelling look at a young woman 's tragic odyssey . 3 +94537 4935 is actually a compelling look at a young woman 's tragic odyssey 2 +94538 4935 a compelling look at a young woman 's tragic odyssey 3 +94539 4935 a compelling look 3 +94540 4935 compelling look 3 +94541 4935 at a young woman 's tragic odyssey 2 +94542 4935 a young woman 's tragic odyssey 2 +94543 4935 tragic odyssey 2 +94544 4936 For a film about action , Ultimate X is the gabbiest giant-screen movie ever , bogging down in a barrage of hype . 1 +94545 4936 For a film about action 2 +94546 4936 a film about action 2 +94547 4936 about action 2 +94548 4936 , Ultimate X is the gabbiest giant-screen movie ever , bogging down in a barrage of hype . 1 +94549 4936 Ultimate X is the gabbiest giant-screen movie ever , bogging down in a barrage of hype . 0 +94550 4936 is the gabbiest giant-screen movie ever , bogging down in a barrage of hype . 1 +94551 4936 is the gabbiest giant-screen movie ever , bogging down in a barrage of hype 1 +94552 4936 is the gabbiest giant-screen movie ever , 1 +94553 4936 is the gabbiest giant-screen movie ever 1 +94554 4936 is the gabbiest giant-screen movie 1 +94555 4936 the gabbiest giant-screen movie 1 +94556 4936 gabbiest giant-screen movie 1 +94557 4936 gabbiest 2 +94558 4936 giant-screen movie 2 +94559 4936 giant-screen 2 +94560 4936 bogging down in a barrage of hype 1 +94561 4936 bogging down 1 +94562 4936 bogging 2 +94563 4936 in a barrage of hype 2 +94564 4936 a barrage of hype 2 +94565 4936 a barrage 2 +94566 4936 barrage 2 +94567 4936 of hype 1 +94568 4937 No one involved , save Dash , shows the slightest aptitude for acting , and the script , credited to director Abdul Malik Abbott and Ernest ` Tron ' Anderson , seems entirely improvised . 0 +94569 4937 No one involved , save Dash , shows the slightest aptitude for acting , and the script , credited to director Abdul Malik Abbott and Ernest ` Tron ' Anderson , seems entirely improvised 1 +94570 4937 No one involved , save Dash , shows the slightest aptitude for acting , and 0 +94571 4937 No one involved , save Dash , shows the slightest aptitude for acting , 1 +94572 4937 No one involved , save Dash , shows the slightest aptitude for acting 1 +94573 4937 No one involved , save Dash , 2 +94574 4937 No one involved , save Dash 2 +94575 4937 No one involved , 2 +94576 4937 No one involved 2 +94577 4937 save Dash 2 +94578 4937 shows the slightest aptitude for acting 2 +94579 4937 the slightest aptitude for acting 2 +94580 4937 the slightest aptitude 2 +94581 4937 slightest aptitude 2 +94582 4937 aptitude 2 +94583 4937 for acting 2 +94584 4937 the script , credited to director Abdul Malik Abbott and Ernest ` Tron ' Anderson , seems entirely improvised 1 +94585 4937 the script , credited to director Abdul Malik Abbott and Ernest ` Tron ' Anderson , 2 +94586 4937 the script , credited to director Abdul Malik Abbott and Ernest ` Tron ' Anderson 2 +94587 4937 credited to director Abdul Malik Abbott and Ernest ` Tron ' Anderson 3 +94588 4937 to director Abdul Malik Abbott and Ernest ` Tron ' Anderson 2 +94589 4937 director Abdul Malik Abbott and Ernest ` Tron ' Anderson 2 +94590 4937 director Abdul Malik Abbott and 2 +94591 4937 director Abdul Malik Abbott 2 +94592 4937 Abdul Malik Abbott 2 +94593 4937 Abdul 2 +94594 4937 Malik Abbott 2 +94595 4937 Malik 2 +94596 4937 Abbott 2 +94597 4937 Ernest ` Tron ' Anderson 2 +94598 4937 Ernest 2 +94599 4937 ` Tron ' Anderson 2 +94600 4937 Tron ' Anderson 2 +94601 4937 Tron 2 +94602 4937 ' Anderson 2 +94603 4937 seems entirely improvised 2 +94604 4937 entirely improvised 1 +94605 4938 Insanely hilarious ! 4 +94606 4938 Insanely hilarious 4 +94607 4939 There is no psychology here , and no real narrative logic -- just a series of carefully choreographed atrocities , which become strangely impersonal and abstract . 0 +94608 4939 is no psychology here , and no real narrative logic -- just a series of carefully choreographed atrocities , which become strangely impersonal and abstract . 0 +94609 4939 is no psychology here , and no real narrative logic -- just a series of carefully choreographed atrocities , which become strangely impersonal and abstract 0 +94610 4939 no psychology here , and no real narrative logic -- just a series of carefully choreographed atrocities , which become strangely impersonal and abstract 1 +94611 4939 no psychology here , and no real narrative logic -- 1 +94612 4939 no psychology here , and no real narrative logic 1 +94613 4939 no psychology here , and 2 +94614 4939 no psychology here , 1 +94615 4939 no psychology here 2 +94616 4939 no psychology 1 +94617 4939 no real narrative logic 0 +94618 4939 real narrative logic 3 +94619 4939 narrative logic 2 +94620 4939 just a series of carefully choreographed atrocities , which become strangely impersonal and abstract 1 +94621 4939 just a series 2 +94622 4939 of carefully choreographed atrocities , which become strangely impersonal and abstract 1 +94623 4939 carefully choreographed atrocities , which become strangely impersonal and abstract 1 +94624 4939 carefully choreographed atrocities , 2 +94625 4939 carefully choreographed atrocities 1 +94626 4939 carefully choreographed 3 +94627 4939 atrocities 1 +94628 4939 which become strangely impersonal and abstract 1 +94629 4939 become strangely impersonal and abstract 1 +94630 4939 strangely impersonal and abstract 1 +94631 4939 impersonal and abstract 1 +94632 4939 impersonal and 1 +94633 4940 The ending does n't work ... but most of the movie works so well I 'm almost recommending it , anyway -- maybe not to everybody , but certainly to people with a curiosity about how a movie can go very right , and then step wrong . 2 +94634 4940 The ending does n't work ... but most of the movie works so well I 'm almost recommending it , anyway -- maybe not to everybody , but certainly to people with a curiosity about how a movie can go very right , and then step wrong 3 +94635 4940 The ending does n't work ... but 1 +94636 4940 The ending does n't work ... 1 +94637 4940 The ending does n't work 0 +94638 4940 most of the movie works so well I 'm almost recommending it , anyway -- maybe not to everybody , but certainly to people with a curiosity about how a movie can go very right , and then step wrong 2 +94639 4940 most of the movie 2 +94640 4940 works so well I 'm almost recommending it , anyway -- maybe not to everybody , but certainly to people with a curiosity about how a movie can go very right , and then step wrong 3 +94641 4940 works so well I 'm almost recommending it , anyway -- maybe not to everybody , but certainly to people with a curiosity about 3 +94642 4940 works so well I 'm almost recommending it , anyway -- 2 +94643 4940 works so well I 'm almost recommending it , anyway 3 +94644 4940 so well I 'm almost recommending it , anyway 2 +94645 4940 well I 'm almost recommending it , anyway 2 +94646 4940 I 'm almost recommending it , anyway 3 +94647 4940 'm almost recommending it , anyway 2 +94648 4940 almost recommending it , anyway 2 +94649 4940 recommending it , anyway 2 +94650 4940 recommending it , 3 +94651 4940 recommending it 3 +94652 4940 recommending 3 +94653 4940 maybe not to everybody , but certainly to people with a curiosity about 2 +94654 4940 not to everybody , but certainly to people with a curiosity about 2 +94655 4940 to everybody , but certainly to people with a curiosity about 2 +94656 4940 to everybody 2 +94657 4940 , but certainly to people with a curiosity about 3 +94658 4940 but certainly to people with a curiosity about 2 +94659 4940 certainly to people with a curiosity about 2 +94660 4940 to people with a curiosity about 2 +94661 4940 people with a curiosity about 2 +94662 4940 with a curiosity about 3 +94663 4940 a curiosity about 2 +94664 4940 curiosity about 2 +94665 4940 how a movie can go very right , and then step wrong 2 +94666 4940 a movie can go very right , and then step wrong 2 +94667 4940 can go very right , and then step wrong 2 +94668 4940 go very right , and then step wrong 1 +94669 4940 go very right , and then 2 +94670 4940 go very right , and 2 +94671 4940 go very right , 3 +94672 4940 go very right 3 +94673 4940 very right 3 +94674 4940 step wrong 1 +94675 4941 The cumulative effect of watching this 65-minute trifle is rather like being trapped while some weird relative trots out the video he took of the family vacation to Stonehenge . 0 +94676 4941 The cumulative effect of watching this 65-minute trifle 1 +94677 4941 of watching this 65-minute trifle 2 +94678 4941 watching this 65-minute trifle 2 +94679 4941 this 65-minute trifle 1 +94680 4941 65-minute trifle 1 +94681 4941 65-minute 2 +94682 4941 is rather like being trapped while some weird relative trots out the video he took of the family vacation to Stonehenge . 0 +94683 4941 is rather like being trapped while some weird relative trots out the video he took of the family vacation to Stonehenge 0 +94684 4941 rather like being trapped while some weird relative trots out the video he took of the family vacation to Stonehenge 1 +94685 4941 like being trapped while some weird relative trots out the video he took of the family vacation to Stonehenge 0 +94686 4941 being trapped while some weird relative trots out the video he took of the family vacation to Stonehenge 2 +94687 4941 trapped while some weird relative trots out the video he took of the family vacation to Stonehenge 1 +94688 4941 while some weird relative trots out the video he took of the family vacation to Stonehenge 2 +94689 4941 some weird relative trots out the video he took of the family vacation to Stonehenge 1 +94690 4941 some weird relative 2 +94691 4941 weird relative 2 +94692 4941 trots out the video he took of the family vacation to Stonehenge 1 +94693 4941 the video he took of the family vacation to Stonehenge 2 +94694 4941 he took of the family vacation to Stonehenge 2 +94695 4941 took of the family vacation to Stonehenge 2 +94696 4941 took of the family vacation 3 +94697 4941 of the family vacation 3 +94698 4941 the family vacation 2 +94699 4941 family vacation 2 +94700 4941 vacation 2 +94701 4941 to Stonehenge 2 +94702 4941 Stonehenge 2 +94703 4942 A waterlogged version of ` Fatal Attraction ' for the teeny-bopper set ... a sad , soggy potboiler that wastes the talents of its attractive young leads . 1 +94704 4942 A waterlogged version of ` Fatal Attraction ' for the teeny-bopper set ... a sad , soggy potboiler that wastes the talents of its attractive young leads 1 +94705 4942 A waterlogged version of ` Fatal Attraction ' for the teeny-bopper set ... 1 +94706 4942 A waterlogged version of ` Fatal Attraction ' for the teeny-bopper set 1 +94707 4942 A waterlogged version 2 +94708 4942 waterlogged version 2 +94709 4942 of ` Fatal Attraction ' for the teeny-bopper set 1 +94710 4942 ` Fatal Attraction ' for the teeny-bopper set 1 +94711 4942 Fatal Attraction ' for the teeny-bopper set 2 +94712 4942 Fatal Attraction ' 2 +94713 4942 for the teeny-bopper set 2 +94714 4942 the teeny-bopper set 1 +94715 4942 teeny-bopper set 1 +94716 4942 teeny-bopper 1 +94717 4942 a sad , soggy potboiler that wastes the talents of its attractive young leads 0 +94718 4942 a sad , soggy potboiler 0 +94719 4942 sad , soggy potboiler 1 +94720 4942 , soggy potboiler 0 +94721 4942 soggy potboiler 1 +94722 4942 that wastes the talents of its attractive young leads 0 +94723 4942 wastes the talents of its attractive young leads 0 +94724 4942 the talents of its attractive young leads 3 +94725 4942 of its attractive young leads 3 +94726 4942 its attractive young leads 3 +94727 4942 attractive young leads 3 +94728 4942 young leads 2 +94729 4943 Indeed , none of these words really gets at the very special type of badness that is Deuces Wild . 2 +94730 4943 , none of these words really gets at the very special type of badness that is Deuces Wild . 1 +94731 4943 none of these words really gets at the very special type of badness that is Deuces Wild . 1 +94732 4943 none of these words 2 +94733 4943 of these words 2 +94734 4943 these words 2 +94735 4943 really gets at the very special type of badness that is Deuces Wild . 2 +94736 4943 gets at the very special type of badness that is Deuces Wild . 2 +94737 4943 gets at the very special type of badness that is Deuces Wild 2 +94738 4943 at the very special type of badness that is Deuces Wild 1 +94739 4943 the very special type of badness that is Deuces Wild 1 +94740 4943 the very special type 2 +94741 4943 very special type 3 +94742 4943 special type 2 +94743 4943 of badness that is Deuces Wild 2 +94744 4943 badness that is Deuces Wild 1 +94745 4943 badness 2 +94746 4943 that is Deuces Wild 2 +94747 4943 is Deuces Wild 2 +94748 4944 Completely creatively stillborn and executed in a manner that I 'm not sure could be a single iota worse ... a soulless hunk of exploitative garbage . 0 +94749 4944 Completely creatively stillborn and executed in a manner that I 'm not sure 1 +94750 4944 Completely creatively stillborn and 1 +94751 4944 Completely creatively stillborn 1 +94752 4944 creatively stillborn 1 +94753 4944 creatively 3 +94754 4944 executed in a manner that I 'm not sure 2 +94755 4944 executed in a manner 2 +94756 4944 that I 'm not sure 2 +94757 4944 I 'm not sure 2 +94758 4944 'm not sure 2 +94759 4944 could be a single iota worse ... a soulless hunk of exploitative garbage . 1 +94760 4944 could be a single iota worse ... a soulless hunk of exploitative garbage 0 +94761 4944 could be a single iota worse ... 1 +94762 4944 could be a single iota worse 2 +94763 4944 be a single iota worse 1 +94764 4944 a single iota worse 1 +94765 4944 a single iota 2 +94766 4944 single iota 2 +94767 4944 iota 2 +94768 4944 a soulless hunk of exploitative garbage 0 +94769 4944 a soulless hunk 1 +94770 4944 soulless hunk 1 +94771 4944 hunk 4 +94772 4944 of exploitative garbage 1 +94773 4944 exploitative garbage 0 +94774 4945 There are n't many conclusive answers in the film , but there is an interesting story of pointed personalities , courage , tragedy and the little guys vs. the big guys . 3 +94775 4945 There are n't many conclusive answers in the film , but there is an interesting story of pointed personalities , courage , tragedy and the little guys vs. the big guys 3 +94776 4945 There are n't many conclusive answers in the film , but 1 +94777 4945 There are n't many conclusive answers in the film , 1 +94778 4945 There are n't many conclusive answers in the film 1 +94779 4945 are n't many conclusive answers in the film 1 +94780 4945 many conclusive answers in the film 3 +94781 4945 many conclusive answers 2 +94782 4945 conclusive answers 2 +94783 4945 conclusive 2 +94784 4945 there is an interesting story of pointed personalities , courage , tragedy and the little guys vs. the big guys 4 +94785 4945 is an interesting story of pointed personalities , courage , tragedy and the little guys vs. the big guys 3 +94786 4945 an interesting story of pointed personalities , courage , tragedy and the little guys vs. the big guys 4 +94787 4945 an interesting story of pointed personalities , courage , tragedy and the little guys 3 +94788 4945 an interesting story 3 +94789 4945 interesting story 3 +94790 4945 of pointed personalities , courage , tragedy and the little guys 3 +94791 4945 pointed personalities , courage , tragedy and the little guys 3 +94792 4945 pointed personalities , courage , tragedy and 2 +94793 4945 pointed personalities , courage , tragedy 3 +94794 4945 pointed personalities , courage , 3 +94795 4945 pointed personalities , courage 2 +94796 4945 pointed personalities , 2 +94797 4945 pointed personalities 3 +94798 4945 the little guys 2 +94799 4945 little guys 2 +94800 4945 vs. the big guys 2 +94801 4945 the big guys 2 +94802 4945 big guys 2 +94803 4946 Aside from the fact that the film idiotically uses the website feardotcom.com or the improperly hammy performance from poor Stephen Rea , the film gets added disdain for the fact that it is nearly impossible to look at or understand . 0 +94804 4946 Aside from the fact that the film idiotically uses the website feardotcom.com or the improperly hammy performance from poor Stephen Rea 1 +94805 4946 from the fact that the film idiotically uses the website feardotcom.com or the improperly hammy performance from poor Stephen Rea 0 +94806 4946 the fact that the film idiotically uses the website feardotcom.com or the improperly hammy performance from poor Stephen Rea 1 +94807 4946 that the film idiotically uses the website feardotcom.com or the improperly hammy performance from poor Stephen Rea 0 +94808 4946 the film idiotically uses the website feardotcom.com or the improperly hammy performance from poor Stephen Rea 0 +94809 4946 idiotically uses the website feardotcom.com or the improperly hammy performance from poor Stephen Rea 0 +94810 4946 idiotically 1 +94811 4946 uses the website feardotcom.com or the improperly hammy performance from poor Stephen Rea 1 +94812 4946 the website feardotcom.com or the improperly hammy performance from poor Stephen Rea 1 +94813 4946 the website feardotcom.com or 2 +94814 4946 the website feardotcom.com 2 +94815 4946 website feardotcom.com 2 +94816 4946 feardotcom.com 2 +94817 4946 the improperly hammy performance from poor Stephen Rea 1 +94818 4946 the improperly hammy performance 1 +94819 4946 improperly hammy performance 1 +94820 4946 improperly hammy 2 +94821 4946 improperly 2 +94822 4946 from poor Stephen Rea 2 +94823 4946 poor Stephen Rea 2 +94824 4946 Stephen Rea 2 +94825 4946 Rea 2 +94826 4946 , the film gets added disdain for the fact that it is nearly impossible to look at or understand . 0 +94827 4946 the film gets added disdain for the fact that it is nearly impossible to look at or understand . 1 +94828 4946 gets added disdain for the fact that it is nearly impossible to look at or understand . 0 +94829 4946 gets added disdain for the fact that it is nearly impossible to look at or understand 1 +94830 4946 gets added disdain for the fact 1 +94831 4946 gets added disdain 2 +94832 4946 added disdain 1 +94833 4946 disdain 0 +94834 4946 for the fact 2 +94835 4946 that it is nearly impossible to look at or understand 1 +94836 4946 it is nearly impossible to look at or understand 1 +94837 4946 is nearly impossible to look at or understand 1 +94838 4946 is nearly impossible 2 +94839 4946 nearly impossible 1 +94840 4946 to look at or understand 3 +94841 4946 look at or understand 2 +94842 4946 look at or 2 +94843 4947 Insufferably naive . 1 +94844 4947 Insufferably naive 0 +94845 4947 naive 1 +94846 4948 Animated drivel meant to enhance the self-image of drooling idiots . 1 +94847 4948 Animated drivel 1 +94848 4948 meant to enhance the self-image of drooling idiots . 0 +94849 4948 meant to enhance the self-image of drooling idiots 1 +94850 4948 to enhance the self-image of drooling idiots 1 +94851 4948 enhance the self-image of drooling idiots 2 +94852 4948 enhance 3 +94853 4948 the self-image of drooling idiots 1 +94854 4948 the self-image 3 +94855 4948 self-image 2 +94856 4948 of drooling idiots 1 +94857 4948 drooling idiots 0 +94858 4948 drooling 2 +94859 4949 The performances are remarkable . 4 +94860 4949 are remarkable . 3 +94861 4949 are remarkable 3 +94862 4950 Tries so hard to be quirky and funny that the strain is all too evident . 0 +94863 4950 Tries so hard to be quirky and funny that the strain is all too evident 1 +94864 4950 so hard to be quirky and funny that the strain is all too evident 1 +94865 4950 hard to be quirky and funny that the strain is all too evident 2 +94866 4950 to be quirky and funny that the strain is all too evident 1 +94867 4950 be quirky and funny that the strain is all too evident 2 +94868 4950 be quirky and funny 3 +94869 4950 quirky and funny 3 +94870 4950 that the strain is all too evident 2 +94871 4950 the strain is all too evident 1 +94872 4950 is all too evident 2 +94873 4950 too evident 1 +94874 4951 it may play well as a double feature with mainstream foreign mush like My Big Fat Greek Wedding 2 +94875 4951 may play well as a double feature with mainstream foreign mush like My Big Fat Greek Wedding 2 +94876 4951 play well as a double feature with mainstream foreign mush like My Big Fat Greek Wedding 2 +94877 4951 play well 3 +94878 4951 as a double feature with mainstream foreign mush like My Big Fat Greek Wedding 2 +94879 4951 a double feature with mainstream foreign mush like My Big Fat Greek Wedding 2 +94880 4951 a double feature 2 +94881 4951 double feature 2 +94882 4951 with mainstream foreign mush like My Big Fat Greek Wedding 1 +94883 4951 mainstream foreign mush like My Big Fat Greek Wedding 1 +94884 4951 mainstream foreign mush 1 +94885 4951 foreign mush 0 +94886 4951 like My Big Fat Greek Wedding 2 +94887 4952 -LRB- Creates -RRB- the worst kind of mythologizing , the kind that sacrifices real heroism and abject suffering for melodrama . 0 +94888 4952 -LRB- Creates -RRB- 2 +94889 4952 Creates -RRB- 2 +94890 4952 the worst kind of mythologizing , the kind that sacrifices real heroism and abject suffering for melodrama . 0 +94891 4952 the worst kind of mythologizing , the kind that sacrifices real heroism and abject suffering for melodrama 2 +94892 4952 the worst kind of mythologizing , 0 +94893 4952 the worst kind of mythologizing 1 +94894 4952 of mythologizing 2 +94895 4952 mythologizing 2 +94896 4952 the kind that sacrifices real heroism and abject suffering for melodrama 3 +94897 4952 that sacrifices real heroism and abject suffering for melodrama 2 +94898 4952 sacrifices real heroism and abject suffering for melodrama 2 +94899 4952 real heroism and abject suffering for melodrama 2 +94900 4952 real heroism and abject suffering 3 +94901 4952 heroism and abject suffering 2 +94902 4952 heroism 2 +94903 4952 and abject suffering 2 +94904 4952 abject suffering 1 +94905 4952 abject 1 +94906 4952 for melodrama 2 +94907 4953 The wonderfully lush Morvern Callar is pure punk existentialism , and Ms. Ramsay and her co-writer , Liana Dognini , have dramatized the Alan Warner novel , which itself felt like an answer to Irvine Welsh 's book Trainspotting . 3 +94908 4953 The wonderfully lush Morvern Callar is pure punk existentialism , and Ms. Ramsay and her co-writer , Liana Dognini , have dramatized the Alan Warner novel , which itself felt like an answer to Irvine Welsh 's book Trainspotting 3 +94909 4953 The wonderfully lush Morvern Callar is pure punk existentialism , and 3 +94910 4953 The wonderfully lush Morvern Callar is pure punk existentialism , 3 +94911 4953 The wonderfully lush Morvern Callar is pure punk existentialism 3 +94912 4953 The wonderfully lush Morvern Callar 3 +94913 4953 wonderfully lush Morvern Callar 2 +94914 4953 wonderfully lush 3 +94915 4953 is pure punk existentialism 3 +94916 4953 pure punk existentialism 2 +94917 4953 punk existentialism 2 +94918 4953 existentialism 2 +94919 4953 Ms. Ramsay and her co-writer , Liana Dognini , have dramatized the Alan Warner novel , which itself felt like an answer to Irvine Welsh 's book Trainspotting 3 +94920 4953 Ms. Ramsay and her co-writer , Liana Dognini , 2 +94921 4953 Ms. Ramsay and her co-writer , Liana Dognini 2 +94922 4953 Ms. Ramsay and her co-writer , 2 +94923 4953 Ms. Ramsay and her co-writer 2 +94924 4953 Ms. Ramsay and 2 +94925 4953 Ms. Ramsay 2 +94926 4953 her co-writer 2 +94927 4953 Liana Dognini 2 +94928 4953 Liana 2 +94929 4953 Dognini 2 +94930 4953 have dramatized the Alan Warner novel , which itself felt like an answer to Irvine Welsh 's book Trainspotting 2 +94931 4953 dramatized the Alan Warner novel , which itself felt like an answer to Irvine Welsh 's book Trainspotting 2 +94932 4953 dramatized 3 +94933 4953 the Alan Warner novel , which itself felt like an answer to Irvine Welsh 's book Trainspotting 2 +94934 4953 the Alan Warner novel , 2 +94935 4953 the Alan Warner novel 2 +94936 4953 Alan Warner novel 2 +94937 4953 Alan 2 +94938 4953 Warner novel 2 +94939 4953 which itself felt like an answer to Irvine Welsh 's book Trainspotting 2 +94940 4953 itself felt like an answer to Irvine Welsh 's book Trainspotting 2 +94941 4953 felt like an answer to Irvine Welsh 's book Trainspotting 3 +94942 4953 felt like an answer 2 +94943 4953 like an answer 2 +94944 4953 an answer 2 +94945 4953 to Irvine Welsh 's book Trainspotting 2 +94946 4953 Irvine Welsh 's book Trainspotting 2 +94947 4953 Irvine Welsh 's 2 +94948 4953 Irvine 2 +94949 4953 Welsh 's 2 +94950 4953 book Trainspotting 2 +94951 4953 Trainspotting 2 +94952 4954 Too bad writer-director Adam Rifkin situates it all in a plot as musty as one of the Golden Eagle 's carpets . 1 +94953 4954 Too bad writer-director Adam Rifkin 2 +94954 4954 writer-director Adam Rifkin 2 +94955 4954 Adam Rifkin 2 +94956 4954 situates it all in a plot as musty as one of the Golden Eagle 's carpets . 1 +94957 4954 situates it all in a plot as musty as one of the Golden Eagle 's carpets 1 +94958 4954 situates it 2 +94959 4954 situates 2 +94960 4954 all in a plot as musty as one of the Golden Eagle 's carpets 0 +94961 4954 in a plot as musty as one of the Golden Eagle 's carpets 1 +94962 4954 a plot as musty as one of the Golden Eagle 's carpets 0 +94963 4954 as musty as one of the Golden Eagle 's carpets 1 +94964 4954 musty as one of the Golden Eagle 's carpets 1 +94965 4954 as one of the Golden Eagle 's carpets 2 +94966 4954 one of the Golden Eagle 's carpets 2 +94967 4954 of the Golden Eagle 's carpets 2 +94968 4954 the Golden Eagle 's carpets 2 +94969 4954 the Golden Eagle 's 2 +94970 4954 Golden Eagle 's 2 +94971 4954 Eagle 's 2 +94972 4954 Eagle 2 +94973 4954 carpets 2 +94974 4955 A smart , sassy and exceptionally charming romantic comedy . 4 +94975 4955 A smart , sassy and exceptionally charming romantic comedy 3 +94976 4955 A smart , sassy and exceptionally charming 4 +94977 4955 smart , sassy and exceptionally charming 4 +94978 4955 smart , sassy and 4 +94979 4955 smart , sassy 3 +94980 4955 exceptionally charming 3 +94981 4956 Yet another iteration of what 's become one of the movies ' creepiest conventions , in which the developmentally disabled are portrayed with almost supernatural powers to humble , teach and ultimately redeem their mentally `` superior '' friends , family ... 1 +94982 4956 another iteration of what 's become one of the movies ' creepiest conventions , in which the developmentally disabled are portrayed with almost supernatural powers to humble , teach and ultimately redeem their mentally `` superior '' friends , family ... 1 +94983 4956 another iteration of what 's become one of the movies ' creepiest conventions , in which the developmentally disabled 1 +94984 4956 another iteration 2 +94985 4956 iteration 2 +94986 4956 of what 's become one of the movies ' creepiest conventions , in which the developmentally disabled 1 +94987 4956 what 's become one of the movies ' creepiest conventions , in which the developmentally disabled 2 +94988 4956 's become one of the movies ' creepiest conventions , in which the developmentally disabled 3 +94989 4956 become one of the movies ' creepiest conventions , in which the developmentally disabled 2 +94990 4956 one of the movies ' creepiest conventions , in which the developmentally disabled 2 +94991 4956 one of the movies ' creepiest conventions , 2 +94992 4956 one of the movies ' creepiest conventions 2 +94993 4956 of the movies ' creepiest conventions 2 +94994 4956 the movies ' creepiest conventions 2 +94995 4956 the movies ' 2 +94996 4956 movies ' 2 +94997 4956 creepiest conventions 1 +94998 4956 creepiest 2 +94999 4956 in which the developmentally disabled 2 +95000 4956 the developmentally disabled 2 +95001 4956 the developmentally 2 +95002 4956 developmentally 2 +95003 4956 disabled 2 +95004 4956 are portrayed with almost supernatural powers to humble , teach and ultimately redeem their mentally `` superior '' friends , family ... 3 +95005 4956 are portrayed with almost supernatural powers to humble , teach and ultimately redeem their mentally `` superior '' friends , family 2 +95006 4956 portrayed with almost supernatural powers to humble , teach and ultimately redeem their mentally `` superior '' friends , family 2 +95007 4956 portrayed with almost supernatural powers 3 +95008 4956 portrayed 2 +95009 4956 with almost supernatural powers 2 +95010 4956 almost supernatural powers 2 +95011 4956 almost supernatural 2 +95012 4956 to humble , teach and ultimately redeem their mentally `` superior '' friends , family 2 +95013 4956 humble , teach and ultimately redeem their mentally `` superior '' friends , family 2 +95014 4956 humble , teach and ultimately 3 +95015 4956 humble , teach and 3 +95016 4956 humble , teach 3 +95017 4956 humble , 2 +95018 4956 redeem their mentally `` superior '' friends , family 2 +95019 4956 redeem 2 +95020 4956 their mentally `` superior '' friends , family 2 +95021 4956 their mentally `` superior '' friends , 2 +95022 4956 their mentally `` superior '' friends 2 +95023 4956 mentally `` superior '' friends 3 +95024 4956 mentally `` superior '' 3 +95025 4956 `` superior '' 3 +95026 4956 superior '' 4 +95027 4957 A droll , bitchy frolic which pokes fun at the price of popularity and small-town pretension in the Lone Star State . 1 +95028 4957 A droll , bitchy frolic which pokes fun at the price of popularity and small-town pretension in the Lone Star State 1 +95029 4957 A droll , 1 +95030 4957 A droll 2 +95031 4957 bitchy frolic which pokes fun at the price of popularity and small-town pretension in the Lone Star State 3 +95032 4957 bitchy frolic 1 +95033 4957 bitchy 0 +95034 4957 frolic 2 +95035 4957 which pokes fun at the price of popularity and small-town pretension in the Lone Star State 3 +95036 4957 pokes fun at the price of popularity and small-town pretension in the Lone Star State 2 +95037 4957 pokes fun 2 +95038 4957 at the price of popularity and small-town pretension in the Lone Star State 2 +95039 4957 the price of popularity and small-town pretension in the Lone Star State 2 +95040 4957 the price of popularity and 2 +95041 4957 the price of popularity 2 +95042 4957 of popularity 2 +95043 4957 small-town pretension in the Lone Star State 2 +95044 4957 small-town pretension 2 +95045 4957 small-town 2 +95046 4957 in the Lone Star State 2 +95047 4957 the Lone Star State 2 +95048 4957 Lone Star State 2 +95049 4957 Lone 2 +95050 4957 Star State 2 +95051 4958 These self-styled athletes have banged their brains into the ground so frequently and furiously , their capacity to explain themselves has gone the same way as their natural instinct for self-preservation . 1 +95052 4958 These self-styled athletes have banged their brains into the ground so frequently and furiously , their capacity to explain themselves has gone the same way as their natural instinct for self-preservation 1 +95053 4958 These self-styled athletes have banged their brains into the ground so frequently and 1 +95054 4958 These self-styled athletes have banged their brains into the ground so frequently 1 +95055 4958 These self-styled athletes 2 +95056 4958 self-styled athletes 2 +95057 4958 self-styled 2 +95058 4958 have banged their brains into the ground so frequently 1 +95059 4958 banged their brains into the ground so frequently 1 +95060 4958 banged their brains into the ground 1 +95061 4958 banged their brains 1 +95062 4958 banged 2 +95063 4958 their brains 2 +95064 4958 brains 2 +95065 4958 into the ground 2 +95066 4958 so frequently 2 +95067 4958 furiously , their capacity to explain themselves has gone the same way as their natural instinct for self-preservation 1 +95068 4958 , their capacity to explain themselves has gone the same way as their natural instinct for self-preservation 2 +95069 4958 their capacity to explain themselves has gone the same way as their natural instinct for self-preservation 2 +95070 4958 their capacity to explain themselves 2 +95071 4958 capacity to explain themselves 2 +95072 4958 to explain themselves 2 +95073 4958 explain themselves 2 +95074 4958 explain 2 +95075 4958 has gone the same way as their natural instinct for self-preservation 2 +95076 4958 gone the same way as their natural instinct for self-preservation 2 +95077 4958 gone the same way 2 +95078 4958 as their natural instinct for self-preservation 3 +95079 4958 their natural instinct for self-preservation 3 +95080 4958 their natural instinct 2 +95081 4958 natural instinct 2 +95082 4958 instinct 2 +95083 4958 for self-preservation 2 +95084 4959 No amount of good acting is enough to save Oleander 's uninspired story . 1 +95085 4959 No amount of good acting 1 +95086 4959 of good acting 3 +95087 4959 good acting 3 +95088 4959 is enough to save Oleander 's uninspired story . 1 +95089 4959 is enough to save Oleander 's uninspired story 2 +95090 4959 enough to save Oleander 's uninspired story 2 +95091 4959 to save Oleander 's uninspired story 2 +95092 4959 save Oleander 's uninspired story 1 +95093 4959 Oleander 's uninspired story 1 +95094 4959 Oleander 's 2 +95095 4959 uninspired story 1 +95096 4960 No amount of nostalgia for Carvey 's glory days can disguise the fact that the new film is a lame kiddie flick and that Carvey 's considerable talents are wasted in it . 0 +95097 4960 No amount of nostalgia for Carvey 's glory days 1 +95098 4960 of nostalgia for Carvey 's glory days 2 +95099 4960 nostalgia for Carvey 's glory days 2 +95100 4960 for Carvey 's glory days 2 +95101 4960 Carvey 's glory days 3 +95102 4960 glory days 3 +95103 4960 can disguise the fact that the new film is a lame kiddie flick and that Carvey 's considerable talents are wasted in it . 1 +95104 4960 can disguise the fact that the new film is a lame kiddie flick and that Carvey 's considerable talents are wasted in it 1 +95105 4960 disguise the fact that the new film is a lame kiddie flick and that Carvey 's considerable talents are wasted in it 0 +95106 4960 that the new film is a lame kiddie flick and that Carvey 's considerable talents are wasted in it 0 +95107 4960 that the new film is a lame kiddie flick and 1 +95108 4960 that the new film is a lame kiddie flick 1 +95109 4960 the new film is a lame kiddie flick 1 +95110 4960 is a lame kiddie flick 1 +95111 4960 a lame kiddie flick 0 +95112 4960 lame kiddie flick 0 +95113 4960 that Carvey 's considerable talents are wasted in it 2 +95114 4960 Carvey 's considerable talents are wasted in it 1 +95115 4960 Carvey 's considerable talents 3 +95116 4960 are wasted in it 1 +95117 4960 wasted in it 1 +95118 4961 ... pays tribute to heroes the way Julia Roberts hands out awards -- with phony humility barely camouflaging grotesque narcissism . 0 +95119 4961 pays tribute to heroes the way Julia Roberts hands out awards -- with phony humility barely camouflaging grotesque narcissism . 2 +95120 4961 pays tribute to heroes the way Julia Roberts hands out awards -- with phony humility barely camouflaging grotesque narcissism 2 +95121 4961 pays tribute 3 +95122 4961 to heroes the way Julia Roberts hands out awards -- with phony humility barely camouflaging grotesque narcissism 0 +95123 4961 heroes the way Julia Roberts hands out awards -- with phony humility barely camouflaging grotesque narcissism 1 +95124 4961 heroes the way 2 +95125 4961 Julia Roberts hands out awards -- with phony humility barely camouflaging grotesque narcissism 0 +95126 4961 Julia Roberts 2 +95127 4961 Julia 2 +95128 4961 hands out awards -- with phony humility barely camouflaging grotesque narcissism 1 +95129 4961 hands out awards -- 2 +95130 4961 hands out awards 2 +95131 4961 out awards 2 +95132 4961 with phony humility barely camouflaging grotesque narcissism 0 +95133 4961 phony humility barely camouflaging grotesque narcissism 0 +95134 4961 phony humility 0 +95135 4961 humility 2 +95136 4961 barely camouflaging grotesque narcissism 1 +95137 4961 camouflaging grotesque narcissism 1 +95138 4961 camouflaging 2 +95139 4961 grotesque narcissism 0 +95140 4962 More likely to have you scratching your head than hiding under your seat . 1 +95141 4962 to have you scratching your head than hiding under your seat . 1 +95142 4962 to have you scratching your head than hiding under your seat 2 +95143 4962 have you scratching your head than hiding under your seat 1 +95144 4962 you scratching your head than hiding under your seat 2 +95145 4962 scratching your head than hiding under your seat 1 +95146 4962 scratching your head 1 +95147 4962 than hiding under your seat 2 +95148 4962 hiding under your seat 2 +95149 4962 under your seat 2 +95150 4963 The beauty of the piece is that it counts heart as important as humor . 3 +95151 4963 The beauty of the piece 3 +95152 4963 of the piece 2 +95153 4963 the piece 2 +95154 4963 is that it counts heart as important as humor . 3 +95155 4963 is that it counts heart as important as humor 2 +95156 4963 that it counts heart as important as humor 3 +95157 4963 it counts heart as important as humor 3 +95158 4963 counts heart as important as humor 3 +95159 4963 heart as important as humor 3 +95160 4963 as important as humor 3 +95161 4963 important as humor 2 +95162 4963 as humor 2 +95163 4964 This is NOT a retread of `` Dead Poets ' Society . '' 2 +95164 4964 is NOT a retread of `` Dead Poets ' Society . '' 2 +95165 4964 is NOT a retread of `` Dead Poets ' Society . 3 +95166 4964 is NOT a retread of `` Dead Poets ' Society 2 +95167 4964 a retread of `` Dead Poets ' Society 1 +95168 4964 of `` Dead Poets ' Society 2 +95169 4964 Dead Poets ' Society 2 +95170 4964 Dead Poets ' 2 +95171 4964 Poets ' 2 +95172 4965 Pumpkin struts about with `` courage '' pinned to its huckster lapel while a yellow streak a mile wide decorates its back . 2 +95173 4965 struts about with `` courage '' pinned to its huckster lapel while a yellow streak a mile wide decorates its back . 0 +95174 4965 struts about with `` courage '' pinned to its huckster lapel while a yellow streak a mile wide decorates its back 2 +95175 4965 struts 2 +95176 4965 about with `` courage '' pinned to its huckster lapel while a yellow streak a mile wide decorates its back 1 +95177 4965 with `` courage '' pinned to its huckster lapel while a yellow streak a mile wide decorates its back 1 +95178 4965 `` courage '' pinned to its huckster lapel while a yellow streak a mile wide decorates its back 2 +95179 4965 `` courage '' 2 +95180 4965 courage '' 3 +95181 4965 pinned to its huckster lapel while a yellow streak a mile wide decorates its back 1 +95182 4965 pinned to its huckster lapel 1 +95183 4965 pinned 2 +95184 4965 to its huckster lapel 2 +95185 4965 its huckster lapel 1 +95186 4965 huckster lapel 3 +95187 4965 huckster 2 +95188 4965 lapel 2 +95189 4965 while a yellow streak a mile wide decorates its back 2 +95190 4965 a yellow streak a mile wide decorates its back 0 +95191 4965 a yellow streak a mile wide 2 +95192 4965 a yellow streak 2 +95193 4965 yellow streak 2 +95194 4965 a mile wide 2 +95195 4965 decorates its back 2 +95196 4965 decorates 2 +95197 4965 its back 2 +95198 4966 A directorial tour de force by Bernard Rose , ivans xtc . 3 +95199 4966 A directorial tour de force by Bernard Rose , ivans 4 +95200 4966 A directorial tour de force 3 +95201 4966 directorial tour de force 3 +95202 4966 tour de force 2 +95203 4966 de force 2 +95204 4966 by Bernard Rose , ivans 2 +95205 4966 Bernard Rose , ivans 2 +95206 4966 Bernard Rose , 2 +95207 4966 Bernard Rose 2 +95208 4966 Bernard 2 +95209 4966 xtc . 2 +95210 4967 May be the most undeserving victim of critical overkill since Town and Country . 2 +95211 4967 be the most undeserving victim of critical overkill since Town and Country . 2 +95212 4967 be the most undeserving victim of critical overkill since Town and Country 2 +95213 4967 be the most undeserving victim of critical overkill 3 +95214 4967 the most undeserving victim of critical overkill 2 +95215 4967 the most undeserving victim 2 +95216 4967 most undeserving victim 1 +95217 4967 most undeserving 1 +95218 4967 undeserving 2 +95219 4967 of critical overkill 1 +95220 4967 critical overkill 1 +95221 4967 since Town and Country 2 +95222 4967 Town and Country 2 +95223 4967 Town and 2 +95224 4968 A straight-ahead thriller that never rises above superficiality . 1 +95225 4968 A straight-ahead thriller that 3 +95226 4968 A straight-ahead thriller 3 +95227 4968 straight-ahead thriller 3 +95228 4968 never rises above superficiality . 0 +95229 4968 rises above superficiality . 4 +95230 4968 rises above superficiality 3 +95231 4968 above superficiality 3 +95232 4969 It tends to remind one of a really solid Woody Allen film , with its excellent use of New York locales and sharp writing 4 +95233 4969 tends to remind one of a really solid Woody Allen film , with its excellent use of New York locales and sharp writing 4 +95234 4969 to remind one of a really solid Woody Allen film , with its excellent use of New York locales and sharp writing 4 +95235 4969 remind one of a really solid Woody Allen film , with its excellent use of New York locales and sharp writing 4 +95236 4969 remind one of a really solid Woody Allen film , 3 +95237 4969 remind one of a really solid Woody Allen film 3 +95238 4969 one of a really solid Woody Allen film 4 +95239 4969 of a really solid Woody Allen film 4 +95240 4969 a really solid Woody Allen film 4 +95241 4969 really solid Woody Allen film 3 +95242 4969 really solid 3 +95243 4969 Woody Allen film 2 +95244 4969 Allen film 2 +95245 4969 with its excellent use of New York locales and sharp writing 3 +95246 4969 its excellent use of New York locales and sharp writing 4 +95247 4969 its excellent use 4 +95248 4969 of New York locales and sharp writing 3 +95249 4969 New York locales and sharp writing 3 +95250 4969 New York locales and 2 +95251 4969 New York locales 2 +95252 4969 York locales 2 +95253 4969 sharp writing 3 +95254 4970 Films are made of little moments . 2 +95255 4970 are made of little moments . 3 +95256 4970 are made of little moments 2 +95257 4970 made of little moments 3 +95258 4970 of little moments 2 +95259 4971 In a strange way , Egoyan has done too much . 2 +95260 4971 In a strange way 2 +95261 4971 a strange way 2 +95262 4971 strange way 2 +95263 4971 , Egoyan has done too much . 1 +95264 4971 Egoyan has done too much . 1 +95265 4971 has done too much . 2 +95266 4971 has done too much 1 +95267 4971 done too much 2 +95268 4972 Wise and deadpan humorous . 3 +95269 4972 Wise and deadpan 3 +95270 4972 humorous . 3 +95271 4973 Instead of panoramic sweep , Kapur gives us episodic choppiness , undermining the story 's emotional thrust . 1 +95272 4973 Instead of panoramic sweep 2 +95273 4973 of panoramic sweep 2 +95274 4973 panoramic sweep 2 +95275 4973 sweep 2 +95276 4973 , Kapur gives us episodic choppiness , undermining the story 's emotional thrust . 1 +95277 4973 Kapur gives us episodic choppiness , undermining the story 's emotional thrust . 1 +95278 4973 gives us episodic choppiness , undermining the story 's emotional thrust . 1 +95279 4973 gives us episodic choppiness , undermining the story 's emotional thrust 1 +95280 4973 episodic choppiness , undermining the story 's emotional thrust 1 +95281 4973 episodic choppiness , 1 +95282 4973 episodic choppiness 1 +95283 4973 choppiness 1 +95284 4973 undermining the story 's emotional thrust 3 +95285 4973 the story 's emotional thrust 2 +95286 4973 emotional thrust 2 +95287 4973 thrust 2 +95288 4974 It 's too interested in jerking off in all its Byzantine incarnations to bother pleasuring its audience . 0 +95289 4974 's too interested in jerking off in all its Byzantine incarnations to bother pleasuring its audience . 1 +95290 4974 's too interested in jerking off in all its Byzantine incarnations to bother pleasuring its audience 0 +95291 4974 too interested in jerking off in all its Byzantine incarnations to bother pleasuring its audience 1 +95292 4974 interested in jerking off in all its Byzantine incarnations to bother pleasuring its audience 0 +95293 4974 in jerking off in all its Byzantine incarnations to bother pleasuring its audience 1 +95294 4974 jerking off in all its Byzantine incarnations to bother pleasuring its audience 1 +95295 4974 jerking off in all its Byzantine incarnations 1 +95296 4974 jerking off 1 +95297 4974 in all its Byzantine incarnations 2 +95298 4974 all its Byzantine incarnations 2 +95299 4974 its Byzantine incarnations 2 +95300 4974 Byzantine incarnations 2 +95301 4974 Byzantine 2 +95302 4974 incarnations 2 +95303 4974 to bother pleasuring its audience 1 +95304 4974 bother pleasuring its audience 2 +95305 4974 pleasuring its audience 3 +95306 4974 pleasuring 3 +95307 4975 The film is a hoot , and is just as good , if not better than much of what 's on Saturday morning TV especially the pseudo-educational stuff we all ca n't stand . 4 +95308 4975 is a hoot , and is just as good , if not better than much of what 's on Saturday morning TV especially the pseudo-educational stuff we all ca n't stand . 4 +95309 4975 is a hoot , and is just as good , if not better than much of what 's on Saturday morning TV especially the pseudo-educational stuff we all ca n't stand 4 +95310 4975 is a hoot , and 3 +95311 4975 is a hoot , 3 +95312 4975 is just as good , if not better than much of what 's on Saturday morning TV especially the pseudo-educational stuff we all ca n't stand 3 +95313 4975 as good , if not better than much of what 's on Saturday morning TV especially the pseudo-educational stuff we all ca n't stand 3 +95314 4975 as good , if not better 3 +95315 4975 as good , if not 3 +95316 4975 as good , 3 +95317 4975 as good 3 +95318 4975 than much of what 's on Saturday morning TV especially the pseudo-educational stuff we all ca n't stand 1 +95319 4975 much of what 's on Saturday morning TV especially the pseudo-educational stuff we all ca n't stand 1 +95320 4975 of what 's on Saturday morning TV especially the pseudo-educational stuff we all ca n't stand 0 +95321 4975 what 's on Saturday morning TV especially the pseudo-educational stuff we all ca n't stand 1 +95322 4975 's on Saturday morning TV especially the pseudo-educational stuff we all ca n't stand 1 +95323 4975 's on Saturday morning TV 2 +95324 4975 on Saturday morning TV 2 +95325 4975 especially the pseudo-educational stuff we all ca n't stand 1 +95326 4975 especially the pseudo-educational stuff 2 +95327 4975 the pseudo-educational stuff 1 +95328 4975 pseudo-educational stuff 2 +95329 4975 pseudo-educational 2 +95330 4975 we all ca n't stand 1 +95331 4975 all ca n't stand 1 +95332 4975 ca n't stand 1 +95333 4976 ` What 's the Russian word for Wow !? ' 3 +95334 4976 What 's the Russian word for Wow !? ' 3 +95335 4976 's the Russian word for Wow !? ' 3 +95336 4976 the Russian word for Wow !? ' 3 +95337 4976 the Russian word 2 +95338 4976 Russian word 2 +95339 4976 for Wow !? ' 2 +95340 4976 Wow !? ' 2 +95341 4976 !? ' 2 +95342 4976 !? 2 +95343 4977 Pascale Bailly 's rom-com 2 +95344 4977 Pascale Bailly 's 2 +95345 4977 Pascale 2 +95346 4977 Bailly 's 2 +95347 4977 rom-com 2 +95348 4977 Audrey Tautou 2 +95349 4977 Audrey 2 +95350 4977 Tautou 2 +95351 4977 with another fabuleux destin 2 +95352 4977 another fabuleux destin 2 +95353 4977 fabuleux destin 2 +95354 4977 fabuleux 3 +95355 4977 destin 2 +95356 4977 i.e. , a banal spiritual quest 1 +95357 4977 i.e. , 2 +95358 4977 i.e. 2 +95359 4977 a banal spiritual quest 1 +95360 4977 banal spiritual quest 2 +95361 4978 A very pretty after-school special . 2 +95362 4978 A very pretty after-school special 3 +95363 4978 A very pretty after-school 3 +95364 4978 very pretty after-school 2 +95365 4978 very pretty 3 +95366 4979 Catch it ... if you can ! 3 +95367 4979 Catch it ... if you can 3 +95368 4979 Catch it ... 2 +95369 4979 Catch it 2 +95370 4979 if you can 2 +95371 4979 you can 2 +95372 4980 This real-life Hollywood fairy-tale is more engaging than the usual fantasies Hollywood produces . 3 +95373 4980 This real-life Hollywood fairy-tale 3 +95374 4980 real-life Hollywood fairy-tale 3 +95375 4980 Hollywood fairy-tale 2 +95376 4980 is more engaging than the usual fantasies Hollywood produces . 3 +95377 4980 is more engaging than the usual fantasies Hollywood produces 3 +95378 4980 engaging than the usual fantasies Hollywood produces 3 +95379 4980 than the usual fantasies Hollywood produces 2 +95380 4980 the usual fantasies Hollywood produces 2 +95381 4980 the usual fantasies Hollywood 2 +95382 4980 usual fantasies Hollywood 2 +95383 4980 fantasies Hollywood 2 +95384 4980 produces 2 +95385 4981 It is Scott 's convincing portrayal of Roger the sad cad that really gives the film its oomph . 3 +95386 4981 is Scott 's convincing portrayal of Roger the sad cad that really gives the film its oomph . 4 +95387 4981 is Scott 's convincing portrayal of Roger the sad cad that really gives the film its oomph 3 +95388 4981 Scott 's convincing portrayal of Roger the sad cad that really gives the film its oomph 3 +95389 4981 Scott 's convincing portrayal 3 +95390 4981 Scott 's 2 +95391 4981 convincing portrayal 4 +95392 4981 of Roger the sad cad that really gives the film its oomph 2 +95393 4981 Roger the sad cad that really gives the film its oomph 3 +95394 4981 the sad cad that really gives the film its oomph 3 +95395 4981 the sad cad 2 +95396 4981 sad cad 2 +95397 4981 cad 2 +95398 4981 that really gives the film its oomph 3 +95399 4981 really gives the film its oomph 4 +95400 4981 gives the film its oomph 2 +95401 4981 its oomph 2 +95402 4981 oomph 2 +95403 4982 Shallow . 1 +95404 4983 Screenwriter Dan Schneider and director Shawn Levy substitute volume and primary colors for humor and bite . 3 +95405 4983 Screenwriter Dan Schneider and director Shawn Levy 3 +95406 4983 Dan Schneider and director Shawn Levy 2 +95407 4983 Dan 2 +95408 4983 Schneider and director Shawn Levy 2 +95409 4983 and director Shawn Levy 2 +95410 4983 director Shawn Levy 2 +95411 4983 Shawn Levy 2 +95412 4983 Shawn 2 +95413 4983 Levy 2 +95414 4983 substitute volume and primary colors for humor and bite . 2 +95415 4983 substitute volume and primary colors for humor and bite 1 +95416 4983 volume and primary colors for humor and bite 2 +95417 4983 volume and primary colors 2 +95418 4983 and primary colors 2 +95419 4983 primary colors 2 +95420 4983 for humor and bite 3 +95421 4983 humor and bite 3 +95422 4984 A film that will enthrall the whole family . 3 +95423 4984 film that will enthrall the whole family . 4 +95424 4984 film that will enthrall the whole family 4 +95425 4984 that will enthrall the whole family 4 +95426 4984 will enthrall the whole family 4 +95427 4984 enthrall the whole family 4 +95428 4984 enthrall 3 +95429 4985 True to its animatronic roots : ... as stiff , ponderous and charmless as a mechanical apparatus ... ` The Country Bears ' should never have been brought out of hibernation . 0 +95430 4985 True to its animatronic roots : ... as stiff , ponderous and charmless as a mechanical apparatus 1 +95431 4985 True to its animatronic roots : 3 +95432 4985 True to its animatronic roots 3 +95433 4985 to its animatronic roots 2 +95434 4985 its animatronic roots 2 +95435 4985 animatronic roots 2 +95436 4985 ... as stiff , ponderous and charmless as a mechanical apparatus 0 +95437 4985 as stiff , ponderous and charmless as a mechanical apparatus 0 +95438 4985 as stiff , ponderous and charmless 0 +95439 4985 stiff , ponderous and charmless 0 +95440 4985 , ponderous and charmless 0 +95441 4985 ponderous and charmless 1 +95442 4985 ponderous and 1 +95443 4985 as a mechanical apparatus 3 +95444 4985 a mechanical apparatus 2 +95445 4985 mechanical apparatus 2 +95446 4985 apparatus 2 +95447 4985 ... ` The Country Bears ' should never have been brought out of hibernation . 1 +95448 4985 ` The Country Bears ' should never have been brought out of hibernation . 0 +95449 4985 ` The Country Bears ' should never have been brought out of hibernation 0 +95450 4985 The Country Bears ' should never have been brought out of hibernation 0 +95451 4985 ' should never have been brought out of hibernation 0 +95452 4985 should never have been brought out of hibernation 1 +95453 4985 should never 2 +95454 4985 have been brought out of hibernation 2 +95455 4985 been brought out of hibernation 2 +95456 4985 brought out of hibernation 2 +95457 4985 brought out 2 +95458 4985 of hibernation 2 +95459 4985 hibernation 2 +95460 4986 The filmmakers are playing to the Big Boys in New York and L.A. To that end , they mock the kind of folks they do n't understand , ones they figure the power-lunchers do n't care to understand , either . 1 +95461 4986 The filmmakers are playing to the Big Boys in New York and L.A. To that end 2 +95462 4986 are playing to the Big Boys in New York and L.A. To that end 2 +95463 4986 playing to the Big Boys in New York and L.A. To that end 2 +95464 4986 playing to the Big Boys in New York and L.A. 2 +95465 4986 to the Big Boys in New York and L.A. 2 +95466 4986 the Big Boys in New York and L.A. 2 +95467 4986 the Big Boys 2 +95468 4986 Big Boys 2 +95469 4986 in New York and L.A. 2 +95470 4986 New York and L.A. 2 +95471 4986 York and L.A. 2 +95472 4986 York and 2 +95473 4986 L.A. 2 +95474 4986 To that end 2 +95475 4986 that end 2 +95476 4986 , they mock the kind of folks they do n't understand , ones they figure the power-lunchers do n't care to understand , either . 1 +95477 4986 they mock the kind of folks they do n't understand , ones they figure the power-lunchers do n't care to understand , either . 2 +95478 4986 mock the kind of folks they do n't understand , ones they figure the power-lunchers do n't care to understand , either . 1 +95479 4986 mock the kind of folks they do n't understand , ones they figure the power-lunchers do n't care to understand , either 2 +95480 4986 mock 2 +95481 4986 the kind of folks they do n't understand , ones they figure the power-lunchers do n't care to understand , either 2 +95482 4986 of folks they do n't understand , ones they figure the power-lunchers do n't care to understand , either 1 +95483 4986 folks they do n't understand , ones they figure the power-lunchers do n't care to understand , either 1 +95484 4986 folks they do n't understand , 2 +95485 4986 folks they do n't understand 2 +95486 4986 they do n't understand 2 +95487 4986 do n't understand 2 +95488 4986 ones they figure the power-lunchers do n't care to understand , either 2 +95489 4986 they figure the power-lunchers do n't care to understand , either 1 +95490 4986 figure the power-lunchers do n't care to understand , either 1 +95491 4986 figure the power-lunchers do n't care to understand , 1 +95492 4986 figure the power-lunchers do n't care to understand 1 +95493 4986 the power-lunchers do n't care to understand 1 +95494 4986 the power-lunchers 2 +95495 4986 power-lunchers 3 +95496 4986 do n't care to understand 1 +95497 4986 care to understand 2 +95498 4987 The biggest problem with Roger Avary 's uproar against the MPAA is that , even in all its director 's cut glory , he 's made a film that 's barely shocking , barely interesting and most of all , barely anything . 0 +95499 4987 The biggest problem with Roger Avary 's uproar against the MPAA 1 +95500 4987 with Roger Avary 's uproar against the MPAA 2 +95501 4987 Roger Avary 's uproar against the MPAA 2 +95502 4987 Roger Avary 's uproar 2 +95503 4987 Roger Avary 's 2 +95504 4987 uproar 2 +95505 4987 against the MPAA 2 +95506 4987 the MPAA 2 +95507 4987 MPAA 2 +95508 4987 is that , even in all its director 's cut glory , he 's made a film that 's barely shocking , barely interesting and most of all , barely anything . 0 +95509 4987 is that , even in all its director 's cut glory , he 's made a film that 's barely shocking , barely interesting and most of all , barely anything 0 +95510 4987 that , even in all its director 's cut glory , he 's made a film that 's barely shocking , barely interesting and most of all , barely anything 0 +95511 4987 , even in all its director 's cut glory , he 's made a film that 's barely shocking , barely interesting and most of all , barely anything 1 +95512 4987 , even in all its director 's cut glory , 2 +95513 4987 even in all its director 's cut glory , 2 +95514 4987 in all its director 's cut glory , 3 +95515 4987 in all its director 's cut glory 3 +95516 4987 all its director 's cut glory 2 +95517 4987 its director 's cut glory 3 +95518 4987 its director 's 2 +95519 4987 cut glory 2 +95520 4987 he 's made a film that 's barely shocking , barely interesting and most of all , barely anything 0 +95521 4987 's made a film that 's barely shocking , barely interesting and most of all , barely anything 1 +95522 4987 made a film that 's barely shocking , barely interesting and most of all , barely anything 0 +95523 4987 a film that 's barely shocking , barely interesting and most of all , barely anything 0 +95524 4987 that 's barely shocking , barely interesting and most of all , barely anything 0 +95525 4987 's barely shocking , barely interesting and most of all , barely anything 0 +95526 4987 barely shocking , barely interesting and most of all , barely anything 1 +95527 4987 barely shocking , barely interesting and most of all , barely 1 +95528 4987 barely shocking , barely interesting and most of all , 1 +95529 4987 barely shocking , barely interesting and most of all 1 +95530 4987 barely shocking , barely interesting and most 0 +95531 4987 barely shocking , barely interesting and 2 +95532 4987 barely shocking , barely interesting 1 +95533 4987 barely shocking , 1 +95534 4987 barely shocking 1 +95535 4987 barely interesting 1 +95536 4988 -LRB- T -RRB- oo many of these gross out scenes ... 1 +95537 4988 oo many of these gross out scenes ... 1 +95538 4988 oo many of these gross out scenes 1 +95539 4988 oo many of these gross 0 +95540 4988 oo 2 +95541 4988 many of these gross 1 +95542 4988 of these gross 2 +95543 4988 these gross 2 +95544 4988 out scenes 2 +95545 4989 It 's a head-turner -- thoughtfully written , beautifully read and , finally , deeply humanizing . 4 +95546 4989 's a head-turner -- thoughtfully written , beautifully read and , finally , deeply humanizing . 4 +95547 4989 's a head-turner -- thoughtfully written , beautifully read and , finally , deeply humanizing 4 +95548 4989 a head-turner -- thoughtfully written , beautifully read and , finally , deeply humanizing 4 +95549 4989 a head-turner -- thoughtfully written , 4 +95550 4989 a head-turner -- thoughtfully written 3 +95551 4989 a head-turner 3 +95552 4989 head-turner 3 +95553 4989 -- thoughtfully written 3 +95554 4989 thoughtfully written 3 +95555 4989 thoughtfully 2 +95556 4989 beautifully read and , finally , deeply humanizing 4 +95557 4989 beautifully read and , finally , 3 +95558 4989 beautifully read and 4 +95559 4989 beautifully read 3 +95560 4989 , finally , 2 +95561 4989 finally , 2 +95562 4989 deeply humanizing 3 +95563 4989 humanizing 3 +95564 4990 To others , it will remind them that Hong Kong action cinema is still alive and kicking . 3 +95565 4990 To others 2 +95566 4990 , it will remind them that Hong Kong action cinema is still alive and kicking . 3 +95567 4990 it will remind them that Hong Kong action cinema is still alive and kicking . 3 +95568 4990 will remind them that Hong Kong action cinema is still alive and kicking . 3 +95569 4990 will remind them that Hong Kong action cinema is still alive and kicking 3 +95570 4990 remind them that Hong Kong action cinema is still alive and kicking 3 +95571 4990 remind them 2 +95572 4990 that Hong Kong action cinema is still alive and kicking 3 +95573 4990 Hong Kong action cinema is still alive and kicking 4 +95574 4990 Hong Kong action cinema 2 +95575 4990 Kong action cinema 3 +95576 4990 action cinema 2 +95577 4990 is still alive and kicking 2 +95578 4990 alive and kicking 2 +95579 4991 A poignant comedy that offers food for thought . 4 +95580 4991 A poignant comedy that offers food for 3 +95581 4991 A poignant comedy 3 +95582 4991 poignant comedy 3 +95583 4991 that offers food for 2 +95584 4991 offers food for 2 +95585 4991 offers food 2 +95586 4991 thought . 2 +95587 4992 About as original as a gangster sweating bullets while worrying about a contract on his life . 2 +95588 4992 About as original as a gangster sweating 0 +95589 4992 About as original 2 +95590 4992 as original 3 +95591 4992 as a gangster sweating 2 +95592 4992 a gangster sweating 2 +95593 4992 gangster sweating 2 +95594 4992 sweating 2 +95595 4992 bullets while worrying about a contract on his life . 2 +95596 4992 bullets while worrying about a contract on his life 2 +95597 4992 while worrying about a contract on his life 2 +95598 4992 worrying about a contract on his life 2 +95599 4992 worrying 2 +95600 4992 about a contract on his life 2 +95601 4992 a contract on his life 2 +95602 4992 a contract 2 +95603 4992 contract 2 +95604 4992 on his life 2 +95605 4993 Its weighty themes are too grave for youngsters , but the story is too steeped in fairy tales and other childish things to appeal much to teenagers . 1 +95606 4993 Its weighty themes are too grave for youngsters , but the story is too steeped in fairy tales and other childish things to appeal much to teenagers 2 +95607 4993 Its weighty themes are too grave for youngsters , but 2 +95608 4993 Its weighty themes are too grave for youngsters , 1 +95609 4993 Its weighty themes are too grave for youngsters 2 +95610 4993 Its weighty themes 2 +95611 4993 weighty themes 2 +95612 4993 are too grave for youngsters 1 +95613 4993 too grave for youngsters 1 +95614 4993 grave for youngsters 1 +95615 4993 for youngsters 2 +95616 4993 youngsters 2 +95617 4993 the story is too steeped in fairy tales and other childish things to appeal much to teenagers 1 +95618 4993 is too steeped in fairy tales and other childish things to appeal much to teenagers 1 +95619 4993 is too steeped in fairy tales and other childish things 1 +95620 4993 too steeped in fairy tales and other childish things 1 +95621 4993 steeped in fairy tales and other childish things 1 +95622 4993 in fairy tales and other childish things 2 +95623 4993 fairy tales and other childish things 2 +95624 4993 fairy tales and 2 +95625 4993 other childish things 2 +95626 4993 childish things 1 +95627 4993 to appeal much to teenagers 2 +95628 4993 appeal much to teenagers 2 +95629 4993 much to teenagers 2 +95630 4993 to teenagers 2 +95631 4994 While the story 's undeniably hard to follow , Iwai 's gorgeous visuals seduce . 3 +95632 4994 While the story 's undeniably hard to follow 1 +95633 4994 the story 's undeniably hard to follow 1 +95634 4994 's undeniably hard to follow 1 +95635 4994 's undeniably hard 2 +95636 4994 undeniably hard 1 +95637 4994 , Iwai 's gorgeous visuals seduce . 4 +95638 4994 Iwai 's gorgeous visuals seduce . 3 +95639 4994 Iwai 's gorgeous visuals 3 +95640 4994 seduce . 2 +95641 4995 Extraordinary debut from Josh Koury . 4 +95642 4995 Extraordinary debut from Josh Koury 3 +95643 4995 Extraordinary debut 4 +95644 4995 from Josh Koury 2 +95645 4995 Josh Koury 2 +95646 4995 Josh 2 +95647 4996 Smothered by its own solemnity . 2 +95648 4996 Smothered by its own solemnity 1 +95649 4996 Smothered 3 +95650 4996 by its own solemnity 2 +95651 4996 its own solemnity 3 +95652 4996 own solemnity 2 +95653 4996 solemnity 2 +95654 4997 Even if it pushes its agenda too forcefully , this remains a film about something , one that attempts and often achieves a level of connection and concern . 3 +95655 4997 Even if it pushes its agenda too forcefully 2 +95656 4997 if it pushes its agenda too forcefully 1 +95657 4997 it pushes its agenda too forcefully 1 +95658 4997 pushes its agenda too forcefully 0 +95659 4997 pushes its agenda 2 +95660 4997 its agenda 2 +95661 4997 too forcefully 2 +95662 4997 , this remains a film about something , one that attempts and often achieves a level of connection and concern . 3 +95663 4997 this remains a film about something , one that attempts and often achieves a level of connection and concern . 3 +95664 4997 remains a film about something , one that attempts and often achieves a level of connection and concern . 3 +95665 4997 remains a film about something , one that attempts and often achieves a level of connection and concern 3 +95666 4997 a film about something , one that attempts and often achieves a level of connection and concern 3 +95667 4997 about something , one that attempts and often achieves a level of connection and concern 3 +95668 4997 something , one that attempts and often achieves a level of connection and concern 3 +95669 4997 something , 2 +95670 4997 one that attempts and often achieves a level of connection and concern 3 +95671 4997 that attempts and often achieves a level of connection and concern 3 +95672 4997 attempts and often achieves a level of connection and concern 3 +95673 4997 attempts and 2 +95674 4997 often achieves a level of connection and concern 3 +95675 4997 achieves a level of connection and concern 3 +95676 4997 a level of connection and concern 3 +95677 4997 of connection and concern 2 +95678 4997 connection and concern 3 +95679 4997 connection and 2 +95680 4998 Writer-director Walter Hill and co-writer David Giler try to create characters out of the obvious cliches , but wind up using them as punching bags . 1 +95681 4998 Writer-director Walter Hill and co-writer David Giler 2 +95682 4998 Writer-director Walter Hill and 2 +95683 4998 Writer-director Walter Hill 2 +95684 4998 co-writer David Giler 2 +95685 4998 David Giler 2 +95686 4998 Giler 2 +95687 4998 try to create characters out of the obvious cliches , but wind up using them as punching bags . 1 +95688 4998 try to create characters out of the obvious cliches , but wind up using them as punching bags 1 +95689 4998 try to create characters out of the obvious cliches , but 1 +95690 4998 try to create characters out of the obvious cliches , 1 +95691 4998 try to create characters out of the obvious cliches 2 +95692 4998 to create characters out of the obvious cliches 2 +95693 4998 create characters out of the obvious cliches 2 +95694 4998 create characters out 2 +95695 4998 create characters 3 +95696 4998 of the obvious cliches 1 +95697 4998 the obvious cliches 1 +95698 4998 obvious cliches 1 +95699 4998 wind up using them as punching bags 1 +95700 4998 using them as punching bags 1 +95701 4998 using them 2 +95702 4998 as punching bags 3 +95703 4998 punching bags 2 +95704 4998 bags 1 +95705 4999 Secret Ballot is a funny , puzzling movie ambiguous enough to be engaging and oddly moving . 4 +95706 4999 is a funny , puzzling movie ambiguous enough to be engaging and oddly moving . 4 +95707 4999 is a funny , puzzling movie ambiguous enough to be engaging and oddly moving 3 +95708 4999 a funny , puzzling movie ambiguous enough to be engaging and oddly moving 4 +95709 4999 a funny , puzzling movie 4 +95710 4999 funny , puzzling movie 3 +95711 4999 funny , puzzling 2 +95712 4999 , puzzling 2 +95713 4999 ambiguous enough to be engaging and oddly moving 3 +95714 4999 ambiguous enough to be engaging and 3 +95715 4999 ambiguous enough to be engaging 3 +95716 4999 ambiguous enough 2 +95717 4999 to be engaging 3 +95718 4999 be engaging 3 +95719 4999 oddly moving 3 +95720 5000 It 's as sorry a mess as its director 's diabolical debut , Mad Cows . 0 +95721 5000 's as sorry a mess as its director 's diabolical debut , Mad Cows . 0 +95722 5000 's as sorry a mess as its director 's diabolical debut , Mad Cows 0 +95723 5000 's as sorry 2 +95724 5000 as sorry 2 +95725 5000 a mess as its director 's diabolical debut , Mad Cows 0 +95726 5000 as its director 's diabolical debut , Mad Cows 2 +95727 5000 its director 's diabolical debut , Mad Cows 2 +95728 5000 its director 's diabolical debut , 2 +95729 5000 its director 's diabolical debut 2 +95730 5000 diabolical debut 2 +95731 5000 diabolical 2 +95732 5000 Mad Cows 2 +95733 5000 Cows 2 +95734 5001 While this film has an ` A ' list cast and some strong supporting players , the tale -- like its central figure , Vivi -- is just a little bit hard to love . 1 +95735 5001 While this film has an ` A ' list cast and some strong supporting players 3 +95736 5001 this film has an ` A ' list cast and some strong supporting players 3 +95737 5001 has an ` A ' list cast and some strong supporting players 3 +95738 5001 an ` A ' list cast and some strong supporting players 3 +95739 5001 an ` A ' list cast and 3 +95740 5001 an ` A ' list cast 4 +95741 5001 ` A ' list cast 3 +95742 5001 A ' list cast 3 +95743 5001 A ' 2 +95744 5001 list cast 2 +95745 5001 some strong supporting players 3 +95746 5001 strong supporting players 3 +95747 5001 supporting players 2 +95748 5001 , the tale -- like its central figure , Vivi -- is just a little bit hard to love . 1 +95749 5001 the tale -- like its central figure , Vivi -- is just a little bit hard to love . 1 +95750 5001 the tale -- like its central figure , Vivi -- 2 +95751 5001 -- like its central figure , Vivi -- 2 +95752 5001 like its central figure , Vivi -- 2 +95753 5001 like its central figure , Vivi 2 +95754 5001 its central figure , Vivi 2 +95755 5001 its central figure , 2 +95756 5001 its central figure 2 +95757 5001 central figure 2 +95758 5001 Vivi 2 +95759 5001 is just a little bit hard to love . 1 +95760 5001 is just a little bit hard to love 1 +95761 5001 is just a little bit hard 2 +95762 5001 just a little bit hard 2 +95763 5002 As for children , they wo n't enjoy the movie at all . 1 +95764 5002 As for children 2 +95765 5002 , they wo n't enjoy the movie at all . 0 +95766 5002 they wo n't enjoy the movie at all . 0 +95767 5002 wo n't enjoy the movie at all . 1 +95768 5002 wo n't enjoy the movie at all 0 +95769 5002 enjoy the movie at all 2 +95770 5002 enjoy the movie 4 +95771 5003 It 's no lie -- Big Fat Liar is a real charmer . 4 +95772 5003 It 's no lie -- Big Fat Liar is a real charmer 4 +95773 5003 It 's no lie -- 2 +95774 5003 It 's no lie 3 +95775 5003 's no lie 2 +95776 5003 no lie 3 +95777 5003 Big Fat Liar is a real charmer 4 +95778 5004 A witty , low-key romantic comedy . 4 +95779 5004 A witty , low-key romantic comedy 4 +95780 5004 A witty , 2 +95781 5004 A witty 3 +95782 5004 low-key romantic comedy 3 +95783 5005 Streamlined to a tight , brisk 85-minute screwball thriller , `` Big Trouble '' is funny , harmless and as substantial as a tub of popcorn with extra butter . 2 +95784 5005 Streamlined to a tight , brisk 85-minute screwball thriller 2 +95785 5005 to a tight , brisk 85-minute screwball thriller 3 +95786 5005 a tight , brisk 85-minute screwball thriller 2 +95787 5005 tight , brisk 85-minute screwball thriller 3 +95788 5005 , brisk 85-minute screwball thriller 2 +95789 5005 brisk 85-minute screwball thriller 3 +95790 5005 85-minute screwball thriller 2 +95791 5005 85-minute 2 +95792 5005 screwball thriller 2 +95793 5005 , `` Big Trouble '' is funny , harmless and as substantial as a tub of popcorn with extra butter . 4 +95794 5005 `` Big Trouble '' is funny , harmless and as substantial as a tub of popcorn with extra butter . 2 +95795 5005 `` Big Trouble '' 2 +95796 5005 Big Trouble '' 2 +95797 5005 Trouble '' 1 +95798 5005 is funny , harmless and as substantial as a tub of popcorn with extra butter . 3 +95799 5005 is funny , harmless and as substantial as a tub of popcorn with extra butter 4 +95800 5005 is funny , harmless and as substantial as a tub of popcorn 3 +95801 5005 funny , harmless and as substantial as a tub of popcorn 3 +95802 5005 funny , harmless and as substantial 3 +95803 5005 funny , harmless and 3 +95804 5005 funny , harmless 3 +95805 5005 as substantial 3 +95806 5005 as a tub of popcorn 2 +95807 5005 a tub of popcorn 2 +95808 5005 a tub 2 +95809 5005 tub 2 +95810 5005 with extra butter 3 +95811 5005 extra butter 2 +95812 5005 butter 2 +95813 5006 Death might be a release . 1 +95814 5006 might be a release . 2 +95815 5006 might be a release 2 +95816 5006 be a release 2 +95817 5006 a release 2 +95818 5007 Spirit is a visual treat , and it takes chances that are bold by studio standards , but it lacks a strong narrative . 3 +95819 5007 Spirit is a visual treat , and it takes chances that are bold by studio standards , but it lacks a strong narrative 2 +95820 5007 Spirit is a visual treat , and it takes chances that are bold by studio standards , but 3 +95821 5007 Spirit is a visual treat , and it takes chances that are bold by studio standards , 3 +95822 5007 Spirit is a visual treat , and it takes chances that are bold by studio standards 4 +95823 5007 Spirit is a visual treat , and 3 +95824 5007 Spirit is a visual treat , 3 +95825 5007 Spirit is a visual treat 4 +95826 5007 is a visual treat 3 +95827 5007 a visual treat 4 +95828 5007 visual treat 3 +95829 5007 it takes chances that are bold by studio standards 3 +95830 5007 takes chances that are bold by studio standards 3 +95831 5007 chances that are bold by studio standards 2 +95832 5007 that are bold by studio standards 2 +95833 5007 are bold by studio standards 2 +95834 5007 bold by studio standards 3 +95835 5007 by studio standards 2 +95836 5007 studio standards 2 +95837 5007 it lacks a strong narrative 1 +95838 5007 lacks a strong narrative 1 +95839 5007 a strong narrative 3 +95840 5007 strong narrative 3 +95841 5008 If you go , pack your knitting needles . 0 +95842 5008 If you go 2 +95843 5008 you go 2 +95844 5008 , pack your knitting needles . 2 +95845 5008 pack your knitting needles . 0 +95846 5008 pack your knitting needles 0 +95847 5008 your knitting needles 2 +95848 5008 knitting needles 2 +95849 5008 knitting 2 +95850 5008 needles 2 +95851 5009 Implicitly acknowledges and celebrates the glorious chicanery and self-delusion of this most American of businesses , and for that reason it may be the most oddly honest Hollywood document of all . 3 +95852 5009 Implicitly acknowledges and celebrates the glorious chicanery and self-delusion of this most American of businesses , and for that reason it may be the most oddly honest Hollywood document of all 4 +95853 5009 Implicitly acknowledges and celebrates the glorious chicanery and self-delusion of this most American of businesses , and 2 +95854 5009 Implicitly acknowledges and celebrates the glorious chicanery and self-delusion of this most American of businesses , 2 +95855 5009 Implicitly acknowledges and celebrates the glorious chicanery and self-delusion of this most American of businesses 3 +95856 5009 Implicitly 3 +95857 5009 acknowledges and celebrates the glorious chicanery and self-delusion of this most American of businesses 3 +95858 5009 acknowledges and celebrates 3 +95859 5009 acknowledges and 2 +95860 5009 the glorious chicanery and self-delusion of this most American of businesses 3 +95861 5009 the glorious chicanery and self-delusion 3 +95862 5009 glorious chicanery and self-delusion 2 +95863 5009 chicanery and self-delusion 1 +95864 5009 chicanery and 2 +95865 5009 chicanery 2 +95866 5009 self-delusion 2 +95867 5009 of this most American of businesses 2 +95868 5009 this most American of businesses 2 +95869 5009 this most American 2 +95870 5009 most American 2 +95871 5009 of businesses 3 +95872 5009 businesses 2 +95873 5009 for that reason it may be the most oddly honest Hollywood document of all 3 +95874 5009 for that reason 2 +95875 5009 that reason 2 +95876 5009 it may be the most oddly honest Hollywood document of all 3 +95877 5009 may be the most oddly honest Hollywood document of all 3 +95878 5009 be the most oddly honest Hollywood document of all 3 +95879 5009 the most oddly honest Hollywood document of all 3 +95880 5009 the most oddly honest Hollywood document 3 +95881 5009 most oddly honest Hollywood document 3 +95882 5009 most oddly honest 3 +95883 5009 oddly honest 3 +95884 5009 Hollywood document 2 +95885 5010 Much of The Lady and the Duke is about quiet , decisive moments between members of the cultural elite as they determine how to proceed as the world implodes . 3 +95886 5010 Much of The Lady and the Duke 2 +95887 5010 of The Lady and the Duke 2 +95888 5010 The Lady and the Duke 2 +95889 5010 the Duke 2 +95890 5010 is about quiet , decisive moments between members of the cultural elite as they determine how to proceed as the world implodes . 3 +95891 5010 is about quiet , decisive moments between members of the cultural elite as they determine how to proceed as the world implodes 3 +95892 5010 is about quiet , decisive moments between members of the cultural elite 2 +95893 5010 about quiet , decisive moments between members of the cultural elite 2 +95894 5010 quiet , decisive moments between members of the cultural elite 3 +95895 5010 quiet , decisive moments 3 +95896 5010 , decisive moments 3 +95897 5010 decisive moments 2 +95898 5010 decisive 3 +95899 5010 between members of the cultural elite 2 +95900 5010 members of the cultural elite 1 +95901 5010 of the cultural elite 2 +95902 5010 the cultural elite 2 +95903 5010 cultural elite 3 +95904 5010 elite 3 +95905 5010 as they determine how to proceed as the world implodes 2 +95906 5010 they determine how to proceed as the world implodes 2 +95907 5010 determine how to proceed as the world implodes 2 +95908 5010 determine 2 +95909 5010 how to proceed as the world implodes 2 +95910 5010 to proceed as the world implodes 1 +95911 5010 proceed as the world implodes 2 +95912 5010 proceed 2 +95913 5010 as the world implodes 2 +95914 5010 the world implodes 2 +95915 5010 world implodes 2 +95916 5010 implodes 1 +95917 5011 The movie is pretty funny now and then without in any way demeaning its subjects . 3 +95918 5011 is pretty funny now and then without in any way demeaning its subjects . 3 +95919 5011 is pretty funny now and then without in any way demeaning its subjects 3 +95920 5011 is pretty funny 3 +95921 5011 now and then without in any way demeaning its subjects 3 +95922 5011 then without in any way demeaning its subjects 2 +95923 5011 without in any way demeaning its subjects 3 +95924 5011 in any way demeaning its subjects 1 +95925 5011 any way demeaning its subjects 1 +95926 5011 demeaning its subjects 1 +95927 5011 demeaning 1 +95928 5012 A movie that 's held captive by mediocrity . 1 +95929 5012 A movie that 's held 3 +95930 5012 that 's held 2 +95931 5012 's held 2 +95932 5012 captive by mediocrity . 1 +95933 5012 captive by mediocrity 1 +95934 5012 captive 2 +95935 5012 by mediocrity 1 +95936 5013 It 's a treat -- a delightful , witty , improbable romantic comedy with a zippy jazzy score ... Grant and Bullock make it look as though they are having so much fun . 4 +95937 5013 It 's a treat -- a delightful , witty , improbable romantic comedy with a zippy jazzy score ... Grant and Bullock make it look as though they are having so much fun 4 +95938 5013 It 's a treat -- a delightful , witty , improbable romantic comedy with a zippy jazzy score ... 4 +95939 5013 It 's a treat -- a delightful , witty , improbable romantic comedy with a zippy jazzy score 4 +95940 5013 's a treat -- a delightful , witty , improbable romantic comedy with a zippy jazzy score 4 +95941 5013 a treat -- a delightful , witty , improbable romantic comedy with a zippy jazzy score 4 +95942 5013 a treat -- 4 +95943 5013 a delightful , witty , improbable romantic comedy with a zippy jazzy score 4 +95944 5013 a delightful , witty , improbable romantic comedy 4 +95945 5013 delightful , witty , improbable romantic comedy 4 +95946 5013 , witty , improbable romantic comedy 3 +95947 5013 witty , improbable romantic comedy 3 +95948 5013 , improbable romantic comedy 2 +95949 5013 improbable romantic comedy 2 +95950 5013 with a zippy jazzy score 4 +95951 5013 a zippy jazzy score 4 +95952 5013 zippy jazzy score 4 +95953 5013 zippy 2 +95954 5013 jazzy score 3 +95955 5013 Grant and Bullock make it look as though they are having so much fun 4 +95956 5013 Grant and Bullock 2 +95957 5013 make it look as though they are having so much fun 3 +95958 5013 it look as though they are having so much fun 3 +95959 5013 look as though they are having so much fun 3 +95960 5013 as though they are having so much fun 3 +95961 5013 though they are having so much fun 3 +95962 5013 they are having so much fun 3 +95963 5013 are having so much fun 4 +95964 5013 having so much fun 4 +95965 5014 Whereas the extremely competent hitman films such as Pulp Fiction and Get Shorty resonate a sardonic verve to their caustic purpose for existing , Who Is Cletis Tout ? 2 +95966 5014 Whereas the extremely competent hitman films such as Pulp Fiction and Get Shorty resonate a sardonic verve to their caustic purpose for existing 3 +95967 5014 the extremely competent hitman films such as Pulp Fiction and Get Shorty resonate a sardonic verve to their caustic purpose for existing 2 +95968 5014 the extremely competent hitman films such as Pulp Fiction and Get Shorty 3 +95969 5014 the extremely competent hitman films 3 +95970 5014 extremely competent hitman films 3 +95971 5014 extremely competent 4 +95972 5014 hitman films 2 +95973 5014 hitman 2 +95974 5014 such as Pulp Fiction and Get Shorty 2 +95975 5014 as Pulp Fiction and Get Shorty 2 +95976 5014 Pulp Fiction and Get Shorty 2 +95977 5014 Pulp Fiction and 2 +95978 5014 Pulp Fiction 2 +95979 5014 Get Shorty 2 +95980 5014 Shorty 2 +95981 5014 resonate a sardonic verve to their caustic purpose for existing 2 +95982 5014 resonate a sardonic verve 2 +95983 5014 a sardonic verve 2 +95984 5014 sardonic verve 1 +95985 5014 to their caustic purpose for existing 2 +95986 5014 their caustic purpose for existing 1 +95987 5014 their caustic purpose 2 +95988 5014 caustic purpose 2 +95989 5014 caustic 2 +95990 5014 for existing 2 +95991 5014 existing 2 +95992 5014 , Who Is Cletis Tout ? 2 +95993 5015 It 's probably worth catching solely on its visual merits . 3 +95994 5015 's probably worth catching solely on its visual merits . 2 +95995 5015 's probably worth catching solely on its visual merits 3 +95996 5015 's probably worth 2 +95997 5015 catching solely on its visual merits 3 +95998 5015 catching solely 2 +95999 5015 on its visual merits 2 +96000 5015 its visual merits 3 +96001 5015 visual merits 3 +96002 5016 Bartlett 's hero remains a reactive cipher , when opening the man 's head and heart is the only imaginable reason for the film to be made . 2 +96003 5016 Bartlett 's hero 2 +96004 5016 remains a reactive cipher , when opening the man 's head and heart is the only imaginable reason for the film to be made . 2 +96005 5016 remains a reactive cipher , when opening the man 's head and heart is the only imaginable reason for the film to be made 1 +96006 5016 a reactive cipher , when opening the man 's head and heart is the only imaginable reason for the film to be made 2 +96007 5016 a reactive cipher , 2 +96008 5016 a reactive cipher 2 +96009 5016 reactive cipher 2 +96010 5016 reactive 2 +96011 5016 when opening the man 's head and heart is the only imaginable reason for the film to be made 2 +96012 5016 opening the man 's head and heart is the only imaginable reason for the film to be made 1 +96013 5016 opening the man 's head and heart 2 +96014 5016 the man 's head and heart 2 +96015 5016 head and heart 3 +96016 5016 is the only imaginable reason for the film to be made 2 +96017 5016 the only imaginable reason for the film to be made 1 +96018 5016 the only imaginable reason 2 +96019 5016 only imaginable reason 2 +96020 5016 only imaginable 2 +96021 5016 for the film to be made 2 +96022 5016 the film to be made 2 +96023 5016 film to be made 2 +96024 5016 to be made 2 +96025 5016 be made 2 +96026 5017 You may think you have figured out the con and the players in this debut film by Argentine director Fabian Bielinsky , but while you were thinking someone made off with your wallet . 1 +96027 5017 may think you have figured out the con and the players in this debut film by Argentine director Fabian Bielinsky , but while you were thinking someone made off with your wallet . 2 +96028 5017 may think you have figured out the con and the players in this debut film by Argentine director Fabian Bielinsky , but while you were thinking someone made off with your wallet 2 +96029 5017 think you have figured out the con and the players in this debut film by Argentine director Fabian Bielinsky , but while you were thinking someone made off with your wallet 1 +96030 5017 you have figured out the con and the players in this debut film by Argentine director Fabian Bielinsky , but while you were thinking someone made off with your wallet 2 +96031 5017 you have figured out the con and the players in this debut film by Argentine director Fabian Bielinsky , but 2 +96032 5017 you have figured out the con and the players in this debut film by Argentine director Fabian Bielinsky , 2 +96033 5017 you have figured out the con and the players in this debut film by Argentine director Fabian Bielinsky 3 +96034 5017 have figured out the con and the players in this debut film by Argentine director Fabian Bielinsky 2 +96035 5017 figured out the con and the players in this debut film by Argentine director Fabian Bielinsky 2 +96036 5017 figured out the con and the players in this debut film 2 +96037 5017 figured out the con and the players 2 +96038 5017 out the con and the players 2 +96039 5017 the con and the players 2 +96040 5017 the con and 2 +96041 5017 in this debut film 2 +96042 5017 this debut film 2 +96043 5017 debut film 2 +96044 5017 by Argentine director Fabian Bielinsky 2 +96045 5017 Argentine director Fabian Bielinsky 2 +96046 5017 Argentine 2 +96047 5017 director Fabian Bielinsky 2 +96048 5017 Fabian Bielinsky 2 +96049 5017 Fabian 2 +96050 5017 while you were thinking someone made off with your wallet 2 +96051 5017 you were thinking someone made off with your wallet 1 +96052 5017 were thinking someone made off with your wallet 2 +96053 5017 thinking someone made off with your wallet 1 +96054 5017 someone made off with your wallet 1 +96055 5017 made off with your wallet 1 +96056 5017 made off 2 +96057 5017 with your wallet 2 +96058 5017 your wallet 2 +96059 5018 A sharp and quick documentary that is funny and pithy , while illuminating an era of theatrical comedy that , while past , really is n't . 3 +96060 5018 A sharp and quick documentary that is funny and pithy , while illuminating an era of theatrical comedy that , while past , 4 +96061 5018 A sharp and quick documentary 3 +96062 5018 sharp and quick documentary 3 +96063 5018 sharp and quick 3 +96064 5018 sharp and 3 +96065 5018 that is funny and pithy , while illuminating an era of theatrical comedy that , while past , 3 +96066 5018 is funny and pithy , while illuminating an era of theatrical comedy that , while past , 3 +96067 5018 is funny and pithy , 4 +96068 5018 is funny and pithy 4 +96069 5018 funny and pithy 3 +96070 5018 pithy 2 +96071 5018 while illuminating an era of theatrical comedy that , while past , 3 +96072 5018 illuminating an era of theatrical comedy that , while past , 3 +96073 5018 an era of theatrical comedy that , while past , 3 +96074 5018 of theatrical comedy that , while past , 2 +96075 5018 theatrical comedy that , while past , 2 +96076 5018 theatrical comedy 2 +96077 5018 that , while past , 2 +96078 5018 , while past , 2 +96079 5018 while past , 2 +96080 5018 past , 2 +96081 5018 really is n't . 2 +96082 5019 A major waste ... generic . 0 +96083 5019 A major waste ... generic 0 +96084 5019 A major waste ... 0 +96085 5019 A major waste 0 +96086 5019 major waste 0 +96087 5020 -LRB- Johnnie To and Wai Ka Fai are -RRB- sure to find an enthusiastic audience among American action-adventure buffs , but the film 's interests may be too narrow to attract crossover viewers . 1 +96088 5020 Johnnie To and Wai Ka Fai are -RRB- sure to find an enthusiastic audience among American action-adventure buffs , but the film 's interests may be too narrow to attract crossover viewers . 1 +96089 5020 Johnnie To and Wai Ka Fai are -RRB- sure to find an enthusiastic audience among American action-adventure buffs , but the film 's interests 2 +96090 5020 Johnnie 2 +96091 5020 To and Wai Ka Fai are -RRB- sure to find an enthusiastic audience among American action-adventure buffs , but the film 's interests 1 +96092 5020 and Wai Ka Fai are -RRB- sure to find an enthusiastic audience among American action-adventure buffs , but the film 's interests 3 +96093 5020 and Wai Ka Fai are -RRB- 2 +96094 5020 and Wai 2 +96095 5020 Wai 2 +96096 5020 Ka Fai are -RRB- 2 +96097 5020 Ka Fai are 2 +96098 5020 Ka Fai 2 +96099 5020 Ka 2 +96100 5020 Fai 2 +96101 5020 sure to find an enthusiastic audience among American action-adventure buffs , but the film 's interests 3 +96102 5020 to find an enthusiastic audience among American action-adventure buffs , but the film 's interests 1 +96103 5020 find an enthusiastic audience among American action-adventure buffs , but the film 's interests 3 +96104 5020 find an enthusiastic audience 3 +96105 5020 an enthusiastic audience 3 +96106 5020 enthusiastic audience 3 +96107 5020 among American action-adventure buffs , but the film 's interests 2 +96108 5020 American action-adventure buffs , but the film 's interests 2 +96109 5020 American action-adventure buffs , but 2 +96110 5020 American action-adventure buffs , 2 +96111 5020 American action-adventure buffs 3 +96112 5020 action-adventure buffs 3 +96113 5020 action-adventure 2 +96114 5020 the film 's interests 2 +96115 5020 interests 2 +96116 5020 may be too narrow to attract crossover viewers . 1 +96117 5020 may be too narrow to attract crossover viewers 2 +96118 5020 be too narrow to attract crossover viewers 1 +96119 5020 too narrow to attract crossover viewers 1 +96120 5020 narrow to attract crossover viewers 2 +96121 5020 narrow 2 +96122 5020 to attract crossover viewers 2 +96123 5020 attract crossover viewers 2 +96124 5020 crossover viewers 2 +96125 5020 crossover 2 +96126 5021 The movie is a dud . 0 +96127 5021 is a dud . 0 +96128 5021 is a dud 1 +96129 5022 It 's a fun adventure movie for kids -LRB- of all ages -RRB- that like adventure . 4 +96130 5022 's a fun adventure movie for kids -LRB- of all ages -RRB- that like adventure . 3 +96131 5022 's a fun adventure movie for kids -LRB- of all ages -RRB- that like adventure 4 +96132 5022 a fun adventure movie for kids -LRB- of all ages -RRB- that like adventure 3 +96133 5022 a fun adventure movie 4 +96134 5022 fun adventure movie 3 +96135 5022 adventure movie 3 +96136 5022 for kids -LRB- of all ages -RRB- that like adventure 3 +96137 5022 kids -LRB- of all ages -RRB- that like adventure 3 +96138 5022 kids -LRB- of all ages -RRB- 2 +96139 5022 -LRB- of all ages -RRB- 2 +96140 5022 of all ages -RRB- 2 +96141 5022 that like adventure 2 +96142 5022 like adventure 2 +96143 5023 It 's the type of film about growing up that we do n't see often enough these days : realistic , urgent , and not sugarcoated in the least . 3 +96144 5023 It 's the type of film about growing up that we do n't see often enough these days : realistic , urgent , and not sugarcoated in the least 4 +96145 5023 It 's the type of film about growing up that we do n't see often enough these days : realistic , urgent , and not 3 +96146 5023 It 's the type of film about growing up that we do n't see often enough these days : realistic , urgent , and 3 +96147 5023 It 's the type of film about growing up that we do n't see often enough these days : realistic , urgent , 3 +96148 5023 It 's the type of film about growing up that we do n't see often enough these days : realistic , urgent 3 +96149 5023 's the type of film about growing up that we do n't see often enough these days : realistic , urgent 4 +96150 5023 the type of film about growing up that we do n't see often enough these days : realistic , urgent 3 +96151 5023 the type of film about growing up that we do n't see often enough these days : 4 +96152 5023 the type of film about growing up that we do n't see often enough these days 3 +96153 5023 of film about growing up that we do n't see often enough these days 3 +96154 5023 film about growing up that we do n't see often enough these days 3 +96155 5023 about growing up that we do n't see often enough these days 3 +96156 5023 growing up that we do n't see often enough these days 3 +96157 5023 that we do n't see often enough these days 2 +96158 5023 we do n't see often enough these days 2 +96159 5023 do n't see often enough these days 3 +96160 5023 see often enough these days 2 +96161 5023 see often enough 2 +96162 5023 often enough 2 +96163 5023 realistic , urgent 3 +96164 5023 , urgent 2 +96165 5023 urgent 2 +96166 5023 sugarcoated in the least 2 +96167 5023 sugarcoated 2 +96168 5024 A great script brought down by lousy direction . 1 +96169 5024 A great script 4 +96170 5024 great script 4 +96171 5024 brought down by lousy direction . 0 +96172 5024 brought down by lousy direction 1 +96173 5024 brought down 1 +96174 5024 by lousy direction 1 +96175 5024 lousy direction 1 +96176 5025 Unless you come in to the film with a skateboard under your arm , you 're going to feel like you were n't invited to the party . 1 +96177 5025 Unless you come in to the film with a skateboard under your arm 2 +96178 5025 you come in to the film with a skateboard under your arm 2 +96179 5025 come in to the film with a skateboard under your arm 2 +96180 5025 come in to the film with a skateboard 2 +96181 5025 in to the film with a skateboard 2 +96182 5025 to the film with a skateboard 2 +96183 5025 the film with a skateboard 2 +96184 5025 with a skateboard 2 +96185 5025 a skateboard 2 +96186 5025 under your arm 2 +96187 5025 your arm 2 +96188 5025 arm 2 +96189 5025 , you 're going to feel like you were n't invited to the party . 1 +96190 5025 you 're going to feel like you were n't invited to the party . 1 +96191 5025 're going to feel like you were n't invited to the party . 1 +96192 5025 're going to feel like you were n't invited to the party 0 +96193 5025 going to feel like you were n't invited to the party 1 +96194 5025 to feel like you were n't invited to the party 1 +96195 5025 feel like you were n't invited to the party 1 +96196 5025 like you were n't invited to the party 1 +96197 5025 you were n't invited to the party 1 +96198 5025 were n't invited to the party 2 +96199 5025 invited to the party 3 +96200 5025 invited 2 +96201 5025 to the party 2 +96202 5025 the party 2 +96203 5026 It 's so downbeat and nearly humorless that it becomes a chore to sit through -- despite some first-rate performances by its lead . 1 +96204 5026 's so downbeat and nearly humorless that it becomes a chore to sit through -- despite some first-rate performances by its lead . 2 +96205 5026 's so downbeat and nearly humorless that it becomes a chore to sit through -- despite some first-rate performances by its lead 1 +96206 5026 's so downbeat and nearly humorless 1 +96207 5026 so downbeat and nearly humorless 0 +96208 5026 so downbeat and 1 +96209 5026 so downbeat 1 +96210 5026 nearly humorless 2 +96211 5026 that it becomes a chore to sit through -- despite some first-rate performances by its lead 1 +96212 5026 it becomes a chore to sit through -- despite some first-rate performances by its lead 1 +96213 5026 becomes a chore to sit through -- despite some first-rate performances by its lead 1 +96214 5026 a chore to sit through -- despite some first-rate performances by its lead 0 +96215 5026 chore to sit through -- despite some first-rate performances by its lead 0 +96216 5026 chore 1 +96217 5026 to sit through -- despite some first-rate performances by its lead 2 +96218 5026 sit through -- despite some first-rate performances by its lead 1 +96219 5026 sit through -- despite some first-rate performances 3 +96220 5026 sit through -- 2 +96221 5026 despite some first-rate performances 3 +96222 5026 some first-rate performances 3 +96223 5026 first-rate performances 3 +96224 5026 by its lead 2 +96225 5026 its lead 2 +96226 5027 No Such Thing is sort of a minimalist Beauty and the Beast , but in this case the Beast should definitely get top billing . 4 +96227 5027 No Such Thing is sort of a minimalist Beauty and the Beast , but in this case the Beast should definitely get top billing 2 +96228 5027 No Such Thing is sort of a minimalist Beauty and the Beast , but 2 +96229 5027 No Such Thing is sort of a minimalist Beauty and the Beast , 2 +96230 5027 No Such Thing is sort of a minimalist Beauty and the Beast 2 +96231 5027 is sort of a minimalist Beauty and the Beast 2 +96232 5027 sort of a minimalist Beauty and the Beast 2 +96233 5027 of a minimalist Beauty and the Beast 2 +96234 5027 a minimalist Beauty and the Beast 1 +96235 5027 a minimalist Beauty and 3 +96236 5027 a minimalist Beauty 3 +96237 5027 minimalist Beauty 2 +96238 5027 the Beast 2 +96239 5027 in this case the Beast should definitely get top billing 2 +96240 5027 in this case 2 +96241 5027 this case 2 +96242 5027 the Beast should definitely get top billing 3 +96243 5027 should definitely get top billing 3 +96244 5027 should definitely 2 +96245 5027 get top billing 3 +96246 5027 top billing 3 +96247 5027 billing 2 +96248 5028 This picture is mostly a lump of run-of-the-mill profanity sprinkled with a few remarks so geared toward engendering audience sympathy that you might think he was running for office -- or trying to win over a probation officer . 1 +96249 5028 is mostly a lump of run-of-the-mill profanity sprinkled with a few remarks so geared toward engendering audience sympathy that you might think he was running for office -- or trying to win over a probation officer . 0 +96250 5028 is mostly a lump of run-of-the-mill profanity sprinkled with a few remarks so geared toward engendering audience sympathy that you might think he was running for office -- or trying to win over a probation officer 1 +96251 5028 a lump of run-of-the-mill profanity sprinkled with a few remarks so geared toward engendering audience sympathy that you might think he was running for office -- or trying to win over a probation officer 1 +96252 5028 a lump of run-of-the-mill profanity 1 +96253 5028 of run-of-the-mill profanity 1 +96254 5028 run-of-the-mill profanity 1 +96255 5028 sprinkled with a few remarks so geared toward engendering audience sympathy that you might think he was running for office -- or trying to win over a probation officer 1 +96256 5028 sprinkled with a few remarks so geared toward engendering audience sympathy 1 +96257 5028 sprinkled with a few remarks so geared 2 +96258 5028 with a few remarks so geared 2 +96259 5028 a few remarks so geared 2 +96260 5028 a few remarks 2 +96261 5028 few remarks 2 +96262 5028 remarks 2 +96263 5028 so geared 2 +96264 5028 toward engendering audience sympathy 2 +96265 5028 engendering audience sympathy 2 +96266 5028 engendering 2 +96267 5028 audience sympathy 2 +96268 5028 that you might think he was running for office -- or trying to win over a probation officer 2 +96269 5028 you might think he was running for office -- or trying to win over a probation officer 1 +96270 5028 might think he was running for office -- or trying to win over a probation officer 2 +96271 5028 think he was running for office -- or trying to win over a probation officer 2 +96272 5028 he was running for office -- or trying to win over a probation officer 2 +96273 5028 was running for office -- or trying to win over a probation officer 2 +96274 5028 running for office -- or trying to win over a probation officer 2 +96275 5028 running for office -- or 2 +96276 5028 running for office -- 2 +96277 5028 running for office 2 +96278 5028 for office 2 +96279 5028 trying to win over a probation officer 2 +96280 5028 to win over a probation officer 2 +96281 5028 win over a probation officer 2 +96282 5028 over a probation officer 2 +96283 5028 a probation officer 2 +96284 5028 probation officer 2 +96285 5028 probation 2 +96286 5028 officer 2 +96287 5029 Tells -LRB- the story -RRB- with such atmospheric ballast that shrugging off the plot 's persnickety problems is simply a matter of -LRB- being -RRB- in a shrugging mood . 2 +96288 5029 Tells -LRB- the story -RRB- with such atmospheric ballast that shrugging off the plot 's persnickety problems 2 +96289 5029 Tells -LRB- the story -RRB- 2 +96290 5029 -LRB- the story -RRB- 2 +96291 5029 the story -RRB- 2 +96292 5029 with such atmospheric ballast that shrugging off the plot 's persnickety problems 1 +96293 5029 such atmospheric ballast that shrugging off the plot 's persnickety problems 1 +96294 5029 such atmospheric ballast 2 +96295 5029 atmospheric ballast 2 +96296 5029 that shrugging off the plot 's persnickety problems 1 +96297 5029 shrugging off the plot 's persnickety problems 1 +96298 5029 shrugging off 2 +96299 5029 shrugging 2 +96300 5029 the plot 's persnickety problems 2 +96301 5029 persnickety problems 2 +96302 5029 persnickety 1 +96303 5029 is simply a matter of -LRB- being -RRB- in a shrugging mood . 1 +96304 5029 is simply a matter of -LRB- being -RRB- in a shrugging mood 2 +96305 5029 a matter of -LRB- being -RRB- in a shrugging mood 1 +96306 5029 of -LRB- being -RRB- in a shrugging mood 2 +96307 5029 -LRB- being -RRB- in a shrugging mood 2 +96308 5029 -LRB- being -RRB- 2 +96309 5029 being -RRB- 2 +96310 5029 in a shrugging mood 2 +96311 5029 a shrugging mood 2 +96312 5029 shrugging mood 2 +96313 5030 Fast-paced and wonderfully edited , the film is extremely thorough . 4 +96314 5030 Fast-paced and wonderfully edited 4 +96315 5030 Fast-paced and 3 +96316 5030 wonderfully edited 4 +96317 5030 , the film is extremely thorough . 3 +96318 5030 the film is extremely thorough . 3 +96319 5030 is extremely thorough . 3 +96320 5030 is extremely thorough 3 +96321 5030 extremely thorough 3 +96322 5030 thorough 2 +96323 5031 Gives everyone something to shout about . 4 +96324 5031 Gives everyone something to shout about 2 +96325 5031 Gives everyone something 3 +96326 5031 Gives everyone 3 +96327 5032 A showcase for both the scenic splendor of the mountains and for legendary actor Michel Serrault , the film is less successful on other levels . 3 +96328 5032 A showcase for both the scenic splendor of the mountains and for legendary actor Michel Serrault , the film 4 +96329 5032 A showcase 3 +96330 5032 for both the scenic splendor of the mountains and for legendary actor Michel Serrault , the film 4 +96331 5032 for both the scenic splendor of the mountains and 2 +96332 5032 for both the scenic splendor of the mountains 3 +96333 5032 both the scenic splendor of the mountains 3 +96334 5032 both the scenic splendor 3 +96335 5032 the scenic splendor 4 +96336 5032 scenic splendor 3 +96337 5032 of the mountains 2 +96338 5032 the mountains 2 +96339 5032 mountains 2 +96340 5032 for legendary actor Michel Serrault , the film 2 +96341 5032 legendary actor Michel Serrault , the film 2 +96342 5032 legendary actor Michel Serrault , 2 +96343 5032 legendary actor Michel Serrault 3 +96344 5032 actor Michel Serrault 3 +96345 5032 Michel Serrault 2 +96346 5032 Serrault 2 +96347 5032 is less successful on other levels . 2 +96348 5032 is less successful on other levels 1 +96349 5032 less successful on other levels 2 +96350 5032 successful on other levels 3 +96351 5032 on other levels 3 +96352 5032 other levels 2 +96353 5033 There are few things more frustrating to a film buff than seeing an otherwise good movie marred beyond redemption by a disastrous ending . 1 +96354 5033 are few things more frustrating to a film buff than seeing an otherwise good movie marred beyond redemption by a disastrous ending . 2 +96355 5033 are few things more frustrating to a film buff than seeing an otherwise good movie marred beyond redemption by a disastrous ending 2 +96356 5033 few things more frustrating to a film buff than seeing an otherwise good movie marred beyond redemption by a disastrous ending 0 +96357 5033 few things more frustrating to a film buff 1 +96358 5033 few things more frustrating 0 +96359 5033 to a film buff 2 +96360 5033 a film buff 2 +96361 5033 film buff 2 +96362 5033 buff 2 +96363 5033 than seeing an otherwise good movie marred beyond redemption by a disastrous ending 0 +96364 5033 seeing an otherwise good movie marred beyond redemption by a disastrous ending 1 +96365 5033 an otherwise good movie marred beyond redemption by a disastrous ending 1 +96366 5033 an otherwise good movie 2 +96367 5033 otherwise good movie 3 +96368 5033 otherwise good 3 +96369 5033 marred beyond redemption by a disastrous ending 0 +96370 5033 marred beyond redemption 0 +96371 5033 beyond redemption 1 +96372 5033 by a disastrous ending 1 +96373 5033 a disastrous ending 0 +96374 5033 disastrous ending 1 +96375 5033 disastrous 1 +96376 5034 into How Long Is This Movie ? 1 +96377 5034 into How Long 2 +96378 5034 Is This Movie ? 2 +96379 5034 Is This Movie 2 +96380 5035 When the fire burns out , we 've only come face-to-face with a couple dragons and that 's where the film ultimately fails . 1 +96381 5035 When the fire burns out , we 've only come face-to-face with a couple dragons and that 's where the film ultimately fails 1 +96382 5035 When the fire burns out , we 've only come face-to-face with a couple dragons and 2 +96383 5035 When the fire burns out , we 've only come face-to-face with a couple dragons 1 +96384 5035 When the fire burns out 2 +96385 5035 the fire burns out 2 +96386 5035 the fire 2 +96387 5035 burns out 1 +96388 5035 , we 've only come face-to-face with a couple dragons 2 +96389 5035 we 've only come face-to-face with a couple dragons 2 +96390 5035 've only come face-to-face with a couple dragons 2 +96391 5035 've only 2 +96392 5035 come face-to-face with a couple dragons 2 +96393 5035 come face-to-face 2 +96394 5035 face-to-face 2 +96395 5035 with a couple dragons 2 +96396 5035 a couple dragons 2 +96397 5035 couple dragons 2 +96398 5035 that 's where the film ultimately fails 1 +96399 5035 's where the film ultimately fails 1 +96400 5035 where the film ultimately fails 0 +96401 5035 the film ultimately fails 0 +96402 5035 ultimately fails 0 +96403 5036 Parker updates the setting in an attempt to make the film relevant today , without fully understanding what it was that made the story relevant in the first place . 1 +96404 5036 updates the setting in an attempt to make the film relevant today , without fully understanding what it was that made the story relevant in the first place . 1 +96405 5036 updates the setting in an attempt to make the film relevant today , without fully understanding what it was that made the story relevant in the first place 1 +96406 5036 updates 2 +96407 5036 the setting in an attempt to make the film relevant today , without fully understanding what it was that made the story relevant in the first place 1 +96408 5036 in an attempt to make the film relevant today , without fully understanding what it was that made the story relevant in the first place 1 +96409 5036 an attempt to make the film relevant today , without fully understanding what it was that made the story relevant in the first place 1 +96410 5036 attempt to make the film relevant today , without fully understanding what it was that made the story relevant in the first place 2 +96411 5036 to make the film relevant today , without fully understanding what it was that made the story relevant in the first place 1 +96412 5036 make the film relevant today , without fully understanding what it was that made the story relevant in the first place 2 +96413 5036 make the film relevant today , 3 +96414 5036 make the film relevant today 3 +96415 5036 make the film 2 +96416 5036 without fully understanding what it was that made the story relevant in the first place 1 +96417 5036 fully understanding what it was that made the story relevant in the first place 2 +96418 5036 understanding what it was that made the story relevant in the first place 2 +96419 5036 what it was that made the story relevant in the first place 1 +96420 5036 it was that made the story relevant in the first place 2 +96421 5036 was that made the story relevant in the first place 2 +96422 5036 that made the story relevant in the first place 2 +96423 5036 made the story relevant in the first place 2 +96424 5036 the story relevant in the first place 3 +96425 5036 relevant in the first place 2 +96426 5036 in the first place 2 +96427 5036 the first place 3 +96428 5036 first place 3 +96429 5037 But what is missing from it all is a moral . 1 +96430 5037 what is missing from it all is a moral . 2 +96431 5037 what is missing from it 1 +96432 5037 is missing from it 2 +96433 5037 missing from it 1 +96434 5037 from it 2 +96435 5037 all is a moral . 2 +96436 5037 is a moral . 2 +96437 5037 is a moral 2 +96438 5038 OK arthouse . 2 +96439 5038 OK 2 +96440 5038 arthouse . 2 +96441 5039 The film , while not exactly assured in its execution , is notable for its sheer audacity and openness . 3 +96442 5039 The film , while not exactly assured in its execution , 1 +96443 5039 The film , while not exactly assured in its execution 2 +96444 5039 while not exactly assured in its execution 2 +96445 5039 not exactly assured in its execution 1 +96446 5039 exactly assured in its execution 3 +96447 5039 assured in its execution 3 +96448 5039 in its execution 2 +96449 5039 its execution 2 +96450 5039 is notable for its sheer audacity and openness . 3 +96451 5039 is notable for its sheer audacity and openness 3 +96452 5039 notable for its sheer audacity and openness 4 +96453 5039 for its sheer audacity and openness 3 +96454 5039 its sheer audacity and openness 2 +96455 5039 sheer audacity and openness 3 +96456 5039 audacity and openness 3 +96457 5039 audacity and 1 +96458 5040 Not only a reminder of how they used to make movies , but also how they sometimes still can be made . 3 +96459 5040 a reminder of how they used to make movies , but also how they sometimes still can be made . 3 +96460 5040 a reminder of how they used to make movies , but also how they sometimes still can be made 3 +96461 5040 a reminder 2 +96462 5040 of how they used to make movies , but also how they sometimes still can be made 2 +96463 5040 how they used to make movies , but also how they sometimes still can be made 3 +96464 5040 they used to make movies , but also how they sometimes still can be made 2 +96465 5040 used to make movies , but also how they sometimes still can be made 2 +96466 5040 used to make movies , but also 2 +96467 5040 used to make movies , but 2 +96468 5040 used to make movies , 2 +96469 5040 used to make movies 2 +96470 5040 to make movies 2 +96471 5040 how they sometimes still can be made 2 +96472 5040 they sometimes still can be made 3 +96473 5040 sometimes still can be made 2 +96474 5040 still can be made 2 +96475 5040 can be made 3 +96476 5041 True to its title , it traps audiences in a series of relentlessly nasty situations that we would pay a considerable ransom not to be looking at . 1 +96477 5041 True to its title 3 +96478 5041 , it traps audiences in a series of relentlessly nasty situations that we would pay a considerable ransom not to be looking at . 0 +96479 5041 it traps audiences in a series of relentlessly nasty situations that we would pay a considerable ransom not to be looking at . 0 +96480 5041 traps audiences in a series of relentlessly nasty situations that we would pay a considerable ransom not to be looking at . 1 +96481 5041 traps audiences in a series of relentlessly nasty situations that we would pay a considerable ransom not to be looking at 0 +96482 5041 traps audiences in a series of relentlessly nasty situations 0 +96483 5041 traps audiences 2 +96484 5041 traps 2 +96485 5041 in a series of relentlessly nasty situations 1 +96486 5041 a series of relentlessly nasty situations 1 +96487 5041 of relentlessly nasty situations 1 +96488 5041 relentlessly nasty situations 1 +96489 5041 relentlessly nasty 0 +96490 5041 that we would pay a considerable ransom not to be looking at 0 +96491 5041 we would pay a considerable ransom not to be looking at 0 +96492 5041 would pay a considerable ransom not to be looking at 1 +96493 5041 pay a considerable ransom not to be looking at 2 +96494 5041 pay a considerable ransom 2 +96495 5041 a considerable ransom 2 +96496 5041 considerable ransom 2 +96497 5041 ransom 2 +96498 5041 not to be looking at 2 +96499 5041 to be looking at 2 +96500 5041 be looking at 2 +96501 5041 looking at 2 +96502 5042 It follows the basic plot trajectory of nearly every Schwarzenegger film : Someone crosses Arnie . 2 +96503 5042 It follows the basic plot trajectory of nearly every Schwarzenegger film : Someone crosses Arnie 1 +96504 5042 It follows the basic plot trajectory of nearly every Schwarzenegger film : 2 +96505 5042 It follows the basic plot trajectory of nearly every Schwarzenegger film 1 +96506 5042 follows the basic plot trajectory of nearly every Schwarzenegger film 1 +96507 5042 the basic plot trajectory of nearly every Schwarzenegger film 1 +96508 5042 the basic plot trajectory 2 +96509 5042 basic plot trajectory 2 +96510 5042 plot trajectory 2 +96511 5042 trajectory 2 +96512 5042 of nearly every Schwarzenegger film 2 +96513 5042 nearly every Schwarzenegger film 2 +96514 5042 every Schwarzenegger film 2 +96515 5042 Schwarzenegger film 2 +96516 5042 Someone crosses Arnie 2 +96517 5042 crosses Arnie 2 +96518 5042 crosses 2 +96519 5043 The hot topics of the plot are relegated to the background -- a welcome step forward from the Sally Jesse Raphael atmosphere of films like Philadelphia and American Beauty . 3 +96520 5043 The hot topics of the plot 2 +96521 5043 The hot topics 2 +96522 5043 hot topics 3 +96523 5043 are relegated to the background -- a welcome step forward from the Sally Jesse Raphael atmosphere of films like Philadelphia and American Beauty . 3 +96524 5043 are relegated to the background -- a welcome step forward from the Sally Jesse Raphael atmosphere of films like Philadelphia and American Beauty 3 +96525 5043 relegated to the background -- a welcome step forward from the Sally Jesse Raphael atmosphere of films like Philadelphia and American Beauty 3 +96526 5043 relegated to the background -- a welcome step 3 +96527 5043 relegated 1 +96528 5043 to the background -- a welcome step 3 +96529 5043 the background -- a welcome step 3 +96530 5043 the background -- 2 +96531 5043 a welcome step 3 +96532 5043 welcome step 3 +96533 5043 forward from the Sally Jesse Raphael atmosphere of films like Philadelphia and American Beauty 2 +96534 5043 from the Sally Jesse Raphael atmosphere of films like Philadelphia and American Beauty 2 +96535 5043 the Sally Jesse Raphael atmosphere of films like Philadelphia and American Beauty 3 +96536 5043 the Sally Jesse Raphael atmosphere 1 +96537 5043 Sally Jesse Raphael atmosphere 2 +96538 5043 Sally 2 +96539 5043 Jesse Raphael atmosphere 2 +96540 5043 Jesse 2 +96541 5043 Raphael atmosphere 2 +96542 5043 Raphael 2 +96543 5043 of films like Philadelphia and American Beauty 2 +96544 5043 films like Philadelphia and American Beauty 2 +96545 5043 like Philadelphia and American Beauty 2 +96546 5043 Philadelphia and American Beauty 2 +96547 5043 Philadelphia and American 2 +96548 5043 Philadelphia and 2 +96549 5043 Philadelphia 2 +96550 5044 contrasting the original Ringu with the current Americanized adaptation is akin to comparing The Evil Dead with Evil Dead II 1 +96551 5044 contrasting 2 +96552 5044 the original Ringu with the current Americanized adaptation is akin to comparing The Evil Dead with Evil Dead II 2 +96553 5044 the original Ringu with the current Americanized adaptation 2 +96554 5044 the original Ringu 2 +96555 5044 original Ringu 2 +96556 5044 with the current Americanized adaptation 2 +96557 5044 the current Americanized adaptation 2 +96558 5044 current Americanized adaptation 3 +96559 5044 Americanized adaptation 2 +96560 5044 Americanized 2 +96561 5044 is akin to comparing The Evil Dead with Evil Dead II 2 +96562 5044 akin to comparing The Evil Dead with Evil Dead II 2 +96563 5044 to comparing The Evil Dead with Evil Dead II 1 +96564 5044 comparing The Evil Dead with Evil Dead II 2 +96565 5044 comparing The Evil Dead 2 +96566 5044 comparing 2 +96567 5044 with Evil Dead II 2 +96568 5044 Evil Dead II 3 +96569 5044 Dead II 2 +96570 5045 There are so few films about the plight of American Indians in modern America that Skins comes as a welcome , if downbeat , missive from a forgotten front . 3 +96571 5045 are so few films about the plight of American Indians in modern America that Skins comes as a welcome , if downbeat , missive from a forgotten front . 3 +96572 5045 are so few films about the plight of American Indians in modern America that Skins comes as a welcome , if downbeat , missive from a forgotten front 3 +96573 5045 are so few films about the plight of American Indians in modern America 2 +96574 5045 are so 2 +96575 5045 few films about the plight of American Indians in modern America 2 +96576 5045 few films 2 +96577 5045 about the plight of American Indians in modern America 3 +96578 5045 the plight of American Indians in modern America 2 +96579 5045 the plight 1 +96580 5045 of American Indians in modern America 2 +96581 5045 American Indians in modern America 2 +96582 5045 American Indians 2 +96583 5045 in modern America 2 +96584 5045 modern America 2 +96585 5045 that Skins comes as a welcome , if downbeat , missive from a forgotten front 3 +96586 5045 Skins comes as a welcome , if downbeat , missive from a forgotten front 2 +96587 5045 comes as a welcome , if downbeat , missive from a forgotten front 2 +96588 5045 as a welcome , if downbeat , missive from a forgotten front 2 +96589 5045 a welcome , if downbeat , missive from a forgotten front 3 +96590 5045 a welcome , if downbeat , missive 3 +96591 5045 welcome , if downbeat , missive 3 +96592 5045 welcome , if downbeat , 2 +96593 5045 , if downbeat , 2 +96594 5045 if downbeat , 1 +96595 5045 downbeat , 2 +96596 5045 missive 2 +96597 5045 from a forgotten front 2 +96598 5045 a forgotten front 2 +96599 5045 forgotten front 2 +96600 5046 Director Paul Cox 's unorthodox , abstract approach to visualizing Nijinsky 's diaries is both stimulating and demanding . 3 +96601 5046 Director Paul Cox 's unorthodox , abstract approach to visualizing Nijinsky 's diaries 2 +96602 5046 Director Paul Cox 's unorthodox , abstract approach 3 +96603 5046 Director Paul Cox 's 2 +96604 5046 Paul Cox 's 2 +96605 5046 Cox 's 2 +96606 5046 unorthodox , abstract approach 2 +96607 5046 , abstract approach 2 +96608 5046 abstract approach 3 +96609 5046 to visualizing Nijinsky 's diaries 2 +96610 5046 visualizing Nijinsky 's diaries 2 +96611 5046 visualizing 2 +96612 5046 Nijinsky 's diaries 2 +96613 5046 Nijinsky 's 2 +96614 5046 Nijinsky 3 +96615 5046 is both stimulating and demanding . 3 +96616 5046 is both stimulating and demanding 3 +96617 5046 is both 2 +96618 5046 stimulating and demanding 3 +96619 5046 stimulating and 3 +96620 5047 While there 's likely very little crossover appeal to those without much interest in the Elizabethans -LRB- as well as rank frustration from those in the know about Rubbo 's dumbed-down tactics -RRB- , Much Ado About Something is an amicable endeavor . 3 +96621 5047 While there 's likely very little crossover appeal to those without much interest in the Elizabethans -LRB- as well as rank frustration from those in the know about Rubbo 's dumbed-down tactics -RRB- 1 +96622 5047 there 's likely very little crossover appeal to those without much interest in the Elizabethans -LRB- as well as rank frustration from those in the know about Rubbo 's dumbed-down tactics -RRB- 1 +96623 5047 's likely very little crossover appeal to those without much interest in the Elizabethans -LRB- as well as rank frustration from those in the know about Rubbo 's dumbed-down tactics -RRB- 1 +96624 5047 likely very little crossover appeal to those without much interest in the Elizabethans -LRB- as well as rank frustration from those in the know about Rubbo 's dumbed-down tactics -RRB- 2 +96625 5047 likely very 2 +96626 5047 little crossover appeal to those without much interest in the Elizabethans -LRB- as well as rank frustration from those in the know about Rubbo 's dumbed-down tactics -RRB- 1 +96627 5047 little crossover 2 +96628 5047 appeal to those without much interest in the Elizabethans -LRB- as well as rank frustration from those in the know about Rubbo 's dumbed-down tactics -RRB- 1 +96629 5047 appeal to those without much interest in the Elizabethans 3 +96630 5047 appeal to those 2 +96631 5047 to those 2 +96632 5047 without much interest in the Elizabethans 1 +96633 5047 much interest in the Elizabethans 2 +96634 5047 much interest 3 +96635 5047 in the Elizabethans 2 +96636 5047 the Elizabethans 2 +96637 5047 Elizabethans 2 +96638 5047 -LRB- as well as rank frustration from those in the know about Rubbo 's dumbed-down tactics -RRB- 0 +96639 5047 as well as rank frustration from those in the know about Rubbo 's dumbed-down tactics -RRB- 1 +96640 5047 as well as rank frustration from those in the know about Rubbo 's dumbed-down tactics 1 +96641 5047 rank frustration from those in the know about Rubbo 's dumbed-down tactics 0 +96642 5047 rank frustration from those in the 1 +96643 5047 rank frustration from those 1 +96644 5047 frustration from those 1 +96645 5047 from those 2 +96646 5047 in the 3 +96647 5047 know about Rubbo 's dumbed-down tactics 1 +96648 5047 about Rubbo 's dumbed-down tactics 1 +96649 5047 Rubbo 's dumbed-down tactics 1 +96650 5047 Rubbo 's 2 +96651 5047 dumbed-down tactics 1 +96652 5047 tactics 2 +96653 5047 , Much Ado About Something is an amicable endeavor . 3 +96654 5047 Much Ado About Something is an amicable endeavor . 3 +96655 5047 Much Ado 2 +96656 5047 Ado 2 +96657 5047 About Something is an amicable endeavor . 3 +96658 5047 is an amicable endeavor . 3 +96659 5047 is an amicable endeavor 3 +96660 5047 an amicable endeavor 3 +96661 5047 amicable endeavor 2 +96662 5047 amicable 3 +96663 5048 The film is a fierce dance of destruction . 3 +96664 5048 is a fierce dance of destruction . 2 +96665 5048 is a fierce dance of destruction 2 +96666 5048 a fierce dance of destruction 2 +96667 5048 a fierce dance 3 +96668 5048 fierce dance 2 +96669 5049 It 's impossible to even categorize this as a smutty guilty pleasure . 1 +96670 5049 's impossible to even categorize this as a smutty guilty pleasure . 1 +96671 5049 's impossible to even categorize this as a smutty guilty pleasure 2 +96672 5049 impossible to even categorize this as a smutty guilty pleasure 1 +96673 5049 to even categorize this as a smutty guilty pleasure 1 +96674 5049 even categorize this as a smutty guilty pleasure 2 +96675 5049 categorize this as a smutty guilty pleasure 2 +96676 5049 categorize 2 +96677 5049 this as a smutty guilty pleasure 2 +96678 5049 as a smutty guilty pleasure 2 +96679 5049 a smutty guilty pleasure 3 +96680 5049 smutty guilty pleasure 2 +96681 5049 smutty guilty 2 +96682 5049 smutty 0 +96683 5050 Nothing more than a widget cranked out on an assembly line to see if stupid Americans will get a kick out of goofy Brits with cute accents performing ages-old slapstick and unfunny tricks . 1 +96684 5050 more than a widget cranked out on an assembly line to see if stupid Americans will get a kick out of goofy Brits with cute accents performing ages-old slapstick and unfunny tricks . 1 +96685 5050 more than a widget cranked out on an assembly line to see if stupid Americans will get a kick out of goofy Brits with cute accents performing ages-old slapstick and unfunny tricks 1 +96686 5050 more than a widget 2 +96687 5050 than a widget 2 +96688 5050 a widget 2 +96689 5050 cranked out on an assembly line to see if stupid Americans will get a kick out of goofy Brits with cute accents performing ages-old slapstick and unfunny tricks 0 +96690 5050 cranked out on an assembly line 1 +96691 5050 cranked out 2 +96692 5050 cranked 2 +96693 5050 on an assembly line 2 +96694 5050 an assembly line 2 +96695 5050 to see if stupid Americans will get a kick out of goofy Brits with cute accents performing ages-old slapstick and unfunny tricks 1 +96696 5050 see if stupid Americans will get a kick out of goofy Brits with cute accents performing ages-old slapstick and unfunny tricks 2 +96697 5050 if stupid Americans will get a kick out of goofy Brits with cute accents performing ages-old slapstick and unfunny tricks 1 +96698 5050 stupid Americans will get a kick out of goofy Brits with cute accents performing ages-old slapstick and unfunny tricks 1 +96699 5050 stupid Americans 1 +96700 5050 will get a kick out of goofy Brits with cute accents performing ages-old slapstick and unfunny tricks 2 +96701 5050 get a kick out of goofy Brits with cute accents performing ages-old slapstick and unfunny tricks 2 +96702 5050 get a kick out of goofy Brits 3 +96703 5050 a kick out of goofy Brits 3 +96704 5050 a kick 3 +96705 5050 kick 2 +96706 5050 out of goofy Brits 2 +96707 5050 of goofy Brits 2 +96708 5050 goofy Brits 2 +96709 5050 Brits 2 +96710 5050 with cute accents performing ages-old slapstick and unfunny tricks 1 +96711 5050 cute accents performing ages-old slapstick and unfunny tricks 2 +96712 5050 cute accents 2 +96713 5050 performing ages-old slapstick and unfunny tricks 0 +96714 5050 ages-old slapstick and unfunny tricks 1 +96715 5050 ages-old 2 +96716 5050 slapstick and unfunny tricks 0 +96717 5050 and unfunny tricks 1 +96718 5050 unfunny tricks 1 +96719 5051 And that makes all the difference . 3 +96720 5051 that makes all the difference . 3 +96721 5051 makes all the difference . 3 +96722 5051 makes all the difference 3 +96723 5051 all the difference 2 +96724 5052 It looks like an action movie , but it 's so poorly made , on all levels , that it does n't even qualify as a spoof of such . 0 +96725 5052 It looks like an action movie , but it 's so poorly made , on all levels , that it does n't even qualify as a spoof of such 0 +96726 5052 It looks like an action movie , but 1 +96727 5052 It looks like an action movie , 2 +96728 5052 It looks like an action movie 2 +96729 5052 looks like an action movie 2 +96730 5052 like an action movie 2 +96731 5052 an action movie 2 +96732 5052 it 's so poorly made , on all levels , that it does n't even qualify as a spoof of such 0 +96733 5052 's so poorly made , on all levels , that it does n't even qualify as a spoof of such 0 +96734 5052 's so poorly 1 +96735 5052 made , on all levels , that it does n't even qualify as a spoof of such 1 +96736 5052 made , on all levels , 3 +96737 5052 made , on all levels 2 +96738 5052 on all levels 3 +96739 5052 all levels 2 +96740 5052 that it does n't even qualify as a spoof of such 1 +96741 5052 it does n't even qualify as a spoof of such 2 +96742 5052 does n't even qualify as a spoof of such 0 +96743 5052 qualify as a spoof of such 2 +96744 5052 as a spoof of such 2 +96745 5052 a spoof of such 2 +96746 5052 a spoof 2 +96747 5052 of such 2 +96748 5053 Like being invited to a classy dinner soiree and not knowing anyone . 2 +96749 5053 Like being invited to a classy dinner soiree and not knowing anyone 1 +96750 5053 Like being invited to a classy dinner soiree and 2 +96751 5053 Like being invited to a classy dinner soiree 3 +96752 5053 being invited to a classy dinner soiree 3 +96753 5053 invited to a classy dinner soiree 3 +96754 5053 to a classy dinner soiree 3 +96755 5053 a classy dinner soiree 3 +96756 5053 classy dinner soiree 3 +96757 5053 dinner soiree 2 +96758 5053 soiree 2 +96759 5053 not knowing anyone 2 +96760 5053 knowing anyone 2 +96761 5054 What we get in FearDotCom is more like something from a bad Clive Barker movie . 0 +96762 5054 What we get in FearDotCom 2 +96763 5054 we get in FearDotCom 2 +96764 5054 get in FearDotCom 2 +96765 5054 in FearDotCom 2 +96766 5054 is more like something from a bad Clive Barker movie . 1 +96767 5054 is more like something from a bad Clive Barker movie 1 +96768 5054 is more like something 2 +96769 5054 more like something 2 +96770 5054 from a bad Clive Barker movie 1 +96771 5054 a bad Clive Barker movie 1 +96772 5054 bad Clive Barker movie 0 +96773 5054 Clive Barker movie 2 +96774 5054 Clive 2 +96775 5054 Barker movie 3 +96776 5054 Barker 2 +96777 5055 Knockaround Guys plays like a student film by two guys who desperately want to be Quentin Tarantino when they grow up . 1 +96778 5055 plays like a student film by two guys who desperately want to be Quentin Tarantino when they grow up . 1 +96779 5055 plays like a student film by two guys who desperately want to be Quentin Tarantino when they grow up 0 +96780 5055 by two guys who desperately want to be Quentin Tarantino when they grow up 2 +96781 5055 two guys who desperately want to be Quentin Tarantino when they grow up 1 +96782 5055 who desperately want to be Quentin Tarantino when they grow up 1 +96783 5055 desperately want to be Quentin Tarantino when they grow up 2 +96784 5055 want to be Quentin Tarantino when they grow up 2 +96785 5055 to be Quentin Tarantino when they grow up 2 +96786 5055 be Quentin Tarantino when they grow up 2 +96787 5055 Quentin Tarantino when they grow up 2 +96788 5055 Quentin Tarantino 2 +96789 5055 when they grow up 2 +96790 5055 they grow up 2 +96791 5056 The story is lacking any real emotional impact , and the plot is both contrived and cliched . 0 +96792 5056 The story is lacking any real emotional impact , and the plot is both contrived and cliched 1 +96793 5056 The story is lacking any real emotional impact , and 1 +96794 5056 The story is lacking any real emotional impact , 1 +96795 5056 The story is lacking any real emotional impact 1 +96796 5056 is lacking any real emotional impact 1 +96797 5056 lacking any real emotional impact 1 +96798 5056 any real emotional impact 1 +96799 5056 real emotional impact 3 +96800 5056 the plot is both contrived and cliched 1 +96801 5056 is both contrived and cliched 1 +96802 5056 both contrived and cliched 1 +96803 5056 contrived and cliched 2 +96804 5057 You 'll probably love it . 4 +96805 5057 'll probably love it . 4 +96806 5057 'll probably love it 3 +96807 5058 One sloughs one 's way through the mire of this alleged psychological thriller in search of purpose or even a plot . 0 +96808 5058 sloughs one 's way through the mire of this alleged psychological thriller in search of purpose or even a plot . 2 +96809 5058 sloughs one 's way through the mire of this alleged psychological thriller in search of purpose or even a plot 1 +96810 5058 sloughs one 's way 1 +96811 5058 sloughs 2 +96812 5058 one 's way 2 +96813 5058 through the mire of this alleged psychological thriller in search of purpose or even a plot 0 +96814 5058 the mire of this alleged psychological thriller in search of purpose or even a plot 1 +96815 5058 the mire 2 +96816 5058 mire 2 +96817 5058 of this alleged psychological thriller in search of purpose or even a plot 1 +96818 5058 this alleged psychological thriller in search of purpose or even a plot 0 +96819 5058 this alleged psychological thriller 1 +96820 5058 alleged psychological thriller 2 +96821 5058 alleged 2 +96822 5058 psychological thriller 3 +96823 5058 in search of purpose or even a plot 1 +96824 5058 search of purpose or even a plot 1 +96825 5058 of purpose or even a plot 1 +96826 5058 purpose or even a plot 2 +96827 5058 purpose or 2 +96828 5058 even a plot 1 +96829 5059 Cynics need not apply . ' 2 +96830 5059 Cynics 2 +96831 5059 need not apply . ' 2 +96832 5059 need not apply . 1 +96833 5060 An involving , inspirational drama that sometimes falls prey to its sob-story trappings . 2 +96834 5060 An involving , inspirational drama that sometimes falls 3 +96835 5060 An involving , inspirational drama 4 +96836 5060 involving , inspirational drama 3 +96837 5060 , inspirational drama 3 +96838 5060 inspirational drama 3 +96839 5060 that sometimes falls 1 +96840 5060 sometimes falls 1 +96841 5060 prey to its sob-story trappings . 1 +96842 5060 prey to its sob-story trappings 2 +96843 5060 to its sob-story trappings 2 +96844 5060 its sob-story trappings 2 +96845 5060 sob-story trappings 1 +96846 5060 sob-story 2 +96847 5061 A sense of real magic , perhaps . 3 +96848 5061 A sense of real magic , perhaps 3 +96849 5061 of real magic , perhaps 2 +96850 5061 real magic , perhaps 3 +96851 5061 real magic , 3 +96852 5061 real magic 3 +96853 5062 Bouquet gives a performance that is masterly . 4 +96854 5062 gives a performance that is masterly . 4 +96855 5062 gives a performance that is masterly 3 +96856 5062 a performance that is masterly 4 +96857 5062 that is masterly 3 +96858 5062 is masterly 4 +96859 5062 masterly 3 +96860 5063 Yes , Spirited Away is a triumph of imagination , but it 's also a failure of storytelling . 1 +96861 5063 Yes , Spirited Away is a triumph of imagination , but it 's also a failure of storytelling 1 +96862 5063 Yes , Spirited Away is a triumph of imagination , but 3 +96863 5063 Yes , Spirited Away is a triumph of imagination , 4 +96864 5063 Yes , Spirited Away is a triumph of imagination 3 +96865 5063 , Spirited Away is a triumph of imagination 4 +96866 5063 Spirited Away is a triumph of imagination 4 +96867 5063 Spirited Away 2 +96868 5063 is a triumph of imagination 4 +96869 5063 a triumph of imagination 4 +96870 5063 it 's also a failure of storytelling 2 +96871 5063 's also a failure of storytelling 2 +96872 5063 a failure of storytelling 0 +96873 5064 s face is chillingly unemotive , yet he communicates a great deal in his performance . 2 +96874 5064 s face is chillingly unemotive , yet he communicates a great deal in his performance 3 +96875 5064 s face is chillingly unemotive , yet 1 +96876 5064 s face is chillingly unemotive , 3 +96877 5064 s face is chillingly unemotive 2 +96878 5064 face is chillingly unemotive 1 +96879 5064 is chillingly unemotive 2 +96880 5064 chillingly unemotive 2 +96881 5064 unemotive 1 +96882 5064 he communicates a great deal in his performance 4 +96883 5064 communicates a great deal in his performance 3 +96884 5064 a great deal in his performance 2 +96885 5064 in his performance 2 +96886 5065 Shrewd but pointless . 1 +96887 5065 Shrewd but pointless 1 +96888 5065 Shrewd but 2 +96889 5066 A heady , biting , be-bop ride through nighttime Manhattan , a loquacious videologue of the modern male and the lengths to which he 'll go to weave a protective cocoon around his own ego . 3 +96890 5066 A heady , biting , be-bop 3 +96891 5066 heady , biting , be-bop 3 +96892 5066 , biting , be-bop 2 +96893 5066 biting , be-bop 2 +96894 5066 , be-bop 2 +96895 5066 be-bop 2 +96896 5066 ride through nighttime Manhattan , a loquacious videologue of the modern male and the lengths to which he 'll go to weave a protective cocoon around his own ego . 3 +96897 5066 ride through nighttime Manhattan , a loquacious videologue of the modern male and the lengths to which he 'll go to weave a protective cocoon around his own ego 3 +96898 5066 through nighttime Manhattan , a loquacious videologue of the modern male and the lengths to which he 'll go to weave a protective cocoon around his own ego 2 +96899 5066 nighttime Manhattan , a loquacious videologue of the modern male and the lengths to which he 'll go to weave a protective cocoon around his own ego 3 +96900 5066 nighttime Manhattan , a loquacious videologue of the modern male and 3 +96901 5066 nighttime Manhattan , a loquacious videologue of the modern male 2 +96902 5066 nighttime Manhattan , 2 +96903 5066 nighttime Manhattan 2 +96904 5066 nighttime 2 +96905 5066 a loquacious videologue of the modern male 2 +96906 5066 a loquacious videologue 2 +96907 5066 loquacious videologue 2 +96908 5066 videologue 2 +96909 5066 of the modern male 2 +96910 5066 the modern male 2 +96911 5066 modern male 2 +96912 5066 the lengths to which he 'll go to weave a protective cocoon around his own ego 0 +96913 5066 the lengths 3 +96914 5066 to which he 'll go to weave a protective cocoon around his own ego 2 +96915 5066 he 'll go to weave a protective cocoon around his own ego 1 +96916 5066 'll go to weave a protective cocoon around his own ego 2 +96917 5066 go to weave a protective cocoon around his own ego 2 +96918 5066 to weave a protective cocoon around his own ego 2 +96919 5066 weave a protective cocoon around his own ego 1 +96920 5066 weave a protective cocoon 2 +96921 5066 weave 2 +96922 5066 a protective cocoon 2 +96923 5066 protective cocoon 3 +96924 5066 protective 2 +96925 5066 cocoon 2 +96926 5066 around his own ego 2 +96927 5066 his own ego 2 +96928 5066 own ego 2 +96929 5067 If all of Eight Legged Freaks was as entertaining as the final hour , I would have no problem giving it an unqualified recommendation . 2 +96930 5067 If all of Eight Legged Freaks was as entertaining as the final hour 2 +96931 5067 all of Eight Legged Freaks was as entertaining as the final hour 2 +96932 5067 all of Eight Legged Freaks 2 +96933 5067 of Eight Legged Freaks 2 +96934 5067 was as entertaining as the final hour 2 +96935 5067 as entertaining as the final hour 3 +96936 5067 entertaining as the final hour 3 +96937 5067 as the final hour 2 +96938 5067 the final hour 2 +96939 5067 , I would have no problem giving it an unqualified recommendation . 1 +96940 5067 I would have no problem giving it an unqualified recommendation . 1 +96941 5067 would have no problem giving it an unqualified recommendation . 3 +96942 5067 would have no problem giving it an unqualified recommendation 3 +96943 5067 have no problem giving it an unqualified recommendation 3 +96944 5067 no problem giving it an unqualified recommendation 2 +96945 5067 giving it an unqualified recommendation 2 +96946 5067 an unqualified recommendation 2 +96947 5067 unqualified recommendation 2 +96948 5067 unqualified 2 +96949 5068 A weird little movie that 's amusing enough while you watch it , offering fine acting moments and pungent insights into modern L.A. 's show-biz and media subcultures . 3 +96950 5068 A weird little movie that 's amusing enough while you watch it , offering fine acting moments and pungent insights into modern L.A. 's show-biz and media 3 +96951 5068 A weird little movie 1 +96952 5068 weird little movie 1 +96953 5068 that 's amusing enough while you watch it , offering fine acting moments and pungent insights into modern L.A. 's show-biz and media 3 +96954 5068 's amusing enough while you watch it , offering fine acting moments and pungent insights into modern L.A. 's show-biz and media 4 +96955 5068 amusing enough while you watch it , offering fine acting moments and pungent insights into modern L.A. 's show-biz and media 3 +96956 5068 amusing enough 3 +96957 5068 while you watch it , offering fine acting moments and pungent insights into modern L.A. 's show-biz and media 3 +96958 5068 you watch it , offering fine acting moments and pungent insights into modern L.A. 's show-biz and media 2 +96959 5068 watch it , offering fine acting moments and pungent insights into modern L.A. 's show-biz and media 4 +96960 5068 watch it , offering fine acting moments and pungent insights 3 +96961 5068 it , offering fine acting moments and pungent insights 3 +96962 5068 it , offering fine acting moments and pungent 4 +96963 5068 , offering fine acting moments and pungent 3 +96964 5068 offering fine acting moments and pungent 3 +96965 5068 offering fine acting moments and 3 +96966 5068 offering fine acting moments 4 +96967 5068 fine acting moments 3 +96968 5068 acting moments 2 +96969 5068 pungent 0 +96970 5068 into modern L.A. 's show-biz and media 2 +96971 5068 modern L.A. 's show-biz and media 2 +96972 5068 modern L.A. 's 2 +96973 5068 L.A. 's 2 +96974 5068 show-biz and media 2 +96975 5068 show-biz and 2 +96976 5068 show-biz 2 +96977 5068 media 2 +96978 5068 subcultures . 2 +96979 5068 subcultures 2 +96980 5069 A lack of thesis makes Maryam , in the end , play out with the intellectual and emotional impact of an after-school special . 2 +96981 5069 A lack of thesis 1 +96982 5069 of thesis 2 +96983 5069 makes Maryam , in the end , play out with the intellectual and emotional impact of an after-school special . 1 +96984 5069 makes Maryam , in the end , play out with the intellectual and emotional impact of an after-school special 1 +96985 5069 Maryam , in the end , play out with the intellectual and emotional impact of an after-school special 2 +96986 5069 , in the end , play out with the intellectual and emotional impact of an after-school special 2 +96987 5069 in the end , play out with the intellectual and emotional impact of an after-school special 2 +96988 5069 , play out with the intellectual and emotional impact of an after-school special 2 +96989 5069 play out with the intellectual and emotional impact of an after-school special 1 +96990 5069 with the intellectual and emotional impact of an after-school special 1 +96991 5069 the intellectual and emotional impact of an after-school special 2 +96992 5069 the intellectual and emotional impact 3 +96993 5069 intellectual and emotional impact 3 +96994 5069 of an after-school special 2 +96995 5069 an after-school special 2 +96996 5070 A high-minded snoozer . 1 +96997 5070 high-minded snoozer . 0 +96998 5070 snoozer . 0 +96999 5070 snoozer 0 +97000 5071 ` it 's better to go in knowing full well what 's going to happen , but willing to let the earnestness of its execution and skill of its cast take you down a familiar road with a few twists . 3 +97001 5071 it 's better to go in knowing full well what 's going to happen , but willing to let the earnestness of its execution and skill of its cast take you down a familiar road with a few twists . 3 +97002 5071 's better to go in knowing full well what 's going to happen , but willing to let the earnestness of its execution and skill of its cast take you down a familiar road with a few twists . 3 +97003 5071 's better to go in knowing full well what 's going to happen , but willing to let the earnestness of its execution and skill of its cast take you down a familiar road with a few twists 2 +97004 5071 better to go in knowing full well what 's going to happen , but willing to let the earnestness of its execution and skill of its cast take you down a familiar road with a few twists 3 +97005 5071 better to go in knowing full well what 's going to happen , but 2 +97006 5071 better to go in knowing full well what 's going to happen , 2 +97007 5071 better to go in knowing full well what 's going to happen 2 +97008 5071 to go in knowing full well what 's going to happen 2 +97009 5071 go in knowing full well what 's going to happen 2 +97010 5071 in knowing full well what 's going to happen 2 +97011 5071 knowing full well what 's going to happen 2 +97012 5071 full well what 's going to happen 2 +97013 5071 full well 3 +97014 5071 what 's going to happen 2 +97015 5071 's going to happen 2 +97016 5071 willing to let the earnestness of its execution and skill of its cast take you down a familiar road with a few twists 3 +97017 5071 to let the earnestness of its execution and skill of its cast take you down a familiar road with a few twists 3 +97018 5071 let the earnestness of its execution and skill of its cast take you down a familiar road with a few twists 3 +97019 5071 the earnestness of its execution and skill of its cast take you down a familiar road with a few twists 3 +97020 5071 the earnestness of its execution and skill of its cast 3 +97021 5071 the earnestness 3 +97022 5071 of its execution and skill of its cast 3 +97023 5071 its execution and skill of its cast 4 +97024 5071 its execution and skill 4 +97025 5071 execution and skill 3 +97026 5071 execution and 2 +97027 5071 of its cast 2 +97028 5071 take you down a familiar road with a few twists 3 +97029 5071 down a familiar road with a few twists 1 +97030 5071 a familiar road with a few twists 3 +97031 5071 a familiar road 2 +97032 5071 familiar road 3 +97033 5071 with a few twists 2 +97034 5071 a few twists 2 +97035 5071 few twists 2 +97036 5072 A little less extreme than in the past , with longer exposition sequences between them , and with fewer gags to break the tedium . 1 +97037 5072 A little less extreme than in the past , with longer exposition sequences between them , and 2 +97038 5072 A little less extreme than in the past , with longer exposition sequences between them , 2 +97039 5072 A little less extreme 2 +97040 5072 less extreme 2 +97041 5072 than in the past , with longer exposition sequences between them , 2 +97042 5072 than in the past 2 +97043 5072 in the past 2 +97044 5072 , with longer exposition sequences between them , 2 +97045 5072 with longer exposition sequences between them , 2 +97046 5072 with longer exposition sequences between them 2 +97047 5072 longer exposition sequences between them 1 +97048 5072 longer exposition sequences 2 +97049 5072 exposition sequences 2 +97050 5072 with fewer gags to break the tedium . 1 +97051 5072 with fewer gags to break the tedium 1 +97052 5072 fewer gags to break the tedium 1 +97053 5072 gags to break the tedium 1 +97054 5072 to break the tedium 1 +97055 5072 break the tedium 2 +97056 5072 the tedium 1 +97057 5072 tedium 1 +97058 5073 The camera twirls ! 2 +97059 5073 twirls ! 2 +97060 5073 twirls 2 +97061 5074 This version does justice both to Stevenson and to the sci-fi genre . 3 +97062 5074 does justice both to Stevenson and to the sci-fi genre . 3 +97063 5074 does justice both to Stevenson and to the sci-fi genre 4 +97064 5074 does justice 3 +97065 5074 both to Stevenson and to the sci-fi genre 2 +97066 5074 to Stevenson and to the sci-fi genre 2 +97067 5074 to Stevenson and 2 +97068 5074 to Stevenson 2 +97069 5074 Stevenson 2 +97070 5074 to the sci-fi genre 2 +97071 5074 the sci-fi genre 2 +97072 5074 sci-fi genre 2 +97073 5075 A boring masquerade ball where normally good actors , even Kingsley , are made to look bad . 1 +97074 5075 A boring 2 +97075 5075 masquerade ball where normally good actors , even Kingsley , are made to look bad . 1 +97076 5075 masquerade ball where normally good actors , even Kingsley , are made to look bad 1 +97077 5075 masquerade ball 2 +97078 5075 where normally good actors , even Kingsley , are made to look bad 1 +97079 5075 normally good actors , even Kingsley , are made to look bad 1 +97080 5075 good actors , even Kingsley , are made to look bad 1 +97081 5075 good actors , even Kingsley , 3 +97082 5075 good actors , even Kingsley 3 +97083 5075 even Kingsley 2 +97084 5075 Kingsley 2 +97085 5075 are made to look bad 2 +97086 5075 made to look bad 1 +97087 5075 to look bad 2 +97088 5075 look bad 1 +97089 5076 If you are into splatter movies , then you will probably have a reasonably good time with The Salton Sea . 3 +97090 5076 If you are into splatter movies 2 +97091 5076 you are into splatter movies 2 +97092 5076 are into splatter movies 2 +97093 5076 into splatter movies 1 +97094 5076 splatter movies 2 +97095 5076 splatter 1 +97096 5076 , then you will probably have a reasonably good time with The Salton Sea . 3 +97097 5076 then you will probably have a reasonably good time with The Salton Sea . 3 +97098 5076 you will probably have a reasonably good time with The Salton Sea . 3 +97099 5076 will probably have a reasonably good time with The Salton Sea . 3 +97100 5076 will probably have a reasonably good time with The Salton Sea 3 +97101 5076 have a reasonably good time with The Salton Sea 3 +97102 5076 a reasonably good time with The Salton Sea 3 +97103 5076 a reasonably good time 3 +97104 5076 reasonably good time 3 +97105 5076 reasonably good 3 +97106 5076 with The Salton Sea 2 +97107 5077 They 're just a couple of cops in Copmovieland , these two , but in Narc , they find new routes through a familiar neighborhood . 3 +97108 5077 They 're just a couple of cops in Copmovieland , these two , but in Narc , they find new routes through a familiar neighborhood 2 +97109 5077 They 're just a couple of cops in Copmovieland , these two , but 2 +97110 5077 They 're just a couple of cops in Copmovieland , these two , 2 +97111 5077 They 're just a couple of cops in Copmovieland , these two 2 +97112 5077 're just a couple of cops in Copmovieland , these two 1 +97113 5077 a couple of cops in Copmovieland , these two 2 +97114 5077 of cops in Copmovieland , these two 2 +97115 5077 cops in Copmovieland , these two 2 +97116 5077 in Copmovieland , these two 2 +97117 5077 Copmovieland , these two 2 +97118 5077 Copmovieland , 2 +97119 5077 Copmovieland 2 +97120 5077 in Narc , they find new routes through a familiar neighborhood 3 +97121 5077 in Narc 2 +97122 5077 , they find new routes through a familiar neighborhood 3 +97123 5077 they find new routes through a familiar neighborhood 3 +97124 5077 find new routes through a familiar neighborhood 2 +97125 5077 find new routes 2 +97126 5077 new routes 2 +97127 5077 routes 2 +97128 5077 through a familiar neighborhood 2 +97129 5077 a familiar neighborhood 2 +97130 5077 familiar neighborhood 2 +97131 5077 neighborhood 3 +97132 5078 Hate it because it 's lousy . 0 +97133 5078 Hate it because it 's lousy 0 +97134 5078 because it 's lousy 0 +97135 5078 it 's lousy 1 +97136 5078 's lousy 2 +97137 5079 Nicks refuses to let Slackers be seen as just another teen movie , which means he can be forgiven for frequently pandering to fans of the gross-out comedy . 3 +97138 5079 Nicks 2 +97139 5079 refuses to let Slackers be seen as just another teen movie , which means he can be forgiven for frequently pandering to fans of the gross-out comedy . 3 +97140 5079 refuses to let Slackers be seen as just another teen movie , which means he can be forgiven for frequently pandering to fans of the gross-out comedy 1 +97141 5079 to let Slackers be seen as just another teen movie , which means he can be forgiven for frequently pandering to fans of the gross-out comedy 2 +97142 5079 let Slackers be seen as just another teen movie , which means he can be forgiven for frequently pandering to fans of the gross-out comedy 2 +97143 5079 Slackers be seen as just another teen movie , which means he can be forgiven for frequently pandering to fans of the gross-out comedy 2 +97144 5079 be seen as just another teen movie , which means he can be forgiven for frequently pandering to fans of the gross-out comedy 2 +97145 5079 seen as just another teen movie , which means he can be forgiven for frequently pandering to fans of the gross-out comedy 2 +97146 5079 as just another teen movie , which means he can be forgiven for frequently pandering to fans of the gross-out comedy 2 +97147 5079 just another teen movie , which means he can be forgiven for frequently pandering to fans of the gross-out comedy 1 +97148 5079 just another teen movie , 1 +97149 5079 just another teen movie 1 +97150 5079 another teen movie 2 +97151 5079 which means he can be forgiven for frequently pandering to fans of the gross-out comedy 1 +97152 5079 means he can be forgiven for frequently pandering to fans of the gross-out comedy 2 +97153 5079 he can be forgiven for frequently pandering to fans of the gross-out comedy 3 +97154 5079 can be forgiven for frequently pandering to fans of the gross-out comedy 2 +97155 5079 be forgiven for frequently pandering to fans of the gross-out comedy 1 +97156 5079 forgiven for frequently pandering to fans of the gross-out comedy 2 +97157 5079 for frequently pandering to fans of the gross-out comedy 1 +97158 5079 frequently pandering to fans of the gross-out comedy 1 +97159 5079 pandering to fans of the gross-out comedy 2 +97160 5079 to fans of the gross-out comedy 2 +97161 5079 fans of the gross-out comedy 2 +97162 5079 of the gross-out comedy 1 +97163 5079 the gross-out comedy 0 +97164 5080 Director Lee has a true cinematic knack , but it 's also nice to see a movie with its heart so thoroughly , unabashedly on its sleeve . 4 +97165 5080 Director Lee has a true cinematic knack , but it 's also nice to see a movie with its heart so thoroughly , unabashedly on its sleeve 3 +97166 5080 Director Lee has a true cinematic knack , but 2 +97167 5080 Director Lee has a true cinematic knack , 3 +97168 5080 Director Lee has a true cinematic knack 4 +97169 5080 Director Lee 2 +97170 5080 has a true cinematic knack 3 +97171 5080 a true cinematic knack 3 +97172 5080 true cinematic knack 3 +97173 5080 cinematic knack 3 +97174 5080 it 's also nice to see a movie with its heart so thoroughly , unabashedly on its sleeve 4 +97175 5080 's also nice to see a movie with its heart so thoroughly , unabashedly on its sleeve 4 +97176 5080 's also nice to see a movie with its heart so thoroughly , unabashedly 3 +97177 5080 's also nice to see a movie with its heart so thoroughly , 3 +97178 5080 's also nice to see a movie with its heart so thoroughly 3 +97179 5080 's also nice to see a movie with its heart 3 +97180 5080 's also nice 3 +97181 5080 also nice 3 +97182 5080 to see a movie with its heart 3 +97183 5080 see a movie with its heart 3 +97184 5080 with its heart 2 +97185 5080 so thoroughly 2 +97186 5081 ... a movie that , quite simply , should n't have been made . 0 +97187 5081 a movie that , quite simply , should n't have been made . 0 +97188 5081 a movie that , quite simply , should n't have been made 0 +97189 5081 that , quite simply , should n't have been made 1 +97190 5081 , quite simply , should n't have been made 0 +97191 5081 quite simply , should n't have been made 1 +97192 5081 quite simply 2 +97193 5081 , should n't have been made 0 +97194 5081 should n't have been made 1 +97195 5081 have been made 2 +97196 5081 been made 2 +97197 5082 - style cross-country adventure ... it has sporadic bursts of liveliness , some so-so slapstick and a few ear-pleasing songs on its soundtrack . 3 +97198 5082 - style cross-country adventure 2 +97199 5082 style cross-country adventure 2 +97200 5082 cross-country adventure 2 +97201 5082 cross-country 2 +97202 5082 ... it has sporadic bursts of liveliness , some so-so slapstick and a few ear-pleasing songs on its soundtrack . 3 +97203 5082 it has sporadic bursts of liveliness , some so-so slapstick and a few ear-pleasing songs on its soundtrack . 2 +97204 5082 it has sporadic bursts of liveliness , some so-so slapstick and a few ear-pleasing songs on its soundtrack 2 +97205 5082 has sporadic bursts of liveliness , some so-so slapstick and a few ear-pleasing songs on its soundtrack 2 +97206 5082 sporadic bursts of liveliness , some so-so slapstick and a few ear-pleasing songs on its soundtrack 3 +97207 5082 sporadic bursts of liveliness , some so-so slapstick and 2 +97208 5082 sporadic bursts of liveliness , some so-so slapstick 1 +97209 5082 sporadic bursts of liveliness , 2 +97210 5082 sporadic bursts of liveliness 2 +97211 5082 sporadic bursts 2 +97212 5082 of liveliness 3 +97213 5082 liveliness 3 +97214 5082 some so-so slapstick 2 +97215 5082 so-so slapstick 1 +97216 5082 a few ear-pleasing songs on its soundtrack 3 +97217 5082 a few ear-pleasing songs 3 +97218 5082 few ear-pleasing songs 2 +97219 5082 ear-pleasing songs 3 +97220 5082 ear-pleasing 3 +97221 5082 on its soundtrack 2 +97222 5082 its soundtrack 2 +97223 5083 Howard and his co-stars all give committed performances , but they 're often undone by Howard 's self-conscious attempts to find a ` literary ' filmmaking style to match his subject . 1 +97224 5083 Howard and his co-stars all give committed performances , but they 're often undone by Howard 's self-conscious attempts to find a ` literary ' filmmaking style to match his subject 1 +97225 5083 Howard and his co-stars all give committed performances , but 3 +97226 5083 Howard and his co-stars all give committed performances , 3 +97227 5083 Howard and his co-stars all give committed performances 3 +97228 5083 Howard and his co-stars all 2 +97229 5083 Howard and 2 +97230 5083 his co-stars all 2 +97231 5083 his co-stars 2 +97232 5083 co-stars 3 +97233 5083 give committed performances 3 +97234 5083 committed performances 4 +97235 5083 they 're often undone by Howard 's self-conscious attempts to find a ` literary ' filmmaking style to match his subject 2 +97236 5083 're often undone by Howard 's self-conscious attempts to find a ` literary ' filmmaking style to match his subject 1 +97237 5083 're often 2 +97238 5083 undone by Howard 's self-conscious attempts to find a ` literary ' filmmaking style to match his subject 1 +97239 5083 undone by Howard 's self-conscious attempts 1 +97240 5083 by Howard 's self-conscious attempts 2 +97241 5083 Howard 's self-conscious attempts 2 +97242 5083 self-conscious attempts 2 +97243 5083 to find a ` literary ' filmmaking style to match his subject 2 +97244 5083 find a ` literary ' filmmaking style to match his subject 2 +97245 5083 find a ` literary ' filmmaking style 1 +97246 5083 a ` literary ' filmmaking style 2 +97247 5083 ` literary ' filmmaking style 2 +97248 5083 literary ' filmmaking style 2 +97249 5083 ' filmmaking style 2 +97250 5083 filmmaking style 2 +97251 5083 to match his subject 2 +97252 5083 match his subject 2 +97253 5083 his subject 2 +97254 5084 The film has the uncanny ability to right itself precisely when you think it 's in danger of going wrong . 3 +97255 5084 has the uncanny ability to right itself precisely when you think it 's in danger of going wrong . 2 +97256 5084 has the uncanny ability to right itself precisely when you think it 's in danger of going wrong 3 +97257 5084 the uncanny ability to right itself precisely when you think it 's in danger of going wrong 2 +97258 5084 uncanny ability to right itself precisely when you think it 's in danger of going wrong 3 +97259 5084 ability to right itself precisely when you think it 's in danger of going wrong 3 +97260 5084 to right itself precisely when you think it 's in danger of going wrong 2 +97261 5084 right itself precisely when you think it 's in danger of going wrong 3 +97262 5084 itself precisely when you think it 's in danger of going wrong 2 +97263 5084 precisely when you think it 's in danger of going wrong 2 +97264 5084 precisely when 2 +97265 5084 you think it 's in danger of going wrong 2 +97266 5084 think it 's in danger of going wrong 1 +97267 5084 it 's in danger of going wrong 1 +97268 5084 's in danger of going wrong 1 +97269 5084 in danger of going wrong 2 +97270 5084 danger of going wrong 2 +97271 5084 of going wrong 2 +97272 5084 going wrong 1 +97273 5085 ... an enjoyably frothy ` date movie ' ... 4 +97274 5085 an enjoyably frothy ` date movie ' ... 3 +97275 5085 an enjoyably 3 +97276 5085 frothy ` date movie ' ... 3 +97277 5085 frothy ` date movie ' 2 +97278 5085 frothy ` date movie 3 +97279 5085 frothy ` 2 +97280 5086 ... certainly an entertaining ride , despite many talky , slow scenes . 3 +97281 5086 certainly an entertaining ride , despite many talky , slow scenes . 3 +97282 5086 certainly an entertaining ride , despite many talky , slow scenes 3 +97283 5086 an entertaining ride , despite many talky , slow scenes 3 +97284 5086 an entertaining ride 3 +97285 5086 entertaining ride 3 +97286 5086 , despite many talky , slow scenes 1 +97287 5086 despite many talky , slow scenes 2 +97288 5086 despite many talky 2 +97289 5086 many talky 2 +97290 5086 , slow scenes 1 +97291 5086 slow scenes 1 +97292 5087 ... a series of tales told with the intricate preciseness of the best short story writing . 4 +97293 5087 a series of tales told with the intricate preciseness of the best short story writing . 4 +97294 5087 a series of tales 2 +97295 5087 of tales 2 +97296 5087 told with the intricate preciseness of the best short story writing . 4 +97297 5087 told with the intricate preciseness of the best short story writing 4 +97298 5087 with the intricate preciseness of the best short story writing 3 +97299 5087 the intricate preciseness of the best short story writing 4 +97300 5087 the intricate preciseness 3 +97301 5087 intricate preciseness 3 +97302 5087 preciseness 2 +97303 5087 of the best short story writing 4 +97304 5087 the best short story writing 4 +97305 5087 best short story writing 4 +97306 5087 best short 4 +97307 5087 story writing 2 +97308 5088 It 's a wonderful , sobering , heart-felt drama . 4 +97309 5088 's a wonderful , sobering , heart-felt drama . 4 +97310 5088 's a wonderful , sobering , heart-felt drama 4 +97311 5088 a wonderful , sobering , heart-felt drama 4 +97312 5088 wonderful , sobering , heart-felt drama 3 +97313 5088 , sobering , heart-felt drama 3 +97314 5088 sobering , heart-felt drama 3 +97315 5088 , heart-felt drama 3 +97316 5088 heart-felt drama 3 +97317 5088 heart-felt 3 +97318 5089 The cast , collectively a successful example of the lovable-loser protagonist , shows deft comic timing . 3 +97319 5089 The cast , collectively a successful example of the lovable-loser protagonist , 4 +97320 5089 The cast , collectively a successful example of the lovable-loser protagonist 3 +97321 5089 The cast , collectively 2 +97322 5089 a successful example of the lovable-loser protagonist 3 +97323 5089 a successful example 3 +97324 5089 successful example 3 +97325 5089 of the lovable-loser protagonist 3 +97326 5089 the lovable-loser protagonist 3 +97327 5089 lovable-loser protagonist 2 +97328 5089 lovable-loser 2 +97329 5089 shows deft comic timing . 3 +97330 5089 shows deft comic timing 2 +97331 5089 deft comic timing 3 +97332 5090 Its plot and animation offer daytime TV serviceability , but little more . 1 +97333 5090 Its plot and animation 2 +97334 5090 plot and animation 2 +97335 5090 plot and 2 +97336 5090 offer daytime TV serviceability , but little more . 2 +97337 5090 offer daytime TV serviceability , but little more 2 +97338 5090 daytime TV serviceability , but little more 3 +97339 5090 daytime TV 2 +97340 5090 serviceability , but little more 2 +97341 5090 serviceability , but 1 +97342 5090 serviceability , 2 +97343 5090 serviceability 2 +97344 5091 On the evidence before us , the answer is clear : Not easily and , in the end , not well enough . 1 +97345 5091 On the evidence before us 2 +97346 5091 the evidence before us 2 +97347 5091 the evidence 2 +97348 5091 before us 2 +97349 5091 , the answer is clear : Not easily and , in the end , not well enough . 1 +97350 5091 the answer is clear : Not easily and , in the end , not well enough . 0 +97351 5091 is clear : Not easily and , in the end , not well enough . 1 +97352 5091 is clear : Not easily and , in the end , not well enough 1 +97353 5091 is clear : 2 +97354 5091 is clear 2 +97355 5091 Not easily and , in the end , not well enough 1 +97356 5091 easily and , in the end , not well enough 1 +97357 5091 and , in the end , not well enough 1 +97358 5091 and , in the end , 2 +97359 5091 and , in the end 2 +97360 5091 and , 3 +97361 5092 It is not what you see , it is what you think you see . 2 +97362 5092 It is not what you see 2 +97363 5092 is not what you see 2 +97364 5092 what you see 2 +97365 5092 you see 2 +97366 5092 , it is what you think you see . 2 +97367 5092 it is what you think you see . 2 +97368 5092 is what you think you see . 2 +97369 5092 is what you think you see 2 +97370 5092 what you think you see 2 +97371 5092 you think you see 2 +97372 5092 think you see 2 +97373 5093 Canada 's arctic light shines bright on this frozen tundra soap opera that breathes extraordinary life into the private existence of the Inuit people . 3 +97374 5093 Canada 's arctic light 3 +97375 5093 Canada 's 2 +97376 5093 arctic light 2 +97377 5093 arctic 2 +97378 5093 shines bright on this frozen tundra soap opera that breathes extraordinary life into the private existence of the Inuit people . 4 +97379 5093 shines bright on this frozen tundra soap opera that breathes extraordinary life into the private existence of the Inuit people 4 +97380 5093 bright on this frozen tundra soap opera that breathes extraordinary life into the private existence of the Inuit people 3 +97381 5093 on this frozen tundra soap opera that breathes extraordinary life into the private existence of the Inuit people 4 +97382 5093 this frozen tundra soap opera that breathes extraordinary life into the private existence of the Inuit people 3 +97383 5093 this frozen tundra soap opera 1 +97384 5093 frozen tundra soap opera 1 +97385 5093 tundra soap opera 2 +97386 5093 tundra 2 +97387 5093 that breathes extraordinary life into the private existence of the Inuit people 4 +97388 5093 breathes extraordinary life into the private existence of the Inuit people 4 +97389 5093 breathes extraordinary life 3 +97390 5093 extraordinary life 2 +97391 5093 into the private existence of the Inuit people 2 +97392 5093 the private existence of the Inuit people 2 +97393 5093 the private existence 2 +97394 5093 private existence 2 +97395 5093 of the Inuit people 2 +97396 5093 the Inuit people 2 +97397 5093 Inuit people 2 +97398 5093 Inuit 2 +97399 5094 Several uninteresting , unlikeable people do bad things to and with each other in `` Unfaithful . '' 0 +97400 5094 Several uninteresting , unlikeable people 1 +97401 5094 uninteresting , unlikeable people 0 +97402 5094 , unlikeable people 1 +97403 5094 unlikeable people 1 +97404 5094 unlikeable 1 +97405 5094 do bad things to and with each other in `` Unfaithful . '' 2 +97406 5094 do bad things to and with each other in `` Unfaithful . 2 +97407 5094 do bad things to and with each other in `` Unfaithful 2 +97408 5094 do bad things 1 +97409 5094 bad things 1 +97410 5094 to and with each other in `` Unfaithful 2 +97411 5094 to and with 2 +97412 5094 to and 2 +97413 5094 each other in `` Unfaithful 2 +97414 5094 in `` Unfaithful 1 +97415 5094 in `` 2 +97416 5095 Plays like the old disease-of-the-week small-screen melodramas . 1 +97417 5095 like the old disease-of-the-week small-screen melodramas . 1 +97418 5095 like the old disease-of-the-week small-screen melodramas 1 +97419 5095 the old disease-of-the-week small-screen melodramas 1 +97420 5095 old disease-of-the-week small-screen melodramas 1 +97421 5095 disease-of-the-week small-screen melodramas 1 +97422 5095 disease-of-the-week 1 +97423 5095 small-screen melodramas 2 +97424 5095 small-screen 2 +97425 5095 melodramas 2 +97426 5096 Alternating between facetious comic parody and pulp melodrama , this smart-aleck movie ... tosses around some intriguing questions about the difference between human and android life . 3 +97427 5096 Alternating between facetious comic parody and pulp melodrama , this smart-aleck movie ... tosses around some intriguing questions about the difference between human and android life 4 +97428 5096 Alternating between facetious 2 +97429 5096 Alternating between 2 +97430 5096 Alternating 2 +97431 5096 comic parody and pulp melodrama , this smart-aleck movie ... tosses around some intriguing questions about the difference between human and android life 3 +97432 5096 comic parody and pulp melodrama , 2 +97433 5096 comic parody and pulp melodrama 2 +97434 5096 parody and pulp melodrama 2 +97435 5096 and pulp melodrama 1 +97436 5096 pulp melodrama 1 +97437 5096 this smart-aleck movie ... tosses around some intriguing questions about the difference between human and android life 3 +97438 5096 this smart-aleck movie ... 2 +97439 5096 this smart-aleck movie 2 +97440 5096 smart-aleck movie 3 +97441 5096 smart-aleck 1 +97442 5096 tosses around some intriguing questions about the difference between human and android life 3 +97443 5096 around some intriguing questions about the difference between human and android life 3 +97444 5096 some intriguing questions about the difference between human and android life 3 +97445 5096 some intriguing questions 2 +97446 5096 intriguing questions 3 +97447 5096 about the difference between human and android life 2 +97448 5096 the difference between human and android life 2 +97449 5096 between human and android life 2 +97450 5096 human and android life 2 +97451 5096 and android life 2 +97452 5096 android life 2 +97453 5096 android 2 +97454 5097 If I want a real movie , I 'll buy the Criterion DVD . 1 +97455 5097 If I want a real movie 1 +97456 5097 I want a real movie 2 +97457 5097 want a real movie 1 +97458 5097 , I 'll buy the Criterion DVD . 2 +97459 5097 I 'll buy the Criterion DVD . 3 +97460 5097 'll buy the Criterion DVD . 2 +97461 5097 'll buy the Criterion DVD 2 +97462 5097 buy the Criterion DVD 2 +97463 5097 the Criterion DVD 2 +97464 5097 Criterion DVD 2 +97465 5097 Criterion 2 +97466 5098 A deliberative account of a lifestyle characterized by its surface-obsession -- one that typifies the delirium of post , pre , and extant stardom . 3 +97467 5098 A deliberative account of a lifestyle 3 +97468 5098 A deliberative account 2 +97469 5098 deliberative account 2 +97470 5098 deliberative 2 +97471 5098 of a lifestyle 2 +97472 5098 a lifestyle 2 +97473 5098 characterized by its surface-obsession -- one that typifies the delirium of post , pre , and extant stardom . 2 +97474 5098 characterized by its surface-obsession -- one that typifies the delirium of post , pre , and extant stardom 2 +97475 5098 by its surface-obsession -- one that typifies the delirium of post , pre , and extant stardom 2 +97476 5098 its surface-obsession -- one that typifies the delirium of post , pre , and extant stardom 2 +97477 5098 its surface-obsession -- 2 +97478 5098 its surface-obsession 2 +97479 5098 surface-obsession 2 +97480 5098 one that typifies the delirium of post , pre , and extant stardom 3 +97481 5098 that typifies the delirium of post , pre , and extant stardom 2 +97482 5098 typifies the delirium of post , pre , and extant stardom 2 +97483 5098 typifies 2 +97484 5098 the delirium of post , pre , and extant stardom 2 +97485 5098 the delirium 2 +97486 5098 delirium 2 +97487 5098 of post , pre , and extant stardom 2 +97488 5098 post , pre , and extant stardom 2 +97489 5098 post , pre , and 2 +97490 5098 post , pre , 2 +97491 5098 post , pre 2 +97492 5098 post , 2 +97493 5098 pre 2 +97494 5098 extant stardom 3 +97495 5098 extant 2 +97496 5099 Lux , now in her eighties , does a great combination act as narrator , Jewish grandmother and subject -- taking us through a film that is part biography , part entertainment and part history . 4 +97497 5099 Lux , now in her eighties , 2 +97498 5099 Lux , now in her eighties 2 +97499 5099 Lux , 2 +97500 5099 Lux 2 +97501 5099 now in her eighties 2 +97502 5099 in her eighties 2 +97503 5099 her eighties 2 +97504 5099 eighties 3 +97505 5099 does a great combination act as narrator , Jewish grandmother and subject -- taking us through a film that is part biography , part entertainment and part history . 3 +97506 5099 does a great combination act as narrator , Jewish grandmother and subject -- taking us through a film that is part biography , part entertainment and part history 4 +97507 5099 does a great combination act as narrator , Jewish grandmother and subject -- 4 +97508 5099 does a great combination act as narrator , Jewish grandmother and subject 3 +97509 5099 does a great combination act 4 +97510 5099 a great combination act 3 +97511 5099 great combination act 3 +97512 5099 combination act 2 +97513 5099 as narrator , Jewish grandmother and subject 2 +97514 5099 narrator , Jewish grandmother and subject 2 +97515 5099 narrator , Jewish grandmother and 2 +97516 5099 narrator , Jewish grandmother 2 +97517 5099 narrator , 2 +97518 5099 Jewish grandmother 2 +97519 5099 grandmother 2 +97520 5099 taking us through a film that is part biography , part entertainment and part history 3 +97521 5099 through a film that is part biography , part entertainment and part history 2 +97522 5099 a film that is part biography , part entertainment and part history 3 +97523 5099 that is part biography , part entertainment and part history 3 +97524 5099 is part biography , part entertainment and part history 2 +97525 5099 part biography , part entertainment and part history 3 +97526 5099 part biography , part entertainment and 3 +97527 5099 part biography , part entertainment 3 +97528 5099 part biography , 2 +97529 5099 part biography 2 +97530 5099 part entertainment 2 +97531 5099 part history 2 +97532 5100 Video games are more involving than this mess . 1 +97533 5100 Video games 2 +97534 5100 are more involving than this mess . 0 +97535 5100 are more involving than this mess 0 +97536 5100 are more 2 +97537 5100 involving than this mess 1 +97538 5100 than this mess 1 +97539 5101 Features Fincher 's characteristically startling visual style and an almost palpable sense of intensity . 3 +97540 5101 Features Fincher 2 +97541 5101 's characteristically startling visual style and an almost palpable sense of intensity . 3 +97542 5101 's characteristically startling visual style and an almost palpable sense of intensity 2 +97543 5101 characteristically startling visual style and an almost palpable sense of intensity 3 +97544 5101 characteristically startling visual style and 4 +97545 5101 characteristically startling visual style 3 +97546 5101 characteristically startling 2 +97547 5101 an almost palpable sense of intensity 3 +97548 5101 an almost palpable sense 2 +97549 5101 almost palpable sense 2 +97550 5101 almost palpable 2 +97551 5101 of intensity 2 +97552 5102 None of the characters or plot-lines are fleshed-out enough to build any interest . 1 +97553 5102 None of the characters or plot-lines 2 +97554 5102 of the characters or plot-lines 2 +97555 5102 the characters or plot-lines 2 +97556 5102 characters or plot-lines 2 +97557 5102 characters or 2 +97558 5102 plot-lines 2 +97559 5102 are fleshed-out enough to build any interest . 2 +97560 5102 are fleshed-out enough to build any interest 1 +97561 5102 fleshed-out enough to build any interest 3 +97562 5102 fleshed-out enough 2 +97563 5102 fleshed-out 2 +97564 5102 to build any interest 2 +97565 5102 build any interest 2 +97566 5103 Otherwise , this could be a passable date film . 1 +97567 5103 , this could be a passable date film . 3 +97568 5103 this could be a passable date film . 2 +97569 5103 could be a passable date film . 2 +97570 5103 could be a passable date film 3 +97571 5103 be a passable date film 3 +97572 5103 a passable date film 3 +97573 5103 passable date film 2 +97574 5103 date film 2 +97575 5104 Are monsters born , or made ? 2 +97576 5104 Are monsters born , or made 2 +97577 5104 Are monsters 2 +97578 5104 born , or made 2 +97579 5104 born , or 2 +97580 5104 born , 2 +97581 5105 All of the elements are in place for a great film noir , but director George Hickenlooper 's approach to the material is too upbeat . 1 +97582 5105 All of the elements are in place for a great film noir , but director George Hickenlooper 's approach to the material is too upbeat 2 +97583 5105 All of the elements are in place for a great film noir , but 3 +97584 5105 All of the elements are in place for a great film noir , 4 +97585 5105 All of the elements are in place for a great film noir 3 +97586 5105 All of the elements 2 +97587 5105 of the elements 2 +97588 5105 are in place for a great film noir 3 +97589 5105 in place for a great film noir 4 +97590 5105 place for a great film noir 3 +97591 5105 for a great film noir 3 +97592 5105 a great film noir 3 +97593 5105 great film noir 4 +97594 5105 director George Hickenlooper 's approach to the material is too upbeat 2 +97595 5105 director George Hickenlooper 's approach to the material 2 +97596 5105 director George Hickenlooper 's approach 2 +97597 5105 director George Hickenlooper 's 2 +97598 5105 George Hickenlooper 's 3 +97599 5105 Hickenlooper 's 2 +97600 5105 Hickenlooper 2 +97601 5105 to the material 2 +97602 5105 is too upbeat 1 +97603 5105 too upbeat 2 +97604 5106 A little melodramatic , but with enough hope to keep you engaged . 3 +97605 5106 A little melodramatic , but with enough 1 +97606 5106 little melodramatic , but with enough 2 +97607 5106 little melodramatic , but with 1 +97608 5106 little melodramatic 1 +97609 5106 , but with 2 +97610 5106 hope to keep you engaged . 2 +97611 5106 hope to keep you engaged 2 +97612 5106 to keep you engaged 2 +97613 5106 keep you engaged 3 +97614 5106 you engaged 2 +97615 5107 Generic slasher-movie nonsense , but it 's not without style . 2 +97616 5107 Generic slasher-movie nonsense 0 +97617 5107 slasher-movie nonsense 2 +97618 5107 slasher-movie 2 +97619 5107 , but it 's not without style . 2 +97620 5107 , but it 's not without style 3 +97621 5107 it 's not without style 2 +97622 5107 's not without style 3 +97623 5107 without style 1 +97624 5108 A superlative B movie -- funny , sexy , and rousing . 3 +97625 5108 A superlative B movie -- funny , sexy , and rousing 3 +97626 5108 A superlative B movie -- 3 +97627 5108 A superlative B movie 4 +97628 5108 superlative B movie 2 +97629 5108 superlative 3 +97630 5108 funny , sexy , and rousing 4 +97631 5108 sexy , and rousing 4 +97632 5108 , and rousing 3 +97633 5109 It did n't go straight to video . 2 +97634 5109 did n't go straight to video . 2 +97635 5109 did n't go straight to video 2 +97636 5109 go straight to video 1 +97637 5109 go straight 2 +97638 5109 to video 3 +97639 5110 The misery of these people becomes just another voyeuristic spectacle , to be consumed and forgotten . 0 +97640 5110 The misery of these people 1 +97641 5110 The misery 1 +97642 5110 becomes just another voyeuristic spectacle , to be consumed and forgotten . 0 +97643 5110 becomes just another voyeuristic spectacle , to be consumed and forgotten 1 +97644 5110 becomes just another voyeuristic spectacle , 1 +97645 5110 becomes just another voyeuristic spectacle 1 +97646 5110 just another voyeuristic spectacle 1 +97647 5110 another voyeuristic spectacle 2 +97648 5110 voyeuristic spectacle 3 +97649 5110 voyeuristic 2 +97650 5110 to be consumed and forgotten 1 +97651 5110 be consumed and forgotten 1 +97652 5110 consumed and forgotten 1 +97653 5110 consumed and 2 +97654 5111 Aan opportunity wasted . 1 +97655 5111 Aan opportunity 2 +97656 5111 Aan 2 +97657 5111 wasted . 1 +97658 5112 This stuck pig of a movie flails limply between bizarre comedy and pallid horror . 0 +97659 5112 This stuck pig of a movie 0 +97660 5112 This stuck pig 1 +97661 5112 stuck pig 2 +97662 5112 pig 1 +97663 5112 flails limply between bizarre comedy and pallid horror . 0 +97664 5112 flails limply between bizarre comedy and pallid horror 0 +97665 5112 flails 1 +97666 5112 limply between bizarre comedy and pallid horror 0 +97667 5112 limply 1 +97668 5112 between bizarre comedy and pallid horror 2 +97669 5112 bizarre comedy and pallid horror 2 +97670 5112 bizarre comedy and 2 +97671 5112 bizarre comedy 2 +97672 5112 pallid horror 1 +97673 5112 pallid 1 +97674 5113 It is bad , but certainly not without merit as entertainment . 1 +97675 5113 is bad , but certainly not without merit as entertainment . 2 +97676 5113 is bad , but certainly not without merit as entertainment 2 +97677 5113 is bad , but certainly not without merit 2 +97678 5113 is bad 0 +97679 5113 , but certainly not without merit 2 +97680 5113 but certainly not without merit 3 +97681 5113 certainly not without merit 3 +97682 5113 not without merit 3 +97683 5113 without merit 1 +97684 5114 One of the most original American productions this year , you 'll find yourself remembering this refreshing visit to a Sunshine State . 4 +97685 5114 One of the most original American productions this year 4 +97686 5114 of the most original American productions this year 4 +97687 5114 the most original American productions this year 4 +97688 5114 the most original American productions 3 +97689 5114 most original American productions 4 +97690 5114 original American productions 2 +97691 5114 American productions 2 +97692 5114 , you 'll find yourself remembering this refreshing visit to a Sunshine State . 3 +97693 5114 you 'll find yourself remembering this refreshing visit to a Sunshine State . 3 +97694 5114 'll find yourself remembering this refreshing visit to a Sunshine State . 3 +97695 5114 'll find yourself remembering this refreshing visit to a Sunshine State 4 +97696 5114 find yourself remembering this refreshing visit to a Sunshine State 2 +97697 5114 yourself remembering this refreshing visit to a Sunshine State 3 +97698 5114 remembering this refreshing visit to a Sunshine State 2 +97699 5114 remembering this refreshing visit 3 +97700 5114 this refreshing visit 3 +97701 5114 refreshing visit 3 +97702 5114 to a Sunshine State 3 +97703 5114 a Sunshine State 2 +97704 5115 A bland animated sequel that hardly seems worth the effort . 1 +97705 5115 A bland animated sequel that 1 +97706 5115 A bland animated sequel 0 +97707 5115 bland animated sequel 0 +97708 5115 animated sequel 2 +97709 5115 hardly seems worth the effort . 1 +97710 5115 seems worth the effort . 3 +97711 5115 seems worth the effort 3 +97712 5115 worth the effort 3 +97713 5116 Maybe LeBlanc thought , `` Hey , the movie about the baseball-playing monkey was worse . '' 1 +97714 5116 LeBlanc thought , `` Hey , the movie about the baseball-playing monkey was worse . '' 1 +97715 5116 LeBlanc thought , `` Hey , 2 +97716 5116 LeBlanc thought , `` Hey 2 +97717 5116 LeBlanc 2 +97718 5116 thought , `` Hey 2 +97719 5116 thought , `` 2 +97720 5116 thought , 2 +97721 5116 the movie about the baseball-playing monkey was worse . '' 1 +97722 5116 the movie about the baseball-playing monkey 2 +97723 5116 about the baseball-playing monkey 2 +97724 5116 the baseball-playing monkey 3 +97725 5116 baseball-playing monkey 2 +97726 5116 baseball-playing 2 +97727 5116 monkey 2 +97728 5116 was worse . '' 1 +97729 5116 was worse . 1 +97730 5116 was worse 2 +97731 5117 From its invitingly upbeat overture to its pathos-filled but ultimately life-affirming finale , Martin is a masterfully conducted work . 3 +97732 5117 From its invitingly upbeat overture to its pathos-filled but ultimately life-affirming finale 3 +97733 5117 its invitingly upbeat overture to its pathos-filled but ultimately life-affirming finale 4 +97734 5117 its invitingly upbeat overture to 3 +97735 5117 its invitingly upbeat overture 3 +97736 5117 invitingly upbeat overture 3 +97737 5117 invitingly upbeat 3 +97738 5117 invitingly 2 +97739 5117 overture 2 +97740 5117 its pathos-filled but ultimately life-affirming finale 3 +97741 5117 pathos-filled but ultimately life-affirming finale 3 +97742 5117 pathos-filled but ultimately life-affirming 3 +97743 5117 pathos-filled but 2 +97744 5117 pathos-filled 2 +97745 5117 ultimately life-affirming 3 +97746 5117 , Martin is a masterfully conducted work . 4 +97747 5117 Martin is a masterfully conducted work . 3 +97748 5117 is a masterfully conducted work . 4 +97749 5117 is a masterfully conducted work 4 +97750 5117 is a masterfully 4 +97751 5117 conducted work 2 +97752 5117 conducted 2 +97753 5118 Poignant Japanese epic about adolescent anomie and heartbreak . 3 +97754 5118 Poignant Japanese epic about adolescent anomie and heartbreak 2 +97755 5118 Poignant Japanese epic 3 +97756 5118 Japanese epic 3 +97757 5118 about adolescent anomie and heartbreak 2 +97758 5118 adolescent anomie and heartbreak 2 +97759 5118 anomie and heartbreak 1 +97760 5118 anomie and 2 +97761 5119 Great fun both for sports aficionados and for ordinary louts whose idea of exercise is climbing the steps of a stadium-seat megaplex . 3 +97762 5119 Great fun both for sports aficionados and for ordinary louts whose idea of exercise is climbing the steps of a stadium-seat megaplex 4 +97763 5119 both for sports aficionados and for ordinary louts whose idea of exercise is climbing the steps of a stadium-seat megaplex 2 +97764 5119 for sports aficionados and for ordinary louts whose idea of exercise is climbing the steps of a stadium-seat megaplex 2 +97765 5119 for sports aficionados and 2 +97766 5119 for sports aficionados 2 +97767 5119 sports aficionados 3 +97768 5119 for ordinary louts whose idea of exercise is climbing the steps of a stadium-seat megaplex 1 +97769 5119 ordinary louts whose idea of exercise is climbing the steps of a stadium-seat megaplex 2 +97770 5119 ordinary louts 2 +97771 5119 louts 2 +97772 5119 whose idea of exercise is climbing the steps of a stadium-seat megaplex 2 +97773 5119 whose idea of exercise 2 +97774 5119 whose idea 2 +97775 5119 of exercise 2 +97776 5119 is climbing the steps of a stadium-seat megaplex 2 +97777 5119 climbing the steps of a stadium-seat megaplex 2 +97778 5119 climbing 2 +97779 5119 the steps of a stadium-seat megaplex 2 +97780 5119 the steps 2 +97781 5119 steps 2 +97782 5119 of a stadium-seat megaplex 2 +97783 5119 a stadium-seat megaplex 3 +97784 5119 stadium-seat megaplex 2 +97785 5119 stadium-seat 2 +97786 5119 megaplex 2 +97787 5120 An excruciating demonstration of the unsalvageability of a movie saddled with an amateurish screenplay . 1 +97788 5120 An excruciating demonstration of the unsalvageability of a movie saddled with an amateurish screenplay 0 +97789 5120 An excruciating demonstration of the unsalvageability 1 +97790 5120 An excruciating demonstration 2 +97791 5120 excruciating demonstration 1 +97792 5120 of the unsalvageability 1 +97793 5120 the unsalvageability 1 +97794 5120 unsalvageability 1 +97795 5120 of a movie saddled with an amateurish screenplay 0 +97796 5120 a movie saddled with an amateurish screenplay 2 +97797 5120 saddled with an amateurish screenplay 2 +97798 5120 with an amateurish screenplay 1 +97799 5120 an amateurish screenplay 0 +97800 5120 amateurish screenplay 1 +97801 5121 Trying to make head or tail of the story in the hip-hop indie Snipes is enough to give you brain strain -- and the pay-off is negligible . 1 +97802 5121 Trying to make head or tail of the story in the hip-hop indie Snipes is enough to give you brain strain -- and the pay-off is negligible 0 +97803 5121 Trying to make head or tail of the story in the hip-hop indie Snipes is enough to give you brain strain -- and 1 +97804 5121 Trying to make head or tail of the story in the hip-hop indie Snipes is enough to give you brain strain -- 1 +97805 5121 Trying to make head or tail of the story in the hip-hop indie Snipes is enough to give you brain strain 1 +97806 5121 Trying to make head or tail of the story in the hip-hop indie Snipes 2 +97807 5121 to make head or tail of the story in the hip-hop indie Snipes 2 +97808 5121 make head or tail of the story in the hip-hop indie Snipes 2 +97809 5121 head or tail of the story in the hip-hop indie Snipes 2 +97810 5121 head or tail 2 +97811 5121 head or 2 +97812 5121 tail 2 +97813 5121 of the story in the hip-hop indie Snipes 2 +97814 5121 the story in the hip-hop indie Snipes 2 +97815 5121 in the hip-hop indie Snipes 2 +97816 5121 the hip-hop indie Snipes 2 +97817 5121 hip-hop indie Snipes 3 +97818 5121 indie Snipes 2 +97819 5121 is enough to give you brain strain 1 +97820 5121 enough to give you brain strain 1 +97821 5121 to give you brain strain 1 +97822 5121 give you brain strain 2 +97823 5121 brain strain 1 +97824 5121 the pay-off is negligible 1 +97825 5121 the pay-off 2 +97826 5121 pay-off 2 +97827 5121 is negligible 2 +97828 5122 It reduces the complexities to bromides and slogans and it gets so preachy-keen and so tub-thumpingly loud it makes you feel like a chump just for sitting through it . 1 +97829 5122 It reduces the complexities to bromides and slogans and it gets so preachy-keen and so tub-thumpingly loud it makes you feel like a chump just for sitting through it 0 +97830 5122 It reduces the complexities to bromides and slogans and it gets so preachy-keen and so tub-thumpingly loud it makes you feel like a chump 1 +97831 5122 It reduces the complexities to bromides and slogans and 1 +97832 5122 It reduces the complexities to bromides and slogans 1 +97833 5122 reduces the complexities to bromides and slogans 1 +97834 5122 reduces the complexities 2 +97835 5122 reduces 2 +97836 5122 to bromides and slogans 2 +97837 5122 bromides and slogans 2 +97838 5122 bromides and 2 +97839 5122 bromides 2 +97840 5122 slogans 2 +97841 5122 it gets so preachy-keen and so tub-thumpingly loud it makes you feel like a chump 1 +97842 5122 gets so preachy-keen and so tub-thumpingly loud it makes you feel like a chump 2 +97843 5122 so preachy-keen and so tub-thumpingly loud it makes you feel like a chump 1 +97844 5122 so preachy-keen and so 2 +97845 5122 so preachy-keen and 1 +97846 5122 so preachy-keen 2 +97847 5122 preachy-keen 3 +97848 5122 tub-thumpingly loud it makes you feel like a chump 1 +97849 5122 tub-thumpingly loud 1 +97850 5122 tub-thumpingly 3 +97851 5122 it makes you feel like a chump 1 +97852 5122 makes you feel like a chump 1 +97853 5122 you feel like a chump 1 +97854 5122 feel like a chump 1 +97855 5122 like a chump 2 +97856 5122 a chump 2 +97857 5122 chump 2 +97858 5122 just for sitting through it 1 +97859 5122 for sitting through it 2 +97860 5123 Uneven , self-conscious but often hilarious spoof . 3 +97861 5123 Uneven , self-conscious but often hilarious 3 +97862 5123 Uneven , 2 +97863 5123 self-conscious but often hilarious 3 +97864 5123 self-conscious but 2 +97865 5123 spoof . 2 +97866 5124 Feeble comedy . 1 +97867 5124 Feeble comedy 1 +97868 5125 Many a parent and their teen -LRB- or preteen -RRB- kid could bond while watching A Walk To Remember . 4 +97869 5125 Many a parent and their teen -LRB- or preteen -RRB- kid 2 +97870 5125 a parent and their teen -LRB- or preteen -RRB- kid 2 +97871 5125 a parent and 2 +97872 5125 a parent 2 +97873 5125 their teen -LRB- or preteen -RRB- kid 2 +97874 5125 their teen -LRB- or preteen -RRB- 2 +97875 5125 their teen 2 +97876 5125 -LRB- or preteen -RRB- 2 +97877 5125 -LRB- or preteen 2 +97878 5125 preteen 2 +97879 5125 could bond while watching A Walk To Remember . 3 +97880 5125 could bond while watching A Walk To Remember 2 +97881 5125 could bond while 2 +97882 5125 bond while 2 +97883 5125 watching A Walk To Remember 3 +97884 5126 A Jewish WW II doc that is n't trying simply to out-shock , out-outrage or out-depress its potential audience ! 2 +97885 5126 A Jewish WW II 2 +97886 5126 Jewish WW II 2 +97887 5126 WW II 2 +97888 5126 WW 2 +97889 5126 doc that is n't trying simply to out-shock , out-outrage or out-depress its potential audience ! 3 +97890 5126 doc that is n't trying simply to out-shock , out-outrage or out-depress its potential audience 2 +97891 5126 doc 2 +97892 5126 that is n't trying simply to out-shock , out-outrage or out-depress its potential audience 2 +97893 5126 is n't trying simply to out-shock , out-outrage or out-depress its potential audience 3 +97894 5126 trying simply to out-shock , out-outrage or out-depress its potential audience 0 +97895 5126 trying simply 2 +97896 5126 to out-shock , out-outrage or out-depress its potential audience 1 +97897 5126 out-shock , out-outrage or out-depress its potential audience 1 +97898 5126 out-shock , out-outrage or out-depress 1 +97899 5126 out-shock 2 +97900 5126 , out-outrage or out-depress 1 +97901 5126 out-outrage or out-depress 2 +97902 5126 out-outrage or 2 +97903 5126 out-outrage 1 +97904 5126 out-depress 2 +97905 5126 its potential audience 2 +97906 5126 potential audience 2 +97907 5127 It 's no surprise that as a director Washington demands and receives excellent performances , from himself and from newcomer Derek Luke . 4 +97908 5127 's no surprise that as a director Washington demands and receives excellent performances , from himself and from newcomer Derek Luke . 4 +97909 5127 's no surprise that as a director Washington demands and receives excellent performances , from himself and from newcomer Derek Luke 4 +97910 5127 's no surprise that as a director Washington demands and receives excellent performances , 4 +97911 5127 's no surprise that as a director Washington demands and receives excellent performances 4 +97912 5127 's no surprise 2 +97913 5127 no surprise 2 +97914 5127 that as a director Washington demands and receives excellent performances 4 +97915 5127 as a director Washington demands and receives excellent performances 4 +97916 5127 Washington demands and receives excellent performances 4 +97917 5127 demands and receives excellent performances 4 +97918 5127 demands and receives 2 +97919 5127 demands and 2 +97920 5127 receives 2 +97921 5127 from himself and from newcomer Derek Luke 2 +97922 5127 from himself and 2 +97923 5127 from himself 2 +97924 5127 from newcomer Derek Luke 2 +97925 5127 newcomer Derek Luke 2 +97926 5127 Derek Luke 2 +97927 5127 Luke 2 +97928 5128 Austin Powers for the most part is extremely funny , the first part making up for any flaws that come later . 3 +97929 5128 Austin Powers for the most part 2 +97930 5128 is extremely funny , the first part making up for any flaws that come later . 3 +97931 5128 is extremely funny , the first part making up for any flaws that come later 4 +97932 5128 is extremely funny , 4 +97933 5128 is extremely funny 4 +97934 5128 extremely funny 4 +97935 5128 the first part making up for any flaws that come later 3 +97936 5128 the first part 2 +97937 5128 first part 2 +97938 5128 making up for any flaws that come later 3 +97939 5128 making up 2 +97940 5128 for any flaws that come later 2 +97941 5128 any flaws that come later 1 +97942 5128 any flaws 2 +97943 5128 that come later 2 +97944 5128 come later 2 +97945 5129 A collage 2 +97946 5129 a dim 1 +97947 5129 dim 2 +97948 5129 echo of allusions to other films . 2 +97949 5129 echo of allusions to other films 2 +97950 5129 echo of allusions 3 +97951 5129 echo 2 +97952 5129 of allusions 2 +97953 5129 to other films 2 +97954 5130 Psychologically revealing . 3 +97955 5130 Psychologically revealing 3 +97956 5131 Serving Sara should be served an eviction notice at every theater stuck with it . 1 +97957 5131 should be served an eviction notice at every theater stuck with it . 0 +97958 5131 should be served an eviction notice at every theater stuck with it 0 +97959 5131 be served an eviction notice at every theater stuck with it 0 +97960 5131 served an eviction notice at every theater stuck with it 1 +97961 5131 served an eviction notice 2 +97962 5131 an eviction notice 1 +97963 5131 eviction notice 2 +97964 5131 eviction 3 +97965 5131 at every theater stuck with it 2 +97966 5131 every theater stuck with it 1 +97967 5131 every theater 2 +97968 5131 stuck with it 2 +97969 5132 ... expands the horizons of boredom to the point of collapse , turning into a black hole of dullness , from which no interesting concept can escape . 1 +97970 5132 expands the horizons of boredom to the point of collapse , turning into a black hole of dullness , from which no interesting concept can escape . 0 +97971 5132 expands the horizons of boredom to the point of collapse , turning into a black hole of dullness , from which no interesting concept can escape 0 +97972 5132 the horizons of boredom to the point of collapse , turning into a black hole of dullness , from which no interesting concept can escape 1 +97973 5132 the horizons 2 +97974 5132 horizons 3 +97975 5132 of boredom to the point of collapse , turning into a black hole of dullness , from which no interesting concept can escape 0 +97976 5132 boredom to the point of collapse , turning into a black hole of dullness , from which no interesting concept can escape 0 +97977 5132 boredom to the point of collapse , turning into a black hole of dullness , 0 +97978 5132 boredom to the point of collapse , turning into a black hole of dullness 0 +97979 5132 boredom to the point of collapse , 1 +97980 5132 boredom to the point of collapse 0 +97981 5132 boredom to the point 0 +97982 5132 boredom 0 +97983 5132 of collapse 2 +97984 5132 collapse 1 +97985 5132 turning into a black hole of dullness 1 +97986 5132 into a black hole of dullness 0 +97987 5132 a black hole of dullness 0 +97988 5132 a black hole 1 +97989 5132 black hole 2 +97990 5132 of dullness 2 +97991 5132 dullness 1 +97992 5132 from which no interesting concept can escape 1 +97993 5132 from which 2 +97994 5132 no interesting concept can escape 1 +97995 5132 no interesting concept 0 +97996 5132 interesting concept 3 +97997 5132 can escape 2 +97998 5133 All three women deliver remarkable performances . 3 +97999 5133 All three women 2 +98000 5133 three women 2 +98001 5133 deliver remarkable performances . 3 +98002 5133 deliver remarkable performances 4 +98003 5134 Leigh makes these lives count . 3 +98004 5134 makes these lives count . 3 +98005 5134 makes these lives count 3 +98006 5134 these lives count 3 +98007 5134 lives count 3 +98008 5135 This is a nicely handled affair , a film about human darkness but etched with a light -LRB- yet unsentimental -RRB- touch . 3 +98009 5135 is a nicely handled affair , a film about human darkness but etched with a light -LRB- yet unsentimental -RRB- touch . 2 +98010 5135 is a nicely handled affair , a film about human darkness but etched with a light -LRB- yet unsentimental -RRB- touch 3 +98011 5135 is a nicely 2 +98012 5135 a nicely 3 +98013 5135 handled affair , a film about human darkness but etched with a light -LRB- yet unsentimental -RRB- touch 3 +98014 5135 handled affair , a film about human darkness but 2 +98015 5135 handled affair , a film about human darkness 2 +98016 5135 affair , a film about human darkness 2 +98017 5135 affair , 1 +98018 5135 a film about human darkness 2 +98019 5135 about human darkness 2 +98020 5135 human darkness 1 +98021 5135 etched with a light -LRB- yet unsentimental -RRB- touch 2 +98022 5135 etched 2 +98023 5135 with a light -LRB- yet unsentimental -RRB- touch 3 +98024 5135 a light -LRB- yet unsentimental -RRB- touch 3 +98025 5135 light -LRB- yet unsentimental -RRB- touch 2 +98026 5135 light -LRB- yet unsentimental -RRB- 3 +98027 5135 -LRB- yet unsentimental -RRB- 2 +98028 5135 yet unsentimental -RRB- 2 +98029 5135 unsentimental -RRB- 2 +98030 5136 Meant to reduce Blake 's philosophy into a tragic coming-of-age saga punctuated by bursts of animator Todd McFarlane 's superhero dystopia . 2 +98031 5136 Meant to reduce Blake 's philosophy into a tragic coming-of-age saga punctuated by bursts of animator Todd McFarlane 's superhero dystopia 2 +98032 5136 to reduce Blake 's philosophy into a tragic coming-of-age saga punctuated by bursts of animator Todd McFarlane 's superhero dystopia 2 +98033 5136 reduce Blake 's philosophy into a tragic coming-of-age saga punctuated by bursts of animator Todd McFarlane 's superhero dystopia 1 +98034 5136 reduce Blake 's philosophy 2 +98035 5136 Blake 's philosophy 2 +98036 5136 Blake 's 2 +98037 5136 Blake 2 +98038 5136 into a tragic coming-of-age saga punctuated by bursts of animator Todd McFarlane 's superhero dystopia 3 +98039 5136 a tragic coming-of-age saga punctuated by bursts of animator Todd McFarlane 's superhero dystopia 3 +98040 5136 a tragic coming-of-age saga 2 +98041 5136 tragic coming-of-age saga 3 +98042 5136 coming-of-age saga 2 +98043 5136 punctuated by bursts of animator Todd McFarlane 's superhero dystopia 2 +98044 5136 punctuated 2 +98045 5136 by bursts of animator Todd McFarlane 's superhero dystopia 2 +98046 5136 bursts of animator Todd McFarlane 's superhero dystopia 2 +98047 5136 of animator Todd McFarlane 's superhero dystopia 2 +98048 5136 animator Todd McFarlane 's superhero dystopia 2 +98049 5136 animator Todd McFarlane 's 2 +98050 5136 animator 2 +98051 5136 Todd McFarlane 's 2 +98052 5136 McFarlane 's 2 +98053 5136 McFarlane 2 +98054 5136 superhero dystopia 2 +98055 5136 superhero 3 +98056 5136 dystopia 3 +98057 5137 But it also comes with the laziness and arrogance of a thing that already knows it 's won . 1 +98058 5137 it also comes with the laziness and arrogance of a thing that already knows it 's won . 1 +98059 5137 also comes with the laziness and arrogance of a thing that already knows it 's won . 0 +98060 5137 comes with the laziness and arrogance of a thing that already knows it 's won . 1 +98061 5137 comes with the laziness and arrogance of a thing that already knows it 's won 1 +98062 5137 with the laziness and arrogance of a thing that already knows it 's won 2 +98063 5137 the laziness and arrogance of a thing that already knows it 's won 1 +98064 5137 the laziness and arrogance 0 +98065 5137 laziness and arrogance 0 +98066 5137 laziness and 2 +98067 5137 laziness 2 +98068 5137 arrogance 2 +98069 5137 of a thing that already knows it 's won 2 +98070 5137 a thing that already knows it 's won 3 +98071 5137 a thing 2 +98072 5137 that already knows it 's won 3 +98073 5137 already knows it 's won 3 +98074 5137 knows it 's won 3 +98075 5137 it 's won 3 +98076 5137 's won 2 +98077 5138 What 's really so appealing about the characters is their resemblance to everyday children . 3 +98078 5138 What 's really so appealing about the characters 2 +98079 5138 's really so appealing about the characters 3 +98080 5138 so appealing about the characters 3 +98081 5138 appealing about the characters 3 +98082 5138 is their resemblance to everyday children . 3 +98083 5138 is their resemblance to everyday children 2 +98084 5138 their resemblance to everyday children 2 +98085 5138 their resemblance 2 +98086 5138 to everyday children 2 +98087 5138 everyday children 2 +98088 5139 will be far more interesting to the Soderbergh faithful than it will be to the casual moviegoer who might be lured in by Julia Roberts ... 2 +98089 5139 will be far more interesting to the Soderbergh faithful than it will be to the casual moviegoer who might be lured in by Julia Roberts 2 +98090 5139 be far more interesting to the Soderbergh faithful than it will be to the casual moviegoer who might be lured in by Julia Roberts 2 +98091 5139 be far more interesting to the Soderbergh faithful 2 +98092 5139 far more interesting to the Soderbergh faithful 2 +98093 5139 to the Soderbergh faithful 2 +98094 5139 the Soderbergh faithful 2 +98095 5139 Soderbergh faithful 3 +98096 5139 than it will be to the casual moviegoer who might be lured in by Julia Roberts 2 +98097 5139 it will be to the casual moviegoer who might be lured in by Julia Roberts 2 +98098 5139 will be to the casual moviegoer who might be lured in by Julia Roberts 2 +98099 5139 be to the casual moviegoer who might be lured in by Julia Roberts 2 +98100 5139 to the casual moviegoer who might be lured in by Julia Roberts 2 +98101 5139 the casual moviegoer who might be lured in by Julia Roberts 3 +98102 5139 the casual moviegoer 2 +98103 5139 casual moviegoer 3 +98104 5139 moviegoer 2 +98105 5139 who might be lured in by Julia Roberts 2 +98106 5139 might be lured in by Julia Roberts 2 +98107 5139 be lured in by Julia Roberts 3 +98108 5139 lured in by Julia Roberts 3 +98109 5139 lured 2 +98110 5139 in by Julia Roberts 2 +98111 5139 by Julia Roberts 3 +98112 5140 A bore that tends to hammer home every one of its points . 1 +98113 5140 bore that tends to hammer home every one of its points . 1 +98114 5140 bore that tends to hammer home every one of its points 0 +98115 5140 that tends to hammer home every one of its points 2 +98116 5140 tends to hammer home every one of its points 2 +98117 5140 to hammer home every one of its points 2 +98118 5140 hammer home every one of its points 2 +98119 5140 hammer home 2 +98120 5140 every one of its points 2 +98121 5140 of its points 2 +98122 5140 its points 2 +98123 5141 ... an airless , prepackaged Julia Roberts wannabe that stinks so badly of hard-sell image-mongering you 'll wonder if Lopez 's publicist should share screenwriting credit . 0 +98124 5141 an airless , prepackaged Julia Roberts wannabe that stinks so badly of hard-sell image-mongering you 'll wonder if Lopez 's publicist should share screenwriting credit . 0 +98125 5141 an airless , prepackaged Julia Roberts wannabe that stinks so badly of hard-sell image-mongering you 0 +98126 5141 an airless , prepackaged Julia Roberts wannabe 1 +98127 5141 airless , prepackaged Julia Roberts wannabe 0 +98128 5141 , prepackaged Julia Roberts wannabe 1 +98129 5141 prepackaged Julia Roberts wannabe 2 +98130 5141 prepackaged 1 +98131 5141 Julia Roberts wannabe 1 +98132 5141 Roberts wannabe 2 +98133 5141 that stinks so badly of hard-sell image-mongering you 0 +98134 5141 stinks so badly of hard-sell image-mongering you 0 +98135 5141 stinks so badly of hard-sell image-mongering 0 +98136 5141 so badly of hard-sell image-mongering 2 +98137 5141 of hard-sell image-mongering 2 +98138 5141 hard-sell image-mongering 1 +98139 5141 hard-sell 1 +98140 5141 image-mongering 1 +98141 5141 'll wonder if Lopez 's publicist should share screenwriting credit . 2 +98142 5141 'll wonder if Lopez 's publicist should share screenwriting credit 2 +98143 5141 wonder if Lopez 's publicist should share screenwriting credit 2 +98144 5141 if Lopez 's publicist should share screenwriting credit 2 +98145 5141 Lopez 's publicist should share screenwriting credit 1 +98146 5141 Lopez 's publicist 2 +98147 5141 publicist 2 +98148 5141 should share screenwriting credit 3 +98149 5141 share screenwriting credit 2 +98150 5141 screenwriting credit 2 +98151 5142 It is quite a vision . 3 +98152 5142 is quite a vision . 3 +98153 5142 is quite a vision 2 +98154 5142 quite a vision 3 +98155 5143 I like this movie a lot . 4 +98156 5143 like this movie a lot . 4 +98157 5143 like this movie a lot 3 +98158 5143 this movie a lot 2 +98159 5144 An old-fashioned drama of substance about a teacher 's slide down the slippery slope of dishonesty after an encounter with the rich and the powerful who have nothing but disdain for virtue . 3 +98160 5144 An old-fashioned drama of substance about a teacher 3 +98161 5144 An old-fashioned drama 3 +98162 5144 old-fashioned drama 2 +98163 5144 of substance about a teacher 3 +98164 5144 substance about a teacher 2 +98165 5144 about a teacher 2 +98166 5144 a teacher 2 +98167 5144 's slide down the slippery slope of dishonesty after an encounter with the rich and the powerful who have nothing but disdain for virtue . 2 +98168 5144 's slide down the slippery slope of dishonesty after an encounter with the rich and the powerful who have nothing but disdain for virtue 1 +98169 5144 slide down the slippery slope of dishonesty after an encounter with the rich and the powerful who have nothing but disdain for virtue 2 +98170 5144 slide down the slippery slope of dishonesty after an encounter with the rich and the powerful who have nothing but 1 +98171 5144 slide down the slippery slope of dishonesty after an encounter with the rich and the powerful who have nothing 2 +98172 5144 slide down the slippery slope of dishonesty 1 +98173 5144 slide down 2 +98174 5144 the slippery slope of dishonesty 1 +98175 5144 the slippery slope 1 +98176 5144 slippery slope 1 +98177 5144 slope 2 +98178 5144 of dishonesty 1 +98179 5144 dishonesty 1 +98180 5144 after an encounter with the rich and the powerful who have nothing 2 +98181 5144 an encounter with the rich and the powerful who have nothing 2 +98182 5144 an encounter with the rich and 2 +98183 5144 an encounter with the rich 2 +98184 5144 an encounter 2 +98185 5144 with the rich 2 +98186 5144 the rich 2 +98187 5144 the powerful who have nothing 2 +98188 5144 the powerful 3 +98189 5144 who have nothing 2 +98190 5144 have nothing 2 +98191 5144 disdain for virtue 2 +98192 5144 for virtue 2 +98193 5145 An ugly , pointless , stupid movie . 0 +98194 5145 An ugly , pointless , stupid movie 0 +98195 5145 ugly , pointless , stupid movie 1 +98196 5145 ugly , pointless , stupid 0 +98197 5145 , pointless , stupid 0 +98198 5145 pointless , stupid 0 +98199 5145 , stupid 1 +98200 5146 Ritchie may not have a novel thought in his head , but he knows how to pose Madonna . 2 +98201 5146 Ritchie may not have a novel thought in his head , but he knows how to pose Madonna 2 +98202 5146 Ritchie may not have a novel thought in his head , but 2 +98203 5146 Ritchie may not have a novel thought in his head , 2 +98204 5146 Ritchie may not have a novel thought in his head 1 +98205 5146 may not have a novel thought in his head 1 +98206 5146 have a novel thought in his head 2 +98207 5146 a novel thought in his head 2 +98208 5146 a novel 2 +98209 5146 thought in his head 2 +98210 5146 in his head 2 +98211 5146 he knows how to pose Madonna 2 +98212 5146 knows how to pose Madonna 2 +98213 5146 how to pose Madonna 2 +98214 5146 to pose Madonna 2 +98215 5146 pose Madonna 2 +98216 5146 pose 2 +98217 5147 Manages to delight without much of a story . 3 +98218 5147 to delight without much of a story . 2 +98219 5147 to delight without much of a story 2 +98220 5147 delight without much of a story 2 +98221 5147 without much of a story 0 +98222 5148 The histrionic muse still eludes Madonna and , playing a charmless witch , she is merely a charmless witch . 1 +98223 5148 The histrionic muse still eludes Madonna and , playing a charmless witch 1 +98224 5148 The histrionic muse 1 +98225 5148 histrionic muse 2 +98226 5148 histrionic 1 +98227 5148 muse 2 +98228 5148 still eludes Madonna and , playing a charmless witch 1 +98229 5148 eludes Madonna and , playing a charmless witch 3 +98230 5148 eludes Madonna and , 2 +98231 5148 eludes Madonna and 2 +98232 5148 eludes Madonna 2 +98233 5148 eludes 2 +98234 5148 playing a charmless witch 2 +98235 5148 a charmless witch 2 +98236 5148 charmless witch 1 +98237 5148 , she is merely a charmless witch . 1 +98238 5148 she is merely a charmless witch . 1 +98239 5148 is merely a charmless witch . 1 +98240 5148 is merely a charmless witch 1 +98241 5149 If you 're down for a silly hack-and-slash flick , you can do no wrong with Jason X. 3 +98242 5149 If you 're down for a silly hack-and-slash flick 2 +98243 5149 you 're down for a silly hack-and-slash flick 2 +98244 5149 're down for a silly hack-and-slash flick 2 +98245 5149 're down 1 +98246 5149 for a silly hack-and-slash flick 1 +98247 5149 a silly hack-and-slash flick 1 +98248 5149 silly hack-and-slash flick 2 +98249 5149 hack-and-slash flick 2 +98250 5149 hack-and-slash 2 +98251 5149 , you can do no wrong with Jason X. 3 +98252 5149 you can do no wrong with Jason X. 3 +98253 5149 can do no wrong with Jason X. 4 +98254 5149 do no wrong with Jason X. 3 +98255 5149 do no wrong 3 +98256 5149 no wrong 3 +98257 5149 with Jason X. 2 +98258 5149 Jason X. 2 +98259 5150 If you thought Tom Hanks was just an ordinary big-screen star , wait until you 've seen him eight stories tall . 2 +98260 5150 If you thought Tom Hanks was just an ordinary big-screen star 3 +98261 5150 you thought Tom Hanks was just an ordinary big-screen star 2 +98262 5150 thought Tom Hanks was just an ordinary big-screen star 2 +98263 5150 Tom Hanks was just an ordinary big-screen star 1 +98264 5150 was just an ordinary big-screen star 1 +98265 5150 an ordinary big-screen star 1 +98266 5150 ordinary big-screen star 2 +98267 5150 big-screen star 2 +98268 5150 , wait until you 've seen him eight stories tall . 3 +98269 5150 wait until you 've seen him eight stories tall . 2 +98270 5150 wait until you 've seen him eight stories tall 2 +98271 5150 until you 've seen him eight stories tall 2 +98272 5150 you 've seen him eight stories tall 2 +98273 5150 've seen him eight stories tall 2 +98274 5150 seen him eight stories tall 3 +98275 5150 him eight stories tall 3 +98276 5150 eight stories tall 2 +98277 5150 eight stories 2 +98278 5151 Her fans walked out muttering words like `` horrible '' and `` terrible , '' but had so much fun dissing the film that they did n't mind the ticket cost . 0 +98279 5151 Her fans 2 +98280 5151 walked out muttering words like `` horrible '' and `` terrible , '' but had so much fun dissing the film that they did n't mind the ticket cost . 0 +98281 5151 walked out muttering words like `` horrible '' and `` terrible , '' but had so much fun dissing the film that they did n't mind the ticket cost 1 +98282 5151 walked out muttering words like `` horrible '' and `` terrible , '' but 0 +98283 5151 walked out muttering words like `` horrible '' and `` terrible , '' 0 +98284 5151 walked out muttering words like `` horrible '' and `` terrible , 0 +98285 5151 walked out muttering words like `` horrible '' and `` terrible 0 +98286 5151 muttering words like `` horrible '' and `` terrible 0 +98287 5151 muttering words 2 +98288 5151 muttering 2 +98289 5151 like `` horrible '' and `` terrible 0 +98290 5151 `` horrible '' and `` terrible 1 +98291 5151 horrible '' and `` terrible 0 +98292 5151 '' and `` terrible 0 +98293 5151 and `` terrible 1 +98294 5151 `` terrible 0 +98295 5151 had so much fun dissing the film that they did n't mind the ticket cost 0 +98296 5151 so much fun dissing the film that they did n't mind the ticket cost 1 +98297 5151 dissing the film that they did n't mind the ticket cost 1 +98298 5151 dissing the film 1 +98299 5151 dissing 2 +98300 5151 that they did n't mind the ticket cost 2 +98301 5151 they did n't mind the ticket cost 2 +98302 5151 did n't mind the ticket cost 2 +98303 5151 mind the ticket cost 2 +98304 5151 the ticket cost 2 +98305 5151 ticket cost 2 +98306 5152 Bluto Blutarsky , we miss you . 3 +98307 5152 Bluto Blutarsky 2 +98308 5152 Bluto 2 +98309 5152 Blutarsky 2 +98310 5152 , we miss you . 2 +98311 5152 we miss you . 2 +98312 5152 miss you . 3 +98313 5152 miss you 2 +98314 5153 You Should Pay Nine Bucks for This : Because you can hear about suffering Afghan refugees on the news and still be unaffected . 2 +98315 5153 Should Pay Nine Bucks for This : Because you can hear about suffering Afghan refugees on the news and still be unaffected . 2 +98316 5153 Should Pay Nine Bucks for This : Because you can hear about suffering Afghan refugees on the news and still be unaffected 1 +98317 5153 Pay Nine Bucks for This : Because you can hear about suffering Afghan refugees on the news and still be unaffected 2 +98318 5153 Pay Nine Bucks for This : 2 +98319 5153 Pay Nine Bucks for This 1 +98320 5153 Nine Bucks for This 2 +98321 5153 Nine Bucks 2 +98322 5153 Nine 2 +98323 5153 Because you can hear about suffering Afghan refugees on the news and still be unaffected 1 +98324 5153 you can hear about suffering Afghan refugees on the news and still be unaffected 2 +98325 5153 can hear about suffering Afghan refugees on the news and still be unaffected 2 +98326 5153 hear about suffering Afghan refugees on the news and still be unaffected 2 +98327 5153 hear about suffering Afghan refugees on the news and still 2 +98328 5153 hear about suffering Afghan refugees on the news and 2 +98329 5153 hear about suffering Afghan refugees on the news 2 +98330 5153 about suffering Afghan refugees on the news 2 +98331 5153 suffering Afghan refugees on the news 1 +98332 5153 suffering Afghan refugees 1 +98333 5153 Afghan refugees 2 +98334 5153 Afghan 2 +98335 5153 on the news 2 +98336 5153 be unaffected 1 +98337 5154 Eric Byler 's nuanced pic avoids easy sentiments and explanations ... 2 +98338 5154 Eric Byler 's nuanced pic 3 +98339 5154 Eric Byler 's 2 +98340 5154 Byler 's 2 +98341 5154 Byler 2 +98342 5154 nuanced pic 2 +98343 5154 avoids easy sentiments and explanations ... 1 +98344 5154 avoids easy sentiments and explanations 3 +98345 5154 easy sentiments and explanations 2 +98346 5154 sentiments and explanations 2 +98347 5154 sentiments and 2 +98348 5154 sentiments 2 +98349 5155 While obviously aimed at kids , The Country Bears ... should keep parents amused with its low groan-to-guffaw ratio . 3 +98350 5155 While obviously aimed at kids 2 +98351 5155 obviously aimed at kids 2 +98352 5155 aimed at kids 2 +98353 5155 at kids 2 +98354 5155 , The Country Bears ... should keep parents amused with its low groan-to-guffaw ratio . 3 +98355 5155 The Country Bears ... should keep parents amused with its low groan-to-guffaw ratio . 2 +98356 5155 Bears ... should keep parents amused with its low groan-to-guffaw ratio . 3 +98357 5155 Bears ... should keep parents amused with its low groan-to-guffaw ratio 3 +98358 5155 Bears ... should keep parents 2 +98359 5155 Bears ... 2 +98360 5155 should keep parents 2 +98361 5155 keep parents 2 +98362 5155 amused with its low groan-to-guffaw ratio 3 +98363 5155 with its low groan-to-guffaw ratio 2 +98364 5155 its low groan-to-guffaw ratio 1 +98365 5155 low groan-to-guffaw ratio 2 +98366 5155 groan-to-guffaw ratio 2 +98367 5155 groan-to-guffaw 2 +98368 5155 ratio 2 +98369 5156 Wildly incompetent but brilliantly named Half Past Dead -- or for Seagal pessimists : Totally Past His Prime . 1 +98370 5156 Wildly incompetent but brilliantly named Half Past Dead -- or for Seagal pessimists : Totally Past His Prime 1 +98371 5156 Wildly incompetent but brilliantly named Half Past Dead -- or for Seagal pessimists : 1 +98372 5156 Wildly incompetent but brilliantly named Half Past Dead -- or for Seagal pessimists 2 +98373 5156 Wildly incompetent but brilliantly named Half Past Dead -- or for Seagal 1 +98374 5156 Wildly incompetent 0 +98375 5156 but brilliantly named Half Past Dead -- or for Seagal 2 +98376 5156 brilliantly named Half Past Dead -- or for Seagal 1 +98377 5156 named Half Past Dead -- or for Seagal 2 +98378 5156 Half Past Dead -- or for Seagal 1 +98379 5156 -- or for Seagal 2 +98380 5156 pessimists 2 +98381 5156 Totally Past His Prime 1 +98382 5156 Totally Past 2 +98383 5156 His Prime 2 +98384 5157 Most fish stories are a little peculiar , but this is one that should be thrown back in the river . 1 +98385 5157 Most fish stories are a little peculiar , but this is one that should be thrown back in the river 0 +98386 5157 Most fish stories are a little peculiar , but 2 +98387 5157 Most fish stories are a little peculiar , 2 +98388 5157 Most fish stories are a little peculiar 2 +98389 5157 Most fish stories 2 +98390 5157 fish stories 2 +98391 5157 are a little peculiar 1 +98392 5157 a little peculiar 2 +98393 5157 this is one that should be thrown back in the river 1 +98394 5157 is one that should be thrown back in the river 0 +98395 5157 one that should be thrown back in the river 1 +98396 5157 that should be thrown back in the river 1 +98397 5157 should be thrown back in the river 0 +98398 5157 be thrown back in the river 2 +98399 5157 thrown back in the river 2 +98400 5157 thrown back 2 +98401 5157 in the river 2 +98402 5157 the river 3 +98403 5158 You may leave the theater with more questions than answers , but darned if your toes wo n't still be tapping . 3 +98404 5158 may leave the theater with more questions than answers , but darned if your toes wo n't still be tapping . 3 +98405 5158 may leave the theater with more questions than answers , but darned if your toes wo n't still be tapping 2 +98406 5158 may leave the theater with more questions than answers , but 2 +98407 5158 may leave the theater with more questions than answers , 2 +98408 5158 may leave the theater with more questions than answers 2 +98409 5158 leave the theater with more questions than answers 2 +98410 5158 with more questions than answers 2 +98411 5158 more questions than answers 2 +98412 5158 more questions 2 +98413 5158 than answers 2 +98414 5158 darned if your toes wo n't still be tapping 3 +98415 5158 if your toes wo n't still be tapping 2 +98416 5158 your toes wo n't still be tapping 3 +98417 5158 wo n't still be tapping 3 +98418 5158 wo n't still 2 +98419 5158 be tapping 2 +98420 5159 While it has definite weaknesses -- like a rather unbelievable love interest and a meandering ending -- this '60s caper film is a riveting , brisk delight . 3 +98421 5159 While it has definite weaknesses 2 +98422 5159 it has definite weaknesses 1 +98423 5159 has definite weaknesses 1 +98424 5159 definite weaknesses 2 +98425 5159 -- like a rather unbelievable love interest and a meandering ending -- this '60s caper film is a riveting , brisk delight . 4 +98426 5159 -- like a rather unbelievable love interest and a meandering ending -- 1 +98427 5159 like a rather unbelievable love interest and a meandering ending -- 0 +98428 5159 like a rather unbelievable love interest and a meandering ending 2 +98429 5159 a rather unbelievable love interest and a meandering ending 2 +98430 5159 a rather unbelievable love interest and 2 +98431 5159 a rather unbelievable love interest 1 +98432 5159 rather unbelievable love interest 2 +98433 5159 rather unbelievable 1 +98434 5159 love interest 3 +98435 5159 a meandering ending 2 +98436 5159 meandering ending 1 +98437 5159 this '60s caper film is a riveting , brisk delight . 4 +98438 5159 this '60s caper film 2 +98439 5159 '60s caper film 2 +98440 5159 caper film 2 +98441 5159 is a riveting , brisk delight . 3 +98442 5159 is a riveting , brisk delight 3 +98443 5159 a riveting , brisk delight 4 +98444 5159 riveting , brisk delight 4 +98445 5159 , brisk delight 3 +98446 5159 brisk delight 3 +98447 5160 There 's no disguising this as one of the worst films of the summer . 0 +98448 5160 's no disguising this as one of the worst films of the summer . 0 +98449 5160 's no disguising this as one of the worst films of the summer 0 +98450 5160 no disguising this as one of the worst films of the summer 0 +98451 5160 disguising this as one of the worst films of the summer 1 +98452 5160 disguising this 1 +98453 5160 as one of the worst films of the summer 0 +98454 5160 one of the worst films of the summer 0 +98455 5160 of the worst films of the summer 1 +98456 5160 the worst films of the summer 0 +98457 5160 the worst films 0 +98458 5160 worst films 0 +98459 5160 of the summer 2 +98460 5160 the summer 2 +98461 5161 Coy but exhilarating , with really solid performances by Ving Rhames and Wesley Snipes . 3 +98462 5161 Coy but exhilarating 3 +98463 5161 Coy but 2 +98464 5161 Coy 2 +98465 5161 , with really solid performances by Ving Rhames and Wesley Snipes . 4 +98466 5161 with really solid performances by Ving Rhames and Wesley Snipes . 3 +98467 5161 with really solid performances by Ving Rhames and Wesley Snipes 3 +98468 5161 really solid performances by Ving Rhames and Wesley Snipes 4 +98469 5161 really solid performances 3 +98470 5161 by Ving Rhames and Wesley Snipes 2 +98471 5161 Ving Rhames and Wesley Snipes 2 +98472 5161 Ving 2 +98473 5161 Rhames and Wesley Snipes 2 +98474 5161 Rhames 2 +98475 5161 and Wesley Snipes 2 +98476 5162 Nijinsky says , ' I know how to suffer ' and if you see this film you 'll know too . 1 +98477 5162 Nijinsky says 2 +98478 5162 , ' I know how to suffer ' and if you see this film you 'll know too . 0 +98479 5162 ' I know how to suffer ' and if you see this film you 'll know too . 1 +98480 5162 I know how to suffer ' and if you see this film you 'll know too . 0 +98481 5162 know how to suffer ' and if you see this film you 'll know too . 1 +98482 5162 know how to suffer ' and if you see this film you 'll know too 1 +98483 5162 how to suffer ' and if you see this film you 'll know too 0 +98484 5162 how to suffer ' and 2 +98485 5162 how to suffer ' 1 +98486 5162 to suffer ' 1 +98487 5162 suffer ' 1 +98488 5162 suffer 2 +98489 5162 if you see this film you 'll know too 2 +98490 5162 you see this film you 'll know too 3 +98491 5162 see this film you 'll know too 2 +98492 5162 this film you 'll know too 2 +98493 5162 you 'll know too 2 +98494 5162 'll know too 2 +98495 5162 know too 2 +98496 5163 There ai n't a lot more painful than an unfunny movie that thinks it 's hilarious . 2 +98497 5163 ai n't a lot more painful than an unfunny movie that thinks it 's hilarious . 1 +98498 5163 ai n't a lot more painful than an unfunny movie that thinks it 's hilarious 2 +98499 5163 a lot more painful than an unfunny movie that thinks it 's hilarious 0 +98500 5163 a lot more painful 2 +98501 5163 more painful 1 +98502 5163 than an unfunny movie that thinks it 's hilarious 1 +98503 5163 an unfunny movie that thinks it 's hilarious 1 +98504 5163 an unfunny movie 0 +98505 5163 unfunny movie 1 +98506 5163 that thinks it 's hilarious 2 +98507 5163 thinks it 's hilarious 3 +98508 5163 it 's hilarious 3 +98509 5163 's hilarious 4 +98510 5164 No worse a film than Breaking Out , and Breaking Out was utterly charming . 3 +98511 5164 No worse a film than Breaking Out , and Breaking Out 1 +98512 5164 No worse a film 1 +98513 5164 No worse 1 +98514 5164 than Breaking Out , and Breaking Out 2 +98515 5164 Breaking Out , and Breaking Out 2 +98516 5164 Breaking Out , and 2 +98517 5164 Breaking Out , 2 +98518 5164 Breaking Out 2 +98519 5164 was utterly charming . 4 +98520 5164 was utterly charming 4 +98521 5165 Maid in Manhattan might not look so appealing on third or fourth viewing down the road ... But as a high concept vehicle for two bright stars of the moment who can rise to fans ' lofty expectations , the movie passes inspection . 2 +98522 5165 Maid in Manhattan might not look so appealing on third or fourth viewing down the road ... But as a high concept vehicle for two bright stars of the moment who can rise to fans ' lofty expectations , the movie passes inspection 3 +98523 5165 Maid in Manhattan might not look so appealing on third or fourth viewing down the road ... But 2 +98524 5165 Maid in Manhattan might not look so appealing on third or fourth viewing down the road ... 2 +98525 5165 Maid in Manhattan might not look so appealing on third or fourth viewing down the road 1 +98526 5165 might not look so appealing on third or fourth viewing down the road 1 +98527 5165 look so appealing on third or fourth viewing down the road 2 +98528 5165 look so appealing on third or fourth viewing 3 +98529 5165 so appealing on third or fourth viewing 4 +98530 5165 appealing on third or fourth viewing 2 +98531 5165 on third or fourth viewing 2 +98532 5165 third or fourth viewing 3 +98533 5165 or fourth viewing 2 +98534 5165 fourth viewing 2 +98535 5165 down the road 2 +98536 5165 as a high concept vehicle for two bright stars of the moment who can rise to fans ' lofty expectations , the movie passes inspection 4 +98537 5165 as a high concept vehicle for two bright stars of the moment who can rise to fans ' lofty expectations 4 +98538 5165 a high concept vehicle for two bright stars of the moment who can rise to fans ' lofty expectations 3 +98539 5165 a high concept vehicle 2 +98540 5165 high concept vehicle 3 +98541 5165 concept vehicle 2 +98542 5165 for two bright stars of the moment who can rise to fans ' lofty expectations 3 +98543 5165 two bright stars of the moment who can rise to fans ' lofty expectations 3 +98544 5165 two bright stars 3 +98545 5165 bright stars 3 +98546 5165 of the moment who can rise to fans ' lofty expectations 3 +98547 5165 the moment who can rise to fans ' lofty expectations 3 +98548 5165 who can rise to fans ' lofty expectations 4 +98549 5165 can rise to fans ' lofty expectations 3 +98550 5165 rise to fans ' lofty expectations 3 +98551 5165 to fans ' lofty expectations 2 +98552 5165 fans ' lofty expectations 2 +98553 5165 fans ' 2 +98554 5165 lofty expectations 2 +98555 5165 , the movie passes inspection 3 +98556 5165 the movie passes inspection 3 +98557 5165 passes inspection 2 +98558 5165 inspection 2 +98559 5166 Whether or not you buy Mr. Broomfield 's findings , the film acquires an undeniable entertainment value as the slight , pale Mr. Broomfield continues to force himself on people and into situations that would make lesser men run for cover . 3 +98560 5166 Whether or not you buy Mr. Broomfield 's findings 2 +98561 5166 you buy Mr. Broomfield 's findings 2 +98562 5166 buy Mr. Broomfield 's findings 2 +98563 5166 Mr. Broomfield 's findings 2 +98564 5166 Mr. Broomfield 's 2 +98565 5166 findings 2 +98566 5166 , the film acquires an undeniable entertainment value as the slight , pale Mr. Broomfield continues to force himself on people and into situations that would make lesser men run for cover . 3 +98567 5166 the film acquires an undeniable entertainment value as the slight , pale Mr. Broomfield continues to force himself on people and into situations that would make lesser men run for cover . 3 +98568 5166 acquires an undeniable entertainment value as the slight , pale Mr. Broomfield continues to force himself on people and into situations that would make lesser men run for cover . 3 +98569 5166 acquires an undeniable entertainment value as the slight , pale Mr. Broomfield continues to force himself on people and into situations that would make lesser men run for cover 3 +98570 5166 acquires an undeniable entertainment value 4 +98571 5166 acquires 2 +98572 5166 an undeniable entertainment value 3 +98573 5166 undeniable entertainment value 3 +98574 5166 as the slight , pale Mr. Broomfield continues to force himself on people and into situations that would make lesser men run for cover 3 +98575 5166 the slight , pale Mr. Broomfield continues to force himself on people and into situations that would make lesser men run for cover 2 +98576 5166 the slight , pale Mr. Broomfield 2 +98577 5166 slight , pale Mr. Broomfield 2 +98578 5166 , pale Mr. Broomfield 2 +98579 5166 pale Mr. Broomfield 2 +98580 5166 Mr. Broomfield 2 +98581 5166 continues to force himself on people and into situations that would make lesser men run for cover 2 +98582 5166 to force himself on people and into situations that would make lesser men run for cover 2 +98583 5166 force himself on people and into situations that would make lesser men run for cover 3 +98584 5166 force himself 2 +98585 5166 on people and into situations that would make lesser men run for cover 2 +98586 5166 on people and 2 +98587 5166 on people 2 +98588 5166 into situations that would make lesser men run for cover 2 +98589 5166 situations that would make lesser men run for cover 2 +98590 5166 that would make lesser men run for cover 2 +98591 5166 would make lesser men run for cover 2 +98592 5166 make lesser men run for cover 2 +98593 5166 lesser men run for cover 2 +98594 5166 lesser men 2 +98595 5166 run for cover 1 +98596 5166 for cover 2 +98597 5167 Third time 's the charm ... yeah , baby ! 4 +98598 5167 Third time 's the charm ... yeah , baby 3 +98599 5167 Third time 's the charm ... 3 +98600 5167 Third time 's the charm 3 +98601 5167 Third time 's 2 +98602 5167 time 's 2 +98603 5167 yeah , baby 3 +98604 5167 yeah , 2 +98605 5167 yeah 3 +98606 5168 Quietly engaging . 3 +98607 5168 engaging . 4 +98608 5169 It all unfolds predictably , and the adventures that happen along the way seem repetitive and designed to fill time , providing no real sense of suspense . 0 +98609 5169 It all unfolds predictably , and the adventures that happen along the way seem repetitive and designed to fill time , providing no real sense of suspense 1 +98610 5169 It all unfolds predictably , and 2 +98611 5169 It all unfolds predictably , 1 +98612 5169 It all unfolds predictably 1 +98613 5169 all unfolds predictably 1 +98614 5169 unfolds predictably 1 +98615 5169 the adventures that happen along the way seem repetitive and designed to fill time , providing no real sense of suspense 1 +98616 5169 the adventures that happen along the way 2 +98617 5169 that happen along the way 2 +98618 5169 happen along the way 2 +98619 5169 happen along 2 +98620 5169 seem repetitive and designed to fill time , providing no real sense of suspense 1 +98621 5169 repetitive and designed to fill time , providing no real sense of suspense 0 +98622 5169 designed to fill time , providing no real sense of suspense 1 +98623 5169 designed to fill time , 1 +98624 5169 designed to fill time 1 +98625 5169 to fill time 1 +98626 5169 fill time 1 +98627 5169 providing no real sense of suspense 1 +98628 5170 Sometimes this modest little number clicks , and sometimes it does n't . 2 +98629 5170 Sometimes this modest little number clicks , and sometimes it does n't 2 +98630 5170 Sometimes this modest little number clicks , and 2 +98631 5170 Sometimes this modest little number clicks , 2 +98632 5170 Sometimes this modest little number clicks 2 +98633 5170 this modest little number clicks 2 +98634 5170 this modest little number 3 +98635 5170 modest little number 2 +98636 5170 little number 2 +98637 5170 sometimes it does n't 2 +98638 5171 It 's always enthralling . 4 +98639 5171 's always enthralling . 3 +98640 5171 's always enthralling 4 +98641 5172 Yet why it fails is a riddle wrapped in a mystery inside an enigma . 1 +98642 5172 why it fails is a riddle wrapped in a mystery inside an enigma . 1 +98643 5172 why it fails 1 +98644 5172 it fails 0 +98645 5172 is a riddle wrapped in a mystery inside an enigma . 2 +98646 5172 is a riddle wrapped in a mystery inside an enigma 2 +98647 5172 a riddle wrapped in a mystery inside an enigma 3 +98648 5172 a riddle 2 +98649 5172 riddle 2 +98650 5172 wrapped in a mystery inside an enigma 2 +98651 5172 in a mystery inside an enigma 2 +98652 5172 a mystery inside an enigma 2 +98653 5172 a mystery 2 +98654 5172 inside an enigma 3 +98655 5172 an enigma 2 +98656 5173 Morvern Callar confirms Lynne Ramsay as an important , original talent in international cinema . 4 +98657 5173 confirms Lynne Ramsay as an important , original talent in international cinema . 4 +98658 5173 confirms Lynne Ramsay as an important , original talent in international cinema 4 +98659 5173 Lynne Ramsay as an important , original talent in international cinema 4 +98660 5173 Lynne Ramsay 2 +98661 5173 Lynne 2 +98662 5173 as an important , original talent in international cinema 3 +98663 5173 an important , original talent in international cinema 3 +98664 5173 an important , original talent 3 +98665 5173 important , original talent 3 +98666 5173 , original talent 3 +98667 5173 original talent 4 +98668 5173 in international cinema 2 +98669 5173 international cinema 2 +98670 5174 If only it had the story to match . 1 +98671 5174 only it had the story to match . 2 +98672 5174 only it had the story to match 2 +98673 5174 it had the story to match 2 +98674 5174 had the story to match 2 +98675 5174 the story to match 2 +98676 5174 story to match 2 +98677 5175 to be more engaging on an emotional level , funnier , and on the whole less detached . 2 +98678 5175 to be more engaging on an emotional level , funnier , and on the whole less 2 +98679 5175 be more engaging on an emotional level , funnier , and on the whole less 2 +98680 5175 more engaging on an emotional level , funnier , and on the whole less 3 +98681 5175 engaging on an emotional level , funnier , and on the whole less 3 +98682 5175 on an emotional level , funnier , and on the whole less 3 +98683 5175 on an emotional level , funnier , and 3 +98684 5175 on an emotional level , funnier , 3 +98685 5175 an emotional level , funnier , 3 +98686 5175 an emotional level , funnier 3 +98687 5175 an emotional level , 2 +98688 5175 an emotional level 2 +98689 5175 emotional level 2 +98690 5175 on the whole less 1 +98691 5175 the whole less 2 +98692 5175 detached . 1 +98693 5176 about gays in what is essentially an extended soap opera 1 +98694 5176 gays in what is essentially an extended soap opera 2 +98695 5176 gays 2 +98696 5176 in what is essentially an extended soap opera 1 +98697 5176 what is essentially an extended soap opera 1 +98698 5176 is essentially an extended soap opera 1 +98699 5176 an extended soap opera 2 +98700 5176 extended soap opera 2 +98701 5177 It 's possible that something hip and transgressive was being attempted here that stubbornly refused to gel , but the result is more puzzling than unsettling . 0 +98702 5177 It 's possible that something hip and transgressive was being attempted here that stubbornly refused to gel , but the result is more puzzling than unsettling 1 +98703 5177 It 's possible that something hip and transgressive was being attempted here that stubbornly refused to gel , but 1 +98704 5177 It 's possible that something hip and transgressive was being attempted here that stubbornly refused to gel , 1 +98705 5177 It 's possible that something hip and transgressive was being attempted here that stubbornly refused to gel 1 +98706 5177 's possible that something hip and transgressive was being attempted here that stubbornly refused to gel 2 +98707 5177 's possible 2 +98708 5177 that something hip and transgressive was being attempted here that stubbornly refused to gel 1 +98709 5177 something hip and transgressive was being attempted here that stubbornly refused to gel 1 +98710 5177 something hip and transgressive 3 +98711 5177 something hip and 2 +98712 5177 something hip 3 +98713 5177 was being attempted here that stubbornly refused to gel 1 +98714 5177 being attempted here that stubbornly refused to gel 1 +98715 5177 attempted here that stubbornly refused to gel 1 +98716 5177 attempted here 2 +98717 5177 attempted 2 +98718 5177 that stubbornly refused to gel 1 +98719 5177 stubbornly refused to gel 1 +98720 5177 stubbornly 2 +98721 5177 refused to gel 1 +98722 5177 refused 3 +98723 5177 to gel 2 +98724 5177 the result is more puzzling than unsettling 0 +98725 5177 is more puzzling than unsettling 2 +98726 5177 more puzzling than unsettling 2 +98727 5177 puzzling than unsettling 1 +98728 5177 than unsettling 2 +98729 5178 Slow and ponderous , but Rohmer 's drama builds to an intense indoor drama about compassion , sacrifice , and Christian love in the face of political corruption . 3 +98730 5178 Slow and ponderous , but Rohmer 's drama builds to an intense indoor drama about compassion , sacrifice , and Christian love in the face of political corruption 3 +98731 5178 Slow and ponderous , but 2 +98732 5178 Slow and ponderous , 1 +98733 5178 Slow and ponderous 2 +98734 5178 Rohmer 's drama builds to an intense indoor drama about compassion , sacrifice , and Christian love in the face of political corruption 4 +98735 5178 Rohmer 's drama 2 +98736 5178 Rohmer 's 2 +98737 5178 builds to an intense indoor drama about compassion , sacrifice , and Christian love in the face of political corruption 4 +98738 5178 builds to an intense indoor drama about compassion , sacrifice , and Christian love 4 +98739 5178 to an intense indoor drama about compassion , sacrifice , and Christian love 2 +98740 5178 an intense indoor drama about compassion , sacrifice , and Christian love 3 +98741 5178 an intense indoor drama 3 +98742 5178 intense indoor drama 2 +98743 5178 indoor drama 3 +98744 5178 indoor 2 +98745 5178 about compassion , sacrifice , and Christian love 3 +98746 5178 compassion , sacrifice , and Christian love 3 +98747 5178 compassion , sacrifice , and 2 +98748 5178 compassion , sacrifice , 3 +98749 5178 compassion , sacrifice 2 +98750 5178 compassion , 3 +98751 5178 Christian love 3 +98752 5178 in the face of political corruption 2 +98753 5178 the face of political corruption 2 +98754 5178 of political corruption 1 +98755 5178 political corruption 2 +98756 5179 `` The turntable is now outselling the electric guitar ... '' 2 +98757 5179 The turntable is now outselling the electric guitar ... '' 3 +98758 5179 The turntable 2 +98759 5179 turntable 2 +98760 5179 is now outselling the electric guitar ... '' 3 +98761 5179 is now outselling the electric guitar ... 3 +98762 5179 is now outselling the electric guitar 2 +98763 5179 outselling the electric guitar 3 +98764 5179 outselling 2 +98765 5179 the electric guitar 2 +98766 5179 electric guitar 2 +98767 5179 guitar 2 +98768 5180 Strip it of all its excess debris , and you 'd have a 90-minute , four-star movie . 3 +98769 5180 Strip it of all its excess debris , and you 'd have a 90-minute , four-star movie 2 +98770 5180 Strip it of all its excess debris , and 2 +98771 5180 Strip it of all its excess debris , 1 +98772 5180 Strip it of all its excess debris 2 +98773 5180 Strip it 2 +98774 5180 of all its excess debris 2 +98775 5180 all its excess debris 1 +98776 5180 its excess debris 2 +98777 5180 excess debris 1 +98778 5180 debris 2 +98779 5180 you 'd have a 90-minute , four-star movie 3 +98780 5180 'd have a 90-minute , four-star movie 3 +98781 5180 have a 90-minute , four-star movie 3 +98782 5180 a 90-minute , four-star movie 4 +98783 5180 90-minute , four-star movie 4 +98784 5180 , four-star movie 4 +98785 5180 four-star movie 4 +98786 5180 four-star 4 +98787 5181 Sadly , as Blood Work proves , that was a long , long time ago . 1 +98788 5181 , as Blood Work proves , that was a long , long time ago . 1 +98789 5181 as Blood Work proves , that was a long , long time ago . 2 +98790 5181 as Blood Work proves 2 +98791 5181 Blood Work proves 2 +98792 5181 , that was a long , long time ago . 2 +98793 5181 that was a long , long time ago . 2 +98794 5181 was a long , long time ago . 2 +98795 5181 was a long , long time ago 2 +98796 5181 was a long , 2 +98797 5181 was a long 2 +98798 5181 long time ago 2 +98799 5181 time ago 2 +98800 5182 Like Showgirls and Glitter , the most entertaining moments here are unintentional . 1 +98801 5182 Like Showgirls and Glitter 2 +98802 5182 Showgirls and Glitter 2 +98803 5182 Showgirls and 2 +98804 5182 , the most entertaining moments here are unintentional . 2 +98805 5182 the most entertaining moments here are unintentional . 3 +98806 5182 the most entertaining moments 3 +98807 5182 most entertaining moments 3 +98808 5182 here are unintentional . 1 +98809 5182 are unintentional . 2 +98810 5182 are unintentional 2 +98811 5183 The footage of the rappers at play and the prison interview with Suge Knight are just two of the elements that will grab you . 3 +98812 5183 The footage of the rappers at play and the prison interview with Suge Knight 3 +98813 5183 The footage 2 +98814 5183 of the rappers at play and the prison interview with Suge Knight 2 +98815 5183 the rappers at play and the prison interview with Suge Knight 2 +98816 5183 the rappers at play and 2 +98817 5183 the rappers at play 2 +98818 5183 the rappers 2 +98819 5183 rappers 2 +98820 5183 at play 2 +98821 5183 the prison interview with Suge Knight 2 +98822 5183 the prison interview 2 +98823 5183 prison interview 2 +98824 5183 with Suge Knight 2 +98825 5183 Suge Knight 2 +98826 5183 Suge 2 +98827 5183 Knight 2 +98828 5183 are just two of the elements that will grab you . 3 +98829 5183 are just two of the elements that will grab you 3 +98830 5183 just two of the elements that will grab you 3 +98831 5183 just two 3 +98832 5183 of the elements that will grab you 3 +98833 5183 the elements that will grab you 3 +98834 5183 that will grab you 2 +98835 5183 will grab you 3 +98836 5183 grab you 3 +98837 5184 Some Body will take you places you have n't been , and also places you have . 3 +98838 5184 will take you places you have n't been , and also places you have . 4 +98839 5184 will take you places you have n't been , and also places you have 3 +98840 5184 take you places you have n't been , and also places you have 3 +98841 5184 you places you have n't been , and also places you have 2 +98842 5184 you places you have n't been , and 2 +98843 5184 you places you have n't been , 2 +98844 5184 you places you have n't been 2 +98845 5184 places you have n't been 2 +98846 5184 you have n't been 2 +98847 5184 have n't been 2 +98848 5184 also places you have 2 +98849 5184 places you have 2 +98850 5184 you have 2 +98851 5185 The director , with his fake backdrops and stately pacing , never settles on a consistent tone . 0 +98852 5185 The director , with his fake backdrops and stately pacing , 1 +98853 5185 The director , with his fake backdrops and stately pacing 0 +98854 5185 with his fake backdrops and stately pacing 1 +98855 5185 his fake backdrops and stately pacing 1 +98856 5185 his fake backdrops and 2 +98857 5185 his fake backdrops 1 +98858 5185 fake backdrops 1 +98859 5185 stately pacing 2 +98860 5185 never settles on a consistent tone . 2 +98861 5185 settles on a consistent tone . 3 +98862 5185 settles on a consistent tone 2 +98863 5185 on a consistent tone 2 +98864 5186 A little uneven to be the cat 's meow , but it 's good enough to be the purr . 3 +98865 5186 A little uneven to be the cat 's meow , but it 's good enough to be the purr 3 +98866 5186 A little uneven to be the cat 's meow , but 2 +98867 5186 A little uneven to be the cat 's meow , 1 +98868 5186 A little uneven to be the cat 's meow 1 +98869 5186 A little uneven 2 +98870 5186 little uneven 1 +98871 5186 to be the cat 's meow 4 +98872 5186 be the cat 's meow 3 +98873 5186 it 's good enough to be the purr 4 +98874 5186 's good enough to be the purr 3 +98875 5186 good enough to be the purr 3 +98876 5186 to be the purr 2 +98877 5186 be the purr 2 +98878 5186 the purr 2 +98879 5186 purr 3 +98880 5187 Like its script , which nurses plot holes gaping enough to pilot an entire Olympic swim team through , the characters in Swimfan seem motivated by nothing short of dull , brain-deadening hangover . 1 +98881 5187 Like its script , which nurses plot holes gaping enough to pilot an entire Olympic swim team through 0 +98882 5187 its script , which nurses plot holes gaping enough to pilot an entire Olympic swim team through 1 +98883 5187 its script , 2 +98884 5187 its script 2 +98885 5187 which nurses plot holes gaping enough to pilot an entire Olympic swim team through 0 +98886 5187 nurses plot holes gaping enough to pilot an entire Olympic swim team through 1 +98887 5187 nurses plot holes 2 +98888 5187 nurses 2 +98889 5187 plot holes 1 +98890 5187 gaping enough to pilot an entire Olympic swim team through 1 +98891 5187 gaping enough to pilot an entire Olympic swim team 2 +98892 5187 gaping enough to pilot 3 +98893 5187 gaping 1 +98894 5187 enough to pilot 2 +98895 5187 to pilot 2 +98896 5187 an entire Olympic swim team 2 +98897 5187 entire Olympic swim team 2 +98898 5187 Olympic swim team 2 +98899 5187 Olympic 2 +98900 5187 swim team 2 +98901 5187 , the characters in Swimfan seem motivated by nothing short of dull , brain-deadening hangover . 1 +98902 5187 the characters in Swimfan seem motivated by nothing short of dull , brain-deadening hangover . 0 +98903 5187 the characters in Swimfan 2 +98904 5187 in Swimfan 2 +98905 5187 seem motivated by nothing short of dull , brain-deadening hangover . 0 +98906 5187 seem motivated by nothing short of dull , brain-deadening hangover 0 +98907 5187 motivated by nothing short of dull , brain-deadening hangover 1 +98908 5187 motivated by nothing short 2 +98909 5187 motivated by nothing 1 +98910 5187 by nothing 2 +98911 5187 of dull , brain-deadening hangover 2 +98912 5187 dull , brain-deadening hangover 0 +98913 5187 , brain-deadening hangover 1 +98914 5187 brain-deadening hangover 2 +98915 5187 brain-deadening 2 +98916 5187 hangover 2 +98917 5188 It 's surprisingly bland despite the heavy doses of weird performances and direction . 1 +98918 5188 's surprisingly bland despite the heavy doses of weird performances and direction . 1 +98919 5188 's surprisingly bland despite the heavy doses of weird performances and direction 1 +98920 5188 surprisingly bland despite the heavy doses of weird performances and direction 2 +98921 5188 bland despite the heavy doses of weird performances and direction 1 +98922 5188 despite the heavy doses of weird performances and direction 2 +98923 5188 the heavy doses of weird performances and direction 2 +98924 5188 the heavy doses 2 +98925 5188 heavy doses 2 +98926 5188 of weird performances and direction 1 +98927 5188 weird performances and direction 2 +98928 5188 performances and direction 2 +98929 5188 performances and 2 +98930 5189 Disreputable doings and exquisite trappings are dampened by a lackluster script and substandard performances . 1 +98931 5189 Disreputable doings and exquisite trappings 2 +98932 5189 Disreputable doings and 2 +98933 5189 Disreputable doings 2 +98934 5189 Disreputable 1 +98935 5189 doings 2 +98936 5189 exquisite trappings 3 +98937 5189 are dampened by a lackluster script and substandard performances . 2 +98938 5189 are dampened by a lackluster script and substandard performances 1 +98939 5189 dampened by a lackluster script and substandard performances 1 +98940 5189 by a lackluster script and substandard performances 1 +98941 5189 a lackluster script and substandard performances 0 +98942 5189 a lackluster script and 2 +98943 5189 a lackluster script 1 +98944 5189 lackluster script 1 +98945 5189 substandard performances 1 +98946 5189 substandard 1 +98947 5190 An unencouraging threefold expansion on the former MTV series , accompanying the stunt-hungry dimwits in a random series of collected gags , pranks , pratfalls , dares , injuries , etc. . 1 +98948 5190 An unencouraging threefold expansion on the former MTV series 1 +98949 5190 An unencouraging threefold expansion 1 +98950 5190 unencouraging threefold expansion 1 +98951 5190 unencouraging 0 +98952 5190 threefold expansion 3 +98953 5190 threefold 2 +98954 5190 expansion 2 +98955 5190 on the former MTV series 2 +98956 5190 the former MTV series 2 +98957 5190 former MTV series 2 +98958 5190 MTV series 2 +98959 5190 , accompanying the stunt-hungry dimwits in a random series of collected gags , pranks , pratfalls , dares , injuries , etc. . 1 +98960 5190 accompanying the stunt-hungry dimwits in a random series of collected gags , pranks , pratfalls , dares , injuries , etc. . 1 +98961 5190 accompanying the stunt-hungry dimwits in a random series of collected gags , pranks , pratfalls , dares , injuries , etc. 1 +98962 5190 accompanying the stunt-hungry dimwits 1 +98963 5190 accompanying 2 +98964 5190 the stunt-hungry dimwits 1 +98965 5190 stunt-hungry dimwits 1 +98966 5190 stunt-hungry 2 +98967 5190 dimwits 0 +98968 5190 in a random series of collected gags , pranks , pratfalls , dares , injuries , etc. 1 +98969 5190 a random series of collected gags , pranks , pratfalls , dares , injuries , etc. 1 +98970 5190 a random series 2 +98971 5190 random series 2 +98972 5190 of collected gags , pranks , pratfalls , dares , injuries , etc. 2 +98973 5190 collected gags , pranks , pratfalls , dares , injuries , etc. 2 +98974 5190 collected 2 +98975 5190 gags , pranks , pratfalls , dares , injuries , etc. 2 +98976 5190 , pranks , pratfalls , dares , injuries , etc. 1 +98977 5190 pranks , pratfalls , dares , injuries , etc. 2 +98978 5190 pranks 2 +98979 5190 , pratfalls , dares , injuries , etc. 1 +98980 5190 pratfalls , dares , injuries , etc. 2 +98981 5190 , dares , injuries , etc. 2 +98982 5190 dares , injuries , etc. 2 +98983 5190 , injuries , etc. 2 +98984 5190 injuries , etc. 2 +98985 5190 injuries , 2 +98986 5191 This is a movie that starts out like Heathers , then becomes Bring it On , then becomes unwatchable . 1 +98987 5191 is a movie that starts out like Heathers , then becomes Bring it On , then becomes unwatchable . 0 +98988 5191 is a movie that starts out like Heathers , then becomes Bring it On , then becomes unwatchable 0 +98989 5191 a movie that starts out like Heathers , then becomes Bring it On , then becomes unwatchable 0 +98990 5191 that starts out like Heathers , then becomes Bring it On , then becomes unwatchable 1 +98991 5191 starts out like Heathers , then becomes Bring it On , then becomes unwatchable 0 +98992 5191 like Heathers , then becomes Bring it On , then becomes unwatchable 0 +98993 5191 Heathers , then becomes Bring it On , then becomes unwatchable 0 +98994 5191 Heathers 2 +98995 5191 , then becomes Bring it On , then becomes unwatchable 0 +98996 5191 , then becomes Bring it On , 2 +98997 5191 then becomes Bring it On , 2 +98998 5191 then becomes Bring it On 2 +98999 5191 becomes Bring it On 2 +99000 5191 Bring it On 2 +99001 5191 Bring it 2 +99002 5191 then becomes unwatchable 0 +99003 5191 becomes unwatchable 0 +99004 5192 Director Chris Eyre is going through the paces again with his usual high melodramatic style of filmmaking . 2 +99005 5192 Director Chris Eyre 2 +99006 5192 Chris Eyre 2 +99007 5192 is going through the paces again with his usual high melodramatic style of filmmaking . 2 +99008 5192 is going through the paces again with his usual high melodramatic style of filmmaking 1 +99009 5192 going through the paces again with his usual high melodramatic style of filmmaking 1 +99010 5192 going through the paces again 2 +99011 5192 going through the paces 2 +99012 5192 through the paces 2 +99013 5192 the paces 2 +99014 5192 paces 2 +99015 5192 with his usual high melodramatic style of filmmaking 2 +99016 5192 his usual high melodramatic style of filmmaking 2 +99017 5192 his usual high melodramatic style 3 +99018 5192 usual high melodramatic style 2 +99019 5192 high melodramatic style 3 +99020 5192 melodramatic style 2 +99021 5193 The observations of this social\/economic\/urban environment are canny and spiced with irony . 3 +99022 5193 The observations of this social\/economic\/urban environment 2 +99023 5193 The observations 3 +99024 5193 of this social\/economic\/urban environment 2 +99025 5193 this social\/economic\/urban environment 2 +99026 5193 social\/economic\/urban environment 2 +99027 5193 social\/economic\/urban 2 +99028 5193 are canny and spiced with irony . 3 +99029 5193 are canny and spiced with irony 3 +99030 5193 are canny and spiced 2 +99031 5193 canny and spiced 3 +99032 5193 canny and 3 +99033 5193 spiced 3 +99034 5193 with irony 2 +99035 5194 Suffers from over-familiarity since hit-hungry British filmmakers have strip-mined the Monty formula mercilessly since 1997 . 0 +99036 5194 Suffers from over-familiarity since hit-hungry British filmmakers 1 +99037 5194 from over-familiarity since hit-hungry British filmmakers 2 +99038 5194 over-familiarity since hit-hungry British filmmakers 2 +99039 5194 over-familiarity 1 +99040 5194 since hit-hungry British filmmakers 2 +99041 5194 hit-hungry British filmmakers 2 +99042 5194 hit-hungry 2 +99043 5194 British filmmakers 2 +99044 5194 have strip-mined the Monty formula mercilessly since 1997 . 3 +99045 5194 have strip-mined the Monty formula mercilessly since 1997 1 +99046 5194 strip-mined the Monty formula mercilessly since 1997 1 +99047 5194 strip-mined the Monty formula mercilessly 2 +99048 5194 strip-mined 2 +99049 5194 the Monty formula mercilessly 2 +99050 5194 Monty formula mercilessly 2 +99051 5194 formula mercilessly 1 +99052 5194 mercilessly 2 +99053 5194 since 1997 2 +99054 5194 1997 2 +99055 5195 Generates an enormous feeling of empathy for its characters . 3 +99056 5195 Generates an enormous feeling of empathy for its characters 4 +99057 5195 an enormous feeling of empathy for its characters 2 +99058 5195 an enormous feeling 4 +99059 5195 enormous feeling 3 +99060 5195 of empathy for its characters 3 +99061 5195 empathy for its characters 2 +99062 5196 `` It 's all about the image . '' 2 +99063 5196 It 's all about the image . '' 2 +99064 5196 's all about the image . '' 2 +99065 5196 's all about the image . 2 +99066 5196 's all about the image 2 +99067 5196 all about the image 2 +99068 5196 about the image 2 +99069 5197 Sheridan is painfully bad , a fourth-rate Jim Carrey who does n't understand the difference between dumb fun and just plain dumb . 0 +99070 5197 is painfully bad , a fourth-rate Jim Carrey who does n't understand the difference between dumb fun and just plain dumb . 0 +99071 5197 is painfully bad , a fourth-rate Jim Carrey who does n't understand the difference between dumb fun and just plain dumb 0 +99072 5197 is painfully bad , 0 +99073 5197 is painfully bad 0 +99074 5197 painfully bad 0 +99075 5197 a fourth-rate Jim Carrey who does n't understand the difference between dumb fun and just plain dumb 0 +99076 5197 a fourth-rate Jim Carrey 2 +99077 5197 fourth-rate Jim Carrey 2 +99078 5197 fourth-rate 1 +99079 5197 Jim Carrey 3 +99080 5197 Carrey 2 +99081 5197 who does n't understand the difference between dumb fun and just plain dumb 0 +99082 5197 does n't understand the difference between dumb fun and just plain dumb 0 +99083 5197 understand the difference between dumb fun and just plain dumb 1 +99084 5197 understand the difference 2 +99085 5197 between dumb fun and just plain dumb 1 +99086 5197 between dumb fun 2 +99087 5197 dumb fun 2 +99088 5197 and just plain dumb 0 +99089 5197 just plain dumb 1 +99090 5197 plain dumb 0 +99091 5198 Eric Schweig and Graham Greene both exude an air of dignity that 's perfect for the proud warrior that still lingers in the souls of these characters . 4 +99092 5198 Eric Schweig and Graham Greene 2 +99093 5198 Eric Schweig and 2 +99094 5198 Eric Schweig 2 +99095 5198 Schweig 2 +99096 5198 Graham Greene 2 +99097 5198 both exude an air of dignity that 's perfect for the proud warrior that still lingers in the souls of these characters . 3 +99098 5198 exude an air of dignity that 's perfect for the proud warrior that still lingers in the souls of these characters . 3 +99099 5198 exude an air of dignity that 's perfect for the proud warrior that still lingers in the souls of these characters 4 +99100 5198 exude 2 +99101 5198 an air of dignity that 's perfect for the proud warrior that still lingers in the souls of these characters 3 +99102 5198 an air of dignity 2 +99103 5198 an air 2 +99104 5198 of dignity 2 +99105 5198 that 's perfect for the proud warrior that still lingers in the souls of these characters 2 +99106 5198 's perfect for the proud warrior that still lingers in the souls of these characters 3 +99107 5198 perfect for the proud warrior that still lingers in the souls of these characters 3 +99108 5198 for the proud warrior that still lingers in the souls of these characters 2 +99109 5198 the proud warrior that still lingers in the souls of these characters 3 +99110 5198 the proud warrior 2 +99111 5198 proud warrior 3 +99112 5198 that still lingers in the souls of these characters 2 +99113 5198 still lingers in the souls of these characters 2 +99114 5198 lingers in the souls of these characters 2 +99115 5198 in the souls of these characters 2 +99116 5198 the souls of these characters 2 +99117 5198 the souls 2 +99118 5199 Amidst the action , the script carries Arnold -LRB- and the viewers -RRB- into the forbidden zone of sympathizing with terrorist motivations by presenting the `` other side of the story . '' 3 +99119 5199 Amidst the action 2 +99120 5199 Amidst 2 +99121 5199 , the script carries Arnold -LRB- and the viewers -RRB- into the forbidden zone of sympathizing with terrorist motivations by presenting the `` other side of the story . '' 2 +99122 5199 the script carries Arnold -LRB- and the viewers -RRB- into the forbidden zone of sympathizing with terrorist motivations by presenting the `` other side of the story . '' 3 +99123 5199 carries Arnold -LRB- and the viewers -RRB- into the forbidden zone of sympathizing with terrorist motivations by presenting the `` other side of the story . '' 3 +99124 5199 carries Arnold -LRB- and the viewers -RRB- into the forbidden zone of sympathizing with terrorist motivations by presenting the `` other side of the story . 2 +99125 5199 carries Arnold -LRB- and the viewers -RRB- into the forbidden zone of sympathizing with terrorist motivations by presenting the `` other side of the story 2 +99126 5199 carries Arnold -LRB- and the viewers -RRB- 2 +99127 5199 carries Arnold 2 +99128 5199 -LRB- and the viewers -RRB- 2 +99129 5199 and the viewers -RRB- 2 +99130 5199 and the viewers 2 +99131 5199 the viewers 2 +99132 5199 into the forbidden zone of sympathizing with terrorist motivations by presenting the `` other side of the story 2 +99133 5199 the forbidden zone of sympathizing with terrorist motivations by presenting the `` other side of the story 2 +99134 5199 the forbidden zone 2 +99135 5199 forbidden zone 2 +99136 5199 forbidden 2 +99137 5199 of sympathizing with terrorist motivations by presenting the `` other side of the story 1 +99138 5199 sympathizing with terrorist motivations by presenting the `` other side of the story 2 +99139 5199 sympathizing with terrorist motivations 1 +99140 5199 sympathizing 3 +99141 5199 with terrorist motivations 2 +99142 5199 terrorist motivations 2 +99143 5199 by presenting the `` other side of the story 2 +99144 5199 presenting the `` other side of the story 2 +99145 5199 the `` other side of the story 2 +99146 5199 the `` other side 2 +99147 5199 `` other side 2 +99148 5199 other side 2 +99149 5200 I would be shocked if there was actually one correct interpretation , but that should n't make the movie or the discussion any less enjoyable . 2 +99150 5200 would be shocked if there was actually one correct interpretation , but that should n't make the movie or the discussion any less enjoyable . 2 +99151 5200 would be shocked if there was actually one correct interpretation , but that should n't make the movie or the discussion any less enjoyable 2 +99152 5200 be shocked if there was actually one correct interpretation , but that should n't make the movie or the discussion any less enjoyable 3 +99153 5200 shocked if there was actually one correct interpretation , but that should n't make the movie or the discussion any less enjoyable 3 +99154 5200 shocked 2 +99155 5200 if there was actually one correct interpretation , but that should n't make the movie or the discussion any less enjoyable 2 +99156 5200 if there was actually one correct interpretation , but 2 +99157 5200 if there was actually one correct interpretation , 2 +99158 5200 if there was actually one correct interpretation 2 +99159 5200 there was actually one correct interpretation 2 +99160 5200 was actually one correct interpretation 2 +99161 5200 was actually 2 +99162 5200 one correct interpretation 2 +99163 5200 correct interpretation 2 +99164 5200 correct 2 +99165 5200 that should n't make the movie or the discussion any less enjoyable 3 +99166 5200 should n't make the movie or the discussion any less enjoyable 2 +99167 5200 make the movie or the discussion any less enjoyable 3 +99168 5200 the movie or the discussion any less enjoyable 2 +99169 5200 the movie or the discussion 2 +99170 5200 the discussion 2 +99171 5200 any less enjoyable 1 +99172 5201 The film feels formulaic , its plot and pacing typical Hollywood war-movie stuff , while the performances elicit more of a sense of deja vu than awe . 0 +99173 5201 feels formulaic , its plot and pacing typical Hollywood war-movie stuff , while the performances elicit more of a sense of deja vu than awe . 2 +99174 5201 feels formulaic , its plot and pacing typical Hollywood war-movie stuff , while the performances elicit more of a sense of deja vu than awe 2 +99175 5201 formulaic , its plot and pacing typical Hollywood war-movie stuff , while the performances elicit more of a sense of deja vu than awe 1 +99176 5201 formulaic , its plot and pacing typical Hollywood war-movie stuff , 0 +99177 5201 formulaic , its plot and pacing typical Hollywood war-movie stuff 1 +99178 5201 formulaic , 1 +99179 5201 its plot and pacing typical Hollywood war-movie stuff 2 +99180 5201 plot and pacing typical Hollywood war-movie stuff 1 +99181 5201 and pacing typical Hollywood war-movie stuff 2 +99182 5201 pacing typical Hollywood war-movie stuff 2 +99183 5201 typical Hollywood war-movie stuff 2 +99184 5201 Hollywood war-movie stuff 1 +99185 5201 war-movie stuff 2 +99186 5201 war-movie 2 +99187 5201 while the performances elicit more of a sense of deja vu than awe 2 +99188 5201 the performances elicit more of a sense of deja vu than awe 1 +99189 5201 elicit more of a sense of deja vu than awe 1 +99190 5201 elicit more of a sense of deja vu 2 +99191 5201 more of a sense of deja vu 2 +99192 5201 of a sense of deja vu 2 +99193 5201 a sense of deja vu 2 +99194 5201 of deja vu 1 +99195 5201 deja vu 2 +99196 5201 than awe 3 +99197 5202 One of the smarter offerings the horror genre has produced in recent memory , even if it 's far tamer than advertised . 3 +99198 5202 One of the smarter offerings the horror genre 3 +99199 5202 of the smarter offerings the horror genre 3 +99200 5202 the smarter offerings the horror genre 3 +99201 5202 the smarter offerings 3 +99202 5202 smarter offerings 3 +99203 5202 the horror genre 2 +99204 5202 horror genre 2 +99205 5202 has produced in recent memory , even if it 's far tamer than advertised . 3 +99206 5202 has produced in recent memory , even if it 's far tamer than advertised 2 +99207 5202 produced in recent memory , even if it 's far tamer than advertised 3 +99208 5202 produced in recent memory , 2 +99209 5202 produced in recent memory 2 +99210 5202 in recent memory 2 +99211 5202 even if it 's far tamer than advertised 2 +99212 5202 if it 's far tamer than advertised 2 +99213 5202 it 's far tamer than advertised 1 +99214 5202 's far tamer than advertised 2 +99215 5202 far tamer than advertised 2 +99216 5202 far tamer 1 +99217 5202 tamer 2 +99218 5202 than advertised 2 +99219 5203 The issues are presented in such a lousy way , complete with some of the year 's -LRB- unintentionally -RRB- funniest moments , that it 's impossible to care . 0 +99220 5203 are presented in such a lousy way , complete with some of the year 's -LRB- unintentionally -RRB- funniest moments , that it 's impossible to care . 0 +99221 5203 are presented in such a lousy way , complete with some of the year 's -LRB- unintentionally -RRB- funniest moments , that it 's impossible to care 1 +99222 5203 presented in such a lousy way , complete with some of the year 's -LRB- unintentionally -RRB- funniest moments , that it 's impossible to care 0 +99223 5203 in such a lousy way , complete with some of the year 's -LRB- unintentionally -RRB- funniest moments , that it 's impossible to care 1 +99224 5203 such a lousy way , complete with some of the year 's -LRB- unintentionally -RRB- funniest moments , that it 's impossible to care 1 +99225 5203 such a lousy way , 2 +99226 5203 such a lousy way 0 +99227 5203 a lousy way 2 +99228 5203 lousy way 1 +99229 5203 complete with some of the year 's -LRB- unintentionally -RRB- funniest moments , that it 's impossible to care 2 +99230 5203 with some of the year 's -LRB- unintentionally -RRB- funniest moments , that it 's impossible to care 2 +99231 5203 some of the year 's -LRB- unintentionally -RRB- funniest moments , that it 's impossible to care 1 +99232 5203 of the year 's -LRB- unintentionally -RRB- funniest moments , that it 's impossible to care 2 +99233 5203 the year 's -LRB- unintentionally -RRB- funniest moments , that it 's impossible to care 2 +99234 5203 the year 's -LRB- unintentionally -RRB- funniest moments , 2 +99235 5203 the year 's -LRB- unintentionally -RRB- funniest moments 3 +99236 5203 -LRB- unintentionally -RRB- funniest moments 3 +99237 5203 -LRB- unintentionally -RRB- 2 +99238 5203 unintentionally -RRB- 2 +99239 5203 funniest moments 3 +99240 5203 that it 's impossible to care 1 +99241 5203 it 's impossible to care 1 +99242 5203 's impossible to care 1 +99243 5203 impossible to care 2 +99244 5204 A funny film . 3 +99245 5204 funny film . 4 +99246 5205 Sayles has a knack for casting , often resurrecting performers who rarely work in movies now ... and drawing flavorful performances from bland actors . 4 +99247 5205 has a knack for casting , often resurrecting performers who rarely work in movies now ... and drawing flavorful performances from bland actors . 3 +99248 5205 has a knack for casting , often resurrecting performers who rarely work in movies now ... and drawing flavorful performances from bland actors 3 +99249 5205 a knack for casting , often resurrecting performers who rarely work in movies now ... and drawing flavorful performances from bland actors 3 +99250 5205 for casting , often resurrecting performers who rarely work in movies now ... and drawing flavorful performances from bland actors 3 +99251 5205 casting , often resurrecting performers who rarely work in movies now ... and drawing flavorful performances from bland actors 4 +99252 5205 casting , often 2 +99253 5205 casting , 2 +99254 5205 resurrecting performers who rarely work in movies now ... and drawing flavorful performances from bland actors 3 +99255 5205 resurrecting performers who rarely work in movies now ... and 2 +99256 5205 resurrecting performers who rarely work in movies now ... 3 +99257 5205 resurrecting performers who rarely work in movies now 2 +99258 5205 resurrecting 2 +99259 5205 performers who rarely work in movies now 3 +99260 5205 who rarely work in movies now 2 +99261 5205 rarely work in movies now 1 +99262 5205 work in movies now 2 +99263 5205 work in movies 2 +99264 5205 drawing flavorful performances from bland actors 3 +99265 5205 drawing flavorful performances 3 +99266 5205 flavorful performances 4 +99267 5205 flavorful 3 +99268 5205 from bland actors 1 +99269 5205 bland actors 1 +99270 5206 The photographer 's show-don ` t-tell stance is admirable , but it can make him a problematic documentary subject . 2 +99271 5206 The photographer 's show-don ` t-tell stance is admirable , but it can make him a problematic documentary subject 2 +99272 5206 The photographer 's show-don ` t-tell stance is admirable , but 2 +99273 5206 The photographer 's show-don ` t-tell stance is admirable , 3 +99274 5206 The photographer 's show-don ` t-tell stance is admirable 3 +99275 5206 The photographer 's show-don ` t-tell stance 2 +99276 5206 The photographer 's 2 +99277 5206 photographer 's 2 +99278 5206 show-don ` t-tell stance 2 +99279 5206 show-don 2 +99280 5206 ` t-tell stance 2 +99281 5206 t-tell stance 2 +99282 5206 t-tell 2 +99283 5206 is admirable 3 +99284 5206 it can make him a problematic documentary subject 1 +99285 5206 can make him a problematic documentary subject 2 +99286 5206 make him a problematic documentary subject 1 +99287 5206 him a problematic documentary subject 1 +99288 5206 a problematic documentary subject 2 +99289 5206 problematic documentary subject 2 +99290 5206 documentary subject 2 +99291 5207 It is a testament of quiet endurance , of common concern , of reconciled survival . 2 +99292 5207 is a testament of quiet endurance , of common concern , of reconciled survival . 3 +99293 5207 is a testament of quiet endurance , of common concern , of reconciled survival 3 +99294 5207 a testament of quiet endurance , of common concern , of reconciled survival 3 +99295 5207 a testament of quiet endurance , of common concern , 3 +99296 5207 of quiet endurance , of common concern , 2 +99297 5207 quiet endurance , of common concern , 3 +99298 5207 quiet endurance , of common concern 2 +99299 5207 quiet endurance , 2 +99300 5207 quiet endurance 3 +99301 5207 of common concern 1 +99302 5207 common concern 2 +99303 5207 of reconciled survival 2 +99304 5207 reconciled survival 2 +99305 5207 reconciled 2 +99306 5208 If you 're in the right B-movie frame of mind , it may just scare the pants off you . 3 +99307 5208 If you 're in the right B-movie frame of mind 2 +99308 5208 you 're in the right B-movie frame of mind 3 +99309 5208 're in the right B-movie frame of mind 2 +99310 5208 in the right B-movie frame of mind 2 +99311 5208 the right B-movie frame of mind 3 +99312 5208 the right B-movie frame 2 +99313 5208 right B-movie frame 2 +99314 5208 B-movie frame 2 +99315 5208 , it may just scare the pants off you . 3 +99316 5208 it may just scare the pants off you . 2 +99317 5208 may just scare the pants off you . 3 +99318 5208 may just scare the pants off you 2 +99319 5208 may just 2 +99320 5208 scare the pants off you 3 +99321 5208 scare the pants 3 +99322 5208 the pants 2 +99323 5208 off you 2 +99324 5209 Despite its shortcomings , Girls Ca n't Swim represents an engaging and intimate first feature by a talented director to watch , and it 's a worthy entry in the French coming-of-age genre . 3 +99325 5209 Despite its shortcomings 2 +99326 5209 its shortcomings 1 +99327 5209 , Girls Ca n't Swim represents an engaging and intimate first feature by a talented director to watch , and it 's a worthy entry in the French coming-of-age genre . 4 +99328 5209 Girls Ca n't Swim represents an engaging and intimate first feature by a talented director to watch , and it 's a worthy entry in the French coming-of-age genre . 4 +99329 5209 Girls Ca n't Swim represents an engaging and intimate first feature by a talented director to watch , and it 's a worthy entry in the French coming-of-age genre 3 +99330 5209 Girls Ca n't Swim represents an engaging and intimate first feature by a talented director to watch , and 3 +99331 5209 Girls Ca n't Swim represents an engaging and intimate first feature by a talented director to watch , 4 +99332 5209 Girls Ca n't Swim represents an engaging and intimate first feature by a talented director to watch 3 +99333 5209 Ca n't Swim represents an engaging and intimate first feature by a talented director to watch 3 +99334 5209 Swim represents an engaging and intimate first feature by a talented director to watch 4 +99335 5209 represents an engaging and intimate first feature by a talented director to watch 3 +99336 5209 represents an engaging and intimate first feature by a talented director 4 +99337 5209 represents an engaging and intimate first feature 3 +99338 5209 an engaging and intimate first feature 3 +99339 5209 engaging and intimate first feature 4 +99340 5209 engaging and intimate 4 +99341 5209 first feature 2 +99342 5209 by a talented director 3 +99343 5209 a talented director 4 +99344 5209 it 's a worthy entry in the French coming-of-age genre 4 +99345 5209 's a worthy entry in the French coming-of-age genre 4 +99346 5209 a worthy entry in the French coming-of-age genre 4 +99347 5209 a worthy entry 3 +99348 5209 worthy entry 4 +99349 5209 in the French coming-of-age genre 2 +99350 5210 Weiss and Speck never make a convincing case for the relevance of these two 20th-century footnotes . 2 +99351 5210 Weiss and Speck 2 +99352 5210 Weiss and 3 +99353 5210 Weiss 2 +99354 5210 Speck 2 +99355 5210 never make a convincing case for the relevance of these two 20th-century footnotes . 1 +99356 5210 make a convincing case for the relevance of these two 20th-century footnotes . 2 +99357 5210 make a convincing case for the relevance of these two 20th-century footnotes 3 +99358 5210 a convincing case for the relevance of these two 20th-century footnotes 3 +99359 5210 a convincing case 3 +99360 5210 for the relevance of these two 20th-century footnotes 2 +99361 5210 the relevance of these two 20th-century footnotes 2 +99362 5210 the relevance 2 +99363 5210 of these two 20th-century footnotes 2 +99364 5210 these two 20th-century footnotes 3 +99365 5210 two 20th-century footnotes 2 +99366 5210 20th-century footnotes 3 +99367 5210 20th-century 2 +99368 5210 footnotes 2 +99369 5211 Even before it builds up to its insanely staged ballroom scene , in which 3000 actors appear in full regalia , it 's waltzed itself into the art film pantheon . 3 +99370 5211 Even before it builds up to its insanely staged ballroom scene , in which 3000 actors appear in full regalia 2 +99371 5211 before it builds up to its insanely staged ballroom scene , in which 3000 actors appear in full regalia 3 +99372 5211 it builds up to its insanely staged ballroom scene , in which 3000 actors appear in full regalia 2 +99373 5211 builds up to its insanely staged ballroom scene , in which 3000 actors appear in full regalia 4 +99374 5211 builds up 2 +99375 5211 to its insanely staged ballroom scene , in which 3000 actors appear in full regalia 3 +99376 5211 its insanely staged ballroom scene , in which 3000 actors appear in full regalia 2 +99377 5211 its insanely staged ballroom scene , 2 +99378 5211 its insanely staged ballroom scene 2 +99379 5211 insanely staged ballroom scene 2 +99380 5211 staged ballroom scene 2 +99381 5211 ballroom scene 2 +99382 5211 ballroom 2 +99383 5211 in which 3000 actors appear in full regalia 2 +99384 5211 3000 actors appear in full regalia 2 +99385 5211 3000 actors 2 +99386 5211 appear in full regalia 2 +99387 5211 , it 's waltzed itself into the art film pantheon . 3 +99388 5211 it 's waltzed itself into the art film pantheon . 4 +99389 5211 's waltzed itself into the art film pantheon . 3 +99390 5211 's waltzed itself into the art film pantheon 3 +99391 5211 waltzed itself into the art film pantheon 3 +99392 5211 waltzed itself 2 +99393 5211 waltzed 2 +99394 5211 into the art film pantheon 3 +99395 5211 the art film pantheon 2 +99396 5211 art film pantheon 2 +99397 5211 film pantheon 2 +99398 5211 pantheon 2 +99399 5212 Australia : Land Beyond Time is an enjoyable Big Movie primarily because Australia is a weirdly beautiful place . 3 +99400 5212 Australia 2 +99401 5212 : Land Beyond Time is an enjoyable Big Movie primarily because Australia is a weirdly beautiful place . 3 +99402 5212 Land Beyond Time is an enjoyable Big Movie primarily because Australia is a weirdly beautiful place . 4 +99403 5212 Land Beyond Time is an enjoyable Big Movie primarily because Australia is a weirdly beautiful place 4 +99404 5212 Land Beyond Time 3 +99405 5212 Beyond Time 2 +99406 5212 is an enjoyable Big Movie primarily because Australia is a weirdly beautiful place 3 +99407 5212 is an enjoyable Big Movie primarily 3 +99408 5212 is an enjoyable Big Movie 4 +99409 5212 an enjoyable Big Movie 3 +99410 5212 enjoyable Big Movie 4 +99411 5212 Big Movie 2 +99412 5212 because Australia is a weirdly beautiful place 3 +99413 5212 Australia is a weirdly beautiful place 3 +99414 5212 is a weirdly beautiful place 3 +99415 5212 a weirdly beautiful place 3 +99416 5212 weirdly beautiful place 3 +99417 5212 weirdly beautiful 3 +99418 5213 Even if you 've seen `` Stomp '' -LRB- the stage show -RRB- , you still have to see this ! 4 +99419 5213 Even if you 've seen `` Stomp '' 2 +99420 5213 if you 've seen `` Stomp '' 2 +99421 5213 you 've seen `` Stomp '' 2 +99422 5213 've seen `` Stomp '' 2 +99423 5213 seen `` Stomp '' 2 +99424 5213 `` Stomp '' 2 +99425 5213 Stomp '' 2 +99426 5213 Stomp 2 +99427 5213 -LRB- the stage show -RRB- , you still have to see this ! 3 +99428 5213 -LRB- the stage show -RRB- 2 +99429 5213 the stage show -RRB- 2 +99430 5213 the stage show 2 +99431 5213 the stage 2 +99432 5213 , you still have to see this ! 4 +99433 5213 you still have to see this ! 4 +99434 5213 still have to see this ! 3 +99435 5213 have to see this ! 3 +99436 5213 have to see this 4 +99437 5213 to see this 2 +99438 5213 see this 3 +99439 5214 There is nothing funny in this every-joke-has - been-told-a - thousand-times - before movie . 0 +99440 5214 is nothing funny in this every-joke-has - been-told-a - thousand-times - before movie . 1 +99441 5214 is nothing funny in this every-joke-has - been-told-a - thousand-times - before movie 0 +99442 5214 nothing funny in this every-joke-has - been-told-a - thousand-times - before movie 1 +99443 5214 nothing funny in this every-joke-has - been-told-a - 0 +99444 5214 nothing funny in this every-joke-has - been-told-a 0 +99445 5214 nothing funny 1 +99446 5214 in this every-joke-has - been-told-a 0 +99447 5214 this every-joke-has - been-told-a 1 +99448 5214 every-joke-has - been-told-a 1 +99449 5214 every-joke-has 2 +99450 5214 - been-told-a 2 +99451 5214 been-told-a 2 +99452 5214 thousand-times - before movie 2 +99453 5214 thousand-times - 2 +99454 5214 thousand-times 2 +99455 5214 before movie 2 +99456 5215 But if you 've paid a matinee price and bought a big tub of popcorn , there 's guilty fun to be had here . 2 +99457 5215 if you 've paid a matinee price and bought a big tub of popcorn , there 's guilty fun to be had here . 2 +99458 5215 if you 've paid a matinee price and bought a big tub of popcorn 2 +99459 5215 you 've paid a matinee price and bought a big tub of popcorn 2 +99460 5215 've paid a matinee price and bought a big tub of popcorn 2 +99461 5215 've paid a matinee price and 2 +99462 5215 've paid a matinee price 2 +99463 5215 paid a matinee price 2 +99464 5215 a matinee price 3 +99465 5215 matinee price 3 +99466 5215 bought a big tub of popcorn 2 +99467 5215 a big tub of popcorn 2 +99468 5215 a big tub 3 +99469 5215 big tub 2 +99470 5215 , there 's guilty fun to be had here . 3 +99471 5215 there 's guilty fun to be had here . 3 +99472 5215 's guilty fun to be had here . 3 +99473 5215 's guilty fun to be had here 3 +99474 5215 guilty fun to be had here 3 +99475 5215 fun to be had here 3 +99476 5215 to be had here 2 +99477 5215 be had here 2 +99478 5215 had here 2 +99479 5216 that works . 3 +99480 5217 Although ... visually striking and slickly staged , it 's also cold , grey , antiseptic and emotionally desiccated . 1 +99481 5217 Although ... visually striking and slickly staged 3 +99482 5217 ... visually striking and slickly staged 3 +99483 5217 visually striking and slickly staged 3 +99484 5217 striking and slickly staged 2 +99485 5217 striking and 3 +99486 5217 slickly staged 3 +99487 5217 slickly 3 +99488 5217 , it 's also cold , grey , antiseptic and emotionally desiccated . 1 +99489 5217 it 's also cold , grey , antiseptic and emotionally desiccated . 0 +99490 5217 's also cold , grey , antiseptic and emotionally desiccated . 1 +99491 5217 's also cold , grey , antiseptic and emotionally desiccated 2 +99492 5217 cold , grey , antiseptic and emotionally desiccated 0 +99493 5217 cold , grey , antiseptic and 1 +99494 5217 cold , grey , antiseptic 1 +99495 5217 cold , grey , 2 +99496 5217 cold , grey 1 +99497 5217 cold , 1 +99498 5217 antiseptic 2 +99499 5217 emotionally desiccated 1 +99500 5217 desiccated 1 +99501 5218 A highly personal look at the effects of living a dysfunctionally privileged lifestyle , and by the end , we only wish we could have spent more time in its world . 2 +99502 5218 A highly personal look at the effects of living a dysfunctionally privileged lifestyle , and by the end , we only wish we could have spent more time in its world 3 +99503 5218 A highly personal look at the effects of living a dysfunctionally privileged lifestyle , and 2 +99504 5218 A highly personal look at the effects of living a dysfunctionally privileged lifestyle , 2 +99505 5218 A highly personal look at the effects of living a dysfunctionally privileged lifestyle 3 +99506 5218 A highly personal 2 +99507 5218 highly personal 2 +99508 5218 look at the effects of living a dysfunctionally privileged lifestyle 2 +99509 5218 at the effects of living a dysfunctionally privileged lifestyle 2 +99510 5218 the effects of living a dysfunctionally privileged lifestyle 3 +99511 5218 the effects 2 +99512 5218 of living a dysfunctionally privileged lifestyle 2 +99513 5218 living a dysfunctionally privileged lifestyle 2 +99514 5218 a dysfunctionally privileged lifestyle 2 +99515 5218 dysfunctionally privileged lifestyle 1 +99516 5218 dysfunctionally 2 +99517 5218 privileged lifestyle 2 +99518 5218 by the end , we only wish we could have spent more time in its world 2 +99519 5218 , we only wish we could have spent more time in its world 4 +99520 5218 we only wish we could have spent more time in its world 3 +99521 5218 only wish we could have spent more time in its world 3 +99522 5218 wish we could have spent more time in its world 3 +99523 5218 we could have spent more time in its world 2 +99524 5218 could have spent more time in its world 2 +99525 5218 have spent more time in its world 2 +99526 5218 spent more time in its world 2 +99527 5218 spent more time 2 +99528 5218 in its world 2 +99529 5218 its world 2 +99530 5219 Overall , Cletis Tout is a winning comedy that excites the imagination and tickles the funny bone . 4 +99531 5219 , Cletis Tout is a winning comedy that excites the imagination and tickles the funny bone . 4 +99532 5219 Cletis Tout is a winning comedy that excites the imagination and tickles the funny bone . 4 +99533 5219 is a winning comedy that excites the imagination and tickles the funny bone . 4 +99534 5219 is a winning comedy that excites the imagination and tickles the funny bone 3 +99535 5219 a winning comedy that excites the imagination and tickles the funny bone 4 +99536 5219 a winning comedy 4 +99537 5219 winning comedy 3 +99538 5219 that excites the imagination and tickles the funny bone 3 +99539 5219 excites the imagination and tickles the funny bone 4 +99540 5219 excites the imagination and 3 +99541 5219 excites the imagination 3 +99542 5219 excites 4 +99543 5219 the imagination 3 +99544 5219 tickles the funny bone 4 +99545 5219 tickles 3 +99546 5220 Rollerball IS as bad as you think , and worse than you can imagine . 0 +99547 5220 IS as bad as you think , and worse than you can imagine . 0 +99548 5220 IS as bad as you think , and worse than you can imagine 0 +99549 5220 as bad as you think , and worse than you can imagine 0 +99550 5220 as bad as you think , and 1 +99551 5220 as bad as you think , 1 +99552 5220 as bad as you think 0 +99553 5220 as you think 2 +99554 5220 you think 2 +99555 5220 worse than you can imagine 0 +99556 5220 than you can imagine 2 +99557 5221 may prove to be -LRB- Tsai 's -RRB- masterpiece . 4 +99558 5221 may prove to be -LRB- Tsai 's -RRB- masterpiece 4 +99559 5221 prove to be -LRB- Tsai 's -RRB- masterpiece 4 +99560 5221 to be -LRB- Tsai 's -RRB- masterpiece 4 +99561 5221 be -LRB- Tsai 's -RRB- masterpiece 2 +99562 5221 -LRB- Tsai 's -RRB- masterpiece 4 +99563 5221 -LRB- Tsai 's -RRB- 2 +99564 5221 Tsai 's -RRB- 2 +99565 5222 Donovan ... squanders his main asset , Jackie Chan , and fumbles the vital action sequences . 1 +99566 5222 Donovan ... squanders his main asset , Jackie Chan , and fumbles the vital action sequences 1 +99567 5222 Donovan ... squanders his main asset , Jackie Chan , and 1 +99568 5222 Donovan ... squanders his main asset , Jackie Chan , 1 +99569 5222 Donovan ... squanders his main asset , Jackie Chan 1 +99570 5222 Donovan ... squanders his main asset , 1 +99571 5222 Donovan ... squanders his main asset 1 +99572 5222 Donovan ... squanders 2 +99573 5222 Donovan ... 2 +99574 5222 his main asset 2 +99575 5222 main asset 3 +99576 5222 fumbles the vital action sequences 1 +99577 5222 the vital action sequences 3 +99578 5222 vital action sequences 3 +99579 5223 Dense and enigmatic ... elusive ... stagy and stilted 2 +99580 5223 Dense and enigmatic ... 2 +99581 5223 Dense and enigmatic 2 +99582 5223 Dense and 2 +99583 5223 elusive ... stagy and stilted 1 +99584 5223 elusive ... 1 +99585 5223 stagy and stilted 1 +99586 5223 stagy and 2 +99587 5224 If the movie were all comedy , it might work better . 2 +99588 5224 If the movie were all comedy 2 +99589 5224 the movie were all comedy 2 +99590 5224 were all comedy 3 +99591 5224 , it might work better . 2 +99592 5224 it might work better . 2 +99593 5224 might work better . 2 +99594 5224 might work better 2 +99595 5225 May lack the pungent bite of its title , but it 's an enjoyable trifle nonetheless . 3 +99596 5225 May lack the pungent bite of its title , but it 's an enjoyable trifle nonetheless 3 +99597 5225 May lack the pungent bite of its title , but 1 +99598 5225 May lack the pungent bite of its title , 1 +99599 5225 May lack the pungent bite of its title 1 +99600 5225 lack the pungent bite of its title 2 +99601 5225 the pungent bite of its title 1 +99602 5225 the pungent bite 1 +99603 5225 pungent bite 3 +99604 5225 it 's an enjoyable trifle nonetheless 3 +99605 5225 's an enjoyable trifle nonetheless 3 +99606 5225 's an enjoyable trifle 2 +99607 5225 an enjoyable trifle 3 +99608 5225 enjoyable trifle 3 +99609 5226 There are problems with this film that even 3 Oscar winners ca n't overcome , but it 's a nice girl-buddy movie once it gets rock-n-rolling . 2 +99610 5226 There are problems with this film that even 3 Oscar winners ca n't overcome , but it 's a nice girl-buddy movie once it gets rock-n-rolling 3 +99611 5226 There are problems with this film that even 3 Oscar winners ca n't overcome , but 0 +99612 5226 There are problems with this film that even 3 Oscar winners ca n't overcome , 1 +99613 5226 There are problems with this film that even 3 Oscar winners ca n't overcome 0 +99614 5226 are problems with this film that even 3 Oscar winners ca n't overcome 1 +99615 5226 problems with this film that even 3 Oscar winners ca n't overcome 0 +99616 5226 with this film that even 3 Oscar winners ca n't overcome 1 +99617 5226 this film that even 3 Oscar winners ca n't overcome 2 +99618 5226 that even 3 Oscar winners ca n't overcome 1 +99619 5226 even 3 Oscar winners ca n't overcome 2 +99620 5226 even 3 Oscar winners 3 +99621 5226 3 Oscar winners 3 +99622 5226 ca n't overcome 2 +99623 5226 it 's a nice girl-buddy movie once it gets rock-n-rolling 3 +99624 5226 's a nice girl-buddy movie once it gets rock-n-rolling 3 +99625 5226 's a nice girl-buddy movie 3 +99626 5226 a nice girl-buddy movie 4 +99627 5226 nice girl-buddy movie 3 +99628 5226 girl-buddy movie 2 +99629 5226 girl-buddy 2 +99630 5226 once it gets rock-n-rolling 2 +99631 5226 it gets rock-n-rolling 3 +99632 5226 gets rock-n-rolling 3 +99633 5226 rock-n-rolling 2 +99634 5227 Rodriguez does a splendid job of racial profiling Hollywood style -- casting excellent Latin actors of all ages -- a trend long overdue . 3 +99635 5227 does a splendid job of racial profiling Hollywood style -- casting excellent Latin actors of all ages -- a trend long overdue . 3 +99636 5227 does a splendid job of racial profiling Hollywood style -- casting excellent Latin actors of all ages -- a trend long overdue 4 +99637 5227 a splendid job of racial profiling Hollywood style -- casting excellent Latin actors of all ages -- a trend long overdue 3 +99638 5227 a splendid job of racial profiling Hollywood style -- casting excellent Latin actors of all ages -- 4 +99639 5227 a splendid job of racial profiling Hollywood style 2 +99640 5227 a splendid job 4 +99641 5227 splendid job 2 +99642 5227 of racial profiling Hollywood style 2 +99643 5227 racial profiling Hollywood style 1 +99644 5227 profiling Hollywood style 2 +99645 5227 profiling 2 +99646 5227 Hollywood style 2 +99647 5227 -- casting excellent Latin actors of all ages -- 4 +99648 5227 casting excellent Latin actors of all ages -- 4 +99649 5227 casting excellent Latin actors of all ages 3 +99650 5227 excellent Latin actors of all ages 3 +99651 5227 excellent Latin actors 3 +99652 5227 Latin actors 2 +99653 5227 a trend long overdue 3 +99654 5227 a trend 1 +99655 5227 trend 2 +99656 5227 long overdue 3 +99657 5227 overdue 2 +99658 5228 Would n't it be funny if a bunch of Allied soldiers went undercover as women in a German factory during World War II ? 2 +99659 5228 Would n't it be funny if a bunch of Allied soldiers went undercover as women in a German factory during World War II 2 +99660 5228 Would n't it 2 +99661 5228 be funny if a bunch of Allied soldiers went undercover as women in a German factory during World War II 2 +99662 5228 be funny 3 +99663 5228 if a bunch of Allied soldiers went undercover as women in a German factory during World War II 2 +99664 5228 a bunch of Allied soldiers went undercover as women in a German factory during World War II 2 +99665 5228 a bunch of Allied soldiers 2 +99666 5228 of Allied soldiers 2 +99667 5228 Allied soldiers 2 +99668 5228 Allied 2 +99669 5228 went undercover as women in a German factory during World War II 2 +99670 5228 went undercover as women in a German factory 2 +99671 5228 went undercover 2 +99672 5228 as women in a German factory 2 +99673 5228 women in a German factory 2 +99674 5228 in a German factory 2 +99675 5228 a German factory 2 +99676 5228 German factory 2 +99677 5228 during World War II 3 +99678 5229 Interesting both as a historical study and as a tragic love story . 3 +99679 5229 Interesting both as a historical study and as a tragic love story 3 +99680 5229 both as a historical study and as a tragic love story 3 +99681 5229 as a historical study and as a tragic love story 3 +99682 5229 as a historical study and 2 +99683 5229 as a historical study 2 +99684 5229 a historical study 2 +99685 5229 historical study 2 +99686 5229 as a tragic love story 2 +99687 5229 a tragic love story 3 +99688 5229 tragic love story 2 +99689 5230 Clayburgh and Tambor are charming performers ; neither of them deserves Eric Schaeffer . 2 +99690 5230 Clayburgh and Tambor are charming performers ; neither of them deserves Eric Schaeffer 2 +99691 5230 Clayburgh and Tambor are charming performers ; 4 +99692 5230 Clayburgh and Tambor are charming performers 3 +99693 5230 are charming performers 3 +99694 5230 charming performers 3 +99695 5230 neither of them deserves Eric Schaeffer 1 +99696 5230 neither of them 2 +99697 5230 deserves Eric Schaeffer 2 +99698 5231 One key problem with these ardently Christian storylines is that there is never any question of how things will turn out . 1 +99699 5231 One key problem with these ardently Christian storylines 1 +99700 5231 One key problem 2 +99701 5231 key problem 2 +99702 5231 with these ardently Christian storylines 2 +99703 5231 these ardently Christian storylines 2 +99704 5231 ardently Christian storylines 2 +99705 5231 ardently 2 +99706 5231 Christian storylines 2 +99707 5231 is that there is never any question of how things will turn out . 2 +99708 5231 is that there is never any question of how things will turn out 1 +99709 5231 that there is never any question of how things will turn out 2 +99710 5231 there is never any question of how things will turn out 2 +99711 5231 is never any question of how things will turn out 1 +99712 5231 any question of how things will turn out 2 +99713 5231 any question 2 +99714 5231 of how things will turn out 2 +99715 5231 how things will turn out 2 +99716 5231 things will turn out 3 +99717 5231 will turn out 3 +99718 5232 It 's so devoid of joy and energy it makes even Jason X ... look positively Shakesperean by comparison . 0 +99719 5232 's so devoid of joy and energy it makes even Jason X ... look positively Shakesperean by comparison . 1 +99720 5232 's so devoid of joy and energy it makes even Jason X ... look positively Shakesperean by comparison 0 +99721 5232 's so devoid of joy and energy 1 +99722 5232 so devoid of joy and energy 2 +99723 5232 devoid of joy and energy 1 +99724 5232 of joy and energy 4 +99725 5232 joy and energy 4 +99726 5232 it makes even Jason X ... look positively Shakesperean by comparison 1 +99727 5232 makes even Jason X ... look positively Shakesperean by comparison 0 +99728 5232 even Jason X ... look positively Shakesperean by comparison 1 +99729 5232 Jason X ... look positively Shakesperean by comparison 2 +99730 5232 ... look positively Shakesperean by comparison 2 +99731 5232 look positively Shakesperean by comparison 2 +99732 5232 positively Shakesperean by comparison 2 +99733 5232 positively Shakesperean 3 +99734 5232 Shakesperean 2 +99735 5233 The darker elements of misogyny and unprovoked violence suffocate the illumination created by the two daughters and the sparse instances of humor meant to shine through the gloomy film noir veil . 1 +99736 5233 The darker elements of misogyny and unprovoked violence suffocate the illumination created by the two daughters and the sparse instances of humor meant to shine through the gloomy film noir veil 1 +99737 5233 The darker elements of misogyny and unprovoked violence suffocate the illumination created by the two daughters and 1 +99738 5233 The darker elements of misogyny and unprovoked violence suffocate the illumination created by the two daughters 1 +99739 5233 The darker elements of misogyny and unprovoked violence 1 +99740 5233 The darker elements 2 +99741 5233 darker elements 2 +99742 5233 of misogyny and unprovoked violence 1 +99743 5233 misogyny and unprovoked violence 1 +99744 5233 misogyny and unprovoked 1 +99745 5233 misogyny and 2 +99746 5233 unprovoked 2 +99747 5233 suffocate the illumination created by the two daughters 1 +99748 5233 suffocate 1 +99749 5233 the illumination created by the two daughters 2 +99750 5233 the illumination 2 +99751 5233 illumination 2 +99752 5233 created by the two daughters 2 +99753 5233 by the two daughters 2 +99754 5233 the two daughters 2 +99755 5233 two daughters 2 +99756 5233 the sparse instances of humor meant to shine through the gloomy film noir veil 2 +99757 5233 the sparse instances of humor 1 +99758 5233 the sparse instances 2 +99759 5233 sparse instances 1 +99760 5233 sparse 2 +99761 5233 instances 2 +99762 5233 meant to shine through the gloomy film noir veil 2 +99763 5233 to shine through the gloomy film noir veil 1 +99764 5233 shine through the gloomy film noir veil 3 +99765 5233 through the gloomy film noir veil 1 +99766 5233 the gloomy film noir veil 1 +99767 5233 gloomy film noir veil 1 +99768 5233 film noir veil 2 +99769 5233 noir veil 1 +99770 5233 veil 2 +99771 5234 Predictably melodramatic . 1 +99772 5234 melodramatic . 2 +99773 5235 Tends to pile too many `` serious issues '' on its plate at times , yet remains fairly light , always entertaining , and smartly written . 3 +99774 5235 Tends to pile too many `` serious issues '' on its plate at times , yet 1 +99775 5235 to pile too many `` serious issues '' on its plate at times , yet 2 +99776 5235 pile too many `` serious issues '' on its plate at times , yet 1 +99777 5235 pile too many `` serious issues '' 1 +99778 5235 too many `` serious issues '' 1 +99779 5235 many `` serious issues '' 2 +99780 5235 `` serious issues '' 1 +99781 5235 serious issues '' 2 +99782 5235 issues '' 2 +99783 5235 on its plate at times , yet 2 +99784 5235 on its plate at times , 2 +99785 5235 on its plate at times 2 +99786 5235 its plate at times 2 +99787 5235 remains fairly light , always entertaining , and smartly written . 4 +99788 5235 remains fairly light , always entertaining , and smartly written 3 +99789 5235 remains fairly light , 3 +99790 5235 remains fairly light 2 +99791 5235 fairly light 2 +99792 5235 always entertaining , and smartly written 4 +99793 5235 always entertaining , and 3 +99794 5235 always entertaining , 4 +99795 5235 smartly written 4 +99796 5236 A marvel of production design . 4 +99797 5236 A marvel of production design 3 +99798 5236 A marvel 3 +99799 5236 of production design 2 +99800 5237 Nicole Holofcener 's Lovely and Amazing , from her own screenplay , jumps to the head of the class of women 's films that manage to avoid the ghetto of sentimental chick-flicks by treating female follies with a satirical style . 4 +99801 5237 Nicole Holofcener 2 +99802 5237 's Lovely and Amazing , from her own screenplay , jumps to the head of the class of women 's films that manage to avoid the ghetto of sentimental chick-flicks by treating female follies with a satirical style . 3 +99803 5237 's Lovely and Amazing , from her own screenplay , jumps to the head of the class of women 's films that manage to avoid the ghetto of sentimental chick-flicks by treating female follies with a satirical style 4 +99804 5237 's Lovely and Amazing , 4 +99805 5237 's Lovely and Amazing 4 +99806 5237 from her own screenplay , jumps to the head of the class of women 's films that manage to avoid the ghetto of sentimental chick-flicks by treating female follies with a satirical style 3 +99807 5237 her own screenplay , jumps to the head of the class of women 's films that manage to avoid the ghetto of sentimental chick-flicks by treating female follies with a satirical style 4 +99808 5237 her own screenplay , 2 +99809 5237 her own screenplay 2 +99810 5237 jumps to the head of the class of women 's films that manage to avoid the ghetto of sentimental chick-flicks by treating female follies with a satirical style 3 +99811 5237 jumps to the head of the class of women 's films 4 +99812 5237 to the head of the class of women 's films 4 +99813 5237 the head of the class of women 's films 4 +99814 5237 of the class of women 's films 2 +99815 5237 the class of women 's films 2 +99816 5237 the class 2 +99817 5237 of women 's films 2 +99818 5237 women 's films 2 +99819 5237 that manage to avoid the ghetto of sentimental chick-flicks by treating female follies with a satirical style 3 +99820 5237 manage to avoid the ghetto of sentimental chick-flicks by treating female follies with a satirical style 2 +99821 5237 to avoid the ghetto of sentimental chick-flicks by treating female follies with a satirical style 2 +99822 5237 avoid the ghetto of sentimental chick-flicks by treating female follies with a satirical style 1 +99823 5237 avoid the ghetto of sentimental chick-flicks 1 +99824 5237 the ghetto of sentimental chick-flicks 2 +99825 5237 the ghetto 2 +99826 5237 of sentimental chick-flicks 2 +99827 5237 sentimental chick-flicks 3 +99828 5237 chick-flicks 2 +99829 5237 by treating female follies with a satirical style 2 +99830 5237 treating female follies with a satirical style 2 +99831 5237 treating female follies 3 +99832 5237 treating 2 +99833 5237 female follies 2 +99834 5237 follies 2 +99835 5237 with a satirical style 2 +99836 5237 a satirical style 2 +99837 5237 satirical style 2 +99838 5238 But something seems to be missing . 2 +99839 5238 something seems to be missing . 2 +99840 5238 seems to be missing . 1 +99841 5238 seems to be missing 1 +99842 5238 to be missing 2 +99843 5238 be missing 2 +99844 5239 The connected stories of Breitbart and Hanussen are actually fascinating , but the filmmaking in Invincible is such that the movie does not do them justice . 1 +99845 5239 The connected stories of Breitbart and Hanussen are actually fascinating , but the filmmaking in Invincible is such that the movie does not do them justice 2 +99846 5239 The connected stories of Breitbart and Hanussen are actually fascinating , but 2 +99847 5239 The connected stories of Breitbart and Hanussen are actually fascinating , 3 +99848 5239 The connected stories of Breitbart and Hanussen are actually fascinating 4 +99849 5239 The connected stories of Breitbart and Hanussen 2 +99850 5239 The connected stories 2 +99851 5239 connected stories 2 +99852 5239 of Breitbart and Hanussen 2 +99853 5239 Breitbart and Hanussen 2 +99854 5239 Breitbart and 2 +99855 5239 Breitbart 2 +99856 5239 Hanussen 2 +99857 5239 are actually fascinating 3 +99858 5239 the filmmaking in Invincible is such that the movie does not do them justice 1 +99859 5239 the filmmaking in Invincible 3 +99860 5239 in Invincible 2 +99861 5239 is such that the movie does not do them justice 1 +99862 5239 that the movie does not do them justice 1 +99863 5239 the movie does not do them justice 1 +99864 5239 does not do them justice 2 +99865 5239 do them justice 2 +99866 5239 do them 2 +99867 5240 I have returned from the beyond to warn you : this movie is 90 minutes long , and life is too short . 0 +99868 5240 I have returned from the beyond to warn you : this movie is 90 minutes long , and life is too short 0 +99869 5240 I have returned from the beyond to warn you : 1 +99870 5240 I have returned from the beyond to warn you 1 +99871 5240 have returned from the beyond to warn you 1 +99872 5240 returned from the beyond to warn you 2 +99873 5240 returned from the beyond 2 +99874 5240 returned 2 +99875 5240 from the beyond 2 +99876 5240 the beyond 2 +99877 5240 to warn you 2 +99878 5240 warn you 2 +99879 5240 warn 1 +99880 5240 this movie is 90 minutes long , and life is too short 1 +99881 5240 this movie is 90 minutes long , and 1 +99882 5240 this movie is 90 minutes long , 2 +99883 5240 this movie is 90 minutes long 2 +99884 5240 is 90 minutes long 2 +99885 5240 90 minutes long 2 +99886 5240 life is too short 2 +99887 5240 is too short 1 +99888 5241 Although the sequel has all the outward elements of the original , the first film 's lovely flakiness is gone , replaced by the forced funniness found in the dullest kiddie flicks . 0 +99889 5241 Although the sequel has all the outward elements of the original 2 +99890 5241 the sequel has all the outward elements of the original 2 +99891 5241 has all the outward elements of the original 3 +99892 5241 all the outward elements of the original 3 +99893 5241 all the outward elements 2 +99894 5241 the outward elements 2 +99895 5241 outward elements 2 +99896 5241 outward 2 +99897 5241 , the first film 's lovely flakiness is gone , replaced by the forced funniness found in the dullest kiddie flicks . 1 +99898 5241 the first film 's lovely flakiness is gone , replaced by the forced funniness found in the dullest kiddie flicks . 2 +99899 5241 the first film 's lovely flakiness 2 +99900 5241 the first film 's 2 +99901 5241 first film 's 2 +99902 5241 lovely flakiness 3 +99903 5241 flakiness 1 +99904 5241 is gone , replaced by the forced funniness found in the dullest kiddie flicks . 0 +99905 5241 is gone , replaced by the forced funniness found in the dullest kiddie flicks 1 +99906 5241 gone , replaced by the forced funniness found in the dullest kiddie flicks 0 +99907 5241 gone , 2 +99908 5241 replaced by the forced funniness found in the dullest kiddie flicks 0 +99909 5241 by the forced funniness found in the dullest kiddie flicks 1 +99910 5241 the forced funniness found in the dullest kiddie flicks 1 +99911 5241 the forced funniness 2 +99912 5241 forced funniness 1 +99913 5241 funniness 3 +99914 5241 found in the dullest kiddie flicks 2 +99915 5241 in the dullest kiddie flicks 1 +99916 5241 the dullest kiddie flicks 0 +99917 5241 dullest kiddie flicks 0 +99918 5241 kiddie flicks 2 +99919 5242 Ozpetek 's effort has the scope and shape of an especially well-executed television movie . 4 +99920 5242 Ozpetek 's effort 2 +99921 5242 Ozpetek 's 2 +99922 5242 has the scope and shape of an especially well-executed television movie . 2 +99923 5242 has the scope and shape of an especially well-executed television movie 3 +99924 5242 the scope and shape of an especially well-executed television movie 3 +99925 5242 the scope and shape 2 +99926 5242 scope and shape 2 +99927 5242 scope and 3 +99928 5242 of an especially well-executed television movie 3 +99929 5242 an especially well-executed television movie 3 +99930 5242 especially well-executed television movie 4 +99931 5242 especially well-executed 4 +99932 5242 television movie 2 +99933 5243 Less a study in madness or love than a study in schoolgirl obsession . 1 +99934 5243 Less a study in madness or love than a study in schoolgirl obsession 2 +99935 5243 Less a study in madness or love 2 +99936 5243 Less a study 2 +99937 5243 in madness or love 2 +99938 5243 madness or love 2 +99939 5243 madness or 2 +99940 5243 than a study in schoolgirl obsession 2 +99941 5243 a study in schoolgirl obsession 1 +99942 5243 in schoolgirl obsession 2 +99943 5243 schoolgirl obsession 2 +99944 5243 schoolgirl 2 +99945 5244 ... really horrible drek . 0 +99946 5244 really horrible drek . 0 +99947 5244 really horrible 0 +99948 5244 drek . 2 +99949 5244 drek 1 +99950 5245 It 's not particularly subtle ... However , it still manages to build to a terrifying , if obvious , conclusion . 2 +99951 5245 It 's not particularly subtle ... However , it still manages to build to a terrifying , if obvious , conclusion 2 +99952 5245 It 's not particularly subtle ... 1 +99953 5245 It 's not particularly subtle 2 +99954 5245 's not particularly subtle 2 +99955 5245 particularly subtle 2 +99956 5245 However , it still manages to build to a terrifying , if obvious , conclusion 2 +99957 5245 , it still manages to build to a terrifying , if obvious , conclusion 2 +99958 5245 it still manages to build to a terrifying , if obvious , conclusion 3 +99959 5245 still manages to build to a terrifying , if obvious , conclusion 3 +99960 5245 manages to build to a terrifying , if obvious , conclusion 2 +99961 5245 to build to a terrifying , if obvious , conclusion 2 +99962 5245 build to a terrifying , if obvious , conclusion 2 +99963 5245 to a terrifying , if obvious , conclusion 2 +99964 5245 a terrifying , if obvious , conclusion 2 +99965 5245 terrifying , if obvious , conclusion 2 +99966 5245 terrifying , if obvious , 2 +99967 5245 , if obvious , 2 +99968 5245 if obvious , 2 +99969 5246 A terrific insider look at the star-making machinery of tinseltown . 3 +99970 5246 A terrific insider 2 +99971 5246 terrific insider 3 +99972 5246 insider 2 +99973 5246 look at the star-making machinery of tinseltown . 3 +99974 5246 look at the star-making machinery of tinseltown 2 +99975 5246 at the star-making machinery of tinseltown 2 +99976 5246 the star-making machinery of tinseltown 3 +99977 5246 the star-making machinery 3 +99978 5246 star-making machinery 2 +99979 5246 star-making 3 +99980 5246 machinery 2 +99981 5246 of tinseltown 2 +99982 5247 The complex , politically charged tapestry of contemporary Chinese life this exciting new filmmaker has brought to the screen is like nothing we Westerners have seen before . 3 +99983 5247 The complex , politically charged tapestry of contemporary Chinese life this exciting new filmmaker has brought to the screen 3 +99984 5247 The complex , politically charged tapestry 3 +99985 5247 complex , politically charged tapestry 3 +99986 5247 , politically charged tapestry 3 +99987 5247 politically charged tapestry 2 +99988 5247 politically charged 3 +99989 5247 tapestry 2 +99990 5247 of contemporary Chinese life this exciting new filmmaker has brought to the screen 3 +99991 5247 contemporary Chinese life this exciting new filmmaker has brought to the screen 4 +99992 5247 this exciting new filmmaker has brought to the screen 3 +99993 5247 this exciting new filmmaker 4 +99994 5247 exciting new filmmaker 4 +99995 5247 new filmmaker 2 +99996 5247 has brought to the screen 2 +99997 5247 brought to the screen 2 +99998 5247 is like nothing we Westerners have seen before . 3 +99999 5247 is like nothing we Westerners have seen before 2 +100000 5247 like nothing we Westerners have seen before 4 +100001 5247 nothing we Westerners have seen before 2 +100002 5247 we Westerners have seen before 2 +100003 5247 we Westerners 2 +100004 5247 Westerners 2 +100005 5247 have seen before 2 +100006 5248 Has enough gun battles and throwaway humor to cover up the yawning chasm where the plot should be . 1 +100007 5248 Has enough gun battles and throwaway humor to cover up the yawning chasm where the plot should be 1 +100008 5248 Has enough gun battles and throwaway 2 +100009 5248 enough gun battles and throwaway 2 +100010 5248 enough gun battles and 1 +100011 5248 enough gun battles 2 +100012 5248 gun battles 2 +100013 5248 battles 2 +100014 5248 throwaway 1 +100015 5248 humor to cover up the yawning chasm where the plot should be 1 +100016 5248 to cover up the yawning chasm where the plot should be 1 +100017 5248 cover up the yawning chasm where the plot should be 2 +100018 5248 the yawning chasm where the plot should be 0 +100019 5248 the yawning chasm 2 +100020 5248 yawning chasm 2 +100021 5248 chasm 2 +100022 5248 where the plot should be 2 +100023 5248 the plot should be 2 +100024 5249 Filled with honest performances and exceptional detail , Baran is a gentle film with dramatic punch , a haunting ode to humanity . 4 +100025 5249 Filled with honest performances and exceptional detail 4 +100026 5249 with honest performances and exceptional detail 3 +100027 5249 honest performances and exceptional detail 3 +100028 5249 honest performances and 3 +100029 5249 honest performances 4 +100030 5249 exceptional detail 4 +100031 5249 , Baran is a gentle film with dramatic punch , a haunting ode to humanity . 2 +100032 5249 Baran is a gentle film with dramatic punch , a haunting ode to humanity . 3 +100033 5249 is a gentle film with dramatic punch , a haunting ode to humanity . 4 +100034 5249 is a gentle film with dramatic punch , a haunting ode to humanity 3 +100035 5249 a gentle film with dramatic punch , a haunting ode to humanity 4 +100036 5249 a gentle film 3 +100037 5249 gentle film 3 +100038 5249 with dramatic punch , a haunting ode to humanity 4 +100039 5249 dramatic punch , a haunting ode to humanity 2 +100040 5249 dramatic punch , 2 +100041 5249 dramatic punch 3 +100042 5249 a haunting ode to humanity 3 +100043 5249 a haunting ode 2 +100044 5249 haunting ode 2 +100045 5249 to humanity 2 +100046 5250 Though Nijinsky 's words grow increasingly disturbed , the film maintains a beguiling serenity and poise that make it accessible for a non-narrative feature . 3 +100047 5250 Though Nijinsky 's words grow increasingly disturbed 2 +100048 5250 Nijinsky 's words grow increasingly disturbed 2 +100049 5250 Nijinsky 's words 2 +100050 5250 grow increasingly disturbed 1 +100051 5250 increasingly disturbed 1 +100052 5250 disturbed 2 +100053 5250 , the film maintains a beguiling serenity and poise that make it accessible for a non-narrative feature . 4 +100054 5250 the film maintains a beguiling serenity and poise that make it accessible for a non-narrative feature . 3 +100055 5250 maintains a beguiling serenity and poise that make it accessible for a non-narrative feature . 2 +100056 5250 maintains a beguiling serenity and poise that make it accessible for a non-narrative feature 3 +100057 5250 a beguiling serenity and poise that make it accessible for a non-narrative feature 2 +100058 5250 a beguiling serenity and poise 2 +100059 5250 beguiling serenity and poise 3 +100060 5250 beguiling 3 +100061 5250 serenity and poise 3 +100062 5250 poise 3 +100063 5250 that make it accessible for a non-narrative feature 2 +100064 5250 make it accessible for a non-narrative feature 2 +100065 5250 it accessible for a non-narrative feature 2 +100066 5250 accessible for a non-narrative feature 2 +100067 5250 for a non-narrative feature 2 +100068 5250 a non-narrative feature 2 +100069 5250 non-narrative feature 2 +100070 5250 non-narrative 2 +100071 5251 The entire movie is so formulaic and forgettable that it 's hardly over before it begins to fade from memory . 0 +100072 5251 is so formulaic and forgettable that it 's hardly over before it begins to fade from memory . 0 +100073 5251 is so formulaic and forgettable that it 's hardly over before it begins to fade from memory 0 +100074 5251 so formulaic and forgettable that it 's hardly over before it begins to fade from memory 0 +100075 5251 formulaic and forgettable that it 's hardly over before it begins to fade from memory 1 +100076 5251 formulaic and forgettable 0 +100077 5251 that it 's hardly over before it begins to fade from memory 1 +100078 5251 it 's hardly over before it begins to fade from memory 0 +100079 5251 's hardly over before it begins to fade from memory 0 +100080 5251 's hardly over 2 +100081 5251 hardly over 2 +100082 5251 before it begins to fade from memory 1 +100083 5251 it begins to fade from memory 1 +100084 5251 begins to fade from memory 1 +100085 5251 to fade from memory 2 +100086 5251 fade from memory 1 +100087 5251 from memory 2 +100088 5252 Yet another movie which presumes that high school social groups are at war , let alone conscious of each other 's existence . 2 +100089 5252 another movie which presumes that high school social groups are at war , let alone conscious of each other 's existence . 1 +100090 5252 another movie which presumes that high school social groups are at war 2 +100091 5252 which presumes that high school social groups are at war 2 +100092 5252 presumes that high school social groups are at war 2 +100093 5252 presumes 3 +100094 5252 that high school social groups are at war 2 +100095 5252 high school social groups are at war 2 +100096 5252 high school social groups 2 +100097 5252 school social groups 2 +100098 5252 social groups 2 +100099 5252 are at war 2 +100100 5252 at war 2 +100101 5252 , let alone conscious of each other 's existence . 1 +100102 5252 let alone conscious of each other 's existence . 2 +100103 5252 let alone conscious of each other 's existence 2 +100104 5252 alone conscious of each other 's existence 3 +100105 5252 alone conscious 2 +100106 5252 of each other 's existence 2 +100107 5252 each other 's existence 2 +100108 5252 each other 's 2 +100109 5252 other 's 2 +100110 5253 A dim-witted and lazy spin-off of the Animal Planet documentary series , Crocodile Hunter is entertainment opportunism at its most glaring . 0 +100111 5253 A dim-witted and lazy spin-off of the Animal Planet documentary series , Crocodile Hunter 0 +100112 5253 A dim-witted and lazy spin-off 0 +100113 5253 dim-witted and lazy spin-off 0 +100114 5253 dim-witted and lazy 1 +100115 5253 dim-witted and 1 +100116 5253 spin-off 2 +100117 5253 of the Animal Planet documentary series , Crocodile Hunter 2 +100118 5253 the Animal Planet documentary series , Crocodile Hunter 2 +100119 5253 the Animal Planet documentary series , 2 +100120 5253 the Animal Planet documentary series 2 +100121 5253 Animal Planet documentary series 2 +100122 5253 Planet documentary series 2 +100123 5253 documentary series 2 +100124 5253 is entertainment opportunism at its most glaring . 0 +100125 5253 is entertainment opportunism at its most glaring 3 +100126 5253 entertainment opportunism at its most glaring 1 +100127 5253 entertainment opportunism 2 +100128 5253 opportunism 2 +100129 5253 at its most glaring 2 +100130 5253 its most glaring 1 +100131 5253 most glaring 2 +100132 5254 In the not-too-distant future , movies like Ghost Ship will be used as analgesic balm for overstimulated minds . 1 +100133 5254 In the not-too-distant future 2 +100134 5254 the not-too-distant future 2 +100135 5254 not-too-distant future 2 +100136 5254 not-too-distant 2 +100137 5254 , movies like Ghost Ship will be used as analgesic balm for overstimulated minds . 1 +100138 5254 movies like Ghost Ship will be used as analgesic balm for overstimulated minds . 2 +100139 5254 movies like Ghost Ship 2 +100140 5254 like Ghost Ship 2 +100141 5254 will be used as analgesic balm for overstimulated minds . 2 +100142 5254 will be used as analgesic balm for overstimulated minds 2 +100143 5254 be used as analgesic balm for overstimulated minds 3 +100144 5254 used as analgesic balm for overstimulated minds 2 +100145 5254 as analgesic balm for overstimulated minds 2 +100146 5254 analgesic balm for overstimulated minds 2 +100147 5254 analgesic balm 2 +100148 5254 analgesic 2 +100149 5254 for overstimulated minds 1 +100150 5254 overstimulated minds 1 +100151 5254 overstimulated 1 +100152 5255 It 's truly awful and heartbreaking subject matter , but one whose lessons are well worth revisiting as many times as possible . 3 +100153 5255 's truly awful and heartbreaking subject matter , but one whose lessons are well worth revisiting as many times as possible . 3 +100154 5255 's truly awful and heartbreaking subject matter , but one whose lessons are well worth revisiting as many times as possible 4 +100155 5255 truly awful and heartbreaking subject matter , but one whose lessons are well worth revisiting as many times as possible 2 +100156 5255 truly awful and 1 +100157 5255 truly awful 0 +100158 5255 heartbreaking subject matter , but one whose lessons are well worth revisiting as many times as possible 3 +100159 5255 heartbreaking subject 2 +100160 5255 matter , but one whose lessons are well worth revisiting as many times as possible 3 +100161 5255 , but one whose lessons are well worth revisiting as many times as possible 3 +100162 5255 one whose lessons are well worth revisiting as many times as possible 4 +100163 5255 one whose lessons 2 +100164 5255 whose lessons 2 +100165 5255 are well worth revisiting as many times as possible 4 +100166 5255 well worth revisiting as many times as possible 4 +100167 5255 well worth revisiting as many times 4 +100168 5255 well worth revisiting 4 +100169 5255 worth revisiting 3 +100170 5255 revisiting 2 +100171 5255 as many times 2 +100172 5256 A fascinating , bombshell documentary that should shame Americans , regardless of whether or not ultimate blame finally lies with Kissinger . 4 +100173 5256 A fascinating , bombshell documentary that should shame Americans , regardless of whether or not ultimate blame 4 +100174 5256 A fascinating , bombshell documentary 4 +100175 5256 fascinating , bombshell documentary 4 +100176 5256 , bombshell documentary 2 +100177 5256 bombshell documentary 3 +100178 5256 bombshell 3 +100179 5256 that should shame Americans , regardless of whether or not ultimate blame 1 +100180 5256 should shame Americans , regardless of whether or not ultimate blame 1 +100181 5256 shame Americans , regardless of whether or not ultimate blame 2 +100182 5256 shame Americans , 1 +100183 5256 shame Americans 1 +100184 5256 regardless of whether or not ultimate blame 2 +100185 5256 regardless of 2 +100186 5256 whether or not ultimate blame 2 +100187 5256 or not ultimate blame 2 +100188 5256 not ultimate blame 2 +100189 5256 ultimate blame 1 +100190 5256 finally lies with Kissinger . 2 +100191 5256 lies with Kissinger . 2 +100192 5256 lies with Kissinger 2 +100193 5257 And the reason for that is a self-aware , often self-mocking , intelligence . 3 +100194 5257 the reason for that is a self-aware , often self-mocking , intelligence . 3 +100195 5257 the reason for that 2 +100196 5257 the reason 2 +100197 5257 is a self-aware , often self-mocking , intelligence . 3 +100198 5257 is a self-aware , often self-mocking , intelligence 3 +100199 5257 a self-aware , often self-mocking , intelligence 4 +100200 5257 self-aware , often self-mocking , intelligence 3 +100201 5257 self-aware , often self-mocking , 3 +100202 5257 self-aware 2 +100203 5257 , often self-mocking , 2 +100204 5257 often self-mocking , 2 +100205 5257 self-mocking , 1 +100206 5257 self-mocking 2 +100207 5258 For those who are intrigued by politics of the '70s , the film is every bit as fascinating as it is flawed . 3 +100208 5258 For those who are intrigued by politics of the '70s 2 +100209 5258 those who are intrigued by politics of the '70s 2 +100210 5258 who are intrigued by politics of the '70s 2 +100211 5258 are intrigued by politics of the '70s 2 +100212 5258 intrigued by politics of the '70s 2 +100213 5258 intrigued 3 +100214 5258 by politics of the '70s 2 +100215 5258 politics of the '70s 2 +100216 5258 of the '70s 2 +100217 5258 the '70s 2 +100218 5258 , the film is every bit as fascinating as it is flawed . 2 +100219 5258 the film is every bit as fascinating as it is flawed . 3 +100220 5258 is every bit as fascinating as it is flawed . 3 +100221 5258 is every bit as fascinating as it is flawed 2 +100222 5258 is every bit as fascinating 4 +100223 5258 every bit as fascinating 3 +100224 5258 as fascinating 3 +100225 5258 as it is flawed 1 +100226 5258 it is flawed 1 +100227 5258 is flawed 0 +100228 5259 Could I have been more geeked when I heard that Apollo 13 was going to be released in IMAX format ? 4 +100229 5259 Could I have been more geeked when I heard that Apollo 13 was going to be released in IMAX format 4 +100230 5259 Could I 2 +100231 5259 have been more geeked when I heard that Apollo 13 was going to be released in IMAX format 2 +100232 5259 been more geeked when I heard that Apollo 13 was going to be released in IMAX format 4 +100233 5259 more geeked when I heard that Apollo 13 was going to be released in IMAX format 2 +100234 5259 more geeked 2 +100235 5259 geeked 2 +100236 5259 when I heard that Apollo 13 was going to be released in IMAX format 2 +100237 5259 I heard that Apollo 13 was going to be released in IMAX format 3 +100238 5259 heard that Apollo 13 was going to be released in IMAX format 2 +100239 5259 that Apollo 13 was going to be released in IMAX format 2 +100240 5259 Apollo 13 was going to be released in IMAX format 2 +100241 5259 was going to be released in IMAX format 2 +100242 5259 going to be released in IMAX format 2 +100243 5259 to be released in IMAX format 3 +100244 5259 be released in IMAX format 2 +100245 5259 released in IMAX format 3 +100246 5259 in IMAX format 2 +100247 5260 If the film fails to fulfill its own ambitious goals , it nonetheless sustains interest during the long build-up of expository material . 3 +100248 5260 If the film fails to fulfill its own ambitious goals 1 +100249 5260 the film fails to fulfill its own ambitious goals 0 +100250 5260 fails to fulfill its own ambitious goals 0 +100251 5260 to fulfill its own ambitious goals 3 +100252 5260 fulfill its own ambitious goals 3 +100253 5260 its own ambitious goals 2 +100254 5260 own ambitious goals 3 +100255 5260 ambitious goals 2 +100256 5260 , it nonetheless sustains interest during the long build-up of expository material . 2 +100257 5260 it nonetheless sustains interest during the long build-up of expository material . 3 +100258 5260 nonetheless sustains interest during the long build-up of expository material . 2 +100259 5260 sustains interest during the long build-up of expository material . 3 +100260 5260 sustains interest during the long build-up of expository material 3 +100261 5260 sustains interest 3 +100262 5260 during the long build-up of expository material 1 +100263 5260 the long build-up of expository material 2 +100264 5260 the long build-up 2 +100265 5260 long build-up 2 +100266 5260 of expository material 3 +100267 5260 expository material 2 +100268 5260 expository 2 +100269 5261 ... a confusing drudgery . 1 +100270 5261 a confusing drudgery . 0 +100271 5261 a confusing 2 +100272 5261 drudgery . 1 +100273 5261 drudgery 1 +100274 5262 It is as uncompromising as it is nonjudgmental , and makes clear that a prostitute can be as lonely and needy as any of the clients . 3 +100275 5262 is as uncompromising as it is nonjudgmental , and makes clear that a prostitute can be as lonely and needy as any of the clients . 2 +100276 5262 is as uncompromising as it is nonjudgmental , and makes clear that a prostitute can be as lonely and needy as any of the clients 3 +100277 5262 is as uncompromising 2 +100278 5262 as uncompromising 2 +100279 5262 as it is nonjudgmental , and makes clear that a prostitute can be as lonely and needy as any of the clients 2 +100280 5262 it is nonjudgmental , and makes clear that a prostitute can be as lonely and needy as any of the clients 3 +100281 5262 is nonjudgmental , and makes clear that a prostitute can be as lonely and needy as any of the clients 3 +100282 5262 is nonjudgmental , and 3 +100283 5262 is nonjudgmental , 2 +100284 5262 is nonjudgmental 2 +100285 5262 makes clear that a prostitute can be as lonely and needy as any of the clients 2 +100286 5262 clear that a prostitute can be as lonely and needy as any of the clients 2 +100287 5262 that a prostitute can be as lonely and needy as any of the clients 1 +100288 5262 a prostitute can be as lonely and needy as any of the clients 2 +100289 5262 a prostitute 1 +100290 5262 prostitute 2 +100291 5262 can be as lonely and needy as any of the clients 2 +100292 5262 be as lonely and needy as any of the clients 2 +100293 5262 be as lonely and needy 1 +100294 5262 as lonely and needy 2 +100295 5262 lonely and needy 1 +100296 5262 lonely and 2 +100297 5262 as any of the clients 2 +100298 5262 any of the clients 2 +100299 5262 of the clients 3 +100300 5262 the clients 2 +100301 5262 clients 3 +100302 5263 Until -LRB- the -RRB- superfluous ... epilogue that leaks suspension of disbelief like a sieve , Die Another Day is as stimulating & heart-rate-raising as any James Bond thriller . 2 +100303 5263 Until -LRB- the -RRB- superfluous 2 +100304 5263 -LRB- the -RRB- superfluous 1 +100305 5263 -LRB- the -RRB- 2 +100306 5263 the -RRB- 2 +100307 5263 ... epilogue that leaks suspension of disbelief like a sieve , Die Another Day is as stimulating & heart-rate-raising as any James Bond thriller . 1 +100308 5263 epilogue that leaks suspension of disbelief like a sieve , Die Another Day is as stimulating & heart-rate-raising as any James Bond thriller . 3 +100309 5263 epilogue that leaks suspension of disbelief like a sieve , Die Another Day is as stimulating & heart-rate-raising as any James Bond thriller 4 +100310 5263 epilogue that leaks suspension of disbelief like a sieve , 1 +100311 5263 epilogue that leaks suspension of disbelief like a sieve 0 +100312 5263 epilogue that leaks suspension of disbelief 1 +100313 5263 epilogue 2 +100314 5263 that leaks suspension of disbelief 2 +100315 5263 that leaks suspension 3 +100316 5263 leaks suspension 2 +100317 5263 suspension 2 +100318 5263 of disbelief 2 +100319 5263 like a sieve 2 +100320 5263 a sieve 2 +100321 5263 sieve 2 +100322 5263 Die Another Day is as stimulating & heart-rate-raising as any James Bond thriller 3 +100323 5263 Another Day is as stimulating & heart-rate-raising as any James Bond thriller 4 +100324 5263 is as stimulating & heart-rate-raising as any James Bond thriller 4 +100325 5263 as stimulating & heart-rate-raising as any James Bond thriller 4 +100326 5263 stimulating & heart-rate-raising as any James Bond thriller 3 +100327 5263 stimulating & heart-rate-raising 3 +100328 5263 & heart-rate-raising 3 +100329 5263 heart-rate-raising 3 +100330 5263 as any James Bond thriller 3 +100331 5263 any James Bond thriller 2 +100332 5263 James Bond thriller 3 +100333 5263 Bond thriller 3 +100334 5264 Ensemble movies , like soap operas , depend on empathy . 2 +100335 5264 Ensemble movies , like soap operas , 2 +100336 5264 Ensemble movies , like soap operas 2 +100337 5264 Ensemble movies , 2 +100338 5264 Ensemble movies 2 +100339 5264 like soap operas 2 +100340 5264 soap operas 2 +100341 5264 operas 2 +100342 5264 depend on empathy . 1 +100343 5264 depend on empathy 2 +100344 5264 on empathy 2 +100345 5265 Mostly honest , this somber picture reveals itself slowly , intelligently , artfully . 4 +100346 5265 Mostly honest 3 +100347 5265 , this somber picture reveals itself slowly , intelligently , artfully . 3 +100348 5265 this somber picture reveals itself slowly , intelligently , artfully . 4 +100349 5265 this somber picture 2 +100350 5265 somber picture 2 +100351 5265 reveals itself slowly , intelligently , artfully . 4 +100352 5265 reveals itself slowly , intelligently , artfully 4 +100353 5265 reveals itself slowly , intelligently , 3 +100354 5265 reveals itself slowly , intelligently 4 +100355 5265 reveals itself slowly , 3 +100356 5265 reveals itself slowly 2 +100357 5266 I could n't recommend this film more . 3 +100358 5266 could n't recommend this film more . 4 +100359 5266 could n't recommend this film more 4 +100360 5266 recommend this film more 3 +100361 5266 recommend this film 3 +100362 5267 The problems and characters it reveals are universal and involving , and the film itself -- as well its delightful cast -- is so breezy , pretty and gifted , it really won my heart . 4 +100363 5267 The problems and characters it reveals are universal and involving , and the film itself -- as well its delightful cast -- is so breezy , pretty and gifted , it really won my heart 4 +100364 5267 The problems and characters it reveals are universal and involving , and 3 +100365 5267 The problems and characters it reveals are universal and involving , 2 +100366 5267 The problems and characters it reveals are universal and involving 3 +100367 5267 The problems and characters it reveals 1 +100368 5267 The problems and characters 2 +100369 5267 problems and characters 2 +100370 5267 problems and 1 +100371 5267 it reveals 4 +100372 5267 are universal and involving 3 +100373 5267 universal and involving 3 +100374 5267 universal and 2 +100375 5267 the film itself -- as well its delightful cast -- is so breezy , pretty and gifted , it really won my heart 3 +100376 5267 the film itself -- as well its delightful cast -- is so breezy 3 +100377 5267 itself -- as well its delightful cast -- is so breezy 3 +100378 5267 itself -- as well its delightful cast -- 4 +100379 5267 -- as well its delightful cast -- 3 +100380 5267 as well its delightful cast -- 3 +100381 5267 as well its delightful cast 3 +100382 5267 its delightful cast 4 +100383 5267 delightful cast 4 +100384 5267 is so breezy 2 +100385 5267 so breezy 2 +100386 5267 , pretty and gifted , it really won my heart 4 +100387 5267 pretty and gifted , it really won my heart 4 +100388 5267 pretty and gifted 4 +100389 5267 pretty and 2 +100390 5267 , it really won my heart 4 +100391 5267 it really won my heart 4 +100392 5267 really won my heart 4 +100393 5267 won my heart 3 +100394 5268 Nair 's cast is so large it 's Altman-esque , but she deftly spins the multiple stories in a vibrant and intoxicating fashion . 4 +100395 5268 Nair 's cast is so large it 's Altman-esque , but she deftly spins the multiple stories in a vibrant and intoxicating fashion 3 +100396 5268 Nair 's cast is so large it 's Altman-esque , but 2 +100397 5268 Nair 's cast is so large it 's Altman-esque , 2 +100398 5268 Nair 's cast is so large it 's Altman-esque 3 +100399 5268 Nair 's cast 2 +100400 5268 Nair 's 2 +100401 5268 is so large it 's Altman-esque 2 +100402 5268 so large it 's Altman-esque 2 +100403 5268 large it 's Altman-esque 2 +100404 5268 it 's Altman-esque 2 +100405 5268 's Altman-esque 2 +100406 5268 Altman-esque 2 +100407 5268 she deftly spins the multiple stories in a vibrant and intoxicating fashion 4 +100408 5268 deftly spins the multiple stories in a vibrant and intoxicating fashion 4 +100409 5268 spins the multiple stories in a vibrant and intoxicating fashion 4 +100410 5268 the multiple stories in a vibrant and intoxicating fashion 3 +100411 5268 the multiple stories 2 +100412 5268 multiple stories 2 +100413 5268 in a vibrant and intoxicating fashion 3 +100414 5268 a vibrant and intoxicating fashion 4 +100415 5268 vibrant and intoxicating fashion 3 +100416 5268 vibrant and intoxicating 4 +100417 5268 vibrant and 3 +100418 5269 Touches smartly and wistfully on a number of themes , not least the notion that the marginal members of society ... might benefit from a helping hand and a friendly kick in the pants . 3 +100419 5269 Touches smartly and wistfully on a number of themes , not least the notion that the marginal members of society ... 2 +100420 5269 Touches smartly and wistfully 3 +100421 5269 smartly and wistfully 3 +100422 5269 smartly and 3 +100423 5269 wistfully 2 +100424 5269 on a number of themes , not least the notion that the marginal members of society ... 3 +100425 5269 a number of themes , not least the notion that the marginal members of society ... 2 +100426 5269 a number of themes , not least the notion that the marginal members of society 2 +100427 5269 a number of themes , 2 +100428 5269 a number of themes 2 +100429 5269 of themes 2 +100430 5269 not least the notion that the marginal members of society 2 +100431 5269 not least the notion 2 +100432 5269 not least 2 +100433 5269 that the marginal members of society 2 +100434 5269 the marginal members of society 2 +100435 5269 the marginal members 2 +100436 5269 marginal members 2 +100437 5269 might benefit from a helping hand and a friendly kick in the pants . 2 +100438 5269 might benefit from a helping hand and a friendly kick in the pants 1 +100439 5269 benefit from a helping hand and a friendly kick in the pants 2 +100440 5269 from a helping hand and a friendly kick in the pants 2 +100441 5269 a helping hand and a friendly kick in the pants 2 +100442 5269 a helping hand and 2 +100443 5269 a helping hand 3 +100444 5269 helping hand 2 +100445 5269 helping 2 +100446 5269 a friendly kick in the pants 2 +100447 5269 a friendly kick 2 +100448 5269 friendly kick 3 +100449 5269 in the pants 3 +100450 5270 The artwork is spectacular and unlike most animaton from Japan , the characters move with grace and panache . 4 +100451 5270 The artwork is spectacular and unlike most animaton from Japan , the characters move with grace and panache 4 +100452 5270 The artwork is spectacular and 3 +100453 5270 The artwork is spectacular 3 +100454 5270 The artwork 3 +100455 5270 artwork 3 +100456 5270 is spectacular 4 +100457 5270 unlike most animaton from Japan , the characters move with grace and panache 3 +100458 5270 unlike most animaton from Japan 2 +100459 5270 most animaton from Japan 2 +100460 5270 animaton from Japan 2 +100461 5270 animaton 2 +100462 5270 from Japan 3 +100463 5270 , the characters move with grace and panache 4 +100464 5270 the characters move with grace and panache 3 +100465 5270 move with grace and panache 3 +100466 5270 with grace and panache 3 +100467 5270 grace and panache 3 +100468 5271 It strikes hardest ... when it reminds you how pertinent its dynamics remain . 3 +100469 5271 strikes hardest ... when it reminds you how pertinent its dynamics remain . 2 +100470 5271 strikes hardest ... when it reminds you how pertinent its dynamics remain 3 +100471 5271 strikes hardest ... 2 +100472 5271 strikes hardest 3 +100473 5271 hardest 3 +100474 5271 when it reminds you how pertinent its dynamics remain 3 +100475 5271 it reminds you how pertinent its dynamics remain 3 +100476 5271 reminds you how pertinent its dynamics remain 3 +100477 5271 how pertinent its dynamics remain 3 +100478 5271 how pertinent 2 +100479 5271 its dynamics remain 2 +100480 5271 its dynamics 2 +100481 5272 Mr. Wollter and Ms. Seldhal give strong and convincing performances , but neither reaches into the deepest recesses of the character to unearth the quaking essence of passion , grief and fear . 1 +100482 5272 Mr. Wollter and Ms. Seldhal give strong and convincing performances , but neither reaches into the deepest recesses of the character to unearth the quaking essence of passion , grief and fear 3 +100483 5272 Mr. Wollter and Ms. Seldhal give strong and convincing performances , but 3 +100484 5272 Mr. Wollter and Ms. Seldhal give strong and convincing performances , 3 +100485 5272 Mr. Wollter and Ms. Seldhal give strong and convincing performances 4 +100486 5272 Mr. Wollter and Ms. Seldhal 2 +100487 5272 Wollter and Ms. Seldhal 2 +100488 5272 and Ms. Seldhal 2 +100489 5272 Ms. Seldhal 2 +100490 5272 Seldhal 2 +100491 5272 give strong and convincing performances 4 +100492 5272 strong and convincing performances 4 +100493 5272 strong and convincing 3 +100494 5272 neither reaches into the deepest recesses of the character to unearth the quaking essence of passion , grief and fear 1 +100495 5272 reaches into the deepest recesses of the character to unearth the quaking essence of passion , grief and fear 2 +100496 5272 into the deepest recesses of the character to unearth the quaking essence of passion , grief and fear 3 +100497 5272 the deepest recesses of the character to unearth the quaking essence of passion , grief and fear 2 +100498 5272 the deepest recesses 2 +100499 5272 deepest recesses 1 +100500 5272 recesses 2 +100501 5272 of the character to unearth the quaking essence of passion , grief and fear 2 +100502 5272 the character to unearth the quaking essence of passion , grief and fear 3 +100503 5272 character to unearth the quaking essence of passion , grief and fear 2 +100504 5272 to unearth the quaking essence of passion , grief and fear 2 +100505 5272 unearth the quaking essence of passion , grief and fear 3 +100506 5272 unearth 2 +100507 5272 the quaking essence of passion , grief and fear 3 +100508 5272 the quaking essence 2 +100509 5272 quaking essence 2 +100510 5272 quaking 2 +100511 5272 of passion , grief and fear 3 +100512 5272 passion , grief and fear 1 +100513 5272 , grief and fear 2 +100514 5272 grief and fear 2 +100515 5273 Marinated 2 +100516 5273 and mawkish dialogue 1 +100517 5273 mawkish dialogue 1 +100518 5274 A film about female friendship that men can embrace and women will talk about for hours . 4 +100519 5274 A film about female friendship that men can embrace and women 4 +100520 5274 about female friendship that men can embrace and women 3 +100521 5274 female friendship that men can embrace and women 2 +100522 5274 female friendship that men can embrace and 3 +100523 5274 female friendship that men can embrace 3 +100524 5274 that men can embrace 2 +100525 5274 men can embrace 2 +100526 5274 can embrace 2 +100527 5274 will talk about for hours . 3 +100528 5274 will talk about for hours 3 +100529 5274 talk about for hours 3 +100530 5274 talk about 2 +100531 5274 for hours 2 +100532 5275 Hollywood Ending just is n't very funny . 1 +100533 5275 just is n't very funny . 1 +100534 5275 is n't very funny . 1 +100535 5276 The film may not hit as hard as some of the better drug-related pictures , but it still manages to get a few punches in . 2 +100536 5276 The film may not hit as hard as some of the better drug-related pictures , but it still manages to get a few punches in 3 +100537 5276 The film may not hit as hard as some of the better drug-related pictures , but 1 +100538 5276 The film may not hit as hard as some of the better drug-related pictures , 1 +100539 5276 The film may not hit as hard as some of the better drug-related pictures 1 +100540 5276 may not hit as hard as some of the better drug-related pictures 2 +100541 5276 hit as hard as some of the better drug-related pictures 2 +100542 5276 hit as hard 2 +100543 5276 as some of the better drug-related pictures 3 +100544 5276 some of the better drug-related pictures 3 +100545 5276 of the better drug-related pictures 3 +100546 5276 the better drug-related pictures 2 +100547 5276 better drug-related pictures 2 +100548 5276 drug-related pictures 2 +100549 5276 drug-related 2 +100550 5276 it still manages to get a few punches in 3 +100551 5276 still manages to get a few punches in 3 +100552 5276 manages to get a few punches in 2 +100553 5276 to get a few punches in 2 +100554 5276 get a few punches in 2 +100555 5276 get a few punches 2 +100556 5276 a few punches 3 +100557 5276 few punches 2 +100558 5277 Before it collapses into exactly the kind of buddy cop comedy it set out to lampoon , anyway . 1 +100559 5277 Before it collapses into exactly the kind of buddy cop comedy 1 +100560 5277 it collapses into exactly the kind of buddy cop comedy 0 +100561 5277 collapses into exactly the kind of buddy cop comedy 0 +100562 5277 into exactly the kind of buddy cop comedy 2 +100563 5277 exactly the kind of buddy cop comedy 2 +100564 5277 exactly the kind 2 +100565 5277 of buddy cop comedy 2 +100566 5277 buddy cop comedy 3 +100567 5277 cop comedy 2 +100568 5277 it set out to lampoon , anyway . 2 +100569 5277 set out to lampoon , anyway . 1 +100570 5277 set out to lampoon , anyway 3 +100571 5277 set out to lampoon , 2 +100572 5277 set out to lampoon 2 +100573 5277 to lampoon 2 +100574 5278 Unlike lots of Hollywood fluff , this has layered , well-developed characters and some surprises . 3 +100575 5278 Unlike lots of Hollywood fluff 3 +100576 5278 lots of Hollywood fluff 1 +100577 5278 of Hollywood fluff 0 +100578 5278 , this has layered , well-developed characters and some surprises . 4 +100579 5278 this has layered , well-developed characters and some surprises . 4 +100580 5278 has layered , well-developed characters and some surprises . 3 +100581 5278 has layered , well-developed characters and some surprises 3 +100582 5278 layered , well-developed characters and some surprises 3 +100583 5278 layered , well-developed characters and 4 +100584 5278 layered , well-developed characters 3 +100585 5278 , well-developed characters 3 +100586 5278 some surprises 3 +100587 5279 An unflinching look at the world 's dispossessed . 2 +100588 5279 An unflinching 2 +100589 5279 look at the world 's dispossessed . 1 +100590 5279 look at the world 's dispossessed 2 +100591 5279 at the world 's dispossessed 2 +100592 5279 the world 's dispossessed 2 +100593 5279 dispossessed 2 +100594 5280 Ultimately ... the movie is too heady for children , and too preachy for adults . 1 +100595 5280 ... the movie is too heady for children , and too preachy for adults . 0 +100596 5280 the movie is too heady for children , and too preachy for adults . 1 +100597 5280 is too heady for children , and too preachy for adults . 1 +100598 5280 is too heady for children , and too preachy for adults 1 +100599 5280 is too heady for children , and too preachy 1 +100600 5280 too heady for children , and too preachy 1 +100601 5280 too heady for children , and 2 +100602 5280 too heady for children , 2 +100603 5280 too heady for children 2 +100604 5280 heady for children 2 +100605 5280 too preachy 2 +100606 5281 But seriously , folks , it does n't work . 1 +100607 5281 seriously , folks , it does n't work . 0 +100608 5281 , folks , it does n't work . 1 +100609 5281 folks , it does n't work . 1 +100610 5281 , it does n't work . 1 +100611 5281 it does n't work . 1 +100612 5281 does n't work . 1 +100613 5282 Too damn weird to pass up , and for the blacklight crowd , way cheaper -LRB- and better -RRB- than Pink Floyd tickets . 3 +100614 5282 Too damn weird 1 +100615 5282 damn weird 1 +100616 5282 to pass up , and for the blacklight crowd , way cheaper -LRB- and better -RRB- than Pink Floyd tickets . 2 +100617 5282 to pass up , and for the blacklight crowd , way cheaper -LRB- and better -RRB- than Pink Floyd tickets 3 +100618 5282 to pass up , and 2 +100619 5282 to pass up , 2 +100620 5282 to pass up 2 +100621 5282 pass up 1 +100622 5282 for the blacklight crowd , way cheaper -LRB- and better -RRB- than Pink Floyd tickets 2 +100623 5282 for the blacklight crowd , way cheaper -LRB- and better -RRB- 3 +100624 5282 the blacklight crowd , way cheaper -LRB- and better -RRB- 3 +100625 5282 the blacklight crowd , 2 +100626 5282 the blacklight crowd 2 +100627 5282 blacklight crowd 2 +100628 5282 blacklight 2 +100629 5282 way cheaper -LRB- and better -RRB- 3 +100630 5282 cheaper -LRB- and better -RRB- 2 +100631 5282 -LRB- and better -RRB- 3 +100632 5282 -LRB- and better 3 +100633 5282 than Pink Floyd tickets 2 +100634 5282 Pink Floyd tickets 3 +100635 5282 Floyd tickets 2 +100636 5282 Floyd 2 +100637 5283 Sweetly sexy , funny and touching . 4 +100638 5283 sexy , funny and touching . 3 +100639 5283 sexy , funny and touching 4 +100640 5283 , funny and touching 4 +100641 5284 It 's got some pretentious eye-rolling moments and it did n't entirely grab me , but there 's stuff here to like . 2 +100642 5284 It 's got some pretentious eye-rolling moments and it did n't entirely grab me , but there 's stuff here to like 2 +100643 5284 It 's got some pretentious eye-rolling moments and it did n't entirely grab me , but 1 +100644 5284 It 's got some pretentious eye-rolling moments and it did n't entirely grab me , 1 +100645 5284 It 's got some pretentious eye-rolling moments and it did n't entirely grab me 1 +100646 5284 It 's got some pretentious eye-rolling moments and 1 +100647 5284 It 's got some pretentious eye-rolling moments 1 +100648 5284 's got some pretentious eye-rolling moments 1 +100649 5284 got some pretentious eye-rolling moments 1 +100650 5284 some pretentious eye-rolling moments 1 +100651 5284 pretentious eye-rolling moments 1 +100652 5284 eye-rolling moments 1 +100653 5284 eye-rolling 2 +100654 5284 it did n't entirely grab me 1 +100655 5284 did n't entirely grab me 1 +100656 5284 did n't entirely 2 +100657 5284 grab me 3 +100658 5284 there 's stuff here to like 3 +100659 5284 's stuff here to like 3 +100660 5284 's stuff here 2 +100661 5284 's stuff 3 +100662 5285 A muddy psychological thriller rife with miscalculations . 1 +100663 5285 A muddy psychological thriller rife with miscalculations 1 +100664 5285 A muddy psychological thriller 1 +100665 5285 muddy psychological thriller 1 +100666 5285 muddy psychological 1 +100667 5285 muddy 1 +100668 5285 rife with miscalculations 1 +100669 5285 with miscalculations 1 +100670 5285 miscalculations 2 +100671 5286 De Niro cries . 2 +100672 5286 cries . 2 +100673 5286 cries 2 +100674 5287 A domestic melodrama with weak dialogue and biopic cliches . 1 +100675 5287 A domestic melodrama with weak dialogue and biopic 0 +100676 5287 A domestic melodrama 3 +100677 5287 domestic melodrama 2 +100678 5287 with weak dialogue and biopic 1 +100679 5287 weak dialogue and biopic 2 +100680 5287 dialogue and biopic 2 +100681 5288 It 's a rare window on an artistic collaboration . 3 +100682 5288 's a rare window on an artistic collaboration . 3 +100683 5288 's a rare window on an artistic collaboration 3 +100684 5288 a rare window on an artistic collaboration 3 +100685 5288 a rare window 2 +100686 5288 rare window 1 +100687 5288 on an artistic collaboration 2 +100688 5288 an artistic collaboration 2 +100689 5288 artistic collaboration 2 +100690 5289 May cause you to bite your tongue to keep from laughing at the ridiculous dialog or the oh-so convenient plot twists . 0 +100691 5289 cause you to bite your tongue to keep from laughing at the ridiculous dialog or the oh-so convenient plot twists . 3 +100692 5289 cause you to bite your tongue to keep from laughing at the ridiculous dialog or the oh-so convenient plot twists 0 +100693 5289 you to bite your tongue to keep from laughing at the ridiculous dialog or the oh-so convenient plot twists 3 +100694 5289 to bite your tongue to keep from laughing at the ridiculous dialog or the oh-so convenient plot twists 2 +100695 5289 bite your tongue to keep from laughing at the ridiculous dialog or the oh-so convenient plot twists 1 +100696 5289 your tongue to keep from laughing at the ridiculous dialog or the oh-so convenient plot twists 2 +100697 5289 tongue to keep from laughing at the ridiculous dialog or the oh-so convenient plot twists 1 +100698 5289 to keep from laughing at the ridiculous dialog or the oh-so convenient plot twists 1 +100699 5289 keep from laughing at the ridiculous dialog or the oh-so convenient plot twists 1 +100700 5289 from laughing at the ridiculous dialog or the oh-so convenient plot twists 1 +100701 5289 laughing at the ridiculous dialog or the oh-so convenient plot twists 1 +100702 5289 at the ridiculous dialog or the oh-so convenient plot twists 1 +100703 5289 the ridiculous dialog or the oh-so convenient plot twists 1 +100704 5289 the ridiculous dialog or 1 +100705 5289 the ridiculous dialog 1 +100706 5289 ridiculous dialog 0 +100707 5289 dialog 2 +100708 5289 the oh-so convenient plot twists 2 +100709 5289 oh-so convenient plot twists 2 +100710 5289 oh-so 2 +100711 5289 convenient plot twists 2 +100712 5290 It 's a 100-year old mystery that is constantly being interrupted by Elizabeth Hurley in a bathing suit . 2 +100713 5290 's a 100-year old mystery that is constantly being interrupted by Elizabeth Hurley in a bathing suit . 1 +100714 5290 's a 100-year old mystery that is constantly being interrupted by Elizabeth Hurley in a bathing suit 2 +100715 5290 a 100-year old mystery that is constantly being interrupted by Elizabeth Hurley in a bathing suit 1 +100716 5290 a 100-year old mystery 2 +100717 5290 100-year old mystery 2 +100718 5290 100-year 2 +100719 5290 old mystery 2 +100720 5290 that is constantly being interrupted by Elizabeth Hurley in a bathing suit 2 +100721 5290 is constantly being interrupted by Elizabeth Hurley in a bathing suit 1 +100722 5290 is constantly 3 +100723 5290 being interrupted by Elizabeth Hurley in a bathing suit 2 +100724 5290 interrupted by Elizabeth Hurley in a bathing suit 2 +100725 5290 interrupted 1 +100726 5290 by Elizabeth Hurley in a bathing suit 2 +100727 5290 Elizabeth Hurley in a bathing suit 2 +100728 5290 Elizabeth Hurley 2 +100729 5290 Hurley 2 +100730 5290 in a bathing suit 2 +100731 5290 a bathing suit 2 +100732 5290 bathing suit 2 +100733 5290 bathing 2 +100734 5291 Peppered with witty dialogue and inventive moments . 4 +100735 5291 Peppered with witty dialogue and inventive moments 4 +100736 5291 with witty dialogue and inventive moments 4 +100737 5291 witty dialogue and inventive moments 4 +100738 5291 dialogue and inventive moments 3 +100739 5291 and inventive moments 3 +100740 5291 inventive moments 3 +100741 5292 So aggressively cheery that Pollyana would reach for a barf bag . 1 +100742 5292 So aggressively cheery 1 +100743 5292 aggressively cheery 2 +100744 5292 that Pollyana would reach for a barf bag . 0 +100745 5292 that Pollyana would reach for a barf bag 1 +100746 5292 Pollyana would reach for a barf bag 1 +100747 5292 Pollyana 2 +100748 5292 would reach for a barf bag 0 +100749 5292 reach for a barf bag 0 +100750 5292 for a barf bag 0 +100751 5293 -LRB- T -RRB- he film is never sure to make a clear point -- even if it seeks to rely on an ambiguous presentation . 1 +100752 5293 -LRB- T -RRB- he film 2 +100753 5293 he film 2 +100754 5293 is never sure to make a clear point -- even if it seeks to rely on an ambiguous presentation . 1 +100755 5293 is never sure to make a clear point -- even if it seeks to rely on an ambiguous presentation 2 +100756 5293 sure to make a clear point -- even if it seeks to rely on an ambiguous presentation 3 +100757 5293 to make a clear point -- even if it seeks to rely on an ambiguous presentation 2 +100758 5293 make a clear point -- even if it seeks to rely on an ambiguous presentation 2 +100759 5293 make a clear point -- 3 +100760 5293 make a clear point 3 +100761 5293 a clear point 4 +100762 5293 clear point 3 +100763 5293 even if it seeks to rely on an ambiguous presentation 2 +100764 5293 if it seeks to rely on an ambiguous presentation 2 +100765 5293 it seeks to rely on an ambiguous presentation 1 +100766 5293 seeks to rely on an ambiguous presentation 1 +100767 5293 to rely on an ambiguous presentation 2 +100768 5293 rely on an ambiguous presentation 1 +100769 5293 on an ambiguous presentation 2 +100770 5293 an ambiguous presentation 2 +100771 5293 ambiguous presentation 2 +100772 5294 The cinematic equivalent of patronizing a bar favored by pretentious , untalented artistes who enjoy moaning about their cruel fate . 1 +100773 5294 The cinematic equivalent of patronizing a bar 1 +100774 5294 The cinematic equivalent 3 +100775 5294 cinematic equivalent 2 +100776 5294 of patronizing a bar 2 +100777 5294 patronizing a bar 2 +100778 5294 patronizing 1 +100779 5294 a bar 2 +100780 5294 favored by pretentious , untalented artistes who enjoy moaning about their cruel fate . 1 +100781 5294 favored by pretentious , untalented artistes who enjoy moaning about their cruel fate 0 +100782 5294 by pretentious , untalented artistes who enjoy moaning about their cruel fate 0 +100783 5294 pretentious , untalented artistes who enjoy moaning about their cruel fate 1 +100784 5294 pretentious , 1 +100785 5294 untalented artistes who enjoy moaning about their cruel fate 1 +100786 5294 untalented artistes 1 +100787 5294 untalented 1 +100788 5294 artistes 3 +100789 5294 who enjoy moaning about their cruel fate 0 +100790 5294 enjoy moaning about their cruel fate 2 +100791 5294 moaning about their cruel fate 1 +100792 5294 about their cruel fate 2 +100793 5294 their cruel fate 0 +100794 5294 cruel fate 2 +100795 5295 Seems content to dog-paddle in the mediocre end of the pool , and it 's a sad , sick sight . 1 +100796 5295 Seems content to dog-paddle in the mediocre end of the pool , and it 's a sad , sick sight 0 +100797 5295 Seems content to dog-paddle in the mediocre end of the pool , and 1 +100798 5295 Seems content to dog-paddle in the mediocre end of the pool , 1 +100799 5295 Seems content to dog-paddle in the mediocre end of the pool 1 +100800 5295 content to dog-paddle in the mediocre end of the pool 1 +100801 5295 to dog-paddle in the mediocre end of the pool 1 +100802 5295 dog-paddle in the mediocre end of the pool 1 +100803 5295 dog-paddle 2 +100804 5295 in the mediocre end of the pool 2 +100805 5295 the mediocre end of the pool 1 +100806 5295 the mediocre end 0 +100807 5295 mediocre end 1 +100808 5295 of the pool 2 +100809 5295 it 's a sad , sick sight 1 +100810 5295 's a sad , sick sight 1 +100811 5295 a sad , sick sight 2 +100812 5295 sad , sick sight 1 +100813 5295 , sick sight 2 +100814 5295 sick sight 1 +100815 5296 Holland lets things peter out midway , but it 's notably better acted -- and far less crass - than some other recent efforts in the burgeoning genre of films about black urban professionals . 3 +100816 5296 Holland lets things peter out midway , but it 's notably better acted -- and far less crass - than some other recent efforts in the burgeoning genre of films about black urban professionals 2 +100817 5296 Holland lets things peter out midway , but 1 +100818 5296 Holland lets things peter out midway , 1 +100819 5296 Holland lets things peter out midway 2 +100820 5296 lets things peter out midway 1 +100821 5296 things peter out midway 2 +100822 5296 peter out midway 1 +100823 5296 out midway 2 +100824 5296 it 's notably better acted -- and far less crass - than some other recent efforts in the burgeoning genre of films about black urban professionals 4 +100825 5296 's notably better acted -- and far less crass - than some other recent efforts in the burgeoning genre of films about black urban professionals 3 +100826 5296 's notably 2 +100827 5296 better acted -- and far less crass - than some other recent efforts in the burgeoning genre of films about black urban professionals 3 +100828 5296 better acted -- and far less crass - than some other recent efforts 2 +100829 5296 acted -- and far less crass - than some other recent efforts 3 +100830 5296 acted -- and far less crass - 2 +100831 5296 -- and far less crass - 3 +100832 5296 -- and far less crass 3 +100833 5296 far less crass 3 +100834 5296 than some other recent efforts 2 +100835 5296 some other recent efforts 2 +100836 5296 other recent efforts 2 +100837 5296 recent efforts 2 +100838 5296 in the burgeoning genre of films about black urban professionals 2 +100839 5296 the burgeoning genre of films about black urban professionals 2 +100840 5296 the burgeoning genre 2 +100841 5296 burgeoning genre 2 +100842 5296 burgeoning 2 +100843 5296 of films about black urban professionals 2 +100844 5296 films about black urban professionals 2 +100845 5296 about black urban professionals 2 +100846 5296 black urban professionals 1 +100847 5296 urban professionals 2 +100848 5296 professionals 3 +100849 5297 ... little more than a well-acted television melodrama shot for the big screen . 2 +100850 5297 little more than a well-acted television melodrama shot for the big screen . 1 +100851 5297 little more than a well-acted television melodrama 1 +100852 5297 than a well-acted television melodrama 2 +100853 5297 a well-acted television melodrama 3 +100854 5297 well-acted television melodrama 3 +100855 5297 television melodrama 2 +100856 5297 shot for the big screen . 2 +100857 5297 shot for the big screen 2 +100858 5298 With elements cribbed from Lang 's Metropolis , Welles ' Kane , and Eisenstein 's Potemkin 1 +100859 5298 elements cribbed from Lang 's Metropolis , Welles ' Kane , and Eisenstein 's Potemkin 3 +100860 5298 cribbed from Lang 's Metropolis , Welles ' Kane , and Eisenstein 's Potemkin 2 +100861 5298 cribbed 1 +100862 5298 from Lang 's Metropolis , Welles ' Kane , and Eisenstein 's Potemkin 3 +100863 5298 Lang 's Metropolis , Welles ' Kane , and Eisenstein 's Potemkin 2 +100864 5298 Lang 's Metropolis , Welles ' Kane , and 2 +100865 5298 Lang 's Metropolis , Welles ' Kane , 2 +100866 5298 Lang 's Metropolis , Welles ' Kane 2 +100867 5298 Lang 's Metropolis , 2 +100868 5298 Lang 's Metropolis 2 +100869 5298 Lang 's 2 +100870 5298 Lang 2 +100871 5298 Metropolis 2 +100872 5298 Welles ' Kane 2 +100873 5298 Welles ' 2 +100874 5298 Eisenstein 's Potemkin 2 +100875 5298 Eisenstein 's 2 +100876 5298 Potemkin 2 +100877 5298 the true wonder 3 +100878 5298 true wonder 3 +100879 5298 is the number of lasting images all its own . 3 +100880 5298 is the number of lasting images all its own 2 +100881 5298 the number of lasting images all its own 3 +100882 5298 of lasting images all its own 3 +100883 5298 lasting images all its own 3 +100884 5298 lasting images 3 +100885 5298 lasting 2 +100886 5298 all its own 2 +100887 5299 Sometimes this ` Blood ' seems as tired as its protagonist ... Still , the pulse never disappears entirely , and the picture crosses the finish line winded but still game . 2 +100888 5299 Sometimes this ` Blood ' seems as tired as its protagonist ... Still , the pulse never disappears entirely , and the picture crosses the finish line winded but still game 3 +100889 5299 Sometimes this ` Blood ' seems as tired as its protagonist ... 1 +100890 5299 Sometimes this ` Blood ' seems as tired as its protagonist 1 +100891 5299 this ` Blood ' seems as tired as its protagonist 1 +100892 5299 this ` Blood ' 2 +100893 5299 ` Blood ' 2 +100894 5299 Blood ' 2 +100895 5299 seems as tired as its protagonist 1 +100896 5299 as tired as its protagonist 1 +100897 5299 tired as its protagonist 1 +100898 5299 as its protagonist 2 +100899 5299 Still , the pulse never disappears entirely , and the picture crosses the finish line winded but still game 2 +100900 5299 Still , the pulse never disappears entirely , and 3 +100901 5299 Still , the pulse never disappears entirely , 3 +100902 5299 Still , the pulse never disappears entirely 2 +100903 5299 , the pulse never disappears entirely 2 +100904 5299 the pulse never disappears entirely 2 +100905 5299 the pulse 2 +100906 5299 never disappears entirely 2 +100907 5299 disappears entirely 2 +100908 5299 disappears 2 +100909 5299 the picture crosses the finish line winded but still game 2 +100910 5299 crosses the finish line winded but still game 3 +100911 5299 the finish line winded but still game 2 +100912 5299 the finish line winded but still 2 +100913 5299 the finish line winded but 1 +100914 5299 the finish line winded 2 +100915 5299 winded 2 +100916 5300 It 's been made with an innocent yet fervid conviction that our Hollywood has all but lost . 2 +100917 5300 's been made with an innocent yet fervid conviction that our Hollywood has all but lost . 2 +100918 5300 's been made with an innocent yet fervid conviction that our Hollywood has all but lost 3 +100919 5300 been made with an innocent yet fervid conviction that our Hollywood has all but lost 2 +100920 5300 made with an innocent yet fervid conviction that our Hollywood has all but lost 2 +100921 5300 made with an innocent yet fervid conviction 2 +100922 5300 with an innocent yet fervid conviction 3 +100923 5300 an innocent yet fervid conviction 2 +100924 5300 innocent yet fervid conviction 2 +100925 5300 innocent yet fervid 3 +100926 5300 innocent yet 2 +100927 5300 fervid 3 +100928 5300 that our Hollywood has all but lost 2 +100929 5300 our Hollywood has all but lost 1 +100930 5300 our Hollywood 2 +100931 5300 has all but lost 1 +100932 5300 has all but 2 +100933 5301 Though the aboriginal aspect lends the ending an extraordinary poignancy , and the story itself could be played out in any working class community in the nation . 3 +100934 5301 Though the aboriginal aspect lends the ending an extraordinary poignancy , and the story 4 +100935 5301 the aboriginal aspect lends the ending an extraordinary poignancy , and the story 2 +100936 5301 the aboriginal aspect 2 +100937 5301 aboriginal aspect 2 +100938 5301 aboriginal 2 +100939 5301 lends the ending an extraordinary poignancy , and the story 3 +100940 5301 lends the ending 2 +100941 5301 an extraordinary poignancy , and the story 3 +100942 5301 an extraordinary poignancy , and 2 +100943 5301 an extraordinary poignancy , 4 +100944 5301 an extraordinary poignancy 4 +100945 5301 extraordinary poignancy 3 +100946 5301 itself could be played out in any working class community in the nation . 3 +100947 5301 could be played out in any working class community in the nation . 2 +100948 5301 could be played out in any working class community in the nation 2 +100949 5301 be played out in any working class community in the nation 3 +100950 5301 played out in any working class community in the nation 2 +100951 5301 played out 2 +100952 5301 in any working class community in the nation 2 +100953 5301 any working class community in the nation 2 +100954 5301 any working class community 3 +100955 5301 working class community 2 +100956 5301 class community 2 +100957 5301 in the nation 2 +100958 5302 A tour de force of modern cinema . 3 +100959 5302 A tour de force of modern cinema 3 +100960 5302 A tour de force 3 +100961 5302 of modern cinema 2 +100962 5302 modern cinema 2 +100963 5303 Murder by Numbers just does n't add up . 1 +100964 5303 just does n't add up . 1 +100965 5303 does n't add up . 1 +100966 5303 does n't add up 1 +100967 5304 ... the implication is Kissinger may have decided that -- when it comes to truncheoning -- it 's better to give than to receive . 2 +100968 5304 the implication is Kissinger may have decided that -- when it comes to truncheoning -- it 's better to give than to receive . 2 +100969 5304 the implication 2 +100970 5304 implication 2 +100971 5304 is Kissinger may have decided that -- when it comes to truncheoning -- it 's better to give than to receive . 2 +100972 5304 is Kissinger may have decided that -- when it comes to truncheoning -- it 's better to give than to receive 2 +100973 5304 Kissinger may have decided that -- when it comes to truncheoning -- it 's better to give than to receive 2 +100974 5304 may have decided that -- when it comes to truncheoning -- it 's better to give than to receive 2 +100975 5304 have decided that -- when it comes to truncheoning -- it 's better to give than to receive 2 +100976 5304 decided that -- when it comes to truncheoning -- it 's better to give than to receive 2 +100977 5304 that -- when it comes to truncheoning -- it 's better to give than to receive 2 +100978 5304 that -- when it comes to truncheoning -- 2 +100979 5304 -- when it comes to truncheoning -- 2 +100980 5304 when it comes to truncheoning -- 1 +100981 5304 when it comes to truncheoning 2 +100982 5304 it comes to truncheoning 2 +100983 5304 comes to truncheoning 2 +100984 5304 to truncheoning 2 +100985 5304 truncheoning 2 +100986 5304 it 's better to give than to receive 2 +100987 5304 's better to give than to receive 2 +100988 5304 to give than to receive 2 +100989 5304 give than to receive 2 +100990 5304 than to receive 2 +100991 5304 to receive 2 +100992 5305 Brings together some of the biggest names in Japanese anime , with impressive results . 4 +100993 5305 Brings together some of the biggest names in Japanese anime , with impressive results 3 +100994 5305 some of the biggest names in Japanese anime , with impressive results 4 +100995 5305 of the biggest names in Japanese anime , with impressive results 4 +100996 5305 the biggest names in Japanese anime , with impressive results 4 +100997 5305 the biggest names in Japanese anime , 4 +100998 5305 the biggest names in Japanese anime 4 +100999 5305 the biggest names 2 +101000 5305 biggest names 3 +101001 5305 in Japanese anime 2 +101002 5305 Japanese anime 2 +101003 5305 with impressive results 4 +101004 5305 impressive results 4 +101005 5306 It 's so tedious that it makes you forgive every fake , dishonest , entertaining and , ultimately , more perceptive moment in Bridget Jones 's Diary . 1 +101006 5306 's so tedious that it makes you forgive every fake , dishonest , entertaining and , ultimately , more perceptive moment in Bridget Jones 's Diary . 0 +101007 5306 's so tedious that it makes you forgive every fake , dishonest , entertaining and , ultimately , more perceptive moment in Bridget Jones 's Diary 0 +101008 5306 's so tedious 1 +101009 5306 so tedious 1 +101010 5306 that it makes you forgive every fake , dishonest , entertaining and , ultimately , more perceptive moment in Bridget Jones 's Diary 3 +101011 5306 it makes you forgive every fake , dishonest , entertaining and , ultimately , more perceptive moment in Bridget Jones 's Diary 1 +101012 5306 makes you forgive every fake , dishonest , entertaining and , ultimately , more perceptive moment in Bridget Jones 's Diary 2 +101013 5306 you forgive every fake , dishonest , entertaining and , ultimately , more perceptive moment in Bridget Jones 's Diary 1 +101014 5306 forgive every fake , dishonest , entertaining and , ultimately , more perceptive moment in Bridget Jones 's Diary 2 +101015 5306 every fake , dishonest , entertaining and , ultimately , more perceptive moment in Bridget Jones 's Diary 1 +101016 5306 every fake , dishonest , entertaining and , ultimately , more perceptive moment 2 +101017 5306 fake , dishonest , entertaining and , ultimately , more perceptive moment 0 +101018 5306 fake , dishonest 0 +101019 5306 , entertaining and , ultimately , more perceptive moment 4 +101020 5306 entertaining and , ultimately , more perceptive moment 3 +101021 5306 entertaining and , ultimately , more perceptive 4 +101022 5306 entertaining and , ultimately , 3 +101023 5306 more perceptive 2 +101024 5306 in Bridget Jones 's Diary 2 +101025 5306 Bridget Jones 's Diary 2 +101026 5307 Offers a persuasive look at a defeated but defiant nation in flux . 3 +101027 5307 Offers a persuasive 3 +101028 5307 a persuasive 3 +101029 5307 look at a defeated but defiant nation in flux . 2 +101030 5307 look at a defeated but defiant nation in flux 2 +101031 5307 at a defeated but defiant nation in flux 2 +101032 5307 a defeated but defiant nation in flux 2 +101033 5307 a defeated but defiant nation 2 +101034 5307 defeated but defiant nation 2 +101035 5307 defeated but defiant 2 +101036 5307 defeated but 2 +101037 5307 defiant 2 +101038 5307 in flux 2 +101039 5307 flux 2 +101040 5308 With the exception of McCoist , the players do n't have a clue on the park . 1 +101041 5308 With the exception of McCoist 2 +101042 5308 the exception of McCoist 2 +101043 5308 of McCoist 2 +101044 5308 McCoist 2 +101045 5308 , the players do n't have a clue on the park . 2 +101046 5308 the players do n't have a clue on the park . 1 +101047 5308 do n't have a clue on the park . 1 +101048 5308 do n't have a clue on the park 1 +101049 5308 have a clue on the park 2 +101050 5308 a clue on the park 2 +101051 5308 a clue 2 +101052 5308 on the park 2 +101053 5308 the park 3 +101054 5309 ` Opening up ' the play more has partly closed it down . 1 +101055 5309 Opening up ' the play more has partly closed it down . 1 +101056 5309 Opening up 3 +101057 5309 ' the play more has partly closed it down . 1 +101058 5309 the play more has partly closed it down . 2 +101059 5309 the play more 2 +101060 5309 has partly closed it down . 2 +101061 5309 has partly closed it down 2 +101062 5309 has partly 2 +101063 5309 closed it down 2 +101064 5309 closed it 2 +101065 5309 closed 3 +101066 5310 What it lacks in originality it makes up for in effective if cheap moments of fright and dread . 2 +101067 5310 What it lacks in originality 1 +101068 5310 it lacks in originality 0 +101069 5310 lacks in originality 0 +101070 5310 in originality 2 +101071 5310 it makes up for in effective if cheap moments of fright and dread . 1 +101072 5310 makes up for in effective if cheap moments of fright and dread . 2 +101073 5310 makes up for in effective if cheap moments of fright and dread 2 +101074 5310 for in effective if cheap moments of fright and dread 1 +101075 5310 in effective if cheap moments of fright and dread 3 +101076 5310 effective if cheap moments of fright and dread 2 +101077 5310 effective if cheap moments 2 +101078 5310 if cheap moments 1 +101079 5310 if cheap 1 +101080 5310 of fright and dread 1 +101081 5310 fright and dread 1 +101082 5310 fright and 2 +101083 5310 fright 1 +101084 5310 dread 0 +101085 5311 ... spellbinding fun and deliciously exploitative . 4 +101086 5311 spellbinding fun and deliciously exploitative . 4 +101087 5311 spellbinding fun and deliciously exploitative 4 +101088 5311 spellbinding fun and 3 +101089 5311 spellbinding fun 4 +101090 5311 spellbinding 4 +101091 5311 deliciously exploitative 3 +101092 5312 He fails . 1 +101093 5312 fails . 1 +101094 5313 The problem with ANTWONE FISHER is that it has a screenplay written by Antwone Fisher based on the book by Antwone Fisher . 0 +101095 5313 The problem with ANTWONE FISHER 3 +101096 5313 with ANTWONE FISHER 2 +101097 5313 is that it has a screenplay written by Antwone Fisher based on the book by Antwone Fisher . 3 +101098 5313 is that it has a screenplay written by Antwone Fisher based on the book by Antwone Fisher 2 +101099 5313 that it has a screenplay written by Antwone Fisher based on the book by Antwone Fisher 2 +101100 5313 it has a screenplay written by Antwone Fisher based on the book by Antwone Fisher 2 +101101 5313 has a screenplay written by Antwone Fisher based on the book by Antwone Fisher 2 +101102 5313 a screenplay written by Antwone Fisher based on the book by Antwone Fisher 2 +101103 5313 written by Antwone Fisher based on the book by Antwone Fisher 2 +101104 5313 by Antwone Fisher based on the book by Antwone Fisher 2 +101105 5313 Antwone Fisher based on the book by Antwone Fisher 2 +101106 5313 based on the book by Antwone Fisher 2 +101107 5313 by Antwone Fisher 2 +101108 5314 can be as tiresome as 9 seconds of Jesse Helms ' anti- Castro rhetoric , which are included 1 +101109 5314 can be as tiresome as 9 seconds of Jesse Helms ' anti- Castro 0 +101110 5314 be as tiresome as 9 seconds of Jesse Helms ' anti- Castro 1 +101111 5314 as tiresome as 9 seconds of Jesse Helms ' anti- Castro 0 +101112 5314 as tiresome as 9 seconds 0 +101113 5314 as tiresome as 9 1 +101114 5314 tiresome as 9 1 +101115 5314 as 9 2 +101116 5314 of Jesse Helms ' anti- Castro 2 +101117 5314 Jesse Helms ' anti- Castro 2 +101118 5314 Jesse Helms ' 2 +101119 5314 Helms ' 2 +101120 5314 Helms 2 +101121 5314 anti- Castro 2 +101122 5314 anti- 1 +101123 5314 rhetoric , which are included 2 +101124 5314 rhetoric , 2 +101125 5314 which are included 2 +101126 5314 are included 3 +101127 5314 included 2 +101128 5315 Bray is completely at sea ; with nothing but a Savage Garden music video on his resume , he has no clue about making a movie . 0 +101129 5315 Bray is completely at sea ; with nothing but a Savage Garden music video on his resume , he has no clue about making a movie 0 +101130 5315 Bray is completely at sea ; 2 +101131 5315 Bray is completely at sea 2 +101132 5315 Bray 2 +101133 5315 is completely at sea 3 +101134 5315 with nothing but a Savage Garden music video on his resume , he has no clue about making a movie 0 +101135 5315 with nothing but a Savage Garden music video on his resume 1 +101136 5315 nothing but a Savage Garden music video on his resume 2 +101137 5315 but a Savage Garden music video on his resume 2 +101138 5315 a Savage Garden music video on his resume 2 +101139 5315 a Savage Garden music video 2 +101140 5315 Savage Garden music video 2 +101141 5315 Garden music video 3 +101142 5315 Garden 2 +101143 5315 music video 2 +101144 5315 on his resume 2 +101145 5315 his resume 2 +101146 5315 resume 2 +101147 5315 , he has no clue about making a movie 0 +101148 5315 he has no clue about making a movie 0 +101149 5315 has no clue about making a movie 1 +101150 5315 no clue about making a movie 1 +101151 5315 no clue 1 +101152 5315 about making a movie 2 +101153 5315 making a movie 2 +101154 5316 Maybe there 's a metaphor here , but figuring it out would n't make Trouble Every Day any better . 1 +101155 5316 Maybe there 's a metaphor here , but figuring it out 2 +101156 5316 Maybe there 's a metaphor here , but 2 +101157 5316 Maybe there 's a metaphor here , 2 +101158 5316 Maybe there 's a metaphor here 2 +101159 5316 there 's a metaphor here 2 +101160 5316 's a metaphor here 2 +101161 5316 's a metaphor 2 +101162 5316 figuring it out 2 +101163 5316 figuring it 2 +101164 5316 would n't make Trouble Every Day any better . 1 +101165 5316 would n't make Trouble Every Day any better 1 +101166 5316 would n't make Trouble 2 +101167 5316 make Trouble 1 +101168 5316 Every Day any better 2 +101169 5316 any better 2 +101170 5317 With Zoe Clarke-Williams 's lackluster thriller `` New Best Friend '' , who needs enemies ? 1 +101171 5317 With Zoe Clarke-Williams 's lackluster thriller `` New Best Friend '' , who needs enemies 0 +101172 5317 Zoe Clarke-Williams 's lackluster thriller `` New Best Friend '' , who needs enemies 0 +101173 5317 Zoe Clarke-Williams 's lackluster thriller `` New Best Friend '' , 1 +101174 5317 Zoe Clarke-Williams 's lackluster thriller `` New Best Friend '' 2 +101175 5317 Zoe Clarke-Williams 's 2 +101176 5317 Zoe 2 +101177 5317 Clarke-Williams 's 3 +101178 5317 Clarke-Williams 2 +101179 5317 lackluster thriller `` New Best Friend '' 1 +101180 5317 thriller `` New Best Friend '' 3 +101181 5317 `` New Best Friend '' 3 +101182 5317 New Best Friend '' 3 +101183 5317 who needs enemies 2 +101184 5317 needs enemies 2 +101185 5317 enemies 2 +101186 5318 The film is hampered by its predictable plot and paper-thin supporting characters . 1 +101187 5318 is hampered by its predictable plot and paper-thin supporting characters . 1 +101188 5318 is hampered by its predictable plot and paper-thin supporting characters 1 +101189 5318 hampered by its predictable plot and paper-thin supporting characters 0 +101190 5318 by its predictable plot and paper-thin supporting characters 0 +101191 5318 its predictable plot and paper-thin supporting characters 0 +101192 5318 predictable plot and paper-thin supporting characters 1 +101193 5318 plot and paper-thin supporting characters 1 +101194 5318 and paper-thin supporting characters 1 +101195 5318 paper-thin supporting characters 0 +101196 5318 supporting characters 2 +101197 5319 Debut effort by `` Project Greenlight '' winner is sappy and amateurish . 1 +101198 5319 Debut effort by `` Project Greenlight '' winner 3 +101199 5319 Debut effort 2 +101200 5319 by `` Project Greenlight '' winner 2 +101201 5319 `` Project Greenlight '' winner 3 +101202 5319 Project Greenlight '' winner 3 +101203 5319 '' winner 3 +101204 5319 is sappy and amateurish . 2 +101205 5319 is sappy and amateurish 0 +101206 5319 sappy and amateurish 0 +101207 5320 It 's a familiar story , but one that is presented with great sympathy and intelligence . 3 +101208 5320 's a familiar story , but one that is presented with great sympathy and intelligence . 4 +101209 5320 's a familiar story , but one that is presented with great sympathy and intelligence 3 +101210 5320 a familiar story , but one that is presented with great sympathy and intelligence 3 +101211 5320 a familiar story , but 2 +101212 5320 a familiar story , 2 +101213 5320 a familiar story 2 +101214 5320 familiar story 2 +101215 5320 one that is presented with great sympathy and intelligence 3 +101216 5320 that is presented with great sympathy and intelligence 4 +101217 5320 is presented with great sympathy and intelligence 4 +101218 5320 presented with great sympathy and intelligence 4 +101219 5320 with great sympathy and intelligence 3 +101220 5320 great sympathy and intelligence 3 +101221 5320 sympathy and intelligence 3 +101222 5320 sympathy and 2 +101223 5321 Sadly , Full Frontal plays like the work of a dilettante . 1 +101224 5321 , Full Frontal plays like the work of a dilettante . 3 +101225 5321 Full Frontal plays like the work of a dilettante . 2 +101226 5321 plays like the work of a dilettante . 2 +101227 5321 plays like the work of a dilettante 2 +101228 5321 like the work of a dilettante 2 +101229 5321 the work of a dilettante 2 +101230 5321 of a dilettante 2 +101231 5321 a dilettante 2 +101232 5321 dilettante 2 +101233 5322 It 's not exactly worth the bucks to expend the full price for a date , but when it comes out on video , it 's well worth a rental . 2 +101234 5322 It 's not exactly worth the bucks to expend the full price for a date , but when it comes out on video 2 +101235 5322 's not exactly worth the bucks to expend the full price for a date , but when it comes out on video 3 +101236 5322 's not exactly worth 1 +101237 5322 exactly worth 2 +101238 5322 the bucks to expend the full price for a date , but when it comes out on video 2 +101239 5322 the bucks to expend the full price for a date , but 2 +101240 5322 the bucks to expend the full price for a date , 2 +101241 5322 the bucks to expend the full price for a date 2 +101242 5322 the bucks 3 +101243 5322 to expend the full price for a date 2 +101244 5322 expend the full price for a date 2 +101245 5322 expend 2 +101246 5322 the full price for a date 3 +101247 5322 the full price 2 +101248 5322 full price 3 +101249 5322 for a date 2 +101250 5322 when it comes out on video 2 +101251 5322 it comes out on video 2 +101252 5322 comes out on video 3 +101253 5322 , it 's well worth a rental . 2 +101254 5322 it 's well worth a rental . 3 +101255 5322 's well worth a rental . 3 +101256 5322 's well worth a rental 3 +101257 5322 's well 3 +101258 5322 worth a rental 3 +101259 5322 a rental 2 +101260 5323 Children , Christian or otherwise , deserve to hear the full story of Jonah 's despair -- in all its agonizing , Catch-22 glory -- even if they spend years trying to comprehend it . 3 +101261 5323 Children , Christian or otherwise , 2 +101262 5323 Children , Christian or otherwise 2 +101263 5323 Children , 2 +101264 5323 Christian or otherwise 2 +101265 5323 Christian or 2 +101266 5323 deserve to hear the full story of Jonah 's despair -- in all its agonizing , Catch-22 glory -- even if they spend years trying to comprehend it . 1 +101267 5323 deserve to hear the full story of Jonah 's despair -- in all its agonizing , Catch-22 glory -- even if they spend years trying to comprehend it 2 +101268 5323 to hear the full story of Jonah 's despair -- in all its agonizing , Catch-22 glory -- even if they spend years trying to comprehend it 1 +101269 5323 hear the full story of Jonah 's despair -- in all its agonizing , Catch-22 glory -- even if they spend years trying to comprehend it 2 +101270 5323 hear the full story of Jonah 's despair -- in all its agonizing , Catch-22 glory -- 2 +101271 5323 the full story of Jonah 's despair -- in all its agonizing , Catch-22 glory -- 2 +101272 5323 the full story 2 +101273 5323 full story 2 +101274 5323 of Jonah 's despair -- in all its agonizing , Catch-22 glory -- 2 +101275 5323 Jonah 's despair -- in all its agonizing , Catch-22 glory -- 3 +101276 5323 Jonah 's despair 2 +101277 5323 Jonah 's 2 +101278 5323 -- in all its agonizing , Catch-22 glory -- 2 +101279 5323 in all its agonizing , Catch-22 glory -- 2 +101280 5323 in all its agonizing , Catch-22 glory 2 +101281 5323 all its agonizing , Catch-22 glory 3 +101282 5323 its agonizing , Catch-22 glory 1 +101283 5323 agonizing , Catch-22 glory 2 +101284 5323 agonizing , Catch-22 1 +101285 5323 , Catch-22 2 +101286 5323 Catch-22 2 +101287 5323 even if they spend years trying to comprehend it 2 +101288 5323 if they spend years trying to comprehend it 2 +101289 5323 they spend years trying to comprehend it 1 +101290 5323 spend years trying to comprehend it 1 +101291 5323 years trying to comprehend it 2 +101292 5323 trying to comprehend it 2 +101293 5323 to comprehend it 2 +101294 5323 comprehend it 3 +101295 5323 comprehend 2 +101296 5324 Mazel tov to a film about a family 's joyous life acting on the Yiddish stage . 4 +101297 5324 Mazel 2 +101298 5324 tov to a film about a family 's joyous life acting on the Yiddish stage . 3 +101299 5324 tov to a film about a family 's joyous life acting on the Yiddish stage 2 +101300 5324 tov to a film about a family 's joyous life 3 +101301 5324 tov 2 +101302 5324 to a film about a family 's joyous life 3 +101303 5324 a film about a family 's joyous life 2 +101304 5324 about a family 's joyous life 3 +101305 5324 a family 's joyous life 2 +101306 5324 a family 's 2 +101307 5324 family 's 2 +101308 5324 joyous life 3 +101309 5324 acting on the Yiddish stage 2 +101310 5324 on the Yiddish stage 2 +101311 5324 the Yiddish stage 2 +101312 5324 Yiddish stage 3 +101313 5325 Unsurprisingly , the way this all works out makes the women look more like stereotypical caretakers and moral teachers , instead of serious athletes . 1 +101314 5325 Unsurprisingly 1 +101315 5325 , the way this all works out makes the women look more like stereotypical caretakers and moral teachers , instead of serious athletes . 0 +101316 5325 the way this all works out makes the women look more like stereotypical caretakers and moral teachers , instead of serious athletes . 0 +101317 5325 the way this all works out 3 +101318 5325 this all works out 4 +101319 5325 all works out 3 +101320 5325 makes the women look more like stereotypical caretakers and moral teachers , instead of serious athletes . 2 +101321 5325 makes the women look more like stereotypical caretakers and moral teachers , instead of serious athletes 1 +101322 5325 the women look more like stereotypical caretakers and moral teachers , instead of serious athletes 1 +101323 5325 look more like stereotypical caretakers and moral teachers , instead of serious athletes 1 +101324 5325 look more like stereotypical caretakers and moral teachers , instead 2 +101325 5325 more like stereotypical caretakers and moral teachers , instead 1 +101326 5325 like stereotypical caretakers and moral teachers , instead 3 +101327 5325 like stereotypical caretakers and moral teachers , 1 +101328 5325 like stereotypical caretakers and moral teachers 2 +101329 5325 stereotypical caretakers and moral teachers 2 +101330 5325 stereotypical caretakers and 2 +101331 5325 stereotypical caretakers 1 +101332 5325 caretakers 2 +101333 5325 moral teachers 2 +101334 5325 of serious athletes 2 +101335 5325 serious athletes 2 +101336 5326 Much smarter and more attentive than it first sets out to be . 3 +101337 5326 smarter and more attentive than it first sets out to be . 3 +101338 5326 attentive than it first sets out to be . 2 +101339 5326 attentive than it first sets out to be 2 +101340 5326 attentive 3 +101341 5326 than it first sets out to be 2 +101342 5326 it first sets out to be 2 +101343 5326 first sets out to be 2 +101344 5326 sets out to be 2 +101345 5327 A fascinating but choppy documentary . 2 +101346 5327 A fascinating but choppy documentary 3 +101347 5327 fascinating but choppy documentary 3 +101348 5327 fascinating but choppy 2 +101349 5328 This is a remake by the numbers , linking a halfwit plot to a series of standup routines in which Wilson and Murphy show how funny they could have been in a more ambitious movie . 1 +101350 5328 is a remake by the numbers , linking a halfwit plot to a series of standup routines in which Wilson and Murphy show how funny they could have been in a more ambitious movie . 1 +101351 5328 is a remake by the numbers , linking a halfwit plot to a series of standup routines in which Wilson and Murphy show how funny they could have been in a more ambitious movie 0 +101352 5328 a remake by the numbers , linking a halfwit plot to a series of standup routines in which Wilson and Murphy show how funny they could have been in a more ambitious movie 1 +101353 5328 a remake by the numbers , 2 +101354 5328 a remake by the numbers 1 +101355 5328 linking a halfwit plot to a series of standup routines in which Wilson and Murphy show how funny they could have been in a more ambitious movie 0 +101356 5328 linking a halfwit plot 0 +101357 5328 a halfwit plot 1 +101358 5328 halfwit plot 0 +101359 5328 halfwit 1 +101360 5328 to a series of standup routines in which Wilson and Murphy show how funny they could have been in a more ambitious movie 3 +101361 5328 a series of standup routines in which Wilson and Murphy show how funny they could have been in a more ambitious movie 2 +101362 5328 a series of standup routines 2 +101363 5328 of standup routines 2 +101364 5328 standup routines 2 +101365 5328 standup 2 +101366 5328 in which Wilson and Murphy show how funny they could have been in a more ambitious movie 2 +101367 5328 Wilson and Murphy show how funny they could have been in a more ambitious movie 4 +101368 5328 Wilson and Murphy 3 +101369 5328 Wilson and 2 +101370 5328 show how funny they could have been in a more ambitious movie 2 +101371 5328 how funny they could have been in a more ambitious movie 1 +101372 5328 how funny 2 +101373 5328 they could have been in a more ambitious movie 1 +101374 5328 could have been in a more ambitious movie 2 +101375 5328 have been in a more ambitious movie 2 +101376 5328 been in a more ambitious movie 2 +101377 5328 in a more ambitious movie 3 +101378 5328 a more ambitious movie 3 +101379 5328 more ambitious movie 2 +101380 5329 An enjoyable , if occasionally flawed , experiment . 3 +101381 5329 An enjoyable , if occasionally flawed , experiment 3 +101382 5329 enjoyable , if occasionally flawed , experiment 3 +101383 5329 enjoyable , if occasionally flawed , 3 +101384 5329 , if occasionally flawed , 2 +101385 5329 if occasionally flawed , 1 +101386 5329 occasionally flawed , 1 +101387 5330 I 'll go out on a limb . 3 +101388 5330 'll go out on a limb . 2 +101389 5330 'll go out on a limb 2 +101390 5330 go out on a limb 2 +101391 5330 on a limb 2 +101392 5330 a limb 2 +101393 5330 limb 2 +101394 5331 just pile up . 2 +101395 5331 pile up . 2 +101396 5332 A brutal and funny work . 4 +101397 5332 A brutal and funny 4 +101398 5332 brutal and funny 3 +101399 5332 brutal and 1 +101400 5333 If nothing else , `` Rollerball '' 2002 may go down in cinema history as the only movie ever in which the rest of the cast was outshined by LL Cool J. 1 +101401 5333 , `` Rollerball '' 2002 may go down in cinema history as the only movie ever in which the rest of the cast was outshined by LL Cool J. 1 +101402 5333 `` Rollerball '' 2002 may go down in cinema history as the only movie ever in which the rest of the cast was outshined by LL Cool J. 1 +101403 5333 `` Rollerball '' 2002 2 +101404 5333 Rollerball '' 2002 2 +101405 5333 '' 2002 2 +101406 5333 may go down in cinema history as the only movie ever in which the rest of the cast was outshined by LL Cool J. 1 +101407 5333 go down in cinema history as the only movie ever in which the rest of the cast was outshined by LL Cool J. 2 +101408 5333 in cinema history as the only movie ever in which the rest of the cast was outshined by LL Cool J. 1 +101409 5333 cinema history as the only movie ever in which the rest of the cast was outshined by LL Cool J. 1 +101410 5333 cinema history as the only movie ever 3 +101411 5333 cinema history as the only movie 2 +101412 5333 cinema history 2 +101413 5333 as the only movie 2 +101414 5333 the only movie 2 +101415 5333 only movie 2 +101416 5333 in which the rest of the cast was outshined by LL Cool J. 1 +101417 5333 the rest of the cast was outshined by LL Cool J. 3 +101418 5333 was outshined by LL Cool J. 2 +101419 5333 outshined by LL Cool J. 2 +101420 5333 outshined 1 +101421 5333 by LL Cool J. 2 +101422 5333 LL Cool J. 2 +101423 5333 LL 2 +101424 5333 Cool J. 2 +101425 5334 Chilling in its objective portrait of dreary , lost twenty-first century America . 3 +101426 5334 Chilling in its objective portrait of dreary 2 +101427 5334 in its objective portrait of dreary 2 +101428 5334 its objective portrait of dreary 2 +101429 5334 its objective portrait 3 +101430 5334 objective portrait 2 +101431 5334 of dreary 2 +101432 5334 , lost twenty-first century America . 2 +101433 5334 lost twenty-first century America . 2 +101434 5334 lost twenty-first century America 2 +101435 5334 lost twenty-first century 2 +101436 5334 twenty-first century 2 +101437 5334 twenty-first 3 +101438 5335 There 's no doubting that this is a highly ambitious and personal project for Egoyan , but it 's also one that , next to his best work , feels clumsy and convoluted . 2 +101439 5335 There 's no doubting that this is a highly ambitious and personal project for Egoyan , but it 's also one that , next to his best work , feels clumsy and convoluted 1 +101440 5335 There 's no doubting that this is a highly ambitious and personal project for Egoyan , but 3 +101441 5335 There 's no doubting that this is a highly ambitious and personal project for Egoyan , 4 +101442 5335 There 's no doubting that this is a highly ambitious and personal project for Egoyan 3 +101443 5335 's no doubting that this is a highly ambitious and personal project for Egoyan 3 +101444 5335 's no doubting 2 +101445 5335 no doubting 2 +101446 5335 doubting 1 +101447 5335 that this is a highly ambitious and personal project for Egoyan 3 +101448 5335 this is a highly ambitious and personal project for Egoyan 3 +101449 5335 is a highly ambitious and personal project for Egoyan 3 +101450 5335 a highly ambitious and personal project for Egoyan 2 +101451 5335 a highly ambitious and personal project 3 +101452 5335 highly ambitious and personal project 3 +101453 5335 highly ambitious and personal 3 +101454 5335 ambitious and personal 3 +101455 5335 for Egoyan 2 +101456 5335 it 's also one that , next to his best work , feels clumsy and convoluted 1 +101457 5335 's also one that , next to his best work , feels clumsy and convoluted 1 +101458 5335 one that , next to his best work , feels clumsy and convoluted 1 +101459 5335 that , next to his best work , feels clumsy and convoluted 1 +101460 5335 , next to his best work , feels clumsy and convoluted 2 +101461 5335 next to his best work , feels clumsy and convoluted 0 +101462 5335 next to his best work 2 +101463 5335 to his best work 3 +101464 5335 his best work 4 +101465 5335 best work 4 +101466 5335 , feels clumsy and convoluted 1 +101467 5335 feels clumsy and convoluted 0 +101468 5335 clumsy and convoluted 2 +101469 5336 The sequel plays out like a flimsy excuse to give Blade fans another look at Wesley Snipes ' iconic hero doing battle with dozens of bad guys -- at once . 1 +101470 5336 plays out like a flimsy excuse to give Blade fans another look at Wesley Snipes ' iconic hero doing battle with dozens of bad guys -- at once . 1 +101471 5336 plays out like a flimsy excuse to give Blade fans another look at Wesley Snipes ' iconic hero doing battle with dozens of bad guys -- at once 1 +101472 5336 plays out like a flimsy excuse 1 +101473 5336 like a flimsy excuse 2 +101474 5336 a flimsy excuse 1 +101475 5336 flimsy excuse 2 +101476 5336 to give Blade fans another look at Wesley Snipes ' iconic hero doing battle with dozens of bad guys -- at once 3 +101477 5336 give Blade fans another look at Wesley Snipes ' iconic hero doing battle with dozens of bad guys -- at once 3 +101478 5336 give Blade fans 2 +101479 5336 Blade fans 2 +101480 5336 another look at Wesley Snipes ' iconic hero doing battle with dozens of bad guys -- at once 2 +101481 5336 another look 2 +101482 5336 at Wesley Snipes ' iconic hero doing battle with dozens of bad guys -- at once 2 +101483 5336 Wesley Snipes ' iconic hero doing battle with dozens of bad guys -- at once 2 +101484 5336 Wesley Snipes ' iconic hero 2 +101485 5336 Wesley Snipes ' 2 +101486 5336 Snipes ' 2 +101487 5336 iconic hero 3 +101488 5336 iconic 4 +101489 5336 doing battle with dozens of bad guys -- at once 2 +101490 5336 doing battle with dozens of bad guys -- 2 +101491 5336 doing battle with dozens of bad guys 2 +101492 5336 doing battle 3 +101493 5336 with dozens of bad guys 2 +101494 5336 dozens of bad guys 1 +101495 5336 dozens 2 +101496 5336 of bad guys 2 +101497 5337 They should have found Orson Welles ' great-grandson . 2 +101498 5337 should have found Orson Welles ' great-grandson . 2 +101499 5337 should have found Orson Welles ' great-grandson 2 +101500 5337 have found Orson Welles ' great-grandson 2 +101501 5337 found Orson Welles ' great-grandson 2 +101502 5337 Orson Welles ' great-grandson 2 +101503 5337 Orson Welles ' 2 +101504 5337 Orson 2 +101505 5338 It offers a glimpse of the Solomonic decision facing Jewish parents in those turbulent times : to save their children and yet to lose them . 3 +101506 5338 offers a glimpse of the Solomonic decision facing Jewish parents in those turbulent times : to save their children and yet to lose them . 3 +101507 5338 offers a glimpse of the Solomonic decision facing Jewish parents in those turbulent times : to save their children and yet to lose them 2 +101508 5338 a glimpse of the Solomonic decision facing Jewish parents in those turbulent times : to save their children and yet to lose them 2 +101509 5338 a glimpse of the Solomonic decision facing Jewish parents in those turbulent times : 2 +101510 5338 a glimpse of the Solomonic decision facing Jewish parents in those turbulent times 3 +101511 5338 of the Solomonic decision facing Jewish parents in those turbulent times 3 +101512 5338 the Solomonic decision facing Jewish parents in those turbulent times 2 +101513 5338 the Solomonic decision 2 +101514 5338 Solomonic decision 2 +101515 5338 Solomonic 2 +101516 5338 decision 2 +101517 5338 facing Jewish parents in those turbulent times 2 +101518 5338 facing Jewish parents 2 +101519 5338 Jewish parents 3 +101520 5338 in those turbulent times 2 +101521 5338 those turbulent times 2 +101522 5338 turbulent times 2 +101523 5338 turbulent 2 +101524 5338 to save their children and yet to lose them 2 +101525 5338 to save their children and yet 2 +101526 5338 to save their children and 2 +101527 5338 to save their children 2 +101528 5338 save their children 3 +101529 5338 to lose them 2 +101530 5338 lose them 2 +101531 5339 He 's a better actor than a standup comedian . 3 +101532 5339 's a better actor than a standup comedian . 2 +101533 5339 's a better actor than a standup comedian 2 +101534 5339 a better actor than a standup comedian 2 +101535 5339 a better actor 2 +101536 5339 better actor 3 +101537 5339 than a standup comedian 2 +101538 5339 a standup comedian 2 +101539 5339 standup comedian 2 +101540 5340 Really does feel like a short stretched out to feature length . 1 +101541 5340 does feel like a short stretched out to feature length . 1 +101542 5340 does feel like a short stretched out to feature length 2 +101543 5340 feel like a short stretched out to feature length 1 +101544 5340 like a short stretched out to feature length 2 +101545 5340 a short stretched out to feature length 2 +101546 5340 a short 2 +101547 5340 stretched out to feature length 1 +101548 5340 to feature length 2 +101549 5341 The film is a verbal duel between two gifted performers . 4 +101550 5341 is a verbal duel between two gifted performers . 3 +101551 5341 is a verbal duel between two gifted performers 4 +101552 5341 a verbal duel between two gifted performers 3 +101553 5341 a verbal duel 1 +101554 5341 verbal duel 2 +101555 5341 duel 2 +101556 5341 between two gifted performers 3 +101557 5341 two gifted performers 4 +101558 5341 gifted performers 3 +101559 5342 A deliciously nonsensical comedy about a city coming apart at its seams . 4 +101560 5342 A deliciously nonsensical comedy about a city coming apart at its seams 3 +101561 5342 A deliciously nonsensical comedy about a city 4 +101562 5342 A deliciously nonsensical comedy 3 +101563 5342 deliciously nonsensical comedy 3 +101564 5342 deliciously nonsensical 2 +101565 5342 about a city 2 +101566 5342 a city 2 +101567 5342 coming apart at its seams 1 +101568 5342 coming apart 2 +101569 5342 at its seams 2 +101570 5342 its seams 2 +101571 5343 The camera whirls ! 2 +101572 5343 whirls ! 2 +101573 5343 whirls 2 +101574 5344 This New Zealand coming-of-age movie is n't really about anything . 1 +101575 5344 This New Zealand coming-of-age movie 2 +101576 5344 New Zealand coming-of-age movie 3 +101577 5344 Zealand coming-of-age movie 3 +101578 5344 is n't really about anything . 1 +101579 5344 is n't really about anything 2 +101580 5344 about anything 2 +101581 5345 What makes the movie special is its utter sincerity . 3 +101582 5345 What makes the movie special 4 +101583 5345 makes the movie special 3 +101584 5345 the movie special 2 +101585 5345 movie special 3 +101586 5345 is its utter sincerity . 3 +101587 5345 is its utter sincerity 4 +101588 5345 its utter sincerity 3 +101589 5345 utter sincerity 3 +101590 5346 -LRB- A -RRB- devastatingly powerful and astonishingly vivid Holocaust drama . 4 +101591 5346 devastatingly powerful and astonishingly vivid Holocaust drama . 4 +101592 5346 devastatingly powerful and astonishingly vivid Holocaust drama 3 +101593 5346 devastatingly 1 +101594 5346 powerful and astonishingly vivid Holocaust drama 4 +101595 5346 powerful and astonishingly vivid 4 +101596 5346 astonishingly vivid 4 +101597 5346 Holocaust drama 2 +101598 5347 A distinctly mixed bag , the occasional bursts of sharp writing alternating with lots of sloppiness and the obligatory moments of sentimental ooze . 1 +101599 5347 A distinctly mixed bag , the occasional bursts of sharp writing alternating with lots of sloppiness and the obligatory moments of sentimental ooze 2 +101600 5347 A distinctly mixed bag , the occasional bursts of sharp writing alternating with lots of sloppiness and 2 +101601 5347 A distinctly mixed bag , the occasional bursts of sharp writing alternating with lots of sloppiness 1 +101602 5347 A distinctly mixed bag , 2 +101603 5347 A distinctly mixed bag 2 +101604 5347 distinctly mixed bag 2 +101605 5347 distinctly mixed 2 +101606 5347 the occasional bursts of sharp writing alternating with lots of sloppiness 2 +101607 5347 the occasional bursts of sharp writing 3 +101608 5347 the occasional bursts 3 +101609 5347 occasional bursts 2 +101610 5347 of sharp writing 3 +101611 5347 alternating with lots of sloppiness 1 +101612 5347 with lots of sloppiness 1 +101613 5347 lots of sloppiness 0 +101614 5347 of sloppiness 2 +101615 5347 sloppiness 1 +101616 5347 the obligatory moments of sentimental ooze 1 +101617 5347 the obligatory moments 2 +101618 5347 obligatory moments 2 +101619 5347 of sentimental ooze 1 +101620 5347 sentimental ooze 1 +101621 5347 ooze 2 +101622 5348 Flat , misguided comedy . 1 +101623 5348 Flat , misguided comedy 0 +101624 5348 Flat , 1 +101625 5348 misguided comedy 1 +101626 5349 With minimal imagination , you could restage the whole thing in your bathtub . 1 +101627 5349 With minimal imagination 1 +101628 5349 minimal imagination 2 +101629 5349 , you could restage the whole thing in your bathtub . 0 +101630 5349 you could restage the whole thing in your bathtub . 1 +101631 5349 could restage the whole thing in your bathtub . 1 +101632 5349 could restage the whole thing in your bathtub 1 +101633 5349 restage the whole thing in your bathtub 2 +101634 5349 restage the whole thing 1 +101635 5349 restage 2 +101636 5349 in your bathtub 2 +101637 5349 your bathtub 2 +101638 5350 I 'm sorry to say that this should seal the deal - Arnold is not , nor will he be , back . 1 +101639 5350 I 'm sorry to say that this should seal the deal - Arnold is not , nor will he be , back 1 +101640 5350 I 'm sorry to say that this should seal the deal - 2 +101641 5350 I 'm sorry to say that this should seal the deal 2 +101642 5350 'm sorry to say that this should seal the deal 2 +101643 5350 sorry to say that this should seal the deal 2 +101644 5350 to say that this should seal the deal 2 +101645 5350 say that this should seal the deal 2 +101646 5350 that this should seal the deal 3 +101647 5350 this should seal the deal 2 +101648 5350 should seal the deal 2 +101649 5350 Arnold is not , nor will he be , back 1 +101650 5350 is not , nor will he be , back 1 +101651 5350 is not , nor will he be , 2 +101652 5350 , nor will he be , 2 +101653 5350 nor will he be , 2 +101654 5350 nor will he be 2 +101655 5350 will he be 2 +101656 5350 will he 2 +101657 5351 The script boasts some tart TV-insider humor , but the film has not a trace of humanity or empathy . 1 +101658 5351 The script boasts some tart TV-insider humor , but the film has not a trace of humanity or empathy 1 +101659 5351 The script boasts some tart TV-insider humor , but 2 +101660 5351 The script boasts some tart TV-insider humor , 3 +101661 5351 The script boasts some tart TV-insider humor 2 +101662 5351 boasts some tart TV-insider humor 3 +101663 5351 some tart TV-insider humor 2 +101664 5351 tart TV-insider humor 2 +101665 5351 tart 3 +101666 5351 TV-insider humor 2 +101667 5351 TV-insider 2 +101668 5351 the film has not a trace of humanity or empathy 1 +101669 5351 has not a trace of humanity or empathy 1 +101670 5351 not a trace of humanity or empathy 1 +101671 5351 not a trace 1 +101672 5351 of humanity or empathy 2 +101673 5351 humanity or empathy 3 +101674 5351 humanity or 2 +101675 5352 It is definitely worth seeing . 4 +101676 5352 is definitely worth seeing . 4 +101677 5352 is definitely worth seeing 3 +101678 5352 is definitely worth 3 +101679 5353 Director Roger Kumble offers just enough sweet and traditional romantic comedy to counter the crudity . 3 +101680 5353 offers just enough sweet and traditional romantic comedy to counter the crudity . 3 +101681 5353 offers just enough sweet and traditional romantic comedy to counter the crudity 2 +101682 5353 just enough sweet and traditional romantic comedy to counter the crudity 3 +101683 5353 enough sweet and traditional romantic comedy to counter the crudity 3 +101684 5353 enough sweet and traditional romantic 2 +101685 5353 enough sweet and 3 +101686 5353 enough sweet 2 +101687 5353 traditional romantic 3 +101688 5353 comedy to counter the crudity 2 +101689 5353 to counter the crudity 2 +101690 5353 counter the crudity 1 +101691 5353 counter 2 +101692 5353 the crudity 2 +101693 5353 crudity 1 +101694 5354 The problem with the mayhem in Formula 51 is not that it 's offensive , but that it 's boring . 1 +101695 5354 The problem with the mayhem in Formula 51 1 +101696 5354 with the mayhem in Formula 51 2 +101697 5354 the mayhem in Formula 51 1 +101698 5354 the mayhem 2 +101699 5354 in Formula 51 2 +101700 5354 is not that it 's offensive , but that it 's boring . 1 +101701 5354 is not that it 's offensive , but that it 's boring 1 +101702 5354 that it 's offensive , but that it 's boring 1 +101703 5354 that it 's offensive , but 1 +101704 5354 that it 's offensive , 1 +101705 5354 that it 's offensive 1 +101706 5354 it 's offensive 0 +101707 5354 's offensive 2 +101708 5354 that it 's boring 1 +101709 5354 it 's boring 0 +101710 5354 's boring 0 +101711 5355 Although it starts off so bad that you feel like running out screaming , it eventually works its way up to merely bad rather than painfully awful . 1 +101712 5355 Although it starts off so bad that you feel like running out screaming 1 +101713 5355 it starts off so bad that you feel like running out screaming 0 +101714 5355 starts off so bad that you feel like running out screaming 0 +101715 5355 starts off so bad 0 +101716 5355 that you feel like running out screaming 0 +101717 5355 you feel like running out screaming 0 +101718 5355 feel like running out screaming 0 +101719 5355 like running out screaming 1 +101720 5355 running out screaming 2 +101721 5355 out screaming 2 +101722 5355 , it eventually works its way up to merely bad rather than painfully awful . 0 +101723 5355 it eventually works its way up to merely bad rather than painfully awful . 1 +101724 5355 eventually works its way up to merely bad rather than painfully awful . 0 +101725 5355 eventually works its way up to merely bad rather than painfully awful 1 +101726 5355 works its way up to merely bad rather than painfully awful 1 +101727 5355 works its way up 3 +101728 5355 works its way 2 +101729 5355 to merely bad rather than painfully awful 1 +101730 5355 merely bad rather than painfully awful 1 +101731 5355 merely bad rather than 1 +101732 5355 merely bad 1 +101733 5355 painfully awful 0 +101734 5356 A worthy idea , but the uninspired scripts , acting and direction never rise above the level of an after-school TV special . 1 +101735 5356 A worthy idea 3 +101736 5356 worthy idea 3 +101737 5356 , but the uninspired scripts , acting and direction never rise above the level of an after-school TV special . 1 +101738 5356 , but the uninspired scripts , acting and direction never rise above the level of an after-school TV special 2 +101739 5356 the uninspired scripts , acting and direction never rise above the level of an after-school TV special 1 +101740 5356 the uninspired scripts , acting and direction 1 +101741 5356 uninspired scripts , acting and direction 1 +101742 5356 scripts , acting and direction 2 +101743 5356 , acting and direction 2 +101744 5356 acting and direction 2 +101745 5356 acting and 2 +101746 5356 never rise above the level of an after-school TV special 1 +101747 5356 rise above the level of an after-school TV special 1 +101748 5356 above the level of an after-school TV special 1 +101749 5356 the level of an after-school TV special 1 +101750 5356 of an after-school TV special 2 +101751 5356 an after-school TV special 2 +101752 5356 after-school TV special 2 +101753 5357 This is absolutely and completely ridiculous and an insult to every family whose mother has suffered through the horrible pains of a death by cancer . 0 +101754 5357 is absolutely and completely ridiculous and an insult to every family whose mother has suffered through the horrible pains of a death by cancer . 0 +101755 5357 is absolutely and completely ridiculous and an insult to every family whose mother has suffered through the horrible pains of a death by cancer 0 +101756 5357 absolutely and completely ridiculous and an insult to every family whose mother has suffered through the horrible pains of a death by cancer 0 +101757 5357 absolutely and completely ridiculous and 1 +101758 5357 absolutely and completely ridiculous 0 +101759 5357 and completely ridiculous 1 +101760 5357 completely ridiculous 0 +101761 5357 an insult to every family whose mother has suffered through the horrible pains of a death by cancer 0 +101762 5357 an insult to every family 1 +101763 5357 an insult 1 +101764 5357 to every family 2 +101765 5357 every family 3 +101766 5357 whose mother has suffered through the horrible pains of a death by cancer 2 +101767 5357 whose mother 2 +101768 5357 has suffered through the horrible pains of a death by cancer 2 +101769 5357 suffered through the horrible pains of a death by cancer 1 +101770 5357 suffered through the horrible pains of a death 1 +101771 5357 through the horrible pains of a death 1 +101772 5357 the horrible pains of a death 1 +101773 5357 the horrible pains 1 +101774 5357 horrible pains 0 +101775 5357 pains 2 +101776 5357 of a death 2 +101777 5357 a death 2 +101778 5357 by cancer 2 +101779 5357 cancer 1 +101780 5358 Instead of a balanced film that explains the zeitgeist that is the X Games , we get a cinematic postcard that 's superficial and unrealized . 0 +101781 5358 Instead of a balanced film that explains the zeitgeist that is the X Games 1 +101782 5358 of a balanced film that explains the zeitgeist that is the X Games 3 +101783 5358 a balanced film that explains the zeitgeist that is the X Games 2 +101784 5358 a balanced film 3 +101785 5358 balanced film 3 +101786 5358 that explains the zeitgeist that is the X Games 2 +101787 5358 explains the zeitgeist that is the X Games 2 +101788 5358 the zeitgeist that is the X Games 2 +101789 5358 the zeitgeist 2 +101790 5358 zeitgeist 2 +101791 5358 that is the X Games 2 +101792 5358 is the X Games 2 +101793 5358 the X Games 2 +101794 5358 X Games 2 +101795 5358 , we get a cinematic postcard that 's superficial and unrealized . 0 +101796 5358 we get a cinematic postcard that 's superficial and unrealized . 1 +101797 5358 get a cinematic postcard that 's superficial and unrealized . 1 +101798 5358 get a cinematic postcard that 's superficial and unrealized 0 +101799 5358 a cinematic postcard that 's superficial and unrealized 1 +101800 5358 a cinematic postcard 3 +101801 5358 cinematic postcard 3 +101802 5358 that 's superficial and unrealized 0 +101803 5358 's superficial and unrealized 0 +101804 5358 superficial and unrealized 1 +101805 5358 superficial and 1 +101806 5359 The adventure does n't contain half the excitement of Balto , or quarter the fun of Toy Story 2 . 1 +101807 5359 does n't contain half the excitement of Balto , or quarter the fun of Toy Story 2 . 1 +101808 5359 does n't contain half the excitement of Balto , or quarter the fun of Toy Story 2 1 +101809 5359 contain half the excitement of Balto , or quarter the fun of Toy Story 2 2 +101810 5359 contain 2 +101811 5359 half the excitement of Balto , or quarter the fun of Toy Story 2 0 +101812 5359 half the excitement of Balto , or 2 +101813 5359 half the excitement of Balto , 1 +101814 5359 half the excitement of Balto 1 +101815 5359 half the excitement 2 +101816 5359 of Balto 3 +101817 5359 Balto 2 +101818 5359 quarter the fun of Toy Story 2 1 +101819 5359 quarter 2 +101820 5359 the fun of Toy Story 2 3 +101821 5359 of Toy Story 2 2 +101822 5359 Toy Story 2 2 +101823 5359 Toy 2 +101824 5359 Story 2 2 +101825 5360 Anemic chronicle of money grubbing New Yorkers and their serial loveless hook ups . 2 +101826 5360 Anemic chronicle of money grubbing New Yorkers and their serial 1 +101827 5360 Anemic chronicle 2 +101828 5360 of money grubbing New Yorkers and their serial 1 +101829 5360 money grubbing New Yorkers and their serial 2 +101830 5360 grubbing New Yorkers and their serial 2 +101831 5360 grubbing 2 +101832 5360 New Yorkers and their serial 2 +101833 5360 New Yorkers and 2 +101834 5360 their serial 2 +101835 5360 loveless hook ups . 1 +101836 5360 loveless hook ups 2 +101837 5360 loveless 1 +101838 5360 hook ups 2 +101839 5361 Remarkable for its excellent storytelling , its economical , compressed characterisations and for its profound humanity , it 's an adventure story and history lesson all in one . 4 +101840 5361 Remarkable for its excellent storytelling , its economical , compressed characterisations and for its profound humanity 4 +101841 5361 for its excellent storytelling , its economical , compressed characterisations and for its profound humanity 4 +101842 5361 for its excellent storytelling , its economical 3 +101843 5361 its excellent storytelling , its economical 3 +101844 5361 its excellent storytelling , 3 +101845 5361 its excellent storytelling 4 +101846 5361 excellent storytelling 4 +101847 5361 its economical 3 +101848 5361 , compressed characterisations and for its profound humanity 3 +101849 5361 compressed characterisations and for its profound humanity 3 +101850 5361 compressed characterisations and 2 +101851 5361 compressed characterisations 1 +101852 5361 characterisations 2 +101853 5361 for its profound humanity 3 +101854 5361 its profound humanity 2 +101855 5361 profound humanity 3 +101856 5361 , it 's an adventure story and history lesson all in one . 3 +101857 5361 it 's an adventure story and history lesson all in one . 3 +101858 5361 's an adventure story and history lesson all in one . 3 +101859 5361 's an adventure story and history lesson all in one 3 +101860 5361 an adventure story and history lesson all in one 3 +101861 5361 an adventure story and history lesson 3 +101862 5361 adventure story and history lesson 3 +101863 5361 story and history lesson 2 +101864 5361 and history lesson 2 +101865 5361 history lesson 2 +101866 5361 all in one 2 +101867 5361 in one 2 +101868 5362 Creeps you out in high style , even if Nakata did it better . 2 +101869 5362 Creeps you out in high style , even if Nakata did it better 2 +101870 5362 Creeps you out in high style , 2 +101871 5362 Creeps you out in high style 2 +101872 5362 Creeps you 2 +101873 5362 out in high style 3 +101874 5362 in high style 2 +101875 5362 high style 3 +101876 5362 even if Nakata did it better 2 +101877 5362 if Nakata did it better 2 +101878 5362 Nakata did it better 1 +101879 5362 Nakata 2 +101880 5362 did it better 1 +101881 5362 it better 2 +101882 5363 downtown 2 +101883 5363 overhearing a bunch of typical late-twenty-somethings natter on about nothing 2 +101884 5363 overhearing 2 +101885 5363 a bunch of typical late-twenty-somethings natter on about nothing 0 +101886 5363 of typical late-twenty-somethings natter on about nothing 1 +101887 5363 typical late-twenty-somethings natter on about nothing 1 +101888 5363 typical late-twenty-somethings natter 1 +101889 5363 late-twenty-somethings natter 2 +101890 5363 late-twenty-somethings 2 +101891 5363 natter 1 +101892 5363 on about nothing 2 +101893 5363 desperately wishing you could change tables 1 +101894 5363 wishing you could change tables 2 +101895 5363 you could change tables 3 +101896 5363 could change tables 2 +101897 5363 change tables 3 +101898 5363 tables 2 +101899 5364 In all the annals of the movies , few films have been this odd , inexplicable and unpleasant . 0 +101900 5364 In all the annals of the movies 2 +101901 5364 all the annals of the movies 2 +101902 5364 all the annals 1 +101903 5364 of the movies 2 +101904 5364 , few films have been this odd , inexplicable and unpleasant . 0 +101905 5364 few films have been this odd , inexplicable and unpleasant . 0 +101906 5364 have been this odd , inexplicable and unpleasant . 1 +101907 5364 have been this odd , inexplicable and unpleasant 1 +101908 5364 been this odd , inexplicable and unpleasant 1 +101909 5364 this odd , inexplicable and unpleasant 0 +101910 5364 odd , inexplicable and unpleasant 0 +101911 5364 , inexplicable and unpleasant 1 +101912 5364 inexplicable and unpleasant 2 +101913 5364 inexplicable and 2 +101914 5365 Argento , at only 26 , brings a youthful , out-to-change-the-world aggressiveness to the project , as if she 's cut open a vein and bled the raw film stock . 3 +101915 5365 Argento , at only 26 , 2 +101916 5365 Argento , at only 26 2 +101917 5365 Argento , 2 +101918 5365 at only 26 2 +101919 5365 only 26 2 +101920 5365 26 2 +101921 5365 brings a youthful , out-to-change-the-world aggressiveness to the project , as if she 's cut open a vein and bled the raw film stock . 3 +101922 5365 brings a youthful , out-to-change-the-world aggressiveness to the project , as if she 's cut open a vein and bled the raw film stock 3 +101923 5365 brings a youthful , out-to-change-the-world aggressiveness to the project , as if she 's cut open a vein and 3 +101924 5365 brings a youthful , out-to-change-the-world aggressiveness to the project , as if she 's cut open a vein 3 +101925 5365 brings a youthful , out-to-change-the-world aggressiveness to the project , 3 +101926 5365 brings a youthful , out-to-change-the-world aggressiveness to the project 3 +101927 5365 brings a youthful , out-to-change-the-world aggressiveness 3 +101928 5365 a youthful , out-to-change-the-world aggressiveness 3 +101929 5365 youthful , out-to-change-the-world aggressiveness 3 +101930 5365 , out-to-change-the-world aggressiveness 2 +101931 5365 out-to-change-the-world aggressiveness 2 +101932 5365 out-to-change-the-world 3 +101933 5365 aggressiveness 2 +101934 5365 to the project 2 +101935 5365 the project 2 +101936 5365 as if she 's cut open a vein 2 +101937 5365 if she 's cut open a vein 2 +101938 5365 she 's cut open a vein 1 +101939 5365 's cut open a vein 2 +101940 5365 cut open a vein 1 +101941 5365 cut open 2 +101942 5365 a vein 2 +101943 5365 bled the raw film stock 2 +101944 5365 bled 2 +101945 5365 the raw film stock 2 +101946 5365 raw film stock 2 +101947 5365 film stock 2 +101948 5366 Elaborate special effects take centre screen , so that the human story is pushed to one side . 3 +101949 5366 Elaborate special effects 3 +101950 5366 take centre screen , so that the human story is pushed to one side . 2 +101951 5366 take centre screen , so that the human story is pushed to one side 1 +101952 5366 take centre screen , 2 +101953 5366 take centre screen 3 +101954 5366 centre screen 2 +101955 5366 centre 2 +101956 5366 so that the human story is pushed to one side 1 +101957 5366 that the human story is pushed to one side 2 +101958 5366 the human story is pushed to one side 1 +101959 5366 the human story 2 +101960 5366 human story 2 +101961 5366 is pushed to one side 2 +101962 5366 pushed to one side 2 +101963 5366 to one side 2 +101964 5366 one side 2 +101965 5367 The film has the courage of its convictions and excellent performances on its side . 4 +101966 5367 has the courage of its convictions and excellent performances on its side . 4 +101967 5367 has the courage of its convictions and excellent performances on its side 4 +101968 5367 the courage of its convictions and excellent performances on its side 4 +101969 5367 the courage of its convictions and 3 +101970 5367 the courage of its convictions 3 +101971 5367 of its convictions 2 +101972 5367 its convictions 2 +101973 5367 excellent performances on its side 3 +101974 5367 on its side 2 +101975 5367 its side 2 +101976 5368 ... its stupidities wind up sticking in one 's mind a lot more than the cool bits . 2 +101977 5368 its stupidities wind up sticking in one 's mind a lot more than the cool bits . 1 +101978 5368 its stupidities 1 +101979 5368 stupidities 1 +101980 5368 wind up sticking in one 's mind a lot more than the cool bits . 2 +101981 5368 wind up sticking in one 's mind a lot more than the cool bits 3 +101982 5368 sticking in one 's mind a lot more than the cool bits 2 +101983 5368 sticking in one 's mind a lot more 2 +101984 5368 in one 's mind a lot more 2 +101985 5368 in one 's mind 2 +101986 5368 one 's mind 2 +101987 5368 than the cool bits 2 +101988 5368 the cool bits 2 +101989 5368 cool bits 2 +101990 5369 Audiences are advised to sit near the back and squint to avoid noticing some truly egregious lip-non-synching , but otherwise the production is suitably elegant . 3 +101991 5369 Audiences are advised to sit near the back and squint to avoid noticing some truly egregious lip-non-synching , but otherwise the production is suitably elegant 2 +101992 5369 Audiences are advised to sit near the back and squint to avoid noticing some truly egregious lip-non-synching , but 1 +101993 5369 Audiences are advised to sit near the back and squint to avoid noticing some truly egregious lip-non-synching , 1 +101994 5369 Audiences are advised to sit near the back and squint to avoid noticing some truly egregious lip-non-synching 0 +101995 5369 are advised to sit near the back and squint to avoid noticing some truly egregious lip-non-synching 1 +101996 5369 advised to sit near the back and squint to avoid noticing some truly egregious lip-non-synching 1 +101997 5369 advised 2 +101998 5369 to sit near the back and squint to avoid noticing some truly egregious lip-non-synching 2 +101999 5369 sit near the back and squint to avoid noticing some truly egregious lip-non-synching 0 +102000 5369 sit near the back and 2 +102001 5369 sit near the back 1 +102002 5369 near the back 2 +102003 5369 squint to avoid noticing some truly egregious lip-non-synching 1 +102004 5369 squint 2 +102005 5369 to avoid noticing some truly egregious lip-non-synching 1 +102006 5369 avoid noticing some truly egregious lip-non-synching 1 +102007 5369 noticing some truly egregious lip-non-synching 1 +102008 5369 noticing 2 +102009 5369 some truly egregious lip-non-synching 2 +102010 5369 truly egregious lip-non-synching 1 +102011 5369 truly egregious 1 +102012 5369 egregious 2 +102013 5369 lip-non-synching 2 +102014 5369 otherwise the production is suitably elegant 3 +102015 5369 the production is suitably elegant 3 +102016 5369 is suitably elegant 3 +102017 5369 suitably elegant 3 +102018 5370 This rough trade Punch-and-Judy act did n't play well then and it plays worse now . 2 +102019 5370 This rough trade Punch-and-Judy act did n't play well then and it plays worse now 1 +102020 5370 This rough trade Punch-and-Judy act did n't play well then and 2 +102021 5370 This rough trade Punch-and-Judy act did n't play well then 1 +102022 5370 This rough trade Punch-and-Judy act 2 +102023 5370 rough trade Punch-and-Judy act 2 +102024 5370 trade Punch-and-Judy act 2 +102025 5370 Punch-and-Judy act 2 +102026 5370 Punch-and-Judy 2 +102027 5370 did n't play well then 1 +102028 5370 play well then 2 +102029 5370 it plays worse now 0 +102030 5370 plays worse now 1 +102031 5370 plays worse 1 +102032 5371 Whether our action-and-popcorn obsessed culture will embrace this engaging and literate psychodrama is n't much of a mystery , unfortunately . 2 +102033 5371 Whether our action-and-popcorn obsessed culture will embrace this engaging and literate psychodrama 3 +102034 5371 our action-and-popcorn obsessed culture will embrace this engaging and literate psychodrama 3 +102035 5371 our action-and-popcorn obsessed culture 2 +102036 5371 action-and-popcorn obsessed culture 2 +102037 5371 action-and-popcorn 2 +102038 5371 obsessed culture 2 +102039 5371 obsessed 2 +102040 5371 will embrace this engaging and literate psychodrama 3 +102041 5371 embrace this engaging and literate psychodrama 3 +102042 5371 this engaging and literate psychodrama 3 +102043 5371 engaging and literate psychodrama 3 +102044 5371 engaging and literate 3 +102045 5371 is n't much of a mystery , unfortunately . 1 +102046 5371 is n't much of a mystery , unfortunately 2 +102047 5371 is n't much of a mystery , 1 +102048 5371 is n't much of a mystery 2 +102049 5371 much of a mystery 2 +102050 5371 of a mystery 3 +102051 5372 A quasi-documentary by French filmmaker Karim Dridi that celebrates the hardy spirit of Cuban music . 3 +102052 5372 A quasi-documentary by French filmmaker Karim Dridi that celebrates the hardy spirit of Cuban music 3 +102053 5372 A quasi-documentary 2 +102054 5372 quasi-documentary 3 +102055 5372 by French filmmaker Karim Dridi that celebrates the hardy spirit of Cuban music 3 +102056 5372 French filmmaker Karim Dridi that celebrates the hardy spirit of Cuban music 3 +102057 5372 French filmmaker Karim Dridi 2 +102058 5372 filmmaker Karim Dridi 2 +102059 5372 Karim Dridi 2 +102060 5372 Karim 2 +102061 5372 Dridi 2 +102062 5372 that celebrates the hardy spirit of Cuban music 2 +102063 5372 celebrates the hardy spirit of Cuban music 3 +102064 5372 the hardy spirit of Cuban music 3 +102065 5372 the hardy spirit 3 +102066 5372 hardy spirit 2 +102067 5372 of Cuban music 2 +102068 5372 Cuban music 2 +102069 5372 Cuban 2 +102070 5373 The only question ... is to determine how well the schmaltz is manufactured -- to assess the quality of the manipulative engineering . 1 +102071 5373 The only question 2 +102072 5373 only question 2 +102073 5373 ... is to determine how well the schmaltz is manufactured -- to assess the quality of the manipulative engineering . 2 +102074 5373 is to determine how well the schmaltz is manufactured -- to assess the quality of the manipulative engineering . 2 +102075 5373 is to determine how well the schmaltz is manufactured -- to assess the quality of the manipulative engineering 2 +102076 5373 to determine how well the schmaltz is manufactured -- to assess the quality of the manipulative engineering 2 +102077 5373 determine how well the schmaltz is manufactured -- to assess the quality of the manipulative engineering 1 +102078 5373 how well the schmaltz is manufactured -- to assess the quality of the manipulative engineering 1 +102079 5373 how well the schmaltz is manufactured 2 +102080 5373 the schmaltz is manufactured 1 +102081 5373 the schmaltz 2 +102082 5373 is manufactured 2 +102083 5373 -- to assess the quality of the manipulative engineering 2 +102084 5373 to assess the quality of the manipulative engineering 2 +102085 5373 assess the quality of the manipulative engineering 2 +102086 5373 assess 2 +102087 5373 the quality of the manipulative engineering 2 +102088 5373 the quality 2 +102089 5373 of the manipulative engineering 2 +102090 5373 the manipulative engineering 2 +102091 5373 manipulative engineering 2 +102092 5374 Solaris is rigid and evasive in ways that Soderbergh 's best films , `` Erin Brockovich , '' `` Out of Sight '' and `` Ocean 's Eleven , '' never were . 4 +102093 5374 Solaris is rigid and evasive in ways that Soderbergh 's best films , `` Erin Brockovich , '' `` Out of Sight '' and `` Ocean 's Eleven , '' 2 +102094 5374 is rigid and evasive in ways that Soderbergh 's best films , `` Erin Brockovich , '' `` Out of Sight '' and `` Ocean 's Eleven , '' 3 +102095 5374 is rigid and evasive in ways 1 +102096 5374 rigid and evasive in ways 1 +102097 5374 rigid and evasive 1 +102098 5374 rigid and 1 +102099 5374 evasive 1 +102100 5374 that Soderbergh 's best films , `` Erin Brockovich , '' `` Out of Sight '' and `` Ocean 's Eleven , '' 2 +102101 5374 Soderbergh 's best films , `` Erin Brockovich , '' `` Out of Sight '' and `` Ocean 's Eleven , '' 4 +102102 5374 Soderbergh 's best films , `` Erin Brockovich , '' `` Out of Sight '' and 3 +102103 5374 Soderbergh 's best films , `` Erin Brockovich , '' `` Out of Sight '' 3 +102104 5374 Soderbergh 's best films , `` Erin Brockovich , '' 3 +102105 5374 Soderbergh 's best films , `` Erin Brockovich , 3 +102106 5374 Soderbergh 's best films , `` Erin Brockovich 3 +102107 5374 Soderbergh 's best films , `` 4 +102108 5374 Soderbergh 's best films , 3 +102109 5374 Soderbergh 's best films 4 +102110 5374 Erin Brockovich 2 +102111 5374 Erin 2 +102112 5374 Brockovich 2 +102113 5374 `` Out of Sight '' 2 +102114 5374 Out of Sight '' 2 +102115 5374 Out of Sight 3 +102116 5374 of Sight 2 +102117 5374 `` Ocean 's Eleven , '' 2 +102118 5374 Ocean 's Eleven , '' 2 +102119 5374 's Eleven , '' 2 +102120 5374 's Eleven , 2 +102121 5374 's Eleven 2 +102122 5374 Eleven 2 +102123 5374 never were . 2 +102124 5375 It 's likely that whatever you thought of the first production -- pro or con -- you 'll likely think of this one . 2 +102125 5375 's likely that whatever you thought of the first production -- pro or con -- you 'll likely think of this one . 2 +102126 5375 's likely that whatever you thought of the first production -- pro or con -- you 'll likely think of this one 2 +102127 5375 's likely 2 +102128 5375 that whatever you thought of the first production -- pro or con -- you 'll likely think of this one 2 +102129 5375 whatever you thought of the first production -- pro or con -- you 'll likely think of this one 1 +102130 5375 whatever you thought of the first production -- pro or con -- 2 +102131 5375 you thought of the first production -- pro or con -- 2 +102132 5375 thought of the first production -- pro or con -- 2 +102133 5375 of the first production -- pro or con -- 2 +102134 5375 the first production -- pro or con -- 2 +102135 5375 the first production 2 +102136 5375 first production 2 +102137 5375 -- pro or con -- 2 +102138 5375 pro or con -- 2 +102139 5375 pro or con 2 +102140 5375 pro or 2 +102141 5375 pro 2 +102142 5375 you 'll likely think of this one 2 +102143 5375 'll likely think of this one 2 +102144 5375 'll likely 2 +102145 5375 think of this one 2 +102146 5375 of this one 2 +102147 5376 ... familiar and predictable , and 4\/5ths of it might as well have come from a Xerox machine rather than -LRB- writer-director -RRB- Franc . 1 +102148 5376 familiar and predictable , and 4\/5ths of it might as well have come from a Xerox machine rather than -LRB- writer-director -RRB- Franc . 0 +102149 5376 familiar and predictable , and 4\/5ths of it 1 +102150 5376 familiar and predictable , and 1 +102151 5376 familiar and predictable , 1 +102152 5376 familiar and predictable 1 +102153 5376 familiar and 2 +102154 5376 4\/5ths of it 2 +102155 5376 4\/5ths 2 +102156 5376 might as well have come from a Xerox machine rather than -LRB- writer-director -RRB- Franc . 0 +102157 5376 might as well have come from a Xerox machine rather than -LRB- writer-director -RRB- Franc 1 +102158 5376 have come from a Xerox machine rather than -LRB- writer-director -RRB- Franc 1 +102159 5376 come from a Xerox machine rather than -LRB- writer-director -RRB- Franc 0 +102160 5376 from a Xerox machine rather than -LRB- writer-director -RRB- Franc 1 +102161 5376 a Xerox machine rather than -LRB- writer-director -RRB- Franc 1 +102162 5376 a Xerox machine rather than 2 +102163 5376 a Xerox machine 1 +102164 5376 Xerox machine 2 +102165 5376 -LRB- writer-director -RRB- Franc 2 +102166 5376 writer-director -RRB- Franc 2 +102167 5376 -RRB- Franc 2 +102168 5376 Franc 2 +102169 5377 A movie just for Friday fans , critics be damned . 3 +102170 5377 A movie just for Friday fans 2 +102171 5377 A movie just 2 +102172 5377 for Friday fans 2 +102173 5377 Friday fans 2 +102174 5377 , critics be damned . 2 +102175 5377 critics be damned . 3 +102176 5377 be damned . 2 +102177 5378 If you come from a family that eats , meddles , argues , laughs , kibbitzes and fights together , then go see this delightful comedy . 3 +102178 5378 If you come from a family that eats , meddles , argues , laughs , kibbitzes and fights together 2 +102179 5378 you come from a family that eats , meddles , argues , laughs , kibbitzes and fights together 1 +102180 5378 come from a family that eats , meddles , argues , laughs , kibbitzes and fights together 3 +102181 5378 come from a family that eats , meddles , argues , laughs , kibbitzes and fights 2 +102182 5378 from a family that eats , meddles , argues , laughs , kibbitzes and fights 2 +102183 5378 a family that eats , meddles , argues , laughs , kibbitzes and fights 2 +102184 5378 that eats , meddles , argues , laughs , kibbitzes and fights 2 +102185 5378 eats , meddles , argues , laughs , kibbitzes and fights 3 +102186 5378 eats , meddles , argues , laughs , kibbitzes and 2 +102187 5378 eats , meddles , argues , laughs , kibbitzes 3 +102188 5378 eats , meddles , argues , laughs , 2 +102189 5378 eats , meddles , argues , laughs 2 +102190 5378 eats , meddles , argues , 2 +102191 5378 eats , meddles , argues 2 +102192 5378 eats , meddles , 2 +102193 5378 eats , meddles 2 +102194 5378 eats , 2 +102195 5378 eats 2 +102196 5378 meddles 2 +102197 5378 argues 1 +102198 5378 kibbitzes 2 +102199 5378 , then go see this delightful comedy . 3 +102200 5378 then go see this delightful comedy . 3 +102201 5378 go see this delightful comedy . 4 +102202 5378 go see this delightful comedy 3 +102203 5378 see this delightful comedy 4 +102204 5378 this delightful comedy 3 +102205 5378 delightful comedy 4 +102206 5379 Laconic and very stilted in its dialogue , this indie flick never found its audience , probably because it 's extremely hard to relate to any of the characters . 1 +102207 5379 Laconic and very stilted in its dialogue 2 +102208 5379 Laconic and 1 +102209 5379 Laconic 2 +102210 5379 very stilted in its dialogue 0 +102211 5379 stilted in its dialogue 2 +102212 5379 in its dialogue 2 +102213 5379 its dialogue 2 +102214 5379 , this indie flick never found its audience , probably because it 's extremely hard to relate to any of the characters . 1 +102215 5379 this indie flick never found its audience , probably because it 's extremely hard to relate to any of the characters . 0 +102216 5379 this indie flick 2 +102217 5379 indie flick 2 +102218 5379 never found its audience , probably because it 's extremely hard to relate to any of the characters . 1 +102219 5379 found its audience , probably because it 's extremely hard to relate to any of the characters . 0 +102220 5379 found its audience , probably because it 's extremely hard to relate to any of the characters 2 +102221 5379 found its audience , 3 +102222 5379 found its audience 2 +102223 5379 probably because it 's extremely hard to relate to any of the characters 1 +102224 5379 because it 's extremely hard to relate to any of the characters 2 +102225 5379 it 's extremely hard to relate to any of the characters 2 +102226 5379 's extremely hard to relate to any of the characters 1 +102227 5379 's extremely hard 2 +102228 5379 extremely hard 2 +102229 5379 to relate to any of the characters 2 +102230 5379 relate to any of the characters 2 +102231 5379 to any of the characters 2 +102232 5379 any of the characters 2 +102233 5380 The movie does such an excellent job of critiquing itself at every faltering half-step of its development that criticizing feels more like commiserating . 1 +102234 5380 does such an excellent job of critiquing itself at every faltering half-step of its development that criticizing feels more like commiserating . 1 +102235 5380 does such an excellent job of critiquing itself at every faltering half-step of its development that criticizing feels more like commiserating 2 +102236 5380 such an excellent job of critiquing itself at every faltering half-step of its development that criticizing feels more like commiserating 1 +102237 5380 such an excellent job 3 +102238 5380 an excellent job 4 +102239 5380 excellent job 4 +102240 5380 of critiquing itself at every faltering half-step of its development that criticizing feels more like commiserating 1 +102241 5380 critiquing itself at every faltering half-step of its development that criticizing feels more like commiserating 2 +102242 5380 critiquing itself at every faltering half-step of its development 1 +102243 5380 critiquing itself 2 +102244 5380 critiquing 2 +102245 5380 at every faltering half-step of its development 1 +102246 5380 every faltering half-step of its development 1 +102247 5380 every faltering half-step 1 +102248 5380 faltering half-step 1 +102249 5380 faltering 1 +102250 5380 half-step 1 +102251 5380 of its development 2 +102252 5380 its development 2 +102253 5380 that criticizing feels more like commiserating 1 +102254 5380 criticizing feels more like commiserating 2 +102255 5380 criticizing 2 +102256 5380 feels more like commiserating 2 +102257 5380 like commiserating 2 +102258 5380 commiserating 2 +102259 5381 ... a solid , unassuming drama . 3 +102260 5381 a solid , unassuming drama . 3 +102261 5381 a solid , unassuming drama 3 +102262 5381 a solid , 3 +102263 5381 a solid 2 +102264 5381 unassuming drama 2 +102265 5382 Much of this slick and sprightly CGI feature is sufficiently funny to amuse even the most resolutely unreligious parents who escort their little ones to megaplex screenings . 3 +102266 5382 Much of this slick and sprightly CGI feature 3 +102267 5382 of this slick and sprightly CGI feature 3 +102268 5382 this slick and sprightly CGI feature 3 +102269 5382 slick and sprightly CGI feature 3 +102270 5382 slick and sprightly 2 +102271 5382 sprightly 3 +102272 5382 CGI feature 2 +102273 5382 is sufficiently funny to amuse even the most resolutely unreligious parents who escort their little ones to megaplex screenings . 3 +102274 5382 is sufficiently funny to amuse even the most resolutely unreligious parents who escort their little ones to megaplex screenings 3 +102275 5382 is sufficiently funny 3 +102276 5382 sufficiently funny 2 +102277 5382 sufficiently 3 +102278 5382 to amuse even the most resolutely unreligious parents who escort their little ones to megaplex screenings 3 +102279 5382 amuse even the most resolutely unreligious parents who escort their little ones to megaplex screenings 3 +102280 5382 amuse even 3 +102281 5382 amuse 2 +102282 5382 the most resolutely unreligious parents who escort their little ones to megaplex screenings 2 +102283 5382 the most resolutely unreligious parents 1 +102284 5382 most resolutely unreligious parents 2 +102285 5382 most resolutely unreligious 2 +102286 5382 resolutely unreligious 2 +102287 5382 unreligious 1 +102288 5382 who escort their little ones to megaplex screenings 2 +102289 5382 escort their little ones to megaplex screenings 2 +102290 5382 escort their little ones 2 +102291 5382 escort 2 +102292 5382 their little ones 2 +102293 5382 little ones 2 +102294 5382 to megaplex screenings 2 +102295 5382 megaplex screenings 2 +102296 5383 No big hairy deal . 2 +102297 5383 big hairy deal . 2 +102298 5383 hairy deal . 2 +102299 5383 hairy 2 +102300 5383 deal . 2 +102301 5384 The package in which this fascinating -- and timely -- content comes wrapped is disappointingly generic . 1 +102302 5384 The package in which this fascinating -- and timely -- content comes wrapped 3 +102303 5384 The package 2 +102304 5384 in which this fascinating -- and timely -- content comes wrapped 3 +102305 5384 this fascinating -- and timely -- content comes wrapped 3 +102306 5384 this fascinating -- and timely -- content 3 +102307 5384 fascinating -- and timely -- content 3 +102308 5384 fascinating -- and timely -- 4 +102309 5384 -- and timely -- 3 +102310 5384 -- and timely 3 +102311 5384 comes wrapped 2 +102312 5384 is disappointingly generic . 0 +102313 5384 is disappointingly generic 0 +102314 5384 disappointingly generic 0 +102315 5385 Sparse but oddly compelling . 3 +102316 5385 Sparse but oddly compelling 3 +102317 5385 but oddly compelling 3 +102318 5386 For most of its footage , the new thriller proves that director M. Night Shyamalan can weave an eerie spell and that Mel Gibson can gasp , shudder and even tremble without losing his machismo . 4 +102319 5386 For most of its footage 2 +102320 5386 most of its footage 2 +102321 5386 of its footage 2 +102322 5386 its footage 2 +102323 5386 , the new thriller proves that director M. Night Shyamalan can weave an eerie spell and that Mel Gibson can gasp , shudder and even tremble without losing his machismo . 3 +102324 5386 the new thriller proves that director M. Night Shyamalan can weave an eerie spell and that Mel Gibson can gasp , shudder and even tremble without losing his machismo . 4 +102325 5386 the new thriller 2 +102326 5386 proves that director M. Night Shyamalan can weave an eerie spell and that Mel Gibson can gasp , shudder and even tremble without losing his machismo . 3 +102327 5386 proves that director M. Night Shyamalan can weave an eerie spell and that Mel Gibson can gasp , shudder and even tremble without losing his machismo 4 +102328 5386 that director M. Night Shyamalan can weave an eerie spell and that Mel Gibson can gasp , shudder and even tremble without losing his machismo 3 +102329 5386 that director M. Night Shyamalan can weave an eerie spell and 3 +102330 5386 that director M. Night Shyamalan can weave an eerie spell 2 +102331 5386 director M. Night Shyamalan can weave an eerie spell 3 +102332 5386 director M. Night Shyamalan 2 +102333 5386 M. Night Shyamalan 2 +102334 5386 Night Shyamalan 2 +102335 5386 can weave an eerie spell 2 +102336 5386 weave an eerie spell 2 +102337 5386 an eerie spell 2 +102338 5386 eerie spell 2 +102339 5386 that Mel Gibson can gasp , shudder and even tremble without losing his machismo 3 +102340 5386 Mel Gibson can gasp , shudder and even tremble without losing his machismo 3 +102341 5386 Mel Gibson 2 +102342 5386 Gibson 2 +102343 5386 can gasp , shudder and even tremble without losing his machismo 3 +102344 5386 gasp , shudder and even tremble without losing his machismo 3 +102345 5386 gasp , shudder and even 2 +102346 5386 gasp , shudder and 2 +102347 5386 gasp , shudder 1 +102348 5386 gasp , 2 +102349 5386 shudder 2 +102350 5386 tremble without losing his machismo 3 +102351 5386 tremble 2 +102352 5386 without losing his machismo 2 +102353 5386 losing his machismo 2 +102354 5386 his machismo 3 +102355 5387 It 's mildly interesting to ponder the peculiar American style of justice that plays out here , but it 's so muddled and derivative that few will bother thinking it all through . 1 +102356 5387 It 's mildly interesting to ponder the peculiar American style of justice that plays out here , but it 's so muddled and derivative that few will bother thinking it all through 1 +102357 5387 It 's mildly interesting to ponder the peculiar American style of justice that plays out here , but 3 +102358 5387 It 's mildly interesting to ponder the peculiar American style of justice that plays out here , 3 +102359 5387 It 's mildly interesting to ponder the peculiar American style of justice that plays out here 2 +102360 5387 's mildly interesting to ponder the peculiar American style of justice that plays out here 3 +102361 5387 's mildly interesting 3 +102362 5387 mildly interesting 3 +102363 5387 to ponder the peculiar American style of justice that plays out here 2 +102364 5387 ponder the peculiar American style of justice that plays out here 3 +102365 5387 the peculiar American style of justice that plays out here 2 +102366 5387 the peculiar American style of justice 3 +102367 5387 the peculiar American style 2 +102368 5387 peculiar American style 2 +102369 5387 American style 2 +102370 5387 of justice 3 +102371 5387 that plays out here 2 +102372 5387 plays out here 2 +102373 5387 it 's so muddled and derivative that few will bother thinking it all through 2 +102374 5387 's so muddled and derivative that few will bother thinking it all through 1 +102375 5387 so muddled and derivative that few will bother thinking it all through 0 +102376 5387 muddled and derivative that few will bother thinking it all through 1 +102377 5387 muddled and derivative 1 +102378 5387 muddled and 1 +102379 5387 that few will bother thinking it all through 1 +102380 5387 few will bother thinking it all through 2 +102381 5387 will bother thinking it all through 2 +102382 5387 bother thinking it all through 1 +102383 5387 thinking it all through 2 +102384 5387 thinking it 2 +102385 5387 all through 2 +102386 5388 Feardotcom 's thrills are all cheap , but they mostly work . 2 +102387 5388 Feardotcom 's thrills are all cheap , but they mostly work 2 +102388 5388 Feardotcom 's thrills are all cheap , but 2 +102389 5388 Feardotcom 's thrills are all cheap , 0 +102390 5388 Feardotcom 's thrills are all cheap 0 +102391 5388 Feardotcom 's thrills 3 +102392 5388 Feardotcom 's 2 +102393 5388 are all cheap 1 +102394 5388 they mostly work 2 +102395 5388 mostly work 2 +102396 5389 You try to guess the order in which the kids in the house will be gored . 1 +102397 5389 try to guess the order in which the kids in the house will be gored . 2 +102398 5389 try to guess the order in which the kids in the house will be gored 1 +102399 5389 to guess the order in which the kids in the house will be gored 1 +102400 5389 guess the order in which the kids in the house will be gored 2 +102401 5389 the order in which the kids in the house will be gored 2 +102402 5389 the order 2 +102403 5389 in which the kids in the house will be gored 1 +102404 5389 the kids in the house will be gored 2 +102405 5389 the kids in the house 2 +102406 5389 in the house 2 +102407 5389 the house 2 +102408 5389 will be gored 2 +102409 5389 be gored 2 +102410 5390 That the film opens with maggots crawling on a dead dog is not an out of place metaphor . 1 +102411 5390 That the film opens with maggots crawling on a dead dog 1 +102412 5390 the film opens with maggots crawling on a dead dog 1 +102413 5390 opens with maggots crawling on a dead dog 1 +102414 5390 with maggots crawling on a dead dog 0 +102415 5390 maggots crawling on a dead dog 1 +102416 5390 maggots 2 +102417 5390 crawling on a dead dog 2 +102418 5390 crawling 2 +102419 5390 on a dead dog 2 +102420 5390 a dead dog 2 +102421 5390 dead dog 1 +102422 5390 is not an out of place metaphor . 2 +102423 5390 is not an out of place metaphor 2 +102424 5390 an out of place metaphor 1 +102425 5390 an out 2 +102426 5390 of place metaphor 2 +102427 5390 place metaphor 2 +102428 5391 Not really a thriller so much as a movie for teens to laugh , groan and hiss at . 1 +102429 5391 really a thriller so much as a movie for teens to laugh , groan and hiss at . 2 +102430 5391 really a thriller so much as a movie for teens to laugh , groan and hiss at 2 +102431 5391 really a thriller so much 3 +102432 5391 really a thriller 3 +102433 5391 as a movie for teens to laugh , groan and hiss at 3 +102434 5391 a movie for teens to laugh , groan and hiss at 2 +102435 5391 a movie for teens to laugh , groan and hiss 2 +102436 5391 for teens to laugh , groan and hiss 3 +102437 5391 teens to laugh , groan and hiss 2 +102438 5391 to laugh , groan and hiss 3 +102439 5391 laugh , groan and hiss 2 +102440 5391 , groan and hiss 1 +102441 5391 groan and hiss 1 +102442 5391 groan and 3 +102443 5391 groan 1 +102444 5391 hiss 1 +102445 5392 Forget about one Oscar nomination for Julianne Moore this year - she should get all five . 4 +102446 5392 Forget about one Oscar nomination for Julianne Moore this year - she should get all five 4 +102447 5392 Forget about one Oscar nomination for Julianne Moore this year - 1 +102448 5392 Forget about one Oscar nomination for Julianne Moore this year 0 +102449 5392 about one Oscar nomination for Julianne Moore this year 2 +102450 5392 one Oscar nomination for Julianne Moore this year 3 +102451 5392 one Oscar nomination 4 +102452 5392 for Julianne Moore this year 2 +102453 5392 Julianne Moore this year 2 +102454 5392 Julianne Moore 2 +102455 5392 Julianne 2 +102456 5392 she should get all five 2 +102457 5392 should get all five 3 +102458 5392 get all five 3 +102459 5392 all five 2 +102460 5393 The boys ' sparring , like the succession of blows dumped on Guei , wears down the story 's more cerebral , and likable , plot elements . 2 +102461 5393 The boys ' sparring , like the succession of blows dumped on Guei , 2 +102462 5393 The boys ' sparring , like the succession of blows dumped on Guei 2 +102463 5393 The boys ' sparring , 3 +102464 5393 The boys ' sparring 2 +102465 5393 The boys ' 2 +102466 5393 sparring 2 +102467 5393 like the succession of blows dumped on Guei 2 +102468 5393 the succession of blows dumped on Guei 2 +102469 5393 the succession 2 +102470 5393 succession 2 +102471 5393 of blows dumped on Guei 2 +102472 5393 blows dumped on Guei 2 +102473 5393 dumped on Guei 2 +102474 5393 on Guei 2 +102475 5393 Guei 2 +102476 5393 wears down the story 's more cerebral , and likable , plot elements . 2 +102477 5393 wears down the story 's more cerebral , and likable , plot elements 1 +102478 5393 down the story 's more cerebral , and likable , plot elements 3 +102479 5393 the story 's more cerebral , and likable , plot elements 3 +102480 5393 more cerebral , and likable , plot elements 3 +102481 5393 more cerebral , and likable , 4 +102482 5393 more cerebral , and likable 3 +102483 5393 more cerebral , and 3 +102484 5393 more cerebral , 3 +102485 5393 more cerebral 2 +102486 5393 plot elements 2 +102487 5394 At its most basic , this cartoon adventure is that wind-in-the-hair exhilarating . 3 +102488 5394 At its most basic 2 +102489 5394 its most basic 2 +102490 5394 most basic 3 +102491 5394 , this cartoon adventure is that wind-in-the-hair exhilarating . 4 +102492 5394 this cartoon adventure is that wind-in-the-hair exhilarating . 3 +102493 5394 this cartoon adventure 2 +102494 5394 cartoon adventure 2 +102495 5394 is that wind-in-the-hair exhilarating . 4 +102496 5394 is that wind-in-the-hair exhilarating 4 +102497 5394 that wind-in-the-hair exhilarating 4 +102498 5394 wind-in-the-hair exhilarating 3 +102499 5394 wind-in-the-hair 2 +102500 5395 Simone is not a bad film . 3 +102501 5395 is not a bad film . 3 +102502 5395 is not a bad film 2 +102503 5396 Graphic sex may be what 's attracting audiences to Unfaithful , but gripping performances by Lane and Gere are what will keep them awake . 4 +102504 5396 Graphic sex may be what 's attracting audiences to Unfaithful , but gripping performances by Lane and Gere are what will keep them awake 3 +102505 5396 Graphic sex may be what 's attracting audiences to Unfaithful , but 2 +102506 5396 Graphic sex may be what 's attracting audiences to Unfaithful , 3 +102507 5396 Graphic sex may be what 's attracting audiences to Unfaithful 2 +102508 5396 Graphic sex 2 +102509 5396 may be what 's attracting audiences to Unfaithful 2 +102510 5396 be what 's attracting audiences to Unfaithful 2 +102511 5396 what 's attracting audiences to Unfaithful 3 +102512 5396 's attracting audiences to Unfaithful 3 +102513 5396 attracting audiences to Unfaithful 3 +102514 5396 attracting audiences 3 +102515 5396 attracting 3 +102516 5396 to Unfaithful 2 +102517 5396 gripping performances by Lane and Gere are what will keep them awake 3 +102518 5396 gripping performances by Lane and Gere 4 +102519 5396 by Lane and Gere 2 +102520 5396 Lane and Gere 2 +102521 5396 Lane and 3 +102522 5396 are what will keep them awake 2 +102523 5396 what will keep them awake 2 +102524 5396 will keep them awake 3 +102525 5396 keep them awake 2 +102526 5396 them awake 2 +102527 5397 The members manage to pronounce KOK exactly as you think they might , thus giving the cast ample opportunity to use that term as often as possible . 2 +102528 5397 manage to pronounce KOK exactly as you think they might , thus giving the cast ample opportunity to use that term as often as possible . 2 +102529 5397 manage to pronounce KOK exactly as you think they might , thus giving the cast ample opportunity to use that term as often as possible 2 +102530 5397 manage to pronounce KOK exactly as you think they might , 2 +102531 5397 manage to pronounce KOK exactly as you think they might 2 +102532 5397 to pronounce KOK exactly as you think they might 2 +102533 5397 pronounce KOK exactly as you think they might 2 +102534 5397 pronounce KOK exactly 2 +102535 5397 pronounce KOK 2 +102536 5397 pronounce 2 +102537 5397 KOK 2 +102538 5397 as you think they might 2 +102539 5397 you think they might 2 +102540 5397 think they might 2 +102541 5397 they might 2 +102542 5397 thus giving the cast ample opportunity to use that term as often as possible 2 +102543 5397 thus 3 +102544 5397 giving the cast ample opportunity to use that term as often as possible 2 +102545 5397 giving the cast 2 +102546 5397 ample opportunity to use that term as often as possible 2 +102547 5397 ample 3 +102548 5397 opportunity to use that term as often as possible 2 +102549 5397 to use that term as often as possible 2 +102550 5397 use that term as often as possible 2 +102551 5397 use that term 2 +102552 5397 that term 2 +102553 5397 as often as possible 2 +102554 5397 as often 2 +102555 5398 There may have been a good film in `` Trouble Every Day , '' but it is not what is on the screen . 1 +102556 5398 There may have been a good film in `` Trouble Every Day , '' but it is not what is on the screen 0 +102557 5398 There may have been a good film in `` Trouble Every Day , '' but 1 +102558 5398 There may have been a good film in `` Trouble Every Day , '' 1 +102559 5398 There may have been a good film in `` Trouble Every Day , 2 +102560 5398 There may have been a good film in `` Trouble Every Day 2 +102561 5398 may have been a good film in `` Trouble Every Day 1 +102562 5398 have been a good film in `` Trouble Every Day 2 +102563 5398 been a good film in `` Trouble Every Day 3 +102564 5398 a good film in `` Trouble Every Day 4 +102565 5398 a good film 3 +102566 5398 good film 4 +102567 5398 in `` Trouble Every Day 2 +102568 5398 it is not what is on the screen 2 +102569 5398 is not what is on the screen 2 +102570 5398 what is on the screen 2 +102571 5398 is on the screen 2 +102572 5399 Full Frontal had no effect and elicited no sympathies for any of the characters . 1 +102573 5399 had no effect and elicited no sympathies for any of the characters . 1 +102574 5399 had no effect and elicited no sympathies for any of the characters 0 +102575 5399 had no effect and 1 +102576 5399 had no effect 2 +102577 5399 no effect 2 +102578 5399 elicited no sympathies for any of the characters 2 +102579 5399 elicited no sympathies 2 +102580 5399 elicited 2 +102581 5399 no sympathies 2 +102582 5399 sympathies 2 +102583 5399 for any of the characters 2 +102584 5400 ... a bland murder-on-campus yawner . 0 +102585 5400 a bland murder-on-campus yawner . 1 +102586 5400 a bland murder-on-campus 1 +102587 5400 bland murder-on-campus 1 +102588 5400 murder-on-campus 2 +102589 5400 yawner . 1 +102590 5400 yawner 1 +102591 5401 The only problem is that , by the end , no one in the audience or the film seems to really care . 0 +102592 5401 The only problem 1 +102593 5401 only problem 2 +102594 5401 is that , by the end , no one in the audience or the film seems to really care . 1 +102595 5401 is that , by the end , no one in the audience or the film seems to really care 0 +102596 5401 that , by the end , no one in the audience or the film seems to really care 0 +102597 5401 , by the end , no one in the audience or the film seems to really care 0 +102598 5401 , by the end , 2 +102599 5401 by the end , 2 +102600 5401 no one in the audience or the film seems to really care 1 +102601 5401 no one in the audience or the film 2 +102602 5401 in the audience or the film 2 +102603 5401 the audience or the film 2 +102604 5401 the audience or 2 +102605 5401 seems to really care 3 +102606 5401 to really care 3 +102607 5401 really care 2 +102608 5402 The most consistently funny of the Austin Powers films . 3 +102609 5402 The most consistently funny of the Austin Powers films 4 +102610 5402 The most consistently funny 3 +102611 5402 of the Austin Powers films 3 +102612 5403 This franchise has not spawned a single good film . 0 +102613 5403 This franchise 2 +102614 5403 has not spawned a single good film . 0 +102615 5403 has not spawned a single good film 1 +102616 5403 spawned a single good film 2 +102617 5403 spawned 2 +102618 5403 a single good film 3 +102619 5403 single good film 3 +102620 5404 One of the most incoherent features in recent memory . 0 +102621 5404 One of the most incoherent 3 +102622 5404 of the most incoherent 2 +102623 5404 the most incoherent 1 +102624 5404 most incoherent 0 +102625 5404 features in recent memory . 2 +102626 5404 features in recent memory 2 +102627 5405 A compelling yarn , but not quite a ripping one . 3 +102628 5405 A compelling yarn , but not quite a ripping one 3 +102629 5405 A compelling yarn , but not quite a 3 +102630 5405 A compelling yarn , but not 2 +102631 5405 A compelling yarn , 2 +102632 5405 A compelling yarn 3 +102633 5405 compelling yarn 3 +102634 5405 quite a 2 +102635 5405 ripping one 2 +102636 5406 This is a visually stunning rumination on love , memory , history and the war between art and commerce . 3 +102637 5406 is a visually stunning rumination on love , memory , history and the war between art and commerce . 4 +102638 5406 is a visually stunning rumination on love , memory , history and the war between art and commerce 4 +102639 5406 a visually stunning rumination on love , memory , history and the war between art and commerce 3 +102640 5406 a visually stunning rumination 3 +102641 5406 visually stunning rumination 4 +102642 5406 visually stunning 4 +102643 5406 on love , memory , history and the war between art and commerce 2 +102644 5406 love , memory , history and the war between art and commerce 2 +102645 5406 love , memory , history and 3 +102646 5406 love , memory , history 3 +102647 5406 love , memory , 2 +102648 5406 love , memory 3 +102649 5406 the war between art and commerce 2 +102650 5406 between art and commerce 2 +102651 5406 art and commerce 3 +102652 5406 commerce 2 +102653 5407 If Signs is a good film , and it is , the essence of a great one is in there somewhere . 2 +102654 5407 If Signs is a good film , and it is 2 +102655 5407 Signs is a good film , and it is 4 +102656 5407 Signs is a good film , and 3 +102657 5407 Signs is a good film , 4 +102658 5407 Signs is a good film 4 +102659 5407 is a good film 4 +102660 5407 , the essence of a great one is in there somewhere . 3 +102661 5407 the essence of a great one is in there somewhere . 3 +102662 5407 the essence of a great one 3 +102663 5407 is in there somewhere . 2 +102664 5407 is in there somewhere 3 +102665 5407 is in there 2 +102666 5408 And that should tell you everything you need to know about All the Queen 's Men . 2 +102667 5408 that should tell you everything you need to know about All the Queen 's Men . 2 +102668 5408 should tell you everything you need to know about All the Queen 's Men . 2 +102669 5408 should tell you everything you need to know about All the Queen 's Men 2 +102670 5408 tell you everything you need to know about All the Queen 's Men 2 +102671 5408 everything you need to know about All the Queen 's Men 2 +102672 5408 you need to know about All the Queen 's Men 2 +102673 5408 need to know about All the Queen 's Men 2 +102674 5408 to know about All the Queen 's Men 2 +102675 5408 know about All the Queen 's Men 2 +102676 5408 about All the Queen 's Men 2 +102677 5409 - spy action flick with Antonio Banderas and Lucy Liu never comes together . 0 +102678 5409 spy action flick with Antonio Banderas and Lucy Liu never comes together . 1 +102679 5409 spy action flick with Antonio Banderas and Lucy Liu never comes together 1 +102680 5409 spy action flick with Antonio Banderas and 2 +102681 5409 spy action flick with Antonio Banderas 2 +102682 5409 spy action 2 +102683 5409 flick with Antonio Banderas 2 +102684 5409 with Antonio Banderas 2 +102685 5409 Antonio Banderas 3 +102686 5409 Banderas 2 +102687 5409 Lucy Liu never comes together 1 +102688 5409 Lucy Liu 2 +102689 5409 Lucy 2 +102690 5409 never comes together 1 +102691 5410 ` Dragonfly ' dwells on crossing-over mumbo jumbo , manipulative sentimentality , and sappy dialogue . 1 +102692 5410 Dragonfly ' dwells on crossing-over mumbo jumbo , manipulative sentimentality , and sappy dialogue . 1 +102693 5410 ' dwells on crossing-over mumbo jumbo , manipulative sentimentality , and sappy dialogue . 1 +102694 5410 dwells on crossing-over mumbo jumbo , manipulative sentimentality , and sappy dialogue . 0 +102695 5410 dwells on crossing-over mumbo jumbo , manipulative sentimentality , and sappy dialogue 1 +102696 5410 dwells 3 +102697 5410 on crossing-over mumbo jumbo , manipulative sentimentality , and sappy dialogue 1 +102698 5410 crossing-over mumbo jumbo , manipulative sentimentality , and sappy dialogue 2 +102699 5410 crossing-over mumbo jumbo , manipulative sentimentality , and 0 +102700 5410 crossing-over mumbo jumbo , manipulative sentimentality , 2 +102701 5410 crossing-over mumbo jumbo , manipulative sentimentality 0 +102702 5410 crossing-over mumbo jumbo , 2 +102703 5410 crossing-over mumbo jumbo 1 +102704 5410 crossing-over 3 +102705 5410 manipulative sentimentality 2 +102706 5410 sappy dialogue 1 +102707 5411 Sayles has an eye for the ways people of different ethnicities talk to and about others outside the group . 3 +102708 5411 has an eye for the ways people of different ethnicities talk to and about others outside the group . 3 +102709 5411 has an eye for the ways people of different ethnicities talk to and about others outside the group 2 +102710 5411 an eye for the ways people of different ethnicities talk to and about others outside the group 2 +102711 5411 for the ways people of different ethnicities talk to and about others outside the group 2 +102712 5411 the ways people of different ethnicities talk to and about others outside the group 2 +102713 5411 people of different ethnicities talk to and about others outside the group 2 +102714 5411 people of different ethnicities 2 +102715 5411 of different ethnicities 2 +102716 5411 different ethnicities 2 +102717 5411 ethnicities 2 +102718 5411 talk to and about others outside the group 2 +102719 5411 talk to and about others 2 +102720 5411 to and about others 2 +102721 5411 and about others 2 +102722 5411 and about 2 +102723 5411 outside the group 2 +102724 5411 the group 2 +102725 5412 It 's always fascinating to watch Marker the essayist at work . 3 +102726 5412 's always fascinating to watch Marker the essayist at work . 4 +102727 5412 's always fascinating to watch Marker the essayist at work 2 +102728 5412 fascinating to watch Marker the essayist at work 4 +102729 5412 to watch Marker the essayist at work 2 +102730 5412 watch Marker the essayist at work 2 +102731 5412 Marker the essayist at work 2 +102732 5412 Marker 2 +102733 5412 the essayist at work 2 +102734 5412 the essayist 2 +102735 5412 essayist 2 +102736 5412 at work 2 +102737 5413 `` Mr. Deeds '' is suitable summer entertainment that offers escapism without requiring a great deal of thought . 3 +102738 5413 Mr. Deeds '' is suitable summer entertainment that offers escapism without requiring a great deal of thought . 3 +102739 5413 '' is suitable summer entertainment that offers escapism without requiring a great deal of thought . 3 +102740 5413 is suitable summer entertainment that offers escapism without requiring a great deal of thought . 3 +102741 5413 is suitable summer entertainment that offers escapism without requiring a great deal of thought 3 +102742 5413 suitable summer entertainment that offers escapism without requiring a great deal of thought 3 +102743 5413 suitable summer entertainment 3 +102744 5413 that offers escapism without requiring a great deal of thought 2 +102745 5413 offers escapism without requiring a great deal of thought 2 +102746 5413 offers escapism 3 +102747 5413 without requiring a great deal of thought 2 +102748 5413 requiring a great deal of thought 3 +102749 5413 requiring 2 +102750 5413 a great deal of thought 3 +102751 5413 of thought 2 +102752 5414 Just about the best straight-up , old-school horror film of the last 15 years . 4 +102753 5414 Just about the best straight-up , old-school horror film of the last 15 years 3 +102754 5414 Just about the best straight-up , 4 +102755 5414 Just about the best straight-up 3 +102756 5414 about the best straight-up 3 +102757 5414 the best straight-up 3 +102758 5414 best straight-up 3 +102759 5414 straight-up 2 +102760 5414 old-school horror film of the last 15 years 2 +102761 5414 old-school horror film 2 +102762 5414 of the last 15 years 2 +102763 5414 the last 15 years 2 +102764 5414 last 15 years 3 +102765 5415 The verdict : Two bodies and hardly a laugh between them . 1 +102766 5415 The verdict : Two bodies and hardly a laugh between them 1 +102767 5415 The verdict : 2 +102768 5415 The verdict 2 +102769 5415 Two bodies and hardly a laugh between them 1 +102770 5415 Two bodies and hardly 2 +102771 5415 Two bodies and 2 +102772 5415 Two bodies 2 +102773 5415 a laugh between them 3 +102774 5416 -LRB- D -RRB- espite its familiar subject matter , Ice Age is consistently amusing and engrossing ... 3 +102775 5416 -LRB- D -RRB- espite its familiar subject matter 2 +102776 5416 -LRB- D -RRB- 2 +102777 5416 D -RRB- 3 +102778 5416 D 2 +102779 5416 espite its familiar subject matter 2 +102780 5416 espite 2 +102781 5416 its familiar subject matter 2 +102782 5416 familiar subject matter 2 +102783 5416 familiar subject 2 +102784 5416 , Ice Age is consistently amusing and engrossing ... 4 +102785 5416 Ice Age is consistently amusing and engrossing ... 4 +102786 5416 is consistently amusing and engrossing ... 3 +102787 5416 is consistently amusing and engrossing 4 +102788 5416 is consistently 3 +102789 5416 amusing and engrossing 3 +102790 5417 Here is a divine monument to a single man 's struggle to regain his life , his dignity and his music . 4 +102791 5417 is a divine monument to a single man 's struggle to regain his life , his dignity and his music . 4 +102792 5417 is a divine monument to a single man 's struggle to regain his life , his dignity and his music 4 +102793 5417 a divine monument to a single man 's struggle to regain his life , his dignity and his music 3 +102794 5417 a divine monument 3 +102795 5417 divine monument 3 +102796 5417 monument 2 +102797 5417 to a single man 's struggle to regain his life , his dignity and his music 2 +102798 5417 a single man 's struggle to regain his life , his dignity and his music 3 +102799 5417 a single man 's 2 +102800 5417 single man 's 2 +102801 5417 struggle to regain his life , his dignity and his music 2 +102802 5417 to regain his life , his dignity and his music 1 +102803 5417 regain his life , his dignity and his music 2 +102804 5417 his life , his dignity and his music 3 +102805 5417 his life , his dignity and 2 +102806 5417 his life , his dignity 2 +102807 5417 his life , 2 +102808 5417 his dignity 2 +102809 5417 his music 2 +102810 5418 Schaeffer is n't in this film , which may be why it works as well as it does . 3 +102811 5418 is n't in this film , which may be why it works as well as it does . 3 +102812 5418 is n't in this film , which may be why it works as well as it does 3 +102813 5418 in this film , which may be why it works as well as it does 4 +102814 5418 this film , which may be why it works as well as it does 3 +102815 5418 which may be why it works as well as it does 3 +102816 5418 may be why it works as well as it does 2 +102817 5418 be why it works as well as it does 3 +102818 5418 why it works as well as it does 3 +102819 5418 why it works as well 2 +102820 5418 why it works 3 +102821 5418 it works 3 +102822 5419 Your children will be occupied for 72 minutes . 3 +102823 5419 Your children 2 +102824 5419 will be occupied for 72 minutes . 3 +102825 5419 will be occupied for 72 minutes 2 +102826 5419 be occupied for 72 minutes 1 +102827 5419 occupied for 72 minutes 2 +102828 5419 occupied 2 +102829 5419 for 72 minutes 2 +102830 5419 72 minutes 2 +102831 5419 72 2 +102832 5420 This hastily mounted production exists only to capitalize on Hopkins ' inclination to play Hannibal Lecter again , even though Harris has no immediate inclination to provide a fourth book . 0 +102833 5420 hastily mounted production exists only to capitalize on Hopkins ' inclination to play Hannibal Lecter again , even though Harris has no immediate inclination to provide a fourth book . 1 +102834 5420 mounted production exists only to capitalize on Hopkins ' inclination to play Hannibal Lecter again , even though Harris has no immediate inclination to provide a fourth book . 2 +102835 5420 mounted production exists only to capitalize on Hopkins ' inclination to play Hannibal Lecter again , even though Harris has no immediate inclination to provide a fourth book 2 +102836 5420 production exists only to capitalize on Hopkins ' inclination to play Hannibal Lecter again , even though Harris has no immediate inclination to provide a fourth book 1 +102837 5420 exists only to capitalize on Hopkins ' inclination to play Hannibal Lecter again , even though Harris has no immediate inclination to provide a fourth book 2 +102838 5420 exists only 2 +102839 5420 to capitalize on Hopkins ' inclination to play Hannibal Lecter again , even though Harris has no immediate inclination to provide a fourth book 2 +102840 5420 capitalize on Hopkins ' inclination to play Hannibal Lecter again , even though Harris has no immediate inclination to provide a fourth book 2 +102841 5420 on Hopkins ' inclination to play Hannibal Lecter again , even though Harris has no immediate inclination to provide a fourth book 2 +102842 5420 Hopkins ' inclination to play Hannibal Lecter again , even though Harris has no immediate inclination to provide a fourth book 2 +102843 5420 Hopkins ' 2 +102844 5420 inclination to play Hannibal Lecter again , even though Harris has no immediate inclination to provide a fourth book 2 +102845 5420 to play Hannibal Lecter again , even though Harris has no immediate inclination to provide a fourth book 1 +102846 5420 play Hannibal Lecter again , even though Harris has no immediate inclination to provide a fourth book 2 +102847 5420 play Hannibal Lecter again , 2 +102848 5420 play Hannibal Lecter again 2 +102849 5420 play Hannibal Lecter 3 +102850 5420 Hannibal Lecter 2 +102851 5420 Lecter 2 +102852 5420 even though Harris has no immediate inclination to provide a fourth book 2 +102853 5420 though Harris has no immediate inclination to provide a fourth book 2 +102854 5420 Harris has no immediate inclination to provide a fourth book 2 +102855 5420 has no immediate inclination to provide a fourth book 2 +102856 5420 no immediate inclination to provide a fourth book 2 +102857 5420 immediate inclination to provide a fourth book 3 +102858 5420 inclination to provide a fourth book 2 +102859 5420 to provide a fourth book 2 +102860 5420 provide a fourth book 2 +102861 5420 a fourth book 2 +102862 5420 fourth book 2 +102863 5421 A pint-sized ` Goodfellas ' designed to appeal to the younger set , it 's not a very good movie in any objective sense , but it does mostly hold one 's interest . 2 +102864 5421 A pint-sized ` Goodfellas ' designed to appeal to the younger set , it 's not a very good movie in any objective sense , but it does mostly hold one 's interest 2 +102865 5421 A pint-sized ` Goodfellas ' designed to appeal to the younger set , it 's not a very good movie in any objective sense , but 2 +102866 5421 A pint-sized ` Goodfellas ' designed to appeal to the younger set , it 's not a very good movie in any objective sense , 0 +102867 5421 A pint-sized ` Goodfellas ' designed to appeal to the younger set , it 's not a very good movie in any objective sense 1 +102868 5421 A pint-sized ` Goodfellas ' designed to appeal to the younger set 3 +102869 5421 A pint-sized ` Goodfellas ' 3 +102870 5421 pint-sized ` Goodfellas ' 2 +102871 5421 pint-sized 2 +102872 5421 ` Goodfellas ' 2 +102873 5421 Goodfellas ' 2 +102874 5421 designed to appeal to the younger set 2 +102875 5421 to appeal to the younger set 2 +102876 5421 appeal to the younger set 2 +102877 5421 to the younger set 2 +102878 5421 the younger set 2 +102879 5421 younger set 2 +102880 5421 , it 's not a very good movie in any objective sense 0 +102881 5421 it 's not a very good movie in any objective sense 0 +102882 5421 's not a very good movie in any objective sense 0 +102883 5421 a very good movie in any objective sense 4 +102884 5421 a very good movie 4 +102885 5421 very good movie 3 +102886 5421 in any objective sense 2 +102887 5421 any objective sense 2 +102888 5421 objective sense 2 +102889 5421 it does mostly hold one 's interest 3 +102890 5421 does mostly hold one 's interest 2 +102891 5421 does mostly 2 +102892 5421 hold one 's interest 2 +102893 5421 one 's interest 2 +102894 5422 This documentary is a dazzling , remarkably unpretentious reminder of what -LRB- Evans -RRB- had , lost , and got back . 4 +102895 5422 is a dazzling , remarkably unpretentious reminder of what -LRB- Evans -RRB- had , lost , and got back . 3 +102896 5422 is a dazzling , remarkably unpretentious reminder of what -LRB- Evans -RRB- had , lost , and got back 4 +102897 5422 a dazzling , remarkably unpretentious reminder of what -LRB- Evans -RRB- had , lost , and got back 3 +102898 5422 a dazzling , remarkably unpretentious reminder 3 +102899 5422 dazzling , remarkably unpretentious reminder 3 +102900 5422 dazzling , remarkably unpretentious 3 +102901 5422 , remarkably unpretentious 3 +102902 5422 remarkably unpretentious 3 +102903 5422 of what -LRB- Evans -RRB- had , lost , and got back 2 +102904 5422 what -LRB- Evans -RRB- had , lost , and got back 2 +102905 5422 -LRB- Evans -RRB- had , lost , and got back 2 +102906 5422 Evans -RRB- had , lost , and got back 3 +102907 5422 -RRB- had , lost , and got back 2 +102908 5422 had , lost , and got back 3 +102909 5422 had , lost , and 2 +102910 5422 had , lost , 2 +102911 5422 had , lost 2 +102912 5422 had , 2 +102913 5422 got back 2 +102914 5423 As earnest as a community-college advertisement , American Chai is enough to make you put away the guitar , sell the amp , and apply to medical school . 1 +102915 5423 As earnest as a community-college advertisement 1 +102916 5423 earnest as a community-college advertisement 1 +102917 5423 as a community-college advertisement 2 +102918 5423 a community-college advertisement 1 +102919 5423 community-college advertisement 1 +102920 5423 community-college 2 +102921 5423 advertisement 2 +102922 5423 , American Chai is enough to make you put away the guitar , sell the amp , and apply to medical school . 0 +102923 5423 American Chai is enough to make you put away the guitar , sell the amp , and apply to medical school . 2 +102924 5423 American Chai 2 +102925 5423 is enough to make you put away the guitar , sell the amp , and apply to medical school . 1 +102926 5423 is enough to make you put away the guitar , sell the amp , and apply to medical school 2 +102927 5423 enough to make you put away the guitar , sell the amp , and apply to medical school 3 +102928 5423 to make you put away the guitar , sell the amp , and apply to medical school 2 +102929 5423 make you put away the guitar , sell the amp , and apply to medical school 1 +102930 5423 you put away the guitar , sell the amp , and apply to medical school 1 +102931 5423 put away the guitar , sell the amp , and apply to medical school 2 +102932 5423 put away the guitar , sell the amp , and 1 +102933 5423 put away the guitar , sell the amp , 1 +102934 5423 put away the guitar , sell the amp 2 +102935 5423 put away the guitar , 3 +102936 5423 put away the guitar 2 +102937 5423 put away 1 +102938 5423 the guitar 2 +102939 5423 sell the amp 2 +102940 5423 the amp 2 +102941 5423 amp 2 +102942 5423 apply to medical school 2 +102943 5423 to medical school 2 +102944 5423 medical school 2 +102945 5424 A thoroughly enjoyable , heartfelt coming-of-age comedy . 3 +102946 5424 A thoroughly enjoyable , heartfelt 4 +102947 5424 thoroughly enjoyable , heartfelt 3 +102948 5424 , heartfelt 3 +102949 5424 coming-of-age comedy . 3 +102950 5424 coming-of-age comedy 2 +102951 5425 It 's better than The Phantom Menace . 3 +102952 5425 's better than The Phantom Menace . 3 +102953 5425 's better than The Phantom Menace 3 +102954 5425 better than The Phantom Menace 3 +102955 5425 than The Phantom Menace 2 +102956 5425 The Phantom Menace 2 +102957 5425 Phantom Menace 2 +102958 5425 Phantom 2 +102959 5426 An unintentional parody of every teen movie made in the last five years . 2 +102960 5426 An unintentional parody of every teen movie 2 +102961 5426 An unintentional parody 3 +102962 5426 unintentional parody 1 +102963 5426 of every teen movie 2 +102964 5426 every teen movie 2 +102965 5426 made in the last five years . 2 +102966 5426 made in the last five years 2 +102967 5426 in the last five years 2 +102968 5426 the last five years 2 +102969 5426 last five years 2 +102970 5427 This ludicrous film is predictable at every turn . 0 +102971 5427 This ludicrous film 0 +102972 5427 ludicrous film 0 +102973 5427 is predictable at every turn . 1 +102974 5427 is predictable at every turn 1 +102975 5427 predictable at every turn 1 +102976 5427 at every turn 2 +102977 5428 The movie is n't painfully bad , something to be ` fully experienced ' ; it 's just tediously bad , something to be fully forgotten . 1 +102978 5428 The movie is n't painfully bad , something to be ` fully experienced ' ; it 's just tediously bad , something to be fully forgotten 0 +102979 5428 The movie is n't painfully bad , something to be ` fully experienced ' ; 2 +102980 5428 The movie is n't painfully bad , something to be ` fully experienced ' 1 +102981 5428 is n't painfully bad , something to be ` fully experienced ' 1 +102982 5428 is n't painfully bad , 2 +102983 5428 is n't painfully bad 2 +102984 5428 something to be ` fully experienced ' 3 +102985 5428 to be ` fully experienced ' 2 +102986 5428 be ` fully experienced ' 2 +102987 5428 ` fully experienced ' 2 +102988 5428 fully experienced ' 2 +102989 5428 experienced ' 2 +102990 5428 it 's just tediously bad , something to be fully forgotten 1 +102991 5428 's just tediously bad , something to be fully forgotten 0 +102992 5428 's just tediously bad , 1 +102993 5428 's just tediously bad 0 +102994 5428 tediously bad 2 +102995 5428 something to be fully forgotten 0 +102996 5428 to be fully forgotten 1 +102997 5428 be fully forgotten 2 +102998 5428 fully forgotten 1 +102999 5429 This will go on so long as there are moviegoers anxious to see strange young guys doing strange guy things . 2 +103000 5429 will go on so long as there are moviegoers anxious to see strange young guys doing strange guy things . 1 +103001 5429 will go on so long as there are moviegoers anxious to see strange young guys doing strange guy things 2 +103002 5429 go on so long as there are moviegoers anxious to see strange young guys doing strange guy things 1 +103003 5429 go on 2 +103004 5429 so long as there are moviegoers anxious to see strange young guys doing strange guy things 1 +103005 5429 so long 1 +103006 5429 as there are moviegoers anxious to see strange young guys doing strange guy things 3 +103007 5429 there are moviegoers anxious to see strange young guys doing strange guy things 1 +103008 5429 are moviegoers anxious to see strange young guys doing strange guy things 2 +103009 5429 are moviegoers 2 +103010 5429 anxious to see strange young guys doing strange guy things 2 +103011 5429 anxious 2 +103012 5429 to see strange young guys doing strange guy things 2 +103013 5429 see strange young guys doing strange guy things 1 +103014 5429 see strange young guys 2 +103015 5429 strange young guys 2 +103016 5429 young guys 2 +103017 5429 doing strange guy things 1 +103018 5429 strange guy things 2 +103019 5429 guy things 2 +103020 5430 Alternately hilarious and sad , aggravating and soulful , scathing and joyous . 3 +103021 5430 Alternately hilarious and sad , aggravating and soulful , scathing and joyous 4 +103022 5430 Alternately hilarious and sad , aggravating and 3 +103023 5430 Alternately hilarious and sad , aggravating 2 +103024 5430 Alternately hilarious and sad , 2 +103025 5430 Alternately hilarious and sad 3 +103026 5430 hilarious and sad 3 +103027 5430 hilarious and 4 +103028 5430 soulful , scathing and joyous 3 +103029 5430 soulful , scathing and 3 +103030 5430 soulful , scathing 2 +103031 5430 soulful , 3 +103032 5431 The year 2002 has conjured up more coming-of-age stories than seem possible , but Take Care of My Cat emerges as the very best of them . 4 +103033 5431 The year 2002 has conjured up more coming-of-age stories than seem possible , but Take Care of My Cat emerges as the very best of them 4 +103034 5431 The year 2002 has conjured up more coming-of-age stories than seem possible , but 2 +103035 5431 The year 2002 has conjured up more coming-of-age stories than seem possible , 2 +103036 5431 The year 2002 has conjured up more coming-of-age stories than seem possible 2 +103037 5431 The year 2002 2 +103038 5431 year 2002 2 +103039 5431 has conjured up more coming-of-age stories than seem possible 2 +103040 5431 conjured up more coming-of-age stories than seem possible 3 +103041 5431 conjured up more coming-of-age stories 3 +103042 5431 conjured up 2 +103043 5431 conjured 2 +103044 5431 more coming-of-age stories 3 +103045 5431 coming-of-age stories 2 +103046 5431 than seem possible 2 +103047 5431 seem possible 2 +103048 5431 Take Care of My Cat emerges as the very best of them 4 +103049 5431 Take Care of My Cat 2 +103050 5431 of My Cat 2 +103051 5431 My Cat 2 +103052 5431 emerges as the very best of them 4 +103053 5431 as the very best of them 3 +103054 5431 the very best of them 3 +103055 5431 the very best 4 +103056 5432 It briefly flirts with player masochism , but the point of real interest - -- audience sadism -- is evaded completely . 2 +103057 5432 It briefly flirts with player masochism , but the point of real interest - -- audience sadism -- is evaded completely 1 +103058 5432 It briefly flirts with player masochism , but 1 +103059 5432 It briefly flirts with player masochism , 1 +103060 5432 It briefly flirts with player masochism 2 +103061 5432 briefly flirts with player masochism 2 +103062 5432 briefly 3 +103063 5432 flirts with player masochism 2 +103064 5432 with player masochism 2 +103065 5432 player masochism 2 +103066 5432 the point of real interest - -- audience sadism -- is evaded completely 1 +103067 5432 the point of real interest - -- audience sadism -- 2 +103068 5432 the point of real interest - -- audience sadism 1 +103069 5432 the point of real interest - -- 3 +103070 5432 the point of real interest - 3 +103071 5432 of real interest - 3 +103072 5432 of real interest 3 +103073 5432 real interest 3 +103074 5432 audience sadism 1 +103075 5432 is evaded completely 1 +103076 5432 evaded completely 1 +103077 5432 evaded 1 +103078 5433 The best film of the year 2002 . 3 +103079 5433 The best film of the year 2002 4 +103080 5433 of the year 2002 2 +103081 5434 A moving and not infrequently breathtaking film . 4 +103082 5434 A moving and not infrequently breathtaking film 4 +103083 5434 moving and not infrequently breathtaking film 3 +103084 5434 moving and not infrequently breathtaking 3 +103085 5434 not infrequently breathtaking 3 +103086 5434 infrequently breathtaking 3 +103087 5434 infrequently 2 +103088 5435 An ambitious ` what if ? ' 3 +103089 5435 ambitious ` what if ? ' 2 +103090 5435 ambitious ` what if ? 2 +103091 5435 ambitious ` what if 3 +103092 5435 ambitious ` what 2 +103093 5435 ambitious ` 3 +103094 5436 A slam-bang extravaganza that is all about a wild-and-woolly , wall-to-wall good time . 4 +103095 5436 A slam-bang extravaganza that 4 +103096 5436 A slam-bang extravaganza 3 +103097 5436 slam-bang extravaganza 3 +103098 5436 slam-bang 3 +103099 5436 is all about a wild-and-woolly , wall-to-wall good time . 4 +103100 5436 is all about a wild-and-woolly , wall-to-wall good time 3 +103101 5436 all about a wild-and-woolly , wall-to-wall good time 3 +103102 5436 about a wild-and-woolly , wall-to-wall good time 4 +103103 5436 a wild-and-woolly , wall-to-wall good time 4 +103104 5436 wild-and-woolly , wall-to-wall good time 3 +103105 5436 wild-and-woolly 3 +103106 5436 , wall-to-wall good time 4 +103107 5436 wall-to-wall good time 4 +103108 5436 wall-to-wall 2 +103109 5437 overstylized 1 +103110 5437 of sex , psychology , drugs and philosophy 2 +103111 5437 sex , psychology , drugs and philosophy 2 +103112 5437 , psychology , drugs and philosophy 2 +103113 5437 psychology , drugs and philosophy 2 +103114 5437 , drugs and philosophy 2 +103115 5437 drugs and philosophy 2 +103116 5438 Vulgar is too optimistic a title . 0 +103117 5438 is too optimistic a title . 1 +103118 5438 is too optimistic a title 2 +103119 5438 too optimistic a title 2 +103120 5438 too optimistic 2 +103121 5438 a title 2 +103122 5439 Campanella 's competent direction and his excellent cast overcome the obstacles of a predictable outcome and a screenplay that glosses over Rafael 's evolution . 3 +103123 5439 Campanella 's competent direction and his excellent cast 4 +103124 5439 Campanella 's competent direction and 3 +103125 5439 Campanella 's competent direction 3 +103126 5439 competent direction 3 +103127 5439 his excellent cast 3 +103128 5439 overcome the obstacles of a predictable outcome and a screenplay that glosses over Rafael 's evolution . 3 +103129 5439 overcome the obstacles of a predictable outcome and a screenplay that glosses over Rafael 's evolution 2 +103130 5439 the obstacles of a predictable outcome and a screenplay that glosses over Rafael 's evolution 1 +103131 5439 the obstacles of a predictable outcome and a screenplay 1 +103132 5439 the obstacles 2 +103133 5439 of a predictable outcome and a screenplay 1 +103134 5439 a predictable outcome and a screenplay 1 +103135 5439 a predictable outcome and 1 +103136 5439 a predictable outcome 2 +103137 5439 predictable outcome 1 +103138 5439 that glosses over Rafael 's evolution 2 +103139 5439 glosses over Rafael 's evolution 1 +103140 5439 glosses 2 +103141 5439 over Rafael 's evolution 2 +103142 5439 Rafael 's evolution 2 +103143 5439 Rafael 's 2 +103144 5439 Rafael 2 +103145 5440 A refreshingly realistic , affectation-free coming-of-age tale . 4 +103146 5440 A refreshingly realistic , affectation-free coming-of-age tale 3 +103147 5440 A refreshingly realistic , affectation-free 3 +103148 5440 refreshingly realistic , affectation-free 3 +103149 5440 refreshingly realistic , 3 +103150 5440 refreshingly realistic 4 +103151 5440 affectation-free 2 +103152 5441 What 's needed so badly but what is virtually absent here is either a saving dark humor or the feel of poetic tragedy . 1 +103153 5441 What 's needed so badly but what is virtually absent 2 +103154 5441 's needed so badly but what is virtually absent 1 +103155 5441 needed so badly but what is virtually absent 0 +103156 5441 needed so badly 1 +103157 5441 but what is virtually absent 2 +103158 5441 what is virtually absent 2 +103159 5441 is virtually absent 1 +103160 5441 virtually absent 1 +103161 5441 absent 2 +103162 5441 here is either a saving dark humor or the feel of poetic tragedy . 2 +103163 5441 is either a saving dark humor or the feel of poetic tragedy . 3 +103164 5441 is either a saving dark humor or the feel of poetic tragedy 2 +103165 5441 a saving dark humor or the feel of poetic tragedy 2 +103166 5441 a saving dark humor or 2 +103167 5441 a saving dark humor 2 +103168 5441 saving dark humor 2 +103169 5441 dark humor 2 +103170 5441 the feel of poetic tragedy 1 +103171 5441 of poetic tragedy 2 +103172 5441 poetic tragedy 1 +103173 5442 Left me with the visceral sensation of longing , lasting traces of Charlotte 's web of desire and desperation . 3 +103174 5442 Left me with the visceral sensation of longing , lasting traces of Charlotte 's web of desire and desperation 2 +103175 5442 with the visceral sensation of longing , lasting traces of Charlotte 's web of desire and desperation 3 +103176 5442 the visceral sensation of longing , lasting traces of Charlotte 's web of desire and desperation 2 +103177 5442 the visceral sensation 3 +103178 5442 visceral sensation 3 +103179 5442 sensation 3 +103180 5442 of longing , lasting traces of Charlotte 's web of desire and desperation 3 +103181 5442 longing , lasting traces of Charlotte 's web of desire and desperation 2 +103182 5442 longing , 2 +103183 5442 lasting traces of Charlotte 's web of desire and desperation 2 +103184 5442 lasting traces of Charlotte 's web 3 +103185 5442 lasting traces 3 +103186 5442 traces 2 +103187 5442 of Charlotte 's web 2 +103188 5442 Charlotte 's web 2 +103189 5442 Charlotte 's 2 +103190 5442 of desire and desperation 2 +103191 5442 desire and desperation 2 +103192 5442 desire and 2 +103193 5443 `` The Kid Stays in the Picture '' is a great story , terrifically told by the man who wrote it but this Cliff Notes edition is a cheat . 2 +103194 5443 The Kid Stays in the Picture '' is a great story , terrifically told by the man who wrote it but this Cliff Notes edition is a cheat . 3 +103195 5443 '' is a great story , terrifically told by the man who wrote it but this Cliff Notes edition is a cheat . 3 +103196 5443 is a great story , terrifically told by the man who wrote it but this Cliff Notes edition is a cheat . 1 +103197 5443 is a great story , terrifically told by the man who wrote it but this Cliff Notes edition is a cheat 3 +103198 5443 a great story , terrifically told by the man who wrote it but this Cliff Notes edition is a cheat 2 +103199 5443 a great story , 3 +103200 5443 a great story 3 +103201 5443 great story 4 +103202 5443 terrifically told by the man who wrote it but this Cliff Notes edition is a cheat 1 +103203 5443 terrifically 3 +103204 5443 told by the man who wrote it but this Cliff Notes edition is a cheat 1 +103205 5443 by the man who wrote it but this Cliff Notes edition is a cheat 0 +103206 5443 the man who wrote it but this Cliff Notes edition is a cheat 0 +103207 5443 who wrote it but this Cliff Notes edition is a cheat 1 +103208 5443 wrote it but this Cliff Notes edition is a cheat 1 +103209 5443 wrote it 2 +103210 5443 but this Cliff Notes edition is a cheat 0 +103211 5443 this Cliff Notes edition is a cheat 1 +103212 5443 this Cliff Notes edition 2 +103213 5443 Cliff Notes edition 2 +103214 5443 Cliff 2 +103215 5443 Notes edition 2 +103216 5443 is a cheat 2 +103217 5444 You can almost see Mendes and company getting together before a single frame had been shot and collectively vowing , ` This is going to be something really good . ' 3 +103218 5444 can almost see Mendes and company getting together before a single frame had been shot and collectively vowing , ` This is going to be something really good . ' 4 +103219 5444 can almost see Mendes and company getting together before a single frame had been shot and collectively vowing , ` This is going to be something really good . 4 +103220 5444 can almost see Mendes and company getting together before a single frame had been shot and collectively vowing , ` This is going to be something really good 3 +103221 5444 can almost 2 +103222 5444 see Mendes and company getting together before a single frame had been shot and collectively vowing , ` This is going to be something really good 3 +103223 5444 Mendes and company getting together before a single frame had been shot and collectively vowing , ` This is going to be something really good 3 +103224 5444 Mendes and company 2 +103225 5444 Mendes and 2 +103226 5444 getting together before a single frame had been shot and collectively vowing , ` This is going to be something really good 3 +103227 5444 getting together before a single frame had been shot and collectively 2 +103228 5444 getting together before a single frame had been shot and 2 +103229 5444 getting together before a single frame had been shot 2 +103230 5444 getting together 2 +103231 5444 before a single frame had been shot 2 +103232 5444 a single frame had been shot 2 +103233 5444 a single frame 2 +103234 5444 single frame 2 +103235 5444 had been shot 2 +103236 5444 been shot 1 +103237 5444 vowing , ` This is going to be something really good 3 +103238 5444 vowing , ` 3 +103239 5444 vowing , 3 +103240 5444 vowing 2 +103241 5444 This is going to be something really good 3 +103242 5444 is going to be something really good 3 +103243 5444 going to be something really good 3 +103244 5444 to be something really good 3 +103245 5444 be something really good 3 +103246 5444 something really good 4 +103247 5445 The screenwriters dig themselves in deeper every time they toss logic and science into what is essentially a `` Dungeons and Dragons '' fantasy with modern military weaponry ... 1 +103248 5445 The screenwriters dig themselves in deeper every time 1 +103249 5445 dig themselves in deeper every time 2 +103250 5445 dig themselves in 2 +103251 5445 dig themselves 2 +103252 5445 dig 2 +103253 5445 deeper every time 3 +103254 5445 they toss logic and science into what is essentially a `` Dungeons and Dragons '' fantasy with modern military weaponry ... 1 +103255 5445 toss logic and science into what is essentially a `` Dungeons and Dragons '' fantasy with modern military weaponry ... 2 +103256 5445 toss logic and science into what is essentially a `` Dungeons and Dragons '' fantasy with modern military weaponry 1 +103257 5445 toss logic and science 1 +103258 5445 logic and science 2 +103259 5445 into what is essentially a `` Dungeons and Dragons '' fantasy with modern military weaponry 2 +103260 5445 what is essentially a `` Dungeons and Dragons '' fantasy with modern military weaponry 2 +103261 5445 is essentially a `` Dungeons and Dragons '' fantasy with modern military weaponry 1 +103262 5445 a `` Dungeons and Dragons '' fantasy with modern military weaponry 2 +103263 5445 a `` Dungeons and Dragons '' fantasy 2 +103264 5445 `` Dungeons and Dragons '' fantasy 2 +103265 5445 Dungeons and Dragons '' fantasy 2 +103266 5445 Dungeons and Dragons 2 +103267 5445 Dungeons and 2 +103268 5445 Dungeons 2 +103269 5445 '' fantasy 2 +103270 5445 with modern military weaponry 2 +103271 5445 modern military weaponry 2 +103272 5445 military weaponry 2 +103273 5445 military 2 +103274 5446 A fascinating examination of the joyous , turbulent self-discovery made by a proper , middle-aged woman . 3 +103275 5446 A fascinating examination of the joyous , turbulent self-discovery 4 +103276 5446 A fascinating examination 4 +103277 5446 fascinating examination 3 +103278 5446 of the joyous , turbulent self-discovery 3 +103279 5446 the joyous , turbulent self-discovery 4 +103280 5446 joyous , turbulent self-discovery 4 +103281 5446 , turbulent self-discovery 2 +103282 5446 turbulent self-discovery 3 +103283 5446 made by a proper , middle-aged woman . 3 +103284 5446 made by a proper , middle-aged woman 2 +103285 5446 by a proper , middle-aged woman 2 +103286 5446 a proper , middle-aged woman 2 +103287 5446 proper , middle-aged woman 2 +103288 5447 Its use of the thriller form to examine the labyrinthine ways in which people 's lives cross and change , buffeted by events seemingly out of their control , is intriguing , provocative stuff . 4 +103289 5447 Its use of the thriller form to examine the labyrinthine ways in which people 's lives cross and change , buffeted by events seemingly out of their control , 3 +103290 5447 Its use of the thriller form to examine the labyrinthine ways in which people 's lives cross and change , buffeted by events seemingly out of their control 3 +103291 5447 Its use of the thriller form to examine the labyrinthine ways in which people 's lives cross and change , 3 +103292 5447 Its use of the thriller form to examine the labyrinthine ways in which people 's lives cross and change 2 +103293 5447 Its use 2 +103294 5447 of the thriller form to examine the labyrinthine ways in which people 's lives cross and change 2 +103295 5447 the thriller form to examine the labyrinthine ways in which people 's lives cross and change 3 +103296 5447 thriller form to examine the labyrinthine ways in which people 's lives cross and change 3 +103297 5447 form to examine the labyrinthine ways in which people 's lives cross and change 3 +103298 5447 to examine the labyrinthine ways in which people 's lives cross and change 2 +103299 5447 examine the labyrinthine ways in which people 's lives cross and change 2 +103300 5447 examine 2 +103301 5447 the labyrinthine ways in which people 's lives cross and change 2 +103302 5447 the labyrinthine ways 1 +103303 5447 labyrinthine ways 2 +103304 5447 labyrinthine 3 +103305 5447 in which people 's lives cross and change 2 +103306 5447 people 's lives cross and change 2 +103307 5447 people 's lives 2 +103308 5447 cross and change 2 +103309 5447 cross and 2 +103310 5447 buffeted by events seemingly out of their control 2 +103311 5447 buffeted 2 +103312 5447 by events seemingly out of their control 2 +103313 5447 events seemingly out of their control 2 +103314 5447 events seemingly out 2 +103315 5447 seemingly out 2 +103316 5447 of their control 2 +103317 5447 their control 2 +103318 5447 is intriguing , provocative stuff . 3 +103319 5447 is intriguing , provocative stuff 3 +103320 5447 intriguing , provocative stuff 3 +103321 5447 intriguing , provocative 3 +103322 5447 , provocative 3 +103323 5448 Visually exciting sci-fi film which suffers from a lackluster screenplay . 2 +103324 5448 Visually exciting 3 +103325 5448 sci-fi film which suffers from a lackluster screenplay . 1 +103326 5448 sci-fi film which suffers from a lackluster screenplay 1 +103327 5448 film which suffers from a lackluster screenplay 1 +103328 5448 which suffers from a lackluster screenplay 1 +103329 5448 suffers from a lackluster screenplay 2 +103330 5448 from a lackluster screenplay 1 +103331 5448 a lackluster screenplay 0 +103332 5448 lackluster screenplay 1 +103333 5449 A sterling film - a cross between Boys Do n't Cry , Deliverance , and Ode to Billy Joe - lies somewhere in the story of Matthew Shepard , but that film is yet to be made . 2 +103334 5449 A sterling film 3 +103335 5449 sterling film 3 +103336 5449 sterling 3 +103337 5449 - a cross between Boys Do n't Cry , Deliverance , and Ode to Billy Joe - lies somewhere in the story of Matthew Shepard , but that film is yet to be made . 2 +103338 5449 a cross between Boys Do n't Cry , Deliverance , and Ode to Billy Joe - lies somewhere in the story of Matthew Shepard , but that film is yet to be made . 2 +103339 5449 a cross between Boys Do n't Cry , Deliverance , and Ode to Billy Joe - lies somewhere in the story of Matthew Shepard , but that film is yet to be made 1 +103340 5449 a cross between Boys 2 +103341 5449 between Boys 2 +103342 5449 Do n't Cry , Deliverance , and Ode to Billy Joe - lies somewhere in the story of Matthew Shepard , but that film is yet to be made 2 +103343 5449 Cry , Deliverance , and Ode to Billy Joe - lies somewhere in the story of Matthew Shepard , but that film is yet to be made 2 +103344 5449 Cry , Deliverance , and 1 +103345 5449 Cry , Deliverance , 2 +103346 5449 Cry , Deliverance 2 +103347 5449 Cry , 2 +103348 5449 Deliverance 2 +103349 5449 Ode to Billy Joe - lies somewhere in the story of Matthew Shepard , but that film is yet to be made 2 +103350 5449 Ode to Billy Joe - 2 +103351 5449 Ode to Billy Joe 2 +103352 5449 to Billy Joe 2 +103353 5449 Billy Joe 2 +103354 5449 lies somewhere in the story of Matthew Shepard , but that film is yet to be made 3 +103355 5449 lies somewhere in the story of Matthew Shepard , but 2 +103356 5449 lies somewhere in the story of Matthew Shepard , 2 +103357 5449 lies somewhere in the story of Matthew Shepard 2 +103358 5449 somewhere in the story of Matthew Shepard 3 +103359 5449 in the story of Matthew Shepard 2 +103360 5449 the story of Matthew Shepard 2 +103361 5449 that film is yet to be made 2 +103362 5449 film is yet to be made 1 +103363 5449 is yet to be made 2 +103364 5449 is yet 2 +103365 5450 Narc can only remind us of brilliant crime dramas without becoming one itself . 2 +103366 5450 can only remind us of brilliant crime dramas without becoming one itself . 2 +103367 5450 can only remind us of brilliant crime dramas without becoming one itself 1 +103368 5450 remind us of brilliant crime dramas without becoming one itself 2 +103369 5450 remind us of brilliant crime dramas 3 +103370 5450 us of brilliant crime dramas 3 +103371 5450 of brilliant crime dramas 3 +103372 5450 brilliant crime dramas 4 +103373 5450 crime dramas 2 +103374 5450 without becoming one itself 2 +103375 5450 becoming one itself 2 +103376 5450 one itself 2 +103377 5451 The actors improvise and scream their way around this movie directionless , lacking any of the rollicking dark humor so necessary to make this kind of idea work on screen . 0 +103378 5451 improvise and scream their way around this movie directionless , lacking any of the rollicking dark humor so necessary to make this kind of idea work on screen . 2 +103379 5451 improvise and scream their way around this movie directionless , lacking any of the rollicking dark humor so necessary to make this kind of idea work on screen 0 +103380 5451 improvise and scream their way around this movie directionless , lacking any of the rollicking dark humor so necessary 1 +103381 5451 improvise and scream 3 +103382 5451 improvise and 2 +103383 5451 improvise 2 +103384 5451 their way around this movie directionless , lacking any of the rollicking dark humor so necessary 1 +103385 5451 their way around this movie directionless , 1 +103386 5451 their way around this movie directionless 1 +103387 5451 around this movie directionless 1 +103388 5451 this movie directionless 1 +103389 5451 movie directionless 1 +103390 5451 directionless 1 +103391 5451 lacking any of the rollicking dark humor so necessary 1 +103392 5451 any of the rollicking dark humor so necessary 2 +103393 5451 of the rollicking dark humor so necessary 3 +103394 5451 the rollicking dark humor so necessary 3 +103395 5451 the rollicking dark humor 3 +103396 5451 rollicking dark humor 4 +103397 5451 rollicking dark 2 +103398 5451 so necessary 2 +103399 5451 to make this kind of idea work on screen 2 +103400 5451 make this kind of idea work on screen 2 +103401 5451 make this kind of idea work 2 +103402 5451 this kind of idea work 2 +103403 5451 of idea work 2 +103404 5451 idea work 2 +103405 5451 on screen 2 +103406 5452 Kapur weighs down the tale with bogus profundities . 1 +103407 5452 weighs down the tale with bogus profundities . 1 +103408 5452 weighs down the tale with bogus profundities 0 +103409 5452 weighs down 1 +103410 5452 the tale with bogus profundities 0 +103411 5452 with bogus profundities 0 +103412 5452 bogus profundities 2 +103413 5452 profundities 2 +103414 5453 Provides a porthole into that noble , trembling incoherence that defines us all . 2 +103415 5453 Provides a porthole into that noble , trembling incoherence that defines us all 3 +103416 5453 Provides a porthole 2 +103417 5453 a porthole 2 +103418 5453 porthole 2 +103419 5453 into that noble , trembling incoherence that defines us all 2 +103420 5453 that noble , trembling incoherence that defines us all 2 +103421 5453 that noble , trembling incoherence 3 +103422 5453 noble , trembling incoherence 1 +103423 5453 , trembling incoherence 1 +103424 5453 trembling incoherence 1 +103425 5453 that defines us all 2 +103426 5453 defines us all 2 +103427 5453 us all 3 +103428 5454 One of the greatest films I 've ever seen . 4 +103429 5454 One of the greatest films 4 +103430 5454 of the greatest films 4 +103431 5454 the greatest films 3 +103432 5454 greatest films 3 +103433 5454 I 've ever seen . 2 +103434 5455 By turns numbingly dull-witted and disquietingly creepy . 1 +103435 5455 turns numbingly dull-witted and disquietingly creepy . 0 +103436 5455 turns numbingly dull-witted and disquietingly creepy 1 +103437 5455 numbingly dull-witted and disquietingly creepy 1 +103438 5455 dull-witted and disquietingly creepy 1 +103439 5455 dull-witted and disquietingly 1 +103440 5455 dull-witted and 1 +103441 5455 dull-witted 0 +103442 5455 disquietingly 1 +103443 5456 Poignant and moving , A Walk to Remember is an inspirational love story , capturing the innocence and idealism of that first encounter . 4 +103444 5456 Poignant and moving 3 +103445 5456 , A Walk to Remember is an inspirational love story , capturing the innocence and idealism of that first encounter . 4 +103446 5456 A Walk to Remember is an inspirational love story , capturing the innocence and idealism of that first encounter . 4 +103447 5456 is an inspirational love story , capturing the innocence and idealism of that first encounter . 3 +103448 5456 is an inspirational love story , capturing the innocence and idealism of that first encounter 4 +103449 5456 is an inspirational love story , 3 +103450 5456 is an inspirational love story 3 +103451 5456 an inspirational love story 4 +103452 5456 inspirational love story 4 +103453 5456 capturing the innocence and idealism of that first encounter 3 +103454 5456 the innocence and idealism of that first encounter 2 +103455 5456 the innocence and idealism 2 +103456 5456 innocence and idealism 3 +103457 5456 innocence and 2 +103458 5456 of that first encounter 2 +103459 5456 that first encounter 2 +103460 5456 first encounter 2 +103461 5457 While the production details are lavish , film has little insight into the historical period and its artists , particularly in how Sand developed a notorious reputation . 1 +103462 5457 While the production details are lavish 3 +103463 5457 the production details are lavish 3 +103464 5457 the production details 2 +103465 5457 production details 2 +103466 5457 are lavish 2 +103467 5457 , film has little insight into the historical period and its artists , particularly in how Sand developed a notorious reputation . 1 +103468 5457 film has little insight into the historical period and its artists , particularly in how Sand developed a notorious reputation . 2 +103469 5457 has little insight into the historical period and its artists , particularly in how Sand developed a notorious reputation . 2 +103470 5457 has little insight into the historical period and its artists , particularly in how Sand developed a notorious reputation 1 +103471 5457 has little insight into the historical period and its artists , 1 +103472 5457 has little insight into the historical period and its artists 1 +103473 5457 has little insight 1 +103474 5457 into the historical period and its artists 2 +103475 5457 the historical period and its artists 2 +103476 5457 the historical period and 3 +103477 5457 the historical period 2 +103478 5457 historical period 2 +103479 5457 its artists 2 +103480 5457 particularly in how Sand developed a notorious reputation 2 +103481 5457 in how Sand developed a notorious reputation 2 +103482 5457 how Sand developed a notorious reputation 2 +103483 5457 Sand developed a notorious reputation 2 +103484 5457 developed a notorious reputation 2 +103485 5457 a notorious reputation 2 +103486 5457 notorious reputation 1 +103487 5458 It 's not life-affirming -- its vulgar and mean , but I liked it . 2 +103488 5458 It 's not life-affirming -- its vulgar and mean , but I liked it 2 +103489 5458 It 's not life-affirming -- its vulgar and mean , but 0 +103490 5458 It 's not life-affirming -- its vulgar and mean , 0 +103491 5458 It 's not life-affirming -- its vulgar and mean 0 +103492 5458 's not life-affirming -- its vulgar and mean 0 +103493 5458 's not life-affirming -- its vulgar and 1 +103494 5458 's not life-affirming -- its vulgar 1 +103495 5458 's not life-affirming -- 2 +103496 5458 's not life-affirming 1 +103497 5458 not life-affirming 1 +103498 5458 its vulgar 1 +103499 5458 I liked it 3 +103500 5458 liked it 3 +103501 5459 ` Anyone with a passion for cinema , and indeed sex , should see it as soon as possible . ' 4 +103502 5459 Anyone with a passion for cinema , and indeed sex , should see it as soon as possible . ' 4 +103503 5459 Anyone with a passion for cinema , and indeed sex , 2 +103504 5459 with a passion for cinema , and indeed sex , 2 +103505 5459 a passion for cinema , and indeed sex , 3 +103506 5459 for cinema , and indeed sex , 2 +103507 5459 cinema , and indeed sex , 2 +103508 5459 cinema , and indeed sex 2 +103509 5459 cinema , and indeed 2 +103510 5459 cinema , and 2 +103511 5459 cinema , 2 +103512 5459 should see it as soon as possible . ' 4 +103513 5459 should see it as soon as possible . 4 +103514 5459 should see it as soon as possible 4 +103515 5459 see it as soon as possible 4 +103516 5459 as soon as possible 2 +103517 5460 To call this one an eventual cult classic would be an understatement , and woe is the horror fan who opts to overlook this goofily endearing and well-lensed gorefest . 4 +103518 5460 To call this one an eventual cult classic would be an understatement , and woe is the horror fan who opts to overlook this goofily endearing and well-lensed gorefest 3 +103519 5460 To call this one an eventual cult classic would be an understatement , and 3 +103520 5460 To call this one an eventual cult classic would be an understatement , 4 +103521 5460 To call this one an eventual cult classic would be an understatement 4 +103522 5460 To call this one 2 +103523 5460 call this one 2 +103524 5460 an eventual cult classic would be an understatement 3 +103525 5460 an eventual cult classic 3 +103526 5460 eventual cult classic 3 +103527 5460 cult classic 4 +103528 5460 would be an understatement 2 +103529 5460 be an understatement 2 +103530 5460 an understatement 2 +103531 5460 understatement 1 +103532 5460 woe is the horror fan who opts to overlook this goofily endearing and well-lensed gorefest 2 +103533 5460 woe 1 +103534 5460 is the horror fan who opts to overlook this goofily endearing and well-lensed gorefest 2 +103535 5460 the horror fan who opts to overlook this goofily endearing and well-lensed gorefest 3 +103536 5460 the horror fan 3 +103537 5460 horror fan 2 +103538 5460 who opts to overlook this goofily endearing and well-lensed gorefest 3 +103539 5460 opts to overlook this goofily endearing and well-lensed gorefest 3 +103540 5460 to overlook this goofily endearing and well-lensed gorefest 2 +103541 5460 overlook this goofily endearing and well-lensed gorefest 2 +103542 5460 overlook 2 +103543 5460 this goofily endearing and well-lensed gorefest 3 +103544 5460 goofily endearing and well-lensed gorefest 3 +103545 5460 goofily endearing and well-lensed 3 +103546 5460 goofily 2 +103547 5460 endearing and well-lensed 3 +103548 5460 endearing and 3 +103549 5460 well-lensed 3 +103550 5460 gorefest 2 +103551 5461 Sorority Boys , which is as bad at it is cruel , takes every potential laugh and stiletto-stomps the life out of it . 0 +103552 5461 Sorority Boys , which is as bad at it is cruel , 1 +103553 5461 Sorority Boys , which is as bad at it is cruel 2 +103554 5461 Sorority Boys , 2 +103555 5461 which is as bad at it is cruel 2 +103556 5461 is as bad at it is cruel 1 +103557 5461 as bad at it is cruel 0 +103558 5461 bad at it is cruel 1 +103559 5461 at it is cruel 2 +103560 5461 it is cruel 1 +103561 5461 is cruel 1 +103562 5461 takes every potential laugh and stiletto-stomps the life out of it . 1 +103563 5461 takes every potential laugh and stiletto-stomps the life out of it 0 +103564 5461 takes every potential laugh and 3 +103565 5461 takes every potential laugh 3 +103566 5461 every potential laugh 2 +103567 5461 potential laugh 2 +103568 5461 stiletto-stomps the life out of it 2 +103569 5461 stiletto-stomps the life out 1 +103570 5461 stiletto-stomps the life 2 +103571 5461 stiletto-stomps 2 +103572 5462 Adaptation is simply brilliant . 4 +103573 5462 is simply brilliant . 4 +103574 5462 is simply brilliant 4 +103575 5463 I enjoyed the movie in a superficial way , while never sure what its purpose was . 3 +103576 5463 enjoyed the movie in a superficial way , while never sure what its purpose was . 2 +103577 5463 enjoyed the movie in a superficial way , while never sure what its purpose was 2 +103578 5463 the movie in a superficial way , while never sure what its purpose was 1 +103579 5463 the movie in a superficial way , while never sure 1 +103580 5463 in a superficial way , while never sure 1 +103581 5463 a superficial way , while never sure 1 +103582 5463 a superficial way , 2 +103583 5463 a superficial way 3 +103584 5463 while never sure 2 +103585 5463 never sure 2 +103586 5463 what its purpose was 2 +103587 5463 its purpose was 2 +103588 5463 its purpose 2 +103589 5464 The sight of the name Bruce Willis brings to mind images of a violent battlefield action picture , but the film has a lot more on its mind -- maybe too much . 2 +103590 5464 The sight of the name Bruce Willis brings to mind images of a violent battlefield action picture , but the film has a lot more on its mind -- maybe too much 3 +103591 5464 The sight of the name Bruce Willis brings to mind images of a violent battlefield action picture , but 2 +103592 5464 The sight of the name Bruce Willis brings to mind images of a violent battlefield action picture , 2 +103593 5464 The sight of the name Bruce Willis brings to mind images of a violent battlefield action picture 2 +103594 5464 The sight of the name Bruce Willis 2 +103595 5464 of the name Bruce Willis 2 +103596 5464 the name Bruce Willis 2 +103597 5464 name Bruce Willis 2 +103598 5464 brings to mind images of a violent battlefield action picture 2 +103599 5464 to mind images of a violent battlefield action picture 2 +103600 5464 mind images of a violent battlefield action picture 2 +103601 5464 images of a violent battlefield action picture 2 +103602 5464 of a violent battlefield action picture 2 +103603 5464 a violent battlefield action picture 2 +103604 5464 violent battlefield action picture 2 +103605 5464 battlefield action picture 2 +103606 5464 battlefield 2 +103607 5464 action picture 2 +103608 5464 the film has a lot more on its mind -- maybe too much 2 +103609 5464 has a lot more on its mind -- maybe too much 2 +103610 5464 a lot more on its mind -- maybe too much 1 +103611 5464 on its mind -- maybe too much 2 +103612 5464 its mind -- maybe too much 1 +103613 5464 -- maybe too much 1 +103614 5464 maybe too much 1 +103615 5465 It will make you think twice about what might be going on inside each trailer park you drive past -- even if it chiefly inspires you to drive a little faster . 3 +103616 5465 will make you think twice about what might be going on inside each trailer park you drive past -- even if it chiefly inspires you to drive a little faster . 3 +103617 5465 will make you think twice about what might be going on inside each trailer park you drive past -- even if it chiefly inspires you to drive a little faster 2 +103618 5465 make you think twice about what might be going on inside each trailer park you drive past -- even if it chiefly inspires you to drive a little faster 3 +103619 5465 you think twice about what might be going on inside each trailer park you drive past -- even if it chiefly inspires you to drive a little faster 2 +103620 5465 think twice about what might be going on inside each trailer park you drive past -- even if it chiefly inspires you to drive a little faster 2 +103621 5465 twice about what might be going on inside each trailer park you drive past -- even if it chiefly inspires you to drive a little faster 3 +103622 5465 twice about 2 +103623 5465 what might be going on inside each trailer park you drive past -- even if it chiefly inspires you to drive a little faster 3 +103624 5465 might be going on inside each trailer park you drive past -- even if it chiefly inspires you to drive a little faster 2 +103625 5465 be going on inside each trailer park you drive past -- even if it chiefly inspires you to drive a little faster 2 +103626 5465 going on inside each trailer park you drive past -- even if it chiefly inspires you to drive a little faster 3 +103627 5465 on inside each trailer park you drive past -- even if it chiefly inspires you to drive a little faster 2 +103628 5465 inside each trailer park you drive past -- even if it chiefly inspires you to drive a little faster 2 +103629 5465 each trailer park you drive past -- even if it chiefly inspires you to drive a little faster 3 +103630 5465 each trailer park 2 +103631 5465 trailer park 2 +103632 5465 you drive past -- even if it chiefly inspires you to drive a little faster 3 +103633 5465 drive past -- even if it chiefly inspires you to drive a little faster 1 +103634 5465 drive past -- 2 +103635 5465 drive past 2 +103636 5465 drive 2 +103637 5465 even if it chiefly inspires you to drive a little faster 2 +103638 5465 if it chiefly inspires you to drive a little faster 3 +103639 5465 it chiefly inspires you to drive a little faster 3 +103640 5465 chiefly inspires you to drive a little faster 2 +103641 5465 chiefly 2 +103642 5465 inspires you to drive a little faster 2 +103643 5465 you to drive a little faster 2 +103644 5465 to drive a little faster 2 +103645 5465 drive a little faster 2 +103646 5465 a little faster 2 +103647 5466 Eight Legged Freaks falls flat as a spoof . 1 +103648 5466 falls flat as a spoof . 1 +103649 5466 falls flat as a spoof 0 +103650 5466 flat as a spoof 1 +103651 5466 as a spoof 2 +103652 5467 While it can be a bit repetitive , overall it 's an entertaining and informative documentary . 3 +103653 5467 While it can be a bit repetitive 1 +103654 5467 it can be a bit repetitive 1 +103655 5467 can be a bit repetitive 1 +103656 5467 be a bit repetitive 1 +103657 5467 a bit repetitive 1 +103658 5467 , overall it 's an entertaining and informative documentary . 4 +103659 5467 overall it 's an entertaining and informative documentary . 4 +103660 5467 it 's an entertaining and informative documentary . 3 +103661 5467 's an entertaining and informative documentary . 3 +103662 5467 's an entertaining and informative documentary 3 +103663 5467 an entertaining and informative documentary 3 +103664 5467 entertaining and informative documentary 4 +103665 5467 entertaining and informative 4 +103666 5468 Ultimately , `` MIB II '' succeeds due to its rapid-fire delivery and enough inspired levity that it ca n't be dismissed as mindless . 3 +103667 5468 , `` MIB II '' succeeds due to its rapid-fire delivery and enough inspired levity that it ca n't be dismissed as mindless . 4 +103668 5468 `` MIB II '' succeeds due to its rapid-fire delivery and enough inspired levity that it ca n't be dismissed as mindless . 2 +103669 5468 MIB II '' succeeds due to its rapid-fire delivery and enough inspired levity that it ca n't be dismissed as mindless . 3 +103670 5468 MIB II 2 +103671 5468 '' succeeds due to its rapid-fire delivery and enough inspired levity that it ca n't be dismissed as mindless . 3 +103672 5468 succeeds due to its rapid-fire delivery and enough inspired levity that it ca n't be dismissed as mindless . 3 +103673 5468 succeeds due to its rapid-fire delivery and enough inspired levity that it ca n't be dismissed as mindless 3 +103674 5468 succeeds due to its rapid-fire delivery and enough inspired levity 3 +103675 5468 due to its rapid-fire delivery and enough inspired levity 3 +103676 5468 due to its rapid-fire delivery and enough inspired 3 +103677 5468 due to its rapid-fire delivery and 3 +103678 5468 due to its rapid-fire delivery 2 +103679 5468 to its rapid-fire delivery 2 +103680 5468 its rapid-fire delivery 4 +103681 5468 enough inspired 2 +103682 5468 that it ca n't be dismissed as mindless 2 +103683 5468 it ca n't be dismissed as mindless 3 +103684 5468 ca n't be dismissed as mindless 3 +103685 5468 be dismissed as mindless 1 +103686 5468 dismissed as mindless 0 +103687 5468 as mindless 1 +103688 5469 J. Lo will earn her share of the holiday box office pie , although this movie makes one thing perfectly clear : She 's a pretty woman , but she 's no working girl . 3 +103689 5469 J. Lo will earn her share of the holiday box office pie , although this movie makes one thing perfectly clear : She 's a pretty woman , but she 's no working girl 1 +103690 5469 J. Lo will earn her share of the holiday box office pie , although this movie makes one thing perfectly clear : 2 +103691 5469 J. Lo will earn her share of the holiday box office pie , although this movie makes one thing perfectly clear 2 +103692 5469 J. Lo 2 +103693 5469 Lo 2 +103694 5469 will earn her share of the holiday box office pie , although this movie makes one thing perfectly clear 3 +103695 5469 earn her share of the holiday box office pie , although this movie makes one thing perfectly clear 2 +103696 5469 earn her share of the holiday box office pie , 2 +103697 5469 earn her share of the holiday box office pie 2 +103698 5469 her share of the holiday box office pie 3 +103699 5469 her share 2 +103700 5469 of the holiday box office pie 3 +103701 5469 the holiday box office pie 2 +103702 5469 holiday box office pie 3 +103703 5469 box office pie 2 +103704 5469 office pie 2 +103705 5469 although this movie makes one thing perfectly clear 2 +103706 5469 this movie makes one thing perfectly clear 3 +103707 5469 makes one thing perfectly clear 2 +103708 5469 one thing perfectly clear 2 +103709 5469 perfectly clear 3 +103710 5469 She 's a pretty woman , but she 's no working girl 3 +103711 5469 She 's a pretty woman , but 2 +103712 5469 She 's a pretty woman , 3 +103713 5469 She 's a pretty woman 4 +103714 5469 's a pretty woman 3 +103715 5469 a pretty woman 3 +103716 5469 she 's no working girl 2 +103717 5469 's no working girl 2 +103718 5469 no working girl 2 +103719 5469 working girl 2 +103720 5470 Some writer dude , I think his name was , uh , Michael Zaidan , was supposed to have like written the screenplay or something , but , dude , the only thing that I ever saw that was written down were the zeroes on my paycheck . 0 +103721 5470 Some writer dude , I think his name was , uh , Michael Zaidan , was supposed to have like written the screenplay or something , but , dude , the only thing that I ever saw that was written down were the zeroes on my paycheck 1 +103722 5470 Some writer dude , I think his name was , uh , Michael Zaidan , was supposed to have like written the screenplay or something , but , dude , 1 +103723 5470 Some writer dude , I think his name was , uh , Michael Zaidan , was supposed to have like written the screenplay or something , but , dude 3 +103724 5470 Some writer dude , I think his name was , uh , Michael Zaidan , was supposed to have like written the screenplay or something , but , 2 +103725 5470 Some writer dude , I think his name was , uh , Michael Zaidan , was supposed to have like written the screenplay or something , but 2 +103726 5470 Some writer dude , I think his name was , uh , Michael Zaidan , was supposed to have like written the screenplay or something , 1 +103727 5470 Some writer dude , I think his name was , uh , Michael Zaidan , was supposed to have like written the screenplay or something 1 +103728 5470 Some writer dude , 2 +103729 5470 Some writer dude 2 +103730 5470 Some writer 2 +103731 5470 I think his name was , uh , Michael Zaidan , was supposed to have like written the screenplay or something 2 +103732 5470 think his name was , uh , Michael Zaidan , was supposed to have like written the screenplay or something 2 +103733 5470 his name was , uh , Michael Zaidan , was supposed to have like written the screenplay or something 2 +103734 5470 his name 2 +103735 5470 was , uh , Michael Zaidan , was supposed to have like written the screenplay or something 1 +103736 5470 was , uh , 2 +103737 5470 was , uh 2 +103738 5470 Michael Zaidan , was supposed to have like written the screenplay or something 1 +103739 5470 Michael Zaidan , 2 +103740 5470 Michael Zaidan 2 +103741 5470 Zaidan 2 +103742 5470 was supposed to have like written the screenplay or something 2 +103743 5470 supposed to have like written the screenplay or something 2 +103744 5470 to have like written the screenplay or something 2 +103745 5470 have like written the screenplay or something 2 +103746 5470 like written the screenplay or something 2 +103747 5470 written the screenplay or something 2 +103748 5470 the screenplay or something 3 +103749 5470 screenplay or something 2 +103750 5470 screenplay or 3 +103751 5470 the only thing that I ever saw that was written down were the zeroes on my paycheck 2 +103752 5470 the only thing that I ever saw that was written down 2 +103753 5470 that I ever saw that was written down 2 +103754 5470 I ever saw that was written down 2 +103755 5470 ever saw that was written down 2 +103756 5470 saw that was written down 1 +103757 5470 that was written down 1 +103758 5470 was written down 2 +103759 5470 written down 2 +103760 5470 were the zeroes on my paycheck 2 +103761 5470 the zeroes on my paycheck 2 +103762 5470 the zeroes 2 +103763 5470 zeroes 2 +103764 5470 on my paycheck 2 +103765 5470 my paycheck 2 +103766 5470 paycheck 2 +103767 5471 But this is not a movie about an inhuman monster ; it 's about a very human one . 2 +103768 5471 But this is not a movie about an inhuman monster ; it 's about a very human one 3 +103769 5471 But this is not a movie about an inhuman monster ; 2 +103770 5471 But this is not a movie about an inhuman monster 2 +103771 5471 this is not a movie about an inhuman monster 2 +103772 5471 is not a movie about an inhuman monster 2 +103773 5471 a movie about an inhuman monster 2 +103774 5471 about an inhuman monster 2 +103775 5471 an inhuman monster 1 +103776 5471 inhuman monster 1 +103777 5471 it 's about a very human one 3 +103778 5471 's about a very human one 3 +103779 5471 about a very human one 2 +103780 5471 a very human one 2 +103781 5471 very human one 2 +103782 5471 very human 2 +103783 5472 There 's a persistent theatrical sentiment and a woozy quality to the manner of the storytelling , which undercuts the devastatingly telling impact of utter loss personified in the film 's simple title . 1 +103784 5472 's a persistent theatrical sentiment and a woozy quality to the manner of the storytelling , which undercuts the devastatingly telling impact of utter loss personified in the film 's simple title . 1 +103785 5472 's a persistent theatrical sentiment and a woozy quality to the manner of the storytelling , which undercuts the devastatingly telling impact of utter loss personified in the film 's simple title 1 +103786 5472 a persistent theatrical sentiment and a woozy quality to the manner of the storytelling , which undercuts the devastatingly telling impact of utter loss personified in the film 's simple title 1 +103787 5472 a persistent theatrical sentiment and 2 +103788 5472 a persistent theatrical sentiment 2 +103789 5472 persistent theatrical sentiment 2 +103790 5472 persistent 2 +103791 5472 theatrical sentiment 2 +103792 5472 a woozy quality to the manner of the storytelling , which undercuts the devastatingly telling impact of utter loss personified in the film 's simple title 1 +103793 5472 a woozy quality 1 +103794 5472 woozy quality 1 +103795 5472 woozy 1 +103796 5472 to the manner of the storytelling , which undercuts the devastatingly telling impact of utter loss personified in the film 's simple title 2 +103797 5472 the manner of the storytelling , which undercuts the devastatingly telling impact of utter loss personified in the film 's simple title 1 +103798 5472 of the storytelling , which undercuts the devastatingly telling impact of utter loss personified in the film 's simple title 1 +103799 5472 the storytelling , which undercuts the devastatingly telling impact of utter loss personified in the film 's simple title 1 +103800 5472 the storytelling , 2 +103801 5472 which undercuts the devastatingly telling impact of utter loss personified in the film 's simple title 3 +103802 5472 undercuts the devastatingly telling impact of utter loss personified in the film 's simple title 1 +103803 5472 undercuts 1 +103804 5472 the devastatingly telling impact of utter loss personified in the film 's simple title 2 +103805 5472 the devastatingly telling impact 2 +103806 5472 devastatingly telling impact 2 +103807 5472 devastatingly telling 2 +103808 5472 of utter loss personified in the film 's simple title 1 +103809 5472 utter loss personified in the film 's simple title 1 +103810 5472 utter loss 1 +103811 5472 personified in the film 's simple title 1 +103812 5472 personified 2 +103813 5472 in the film 's simple title 2 +103814 5472 the film 's simple title 2 +103815 5472 simple title 3 +103816 5473 Splendidly illustrates the ability of the human spirit to overcome adversity . 3 +103817 5473 illustrates the ability of the human spirit to overcome adversity . 3 +103818 5473 illustrates the ability of the human spirit to overcome adversity 3 +103819 5473 the ability of the human spirit to overcome adversity 3 +103820 5473 the ability of the human spirit 2 +103821 5473 of the human spirit 2 +103822 5473 the human spirit 2 +103823 5473 human spirit 2 +103824 5473 to overcome adversity 3 +103825 5473 overcome adversity 2 +103826 5473 adversity 2 +103827 5474 The filmmakers know how to please the eye , but it is not always the prettiest pictures that tell the best story . 3 +103828 5474 The filmmakers know how to please the eye , but it is not always the prettiest pictures that tell the best story 3 +103829 5474 The filmmakers know how to please the eye , but 3 +103830 5474 The filmmakers know how to please the eye , 3 +103831 5474 The filmmakers know how to please the eye 4 +103832 5474 know how to please the eye 3 +103833 5474 how to please the eye 2 +103834 5474 to please the eye 2 +103835 5474 please the eye 3 +103836 5474 the eye 2 +103837 5474 it is not always the prettiest pictures that tell the best story 2 +103838 5474 is not always the prettiest pictures that tell the best story 3 +103839 5474 always the prettiest pictures that tell the best story 3 +103840 5474 always the prettiest pictures 3 +103841 5474 the prettiest pictures 2 +103842 5474 prettiest pictures 3 +103843 5474 prettiest 3 +103844 5474 that tell the best story 4 +103845 5474 tell the best story 3 +103846 5474 the best story 4 +103847 5474 best story 4 +103848 5475 A fine film , but it would be a lot better if it stuck to Betty Fisher and left out the other stories . 2 +103849 5475 A fine film 3 +103850 5475 fine film 3 +103851 5475 , but it would be a lot better if it stuck to Betty Fisher and left out the other stories . 1 +103852 5475 , but it would be a lot better if it stuck to Betty Fisher and left out the other stories 1 +103853 5475 it would be a lot better if it stuck to Betty Fisher and left out the other stories 0 +103854 5475 would be a lot better if it stuck to Betty Fisher and left out the other stories 1 +103855 5475 be a lot better if it stuck to Betty Fisher and left out the other stories 2 +103856 5475 a lot better if it stuck to Betty Fisher and left out the other stories 1 +103857 5475 if it stuck to Betty Fisher and left out the other stories 1 +103858 5475 it stuck to Betty Fisher and left out the other stories 1 +103859 5475 stuck to Betty Fisher and left out the other stories 1 +103860 5475 stuck to Betty Fisher and 2 +103861 5475 stuck to Betty Fisher 2 +103862 5475 to Betty Fisher 2 +103863 5475 Betty Fisher 2 +103864 5475 left out the other stories 2 +103865 5475 left out 2 +103866 5475 the other stories 2 +103867 5475 other stories 2 +103868 5476 But not a whit more . 2 +103869 5476 not a whit more . 2 +103870 5476 not a 2 +103871 5476 whit more . 2 +103872 5476 whit more 2 +103873 5476 whit 3 +103874 5477 It 's not a great monster movie . 1 +103875 5477 's not a great monster movie . 1 +103876 5477 's not a great monster movie 1 +103877 5477 a great monster movie 4 +103878 5477 great monster movie 4 +103879 5478 Might best be enjoyed as a daytime soaper . 2 +103880 5478 best be enjoyed as a daytime soaper . 1 +103881 5478 be enjoyed as a daytime soaper . 3 +103882 5478 be enjoyed as a daytime soaper 3 +103883 5478 enjoyed as a daytime soaper 2 +103884 5478 as a daytime soaper 2 +103885 5478 a daytime soaper 2 +103886 5478 daytime soaper 1 +103887 5479 A drama of great power , yet some members of the audience will leave the theater believing they have seen a comedy . 2 +103888 5479 A drama of great power , yet some members of the audience 3 +103889 5479 of great power , yet some members of the audience 2 +103890 5479 great power , yet some members of the audience 3 +103891 5479 great power , yet 3 +103892 5479 great power , 3 +103893 5479 great power 3 +103894 5479 some members of the audience 2 +103895 5479 some members 2 +103896 5479 will leave the theater believing they have seen a comedy . 3 +103897 5479 will leave the theater believing they have seen a comedy 3 +103898 5479 leave the theater believing they have seen a comedy 2 +103899 5479 believing they have seen a comedy 2 +103900 5479 they have seen a comedy 2 +103901 5479 have seen a comedy 3 +103902 5479 seen a comedy 2 +103903 5480 Though Tom Shadyac 's film kicks off spookily enough , around the halfway mark it takes an abrupt turn into glucose sentimentality and laughable contrivance . 1 +103904 5480 Though Tom Shadyac 's film kicks off spookily enough 3 +103905 5480 Tom Shadyac 's film kicks off spookily enough 3 +103906 5480 Tom Shadyac 's film 2 +103907 5480 Tom Shadyac 's 2 +103908 5480 Shadyac 's 2 +103909 5480 kicks off spookily enough 2 +103910 5480 off spookily enough 3 +103911 5480 spookily enough 2 +103912 5480 spookily 2 +103913 5480 , around the halfway mark it takes an abrupt turn into glucose sentimentality and laughable contrivance . 1 +103914 5480 around the halfway mark it takes an abrupt turn into glucose sentimentality and laughable contrivance . 2 +103915 5480 around the 2 +103916 5480 halfway mark it takes an abrupt turn into glucose sentimentality and laughable contrivance . 1 +103917 5480 mark it takes an abrupt turn into glucose sentimentality and laughable contrivance . 1 +103918 5480 mark it takes an abrupt turn into glucose sentimentality and laughable contrivance 1 +103919 5480 it takes an abrupt turn into glucose sentimentality and laughable contrivance 1 +103920 5480 takes an abrupt turn into glucose sentimentality and laughable contrivance 1 +103921 5480 takes an abrupt turn 2 +103922 5480 an abrupt turn 2 +103923 5480 abrupt turn 2 +103924 5480 into glucose sentimentality and laughable contrivance 2 +103925 5480 glucose sentimentality and laughable contrivance 2 +103926 5480 glucose sentimentality and 1 +103927 5480 glucose sentimentality 2 +103928 5480 glucose 2 +103929 5480 laughable contrivance 2 +103930 5481 A must-see for fans of thoughtful war films and those interested in the sights and sounds of battle . 4 +103931 5481 A must-see for fans of thoughtful war films and those 4 +103932 5481 for fans of thoughtful war films and those 2 +103933 5481 fans of thoughtful war films and those 2 +103934 5481 of thoughtful war films and those 3 +103935 5481 thoughtful war films and those 2 +103936 5481 thoughtful war films and 2 +103937 5481 thoughtful war films 3 +103938 5481 war films 2 +103939 5481 interested in the sights and sounds of battle . 2 +103940 5481 interested in the sights and sounds of battle 3 +103941 5481 in the sights and sounds of battle 2 +103942 5481 the sights and sounds of battle 2 +103943 5481 of battle 2 +103944 5482 An enthralling aesthetic experience , one that 's steeped in mystery and a ravishing , baroque beauty . 4 +103945 5482 An enthralling aesthetic experience , one that 's steeped in mystery and a ravishing , baroque beauty 4 +103946 5482 An enthralling aesthetic experience , 4 +103947 5482 An enthralling aesthetic experience 3 +103948 5482 enthralling aesthetic experience 3 +103949 5482 aesthetic experience 3 +103950 5482 aesthetic 2 +103951 5482 one that 's steeped in mystery and a ravishing , baroque beauty 3 +103952 5482 that 's steeped in mystery and a ravishing , baroque beauty 4 +103953 5482 's steeped in mystery and a ravishing , baroque beauty 4 +103954 5482 steeped in mystery and a ravishing , baroque beauty 3 +103955 5482 in mystery and a ravishing , baroque beauty 4 +103956 5482 mystery and a ravishing , baroque beauty 3 +103957 5482 mystery and 2 +103958 5482 a ravishing , baroque beauty 4 +103959 5482 ravishing , baroque beauty 3 +103960 5482 ravishing 3 +103961 5482 , baroque beauty 3 +103962 5482 baroque beauty 3 +103963 5482 baroque 2 +103964 5483 Berling and 2 +103965 5483 Berling 2 +103966 5483 ... continue to impress 3 +103967 5483 continue to impress 3 +103968 5483 to impress 2 +103969 5483 Isabelle Huppert ... again shows uncanny skill in getting under the skin of her characters 3 +103970 5483 Isabelle Huppert 2 +103971 5483 Isabelle 2 +103972 5483 ... again shows uncanny skill in getting under the skin of her characters 3 +103973 5483 again shows uncanny skill in getting under the skin of her characters 2 +103974 5483 shows uncanny skill in getting under the skin of her characters 3 +103975 5483 uncanny skill in getting under the skin of her characters 3 +103976 5483 uncanny skill 2 +103977 5483 in getting under the skin of her characters 3 +103978 5483 getting under the skin of her characters 2 +103979 5483 under the skin of her characters 3 +103980 5483 the skin of her characters 2 +103981 5483 of her characters 2 +103982 5484 High Crimes knows the mistakes that bad movies make and is determined not to make them , and maybe that is nobility of a sort . 2 +103983 5484 knows the mistakes that bad movies make and is determined not to make them , and maybe that is nobility of a sort . 2 +103984 5484 knows the mistakes that bad movies make and is determined not to make them , and maybe that is nobility of a sort 3 +103985 5484 knows the mistakes 2 +103986 5484 the mistakes 2 +103987 5484 mistakes 1 +103988 5484 that bad movies make and is determined not to make them , and maybe that is nobility of a sort 2 +103989 5484 that bad movies make and is determined not to make them , and maybe 2 +103990 5484 that bad movies make and is determined not to make them , and 1 +103991 5484 that bad movies make and is determined not to make them , 2 +103992 5484 that bad movies make and is determined not to make them 2 +103993 5484 bad movies make and is determined not to make them 1 +103994 5484 bad movies 1 +103995 5484 make and is determined not to make them 2 +103996 5484 make and 2 +103997 5484 is determined not to make them 2 +103998 5484 determined not to make them 2 +103999 5484 not to make them 2 +104000 5484 to make them 2 +104001 5484 make them 2 +104002 5484 that is nobility of a sort 3 +104003 5484 is nobility of a sort 2 +104004 5484 nobility of a sort 2 +104005 5484 nobility 2 +104006 5484 of a sort 2 +104007 5485 ZigZag might have been richer and more observant if it were less densely plotted . 1 +104008 5485 ZigZag 2 +104009 5485 might have been richer and more observant if it were less densely plotted . 2 +104010 5485 might have been richer and more observant if it were less densely plotted 2 +104011 5485 have been richer and more observant if it were less densely plotted 1 +104012 5485 been richer and more observant if it were less densely plotted 1 +104013 5485 been richer and more observant 2 +104014 5485 richer and more observant 3 +104015 5485 richer and 2 +104016 5485 more observant 2 +104017 5485 if it were less densely plotted 2 +104018 5485 it were less densely plotted 2 +104019 5485 were less densely plotted 1 +104020 5485 were less 2 +104021 5485 densely plotted 2 +104022 5485 densely 2 +104023 5486 Despite all the closed-door hanky-panky , the film is essentially juiceless . 0 +104024 5486 Despite all the closed-door hanky-panky 2 +104025 5486 all the closed-door hanky-panky 2 +104026 5486 the closed-door hanky-panky 2 +104027 5486 closed-door hanky-panky 2 +104028 5486 closed-door 2 +104029 5486 hanky-panky 2 +104030 5486 , the film is essentially juiceless . 2 +104031 5486 the film is essentially juiceless . 1 +104032 5486 is essentially juiceless . 1 +104033 5486 is essentially juiceless 2 +104034 5486 essentially juiceless 1 +104035 5486 juiceless 1 +104036 5487 American musical comedy as we know it would n't exist without the precedent of Yiddish theater , whose jolly , fun-for-fun 's - sake communal spirit goes to the essence of Broadway . 3 +104037 5487 American musical comedy as we 2 +104038 5487 American musical comedy 2 +104039 5487 as we 3 +104040 5487 know it would n't exist without the precedent of Yiddish theater , whose jolly , fun-for-fun 's - sake communal spirit goes to the essence of Broadway . 4 +104041 5487 know it would n't exist without the precedent of Yiddish theater , whose jolly , fun-for-fun 's - sake communal spirit goes to the essence of Broadway 3 +104042 5487 it would n't exist without the precedent of Yiddish theater , whose jolly , fun-for-fun 's - sake communal spirit goes to the essence of Broadway 3 +104043 5487 would n't exist without the precedent of Yiddish theater , whose jolly , fun-for-fun 's - sake communal spirit goes to the essence of Broadway 3 +104044 5487 exist without the precedent of Yiddish theater , whose jolly , fun-for-fun 's - sake communal spirit goes to the essence of Broadway 2 +104045 5487 without the precedent of Yiddish theater , whose jolly , fun-for-fun 's - sake communal spirit goes to the essence of Broadway 3 +104046 5487 the precedent of Yiddish theater , whose jolly , fun-for-fun 's - sake communal spirit goes to the essence of Broadway 3 +104047 5487 the precedent 2 +104048 5487 precedent 2 +104049 5487 of Yiddish theater , whose jolly , fun-for-fun 's - sake communal spirit goes to the essence of Broadway 3 +104050 5487 Yiddish theater , whose jolly , fun-for-fun 's - sake communal spirit goes to the essence of Broadway 3 +104051 5487 Yiddish theater , 2 +104052 5487 whose jolly , fun-for-fun 's - sake communal spirit goes to the essence of Broadway 3 +104053 5487 jolly , fun-for-fun 's - sake communal spirit goes to the essence of Broadway 3 +104054 5487 , fun-for-fun 's - sake communal spirit goes to the essence of Broadway 3 +104055 5487 fun-for-fun 's - sake communal spirit goes to the essence of Broadway 3 +104056 5487 fun-for-fun 's - sake communal spirit 2 +104057 5487 fun-for-fun 's 3 +104058 5487 fun-for-fun 3 +104059 5487 - sake communal spirit 2 +104060 5487 sake communal spirit 2 +104061 5487 communal spirit 3 +104062 5487 goes to the essence of Broadway 3 +104063 5487 to the essence of Broadway 2 +104064 5487 the essence of Broadway 2 +104065 5487 of Broadway 2 +104066 5488 A ` Girls Gone Wild ' video for the boho art-house crowd , The Burning Sensation is n't a definitive counter-cultural document -- its makers are n't removed and inquisitive enough for that . 0 +104067 5488 A ` Girls Gone Wild ' video for the boho art-house crowd , The Burning Sensation is n't a definitive counter-cultural document -- its makers are n't removed and inquisitive enough for that 1 +104068 5488 A ` Girls Gone Wild ' video for the boho art-house crowd , The Burning Sensation is n't a definitive counter-cultural document -- 1 +104069 5488 A ` Girls Gone Wild ' video for the boho art-house crowd , The Burning Sensation is n't a definitive counter-cultural document 1 +104070 5488 A ` Girls Gone Wild ' video for the boho art-house crowd , The Burning Sensation 1 +104071 5488 A ` Girls Gone Wild ' video 1 +104072 5488 A ` Girls Gone Wild ' 2 +104073 5488 ` Girls Gone Wild ' 2 +104074 5488 Girls Gone Wild ' 2 +104075 5488 Gone Wild ' 2 +104076 5488 Wild ' 2 +104077 5488 for the boho art-house crowd , The Burning Sensation 2 +104078 5488 the boho art-house crowd , The Burning Sensation 2 +104079 5488 the boho art-house crowd , 2 +104080 5488 the boho art-house crowd 3 +104081 5488 boho art-house crowd 2 +104082 5488 boho 2 +104083 5488 The Burning Sensation 3 +104084 5488 Burning Sensation 2 +104085 5488 is n't a definitive counter-cultural document 2 +104086 5488 a definitive counter-cultural document 3 +104087 5488 definitive counter-cultural document 2 +104088 5488 counter-cultural document 2 +104089 5488 its makers are n't removed and inquisitive enough for that 1 +104090 5488 are n't removed and inquisitive enough for that 2 +104091 5488 removed and inquisitive enough for that 2 +104092 5488 removed and 2 +104093 5488 inquisitive enough for that 2 +104094 5488 inquisitive enough 3 +104095 5489 Kurys never shows why , of all the period 's volatile romantic lives , Sand and Musset are worth particular attention . 2 +104096 5489 never shows why , of all the period 's volatile romantic lives , Sand and Musset are worth particular attention . 2 +104097 5489 shows why , of all the period 's volatile romantic lives , Sand and Musset are worth particular attention . 3 +104098 5489 shows why , of all the period 's volatile romantic lives , Sand and Musset are worth particular attention 3 +104099 5489 why , of all the period 's volatile romantic lives , Sand and Musset are worth particular attention 3 +104100 5489 , of all the period 's volatile romantic lives , Sand and Musset are worth particular attention 3 +104101 5489 of all the period 's volatile romantic lives , Sand and Musset are worth particular attention 3 +104102 5489 of all the period 's volatile romantic lives 2 +104103 5489 all the period 's volatile romantic lives 3 +104104 5489 the period 's volatile romantic lives 3 +104105 5489 the period 's 2 +104106 5489 period 's 2 +104107 5489 volatile romantic lives 2 +104108 5489 romantic lives 3 +104109 5489 , Sand and Musset are worth particular attention 3 +104110 5489 Sand and Musset are worth particular attention 3 +104111 5489 Sand and Musset 2 +104112 5489 Sand and 2 +104113 5489 are worth particular attention 3 +104114 5489 worth particular attention 3 +104115 5489 worth particular 3 +104116 5490 Skip this dreck , rent Animal House and go back to the source . 1 +104117 5490 Skip this dreck , rent Animal House and go back to the source 1 +104118 5490 Skip this dreck , rent Animal House and 1 +104119 5490 Skip this dreck , rent Animal House 1 +104120 5490 Skip this dreck , 0 +104121 5490 Skip this dreck 0 +104122 5490 this dreck 1 +104123 5490 rent Animal House 2 +104124 5490 go back to the source 2 +104125 5490 to the source 2 +104126 5491 Reign of Fire never comes close to recovering from its demented premise , but it does sustain an enjoyable level of ridiculousness . 1 +104127 5491 Reign of Fire never comes close to recovering from its demented premise , but it does sustain an enjoyable level of ridiculousness 2 +104128 5491 Reign of Fire never comes close to recovering from its demented premise , but 1 +104129 5491 Reign of Fire never comes close to recovering from its demented premise , 1 +104130 5491 Reign of Fire never comes close to recovering from its demented premise 2 +104131 5491 never comes close to recovering from its demented premise 0 +104132 5491 comes close to recovering from its demented premise 2 +104133 5491 close to recovering from its demented premise 2 +104134 5491 to recovering from its demented premise 1 +104135 5491 recovering from its demented premise 1 +104136 5491 recovering 2 +104137 5491 from its demented premise 2 +104138 5491 its demented premise 1 +104139 5491 demented premise 1 +104140 5491 it does sustain an enjoyable level of ridiculousness 3 +104141 5491 does sustain an enjoyable level of ridiculousness 3 +104142 5491 sustain an enjoyable level of ridiculousness 3 +104143 5491 an enjoyable level of ridiculousness 3 +104144 5491 an enjoyable level 3 +104145 5491 enjoyable level 3 +104146 5492 An overly melodramatic but somewhat insightful French coming-of-age film ... 2 +104147 5492 An overly melodramatic but somewhat insightful French coming-of-age film 3 +104148 5492 overly melodramatic but somewhat insightful French coming-of-age film 2 +104149 5492 overly melodramatic but somewhat insightful 2 +104150 5492 overly melodramatic but 1 +104151 5492 overly melodramatic 1 +104152 5492 somewhat insightful 3 +104153 5492 French coming-of-age film 2 +104154 5493 ... a rather bland affair . 1 +104155 5493 a rather bland affair . 1 +104156 5493 a rather bland 1 +104157 5493 rather bland 1 +104158 5493 affair . 2 +104159 5494 Only for young children , if them . 2 +104160 5494 Only for young children 2 +104161 5494 for young children 2 +104162 5494 young children 3 +104163 5494 , if them . 2 +104164 5494 if them . 2 +104165 5494 if them 2 +104166 5495 ... it was n't the subject matter that ultimately defeated the film ... It was the unfulfilling , incongruous , `` wait a second , did I miss something ? '' 0 +104167 5495 it was n't the subject matter that ultimately defeated the film ... It was the unfulfilling , incongruous , `` wait a second , did I miss something ? '' 0 +104168 5495 it was n't the subject matter that ultimately defeated the film ... It was the unfulfilling , incongruous , `` wait a second 0 +104169 5495 was n't the subject matter that ultimately defeated the film ... It was the unfulfilling , incongruous , `` wait a second 0 +104170 5495 the subject matter that ultimately defeated the film ... It was the unfulfilling , incongruous , `` wait a second 1 +104171 5495 that ultimately defeated the film ... It was the unfulfilling , incongruous , `` wait a second 0 +104172 5495 ultimately defeated the film ... It was the unfulfilling , incongruous , `` wait a second 1 +104173 5495 defeated the film ... It was the unfulfilling , incongruous , `` wait a second 0 +104174 5495 the film ... It was the unfulfilling , incongruous , `` wait a second 1 +104175 5495 the film ... 2 +104176 5495 It was the unfulfilling , incongruous , `` wait a second 1 +104177 5495 was the unfulfilling , incongruous , `` wait a second 1 +104178 5495 the unfulfilling , incongruous , `` wait a second 2 +104179 5495 the unfulfilling , incongruous , 1 +104180 5495 the unfulfilling , incongruous 1 +104181 5495 the unfulfilling , 2 +104182 5495 the unfulfilling 1 +104183 5495 `` wait a second 2 +104184 5495 wait a second 2 +104185 5495 , did I miss something ? '' 2 +104186 5495 did I miss something ? '' 1 +104187 5495 did I miss something ? 1 +104188 5495 did I miss something 1 +104189 5495 I miss something 2 +104190 5495 miss something 2 +104191 5496 Toes the fine line between cheese and earnestness remarkably well ; everything is delivered with such conviction that it 's hard not to be carried away . 3 +104192 5496 Toes the fine line between cheese and earnestness remarkably well ; everything is delivered with such conviction that it 's hard not to be carried away 3 +104193 5496 Toes the fine line between cheese and earnestness remarkably well ; 2 +104194 5496 Toes the fine line between cheese and earnestness remarkably well 3 +104195 5496 the fine line between cheese and earnestness remarkably well 3 +104196 5496 the fine line between cheese and 2 +104197 5496 the fine line between cheese 1 +104198 5496 the fine line 2 +104199 5496 fine line 2 +104200 5496 between cheese 2 +104201 5496 earnestness remarkably well 4 +104202 5496 remarkably well 3 +104203 5496 everything is delivered with such conviction that it 's hard not to be carried away 4 +104204 5496 is delivered with such conviction that it 's hard not to be carried away 4 +104205 5496 delivered with such conviction that it 's hard not to be carried away 4 +104206 5496 delivered with such conviction 3 +104207 5496 with such conviction 2 +104208 5496 such conviction 3 +104209 5496 that it 's hard not to be carried away 3 +104210 5496 it 's hard not to be carried away 3 +104211 5496 's hard not to be carried away 3 +104212 5496 not to be carried away 2 +104213 5496 to be carried away 2 +104214 5496 be carried away 2 +104215 5496 carried away 2 +104216 5497 ... comes alive only when it switches gears to the sentimental . 1 +104217 5497 comes alive only when it switches gears to the sentimental . 2 +104218 5497 comes alive only when it switches gears to the sentimental 2 +104219 5497 alive only when it switches gears to the sentimental 2 +104220 5497 alive only 2 +104221 5497 when it switches gears to the sentimental 2 +104222 5497 it switches gears to the sentimental 2 +104223 5497 switches gears to the sentimental 2 +104224 5497 switches gears 2 +104225 5497 gears 2 +104226 5497 to the sentimental 2 +104227 5497 the sentimental 2 +104228 5498 It may even fall into the category of Films You Love to Hate . 2 +104229 5498 It may even fall into the category of Films 2 +104230 5498 may even fall into the category of Films 2 +104231 5498 fall into the category of Films 2 +104232 5498 into the category of Films 2 +104233 5498 the category of Films 2 +104234 5498 the category 2 +104235 5498 You Love to Hate . 2 +104236 5498 Love to Hate . 2 +104237 5498 Love to Hate 2 +104238 5499 Those of you who do n't believe in Santa Claus probably also think that sequels can never capture the magic of the original . 2 +104239 5499 Those of you who do n't believe in Santa Claus 2 +104240 5499 who do n't believe in Santa Claus 3 +104241 5499 do n't believe in Santa Claus 1 +104242 5499 believe in Santa Claus 2 +104243 5499 in Santa Claus 2 +104244 5499 Santa Claus 2 +104245 5499 Claus 2 +104246 5499 probably also think that sequels can never capture the magic of the original . 3 +104247 5499 also think that sequels can never capture the magic of the original . 1 +104248 5499 also think that sequels can never capture the magic of the original 1 +104249 5499 think that sequels can never capture the magic of the original 1 +104250 5499 that sequels can never capture the magic of the original 1 +104251 5499 sequels can never capture the magic of the original 1 +104252 5499 can never capture the magic of the original 1 +104253 5499 can never 2 +104254 5499 capture the magic of the original 3 +104255 5499 the magic of the original 2 +104256 5500 Grant carries the day with impeccable comic timing , raffish charm and piercing intellect . 3 +104257 5500 carries the day with impeccable comic timing , raffish charm and piercing intellect . 3 +104258 5500 carries the day with impeccable comic timing , raffish charm and piercing intellect 4 +104259 5500 carries the day 2 +104260 5500 with impeccable comic timing , raffish charm and piercing intellect 4 +104261 5500 impeccable comic timing , raffish charm and piercing intellect 4 +104262 5500 impeccable comic timing , 3 +104263 5500 impeccable comic timing 3 +104264 5500 raffish charm and piercing intellect 2 +104265 5500 raffish charm and 2 +104266 5500 raffish charm 3 +104267 5500 raffish 2 +104268 5500 piercing intellect 3 +104269 5501 Good fun , good action , good acting , good dialogue , good pace , good cinematography . 4 +104270 5501 , good action , good acting , good dialogue , good pace , good cinematography . 4 +104271 5501 good action , good acting , good dialogue , good pace , good cinematography . 4 +104272 5501 good action , good acting , good dialogue , good pace , good cinematography 4 +104273 5501 good action , good acting , good dialogue , good pace , 4 +104274 5501 good action , good acting , good dialogue , good pace 4 +104275 5501 good action , good acting , good dialogue , 4 +104276 5501 good action , good acting , good dialogue 4 +104277 5501 good action , good acting , 4 +104278 5501 good action , good acting 4 +104279 5501 good action , 4 +104280 5501 good action 3 +104281 5501 good dialogue 3 +104282 5501 good pace 4 +104283 5501 good cinematography 3 +104284 5502 There are a few chuckles , but not a single gag sequence that really scores , and the stars seem to be in two different movies . 2 +104285 5502 There are a few chuckles , but not a single gag sequence that really scores , and the stars seem to be in two different movies 3 +104286 5502 There are a few chuckles , but not a single gag sequence that really scores , and 2 +104287 5502 There are a few chuckles , but not a single gag sequence that really scores , 1 +104288 5502 There are a few chuckles , but not a single gag sequence that really scores 1 +104289 5502 are a few chuckles , but not a single gag sequence that really scores 1 +104290 5502 a few chuckles , but not a single gag sequence that really scores 2 +104291 5502 a few chuckles , but not 2 +104292 5502 a few chuckles , 3 +104293 5502 a few chuckles 2 +104294 5502 few chuckles 2 +104295 5502 a single gag sequence that really scores 2 +104296 5502 a single gag sequence 1 +104297 5502 single gag sequence 3 +104298 5502 gag sequence 2 +104299 5502 that really scores 3 +104300 5502 really scores 3 +104301 5502 the stars seem to be in two different movies 2 +104302 5502 the stars 2 +104303 5502 seem to be in two different movies 1 +104304 5502 to be in two different movies 2 +104305 5502 be in two different movies 2 +104306 5502 in two different movies 2 +104307 5502 two different movies 2 +104308 5502 different movies 2 +104309 5503 For all the complications , it 's all surprisingly predictable . 2 +104310 5503 For all the complications 2 +104311 5503 all the complications 3 +104312 5503 the complications 2 +104313 5503 , it 's all surprisingly predictable . 1 +104314 5503 it 's all surprisingly predictable . 1 +104315 5503 's all surprisingly predictable . 1 +104316 5503 's all surprisingly predictable 1 +104317 5503 surprisingly predictable 2 +104318 5504 Michael Moore has perfected the art of highly entertaining , self-aggrandizing , politically motivated documentary-making , and he 's got as potent a topic as ever here . 3 +104319 5504 Michael Moore has perfected the art of highly entertaining , self-aggrandizing , politically motivated documentary-making , and he 's got as potent a topic as ever here 4 +104320 5504 Michael Moore has perfected the art of highly entertaining , self-aggrandizing , politically motivated documentary-making , and 4 +104321 5504 Michael Moore has perfected the art of highly entertaining , self-aggrandizing , politically motivated documentary-making , 4 +104322 5504 Michael Moore has perfected the art of highly entertaining , self-aggrandizing , politically motivated documentary-making 4 +104323 5504 Michael Moore 2 +104324 5504 has perfected the art of highly entertaining , self-aggrandizing , politically motivated documentary-making 4 +104325 5504 perfected the art of highly entertaining , self-aggrandizing , politically motivated documentary-making 4 +104326 5504 perfected 3 +104327 5504 the art of highly entertaining , self-aggrandizing , politically motivated documentary-making 2 +104328 5504 of highly entertaining , self-aggrandizing , politically motivated documentary-making 3 +104329 5504 highly entertaining , self-aggrandizing , politically motivated documentary-making 4 +104330 5504 highly entertaining , self-aggrandizing , politically motivated 3 +104331 5504 entertaining , self-aggrandizing , politically motivated 3 +104332 5504 , self-aggrandizing , politically motivated 2 +104333 5504 self-aggrandizing , politically motivated 2 +104334 5504 self-aggrandizing 2 +104335 5504 , politically motivated 2 +104336 5504 politically motivated 2 +104337 5504 documentary-making 2 +104338 5504 he 's got as potent a topic as ever here 3 +104339 5504 's got as potent a topic as ever here 3 +104340 5504 got as potent a topic as ever here 3 +104341 5504 got as potent 2 +104342 5504 as potent 2 +104343 5504 a topic as ever here 2 +104344 5504 a topic as 2 +104345 5504 a topic 2 +104346 5504 ever here 2 +104347 5505 Sometimes entertaining , sometimes indulgent -- but never less than pure wankery . 2 +104348 5505 Sometimes entertaining , sometimes indulgent 2 +104349 5505 Sometimes entertaining 3 +104350 5505 , sometimes indulgent 2 +104351 5505 sometimes indulgent 2 +104352 5505 -- but never less than pure wankery . 1 +104353 5505 but never less than pure wankery . 0 +104354 5505 never less than pure wankery . 1 +104355 5505 less than pure wankery . 0 +104356 5505 less than pure wankery 1 +104357 5505 than pure wankery 0 +104358 5505 pure wankery 1 +104359 5505 wankery 2 +104360 5506 The difference between Cho and most comics is that her confidence in her material is merited . 3 +104361 5506 The difference between Cho and most comics 2 +104362 5506 between Cho and most comics 2 +104363 5506 Cho and most comics 2 +104364 5506 Cho and 2 +104365 5506 most comics 2 +104366 5506 is that her confidence in her material is merited . 3 +104367 5506 is that her confidence in her material is merited 3 +104368 5506 that her confidence in her material is merited 2 +104369 5506 her confidence in her material is merited 4 +104370 5506 her confidence in her material 3 +104371 5506 her confidence 2 +104372 5506 in her material 2 +104373 5506 is merited 3 +104374 5506 merited 2 +104375 5507 Delivers the sexy razzle-dazzle that everyone , especially movie musical fans , has been hoping for . 3 +104376 5507 Delivers the sexy razzle-dazzle that everyone , especially movie musical fans , has been hoping for 4 +104377 5507 Delivers the sexy razzle-dazzle 3 +104378 5507 the sexy razzle-dazzle 3 +104379 5507 sexy razzle-dazzle 3 +104380 5507 that everyone , especially movie musical fans , has been hoping for 3 +104381 5507 everyone , especially movie musical fans , has been hoping for 3 +104382 5507 everyone , especially movie musical fans , 2 +104383 5507 everyone , especially movie musical fans 3 +104384 5507 everyone , 2 +104385 5507 especially movie musical fans 2 +104386 5507 especially movie 2 +104387 5507 musical fans 2 +104388 5507 has been hoping for 2 +104389 5507 been hoping for 3 +104390 5507 hoping for 2 +104391 5508 Sandra Bullock and Hugh Grant make a great team , but this predictable romantic comedy should get a pink slip . 1 +104392 5508 Sandra Bullock and Hugh Grant make a great team , but this predictable romantic comedy should get a pink slip 1 +104393 5508 Sandra Bullock and Hugh Grant make a great team , but 3 +104394 5508 Sandra Bullock and Hugh Grant make a great team , 4 +104395 5508 Sandra Bullock and Hugh Grant make a great team 3 +104396 5508 Bullock and Hugh Grant 2 +104397 5508 and Hugh Grant 2 +104398 5508 make a great team 3 +104399 5508 a great team 3 +104400 5508 great team 3 +104401 5508 this predictable romantic comedy should get a pink slip 1 +104402 5508 this predictable romantic comedy 2 +104403 5508 predictable romantic comedy 1 +104404 5508 should get a pink slip 1 +104405 5508 get a pink slip 2 +104406 5508 a pink slip 2 +104407 5508 pink slip 2 +104408 5509 The film offers an intriguing what-if premise . 4 +104409 5509 offers an intriguing what-if premise . 3 +104410 5509 offers an intriguing what-if premise 3 +104411 5509 an intriguing what-if premise 3 +104412 5509 intriguing what-if premise 3 +104413 5509 what-if premise 2 +104414 5510 Wonder , hope and magic can never escape the heart of the boy when the right movie comes along , especially if it begins with the name of Star Wars 3 +104415 5510 Wonder , hope and magic 3 +104416 5510 , hope and magic 2 +104417 5510 hope and magic 3 +104418 5510 can never escape the heart of the boy when the right movie comes along , especially if it begins with the name of Star Wars 3 +104419 5510 escape the heart of the boy when the right movie comes along , especially if it begins with the name of Star Wars 3 +104420 5510 escape the heart of the boy 2 +104421 5510 the heart of the boy 2 +104422 5510 of the boy 2 +104423 5510 the boy 2 +104424 5510 when the right movie comes along , especially if it begins with the name of Star Wars 3 +104425 5510 the right movie comes along , especially if it begins with the name of Star Wars 3 +104426 5510 the right movie 3 +104427 5510 right movie 3 +104428 5510 comes along , especially if it begins with the name of Star Wars 2 +104429 5510 comes along , 2 +104430 5510 especially if it begins with the name of Star Wars 2 +104431 5510 if it begins with the name of Star Wars 2 +104432 5510 it begins with the name of Star Wars 2 +104433 5510 begins with the name of Star Wars 2 +104434 5510 with the name of Star Wars 2 +104435 5510 the name of Star Wars 2 +104436 5510 of Star Wars 2 +104437 5510 Star Wars 2 +104438 5511 Very stupid and annoying . 0 +104439 5511 Very stupid and annoying 0 +104440 5511 stupid and annoying 0 +104441 5512 Aside from Rohmer 's bold choices regarding point of view , The Lady and the Duke represents the filmmaker 's lifelong concern with formalist experimentation in cinematic art . 3 +104442 5512 Aside from Rohmer 's bold choices regarding point of view 2 +104443 5512 from Rohmer 's bold choices regarding point of view 2 +104444 5512 Rohmer 's bold choices regarding point of view 2 +104445 5512 Rohmer 's bold choices 2 +104446 5512 bold choices 3 +104447 5512 regarding point of view 2 +104448 5512 , The Lady and the Duke represents the filmmaker 's lifelong concern with formalist experimentation in cinematic art . 3 +104449 5512 The Lady and the Duke represents the filmmaker 's lifelong concern with formalist experimentation in cinematic art . 3 +104450 5512 represents the filmmaker 's lifelong concern with formalist experimentation in cinematic art . 2 +104451 5512 represents the filmmaker 's lifelong concern with formalist experimentation in cinematic art 2 +104452 5512 the filmmaker 's lifelong concern with formalist experimentation in cinematic art 3 +104453 5512 the filmmaker 's lifelong concern 2 +104454 5512 lifelong concern 3 +104455 5512 lifelong 2 +104456 5512 with formalist experimentation in cinematic art 3 +104457 5512 formalist experimentation in cinematic art 2 +104458 5512 formalist experimentation 2 +104459 5512 formalist 2 +104460 5512 in cinematic art 2 +104461 5512 cinematic art 4 +104462 5513 ` If you are in the mood for an intelligent weepy , it can easily worm its way into your heart . ' 3 +104463 5513 If you are in the mood for an intelligent weepy , it can easily worm its way into your heart . ' 3 +104464 5513 If you are in the mood for an intelligent weepy 3 +104465 5513 you are in the mood for an intelligent weepy 2 +104466 5513 are in the mood for an intelligent weepy 2 +104467 5513 in the mood for an intelligent weepy 3 +104468 5513 the mood for an intelligent weepy 3 +104469 5513 for an intelligent weepy 3 +104470 5513 an intelligent weepy 3 +104471 5513 intelligent weepy 2 +104472 5513 , it can easily worm its way into your heart . ' 3 +104473 5513 it can easily worm its way into your heart . ' 3 +104474 5513 can easily worm its way into your heart . ' 4 +104475 5513 can easily worm its way into your heart . 3 +104476 5513 can easily worm its way into your heart 3 +104477 5513 worm its way into your heart 4 +104478 5514 In the end , the movie bogs down in insignificance , saying nothing about Kennedy 's assassination and revealing nothing about the pathology it pretends to investigate . 0 +104479 5514 , the movie bogs down in insignificance , saying nothing about Kennedy 's assassination and revealing nothing about the pathology it pretends to investigate . 0 +104480 5514 the movie bogs down in insignificance , saying nothing about Kennedy 's assassination and revealing nothing about the pathology it pretends to investigate . 0 +104481 5514 bogs down in insignificance , saying nothing about Kennedy 's assassination and revealing nothing about the pathology it pretends to investigate . 1 +104482 5514 bogs down in insignificance , saying nothing about Kennedy 's assassination and revealing nothing about the pathology it pretends to investigate 0 +104483 5514 bogs down in insignificance , 1 +104484 5514 bogs down in insignificance 0 +104485 5514 in insignificance 1 +104486 5514 saying nothing about Kennedy 's assassination and revealing nothing about the pathology it pretends to investigate 1 +104487 5514 saying nothing about Kennedy 's assassination and 2 +104488 5514 saying nothing about Kennedy 's assassination 2 +104489 5514 nothing about Kennedy 's assassination 2 +104490 5514 about Kennedy 's assassination 2 +104491 5514 Kennedy 's assassination 2 +104492 5514 Kennedy 's 2 +104493 5514 assassination 1 +104494 5514 revealing nothing about the pathology it pretends to investigate 3 +104495 5514 revealing nothing 1 +104496 5514 about the pathology it pretends to investigate 2 +104497 5514 the pathology it pretends to investigate 1 +104498 5514 it pretends to investigate 1 +104499 5514 pretends to investigate 2 +104500 5514 to investigate 3 +104501 5515 The picture emerges as a surprisingly anemic disappointment . 0 +104502 5515 emerges as a surprisingly anemic disappointment . 0 +104503 5515 emerges as a surprisingly anemic disappointment 0 +104504 5515 as a surprisingly anemic disappointment 0 +104505 5515 a surprisingly anemic disappointment 0 +104506 5515 surprisingly anemic disappointment 1 +104507 5515 surprisingly anemic 2 +104508 5516 Though Impostor deviously adopts the guise of a modern motion picture , it too is a bomb . 1 +104509 5516 Though Impostor deviously adopts the guise of a modern motion picture 2 +104510 5516 Impostor deviously adopts the guise of a modern motion picture 0 +104511 5516 deviously adopts the guise of a modern motion picture 3 +104512 5516 deviously 2 +104513 5516 adopts the guise of a modern motion picture 2 +104514 5516 adopts 2 +104515 5516 the guise of a modern motion picture 1 +104516 5516 the guise 2 +104517 5516 guise 2 +104518 5516 of a modern motion picture 2 +104519 5516 a modern motion picture 3 +104520 5516 modern motion picture 2 +104521 5516 , it too is a bomb . 2 +104522 5516 it too is a bomb . 0 +104523 5516 too is a bomb . 1 +104524 5516 is a bomb . 0 +104525 5516 is a bomb 0 +104526 5516 a bomb 1 +104527 5516 bomb 0 +104528 5517 ` It looks good , Sonny , but you missed the point . ' 1 +104529 5517 It looks good , Sonny , but you missed the point . ' 1 +104530 5517 It looks good , Sonny , but you missed the point . 2 +104531 5517 It looks good , Sonny , but you missed the point 1 +104532 5517 It looks good , Sonny , but 2 +104533 5517 It looks good , Sonny , 3 +104534 5517 It looks good , Sonny 3 +104535 5517 looks good , Sonny 2 +104536 5517 good , Sonny 3 +104537 5517 good , 3 +104538 5517 you missed the point 1 +104539 5517 missed the point 1 +104540 5518 Crummy . 0 +104541 5519 Essentially , the film is weak on detail and strong on personality 2 +104542 5519 , the film is weak on detail and strong on personality 2 +104543 5519 the film is weak on detail and strong on personality 3 +104544 5519 is weak on detail and strong on personality 2 +104545 5519 weak on detail and strong on personality 3 +104546 5519 weak on detail and 1 +104547 5519 weak on detail 1 +104548 5519 on detail 2 +104549 5519 strong on personality 3 +104550 5519 on personality 2 +104551 5520 Cold , nervy and memorable . 3 +104552 5520 Cold , nervy and memorable 4 +104553 5520 nervy and memorable 3 +104554 5520 nervy and 3 +104555 5521 A captivating coming-of-age story that may also be the first narrative film to be truly informed by the wireless age . 4 +104556 5521 A captivating coming-of-age story that may also be the first narrative film to be truly informed by the wireless 4 +104557 5521 A captivating coming-of-age story 3 +104558 5521 captivating coming-of-age story 3 +104559 5521 that may also be the first narrative film to be truly informed by the wireless 3 +104560 5521 may also be the first narrative film to be truly informed by the wireless 3 +104561 5521 may also 2 +104562 5521 be the first narrative film to be truly informed by the wireless 2 +104563 5521 be the first narrative film 2 +104564 5521 the first narrative film 2 +104565 5521 first narrative film 2 +104566 5521 narrative film 2 +104567 5521 to be truly informed by the wireless 2 +104568 5521 be truly informed by the wireless 2 +104569 5521 truly informed by the wireless 2 +104570 5521 informed by the wireless 2 +104571 5521 by the wireless 2 +104572 5521 the wireless 2 +104573 5521 wireless 2 +104574 5521 age . 2 +104575 5522 Nothing about this movie works . 0 +104576 5522 Nothing about this movie 1 +104577 5523 If Mr. Zhang 's subject matter is , to some degree at least , quintessentially American , his approach to storytelling might be called Iranian . 2 +104578 5523 If Mr. Zhang 's subject matter is , to some degree at least , quintessentially American 2 +104579 5523 Mr. Zhang 's subject matter is , to some degree at least , quintessentially American 2 +104580 5523 Mr. Zhang 's subject matter 2 +104581 5523 Mr. Zhang 's 2 +104582 5523 is , to some degree at least , quintessentially American 3 +104583 5523 is , to some degree at least , 2 +104584 5523 is , to some degree at least 2 +104585 5523 is , to some degree 2 +104586 5523 to some degree 2 +104587 5523 some degree 2 +104588 5523 quintessentially American 3 +104589 5523 quintessentially 2 +104590 5523 , his approach to storytelling might be called Iranian . 1 +104591 5523 his approach to storytelling might be called Iranian . 2 +104592 5523 his approach to storytelling 2 +104593 5523 his approach 2 +104594 5523 to storytelling 2 +104595 5523 might be called Iranian . 2 +104596 5523 might be called Iranian 2 +104597 5523 be called Iranian 2 +104598 5523 called Iranian 2 +104599 5524 It comes off as so silly that you would n't be surprised if BA , Murdock and rest of the A-Team were seen giving chase in a black and red van . 2 +104600 5524 comes off as so silly that you would n't be surprised if BA , Murdock and rest of the A-Team were seen giving chase in a black and red van . 1 +104601 5524 comes off as so silly that you would n't be surprised if BA , Murdock and rest of the A-Team were seen giving chase in a black and red van 1 +104602 5524 comes off as so silly 2 +104603 5524 as so silly 2 +104604 5524 so silly 2 +104605 5524 that you would n't be surprised if BA , Murdock and rest of the A-Team were seen giving chase in a black and red van 2 +104606 5524 you would n't be surprised if BA , Murdock and rest of the A-Team were seen giving chase in a black and red van 2 +104607 5524 would n't be surprised if BA , Murdock and rest of the A-Team were seen giving chase in a black and red van 2 +104608 5524 be surprised if BA , Murdock and rest of the A-Team were seen giving chase in a black and red van 2 +104609 5524 be surprised 2 +104610 5524 if BA , Murdock and rest of the A-Team were seen giving chase in a black and red van 2 +104611 5524 BA , Murdock and rest of the A-Team were seen giving chase in a black and red van 2 +104612 5524 BA , Murdock and rest of the A-Team 2 +104613 5524 BA , Murdock and rest 2 +104614 5524 BA 2 +104615 5524 , Murdock and rest 2 +104616 5524 Murdock and rest 2 +104617 5524 Murdock and 2 +104618 5524 Murdock 2 +104619 5524 of the A-Team 2 +104620 5524 the A-Team 2 +104621 5524 A-Team 2 +104622 5524 were seen giving chase in a black and red van 2 +104623 5524 seen giving chase in a black and red van 2 +104624 5524 giving chase in a black and red van 2 +104625 5524 giving chase 2 +104626 5524 in a black and red van 2 +104627 5524 a black and red van 2 +104628 5524 black and red van 2 +104629 5524 and red van 2 +104630 5524 red van 2 +104631 5525 It 's sort of in-between , and it works . 3 +104632 5525 It 's sort of in-between , and it works 2 +104633 5525 It 's sort of in-between , and 2 +104634 5525 It 's sort of in-between , 2 +104635 5525 It 's sort of in-between 3 +104636 5525 's sort of in-between 2 +104637 5525 sort of in-between 2 +104638 5525 of in-between 2 +104639 5525 in-between 2 +104640 5526 Impeccably filmed , sexually charged , but ultimately lacking in substance , not to mention dragged down by a leaden closing act . 2 +104641 5526 Impeccably filmed 3 +104642 5526 Impeccably 3 +104643 5526 , sexually charged , but ultimately lacking in substance , not to mention dragged down by a leaden closing act . 1 +104644 5526 sexually charged , but ultimately lacking in substance , not to mention dragged down by a leaden closing act . 2 +104645 5526 charged , but ultimately lacking in substance , not to mention dragged down by a leaden closing act . 0 +104646 5526 charged , but ultimately lacking in substance , not to mention dragged down by a leaden closing act 1 +104647 5526 charged , but ultimately 2 +104648 5526 charged , but 2 +104649 5526 charged , 2 +104650 5526 lacking in substance , not to mention dragged down by a leaden closing act 1 +104651 5526 lacking in substance , 1 +104652 5526 lacking in substance 0 +104653 5526 in substance 2 +104654 5526 not to mention dragged down by a leaden closing act 0 +104655 5526 to mention dragged down by a leaden closing act 1 +104656 5526 mention dragged down by a leaden closing act 0 +104657 5526 dragged down by a leaden closing act 1 +104658 5526 dragged down 1 +104659 5526 by a leaden closing act 2 +104660 5526 a leaden closing act 2 +104661 5526 leaden closing act 3 +104662 5526 closing act 2 +104663 5527 ` Tobey Maguire is a poster boy for the geek generation . ' 2 +104664 5527 Tobey Maguire is a poster boy for the geek generation . ' 2 +104665 5527 Tobey Maguire 2 +104666 5527 Tobey 2 +104667 5527 is a poster boy for the geek generation . ' 3 +104668 5527 is a poster boy for the geek generation . 3 +104669 5527 is a poster boy for the geek generation 3 +104670 5527 a poster boy for the geek generation 2 +104671 5527 a poster boy 2 +104672 5527 poster boy 2 +104673 5527 for the geek generation 2 +104674 5527 the geek generation 2 +104675 5527 geek generation 2 +104676 5527 geek 2 +104677 5528 With Freeman and Judd , I 'll at least remember their characters . 2 +104678 5528 With Freeman and Judd 2 +104679 5528 Freeman and Judd 2 +104680 5528 Freeman and 2 +104681 5528 , I 'll at least remember their characters . 2 +104682 5528 I 'll at least remember their characters . 3 +104683 5528 'll at least remember their characters . 2 +104684 5528 'll at least remember their characters 2 +104685 5528 'll at least 2 +104686 5528 remember their characters 2 +104687 5529 A Lifetime movie about men . 2 +104688 5529 A Lifetime movie about men 2 +104689 5529 A Lifetime movie 1 +104690 5529 Lifetime movie 3 +104691 5529 about men 2 +104692 5530 Meeting , even exceeding expectations , it 's the best sequel since The Empire Strikes Back ... a majestic achievement , an epic of astonishing grandeur and surprising emotional depth . 4 +104693 5530 Meeting , even exceeding expectations 3 +104694 5530 Meeting , even 2 +104695 5530 Meeting , 2 +104696 5530 Meeting 2 +104697 5530 exceeding expectations 4 +104698 5530 exceeding 2 +104699 5530 , it 's the best sequel since The Empire Strikes Back ... a majestic achievement , an epic of astonishing grandeur and surprising emotional depth . 4 +104700 5530 it 's the best sequel since The Empire Strikes Back ... a majestic achievement , an epic of astonishing grandeur and surprising emotional depth . 4 +104701 5530 's the best sequel since The Empire Strikes Back ... a majestic achievement , an epic of astonishing grandeur and surprising emotional depth . 4 +104702 5530 's the best sequel since The Empire Strikes Back ... a majestic achievement , an epic of astonishing grandeur and surprising emotional depth 4 +104703 5530 the best sequel since The Empire Strikes Back ... a majestic achievement , an epic of astonishing grandeur and surprising emotional depth 4 +104704 5530 the best sequel 4 +104705 5530 best sequel 4 +104706 5530 since The Empire Strikes Back ... a majestic achievement , an epic of astonishing grandeur and surprising emotional depth 3 +104707 5530 The Empire Strikes Back ... a majestic achievement , an epic of astonishing grandeur and surprising emotional depth 3 +104708 5530 The Empire 2 +104709 5530 Strikes Back ... a majestic achievement , an epic of astonishing grandeur and surprising emotional depth 3 +104710 5530 Strikes Back ... 2 +104711 5530 Strikes Back 2 +104712 5530 a majestic achievement , an epic of astonishing grandeur and surprising emotional depth 4 +104713 5530 a majestic achievement , an epic of astonishing grandeur and 4 +104714 5530 a majestic achievement , an epic of astonishing grandeur 4 +104715 5530 a majestic achievement , 4 +104716 5530 a majestic achievement 4 +104717 5530 majestic achievement 4 +104718 5530 majestic 4 +104719 5530 an epic of astonishing grandeur 3 +104720 5530 of astonishing grandeur 4 +104721 5530 astonishing grandeur 4 +104722 5530 surprising emotional depth 3 +104723 5531 If you 're burnt out on It 's a Wonderful Life marathons and bored with A Christmas Carol , it might just be the movie you 're looking for . 3 +104724 5531 If you 're burnt out on It 's a Wonderful Life marathons and bored with A Christmas Carol 2 +104725 5531 you 're burnt out on It 's a Wonderful Life marathons and bored with A Christmas Carol 1 +104726 5531 're burnt out on It 's a Wonderful Life marathons and bored with A Christmas Carol 1 +104727 5531 burnt out on It 's a Wonderful Life marathons and bored with A Christmas Carol 1 +104728 5531 burnt out on It 's a Wonderful Life marathons and bored 1 +104729 5531 burnt out 1 +104730 5531 burnt 2 +104731 5531 on It 's a Wonderful Life marathons and bored 1 +104732 5531 It 's a Wonderful Life marathons and bored 1 +104733 5531 a Wonderful Life marathons and bored 1 +104734 5531 a Wonderful Life 2 +104735 5531 Wonderful Life 3 +104736 5531 marathons and bored 2 +104737 5531 marathons and 2 +104738 5531 marathons 2 +104739 5531 with A Christmas Carol 2 +104740 5531 , it might just be the movie you 're looking for . 3 +104741 5531 it might just be the movie you 're looking for . 3 +104742 5531 might just be the movie you 're looking for . 3 +104743 5531 might just be the movie you 're looking for 4 +104744 5531 be the movie you 're looking for 3 +104745 5531 the movie you 're looking for 3 +104746 5531 you 're looking for 2 +104747 5531 're looking for 2 +104748 5532 Parker can not sustain the buoyant energy level of the film 's city beginnings into its country conclusion ' 1 +104749 5532 can not sustain the buoyant energy level of the film 's city beginnings into its country conclusion ' 1 +104750 5532 sustain the buoyant energy level of the film 's city beginnings into its country conclusion ' 3 +104751 5532 sustain the buoyant energy level of the film 's city beginnings 3 +104752 5532 the buoyant energy level of the film 's city beginnings 3 +104753 5532 the buoyant energy level 3 +104754 5532 buoyant energy level 3 +104755 5532 energy level 2 +104756 5532 of the film 's city beginnings 2 +104757 5532 the film 's city beginnings 2 +104758 5532 city beginnings 2 +104759 5532 beginnings 3 +104760 5532 into its country conclusion ' 2 +104761 5532 its country conclusion ' 2 +104762 5532 country conclusion ' 2 +104763 5532 conclusion ' 2 +104764 5533 Kenneth Branagh 's energetic sweet-and-sour performance as a curmudgeonly British playwright grounds this overstuffed , erratic dramedy in which he and his improbably forbearing wife contend with craziness and child-rearing in Los Angeles . 2 +104765 5533 Kenneth Branagh 's energetic sweet-and-sour performance as a curmudgeonly British playwright 3 +104766 5533 Kenneth Branagh 's energetic sweet-and-sour performance 2 +104767 5533 Kenneth Branagh 's 2 +104768 5533 Branagh 's 2 +104769 5533 energetic sweet-and-sour performance 3 +104770 5533 sweet-and-sour performance 3 +104771 5533 sweet-and-sour 2 +104772 5533 as a curmudgeonly British playwright 2 +104773 5533 a curmudgeonly British playwright 2 +104774 5533 curmudgeonly British playwright 2 +104775 5533 curmudgeonly 1 +104776 5533 British playwright 2 +104777 5533 grounds this overstuffed , erratic dramedy in which he and his improbably forbearing wife contend with craziness and child-rearing in Los Angeles . 1 +104778 5533 grounds this overstuffed , erratic dramedy in which he and his improbably forbearing wife contend with craziness and child-rearing in Los Angeles 2 +104779 5533 grounds 2 +104780 5533 this overstuffed , erratic dramedy in which he and his improbably forbearing wife contend with craziness and child-rearing in Los Angeles 1 +104781 5533 this overstuffed , erratic dramedy 0 +104782 5533 overstuffed , erratic dramedy 1 +104783 5533 , erratic dramedy 1 +104784 5533 erratic dramedy 1 +104785 5533 in which he and his improbably forbearing wife contend with craziness and child-rearing in Los Angeles 2 +104786 5533 he and his improbably forbearing wife contend with craziness and child-rearing in Los Angeles 2 +104787 5533 he and his improbably forbearing wife 1 +104788 5533 he and 2 +104789 5533 his improbably forbearing wife 2 +104790 5533 improbably forbearing wife 1 +104791 5533 improbably forbearing 1 +104792 5533 improbably 1 +104793 5533 forbearing 1 +104794 5533 contend with craziness and child-rearing in Los Angeles 2 +104795 5533 contend with craziness and child-rearing 2 +104796 5533 contend 2 +104797 5533 with craziness and child-rearing 2 +104798 5533 craziness and child-rearing 2 +104799 5533 craziness and 2 +104800 5533 craziness 1 +104801 5533 child-rearing 2 +104802 5533 in Los Angeles 2 +104803 5533 Los Angeles 2 +104804 5533 Los 2 +104805 5533 Angeles 2 +104806 5534 Just another disjointed , fairly predictable psychological thriller . 0 +104807 5534 Just another disjointed , fairly predictable psychological thriller 1 +104808 5534 Just another disjointed , 1 +104809 5534 Just another disjointed 1 +104810 5534 another disjointed 1 +104811 5534 fairly predictable psychological thriller 1 +104812 5534 fairly predictable 2 +104813 5535 Pretend it 's a werewolf itself by avoiding eye contact and walking slowly away . 1 +104814 5535 Pretend it 's a werewolf itself by avoiding eye contact and walking slowly away 1 +104815 5535 it 's a werewolf itself by avoiding eye contact and walking slowly away 2 +104816 5535 's a werewolf itself by avoiding eye contact and walking slowly away 2 +104817 5535 a werewolf itself by avoiding eye contact and walking slowly away 2 +104818 5535 a werewolf itself 2 +104819 5535 a werewolf 2 +104820 5535 werewolf 2 +104821 5535 by avoiding eye contact and walking slowly away 2 +104822 5535 avoiding eye contact and walking slowly away 1 +104823 5535 avoiding eye contact and 1 +104824 5535 avoiding eye contact 2 +104825 5535 avoiding 2 +104826 5535 eye contact 2 +104827 5535 walking slowly away 2 +104828 5535 slowly away 2 +104829 5536 A remarkable film by Bernard Rose . 4 +104830 5536 A remarkable film by Bernard Rose 4 +104831 5536 by Bernard Rose 2 +104832 5537 With amazing finesse , the film shadows Heidi 's trip back to Vietnam and the city where her mother , Mai Thi Kim , still lives . 3 +104833 5537 With amazing finesse 3 +104834 5537 amazing finesse 4 +104835 5537 , the film shadows Heidi 's trip back to Vietnam and the city where her mother , Mai Thi Kim , still lives . 2 +104836 5537 the film shadows Heidi 's trip back to Vietnam and the city where her mother , Mai Thi Kim , still lives . 2 +104837 5537 shadows Heidi 's trip back to Vietnam and the city where her mother , Mai Thi Kim , still lives . 2 +104838 5537 shadows Heidi 's trip back to Vietnam and the city where her mother , Mai Thi Kim , still lives 2 +104839 5537 shadows Heidi 's trip back to Vietnam and the city 2 +104840 5537 shadows Heidi 's trip 2 +104841 5537 Heidi 's trip 2 +104842 5537 Heidi 's 2 +104843 5537 Heidi 2 +104844 5537 back to Vietnam and the city 2 +104845 5537 to Vietnam and the city 2 +104846 5537 Vietnam and the city 2 +104847 5537 Vietnam and 2 +104848 5537 the city 2 +104849 5537 where her mother , Mai Thi Kim , still lives 2 +104850 5537 her mother , Mai Thi Kim , still lives 2 +104851 5537 her mother , Mai Thi Kim , 2 +104852 5537 her mother , Mai Thi Kim 2 +104853 5537 her mother , 2 +104854 5537 Mai Thi Kim 2 +104855 5537 Mai 2 +104856 5537 Thi Kim 2 +104857 5537 Thi 2 +104858 5537 still lives 2 +104859 5538 There 's too much forced drama in this wildly uneven movie , about a young man 's battle with his inescapable past and uncertain future in a very shapable but largely unfulfilling present . 0 +104860 5538 's too much forced drama in this wildly uneven movie , about a young man 's battle with his inescapable past and uncertain future in a very shapable but largely unfulfilling present . 1 +104861 5538 's too much forced drama in this wildly uneven movie , about a young man 's battle with his inescapable past and uncertain future in a very shapable but largely unfulfilling present 1 +104862 5538 too much forced drama in this wildly uneven movie , about a young man 's battle with his inescapable past and uncertain future in a very shapable but largely unfulfilling present 1 +104863 5538 much forced drama in this wildly uneven movie , about a young man 's battle with his inescapable past and uncertain future in a very shapable but largely unfulfilling present 1 +104864 5538 forced drama in this wildly uneven movie , about a young man 's battle with his inescapable past and uncertain future in a very shapable but largely unfulfilling present 1 +104865 5538 forced drama in this wildly uneven movie , about 1 +104866 5538 forced drama in this wildly uneven movie , 0 +104867 5538 forced drama in this wildly uneven movie 1 +104868 5538 forced drama 1 +104869 5538 in this wildly uneven movie 1 +104870 5538 this wildly uneven movie 2 +104871 5538 wildly uneven movie 1 +104872 5538 wildly uneven 2 +104873 5538 a young man 's battle with his inescapable past and uncertain future in a very shapable but largely unfulfilling present 2 +104874 5538 a young man 's battle 2 +104875 5538 a young man 's 2 +104876 5538 young man 's 3 +104877 5538 with his inescapable past and uncertain future in a very shapable but largely unfulfilling present 1 +104878 5538 his inescapable past and uncertain future in a very shapable but largely unfulfilling present 1 +104879 5538 his inescapable past and uncertain future 2 +104880 5538 inescapable past and uncertain future 1 +104881 5538 past and uncertain future 2 +104882 5538 past and uncertain 2 +104883 5538 past and 2 +104884 5538 in a very shapable but largely unfulfilling present 2 +104885 5538 a very shapable but largely unfulfilling present 2 +104886 5538 very shapable but largely unfulfilling present 1 +104887 5538 very shapable but largely unfulfilling 1 +104888 5538 very shapable but 2 +104889 5538 very shapable 2 +104890 5538 shapable 2 +104891 5538 largely unfulfilling 1 +104892 5539 Tedious Norwegian offering which somehow snagged an Oscar nomination . 1 +104893 5539 Tedious Norwegian offering which somehow snagged an Oscar nomination 1 +104894 5539 Norwegian offering which somehow snagged an Oscar nomination 1 +104895 5539 Norwegian offering 2 +104896 5539 which somehow snagged an Oscar nomination 1 +104897 5539 somehow snagged an Oscar nomination 1 +104898 5539 snagged an Oscar nomination 3 +104899 5539 snagged 2 +104900 5540 It looks closely , insightfully at fragile , complex relationships . 3 +104901 5540 looks closely , insightfully at fragile , complex relationships . 2 +104902 5540 looks closely , insightfully at fragile , complex relationships 3 +104903 5540 looks closely , insightfully 3 +104904 5540 looks closely , 2 +104905 5540 looks closely 2 +104906 5540 at fragile , complex relationships 2 +104907 5540 fragile , complex relationships 2 +104908 5540 , complex relationships 2 +104909 5540 complex relationships 2 +104910 5541 Mildly entertaining . 2 +104911 5541 Mildly entertaining 3 +104912 5542 Some stunning visuals -- and some staggeringly boring cinema . 2 +104913 5542 Some stunning visuals 4 +104914 5542 stunning visuals 3 +104915 5542 -- and some staggeringly boring cinema . 1 +104916 5542 and some staggeringly boring cinema . 2 +104917 5542 and some staggeringly boring cinema 0 +104918 5542 some staggeringly boring cinema 0 +104919 5542 staggeringly boring cinema 2 +104920 5542 staggeringly boring 0 +104921 5543 From the choppy editing to the annoying score to ` special effects ' by way of replacing objects in a character 's hands below the camera line , `` Besotted '' is misbegotten 0 +104922 5543 From the choppy editing to the annoying score to ` special effects ' by way of replacing objects in a character 's hands below the camera line 1 +104923 5543 the choppy editing to the annoying score to ` special effects ' by way of replacing objects in a character 's hands below the camera line 0 +104924 5543 the choppy editing 1 +104925 5543 choppy editing 2 +104926 5543 to the annoying score to ` special effects ' by way of replacing objects in a character 's hands below the camera line 0 +104927 5543 to the annoying score 1 +104928 5543 the annoying score 1 +104929 5543 annoying score 1 +104930 5543 to ` special effects ' by way of replacing objects in a character 's hands below the camera line 2 +104931 5543 to ` special effects ' 2 +104932 5543 to ` special effects 2 +104933 5543 to ` 2 +104934 5543 by way of replacing objects in a character 's hands below the camera line 2 +104935 5543 way of replacing objects in a character 's hands below the camera line 2 +104936 5543 of replacing objects in a character 's hands below the camera line 2 +104937 5543 replacing objects in a character 's hands below the camera line 2 +104938 5543 replacing objects in a character 's hands 2 +104939 5543 replacing 2 +104940 5543 objects in a character 's hands 2 +104941 5543 objects 2 +104942 5543 in a character 's hands 2 +104943 5543 a character 's hands 2 +104944 5543 a character 's 2 +104945 5543 below the camera line 2 +104946 5543 the camera line 2 +104947 5543 camera line 2 +104948 5543 , `` Besotted '' is misbegotten 2 +104949 5543 `` Besotted '' is misbegotten 1 +104950 5543 `` Besotted '' 2 +104951 5543 Besotted '' 2 +104952 5543 is misbegotten 1 +104953 5543 misbegotten 2 +104954 5544 The hypnotic imagery and fragmentary tale explore the connections between place and personal identity . 3 +104955 5544 The hypnotic imagery and fragmentary tale 3 +104956 5544 hypnotic imagery and fragmentary tale 2 +104957 5544 imagery and fragmentary tale 2 +104958 5544 and fragmentary tale 2 +104959 5544 fragmentary tale 2 +104960 5544 fragmentary 1 +104961 5544 explore the connections between place and personal identity . 3 +104962 5544 explore the connections between place and personal identity 2 +104963 5544 the connections between place and personal identity 2 +104964 5544 the connections 2 +104965 5544 between place and personal identity 2 +104966 5544 place and personal identity 3 +104967 5544 and personal identity 2 +104968 5544 personal identity 2 +104969 5545 Ze movie starts out so funny , then she is nothing . 2 +104970 5545 Ze movie starts out so funny , then she is nothing 1 +104971 5545 Ze movie starts out so funny , then 2 +104972 5545 Ze movie starts out so funny , 3 +104973 5545 Ze movie starts out so funny 3 +104974 5545 Ze movie 2 +104975 5545 Ze 2 +104976 5545 starts out so funny 2 +104977 5545 out so funny 2 +104978 5545 so funny 4 +104979 5545 she is nothing 2 +104980 5546 Instead of trying to bust some blondes , -LRB- Diggs -RRB- should be probing why a guy with his talent ended up in a movie this bad . 1 +104981 5546 Instead of trying to bust 2 +104982 5546 of trying to bust 2 +104983 5546 trying to bust 2 +104984 5546 to bust 2 +104985 5546 bust 1 +104986 5546 some blondes , -LRB- Diggs -RRB- should be probing why a guy with his talent ended up in a movie this bad . 0 +104987 5546 some blondes , -LRB- Diggs -RRB- 2 +104988 5546 some blondes , 2 +104989 5546 some blondes 2 +104990 5546 blondes 2 +104991 5546 -LRB- Diggs -RRB- 2 +104992 5546 Diggs -RRB- 2 +104993 5546 should be probing why a guy with his talent ended up in a movie this bad . 1 +104994 5546 should be probing why a guy with his talent ended up in a movie this bad 1 +104995 5546 be probing why a guy with his talent ended up in a movie this bad 1 +104996 5546 probing why a guy with his talent ended up in a movie this bad 2 +104997 5546 why a guy with his talent ended up in a movie this bad 0 +104998 5546 a guy with his talent ended up in a movie this bad 1 +104999 5546 a guy with his talent 2 +105000 5546 with his talent 3 +105001 5546 his talent 2 +105002 5546 ended up in a movie this bad 0 +105003 5546 ended up 2 +105004 5546 in a movie this bad 0 +105005 5546 a movie this bad 0 +105006 5546 this bad 1 +105007 5547 Suffers from a decided lack of creative storytelling . 2 +105008 5547 Suffers from a decided lack of creative storytelling 1 +105009 5547 Suffers from a decided lack 1 +105010 5547 from a decided lack 2 +105011 5547 a decided lack 2 +105012 5547 decided lack 2 +105013 5547 of creative storytelling 3 +105014 5547 creative storytelling 4 +105015 5548 There 's back-stabbing , inter-racial desire and , most importantly , singing and dancing . 3 +105016 5548 's back-stabbing , inter-racial desire and , most importantly , singing and dancing . 3 +105017 5548 's back-stabbing , inter-racial desire and , most importantly , singing and dancing 2 +105018 5548 back-stabbing , inter-racial desire and , most importantly , singing and dancing 2 +105019 5548 back-stabbing , inter-racial desire and , most importantly , 2 +105020 5548 back-stabbing , inter-racial desire and 2 +105021 5548 back-stabbing , inter-racial desire 1 +105022 5548 , inter-racial desire 2 +105023 5548 inter-racial desire 2 +105024 5548 inter-racial 2 +105025 5548 , most importantly , 2 +105026 5548 most importantly , 3 +105027 5548 most importantly 3 +105028 5548 importantly 2 +105029 5548 singing and dancing 2 +105030 5548 singing and 2 +105031 5548 singing 2 +105032 5549 Director Todd Solondz has made a movie about critical reaction to his two previous movies , and about his responsibility to the characters that he creates . 3 +105033 5549 Director Todd Solondz 2 +105034 5549 has made a movie about critical reaction to his two previous movies , and about his responsibility to the characters that he creates . 2 +105035 5549 has made a movie about critical reaction to his two previous movies , and about his responsibility to the characters that he creates 2 +105036 5549 made a movie about critical reaction to his two previous movies , and about his responsibility to the characters that he creates 2 +105037 5549 made a movie about critical reaction to his two previous movies , and about his responsibility to the characters 2 +105038 5549 made a movie about critical reaction 2 +105039 5549 a movie about critical reaction 2 +105040 5549 about critical reaction 2 +105041 5549 critical reaction 2 +105042 5549 to his two previous movies , and about his responsibility to the characters 2 +105043 5549 to his two previous movies 2 +105044 5549 his two previous movies 2 +105045 5549 two previous movies 2 +105046 5549 , and about his responsibility to the characters 2 +105047 5549 and about his responsibility to the characters 2 +105048 5549 about his responsibility to the characters 2 +105049 5549 about his responsibility 2 +105050 5549 his responsibility 2 +105051 5549 that he creates 2 +105052 5549 he creates 3 +105053 5550 The enjoyable Undercover Brother , a zany mix of Saturday Night Live-style parody , '70s Blaxploitation films and goofball action comedy gone wild , dishes out a ton of laughs that everyone can enjoy . 4 +105054 5550 The enjoyable Undercover Brother , a zany mix of Saturday Night Live-style parody , '70s Blaxploitation films and goofball action comedy gone wild , 3 +105055 5550 The enjoyable Undercover Brother , a zany mix of Saturday Night Live-style parody , '70s Blaxploitation films and goofball action comedy gone wild 4 +105056 5550 The enjoyable Undercover Brother , 3 +105057 5550 The enjoyable Undercover Brother 3 +105058 5550 enjoyable Undercover Brother 3 +105059 5550 a zany mix of Saturday Night Live-style parody , '70s Blaxploitation films and goofball action comedy gone wild 3 +105060 5550 a zany mix of Saturday Night Live-style parody , '70s Blaxploitation films and goofball action comedy 3 +105061 5550 a zany mix 3 +105062 5550 zany mix 3 +105063 5550 of Saturday Night Live-style parody , '70s Blaxploitation films and goofball action comedy 2 +105064 5550 Saturday Night Live-style parody , '70s Blaxploitation films and goofball action comedy 3 +105065 5550 Saturday Night Live-style parody , '70s Blaxploitation films and 2 +105066 5550 Saturday Night Live-style parody , '70s Blaxploitation films 2 +105067 5550 Saturday Night Live-style parody , 2 +105068 5550 Saturday Night Live-style parody 2 +105069 5550 Night Live-style parody 2 +105070 5550 Live-style parody 2 +105071 5550 Live-style 2 +105072 5550 '70s Blaxploitation films 2 +105073 5550 Blaxploitation films 2 +105074 5550 goofball action comedy 3 +105075 5550 gone wild 2 +105076 5550 dishes out a ton of laughs that everyone can enjoy . 4 +105077 5550 dishes out a ton of laughs that everyone can enjoy 4 +105078 5550 dishes out 2 +105079 5550 dishes 2 +105080 5550 a ton of laughs that everyone can enjoy 4 +105081 5550 a ton of laughs 3 +105082 5550 a ton 2 +105083 5550 ton 2 +105084 5550 that everyone can enjoy 3 +105085 5550 everyone can enjoy 3 +105086 5551 I found the movie as divided against itself as the dysfunctional family it portrays . 1 +105087 5551 found the movie as divided against itself as the dysfunctional family it portrays . 0 +105088 5551 found the movie as divided against itself as the dysfunctional family it portrays 0 +105089 5551 found the movie as divided against itself 1 +105090 5551 found the movie as divided 2 +105091 5551 the movie as divided 2 +105092 5551 as divided 2 +105093 5551 divided 2 +105094 5551 against itself 3 +105095 5551 as the dysfunctional family it portrays 2 +105096 5551 the dysfunctional family it portrays 2 +105097 5551 the dysfunctional family 2 +105098 5551 dysfunctional family 2 +105099 5551 it portrays 2 +105100 5552 Between them , De Niro and Murphy make Showtime the most savory and hilarious guilty pleasure of many a recent movie season . 4 +105101 5552 , De Niro and Murphy make Showtime the most savory and hilarious guilty pleasure of many a recent movie season . 4 +105102 5552 De Niro and Murphy make Showtime the most savory and hilarious guilty pleasure of many a recent movie season . 4 +105103 5552 De Niro and Murphy 2 +105104 5552 Niro and Murphy 2 +105105 5552 Niro and 2 +105106 5552 make Showtime the most savory and hilarious guilty pleasure of many a recent movie season . 4 +105107 5552 make Showtime the most savory and hilarious guilty pleasure of many a recent movie season 4 +105108 5552 Showtime the most savory and hilarious guilty pleasure of many a recent movie season 3 +105109 5552 the most savory and hilarious guilty pleasure of many a recent movie season 4 +105110 5552 the most savory and hilarious guilty pleasure 4 +105111 5552 most savory and hilarious guilty pleasure 4 +105112 5552 most savory and hilarious 4 +105113 5552 savory and hilarious 3 +105114 5552 savory and 3 +105115 5552 savory 4 +105116 5552 of many a recent movie season 2 +105117 5552 many a recent movie season 2 +105118 5552 many a recent movie 2 +105119 5552 a recent movie 2 +105120 5552 recent movie 2 +105121 5553 What ` Dumb and Dumber ' would have been without the vulgarity and with an intelligent , life-affirming script . 2 +105122 5553 What ` Dumb and Dumber ' would have been without the vulgarity and with an intelligent , life-affirming script 3 +105123 5553 ` Dumb and Dumber ' would have been without the vulgarity and with an intelligent , life-affirming script 2 +105124 5553 Dumb and Dumber ' would have been without the vulgarity and with an intelligent , life-affirming script 2 +105125 5553 Dumb and Dumber 2 +105126 5553 Dumber 1 +105127 5553 ' would have been without the vulgarity and with an intelligent , life-affirming script 2 +105128 5553 would have been without the vulgarity and with an intelligent , life-affirming script 2 +105129 5553 have been without the vulgarity and with an intelligent , life-affirming script 3 +105130 5553 been without the vulgarity and with an intelligent , life-affirming script 2 +105131 5553 without the vulgarity and with an intelligent , life-affirming script 3 +105132 5553 without the vulgarity and 3 +105133 5553 without the vulgarity 2 +105134 5553 the vulgarity 2 +105135 5553 with an intelligent , life-affirming script 4 +105136 5553 an intelligent , life-affirming script 4 +105137 5553 intelligent , life-affirming script 4 +105138 5553 , life-affirming script 3 +105139 5553 life-affirming script 3 +105140 5554 A movie in which two not very absorbing characters are engaged in a romance you ca n't wait to see end . 0 +105141 5554 A movie in which two not very absorbing characters are engaged in a romance 2 +105142 5554 in which two not very absorbing characters are engaged in a romance 1 +105143 5554 two not very absorbing characters are engaged in a romance 0 +105144 5554 two not very absorbing characters 1 +105145 5554 not very absorbing characters 1 +105146 5554 absorbing characters 3 +105147 5554 are engaged in a romance 2 +105148 5554 engaged in a romance 2 +105149 5554 in a romance 2 +105150 5554 you ca n't wait to see end . 1 +105151 5554 ca n't wait to see end . 3 +105152 5554 ca n't wait to see end 2 +105153 5554 wait to see end 2 +105154 5554 to see end 2 +105155 5554 see end 2 +105156 5555 ... spiced with humor -LRB- ' I speak fluent flatula , ' advises Denlopp after a rather , er , bubbly exchange with an alien deckhand -RRB- and witty updatings -LRB- Silver 's parrot has been replaced with Morph , a cute alien creature who mimics everyone and everything around -RRB- 3 +105157 5555 ... spiced with humor -LRB- ' I speak fluent flatula , ' advises Denlopp after a rather , er , bubbly exchange with an alien deckhand -RRB- and 3 +105158 5555 ... spiced with humor -LRB- ' I speak fluent flatula , ' advises Denlopp after a rather , er , bubbly exchange with an alien deckhand -RRB- 3 +105159 5555 spiced with humor -LRB- ' I speak fluent flatula , ' advises Denlopp after a rather , er , bubbly exchange with an alien deckhand -RRB- 3 +105160 5555 with humor -LRB- ' I speak fluent flatula , ' advises Denlopp after a rather , er , bubbly exchange with an alien deckhand -RRB- 2 +105161 5555 humor -LRB- ' I speak fluent flatula , ' advises Denlopp after a rather , er , bubbly exchange with an alien deckhand -RRB- 2 +105162 5555 -LRB- ' I speak fluent flatula , ' advises Denlopp after a rather , er , bubbly exchange with an alien deckhand -RRB- 2 +105163 5555 ' I speak fluent flatula , ' advises Denlopp after a rather , er , bubbly exchange with an alien deckhand -RRB- 2 +105164 5555 ' I speak fluent flatula , ' advises Denlopp after a rather , er , bubbly exchange with an alien deckhand 2 +105165 5555 I speak fluent flatula , ' advises Denlopp after a rather , er , bubbly exchange with an alien deckhand 2 +105166 5555 speak fluent flatula , ' advises Denlopp after a rather , er , bubbly exchange with an alien deckhand 3 +105167 5555 speak fluent flatula , ' 2 +105168 5555 speak fluent flatula , 2 +105169 5555 speak fluent flatula 1 +105170 5555 speak 2 +105171 5555 fluent flatula 2 +105172 5555 fluent 2 +105173 5555 flatula 1 +105174 5555 advises Denlopp after a rather , er , bubbly exchange with an alien deckhand 2 +105175 5555 advises Denlopp 2 +105176 5555 advises 2 +105177 5555 Denlopp 2 +105178 5555 after a rather , er , bubbly exchange with an alien deckhand 2 +105179 5555 a rather , er , bubbly exchange with an alien deckhand 2 +105180 5555 a rather , er , bubbly exchange 2 +105181 5555 rather , er , bubbly exchange 2 +105182 5555 rather , er , bubbly 2 +105183 5555 , er , bubbly 3 +105184 5555 er , bubbly 3 +105185 5555 er 2 +105186 5555 , bubbly 2 +105187 5555 bubbly 3 +105188 5555 with an alien deckhand 2 +105189 5555 an alien deckhand 2 +105190 5555 alien deckhand 2 +105191 5555 alien 2 +105192 5555 deckhand 2 +105193 5555 witty updatings -LRB- Silver 's parrot has been replaced with Morph , a cute alien creature who mimics everyone and everything around -RRB- 3 +105194 5555 witty updatings 2 +105195 5555 updatings 2 +105196 5555 -LRB- Silver 's parrot has been replaced with Morph , a cute alien creature who mimics everyone and everything around -RRB- 3 +105197 5555 Silver 's parrot has been replaced with Morph , a cute alien creature who mimics everyone and everything around -RRB- 2 +105198 5555 Silver 's parrot has been replaced with Morph , a cute alien creature who mimics everyone and everything around 2 +105199 5555 Silver 's parrot 2 +105200 5555 Silver 's 2 +105201 5555 parrot 2 +105202 5555 has been replaced with Morph , a cute alien creature who mimics everyone and everything around 2 +105203 5555 been replaced with Morph , a cute alien creature who mimics everyone and everything around 3 +105204 5555 replaced with Morph , a cute alien creature who mimics everyone and everything around 3 +105205 5555 with Morph , a cute alien creature who mimics everyone and everything around 3 +105206 5555 Morph , a cute alien creature who mimics everyone and everything around 2 +105207 5555 Morph , 2 +105208 5555 Morph 2 +105209 5555 a cute alien creature who mimics everyone and everything around 3 +105210 5555 a cute alien creature 3 +105211 5555 cute alien creature 3 +105212 5555 cute alien 3 +105213 5555 who mimics everyone and everything around 2 +105214 5555 mimics everyone and everything around 2 +105215 5555 mimics everyone and everything 1 +105216 5555 mimics 2 +105217 5555 everyone and everything 2 +105218 5555 everyone and 2 +105219 5556 This is a sincerely crafted picture that deserves to emerge from the traffic jam of holiday movies . 4 +105220 5556 is a sincerely crafted picture that deserves to emerge from the traffic jam of holiday movies . 4 +105221 5556 is a sincerely crafted picture that deserves to emerge from the traffic jam of holiday movies 3 +105222 5556 a sincerely crafted picture that deserves to emerge from the traffic jam of holiday movies 4 +105223 5556 a sincerely crafted picture 3 +105224 5556 sincerely crafted picture 4 +105225 5556 sincerely 3 +105226 5556 crafted picture 3 +105227 5556 that deserves to emerge from the traffic jam of holiday movies 3 +105228 5556 deserves to emerge from the traffic jam of holiday movies 3 +105229 5556 to emerge from the traffic jam of holiday movies 3 +105230 5556 emerge from the traffic jam of holiday movies 2 +105231 5556 from the traffic jam of holiday movies 2 +105232 5556 the traffic jam of holiday movies 2 +105233 5556 the traffic jam 2 +105234 5556 traffic jam 2 +105235 5556 jam 2 +105236 5556 of holiday movies 2 +105237 5556 holiday movies 2 +105238 5557 What elevates the movie above the run-of-the-mill singles blender is its surreal sense of humor and technological finish . 4 +105239 5557 What elevates the movie above the run-of-the-mill singles blender 3 +105240 5557 elevates the movie above the run-of-the-mill singles blender 3 +105241 5557 the movie above the run-of-the-mill singles blender 2 +105242 5557 above the run-of-the-mill singles blender 3 +105243 5557 the run-of-the-mill singles blender 1 +105244 5557 run-of-the-mill singles blender 1 +105245 5557 singles blender 2 +105246 5557 blender 2 +105247 5557 is its surreal sense of humor and technological finish . 3 +105248 5557 is its surreal sense of humor and technological finish 3 +105249 5557 its surreal sense of humor and technological finish 3 +105250 5557 its surreal sense 2 +105251 5557 surreal sense 2 +105252 5557 of humor and technological finish 2 +105253 5557 humor and technological finish 3 +105254 5557 and technological finish 2 +105255 5557 technological finish 2 +105256 5557 technological 2 +105257 5558 While not quite a comedy , the film tackles its relatively serious subject with an open mind and considerable good cheer , and is never less than engaging . 2 +105258 5558 While not quite a comedy 2 +105259 5558 not quite a comedy 2 +105260 5558 quite a comedy 3 +105261 5558 , the film tackles its relatively serious subject with an open mind and considerable good cheer , and is never less than engaging . 4 +105262 5558 the film tackles its relatively serious subject with an open mind and considerable good cheer , and is never less than engaging . 3 +105263 5558 tackles its relatively serious subject with an open mind and considerable good cheer , and is never less than engaging . 3 +105264 5558 tackles its relatively serious subject with an open mind and considerable good cheer , and is never less than engaging 4 +105265 5558 tackles its relatively serious subject with an open mind and considerable good cheer , and 4 +105266 5558 tackles its relatively serious subject with an open mind and considerable good cheer , 3 +105267 5558 tackles its relatively serious subject with an open mind and considerable good cheer 3 +105268 5558 tackles its relatively serious subject 2 +105269 5558 its relatively serious subject 2 +105270 5558 relatively serious subject 2 +105271 5558 relatively serious 2 +105272 5558 with an open mind and considerable good cheer 3 +105273 5558 an open mind and considerable good cheer 4 +105274 5558 an open mind and 2 +105275 5558 an open mind 3 +105276 5558 open mind 2 +105277 5558 considerable good cheer 4 +105278 5558 good cheer 3 +105279 5558 is never less than engaging 3 +105280 5558 is never less than 2 +105281 5559 While the new film is much more eye-catching than its blood-drenched Stephen Norrington-directed predecessor , the new script by the returning David S. Goyer is much sillier . 2 +105282 5559 While the new film is much more eye-catching than its blood-drenched Stephen Norrington-directed predecessor 2 +105283 5559 the new film is much more eye-catching than its blood-drenched Stephen Norrington-directed predecessor 3 +105284 5559 is much more eye-catching than its blood-drenched Stephen Norrington-directed predecessor 3 +105285 5559 much more eye-catching than its blood-drenched Stephen Norrington-directed predecessor 3 +105286 5559 much more eye-catching 3 +105287 5559 more eye-catching 3 +105288 5559 than its blood-drenched Stephen Norrington-directed predecessor 2 +105289 5559 its blood-drenched Stephen Norrington-directed predecessor 2 +105290 5559 blood-drenched Stephen Norrington-directed predecessor 2 +105291 5559 blood-drenched 2 +105292 5559 Stephen Norrington-directed predecessor 2 +105293 5559 Norrington-directed predecessor 2 +105294 5559 Norrington-directed 2 +105295 5559 , the new script by the returning David S. Goyer is much sillier . 2 +105296 5559 the new script by the returning David S. Goyer is much sillier . 1 +105297 5559 the new script by the returning David S. Goyer 2 +105298 5559 the new script 2 +105299 5559 new script 2 +105300 5559 by the returning David S. Goyer 2 +105301 5559 the returning David S. Goyer 2 +105302 5559 returning David S. Goyer 2 +105303 5559 David S. Goyer 2 +105304 5559 S. Goyer 2 +105305 5559 S. 2 +105306 5559 is much sillier . 2 +105307 5559 is much sillier 2 +105308 5559 much sillier 2 +105309 5560 Frankly , it 's pretty stupid . 1 +105310 5560 , it 's pretty stupid . 0 +105311 5560 it 's pretty stupid . 0 +105312 5560 's pretty stupid . 0 +105313 5560 's pretty stupid 0 +105314 5560 pretty stupid 0 +105315 5561 You 'll know a star when you see one . 3 +105316 5561 'll know a star when you see one . 3 +105317 5561 'll know a star when you see one 2 +105318 5561 know a star when you see one 2 +105319 5561 know a star 3 +105320 5561 when you see one 2 +105321 5561 you see one 2 +105322 5561 see one 2 +105323 5562 An entertainment so in love with its overinflated mythology that it no longer recognizes the needs of moviegoers for real characters and compelling plots . 1 +105324 5562 An entertainment 3 +105325 5562 so in love with its overinflated mythology that it no longer recognizes the needs of moviegoers for real characters and compelling plots . 1 +105326 5562 so in 2 +105327 5562 love with its overinflated mythology that it no longer recognizes the needs of moviegoers for real characters and compelling plots . 0 +105328 5562 love with its overinflated mythology that it no longer recognizes the needs of moviegoers for real characters and compelling plots 0 +105329 5562 love with its overinflated mythology 2 +105330 5562 with its overinflated mythology 2 +105331 5562 its overinflated mythology 1 +105332 5562 overinflated mythology 1 +105333 5562 overinflated 1 +105334 5562 mythology 2 +105335 5562 that it no longer recognizes the needs of moviegoers for real characters and compelling plots 1 +105336 5562 it no longer recognizes the needs of moviegoers for real characters and compelling plots 1 +105337 5562 no longer recognizes the needs of moviegoers for real characters and compelling plots 1 +105338 5562 recognizes the needs of moviegoers for real characters and compelling plots 3 +105339 5562 recognizes 2 +105340 5562 the needs of moviegoers for real characters and compelling plots 1 +105341 5562 the needs 2 +105342 5562 of moviegoers for real characters and compelling plots 3 +105343 5562 moviegoers for real characters and compelling plots 3 +105344 5562 for real characters and compelling plots 2 +105345 5562 real characters and compelling plots 4 +105346 5562 real characters and 2 +105347 5562 real characters 3 +105348 5562 compelling plots 3 +105349 5563 Yep , it 's `` Waking up in Reno . '' 2 +105350 5563 Yep 2 +105351 5563 , it 's `` Waking up in Reno . '' 2 +105352 5563 it 's `` Waking up in Reno . '' 2 +105353 5563 's `` Waking up in Reno . '' 2 +105354 5563 's `` Waking up in Reno . 2 +105355 5563 's `` Waking up in Reno 2 +105356 5564 Vividly conveys the shadow side of the 30-year friendship between two English women . 2 +105357 5564 conveys the shadow side of the 30-year friendship between two English women . 3 +105358 5564 conveys the shadow side of the 30-year friendship between two English women 2 +105359 5564 conveys 2 +105360 5564 the shadow side of the 30-year friendship between two English women 2 +105361 5564 the shadow side 2 +105362 5564 shadow side 2 +105363 5564 shadow 2 +105364 5564 of the 30-year friendship between two English women 2 +105365 5564 the 30-year friendship between two English women 3 +105366 5564 the 30-year friendship 2 +105367 5564 30-year friendship 2 +105368 5564 30-year 2 +105369 5564 between two English women 2 +105370 5564 two English women 2 +105371 5564 English women 2 +105372 5565 The end result is like cold porridge with only the odd enjoyably chewy lump . 1 +105373 5565 is like cold porridge with only the odd enjoyably chewy lump . 1 +105374 5565 is like cold porridge with only the odd enjoyably chewy lump 1 +105375 5565 like cold porridge with only the odd enjoyably chewy lump 1 +105376 5565 cold porridge with only the odd enjoyably chewy lump 0 +105377 5565 cold porridge 1 +105378 5565 porridge 2 +105379 5565 with only the odd enjoyably chewy lump 3 +105380 5565 only the odd enjoyably chewy lump 3 +105381 5565 the odd enjoyably chewy lump 3 +105382 5565 odd enjoyably chewy lump 3 +105383 5565 odd enjoyably 3 +105384 5565 chewy lump 2 +105385 5565 chewy 2 +105386 5566 What makes Salton Sea surprisingly engrossing is that Caruso takes an atypically hypnotic approach to a world that 's often handled in fast-edit , hopped-up fashion . 4 +105387 5566 What makes Salton Sea surprisingly engrossing 2 +105388 5566 makes Salton Sea surprisingly engrossing 3 +105389 5566 Salton Sea surprisingly engrossing 3 +105390 5566 surprisingly engrossing 3 +105391 5566 is that Caruso takes an atypically hypnotic approach to a world that 's often handled in fast-edit , hopped-up fashion . 2 +105392 5566 is that Caruso takes an atypically hypnotic approach to a world that 's often handled in fast-edit , hopped-up fashion 3 +105393 5566 that Caruso takes an atypically hypnotic approach to a world that 's often handled in fast-edit , hopped-up fashion 3 +105394 5566 Caruso takes an atypically hypnotic approach to a world that 's often handled in fast-edit , hopped-up fashion 3 +105395 5566 takes an atypically hypnotic approach to a world that 's often handled in fast-edit , hopped-up fashion 2 +105396 5566 takes an atypically hypnotic approach 2 +105397 5566 an atypically hypnotic approach 2 +105398 5566 atypically hypnotic approach 3 +105399 5566 atypically hypnotic 3 +105400 5566 atypically 2 +105401 5566 to a world that 's often handled in fast-edit , hopped-up fashion 2 +105402 5566 a world that 's often handled in fast-edit , hopped-up fashion 3 +105403 5566 that 's often handled in fast-edit , hopped-up fashion 2 +105404 5566 's often handled in fast-edit , hopped-up fashion 1 +105405 5566 handled in fast-edit , hopped-up fashion 2 +105406 5566 in fast-edit , hopped-up fashion 1 +105407 5566 fast-edit , hopped-up fashion 3 +105408 5566 fast-edit 2 +105409 5566 , hopped-up fashion 2 +105410 5566 hopped-up fashion 2 +105411 5566 hopped-up 2 +105412 5567 -LRB- P -RRB- artnering Murphy with Robert De Niro for the TV-cops comedy Showtime would seem to be surefire casting . 3 +105413 5567 -LRB- P -RRB- artnering Murphy with Robert De Niro for the TV-cops comedy Showtime 2 +105414 5567 -LRB- P -RRB- 2 +105415 5567 P -RRB- 1 +105416 5567 P 2 +105417 5567 artnering Murphy with Robert De Niro for the TV-cops comedy Showtime 2 +105418 5567 artnering 2 +105419 5567 Murphy with Robert De Niro for the TV-cops comedy Showtime 2 +105420 5567 with Robert De Niro for the TV-cops comedy Showtime 2 +105421 5567 Robert De Niro for the TV-cops comedy Showtime 2 +105422 5567 for the TV-cops comedy Showtime 2 +105423 5567 the TV-cops comedy Showtime 2 +105424 5567 TV-cops comedy Showtime 2 +105425 5567 TV-cops 2 +105426 5567 comedy Showtime 2 +105427 5567 would seem to be surefire casting . 3 +105428 5567 would seem to be surefire casting 3 +105429 5567 seem to be surefire casting 3 +105430 5567 to be surefire casting 2 +105431 5567 be surefire casting 3 +105432 5567 surefire casting 4 +105433 5568 Full of the kind of obnoxious chitchat that only self-aware neurotics engage in . 1 +105434 5568 Full of the kind of obnoxious 1 +105435 5568 of the kind of obnoxious 2 +105436 5568 the kind of obnoxious 1 +105437 5568 of obnoxious 1 +105438 5568 chitchat that only self-aware neurotics engage in . 2 +105439 5568 chitchat that only self-aware neurotics engage in 1 +105440 5568 chitchat 2 +105441 5568 that only self-aware neurotics engage in 1 +105442 5568 only self-aware neurotics engage in 3 +105443 5568 only self-aware neurotics 2 +105444 5568 self-aware neurotics 2 +105445 5568 neurotics 2 +105446 5568 engage in 2 +105447 5569 This dubious product of a college-spawned -LRB- Colgate U. -RRB- comedy ensemble known as Broken Lizard plays like a mix of Cheech and Chong and CHiPs . 1 +105448 5569 This dubious product of a college-spawned -LRB- Colgate U. -RRB- comedy ensemble known as Broken Lizard 2 +105449 5569 This dubious product 1 +105450 5569 dubious product 1 +105451 5569 of a college-spawned -LRB- Colgate U. -RRB- comedy ensemble known as Broken Lizard 2 +105452 5569 a college-spawned -LRB- Colgate U. -RRB- comedy ensemble known as Broken Lizard 2 +105453 5569 a college-spawned -LRB- Colgate U. -RRB- comedy ensemble 2 +105454 5569 college-spawned -LRB- Colgate U. -RRB- comedy ensemble 2 +105455 5569 college-spawned 2 +105456 5569 -LRB- Colgate U. -RRB- comedy ensemble 2 +105457 5569 -LRB- Colgate U. -RRB- 2 +105458 5569 Colgate U. -RRB- 2 +105459 5569 Colgate U. 2 +105460 5569 Colgate 2 +105461 5569 U. 2 +105462 5569 comedy ensemble 3 +105463 5569 known as Broken Lizard 2 +105464 5569 as Broken Lizard 2 +105465 5569 Broken Lizard 2 +105466 5569 Lizard 2 +105467 5569 plays like a mix of Cheech and Chong and CHiPs . 2 +105468 5569 plays like a mix of Cheech and Chong and CHiPs 2 +105469 5569 plays like a mix of Cheech and Chong and 2 +105470 5569 plays like a mix of Cheech and Chong 2 +105471 5569 like a mix of Cheech and Chong 3 +105472 5569 a mix of Cheech and Chong 2 +105473 5569 of Cheech and Chong 2 +105474 5569 Cheech and Chong 2 +105475 5569 Cheech and 2 +105476 5569 Cheech 2 +105477 5569 Chong 2 +105478 5569 CHiPs 2 +105479 5570 Not only does LeBlanc make one spectacularly ugly-looking broad , but he appears miserable throughout as he swaggers through his scenes . 1 +105480 5570 does LeBlanc make one spectacularly ugly-looking broad , but he appears miserable throughout as he swaggers through his scenes . 1 +105481 5570 does LeBlanc make one spectacularly ugly-looking broad 1 +105482 5570 does LeBlanc 2 +105483 5570 make one spectacularly ugly-looking broad 1 +105484 5570 one spectacularly ugly-looking broad 1 +105485 5570 spectacularly ugly-looking broad 0 +105486 5570 spectacularly ugly-looking 1 +105487 5570 ugly-looking 2 +105488 5570 , but he appears miserable throughout as he swaggers through his scenes . 1 +105489 5570 , but he appears miserable throughout as he swaggers through his scenes 2 +105490 5570 he appears miserable throughout as he swaggers through his scenes 1 +105491 5570 appears miserable throughout as he swaggers through his scenes 1 +105492 5570 miserable throughout as he swaggers through his scenes 0 +105493 5570 throughout as he swaggers through his scenes 2 +105494 5570 as he swaggers through his scenes 2 +105495 5570 he swaggers through his scenes 2 +105496 5570 swaggers through his scenes 3 +105497 5570 swaggers 2 +105498 5570 through his scenes 2 +105499 5570 his scenes 2 +105500 5571 The climactic events are so well realized that you may forget all about the original conflict , just like the movie does 2 +105501 5571 The climactic events 2 +105502 5571 climactic events 2 +105503 5571 are so well realized that you may forget all about the original conflict , just like the movie does 3 +105504 5571 realized that you may forget all about the original conflict , just like the movie does 2 +105505 5571 that you may forget all about the original conflict , just like the movie does 2 +105506 5571 you may forget all about the original conflict , just like the movie does 1 +105507 5571 may forget all about the original conflict , just like the movie does 2 +105508 5571 forget all about the original conflict , just like the movie does 2 +105509 5571 forget all about the original conflict , 2 +105510 5571 forget all about the original conflict 2 +105511 5571 all about the original conflict 2 +105512 5571 about the original conflict 2 +105513 5571 the original conflict 2 +105514 5571 original conflict 2 +105515 5571 just like the movie does 2 +105516 5571 like the movie does 2 +105517 5572 A sleep-inducingly slow-paced crime drama with clumsy dialogue , heavy-handed phoney-feeling sentiment , and an overly-familiar set of plot devices . 0 +105518 5572 A sleep-inducingly slow-paced crime drama with clumsy dialogue , heavy-handed phoney-feeling sentiment , and an overly-familiar set of plot devices 0 +105519 5572 A sleep-inducingly slow-paced crime drama with clumsy dialogue , heavy-handed phoney-feeling sentiment , and an overly-familiar set 1 +105520 5572 A sleep-inducingly slow-paced crime drama 0 +105521 5572 sleep-inducingly slow-paced crime drama 0 +105522 5572 sleep-inducingly 1 +105523 5572 slow-paced crime drama 2 +105524 5572 slow-paced 2 +105525 5572 with clumsy dialogue , heavy-handed phoney-feeling sentiment , and an overly-familiar set 1 +105526 5572 clumsy dialogue , heavy-handed phoney-feeling sentiment , and an overly-familiar set 0 +105527 5572 clumsy dialogue , heavy-handed phoney-feeling sentiment , and 0 +105528 5572 clumsy dialogue , heavy-handed phoney-feeling sentiment , 0 +105529 5572 clumsy dialogue , heavy-handed phoney-feeling sentiment 0 +105530 5572 clumsy dialogue , 1 +105531 5572 clumsy dialogue 1 +105532 5572 heavy-handed phoney-feeling sentiment 0 +105533 5572 phoney-feeling sentiment 0 +105534 5572 phoney-feeling 1 +105535 5572 an overly-familiar set 1 +105536 5572 overly-familiar set 2 +105537 5572 of plot devices 2 +105538 5572 plot devices 2 +105539 5573 Depending upon your reaction to this movie , you may never again be able to look at a red felt Sharpie pen without disgust , a thrill , or the giggles . 2 +105540 5573 Depending upon your reaction to this movie 2 +105541 5573 upon your reaction to this movie 2 +105542 5573 your reaction to this movie 2 +105543 5573 your reaction 2 +105544 5573 , you may never again be able to look at a red felt Sharpie pen without disgust , a thrill , or the giggles . 3 +105545 5573 you may never again be able to look at a red felt Sharpie pen without disgust , a thrill , or the giggles . 3 +105546 5573 may never again be able to look at a red felt Sharpie pen without disgust , a thrill , or the giggles . 3 +105547 5573 may never again be able to look at a red felt Sharpie pen without disgust , a thrill , or the giggles 2 +105548 5573 may never again 1 +105549 5573 may never 2 +105550 5573 be able to look at a red felt Sharpie pen without disgust , a thrill , or the giggles 3 +105551 5573 able to look at a red felt Sharpie pen without disgust , a thrill , or the giggles 2 +105552 5573 to look at a red felt Sharpie pen without disgust , a thrill , or the giggles 2 +105553 5573 look at a red felt Sharpie pen without disgust , a thrill , or the giggles 3 +105554 5573 look at a red felt Sharpie pen 2 +105555 5573 at a red felt Sharpie pen 2 +105556 5573 a red felt Sharpie pen 2 +105557 5573 red felt Sharpie pen 2 +105558 5573 felt Sharpie pen 2 +105559 5573 Sharpie pen 2 +105560 5573 Sharpie 2 +105561 5573 pen 2 +105562 5573 without disgust , a thrill , or the giggles 2 +105563 5573 disgust , a thrill , or the giggles 2 +105564 5573 disgust , a thrill , or 3 +105565 5573 disgust , a thrill , 2 +105566 5573 disgust , a thrill 2 +105567 5573 disgust , 0 +105568 5573 disgust 0 +105569 5573 the giggles 3 +105570 5574 It 's a cool event for the whole family . 4 +105571 5574 's a cool event for the whole family . 3 +105572 5574 's a cool event for the whole family 3 +105573 5574 a cool event for the whole family 3 +105574 5574 a cool event 3 +105575 5574 cool event 3 +105576 5574 for the whole family 3 +105577 5575 The journey to the secret 's eventual discovery is a separate adventure , and thrill enough . 3 +105578 5575 The journey to the secret 's eventual discovery is a separate adventure , and thrill enough 3 +105579 5575 The journey to the secret 's eventual discovery is a separate adventure , and 2 +105580 5575 The journey to the secret 's eventual discovery is a separate adventure , 3 +105581 5575 The journey to the secret 's eventual discovery is a separate adventure 2 +105582 5575 The journey to the secret 's eventual discovery 3 +105583 5575 to the secret 's eventual discovery 2 +105584 5575 the secret 's eventual discovery 3 +105585 5575 the secret 's 2 +105586 5575 secret 's 2 +105587 5575 eventual discovery 3 +105588 5575 is a separate adventure 2 +105589 5575 a separate adventure 2 +105590 5575 separate adventure 2 +105591 5575 thrill enough 2 +105592 5576 Coarse , cliched and clunky , this trifling romantic comedy in which opposites attract for no better reason than that the screenplay demands it squanders the charms of stars Hugh Grant and Sandra Bullock . 0 +105593 5576 Coarse , cliched and clunky 0 +105594 5576 Coarse 2 +105595 5576 , cliched and clunky 1 +105596 5576 cliched and clunky 1 +105597 5576 cliched and 1 +105598 5576 , this trifling romantic comedy in which opposites attract for no better reason than that the screenplay demands it squanders the charms of stars Hugh Grant and Sandra Bullock . 0 +105599 5576 this trifling romantic comedy in which opposites attract for no better reason than that the screenplay demands it squanders the charms of stars Hugh Grant and Sandra Bullock . 0 +105600 5576 this trifling romantic comedy in which opposites attract for no better reason than that the screenplay demands it 1 +105601 5576 this trifling romantic comedy 2 +105602 5576 trifling romantic comedy 2 +105603 5576 trifling 1 +105604 5576 in which opposites attract for no better reason than that the screenplay demands it 1 +105605 5576 opposites attract for no better reason than that the screenplay demands it 1 +105606 5576 opposites 2 +105607 5576 attract for no better reason than that the screenplay demands it 2 +105608 5576 attract for no better reason 2 +105609 5576 for no better reason 1 +105610 5576 no better reason 2 +105611 5576 better reason 2 +105612 5576 than that the screenplay demands it 2 +105613 5576 the screenplay demands it 2 +105614 5576 demands it 2 +105615 5576 squanders the charms of stars Hugh Grant and Sandra Bullock . 1 +105616 5576 squanders the charms of stars Hugh Grant and Sandra Bullock 2 +105617 5576 the charms of stars Hugh Grant and Sandra Bullock 3 +105618 5576 of stars Hugh Grant and Sandra Bullock 2 +105619 5576 stars Hugh Grant and Sandra Bullock 2 +105620 5576 Grant and Sandra Bullock 2 +105621 5576 and Sandra Bullock 2 +105622 5577 Greengrass -LRB- working from Don Mullan 's script -RRB- forgoes the larger socio-political picture of the situation in Northern Ireland in favour of an approach that throws one in the pulsating thick of a truly frightening situation . 2 +105623 5577 Greengrass -LRB- working from Don Mullan 's script -RRB- 2 +105624 5577 -LRB- working from Don Mullan 's script -RRB- 2 +105625 5577 working from Don Mullan 's script -RRB- 2 +105626 5577 working from Don Mullan 's script 2 +105627 5577 from Don Mullan 's script 2 +105628 5577 Don Mullan 's script 2 +105629 5577 Don Mullan 's 2 +105630 5577 Mullan 's 2 +105631 5577 Mullan 2 +105632 5577 forgoes the larger socio-political picture of the situation in Northern Ireland in favour of an approach that throws one in the pulsating thick of a truly frightening situation . 2 +105633 5577 forgoes the larger socio-political picture of the situation in Northern Ireland in favour of an approach that throws one in the pulsating thick of a truly frightening situation 3 +105634 5577 the larger socio-political picture of the situation in Northern Ireland in favour of an approach that throws one in the pulsating thick of a truly frightening situation 3 +105635 5577 the larger socio-political picture of the situation in Northern Ireland in favour of an approach 2 +105636 5577 the larger socio-political picture 2 +105637 5577 larger socio-political picture 2 +105638 5577 socio-political picture 2 +105639 5577 socio-political 2 +105640 5577 of the situation in Northern Ireland in favour of an approach 2 +105641 5577 the situation in Northern Ireland in favour of an approach 2 +105642 5577 in Northern Ireland in favour of an approach 3 +105643 5577 Northern Ireland in favour of an approach 2 +105644 5577 Northern Ireland 2 +105645 5577 Northern 2 +105646 5577 Ireland 2 +105647 5577 in favour of an approach 2 +105648 5577 favour of an approach 2 +105649 5577 of an approach 2 +105650 5577 an approach 2 +105651 5577 that throws one in the pulsating thick of a truly frightening situation 3 +105652 5577 throws one in the pulsating thick of a truly frightening situation 2 +105653 5577 throws one 2 +105654 5577 in the pulsating thick of a truly frightening situation 3 +105655 5577 the pulsating thick of a truly frightening situation 2 +105656 5577 the pulsating thick 2 +105657 5577 pulsating thick 2 +105658 5577 pulsating 2 +105659 5577 of a truly frightening situation 1 +105660 5577 a truly frightening situation 1 +105661 5577 truly frightening situation 3 +105662 5577 truly frightening 2 +105663 5578 Lan Yu is certainly a serviceable melodrama , but it does n't even try for the greatness that Happy Together shoots for -LRB- and misses -RRB- . 2 +105664 5578 Lan Yu is certainly a serviceable melodrama , but it does n't even try for the greatness that Happy Together shoots for -LRB- and misses -RRB- 2 +105665 5578 Lan Yu is certainly a serviceable melodrama , but 2 +105666 5578 Lan Yu is certainly a serviceable melodrama , 3 +105667 5578 Lan Yu is certainly a serviceable melodrama 2 +105668 5578 is certainly a serviceable melodrama 3 +105669 5578 a serviceable melodrama 3 +105670 5578 serviceable melodrama 2 +105671 5578 it does n't even try for the greatness that Happy Together shoots for -LRB- and misses -RRB- 1 +105672 5578 does n't even try for the greatness that Happy Together shoots for -LRB- and misses -RRB- 1 +105673 5578 try for the greatness that Happy Together shoots for -LRB- and misses -RRB- 1 +105674 5578 try for the greatness 3 +105675 5578 for the greatness 3 +105676 5578 the greatness 4 +105677 5578 that Happy Together shoots for -LRB- and misses -RRB- 2 +105678 5578 Happy Together shoots for -LRB- and misses -RRB- 1 +105679 5578 Together shoots for -LRB- and misses -RRB- 3 +105680 5578 shoots for -LRB- and misses -RRB- 1 +105681 5578 shoots for 2 +105682 5578 shoots 2 +105683 5578 -LRB- and misses -RRB- 1 +105684 5578 -LRB- and misses 2 +105685 5579 And Lee seems just as expectant of an adoring , wide-smiling reception . 3 +105686 5579 Lee seems just as expectant of an adoring , wide-smiling reception . 3 +105687 5579 seems just as expectant of an adoring , wide-smiling reception . 3 +105688 5579 seems just as expectant of an adoring , wide-smiling reception 1 +105689 5579 just as expectant of an adoring , wide-smiling reception 3 +105690 5579 just as expectant 2 +105691 5579 as expectant 2 +105692 5579 expectant 2 +105693 5579 of an adoring , wide-smiling reception 3 +105694 5579 an adoring , wide-smiling reception 3 +105695 5579 adoring , wide-smiling reception 3 +105696 5579 adoring 2 +105697 5579 , wide-smiling reception 3 +105698 5579 wide-smiling reception 3 +105699 5579 wide-smiling 3 +105700 5579 reception 2 +105701 5580 If you 're looking for a tale of Brits behaving badly , watch Snatch again . 2 +105702 5580 If you 're looking for a tale of Brits behaving badly 2 +105703 5580 you 're looking for a tale of Brits behaving badly 1 +105704 5580 're looking for a tale of Brits behaving badly 2 +105705 5580 looking for a tale of Brits behaving badly 1 +105706 5580 looking for a tale of Brits 2 +105707 5580 for a tale of Brits 2 +105708 5580 a tale of Brits 2 +105709 5580 of Brits 2 +105710 5580 behaving badly 2 +105711 5580 behaving 2 +105712 5580 , watch Snatch again . 2 +105713 5580 watch Snatch again . 2 +105714 5580 watch Snatch again 3 +105715 5580 watch Snatch 2 +105716 5580 Snatch 2 +105717 5581 The movie is not as terrible as the synergistic impulse that created it . 1 +105718 5581 is not as terrible as the synergistic impulse that created it . 2 +105719 5581 is not as terrible as the synergistic impulse that created it 1 +105720 5581 as terrible as the synergistic impulse that created it 0 +105721 5581 terrible as the synergistic impulse that created it 0 +105722 5581 as the synergistic impulse that created it 3 +105723 5581 the synergistic impulse that created it 2 +105724 5581 the synergistic impulse 2 +105725 5581 synergistic impulse 2 +105726 5581 synergistic 2 +105727 5581 that created it 2 +105728 5581 created it 2 +105729 5582 Schnitzler does a fine job contrasting the sleekness of the film 's present with the playful paranoia of the film 's past . ' 4 +105730 5582 does a fine job contrasting the sleekness of the film 's present with the playful paranoia of the film 's past . ' 3 +105731 5582 does a fine job contrasting the sleekness of the film 's present with the playful paranoia of the film 's past . 3 +105732 5582 does a fine job contrasting the sleekness of the film 's present with the playful paranoia of the film 's past 4 +105733 5582 a fine job contrasting the sleekness of the film 's present with the playful paranoia of the film 's past 3 +105734 5582 contrasting the sleekness of the film 's present with the playful paranoia of the film 's past 4 +105735 5582 contrasting the sleekness of the film 's present 2 +105736 5582 the sleekness of the film 's present 3 +105737 5582 the sleekness 3 +105738 5582 sleekness 3 +105739 5582 of the film 's present 2 +105740 5582 the film 's present 2 +105741 5582 with the playful paranoia of the film 's past 2 +105742 5582 the playful paranoia of the film 's past 3 +105743 5582 the playful paranoia 2 +105744 5582 playful paranoia 3 +105745 5582 of the film 's past 2 +105746 5582 the film 's past 2 +105747 5583 A horror movie with seriously dumb characters , which somewhat dilutes the pleasure of watching them stalked by creepy-crawly bug things that live only in the darkness . 1 +105748 5583 A horror movie with seriously dumb characters , which somewhat dilutes the pleasure of watching them 1 +105749 5583 with seriously dumb characters , which somewhat dilutes the pleasure of watching them 1 +105750 5583 seriously dumb characters , which somewhat dilutes the pleasure of watching them 1 +105751 5583 seriously dumb characters , 1 +105752 5583 seriously dumb characters 0 +105753 5583 seriously dumb 0 +105754 5583 which somewhat dilutes the pleasure of watching them 1 +105755 5583 somewhat dilutes the pleasure of watching them 1 +105756 5583 dilutes the pleasure of watching them 1 +105757 5583 the pleasure of watching them 3 +105758 5583 of watching them 2 +105759 5583 stalked by creepy-crawly bug things that live only in the darkness . 2 +105760 5583 stalked by creepy-crawly bug things that live only in the darkness 2 +105761 5583 stalked 2 +105762 5583 by creepy-crawly bug things that live only in the darkness 2 +105763 5583 creepy-crawly bug things that live only in the darkness 1 +105764 5583 creepy-crawly bug things 1 +105765 5583 creepy-crawly 2 +105766 5583 bug things 2 +105767 5583 bug 2 +105768 5583 that live only in the darkness 2 +105769 5583 live only in the darkness 2 +105770 5583 live only 2 +105771 5583 in the darkness 2 +105772 5583 the darkness 2 +105773 5584 ... plays like a badly edited , 91-minute trailer -LRB- and -RRB- the director ca n't seem to get a coherent rhythm going . 0 +105774 5584 plays like a badly edited , 91-minute trailer -LRB- and -RRB- the director ca n't seem to get a coherent rhythm going . 1 +105775 5584 plays like a badly edited , 91-minute trailer -LRB- and -RRB- the director ca n't seem to get a coherent rhythm going 0 +105776 5584 like a badly edited , 91-minute trailer -LRB- and -RRB- the director ca n't seem to get a coherent rhythm going 1 +105777 5584 like a badly edited , 91-minute trailer -LRB- and -RRB- 0 +105778 5584 a badly edited , 91-minute trailer -LRB- and -RRB- 0 +105779 5584 a badly edited , 91-minute trailer 0 +105780 5584 badly edited , 91-minute trailer 0 +105781 5584 badly edited 0 +105782 5584 , 91-minute trailer 1 +105783 5584 91-minute trailer 1 +105784 5584 91-minute 2 +105785 5584 -LRB- and -RRB- 2 +105786 5584 and -RRB- 2 +105787 5584 the director ca n't seem to get a coherent rhythm going 1 +105788 5584 ca n't seem to get a coherent rhythm going 0 +105789 5584 seem to get a coherent rhythm going 3 +105790 5584 to get a coherent rhythm going 1 +105791 5584 get a coherent rhythm going 2 +105792 5584 a coherent rhythm going 3 +105793 5584 a coherent rhythm 3 +105794 5584 coherent rhythm 3 +105795 5585 Twenty years later , Reggio still knows how to make a point with poetic imagery , but his ability to startle has been stifled by the very prevalence of the fast-forward technology that he so stringently takes to task . 2 +105796 5585 Twenty years later , Reggio still knows how to make a point with poetic imagery , but his ability to startle has been stifled by the very prevalence of the fast-forward technology that he so stringently takes to task 3 +105797 5585 Twenty years later , Reggio still knows how to make a point with poetic imagery , but 2 +105798 5585 Twenty years later , Reggio still knows how to make a point with poetic imagery , 3 +105799 5585 Twenty years later , Reggio still knows how to make a point with poetic imagery 3 +105800 5585 Twenty years later 2 +105801 5585 years later 2 +105802 5585 , Reggio still knows how to make a point with poetic imagery 4 +105803 5585 Reggio still knows how to make a point with poetic imagery 3 +105804 5585 still knows how to make a point with poetic imagery 2 +105805 5585 knows how to make a point with poetic imagery 3 +105806 5585 how to make a point with poetic imagery 2 +105807 5585 to make a point with poetic imagery 3 +105808 5585 make a point with poetic imagery 3 +105809 5585 make a point 2 +105810 5585 with poetic imagery 3 +105811 5585 poetic imagery 4 +105812 5585 his ability to startle has been stifled by the very prevalence of the fast-forward technology that he so stringently takes to task 2 +105813 5585 his ability to startle 3 +105814 5585 ability to startle 3 +105815 5585 to startle 2 +105816 5585 startle 2 +105817 5585 has been stifled by the very prevalence of the fast-forward technology that he so stringently takes to task 2 +105818 5585 been stifled by the very prevalence of the fast-forward technology that he so stringently takes to task 2 +105819 5585 stifled by the very prevalence of the fast-forward technology that he so stringently takes to task 1 +105820 5585 stifled by the very prevalence of the fast-forward technology 2 +105821 5585 stifled 1 +105822 5585 by the very prevalence of the fast-forward technology 2 +105823 5585 the very prevalence of the fast-forward technology 2 +105824 5585 the very prevalence 2 +105825 5585 very prevalence 2 +105826 5585 prevalence 2 +105827 5585 of the fast-forward technology 2 +105828 5585 the fast-forward technology 2 +105829 5585 fast-forward technology 2 +105830 5585 fast-forward 1 +105831 5585 that he so stringently takes to task 2 +105832 5585 he so stringently takes to task 2 +105833 5585 so stringently takes to task 2 +105834 5585 stringently takes to task 2 +105835 5585 stringently 2 +105836 5585 takes to task 2 +105837 5585 to task 2 +105838 5586 You could love Safe Conduct -LRB- Laissez Passer -RRB- for being a subtitled French movie that is 170 minutes long . 2 +105839 5586 could love Safe Conduct -LRB- Laissez Passer -RRB- for being a subtitled French movie that is 170 minutes long . 2 +105840 5586 could love Safe Conduct -LRB- Laissez Passer -RRB- for being a subtitled French movie that is 170 minutes long 3 +105841 5586 love Safe Conduct -LRB- Laissez Passer -RRB- for being a subtitled French movie that is 170 minutes long 3 +105842 5586 love Safe Conduct -LRB- Laissez Passer -RRB- 2 +105843 5586 Safe Conduct -LRB- Laissez Passer -RRB- 2 +105844 5586 -LRB- Laissez Passer -RRB- 2 +105845 5586 Laissez Passer -RRB- 2 +105846 5586 Laissez Passer 2 +105847 5586 Laissez 2 +105848 5586 Passer 2 +105849 5586 for being a subtitled French movie that is 170 minutes long 2 +105850 5586 being a subtitled French movie that is 170 minutes long 2 +105851 5586 a subtitled French movie that is 170 minutes long 2 +105852 5586 a subtitled French movie 2 +105853 5586 subtitled French movie 2 +105854 5586 French movie 2 +105855 5586 that is 170 minutes long 2 +105856 5586 is 170 minutes long 2 +105857 5586 170 minutes long 2 +105858 5586 170 minutes 2 +105859 5587 Salma goes native and she 's never been better in this colorful bio-pic of a Mexican icon . 4 +105860 5587 Salma goes native and she 's never been better in this colorful bio-pic of a Mexican icon 4 +105861 5587 Salma goes native and 2 +105862 5587 Salma goes native 2 +105863 5587 goes native 2 +105864 5587 she 's never been better in this colorful bio-pic of a Mexican icon 4 +105865 5587 's never been better in this colorful bio-pic of a Mexican icon 4 +105866 5587 been better in this colorful bio-pic of a Mexican icon 3 +105867 5587 been better 1 +105868 5587 in this colorful bio-pic of a Mexican icon 3 +105869 5587 this colorful bio-pic of a Mexican icon 3 +105870 5587 this colorful bio-pic 3 +105871 5587 colorful bio-pic 3 +105872 5587 of a Mexican icon 2 +105873 5587 a Mexican icon 2 +105874 5587 Mexican icon 2 +105875 5587 icon 2 +105876 5588 Borrows from other movies like it in the most ordinary and obvious fashion . 1 +105877 5588 Borrows from other movies 1 +105878 5588 like it in the most ordinary and obvious fashion . 2 +105879 5588 like it in the most ordinary and obvious fashion 2 +105880 5588 in the most ordinary and obvious fashion 2 +105881 5588 the most ordinary and obvious fashion 1 +105882 5588 most ordinary and obvious fashion 2 +105883 5588 most ordinary and obvious 1 +105884 5588 ordinary and obvious 0 +105885 5588 ordinary and 3 +105886 5589 You emerge dazed , confused as to whether you 've seen pornography or documentary . 1 +105887 5589 emerge dazed , confused as to whether you 've seen pornography or documentary . 1 +105888 5589 emerge dazed , confused as to whether you 've seen pornography or documentary 1 +105889 5589 emerge dazed , 2 +105890 5589 emerge dazed 2 +105891 5589 dazed 2 +105892 5589 confused as to whether you 've seen pornography or documentary 2 +105893 5589 confused as 2 +105894 5589 to whether you 've seen pornography or documentary 1 +105895 5589 whether you 've seen pornography or documentary 2 +105896 5589 you 've seen pornography or documentary 2 +105897 5589 've seen pornography or documentary 2 +105898 5589 seen pornography or documentary 2 +105899 5589 pornography or documentary 1 +105900 5589 pornography or 2 +105901 5589 pornography 2 +105902 5590 An average kid-empowerment fantasy with slightly above-average brains . 3 +105903 5590 An average kid-empowerment fantasy with slightly above-average brains 3 +105904 5590 An average kid-empowerment fantasy 2 +105905 5590 average kid-empowerment fantasy 3 +105906 5590 kid-empowerment fantasy 3 +105907 5590 kid-empowerment 3 +105908 5590 with slightly above-average brains 2 +105909 5590 slightly above-average brains 2 +105910 5590 above-average brains 3 +105911 5591 Ben Kingsley is truly funny , playing a kind of Ghandi gone bad . 4 +105912 5591 Ben Kingsley 2 +105913 5591 is truly funny , playing a kind of Ghandi gone bad . 3 +105914 5591 is truly funny , playing a kind of Ghandi gone bad 3 +105915 5591 is truly funny , 4 +105916 5591 is truly funny 4 +105917 5591 truly funny 4 +105918 5591 playing a kind of Ghandi gone bad 2 +105919 5591 a kind of Ghandi gone bad 1 +105920 5591 of Ghandi gone bad 1 +105921 5591 Ghandi gone bad 1 +105922 5591 Ghandi 3 +105923 5591 gone bad 2 +105924 5592 Seeks to transcend its genre with a curiously stylized , quasi-Shakespearean portrait of pure misogynist evil . 3 +105925 5592 to transcend its genre with a curiously stylized , quasi-Shakespearean portrait of pure misogynist evil . 2 +105926 5592 to transcend its genre with a curiously stylized , quasi-Shakespearean portrait of pure misogynist evil 2 +105927 5592 transcend its genre with a curiously stylized , quasi-Shakespearean portrait of pure misogynist evil 4 +105928 5592 transcend its genre 3 +105929 5592 with a curiously stylized , quasi-Shakespearean portrait of pure misogynist evil 3 +105930 5592 a curiously stylized , quasi-Shakespearean portrait of pure misogynist evil 3 +105931 5592 a curiously stylized , quasi-Shakespearean portrait 2 +105932 5592 curiously stylized , quasi-Shakespearean portrait 2 +105933 5592 curiously stylized 3 +105934 5592 , quasi-Shakespearean portrait 2 +105935 5592 quasi-Shakespearean portrait 2 +105936 5592 quasi-Shakespearean 2 +105937 5592 of pure misogynist evil 1 +105938 5592 pure misogynist evil 1 +105939 5592 misogynist evil 1 +105940 5592 misogynist 1 +105941 5593 A sham construct based on theory , sleight-of-hand , and ill-wrought hypothesis . 1 +105942 5593 A sham 1 +105943 5593 construct based on theory , sleight-of-hand , and ill-wrought hypothesis . 2 +105944 5593 construct based on theory , sleight-of-hand , and ill-wrought hypothesis 1 +105945 5593 based on theory , sleight-of-hand , and ill-wrought hypothesis 3 +105946 5593 on theory , sleight-of-hand , and ill-wrought hypothesis 1 +105947 5593 theory , sleight-of-hand , and ill-wrought hypothesis 2 +105948 5593 theory , sleight-of-hand , and 2 +105949 5593 theory , sleight-of-hand , 2 +105950 5593 theory , sleight-of-hand 2 +105951 5593 theory , 2 +105952 5593 sleight-of-hand 2 +105953 5593 ill-wrought hypothesis 1 +105954 5593 ill-wrought 2 +105955 5593 hypothesis 2 +105956 5594 Passion , melodrama , sorrow , laugther , and tears cascade over the screen effortlessly ... 3 +105957 5594 Passion , melodrama , sorrow , laugther , and tears cascade over the screen effortlessly 4 +105958 5594 Passion , melodrama , sorrow , laugther , and tears 3 +105959 5594 , melodrama , sorrow , laugther , and tears 3 +105960 5594 melodrama , sorrow , laugther , and tears 2 +105961 5594 , sorrow , laugther , and tears 3 +105962 5594 sorrow , laugther , and tears 2 +105963 5594 sorrow 1 +105964 5594 , laugther , and tears 2 +105965 5594 laugther , and tears 2 +105966 5594 laugther 3 +105967 5594 , and tears 2 +105968 5594 cascade over the screen effortlessly 3 +105969 5594 cascade over the screen 2 +105970 5594 cascade 2 +105971 5594 over the screen 2 +105972 5595 Banal and predictable . 0 +105973 5595 Banal and predictable 1 +105974 5595 Banal and 1 +105975 5596 You expect more from director Michael Apted -LRB- Enigma -RRB- and screenwriter Nicholas Kazan -LRB- Reversal of Fortune -RRB- than this cliche pileup . 0 +105976 5596 expect more from director Michael Apted -LRB- Enigma -RRB- and screenwriter Nicholas Kazan -LRB- Reversal of Fortune -RRB- than this cliche pileup . 1 +105977 5596 expect more from director Michael Apted -LRB- Enigma -RRB- and screenwriter Nicholas Kazan -LRB- Reversal of Fortune -RRB- than this cliche pileup 1 +105978 5596 expect more from director Michael Apted -LRB- Enigma -RRB- and screenwriter Nicholas Kazan -LRB- Reversal of Fortune -RRB- 1 +105979 5596 more from director Michael Apted -LRB- Enigma -RRB- and screenwriter Nicholas Kazan -LRB- Reversal of Fortune -RRB- 2 +105980 5596 from director Michael Apted -LRB- Enigma -RRB- and screenwriter Nicholas Kazan -LRB- Reversal of Fortune -RRB- 2 +105981 5596 director Michael Apted -LRB- Enigma -RRB- and screenwriter Nicholas Kazan -LRB- Reversal of Fortune -RRB- 2 +105982 5596 director Michael Apted -LRB- Enigma -RRB- and screenwriter Nicholas Kazan 2 +105983 5596 director Michael Apted -LRB- Enigma -RRB- and 2 +105984 5596 director Michael Apted -LRB- Enigma -RRB- 2 +105985 5596 -LRB- Enigma -RRB- 2 +105986 5596 Enigma -RRB- 2 +105987 5596 screenwriter Nicholas Kazan 2 +105988 5596 Nicholas Kazan 2 +105989 5596 Kazan 2 +105990 5596 -LRB- Reversal of Fortune -RRB- 2 +105991 5596 Reversal of Fortune -RRB- 2 +105992 5596 Reversal of Fortune 2 +105993 5596 Reversal 2 +105994 5596 of Fortune 2 +105995 5596 than this cliche pileup 2 +105996 5596 this cliche pileup 1 +105997 5596 cliche pileup 1 +105998 5597 With flashbulb editing as cover for the absence of narrative continuity , Undisputed is nearly incoherent , an excuse to get to the closing bout ... by which time it 's impossible to care who wins . 1 +105999 5597 With flashbulb editing as cover for the absence of narrative continuity 1 +106000 5597 flashbulb editing as cover for the absence of narrative continuity 1 +106001 5597 flashbulb editing 2 +106002 5597 flashbulb 2 +106003 5597 as cover for the absence of narrative continuity 2 +106004 5597 cover for the absence of narrative continuity 2 +106005 5597 for the absence of narrative continuity 2 +106006 5597 the absence of narrative continuity 1 +106007 5597 the absence 2 +106008 5597 absence 2 +106009 5597 of narrative continuity 2 +106010 5597 narrative continuity 3 +106011 5597 , Undisputed is nearly incoherent , an excuse to get to the closing bout ... by which time it 's impossible to care who wins . 2 +106012 5597 Undisputed is nearly incoherent , an excuse to get to the closing bout ... by which time it 's impossible to care who wins . 1 +106013 5597 is nearly incoherent , an excuse to get to the closing bout ... by which time it 's impossible to care who wins . 0 +106014 5597 is nearly incoherent , an excuse to get to the closing bout ... by which time it 's impossible to care who wins 0 +106015 5597 is nearly incoherent , 1 +106016 5597 is nearly incoherent 0 +106017 5597 nearly incoherent 1 +106018 5597 an excuse to get to the closing bout ... by which time it 's impossible to care who wins 0 +106019 5597 excuse to get to the closing bout ... by which time it 's impossible to care who wins 1 +106020 5597 to get to the closing bout ... by which time it 's impossible to care who wins 1 +106021 5597 get to the closing bout ... by which time it 's impossible to care who wins 1 +106022 5597 get to the closing bout ... 2 +106023 5597 get to the closing bout 2 +106024 5597 to the closing bout 2 +106025 5597 the closing bout 2 +106026 5597 closing bout 2 +106027 5597 bout 2 +106028 5597 by which time it 's impossible to care who wins 1 +106029 5597 by which time 2 +106030 5597 which time 2 +106031 5597 it 's impossible to care who wins 0 +106032 5597 's impossible to care who wins 2 +106033 5597 impossible to care who wins 2 +106034 5597 to care who wins 2 +106035 5597 care who wins 2 +106036 5597 who wins 2 +106037 5598 The Chateau is a risky venture that never quite goes where you expect and often surprises you with unexpected comedy . 3 +106038 5598 is a risky venture that never quite goes where you expect and often surprises you with unexpected comedy . 4 +106039 5598 is a risky venture that never quite goes where you expect and often surprises you with unexpected comedy 2 +106040 5598 a risky venture that never quite goes where you expect and often surprises you with unexpected comedy 3 +106041 5598 a risky venture 2 +106042 5598 risky venture 2 +106043 5598 risky 1 +106044 5598 venture 2 +106045 5598 that never quite goes where you expect and often surprises you with unexpected comedy 3 +106046 5598 never quite goes where you expect and often surprises you with unexpected comedy 3 +106047 5598 goes where you expect and often surprises you with unexpected comedy 3 +106048 5598 where you expect and often surprises you with unexpected comedy 4 +106049 5598 you expect and often surprises you with unexpected comedy 4 +106050 5598 expect and often surprises you with unexpected comedy 3 +106051 5598 expect and 2 +106052 5598 often surprises you with unexpected comedy 3 +106053 5598 surprises you with unexpected comedy 3 +106054 5598 surprises you 4 +106055 5598 with unexpected comedy 3 +106056 5598 unexpected comedy 3 +106057 5599 Watching Austin Powers in Goldmember is like binging on cotton candy . 3 +106058 5599 Watching Austin Powers in Goldmember 2 +106059 5599 Watching Austin Powers 2 +106060 5599 is like binging on cotton candy . 2 +106061 5599 is like binging on cotton candy 3 +106062 5599 like binging on cotton candy 2 +106063 5599 binging on cotton candy 2 +106064 5599 binging 2 +106065 5599 on cotton candy 3 +106066 5599 cotton candy 2 +106067 5599 cotton 2 +106068 5600 In the wrong hands , i.e. Peploe 's , it 's simply unbearable 1 +106069 5600 In the wrong hands 1 +106070 5600 the wrong hands 2 +106071 5600 wrong hands 1 +106072 5600 , i.e. Peploe 's , it 's simply unbearable 0 +106073 5600 i.e. Peploe 's , it 's simply unbearable 0 +106074 5600 i.e. Peploe 2 +106075 5600 's , it 's simply unbearable 0 +106076 5600 's , 2 +106077 5600 it 's simply unbearable 0 +106078 5600 's simply unbearable 0 +106079 5601 Two hours of junk . 0 +106080 5601 Two hours of junk 0 +106081 5601 of junk 1 +106082 5601 junk 2 +106083 5602 A perfectly respectable , perfectly inoffensive , easily forgettable film . 2 +106084 5602 A perfectly respectable , perfectly inoffensive 3 +106085 5602 perfectly respectable , perfectly inoffensive 3 +106086 5602 perfectly respectable , 3 +106087 5602 perfectly respectable 3 +106088 5602 perfectly inoffensive 3 +106089 5602 , easily forgettable film . 1 +106090 5602 easily forgettable film . 0 +106091 5602 easily forgettable film 0 +106092 5602 forgettable film 0 +106093 5603 A colorful , joyous celebration of life ; a tapestry woven of romance , dancing , singing , and unforgettable characters . 4 +106094 5603 A colorful , joyous celebration of life ; a tapestry woven of romance , dancing , singing , and unforgettable characters 4 +106095 5603 A colorful , joyous celebration of life ; 4 +106096 5603 A colorful , joyous celebration of life 4 +106097 5603 A colorful , joyous celebration 3 +106098 5603 colorful , joyous celebration 4 +106099 5603 , joyous celebration 3 +106100 5603 joyous celebration 4 +106101 5603 a tapestry woven of romance , dancing , singing , and unforgettable characters 3 +106102 5603 a tapestry 2 +106103 5603 woven of romance , dancing , singing , and unforgettable characters 3 +106104 5603 of romance , dancing , singing , and unforgettable characters 4 +106105 5603 romance , dancing , singing , and unforgettable characters 4 +106106 5603 , dancing , singing , and unforgettable characters 3 +106107 5603 dancing , singing , and unforgettable characters 3 +106108 5603 , singing , and unforgettable characters 3 +106109 5603 singing , and unforgettable characters 3 +106110 5603 , and unforgettable characters 3 +106111 5603 and unforgettable characters 4 +106112 5603 unforgettable characters 3 +106113 5603 unforgettable 4 +106114 5604 So here it is : It 's about a family of sour immortals . 2 +106115 5604 So here it is : It 's about a family of sour immortals 1 +106116 5604 So here it is : 2 +106117 5604 So here it is 2 +106118 5604 So here 2 +106119 5604 It 's about a family of sour immortals 2 +106120 5604 's about a family of sour immortals 2 +106121 5604 about a family of sour immortals 1 +106122 5604 a family of sour immortals 2 +106123 5604 of sour immortals 2 +106124 5604 sour immortals 1 +106125 5604 immortals 2 +106126 5605 The film falls short on tension , eloquence , spiritual challenge -- things that have made the original New Testament stories so compelling for 20 centuries . 1 +106127 5605 falls short on tension , eloquence , spiritual challenge -- things that have made the original New Testament stories so compelling for 20 centuries . 1 +106128 5605 falls short on tension , eloquence , spiritual challenge -- things that have made the original New Testament stories so compelling for 20 centuries 1 +106129 5605 short on tension , eloquence , spiritual challenge -- things that have made the original New Testament stories so compelling for 20 centuries 1 +106130 5605 on tension , eloquence , spiritual challenge -- things that have made the original New Testament stories so compelling for 20 centuries 3 +106131 5605 tension , eloquence , spiritual challenge -- things that have made the original New Testament stories so compelling for 20 centuries 3 +106132 5605 tension , eloquence , spiritual challenge -- 3 +106133 5605 tension , eloquence , spiritual challenge 3 +106134 5605 , eloquence , spiritual challenge 3 +106135 5605 eloquence , spiritual challenge 3 +106136 5605 , spiritual challenge 2 +106137 5605 spiritual challenge 2 +106138 5605 challenge 2 +106139 5605 things that have made the original New Testament stories so compelling for 20 centuries 2 +106140 5605 that have made the original New Testament stories so compelling for 20 centuries 3 +106141 5605 have made the original New Testament stories so compelling for 20 centuries 3 +106142 5605 made the original New Testament stories so compelling for 20 centuries 4 +106143 5605 made the original New Testament stories so compelling 2 +106144 5605 the original New Testament stories so compelling 3 +106145 5605 the original New Testament stories 2 +106146 5605 original New Testament stories 2 +106147 5605 New Testament stories 3 +106148 5605 Testament stories 2 +106149 5605 so compelling 3 +106150 5605 for 20 centuries 2 +106151 5605 20 centuries 2 +106152 5605 centuries 2 +106153 5606 A cautionary tale about the grandiosity of a college student who sees himself as impervious to a fall . 2 +106154 5606 A cautionary tale about the grandiosity of a college student who sees himself as impervious to a fall 3 +106155 5606 A cautionary tale 2 +106156 5606 about the grandiosity of a college student who sees himself as impervious to a fall 3 +106157 5606 the grandiosity of a college student who sees himself as impervious to a fall 3 +106158 5606 of a college student who sees himself as impervious to a fall 2 +106159 5606 a college student who sees himself as impervious to a fall 2 +106160 5606 a college student 2 +106161 5606 who sees himself as impervious to a fall 2 +106162 5606 sees himself as impervious to a fall 2 +106163 5606 himself as impervious to a fall 2 +106164 5606 as impervious to a fall 2 +106165 5606 impervious to a fall 2 +106166 5606 impervious 1 +106167 5606 to a fall 2 +106168 5607 An affectionately goofy satire that 's unafraid to throw elbows when necessary ... 3 +106169 5607 An affectionately goofy satire that 's unafraid to throw elbows when necessary 3 +106170 5607 An affectionately goofy satire 3 +106171 5607 affectionately goofy satire 3 +106172 5607 affectionately goofy 3 +106173 5607 affectionately 3 +106174 5607 that 's unafraid to throw elbows when necessary 3 +106175 5607 's unafraid to throw elbows when necessary 2 +106176 5607 unafraid to throw elbows when necessary 3 +106177 5607 unafraid 2 +106178 5607 to throw elbows when necessary 2 +106179 5607 throw elbows when necessary 3 +106180 5607 throw elbows 2 +106181 5607 elbows 2 +106182 5607 when necessary 2 +106183 5608 In addition to Hoffman 's powerful acting clinic , this is that rare drama that offers a thoughtful and rewarding glimpse into the sort of heartache everyone has felt , or will feel someday . 4 +106184 5608 In addition to Hoffman 's powerful acting clinic 3 +106185 5608 addition to Hoffman 's powerful acting clinic 3 +106186 5608 to Hoffman 's powerful acting clinic 3 +106187 5608 Hoffman 's powerful acting clinic 3 +106188 5608 powerful acting clinic 3 +106189 5608 , this is that rare drama that offers a thoughtful and rewarding glimpse into the sort of heartache everyone has felt , or will feel someday . 4 +106190 5608 this is that rare drama that offers a thoughtful and rewarding glimpse into the sort of heartache everyone has felt , or will feel someday . 4 +106191 5608 is that rare drama that offers a thoughtful and rewarding glimpse into the sort of heartache everyone has felt , or will feel someday . 3 +106192 5608 is that rare drama that offers a thoughtful and rewarding glimpse into the sort of heartache everyone has felt , or will feel someday 3 +106193 5608 that rare drama that offers a thoughtful and rewarding glimpse into the sort of heartache everyone has felt , or will feel someday 3 +106194 5608 rare drama that offers a thoughtful and rewarding glimpse into the sort of heartache everyone has felt , or will feel someday 4 +106195 5608 rare drama that offers a thoughtful and rewarding glimpse into the sort of heartache everyone 3 +106196 5608 rare drama 3 +106197 5608 that offers a thoughtful and rewarding glimpse into the sort of heartache everyone 3 +106198 5608 offers a thoughtful and rewarding glimpse into the sort of heartache everyone 4 +106199 5608 offers a thoughtful and rewarding glimpse 3 +106200 5608 a thoughtful and rewarding glimpse 3 +106201 5608 thoughtful and rewarding glimpse 3 +106202 5608 thoughtful and rewarding 3 +106203 5608 into the sort of heartache everyone 1 +106204 5608 the sort of heartache everyone 2 +106205 5608 of heartache everyone 2 +106206 5608 heartache everyone 1 +106207 5608 heartache 2 +106208 5608 has felt , or will feel someday 2 +106209 5608 has felt , or 2 +106210 5608 has felt , 2 +106211 5608 has felt 2 +106212 5608 will feel someday 2 +106213 5608 feel someday 2 +106214 5608 someday 2 +106215 5609 When ` science fiction ' takes advantage of the fact that its intended audience has n't yet had much science , it does a disservice to the audience and to the genre . 1 +106216 5609 When ` science fiction ' takes advantage of the fact that its intended audience has n't yet had much science 1 +106217 5609 ` science fiction ' takes advantage of the fact that its intended audience has n't yet had much science 1 +106218 5609 ` science fiction ' 2 +106219 5609 science fiction ' 2 +106220 5609 fiction ' 2 +106221 5609 takes advantage of the fact that its intended audience has n't yet had much science 2 +106222 5609 takes advantage of the fact 3 +106223 5609 advantage of the fact 2 +106224 5609 of the fact 2 +106225 5609 that its intended audience has n't yet had much science 1 +106226 5609 its intended audience has n't yet had much science 1 +106227 5609 has n't yet had much science 2 +106228 5609 had much science 3 +106229 5609 much science 2 +106230 5609 , it does a disservice to the audience and to the genre . 0 +106231 5609 it does a disservice to the audience and to the genre . 1 +106232 5609 does a disservice to the audience and to the genre . 0 +106233 5609 does a disservice to the audience and to the genre 1 +106234 5609 does a disservice 1 +106235 5609 a disservice 1 +106236 5609 disservice 1 +106237 5609 to the audience and to the genre 2 +106238 5609 to the audience and 2 +106239 5609 to the audience 2 +106240 5609 to the genre 2 +106241 5610 By halfway through this picture I was beginning to hate it , and , of course , feeling guilty for it ... Then , miracle of miracles , the movie does a flip-flop . 3 +106242 5610 By halfway through this picture I was beginning to hate it , and , of course 0 +106243 5610 halfway through this picture I was beginning to hate it , and , of course 1 +106244 5610 halfway through this picture I was beginning to hate it , and , 1 +106245 5610 halfway through this picture I was beginning to hate it , and 2 +106246 5610 halfway through this picture I was beginning to hate it , 1 +106247 5610 halfway through this picture I was beginning to hate it 0 +106248 5610 through this picture I was beginning to hate it 1 +106249 5610 through this picture 2 +106250 5610 I was beginning to hate it 1 +106251 5610 was beginning to hate it 1 +106252 5610 beginning to hate it 1 +106253 5610 to hate it 1 +106254 5610 , feeling guilty for it ... Then , miracle of miracles , the movie does a flip-flop . 2 +106255 5610 feeling guilty for it ... Then , miracle of miracles , the movie does a flip-flop . 3 +106256 5610 feeling guilty for it ... Then , miracle of miracles , the movie does a flip-flop 2 +106257 5610 feeling guilty for it ... 2 +106258 5610 feeling guilty for it 1 +106259 5610 feeling guilty 1 +106260 5610 Then , miracle of miracles , the movie does a flip-flop 2 +106261 5610 , miracle of miracles , the movie does a flip-flop 2 +106262 5610 miracle of miracles , the movie does a flip-flop 2 +106263 5610 miracle of miracles , the movie 3 +106264 5610 of miracles , the movie 2 +106265 5610 miracles , the movie 2 +106266 5610 miracles , 3 +106267 5610 miracles 3 +106268 5610 does a flip-flop 2 +106269 5610 a flip-flop 2 +106270 5611 ... a funny yet dark and seedy clash of cultures and generations . 3 +106271 5611 a funny yet dark and seedy clash of cultures and generations . 3 +106272 5611 a funny yet dark and seedy clash of cultures and generations 3 +106273 5611 a funny yet dark and seedy clash 3 +106274 5611 a funny yet dark and 3 +106275 5611 a funny yet dark 3 +106276 5611 funny yet dark 3 +106277 5611 funny yet 3 +106278 5611 seedy clash 1 +106279 5611 seedy 2 +106280 5611 of cultures and generations 2 +106281 5611 cultures and generations 2 +106282 5611 cultures and 2 +106283 5612 What 's most offensive is n't the waste of a good cast , but the film 's denial of sincere grief and mourning in favor of bogus spiritualism . 0 +106284 5612 What 's most offensive is n't the waste of a good cast , but the film 's denial of sincere grief and mourning in favor of bogus spiritualism 2 +106285 5612 What 's most offensive is n't the waste of a good cast , but 1 +106286 5612 What 's most offensive is n't the waste of a good cast , 1 +106287 5612 What 's most offensive is n't the waste of a good cast 0 +106288 5612 What 's most offensive 1 +106289 5612 's most offensive 1 +106290 5612 is n't the waste of a good cast 2 +106291 5612 the waste of a good cast 0 +106292 5612 the waste 1 +106293 5612 of a good cast 3 +106294 5612 a good cast 3 +106295 5612 good cast 3 +106296 5612 the film 's denial of sincere grief and mourning in favor of bogus spiritualism 2 +106297 5612 's denial of sincere grief and mourning in favor of bogus spiritualism 1 +106298 5612 denial of sincere grief and mourning in favor of bogus spiritualism 1 +106299 5612 of sincere grief and mourning in favor of bogus spiritualism 1 +106300 5612 sincere grief and mourning in favor of bogus spiritualism 1 +106301 5612 sincere grief and 2 +106302 5612 sincere grief 2 +106303 5612 mourning in favor of bogus spiritualism 1 +106304 5612 mourning in favor 2 +106305 5612 mourning 2 +106306 5612 in favor 3 +106307 5612 of bogus spiritualism 2 +106308 5612 bogus spiritualism 1 +106309 5612 spiritualism 2 +106310 5613 Everyone 's insecure in Lovely and Amazing , a poignant and wryly amusing film about mothers , daughters and their relationships . 4 +106311 5613 's insecure in Lovely and Amazing , a poignant and wryly amusing film about mothers , daughters and their relationships . 3 +106312 5613 's insecure in Lovely and Amazing , a poignant and wryly amusing film about mothers , daughters and their relationships 3 +106313 5613 's insecure in Lovely and Amazing , 3 +106314 5613 's insecure in Lovely and Amazing 2 +106315 5613 's insecure 2 +106316 5613 insecure 1 +106317 5613 in Lovely and Amazing 3 +106318 5613 a poignant and wryly amusing film about mothers , daughters and their relationships 3 +106319 5613 a poignant and wryly amusing film 3 +106320 5613 poignant and wryly amusing film 3 +106321 5613 poignant and wryly amusing 3 +106322 5613 wryly amusing 3 +106323 5613 about mothers , daughters and their relationships 2 +106324 5613 mothers , daughters and their relationships 2 +106325 5613 mothers , daughters and 2 +106326 5613 mothers , daughters 2 +106327 5613 mothers , 1 +106328 5614 It is n't quite one of the worst movies of the year . 0 +106329 5614 is n't quite one of the worst movies of the year . 1 +106330 5614 is n't quite one of the worst movies of the year 1 +106331 5614 quite one of the worst movies of the year 0 +106332 5614 quite one 2 +106333 5615 Directed by Kevin Bray , whose crisp framing , edgy camera work , and wholesale ineptitude with acting , tone and pace very obviously mark him as a video helmer making his feature debut . 3 +106334 5615 Directed by Kevin Bray , whose crisp framing , edgy camera work , and wholesale ineptitude with acting , tone and pace very obviously mark him as a video helmer making his feature debut 2 +106335 5615 by Kevin Bray , whose crisp framing , edgy camera work , and wholesale ineptitude with acting , tone and pace very obviously mark him as a video helmer making his feature debut 1 +106336 5615 Kevin Bray , whose crisp framing , edgy camera work , and wholesale ineptitude with acting , tone and pace very obviously mark him as a video helmer making his feature debut 2 +106337 5615 Kevin Bray , 2 +106338 5615 Kevin Bray 2 +106339 5615 whose crisp framing , edgy camera work , and wholesale ineptitude with acting , tone and pace very obviously mark him as a video helmer making his feature debut 2 +106340 5615 whose crisp framing , edgy camera work , and wholesale ineptitude 1 +106341 5615 crisp framing , edgy camera work , and wholesale ineptitude 1 +106342 5615 crisp framing , edgy camera work , and 3 +106343 5615 crisp framing , edgy camera work , 4 +106344 5615 crisp framing , edgy camera work 3 +106345 5615 crisp framing , 3 +106346 5615 crisp framing 3 +106347 5615 framing 2 +106348 5615 edgy camera work 3 +106349 5615 wholesale ineptitude 2 +106350 5615 wholesale 2 +106351 5615 ineptitude 2 +106352 5615 with acting , tone and pace very obviously mark him as a video helmer making his feature debut 3 +106353 5615 with acting , tone and pace 2 +106354 5615 acting , tone and pace 2 +106355 5615 , tone and pace 2 +106356 5615 tone and pace 2 +106357 5615 tone and 2 +106358 5615 very obviously mark him as a video helmer making his feature debut 3 +106359 5615 very obviously 2 +106360 5615 mark him as a video helmer making his feature debut 2 +106361 5615 mark him 2 +106362 5615 as a video helmer making his feature debut 2 +106363 5615 a video helmer making his feature debut 2 +106364 5615 a video helmer 3 +106365 5615 video helmer 2 +106366 5615 making his feature debut 2 +106367 5615 his feature debut 2 +106368 5616 Hard to resist . 3 +106369 5616 to resist . 2 +106370 5617 An almost unbearably morbid love story . 0 +106371 5617 An almost unbearably morbid 0 +106372 5617 almost unbearably morbid 1 +106373 5617 almost unbearably 0 +106374 5617 love story . 2 +106375 5618 Dark and unrepentant , this excursion into the epicenter of percolating mental instability is not easily dismissed or forgotten . 3 +106376 5618 Dark and unrepentant 2 +106377 5618 unrepentant 2 +106378 5618 , this excursion into the epicenter of percolating mental instability is not easily dismissed or forgotten . 2 +106379 5618 this excursion into the epicenter of percolating mental instability is not easily dismissed or forgotten . 3 +106380 5618 this excursion into the epicenter of percolating mental instability 2 +106381 5618 this excursion 2 +106382 5618 excursion 2 +106383 5618 into the epicenter of percolating mental instability 2 +106384 5618 the epicenter of percolating mental instability 2 +106385 5618 the epicenter 2 +106386 5618 epicenter 2 +106387 5618 of percolating mental instability 2 +106388 5618 percolating mental instability 2 +106389 5618 percolating 3 +106390 5618 mental instability 2 +106391 5618 instability 2 +106392 5618 is not easily dismissed or forgotten . 3 +106393 5618 is not easily dismissed or forgotten 2 +106394 5618 is not easily 2 +106395 5618 dismissed or forgotten 2 +106396 5618 dismissed or 2 +106397 5619 A pleasing , often-funny comedy . 3 +106398 5619 A pleasing , often-funny comedy 3 +106399 5619 A pleasing , 3 +106400 5619 A pleasing 2 +106401 5619 often-funny comedy 3 +106402 5619 often-funny 3 +106403 5620 There 's not a spark of new inspiration in it , just more of the same , done with noticeably less energy and imagination . 1 +106404 5620 's not a spark of new inspiration in it , just more of the same , done with noticeably less energy and imagination . 1 +106405 5620 's not a spark of new inspiration in it , just more of the same , done with noticeably less energy and imagination 1 +106406 5620 a spark of new inspiration in it , just more of the same , done with noticeably less energy and imagination 1 +106407 5620 a spark of new inspiration in it , 3 +106408 5620 a spark of new inspiration in it 3 +106409 5620 of new inspiration in it 3 +106410 5620 new inspiration in it 3 +106411 5620 new inspiration 3 +106412 5620 just more of the same , done with noticeably less energy and imagination 1 +106413 5620 just more of the same , 1 +106414 5620 just more of the same 1 +106415 5620 just more 2 +106416 5620 of the same 2 +106417 5620 done with noticeably less energy and imagination 1 +106418 5620 with noticeably less energy and imagination 2 +106419 5620 noticeably less energy and imagination 1 +106420 5620 noticeably less 1 +106421 5620 energy and imagination 3 +106422 5621 Murphy and Wilson actually make a pretty good team ... but the project surrounding them is distressingly rote . 1 +106423 5621 Murphy and Wilson actually make a pretty good team ... but the project surrounding them is distressingly rote 2 +106424 5621 Murphy and Wilson actually make a pretty good team ... 3 +106425 5621 Murphy and Wilson actually make a pretty good team 3 +106426 5621 Murphy and Wilson 2 +106427 5621 Murphy and 2 +106428 5621 actually make a pretty good team 3 +106429 5621 make a pretty good team 3 +106430 5621 a pretty good team 3 +106431 5621 pretty good team 3 +106432 5621 but the project surrounding them is distressingly rote 1 +106433 5621 the project surrounding them is distressingly rote 2 +106434 5621 the project surrounding them 2 +106435 5621 surrounding them 2 +106436 5621 is distressingly rote 0 +106437 5621 distressingly rote 1 +106438 5621 distressingly 1 +106439 5622 It 's one thing to read about or rail against the ongoing - and unprecedented - construction project going on over our heads . 1 +106440 5622 's one thing to read about or rail against the ongoing - and unprecedented - construction project going on over our heads . 2 +106441 5622 's one thing to read about or rail against the ongoing - and unprecedented - construction project going on over our heads 2 +106442 5622 one thing to read about or rail against the ongoing - and unprecedented - construction project going on over our heads 2 +106443 5622 one thing to read about or 2 +106444 5622 one thing to read about 2 +106445 5622 to read about 2 +106446 5622 read about 2 +106447 5622 rail against the ongoing - and unprecedented - construction project going on over our heads 2 +106448 5622 rail 2 +106449 5622 against the ongoing - and unprecedented - construction project going on over our heads 2 +106450 5622 the ongoing - and unprecedented - construction project going on over our heads 2 +106451 5622 the ongoing - and unprecedented - construction project 2 +106452 5622 ongoing - and unprecedented - construction project 2 +106453 5622 ongoing - and unprecedented - 3 +106454 5622 ongoing - and unprecedented 2 +106455 5622 ongoing - and 2 +106456 5622 ongoing - 2 +106457 5622 ongoing 2 +106458 5622 unprecedented 2 +106459 5622 construction project 2 +106460 5622 going on over our heads 2 +106461 5622 over our heads 2 +106462 5622 our heads 2 +106463 5623 Its and pieces of The Hot Chick are so hilarious , and Schneider 's performance is so fine , it 's a real shame that so much of the movie -- again , as in The Animal -- is a slapdash mess . 1 +106464 5623 Its and pieces of The Hot Chick are so hilarious , and Schneider 's performance is so fine 3 +106465 5623 Its and pieces of The Hot Chick are so hilarious , and 3 +106466 5623 Its and pieces of The Hot Chick are so hilarious , 3 +106467 5623 Its and pieces of The Hot Chick are so hilarious 3 +106468 5623 Its and pieces of The Hot Chick 2 +106469 5623 Its and pieces 2 +106470 5623 Its and 2 +106471 5623 of The Hot Chick 2 +106472 5623 are so hilarious 3 +106473 5623 so hilarious 4 +106474 5623 Schneider 's performance is so fine 4 +106475 5623 Schneider 's performance 2 +106476 5623 is so fine 3 +106477 5623 so fine 2 +106478 5623 , it 's a real shame that so much of the movie -- again , as in The Animal -- is a slapdash mess . 0 +106479 5623 it 's a real shame that so much of the movie -- again , as in The Animal -- is a slapdash mess . 0 +106480 5623 's a real shame that so much of the movie -- again , as in The Animal -- is a slapdash mess . 0 +106481 5623 's a real shame that so much of the movie -- again , as in The Animal -- is a slapdash mess 0 +106482 5623 's a real shame 1 +106483 5623 a real shame 0 +106484 5623 real shame 1 +106485 5623 that so much of the movie -- again , as in The Animal -- is a slapdash mess 1 +106486 5623 so much of the movie -- again , as in The Animal -- is a slapdash mess 1 +106487 5623 so much of the movie 2 +106488 5623 -- again , as in The Animal -- is a slapdash mess 2 +106489 5623 -- again , as in The Animal -- 2 +106490 5623 again , as in The Animal -- 2 +106491 5623 again , as in The Animal 2 +106492 5623 , as in The Animal 2 +106493 5623 as in The Animal 2 +106494 5623 in The Animal 2 +106495 5623 is a slapdash mess 0 +106496 5623 a slapdash mess 1 +106497 5623 slapdash mess 0 +106498 5624 The abiding impression , despite the mild hallucinogenic buzz , is of overwhelming waste -- the acres of haute couture ca n't quite conceal that there 's nothing resembling a spine here . 1 +106499 5624 The abiding impression , despite the mild hallucinogenic buzz , is of overwhelming waste -- the acres of haute couture ca n't quite conceal that there 's nothing resembling a spine here 2 +106500 5624 The abiding impression , despite the mild hallucinogenic buzz , is of overwhelming waste -- 0 +106501 5624 The abiding impression , despite the mild hallucinogenic buzz , is of overwhelming waste 1 +106502 5624 The abiding impression 3 +106503 5624 abiding impression 2 +106504 5624 abiding 2 +106505 5624 , despite the mild hallucinogenic buzz , is of overwhelming waste 1 +106506 5624 despite the mild hallucinogenic buzz , is of overwhelming waste 0 +106507 5624 despite the mild hallucinogenic buzz 1 +106508 5624 the mild hallucinogenic buzz 2 +106509 5624 mild hallucinogenic buzz 1 +106510 5624 hallucinogenic buzz 2 +106511 5624 hallucinogenic 2 +106512 5624 , is of overwhelming waste 1 +106513 5624 is of overwhelming waste 0 +106514 5624 of overwhelming waste 1 +106515 5624 overwhelming waste 0 +106516 5624 the acres of haute couture ca n't quite conceal that there 's nothing resembling a spine here 1 +106517 5624 the acres of haute couture 2 +106518 5624 the acres 2 +106519 5624 acres 2 +106520 5624 of haute couture 2 +106521 5624 haute couture 2 +106522 5624 haute 1 +106523 5624 couture 2 +106524 5624 ca n't quite conceal that there 's nothing resembling a spine here 1 +106525 5624 conceal that there 's nothing resembling a spine here 1 +106526 5624 conceal 2 +106527 5624 that there 's nothing resembling a spine here 1 +106528 5624 there 's nothing resembling a spine here 0 +106529 5624 's nothing resembling a spine here 1 +106530 5624 resembling a spine here 2 +106531 5624 resembling a spine 2 +106532 5624 a spine 2 +106533 5624 spine 2 +106534 5625 Arguably the best script that Besson has written in years . 4 +106535 5625 the best script that Besson has written in years . 4 +106536 5625 the best script that Besson has written in years 4 +106537 5625 the best script 3 +106538 5625 best script 3 +106539 5625 that Besson has written in years 2 +106540 5625 Besson has written in years 4 +106541 5625 has written in years 2 +106542 5625 written in years 2 +106543 5626 It 's a lovely , eerie film that casts an odd , rapt spell . 4 +106544 5626 's a lovely , eerie film that casts an odd , rapt spell . 4 +106545 5626 's a lovely , eerie film that casts an odd , rapt spell 2 +106546 5626 a lovely , eerie film that casts an odd , rapt spell 3 +106547 5626 a lovely , eerie film 3 +106548 5626 lovely , eerie film 3 +106549 5626 , eerie film 2 +106550 5626 eerie film 2 +106551 5626 that casts an odd , rapt spell 2 +106552 5626 casts an odd , rapt spell 2 +106553 5626 an odd , rapt spell 2 +106554 5626 odd , rapt spell 1 +106555 5626 , rapt spell 2 +106556 5626 rapt spell 3 +106557 5627 Unfortunately , it 's also not very good . 0 +106558 5627 , it 's also not very good . 2 +106559 5627 it 's also not very good . 1 +106560 5627 's also not very good . 1 +106561 5627 's also not very good 0 +106562 5627 's also not 2 +106563 5628 Like Kubrick , Soderbergh is n't afraid to try any genre and to do it his own way . 3 +106564 5628 Like Kubrick 2 +106565 5628 Kubrick 2 +106566 5628 , Soderbergh is n't afraid to try any genre and to do it his own way . 3 +106567 5628 Soderbergh is n't afraid to try any genre and to do it his own way . 3 +106568 5628 is n't afraid to try any genre and to do it his own way . 3 +106569 5628 is n't afraid to try any genre and to do it his own way 3 +106570 5628 afraid to try any genre and to do it his own way 2 +106571 5628 to try any genre and to do it his own way 2 +106572 5628 to try any genre and 2 +106573 5628 to try any genre 2 +106574 5628 try any genre 2 +106575 5628 any genre 2 +106576 5628 to do it his own way 2 +106577 5628 do it his own way 3 +106578 5628 his own way 2 +106579 5629 The kind of film that leaves you scratching your head in amazement over the fact that so many talented people could participate in such an ill-advised and poorly executed idea . 0 +106580 5629 The kind of film that leaves you scratching your head in amazement over the fact that so many talented people could participate in such an ill-advised and poorly 0 +106581 5629 of film that leaves you scratching your head in amazement over the fact that so many talented people could participate in such an ill-advised and poorly 1 +106582 5629 film that leaves you scratching your head in amazement over the fact that so many talented people could participate in such an ill-advised and poorly 0 +106583 5629 film that leaves you scratching your head in amazement over the fact that so many talented people could participate in such an 2 +106584 5629 that leaves you scratching your head in amazement over the fact that so many talented people could participate in such an 1 +106585 5629 leaves you scratching your head in amazement over the fact that so many talented people could participate in such an 1 +106586 5629 you scratching your head in amazement over the fact that so many talented people could participate in such an 2 +106587 5629 scratching your head in amazement over the fact that so many talented people could participate in such an 1 +106588 5629 scratching your head in amazement over the fact 1 +106589 5629 in amazement over the fact 3 +106590 5629 amazement over the fact 2 +106591 5629 amazement 3 +106592 5629 over the fact 2 +106593 5629 that so many talented people could participate in such an 2 +106594 5629 so many talented people could participate in such an 3 +106595 5629 could participate in such an 2 +106596 5629 participate in such an 2 +106597 5629 participate 2 +106598 5629 in such an 2 +106599 5629 such an 2 +106600 5629 ill-advised and poorly 1 +106601 5629 ill-advised and 1 +106602 5629 ill-advised 1 +106603 5629 executed idea . 2 +106604 5629 executed idea 2 +106605 5630 Writer-director Ritchie reduces Wertmuller 's social mores and politics to tiresome jargon . 1 +106606 5630 Writer-director Ritchie 2 +106607 5630 reduces Wertmuller 's social mores and politics to tiresome jargon . 2 +106608 5630 reduces Wertmuller 's social mores and politics to tiresome jargon 1 +106609 5630 Wertmuller 's social mores and politics to tiresome jargon 1 +106610 5630 Wertmuller 's social mores and 2 +106611 5630 Wertmuller 's social mores 2 +106612 5630 social mores 2 +106613 5630 mores 2 +106614 5630 politics to tiresome jargon 2 +106615 5630 to tiresome jargon 1 +106616 5630 tiresome jargon 1 +106617 5630 jargon 2 +106618 5631 The pleasures that it does afford may be enough to keep many moviegoers occupied amidst some of the more serious-minded concerns of other year-end movies . 3 +106619 5631 The pleasures that it does afford may be enough to keep many moviegoers 3 +106620 5631 The pleasures that it does afford 2 +106621 5631 that it does afford 3 +106622 5631 it does afford 2 +106623 5631 does afford 2 +106624 5631 afford 2 +106625 5631 may be enough to keep many moviegoers 2 +106626 5631 be enough to keep many moviegoers 2 +106627 5631 enough to keep many moviegoers 2 +106628 5631 to keep many moviegoers 2 +106629 5631 keep many moviegoers 2 +106630 5631 many moviegoers 3 +106631 5631 occupied amidst some of the more serious-minded concerns of other year-end movies . 2 +106632 5631 occupied amidst some of the more serious-minded concerns of other year-end movies 2 +106633 5631 occupied amidst 2 +106634 5631 some of the more serious-minded concerns of other year-end movies 2 +106635 5631 of the more serious-minded concerns of other year-end movies 3 +106636 5631 the more serious-minded concerns of other year-end movies 3 +106637 5631 the more serious-minded concerns 3 +106638 5631 more serious-minded concerns 2 +106639 5631 more serious-minded 2 +106640 5631 concerns 2 +106641 5631 of other year-end movies 2 +106642 5631 other year-end movies 2 +106643 5631 year-end movies 2 +106644 5631 year-end 2 +106645 5632 Dull and mechanical , kinda like a very goofy museum exhibit 2 +106646 5632 Dull and mechanical , kinda 1 +106647 5632 Dull and mechanical , 0 +106648 5632 Dull and mechanical 1 +106649 5632 like a very goofy museum exhibit 1 +106650 5632 a very goofy museum exhibit 2 +106651 5632 very goofy museum exhibit 3 +106652 5632 very goofy 2 +106653 5632 museum exhibit 2 +106654 5632 museum 2 +106655 5633 You know that ten bucks you 'd spend on a ticket ? 2 +106656 5633 know that ten bucks you 'd spend on a ticket ? 1 +106657 5633 know that ten bucks you 'd spend on a ticket 2 +106658 5633 that ten bucks you 'd spend on a ticket 2 +106659 5633 that ten bucks 2 +106660 5633 ten bucks 2 +106661 5633 you 'd spend on a ticket 2 +106662 5633 'd spend on a ticket 2 +106663 5633 spend on a ticket 1 +106664 5633 on a ticket 2 +106665 5634 It puts Washington , as honest working man John Q. Archibald , on a pedestal , then keeps lifting the pedestal higher . 3 +106666 5634 puts Washington , as honest working man John Q. Archibald , on a pedestal , then keeps lifting the pedestal higher . 2 +106667 5634 puts Washington , as honest working man John Q. Archibald , on a pedestal , then keeps lifting the pedestal higher 3 +106668 5634 Washington , as honest working man John Q. Archibald , on a pedestal , then keeps lifting the pedestal higher 2 +106669 5634 Washington , 2 +106670 5634 as honest working man John Q. Archibald , on a pedestal , then keeps lifting the pedestal higher 2 +106671 5634 honest working man John Q. Archibald , on a pedestal , then keeps lifting the pedestal higher 4 +106672 5634 honest working man John Q. Archibald , on a pedestal , 2 +106673 5634 honest working man John Q. Archibald , on a pedestal 2 +106674 5634 honest working man John Q. Archibald , 3 +106675 5634 honest working man John Q. Archibald 2 +106676 5634 working man John Q. Archibald 2 +106677 5634 man John Q. Archibald 2 +106678 5634 John Q. Archibald 2 +106679 5634 Q. Archibald 2 +106680 5634 Q. 2 +106681 5634 Archibald 2 +106682 5634 on a pedestal 3 +106683 5634 a pedestal 2 +106684 5634 pedestal 2 +106685 5634 then keeps lifting the pedestal higher 2 +106686 5634 keeps lifting the pedestal higher 3 +106687 5634 lifting the pedestal higher 3 +106688 5634 lifting 2 +106689 5634 the pedestal higher 2 +106690 5634 pedestal higher 2 +106691 5635 Content merely to lionize its title character and exploit his anger - all for easy sanctimony , formulaic thrills and a ham-fisted sermon on the need for national health insurance . 1 +106692 5635 Content merely to lionize its title character and exploit his anger - all for easy sanctimony , formulaic thrills and a ham-fisted sermon on the need for national health insurance 2 +106693 5635 Content merely to lionize its title character and exploit his anger - 1 +106694 5635 Content merely to lionize its title character and exploit his anger 2 +106695 5635 Content merely 3 +106696 5635 to lionize its title character and exploit his anger 2 +106697 5635 lionize its title character and exploit his anger 1 +106698 5635 lionize its title character and 2 +106699 5635 lionize its title character 2 +106700 5635 lionize 2 +106701 5635 exploit his anger 3 +106702 5635 his anger 2 +106703 5635 all for easy sanctimony , formulaic thrills and a ham-fisted sermon on the need for national health insurance 0 +106704 5635 all for easy sanctimony , formulaic thrills and a ham-fisted sermon 1 +106705 5635 for easy sanctimony , formulaic thrills and a ham-fisted sermon 2 +106706 5635 easy sanctimony , formulaic thrills and a ham-fisted sermon 2 +106707 5635 easy sanctimony , formulaic thrills and 1 +106708 5635 easy sanctimony , formulaic thrills 2 +106709 5635 easy sanctimony , 2 +106710 5635 easy sanctimony 1 +106711 5635 formulaic thrills 2 +106712 5635 a ham-fisted sermon 1 +106713 5635 ham-fisted sermon 2 +106714 5635 on the need for national health insurance 2 +106715 5635 the need for national health insurance 3 +106716 5635 the need 2 +106717 5635 for national health insurance 2 +106718 5635 national health insurance 2 +106719 5636 A realistically terrifying movie that puts another notch in the belt of the long list of renegade-cop tales . 3 +106720 5636 A realistically terrifying movie that puts another notch in the belt of the long list of renegade-cop tales 3 +106721 5636 A realistically terrifying movie that puts another notch 3 +106722 5636 A realistically terrifying movie 3 +106723 5636 realistically terrifying movie 3 +106724 5636 terrifying movie 2 +106725 5636 that puts another notch 1 +106726 5636 that puts 2 +106727 5636 another notch 2 +106728 5636 notch 2 +106729 5636 in the belt of the long list of renegade-cop tales 2 +106730 5636 the belt of the long list of renegade-cop tales 2 +106731 5636 the belt 2 +106732 5636 of the long list of renegade-cop tales 1 +106733 5636 the long list of renegade-cop tales 1 +106734 5636 the long list 2 +106735 5636 long list 2 +106736 5636 of renegade-cop tales 3 +106737 5636 renegade-cop tales 2 +106738 5636 renegade-cop 2 +106739 5637 That Storytelling has value can not be denied . 4 +106740 5637 That Storytelling 2 +106741 5637 has value can not be denied . 3 +106742 5637 has value can not be denied 3 +106743 5637 value can not be denied 3 +106744 5638 The main characters are simply named The Husband , The Wife and The Kidnapper , emphasizing the disappointingly generic nature of the entire effort . 0 +106745 5638 are simply named The Husband , The Wife and The Kidnapper , emphasizing the disappointingly generic nature of the entire effort . 2 +106746 5638 are simply named The Husband , The Wife and The Kidnapper , emphasizing the disappointingly generic nature of the entire effort 1 +106747 5638 named The Husband , The Wife and The Kidnapper , emphasizing the disappointingly generic nature of the entire effort 0 +106748 5638 named The Husband , The Wife and The Kidnapper , 2 +106749 5638 named The Husband , The Wife and The Kidnapper 2 +106750 5638 The Husband , The Wife and The Kidnapper 2 +106751 5638 The Husband , The Wife and 2 +106752 5638 The Husband , The Wife 2 +106753 5638 The Husband , 2 +106754 5638 The Husband 2 +106755 5638 The Kidnapper 2 +106756 5638 Kidnapper 2 +106757 5638 emphasizing the disappointingly generic nature of the entire effort 1 +106758 5638 the disappointingly generic nature of the entire effort 1 +106759 5638 the disappointingly generic nature 1 +106760 5638 disappointingly generic nature 1 +106761 5638 of the entire effort 2 +106762 5638 the entire effort 2 +106763 5638 entire effort 2 +106764 5639 Brilliantly written and well-acted , Yellow Asphalt is an uncompromising film . 4 +106765 5639 Brilliantly written and well-acted 4 +106766 5639 Brilliantly written and 4 +106767 5639 Brilliantly written 4 +106768 5639 , Yellow Asphalt is an uncompromising film . 3 +106769 5639 Yellow Asphalt is an uncompromising film . 4 +106770 5639 Yellow Asphalt 2 +106771 5639 is an uncompromising film . 3 +106772 5639 is an uncompromising film 3 +106773 5639 an uncompromising film 3 +106774 5639 uncompromising film 3 +106775 5640 Miller tells this very compelling tale with little fuss or noise , expertly plucking tension from quiet . 3 +106776 5640 tells this very compelling tale with little fuss or noise , expertly plucking tension from quiet . 4 +106777 5640 tells this very compelling tale with little fuss or noise , expertly plucking tension from quiet 3 +106778 5640 tells this very compelling tale with little fuss or noise , 3 +106779 5640 tells this very compelling tale with little fuss or noise 3 +106780 5640 tells this very compelling tale 3 +106781 5640 this very compelling tale 3 +106782 5640 very compelling tale 3 +106783 5640 with little fuss or noise 2 +106784 5640 little fuss or noise 1 +106785 5640 fuss or noise 1 +106786 5640 fuss or 2 +106787 5640 expertly plucking tension from quiet 3 +106788 5640 expertly 3 +106789 5640 plucking tension from quiet 3 +106790 5640 plucking tension 2 +106791 5640 plucking 2 +106792 5640 from quiet 2 +106793 5641 borrows a bit from the classics `` Wait Until Dark '' and `` Extremities '' ... But in terms of its style , the movie is in a class by itself . 4 +106794 5641 borrows a bit from the classics `` Wait Until Dark '' and `` Extremities '' ... But in terms of its style , the movie is in a class by itself 4 +106795 5641 borrows a bit from the classics `` Wait Until Dark '' and `` Extremities '' ... 2 +106796 5641 borrows a bit from the classics `` Wait Until Dark '' and `` Extremities '' 2 +106797 5641 a bit from the classics `` Wait Until Dark '' and `` Extremities '' 2 +106798 5641 a bit from the classics `` Wait Until Dark '' and 2 +106799 5641 a bit from the classics `` Wait Until Dark '' 2 +106800 5641 bit from the classics `` Wait Until Dark '' 2 +106801 5641 bit from the classics 2 +106802 5641 from the classics 3 +106803 5641 the classics 3 +106804 5641 `` Wait Until Dark '' 2 +106805 5641 Wait Until Dark '' 2 +106806 5641 Wait Until Dark 2 +106807 5641 Until Dark 2 +106808 5641 `` Extremities '' 2 +106809 5641 Extremities '' 2 +106810 5641 Extremities 2 +106811 5641 But in terms of its style , the movie is in a class by itself 4 +106812 5641 in terms of its style , the movie is in a class by itself 4 +106813 5641 in terms of its style 2 +106814 5641 terms of its style 2 +106815 5641 of its style 2 +106816 5641 its style 2 +106817 5641 , the movie is in a class by itself 3 +106818 5641 the movie is in a class by itself 4 +106819 5641 is in a class by itself 3 +106820 5641 in a class by itself 3 +106821 5641 a class by itself 4 +106822 5642 Almost everything about the film is unsettling , from the preposterous hairpiece worn by Lai 's villainous father to the endless action sequences . 2 +106823 5642 Almost everything about the film 2 +106824 5642 Almost everything 2 +106825 5642 is unsettling , from the preposterous hairpiece worn by Lai 's villainous father to the endless action sequences . 2 +106826 5642 is unsettling , from the preposterous hairpiece worn by Lai 's villainous father to the endless action sequences 0 +106827 5642 is unsettling , 2 +106828 5642 is unsettling 1 +106829 5642 from the preposterous hairpiece worn by Lai 's villainous father to the endless action sequences 1 +106830 5642 the preposterous hairpiece worn by Lai 's villainous father to the endless action sequences 1 +106831 5642 the preposterous hairpiece 1 +106832 5642 preposterous hairpiece 1 +106833 5642 hairpiece 2 +106834 5642 worn by Lai 's villainous father to the endless action sequences 1 +106835 5642 worn by Lai 's villainous father 2 +106836 5642 by Lai 's villainous father 2 +106837 5642 Lai 's villainous father 2 +106838 5642 Lai 's 2 +106839 5642 Lai 2 +106840 5642 villainous father 1 +106841 5642 to the endless action sequences 1 +106842 5642 the endless action sequences 0 +106843 5642 endless action sequences 2 +106844 5643 An older cad instructs a younger lad in Zen and the art of getting laid in this prickly indie comedy of manners and misanthropy . 3 +106845 5643 An older cad 2 +106846 5643 older cad 2 +106847 5643 instructs a younger lad in Zen and the art of getting laid in this prickly indie comedy of manners and misanthropy . 2 +106848 5643 instructs a younger lad in Zen and the art of getting laid in this prickly indie comedy of manners and misanthropy 3 +106849 5643 instructs 2 +106850 5643 a younger lad in Zen and the art of getting laid in this prickly indie comedy of manners and misanthropy 1 +106851 5643 a younger lad in Zen and 2 +106852 5643 a younger lad in Zen 2 +106853 5643 a younger lad 3 +106854 5643 younger lad 3 +106855 5643 lad 2 +106856 5643 in Zen 2 +106857 5643 Zen 2 +106858 5643 the art of getting laid in this prickly indie comedy of manners and misanthropy 3 +106859 5643 of getting laid in this prickly indie comedy of manners and misanthropy 2 +106860 5643 getting laid in this prickly indie comedy of manners and misanthropy 2 +106861 5643 laid in this prickly indie comedy of manners and misanthropy 2 +106862 5643 in this prickly indie comedy of manners and misanthropy 2 +106863 5643 this prickly indie comedy of manners and misanthropy 3 +106864 5643 this prickly indie comedy 2 +106865 5643 prickly indie comedy 1 +106866 5643 prickly 1 +106867 5643 indie comedy 3 +106868 5643 of manners and misanthropy 2 +106869 5643 manners and misanthropy 2 +106870 5643 manners and 2 +106871 5643 misanthropy 1 +106872 5644 Often demented in a good way , but it is an uneven film for the most part . 1 +106873 5644 Often demented in a good way , but it is an uneven film for the most part 1 +106874 5644 Often demented in a good way , but 2 +106875 5644 Often demented in a good way , 3 +106876 5644 Often demented in a good way 2 +106877 5644 demented in a good way 3 +106878 5644 it is an uneven film for the most part 1 +106879 5644 is an uneven film for the most part 1 +106880 5644 an uneven film for the most part 1 +106881 5644 an uneven film 2 +106882 5644 uneven film 1 +106883 5645 While the ensemble player who gained notice in Guy Ritchie 's Lock , Stock and Two Smoking Barrels and Snatch has the bod , he 's unlikely to become a household name on the basis of his first starring vehicle . 1 +106884 5645 While the ensemble player who gained notice in Guy Ritchie 's Lock , Stock and Two Smoking Barrels and Snatch has the bod 2 +106885 5645 the ensemble player who gained notice in Guy Ritchie 's Lock , Stock and Two Smoking Barrels and Snatch has the bod 2 +106886 5645 the ensemble player who gained notice in Guy Ritchie 's Lock , Stock and Two Smoking Barrels and Snatch 2 +106887 5645 the ensemble player 2 +106888 5645 ensemble player 2 +106889 5645 who gained notice in Guy Ritchie 's Lock , Stock and Two Smoking Barrels and Snatch 2 +106890 5645 gained notice in Guy Ritchie 's Lock , Stock and Two Smoking Barrels and Snatch 2 +106891 5645 gained notice 2 +106892 5645 in Guy Ritchie 's Lock , Stock and Two Smoking Barrels and Snatch 2 +106893 5645 Guy Ritchie 's Lock , Stock and Two Smoking Barrels and Snatch 2 +106894 5645 Guy Ritchie 's Lock , 3 +106895 5645 Guy Ritchie 's Lock 2 +106896 5645 Guy Ritchie 's 2 +106897 5645 Stock and Two Smoking Barrels and Snatch 2 +106898 5645 Stock and Two Smoking Barrels and 2 +106899 5645 Stock and Two Smoking Barrels 2 +106900 5645 and Two Smoking Barrels 1 +106901 5645 has the bod 2 +106902 5645 the bod 2 +106903 5645 bod 2 +106904 5645 , he 's unlikely to become a household name on the basis of his first starring vehicle . 1 +106905 5645 he 's unlikely to become a household name on the basis of his first starring vehicle . 1 +106906 5645 's unlikely to become a household name on the basis of his first starring vehicle . 1 +106907 5645 's unlikely to become a household name on the basis of his first starring vehicle 1 +106908 5645 unlikely to become a household name on the basis of his first starring vehicle 1 +106909 5645 to become a household name on the basis of his first starring vehicle 3 +106910 5645 become a household name on the basis of his first starring vehicle 3 +106911 5645 become a household name 3 +106912 5645 a household name 2 +106913 5645 household name 3 +106914 5645 household 2 +106915 5645 on the basis of his first starring vehicle 2 +106916 5645 the basis of his first starring vehicle 2 +106917 5645 of his first starring vehicle 2 +106918 5645 his first starring vehicle 2 +106919 5645 first starring vehicle 2 +106920 5645 starring vehicle 2 +106921 5646 The advantage of a postapocalyptic setting is that it can be made on the cheap . 1 +106922 5646 The advantage of a postapocalyptic setting 2 +106923 5646 The advantage 2 +106924 5646 of a postapocalyptic setting 2 +106925 5646 a postapocalyptic setting 2 +106926 5646 postapocalyptic setting 2 +106927 5646 postapocalyptic 2 +106928 5646 is that it can be made on the cheap . 2 +106929 5646 is that it can be made on the cheap 2 +106930 5646 that it can be made on the cheap 2 +106931 5646 it can be made on the cheap 2 +106932 5646 can be made on the cheap 1 +106933 5646 be made on the cheap 0 +106934 5646 made on the cheap 1 +106935 5646 on the cheap 2 +106936 5646 the cheap 1 +106937 5647 meanders between its powerful moments . 2 +106938 5647 meanders between its powerful moments 2 +106939 5647 meanders 2 +106940 5647 between its powerful moments 3 +106941 5647 its powerful moments 3 +106942 5647 powerful moments 3 +106943 5648 As commander-in-chief of this film , Bigelow demonstrates a breadth of vision and an attention to detail that propels her into the upper echelons of the directing world . 4 +106944 5648 As commander-in-chief of this film 2 +106945 5648 commander-in-chief of this film 2 +106946 5648 commander-in-chief 3 +106947 5648 , Bigelow demonstrates a breadth of vision and an attention to detail that propels her into the upper echelons of the directing world . 3 +106948 5648 Bigelow demonstrates a breadth of vision and an attention to detail that propels her into the upper echelons of the directing world . 3 +106949 5648 demonstrates a breadth of vision and an attention to detail that propels her into the upper echelons of the directing world . 3 +106950 5648 demonstrates a breadth of vision and an attention to detail that propels her into the upper echelons of the directing world 4 +106951 5648 a breadth of vision and an attention to detail that propels her into the upper echelons of the directing world 3 +106952 5648 a breadth of vision and 3 +106953 5648 a breadth of vision 3 +106954 5648 a breadth 2 +106955 5648 of vision 2 +106956 5648 an attention to detail that propels her into the upper echelons of the directing world 3 +106957 5648 an attention to detail 3 +106958 5648 an attention 3 +106959 5648 to detail 2 +106960 5648 that propels her into the upper echelons of the directing world 4 +106961 5648 propels her into the upper echelons of the directing world 4 +106962 5648 propels her 2 +106963 5648 propels 3 +106964 5648 into the upper echelons of the directing world 3 +106965 5648 the upper echelons of the directing world 3 +106966 5648 the upper echelons 3 +106967 5648 upper echelons 2 +106968 5648 echelons 2 +106969 5648 of the directing world 2 +106970 5648 the directing world 2 +106971 5648 directing world 2 +106972 5649 It may not be a great piece of filmmaking , but its power comes from its soul 's - eye view of how well-meaning patronizing masked a social injustice , at least as represented by this case . 3 +106973 5649 It may not be a great piece of filmmaking , but its power comes from its soul 's - eye view of how well-meaning patronizing masked a social injustice , at least as represented by this case 1 +106974 5649 It may not be a great piece of filmmaking , but 2 +106975 5649 It may not be a great piece of filmmaking , 0 +106976 5649 It may not be a great piece of filmmaking 1 +106977 5649 may not be a great piece of filmmaking 1 +106978 5649 be a great piece of filmmaking 4 +106979 5649 a great piece of filmmaking 4 +106980 5649 a great piece 4 +106981 5649 great piece 3 +106982 5649 its power comes from its soul 's - eye view of how well-meaning patronizing masked a social injustice , at least as represented by this case 3 +106983 5649 its power 2 +106984 5649 comes from its soul 's - eye view of how well-meaning patronizing masked a social injustice , at least as represented by this case 3 +106985 5649 from its soul 's - eye view of how well-meaning patronizing masked a social injustice , at least as represented by this case 2 +106986 5649 its soul 's - eye view of how well-meaning patronizing masked a social injustice , at least as represented by this case 3 +106987 5649 its soul 's - eye view 2 +106988 5649 its soul 's 2 +106989 5649 soul 's 2 +106990 5649 - eye view 2 +106991 5649 eye view 2 +106992 5649 of how well-meaning patronizing masked a social injustice , at least as represented by this case 1 +106993 5649 how well-meaning patronizing masked a social injustice , at least as represented by this case 2 +106994 5649 well-meaning patronizing masked a social injustice , at least as represented by this case 2 +106995 5649 well-meaning patronizing 2 +106996 5649 masked a social injustice , at least as represented by this case 2 +106997 5649 masked a social injustice , at least as represented 2 +106998 5649 masked 2 +106999 5649 a social injustice , at least as represented 2 +107000 5649 a social injustice , at least 1 +107001 5649 a social injustice , 2 +107002 5649 a social injustice 2 +107003 5649 social injustice 1 +107004 5649 injustice 2 +107005 5649 as represented 2 +107006 5649 by this case 2 +107007 5650 The entire cast is first-rate , especially Sorvino . 4 +107008 5650 is first-rate , especially Sorvino . 3 +107009 5650 is first-rate , especially Sorvino 4 +107010 5650 first-rate , especially Sorvino 4 +107011 5650 , especially Sorvino 2 +107012 5650 especially Sorvino 2 +107013 5651 Walter Hill 's Undisputed is like a 1940s Warner Bros. . 3 +107014 5651 Walter Hill 's Undisputed 2 +107015 5651 Walter Hill 's 2 +107016 5651 is like a 1940s Warner Bros. . 2 +107017 5651 is like a 1940s Warner Bros. 2 +107018 5651 like a 1940s Warner Bros. 2 +107019 5651 a 1940s Warner Bros. 2 +107020 5651 1940s Warner Bros. 2 +107021 5651 Warner Bros. 2 +107022 5652 ... could easily be called the best Korean film of 2002 . 4 +107023 5652 could easily be called the best Korean film of 2002 . 4 +107024 5652 could easily be called the best Korean film of 2002 4 +107025 5652 be called the best Korean film of 2002 4 +107026 5652 called the best Korean film of 2002 3 +107027 5652 the best Korean film of 2002 4 +107028 5652 the best Korean film 4 +107029 5652 best Korean film 4 +107030 5652 best Korean 2 +107031 5652 of 2002 2 +107032 5653 A predictable , manipulative stinker . 0 +107033 5653 A predictable , manipulative stinker 1 +107034 5653 predictable , manipulative stinker 1 +107035 5653 predictable , manipulative 2 +107036 5653 , manipulative 1 +107037 5654 The plot plummets into a comedy graveyard before Janice comes racing to the rescue in the final reel . 2 +107038 5654 plummets into a comedy graveyard before Janice comes racing to the rescue in the final reel . 3 +107039 5654 plummets into a comedy graveyard before Janice comes racing to the rescue in the final reel 3 +107040 5654 plummets into a comedy graveyard 0 +107041 5654 into a comedy graveyard 1 +107042 5654 a comedy graveyard 2 +107043 5654 comedy graveyard 2 +107044 5654 graveyard 2 +107045 5654 before Janice comes racing to the rescue in the final reel 3 +107046 5654 Janice comes racing to the rescue in the final reel 3 +107047 5654 comes racing to the rescue in the final reel 2 +107048 5654 racing to the rescue in the final reel 3 +107049 5654 to the rescue in the final reel 3 +107050 5654 the rescue in the final reel 2 +107051 5654 the rescue 2 +107052 5654 in the final reel 2 +107053 5654 the final reel 2 +107054 5654 final reel 2 +107055 5655 ` Alice 's adventure through the looking glass and into zombie-land ' is filled with strange and wonderful creatures . 3 +107056 5655 Alice 's adventure through the looking glass and into zombie-land ' is filled with strange and wonderful creatures . 3 +107057 5655 Alice 's adventure through the looking glass and into zombie-land ' 2 +107058 5655 Alice 's adventure 2 +107059 5655 Alice 's 2 +107060 5655 through the looking glass and into zombie-land ' 2 +107061 5655 through the looking glass and 2 +107062 5655 through the looking glass 2 +107063 5655 the looking glass 2 +107064 5655 looking glass 2 +107065 5655 into zombie-land ' 2 +107066 5655 zombie-land ' 2 +107067 5655 zombie-land 2 +107068 5655 is filled with strange and wonderful creatures . 3 +107069 5655 is filled with strange and wonderful creatures 3 +107070 5655 filled with strange and wonderful creatures 3 +107071 5655 with strange and wonderful creatures 3 +107072 5655 strange and wonderful creatures 3 +107073 5655 and wonderful creatures 3 +107074 5655 wonderful creatures 4 +107075 5656 Part of the film 's cheeky charm comes from its vintage schmaltz . 4 +107076 5656 Part of the film 's cheeky charm 4 +107077 5656 of the film 's cheeky charm 3 +107078 5656 the film 's cheeky charm 3 +107079 5656 cheeky charm 2 +107080 5656 comes from its vintage schmaltz . 2 +107081 5656 comes from its vintage schmaltz 2 +107082 5656 from its vintage schmaltz 2 +107083 5656 its vintage schmaltz 2 +107084 5656 vintage schmaltz 2 +107085 5657 Yes , it 's as good as you remember . 3 +107086 5657 , it 's as good as you remember . 3 +107087 5657 it 's as good as you remember . 4 +107088 5657 's as good as you remember . 3 +107089 5657 's as good as you remember 3 +107090 5657 's as good 3 +107091 5657 as you remember 2 +107092 5657 you remember 2 +107093 5658 As the Mediterranean sparkles , ` Swept Away ' sinks . 1 +107094 5658 As the Mediterranean sparkles 3 +107095 5658 the Mediterranean sparkles 3 +107096 5658 Mediterranean sparkles 3 +107097 5658 Mediterranean 2 +107098 5658 sparkles 4 +107099 5658 , ` Swept Away ' sinks . 1 +107100 5658 ` Swept Away ' sinks . 0 +107101 5658 ` Swept Away ' 3 +107102 5658 Swept Away ' 3 +107103 5658 Away ' 2 +107104 5658 sinks . 1 +107105 5659 This painfully unfunny farce traffics in tired stereotypes and encumbers itself with complications ... that have no bearing on the story . 0 +107106 5659 This painfully unfunny farce traffics in tired stereotypes and encumbers itself with complications ... that have no bearing on the story 1 +107107 5659 This painfully unfunny farce traffics in tired stereotypes and encumbers itself with complications ... 0 +107108 5659 This painfully unfunny farce traffics in tired stereotypes and encumbers itself with complications 0 +107109 5659 This painfully unfunny farce 0 +107110 5659 painfully unfunny farce 0 +107111 5659 painfully unfunny 0 +107112 5659 traffics in tired stereotypes and encumbers itself with complications 1 +107113 5659 traffics in tired stereotypes and 2 +107114 5659 traffics in tired stereotypes 1 +107115 5659 traffics 2 +107116 5659 in tired stereotypes 1 +107117 5659 tired stereotypes 1 +107118 5659 encumbers itself with complications 1 +107119 5659 encumbers itself 1 +107120 5659 encumbers 2 +107121 5659 with complications 3 +107122 5659 that have no bearing on the story 2 +107123 5659 have no bearing on the story 1 +107124 5659 no bearing on the story 1 +107125 5659 no bearing 2 +107126 5659 on the story 2 +107127 5660 ... once the true impact of the day unfolds , the power of this movie is undeniable . 4 +107128 5660 once the true impact of the day unfolds , the power of this movie is undeniable . 4 +107129 5660 once the true impact of the day unfolds 2 +107130 5660 the true impact of the day unfolds 2 +107131 5660 the true impact of the day 3 +107132 5660 the true impact 3 +107133 5660 true impact 3 +107134 5660 of the day 2 +107135 5660 , the power of this movie is undeniable . 3 +107136 5660 the power of this movie is undeniable . 4 +107137 5660 the power of this movie 3 +107138 5661 An interesting psychological game of cat-and-mouse , three-dimensional characters and believable performances all add up to a satisfying crime drama . 4 +107139 5661 An interesting psychological game of cat-and-mouse , three-dimensional characters and believable performances 3 +107140 5661 An interesting psychological game 3 +107141 5661 interesting psychological game 3 +107142 5661 psychological game 2 +107143 5661 of cat-and-mouse , three-dimensional characters and believable performances 3 +107144 5661 cat-and-mouse , three-dimensional characters and believable performances 4 +107145 5661 cat-and-mouse , three-dimensional characters and 3 +107146 5661 cat-and-mouse , three-dimensional characters 2 +107147 5661 , three-dimensional characters 3 +107148 5661 three-dimensional characters 3 +107149 5661 believable performances 3 +107150 5661 all add up to a satisfying crime drama . 4 +107151 5661 add up to a satisfying crime drama . 4 +107152 5661 add up to a satisfying crime drama 4 +107153 5661 to a satisfying crime drama 3 +107154 5661 a satisfying crime drama 4 +107155 5661 satisfying crime drama 3 +107156 5662 Nicole Kidman makes it a party worth attending . 4 +107157 5662 makes it a party worth attending . 3 +107158 5662 makes it a party worth attending 3 +107159 5662 it a party worth attending 3 +107160 5662 a party worth attending 4 +107161 5662 a party worth 2 +107162 5662 attending 2 +107163 5663 The Balkans provide the obstacle course for the love of a good woman . 2 +107164 5663 The Balkans 2 +107165 5663 Balkans 2 +107166 5663 provide the obstacle course for the love of a good woman . 2 +107167 5663 provide the obstacle course for the love of a good woman 3 +107168 5663 the obstacle course for the love of a good woman 2 +107169 5663 the obstacle course 2 +107170 5663 obstacle course 2 +107171 5663 obstacle 2 +107172 5663 for the love of a good woman 2 +107173 5663 the love of a good woman 2 +107174 5663 of a good woman 2 +107175 5663 a good woman 2 +107176 5663 good woman 3 +107177 5664 Its story about a young Chinese woman , Ah Na , who has come to New York City to replace past tragedy with the American Dream is one that any art-house moviegoer is likely to find compelling . 3 +107178 5664 Its story about a young Chinese woman , Ah Na , who has come to New York City to replace past tragedy with the American Dream 3 +107179 5664 about a young Chinese woman , Ah Na , who has come to New York City to replace past tragedy with the American Dream 2 +107180 5664 a young Chinese woman , Ah Na , who has come to New York City to replace past tragedy with the American Dream 2 +107181 5664 a young Chinese woman , Ah Na , 2 +107182 5664 a young Chinese woman , Ah Na 2 +107183 5664 a young Chinese woman , 2 +107184 5664 a young Chinese woman 2 +107185 5664 young Chinese woman 2 +107186 5664 Chinese woman 2 +107187 5664 Ah Na 2 +107188 5664 Na 2 +107189 5664 who has come to New York City to replace past tragedy with the American Dream 3 +107190 5664 has come to New York City to replace past tragedy with the American Dream 3 +107191 5664 come to New York City to replace past tragedy with the American Dream 2 +107192 5664 come to New York City 2 +107193 5664 to New York City 2 +107194 5664 to replace past tragedy with the American Dream 2 +107195 5664 replace past tragedy with the American Dream 2 +107196 5664 replace past tragedy 2 +107197 5664 replace 2 +107198 5664 past tragedy 2 +107199 5664 with the American Dream 3 +107200 5664 the American Dream 2 +107201 5664 American Dream 2 +107202 5664 is one that any art-house moviegoer is likely to find compelling . 3 +107203 5664 is one that any art-house moviegoer is likely to find compelling 3 +107204 5664 that any art-house moviegoer is likely to find compelling 4 +107205 5664 any art-house moviegoer is likely to find compelling 3 +107206 5664 any art-house moviegoer 3 +107207 5664 art-house moviegoer 2 +107208 5664 is likely to find compelling 3 +107209 5664 likely to find compelling 3 +107210 5664 to find compelling 2 +107211 5664 find compelling 3 +107212 5665 The Ring is worth a look , if you do n't demand much more than a few cheap thrills from your Halloween entertainment . 2 +107213 5665 is worth a look , if you do n't demand much more than a few cheap thrills from your Halloween entertainment . 2 +107214 5665 is worth a look , if you do n't demand much more than a few cheap thrills from your Halloween entertainment 3 +107215 5665 is worth a look , 4 +107216 5665 is worth a look 3 +107217 5665 if you do n't demand much more than a few cheap thrills from your Halloween entertainment 1 +107218 5665 you do n't demand much more than a few cheap thrills from your Halloween entertainment 2 +107219 5665 do n't demand much more than a few cheap thrills from your Halloween entertainment 1 +107220 5665 demand much more than a few cheap thrills from your Halloween entertainment 2 +107221 5665 much more than a few cheap thrills from your Halloween entertainment 2 +107222 5665 than a few cheap thrills from your Halloween entertainment 1 +107223 5665 a few cheap thrills from your Halloween entertainment 2 +107224 5665 a few cheap 1 +107225 5665 few cheap 2 +107226 5665 thrills from your Halloween entertainment 3 +107227 5665 from your Halloween entertainment 2 +107228 5665 your Halloween entertainment 3 +107229 5665 Halloween entertainment 2 +107230 5666 Make like the title and dodge this one . 0 +107231 5666 Make like the title and dodge this one 1 +107232 5666 Make like the title and 2 +107233 5666 Make like the title 2 +107234 5666 like the title 2 +107235 5666 dodge this one 1 +107236 5666 dodge 3 +107237 5667 Its message has merit and , in the hands of a brutally honest individual like Prophet Jack , might have made a point or two regarding life . 1 +107238 5667 has merit and , in the hands of a brutally honest individual like Prophet Jack , might have made a point or two regarding life . 2 +107239 5667 has merit and , in the hands of a brutally honest individual like Prophet Jack , might have made a point or two regarding life 3 +107240 5667 has merit and 3 +107241 5667 has merit 3 +107242 5667 , in the hands of a brutally honest individual like Prophet Jack , might have made a point or two regarding life 1 +107243 5667 , in the hands of a brutally honest individual like Prophet Jack , 3 +107244 5667 in the hands of a brutally honest individual like Prophet Jack , 2 +107245 5667 in the hands of a brutally honest individual like Prophet Jack 3 +107246 5667 the hands of a brutally honest individual like Prophet Jack 2 +107247 5667 of a brutally honest individual like Prophet Jack 3 +107248 5667 a brutally honest individual like Prophet Jack 2 +107249 5667 a brutally honest individual 2 +107250 5667 brutally honest individual 3 +107251 5667 like Prophet Jack 2 +107252 5667 Prophet Jack 2 +107253 5667 Prophet 2 +107254 5667 might have made a point or two regarding life 2 +107255 5667 have made a point or two regarding life 2 +107256 5667 made a point or two regarding life 3 +107257 5667 a point or two regarding life 2 +107258 5667 a point or 2 +107259 5667 two regarding life 2 +107260 5667 regarding life 2 +107261 5668 Adaptation is intricately constructed and in a strange way nails all of Orlean 's themes without being a true adaptation of her book . 3 +107262 5668 Adaptation is intricately constructed and in a strange way nails all of Orlean 's themes without being a true adaptation of her book 3 +107263 5668 Adaptation is intricately constructed and 3 +107264 5668 Adaptation is intricately constructed 3 +107265 5668 is intricately constructed 2 +107266 5668 intricately constructed 3 +107267 5668 intricately 3 +107268 5668 in a strange way nails all of Orlean 's themes without being a true adaptation of her book 2 +107269 5668 nails all of Orlean 's themes without being a true adaptation of her book 3 +107270 5668 nails all of Orlean 's themes 3 +107271 5668 all of Orlean 's themes 2 +107272 5668 of Orlean 's themes 2 +107273 5668 Orlean 's themes 2 +107274 5668 Orlean 's 2 +107275 5668 Orlean 2 +107276 5668 without being a true adaptation of her book 2 +107277 5668 being a true adaptation of her book 3 +107278 5668 a true adaptation of her book 3 +107279 5668 a true adaptation 3 +107280 5668 true adaptation 2 +107281 5668 of her book 2 +107282 5668 her book 2 +107283 5669 It 's a solid movie about people whose lives are anything but . 3 +107284 5669 's a solid movie about people whose lives are anything but . 3 +107285 5669 's a solid movie about people whose lives are anything but 3 +107286 5669 a solid movie about people whose lives are anything but 3 +107287 5669 a solid movie 4 +107288 5669 solid movie 4 +107289 5669 about people whose lives are anything but 2 +107290 5669 people whose lives are anything but 2 +107291 5669 whose lives are anything but 2 +107292 5669 are anything but 2 +107293 5670 Nicks sustains the level of exaggerated , stylized humor throughout by taking your expectations and twisting them just a bit . 3 +107294 5670 sustains the level of exaggerated , stylized humor throughout by taking your expectations and twisting them just a bit . 3 +107295 5670 sustains the level of exaggerated , stylized humor throughout by taking your expectations and twisting them just a bit 3 +107296 5670 sustains the level of exaggerated , stylized humor throughout 2 +107297 5670 the level of exaggerated , stylized humor throughout 2 +107298 5670 of exaggerated , stylized humor throughout 2 +107299 5670 exaggerated , stylized humor throughout 2 +107300 5670 , stylized humor throughout 4 +107301 5670 stylized humor throughout 3 +107302 5670 humor throughout 4 +107303 5670 by taking your expectations and twisting them just a bit 3 +107304 5670 taking your expectations and twisting them just a bit 3 +107305 5670 taking your expectations and 2 +107306 5670 taking your expectations 2 +107307 5670 your expectations 2 +107308 5670 twisting them just a bit 2 +107309 5670 twisting them 2 +107310 5670 just a bit 2 +107311 5671 The problem with `` XXX '' is that its own action is n't very effective . 1 +107312 5671 The problem with `` XXX '' 1 +107313 5671 with `` XXX '' 2 +107314 5671 `` XXX '' 2 +107315 5671 XXX '' 2 +107316 5671 is that its own action is n't very effective . 1 +107317 5671 is that its own action is n't very effective 1 +107318 5671 that its own action is n't very effective 1 +107319 5671 its own action is n't very effective 1 +107320 5671 its own action 2 +107321 5671 own action 2 +107322 5671 is n't very effective 1 +107323 5671 very effective 4 +107324 5672 There 's a bit of thematic meat on the bones of Queen of the Damned , as its origins in an Anne Rice novel dictate , but generally , it 's a movie that emphasizes style over character and substance . 2 +107325 5672 There 's a bit of thematic meat on the bones of Queen of the Damned , as its origins in an Anne Rice novel dictate , but generally , it 's a movie that emphasizes style over character and substance 2 +107326 5672 There 's a bit of thematic meat on the bones of Queen of the Damned , as its origins in an Anne Rice novel dictate , but 2 +107327 5672 There 's a bit of thematic meat on the bones of Queen of the Damned , as its origins in an Anne Rice novel dictate , 2 +107328 5672 There 's a bit of thematic meat on the bones of Queen of the Damned , as its origins in an Anne Rice novel dictate 2 +107329 5672 's a bit of thematic meat on the bones of Queen of the Damned , as its origins in an Anne Rice novel dictate 3 +107330 5672 's a bit of thematic meat on the bones of Queen of the Damned , 2 +107331 5672 's a bit of thematic meat on the bones of Queen of the Damned 3 +107332 5672 a bit of thematic meat on the bones of Queen of the Damned 3 +107333 5672 of thematic meat on the bones of Queen of the Damned 2 +107334 5672 thematic meat on the bones of Queen of the Damned 2 +107335 5672 thematic meat 2 +107336 5672 on the bones of Queen of the Damned 2 +107337 5672 the bones of Queen of the Damned 3 +107338 5672 the bones 2 +107339 5672 of Queen of the Damned 2 +107340 5672 as its origins in an Anne Rice novel dictate 3 +107341 5672 its origins in an Anne Rice novel dictate 2 +107342 5672 its origins in an Anne Rice novel 2 +107343 5672 its origins 2 +107344 5672 in an Anne Rice novel 2 +107345 5672 an Anne Rice novel 2 +107346 5672 dictate 2 +107347 5672 generally , it 's a movie that emphasizes style over character and substance 2 +107348 5672 , it 's a movie that emphasizes style over character and substance 1 +107349 5672 it 's a movie that emphasizes style over character and substance 2 +107350 5672 's a movie that emphasizes style over character and substance 1 +107351 5672 a movie that emphasizes style over character and substance 2 +107352 5672 that emphasizes style over character and substance 2 +107353 5672 emphasizes style over character and substance 1 +107354 5672 style over character and substance 1 +107355 5672 over character and substance 2 +107356 5672 character and substance 2 +107357 5673 The film is delicately narrated by Martin Landau and directed with sensitivity and skill by Dana Janklowicz-Mann . 3 +107358 5673 is delicately narrated by Martin Landau and directed with sensitivity and skill by Dana Janklowicz-Mann . 3 +107359 5673 is delicately narrated by Martin Landau and directed with sensitivity and skill by Dana Janklowicz-Mann 3 +107360 5673 is delicately 3 +107361 5673 narrated by Martin Landau and directed with sensitivity and skill by Dana Janklowicz-Mann 3 +107362 5673 narrated by Martin Landau and 2 +107363 5673 narrated by Martin Landau 2 +107364 5673 by Martin Landau 2 +107365 5673 Martin Landau 2 +107366 5673 Landau 2 +107367 5673 directed with sensitivity and skill by Dana Janklowicz-Mann 4 +107368 5673 directed with sensitivity and skill 3 +107369 5673 with sensitivity and skill 3 +107370 5673 sensitivity and skill 3 +107371 5673 sensitivity and 2 +107372 5673 by Dana Janklowicz-Mann 2 +107373 5674 SC2 is an autopilot Hollywood concoction lacking in imagination and authentic Christmas spirit , yet it 's geared toward an audience full of masters of both . 1 +107374 5674 SC2 is an autopilot Hollywood concoction lacking in imagination and authentic Christmas spirit , yet it 's geared toward an audience full of masters of both 1 +107375 5674 SC2 is an autopilot Hollywood concoction lacking in imagination and authentic Christmas spirit , yet 1 +107376 5674 SC2 is an autopilot Hollywood concoction lacking in imagination and authentic Christmas spirit , 0 +107377 5674 SC2 is an autopilot Hollywood concoction lacking in imagination and authentic Christmas spirit 0 +107378 5674 SC2 2 +107379 5674 is an autopilot Hollywood concoction lacking in imagination and authentic Christmas spirit 1 +107380 5674 an autopilot Hollywood concoction lacking in imagination and authentic Christmas spirit 0 +107381 5674 an autopilot Hollywood concoction 1 +107382 5674 autopilot Hollywood concoction 2 +107383 5674 autopilot 2 +107384 5674 Hollywood concoction 1 +107385 5674 concoction 2 +107386 5674 lacking in imagination and authentic Christmas spirit 1 +107387 5674 in imagination and authentic Christmas spirit 3 +107388 5674 imagination and authentic Christmas spirit 3 +107389 5674 imagination and 2 +107390 5674 authentic Christmas spirit 3 +107391 5674 Christmas spirit 3 +107392 5674 it 's geared toward an audience full of masters of both 2 +107393 5674 's geared toward an audience full of masters of both 2 +107394 5674 geared toward an audience full of masters of both 2 +107395 5674 toward an audience full of masters of both 2 +107396 5674 an audience full of masters of both 2 +107397 5674 full of masters of both 3 +107398 5674 of masters of both 3 +107399 5674 masters of both 4 +107400 5674 masters 2 +107401 5674 of both 2 +107402 5675 Remove Spider-Man the movie from its red herring surroundings and it 's apparent that this is one summer film that satisfies . 3 +107403 5675 Remove Spider-Man the movie from its red herring surroundings and it 's apparent that this is one summer film that satisfies 3 +107404 5675 Remove Spider-Man the movie from its red herring surroundings and 1 +107405 5675 Remove Spider-Man the movie from its red herring surroundings 2 +107406 5675 Remove Spider-Man the movie 0 +107407 5675 Remove 2 +107408 5675 Spider-Man the movie 2 +107409 5675 from its red herring surroundings 2 +107410 5675 its red herring surroundings 2 +107411 5675 red herring surroundings 2 +107412 5675 herring surroundings 2 +107413 5675 herring 2 +107414 5675 it 's apparent that this is one summer film that satisfies 3 +107415 5675 's apparent that this is one summer film that satisfies 4 +107416 5675 's apparent 2 +107417 5675 that this is one summer film that satisfies 3 +107418 5675 this is one summer film that satisfies 4 +107419 5675 is one summer film that satisfies 3 +107420 5675 one summer film that satisfies 3 +107421 5675 one summer film 2 +107422 5675 summer film 2 +107423 5675 that satisfies 3 +107424 5676 A meatier deeper beginning and\/or ending would have easily tipped this film into the `` A '' range , as is , it 's a very very strong `` B + . '' 3 +107425 5676 A meatier deeper beginning and\/or ending would have easily tipped this film into the `` A '' range , as is 2 +107426 5676 A meatier deeper beginning and\/or ending 2 +107427 5676 A meatier deeper beginning and\/or 2 +107428 5676 A meatier deeper beginning 3 +107429 5676 A meatier deeper 2 +107430 5676 A meatier 3 +107431 5676 meatier 2 +107432 5676 and\/or 2 +107433 5676 would have easily tipped this film into the `` A '' range , as is 3 +107434 5676 have easily tipped this film into the `` A '' range , as is 4 +107435 5676 have easily 2 +107436 5676 tipped this film into the `` A '' range , as is 3 +107437 5676 tipped this film 2 +107438 5676 tipped 2 +107439 5676 into the `` A '' range , as is 3 +107440 5676 the `` A '' range , as is 2 +107441 5676 the `` A '' range , 3 +107442 5676 the `` A '' range 3 +107443 5676 `` A '' range 3 +107444 5676 A '' range 3 +107445 5676 '' range 2 +107446 5676 , it 's a very very strong `` B + . '' 3 +107447 5676 it 's a very very strong `` B + . '' 3 +107448 5676 's a very very strong `` B + . '' 3 +107449 5676 's a very very strong `` B + . 3 +107450 5676 's a very very strong `` B + 3 +107451 5676 a very very strong `` B + 3 +107452 5676 very very strong `` B + 3 +107453 5676 very very strong 4 +107454 5676 very strong 3 +107455 5676 `` B + 3 +107456 5676 B + 3 +107457 5676 + 2 +107458 5677 ... a triumph of emotionally and narratively complex filmmaking . 4 +107459 5677 a triumph of emotionally and narratively complex filmmaking . 4 +107460 5677 a triumph of emotionally and narratively complex filmmaking 4 +107461 5677 of emotionally and narratively complex filmmaking 3 +107462 5677 emotionally and narratively complex filmmaking 4 +107463 5677 emotionally and narratively complex 3 +107464 5677 narratively complex 3 +107465 5678 A winning comedy with its wry observations about long-lived friendships and the ways in which we all lose track of ourselves by trying to please others . 4 +107466 5678 A winning comedy with its wry observations about long-lived friendships and the ways in which we all lose track of ourselves by trying to please others 4 +107467 5678 A winning comedy with its wry observations about long-lived friendships and the ways in which we all lose track of ourselves by trying 4 +107468 5678 A winning comedy with its wry observations 4 +107469 5678 with its wry observations 3 +107470 5678 its wry observations 2 +107471 5678 wry observations 3 +107472 5678 about long-lived friendships and the ways in which we all lose track of ourselves by trying 3 +107473 5678 long-lived friendships and the ways in which we all lose track of ourselves by trying 2 +107474 5678 long-lived friendships and 3 +107475 5678 long-lived friendships 3 +107476 5678 long-lived 2 +107477 5678 friendships 2 +107478 5678 the ways in which we all lose track of ourselves by trying 2 +107479 5678 in which we all lose track of ourselves by trying 2 +107480 5678 we all lose track of ourselves by trying 3 +107481 5678 all lose track of ourselves by trying 2 +107482 5678 lose track of ourselves by trying 2 +107483 5678 lose track of ourselves 2 +107484 5678 track of ourselves 2 +107485 5678 track 2 +107486 5678 of ourselves 2 +107487 5678 by trying 2 +107488 5678 to please others 3 +107489 5678 please others 2 +107490 5679 Fantastic ! 4 +107491 5680 Large budget notwithstanding , the movie is such a blip on the year 's radar screen that it 's tempting just to go with it for the ride . 3 +107492 5680 Large budget notwithstanding 2 +107493 5680 Large budget 2 +107494 5680 , the movie is such a blip on the year 's radar screen that it 's tempting just to go with it for the ride . 2 +107495 5680 the movie is such a blip on the year 's radar screen that it 's tempting just to go with it for the ride . 1 +107496 5680 is such a blip on the year 's radar screen that it 's tempting just to go with it for the ride . 1 +107497 5680 is such a blip on the year 's radar screen that it 's tempting just to go with it for the ride 2 +107498 5680 is such a blip on the year 's radar screen 1 +107499 5680 such a blip on the year 's radar screen 1 +107500 5680 such a blip 2 +107501 5680 a blip 1 +107502 5680 blip 2 +107503 5680 on the year 's radar screen 2 +107504 5680 the year 's radar screen 2 +107505 5680 radar screen 2 +107506 5680 that it 's tempting just to go with it for the ride 3 +107507 5680 it 's tempting just to go with it for the ride 2 +107508 5680 's tempting just to go with it for the ride 2 +107509 5680 tempting just to go with it for the ride 2 +107510 5680 tempting just 2 +107511 5680 to go with it for the ride 2 +107512 5680 go with it for the ride 2 +107513 5680 go with it 2 +107514 5680 for the ride 2 +107515 5680 the ride 2 +107516 5681 It 's uninteresting . 0 +107517 5681 's uninteresting . 1 +107518 5681 's uninteresting 1 +107519 5682 Little more than a well-mounted history lesson . 1 +107520 5682 Little more than a well-mounted history lesson 1 +107521 5682 than a well-mounted history lesson 2 +107522 5682 a well-mounted history lesson 3 +107523 5682 well-mounted history lesson 3 +107524 5682 well-mounted 4 +107525 5683 Leave it to the French to truly capture the terrifying angst of the modern working man without turning the film into a cheap thriller , a dumb comedy or a sappy melodrama . 4 +107526 5683 Leave it to the French to truly capture the terrifying angst of the modern working man without turning the film into a cheap thriller , a dumb comedy or a sappy melodrama 3 +107527 5683 Leave it 1 +107528 5683 to the French to truly capture the terrifying angst of the modern working man without turning the film into a cheap thriller , a dumb comedy or a sappy melodrama 4 +107529 5683 the French to truly capture the terrifying angst of the modern working man without turning the film into a cheap thriller , a dumb comedy or a sappy melodrama 3 +107530 5683 French to truly capture the terrifying angst of the modern working man without turning the film into a cheap thriller , a dumb comedy or a sappy melodrama 4 +107531 5683 French to truly capture the terrifying angst of the modern working man without turning the film into a cheap thriller , a dumb comedy or a sappy 2 +107532 5683 to truly capture the terrifying angst of the modern working man without turning the film into a cheap thriller , a dumb comedy or a sappy 3 +107533 5683 truly capture the terrifying angst of the modern working man without turning the film into a cheap thriller , a dumb comedy or a sappy 4 +107534 5683 capture the terrifying angst of the modern working man without turning the film into a cheap thriller , a dumb comedy or a sappy 4 +107535 5683 capture the terrifying angst of the modern working man 2 +107536 5683 the terrifying angst of the modern working man 2 +107537 5683 the terrifying angst 2 +107538 5683 terrifying angst 1 +107539 5683 of the modern working man 2 +107540 5683 the modern working man 2 +107541 5683 modern working man 2 +107542 5683 working man 2 +107543 5683 without turning the film into a cheap thriller , a dumb comedy or a sappy 2 +107544 5683 turning the film into a cheap thriller , a dumb comedy or a sappy 2 +107545 5683 turning the film 2 +107546 5683 into a cheap thriller , a dumb comedy or a sappy 0 +107547 5683 a cheap thriller , a dumb comedy or a sappy 2 +107548 5683 a cheap thriller , a dumb comedy or 1 +107549 5683 a cheap thriller , a dumb comedy 1 +107550 5683 a cheap thriller , 2 +107551 5683 a cheap thriller 1 +107552 5683 cheap thriller 2 +107553 5683 a dumb comedy 0 +107554 5683 dumb comedy 1 +107555 5683 a sappy 2 +107556 5684 Although the film boils down to a lightweight story about matchmaking , the characters make Italian for Beginners worth the journey 3 +107557 5684 Although the film boils down to a lightweight story about matchmaking 2 +107558 5684 the film boils down to a lightweight story about matchmaking 2 +107559 5684 boils down to a lightweight story about matchmaking 2 +107560 5684 to a lightweight story about matchmaking 2 +107561 5684 a lightweight story about matchmaking 3 +107562 5684 a lightweight story 2 +107563 5684 lightweight story 2 +107564 5684 about matchmaking 2 +107565 5684 matchmaking 2 +107566 5684 , the characters make Italian for Beginners worth the journey 3 +107567 5684 the characters make Italian for Beginners worth the journey 3 +107568 5684 make Italian for Beginners worth the journey 3 +107569 5684 make Italian for Beginners 2 +107570 5684 worth the journey 3 +107571 5685 Will probably be one of those movies barely registering a blip on the radar screen of 2002 . 0 +107572 5685 probably be one of those movies barely registering a blip on the radar screen of 2002 . 1 +107573 5685 be one of those movies barely registering a blip on the radar screen of 2002 . 1 +107574 5685 be one of those movies barely registering a blip on the radar screen of 2002 0 +107575 5685 one of those movies barely registering a blip on the radar screen of 2002 1 +107576 5685 of those movies barely registering a blip on the radar screen of 2002 2 +107577 5685 those movies barely registering a blip on the radar screen of 2002 1 +107578 5685 barely registering a blip on the radar screen of 2002 1 +107579 5685 registering a blip on the radar screen of 2002 2 +107580 5685 registering 2 +107581 5685 a blip on the radar screen of 2002 2 +107582 5685 on the radar screen of 2002 2 +107583 5685 the radar screen of 2002 2 +107584 5685 the radar screen 2 +107585 5686 An incredibly narrow in-joke targeted to the tiniest segment of an already obscure demographic . 1 +107586 5686 An incredibly narrow in-joke 1 +107587 5686 incredibly narrow in-joke 2 +107588 5686 incredibly narrow 2 +107589 5686 in-joke 2 +107590 5686 targeted to the tiniest segment of an already obscure demographic . 1 +107591 5686 targeted to the tiniest segment of an already obscure demographic 1 +107592 5686 to the tiniest segment of an already obscure demographic 1 +107593 5686 the tiniest segment of an already obscure demographic 1 +107594 5686 the tiniest segment 2 +107595 5686 tiniest segment 2 +107596 5686 tiniest 2 +107597 5686 segment 2 +107598 5686 of an already obscure demographic 1 +107599 5686 an already obscure demographic 1 +107600 5686 already obscure demographic 2 +107601 5686 already obscure 1 +107602 5687 Hoffman 's performance is authentic to the core of his being . 3 +107603 5687 is authentic to the core of his being . 3 +107604 5687 is authentic to the core of his being 3 +107605 5687 authentic to the core of his being 4 +107606 5687 to the core of his being 2 +107607 5687 the core of his being 2 +107608 5687 of his being 2 +107609 5687 his being 2 +107610 5688 Bluer than the Atlantic and more biologically detailed than an autopsy , the movie ... is , also , frequently hilarious . 4 +107611 5688 Bluer than the Atlantic and more biologically detailed than an autopsy , the movie 3 +107612 5688 Bluer than the Atlantic and 2 +107613 5688 Bluer than the Atlantic 1 +107614 5688 Bluer 2 +107615 5688 than the Atlantic 2 +107616 5688 more biologically detailed than an autopsy , the movie 3 +107617 5688 more biologically 2 +107618 5688 biologically 3 +107619 5688 detailed than an autopsy , the movie 2 +107620 5688 than an autopsy , the movie 1 +107621 5688 an autopsy , the movie 1 +107622 5688 an autopsy , 2 +107623 5688 ... is , also , frequently hilarious . 3 +107624 5688 is , also , frequently hilarious . 3 +107625 5688 is , also , frequently hilarious 4 +107626 5688 is , also , 2 +107627 5688 is , also 2 +107628 5689 Some remarkable achival film about how Shanghai -LRB- of all places -RRB- served Jews who escaped the Holocaust . 3 +107629 5689 Some remarkable achival film about how Shanghai -LRB- of all places -RRB- 3 +107630 5689 Some remarkable achival film 3 +107631 5689 remarkable achival film 4 +107632 5689 achival film 2 +107633 5689 achival 2 +107634 5689 about how Shanghai -LRB- of all places -RRB- 2 +107635 5689 how Shanghai -LRB- of all places -RRB- 2 +107636 5689 how Shanghai 2 +107637 5689 -LRB- of all places -RRB- 2 +107638 5689 of all places -RRB- 2 +107639 5689 of all places 2 +107640 5689 all places 2 +107641 5689 served Jews who escaped the Holocaust . 2 +107642 5689 served Jews who escaped the Holocaust 2 +107643 5689 Jews who escaped the Holocaust 2 +107644 5689 who escaped the Holocaust 2 +107645 5689 escaped the Holocaust 2 +107646 5689 escaped 2 +107647 5690 In painting an unabashedly romantic picture of a nation whose songs spring directly from the lives of the people , the movie exalts the Marxian dream of honest working folk , with little to show for their labor , living harmoniously , joined in song . 3 +107648 5690 In painting an unabashedly romantic picture of a nation whose songs spring directly from the lives of the people 3 +107649 5690 painting an unabashedly romantic picture of a nation whose songs spring directly from the lives of the people 3 +107650 5690 painting 2 +107651 5690 an unabashedly romantic picture of a nation whose songs spring directly from the lives of the people 4 +107652 5690 an unabashedly romantic picture 3 +107653 5690 unabashedly romantic picture 3 +107654 5690 of a nation whose songs spring directly from the lives of the people 2 +107655 5690 a nation whose songs spring directly from the lives of the people 3 +107656 5690 whose songs spring directly from the lives of the people 2 +107657 5690 whose songs 2 +107658 5690 spring directly from the lives of the people 2 +107659 5690 spring directly 2 +107660 5690 directly 2 +107661 5690 from the lives of the people 2 +107662 5690 the lives of the people 2 +107663 5690 of the people 2 +107664 5690 , the movie exalts the Marxian dream of honest working folk , with little to show for their labor , living harmoniously , joined in song . 2 +107665 5690 the movie exalts the Marxian dream of honest working folk , with little to show for their labor , living harmoniously , joined in song . 2 +107666 5690 exalts the Marxian dream of honest working folk , with little to show for their labor , living harmoniously , joined in song . 3 +107667 5690 exalts the Marxian dream of honest working folk , with little to show for their labor , living harmoniously , joined in song 2 +107668 5690 exalts the Marxian dream of honest working folk , with little 2 +107669 5690 exalts the Marxian dream of honest working folk , 3 +107670 5690 exalts the Marxian dream of honest working folk 3 +107671 5690 exalts 2 +107672 5690 the Marxian dream of honest working folk 2 +107673 5690 the Marxian dream 2 +107674 5690 Marxian dream 2 +107675 5690 Marxian 2 +107676 5690 of honest working folk 3 +107677 5690 honest working folk 2 +107678 5690 working folk 2 +107679 5690 with little 2 +107680 5690 to show for their labor , living harmoniously , joined in song 3 +107681 5690 show for their labor , living harmoniously , joined in song 3 +107682 5690 for their labor , living harmoniously , joined in song 2 +107683 5690 their labor , living harmoniously , joined in song 2 +107684 5690 their labor , living harmoniously , 2 +107685 5690 their labor , living harmoniously 2 +107686 5690 their labor , 2 +107687 5690 their labor 2 +107688 5690 living harmoniously 3 +107689 5690 harmoniously 3 +107690 5690 joined in song 2 +107691 5690 joined 2 +107692 5690 in song 2 +107693 5691 Somewhere inside the mess that is World Traveler , there is a mediocre movie trying to get out . 1 +107694 5691 Somewhere inside the mess that is World Traveler 1 +107695 5691 inside the mess that is World Traveler 1 +107696 5691 the mess that is World Traveler 1 +107697 5691 the mess 1 +107698 5691 that is World Traveler 2 +107699 5691 is World Traveler 2 +107700 5691 , there is a mediocre movie trying to get out . 0 +107701 5691 there is a mediocre movie trying to get out . 1 +107702 5691 is a mediocre movie trying to get out . 2 +107703 5691 is a mediocre movie trying to get out 1 +107704 5691 a mediocre movie trying to get out 1 +107705 5691 a mediocre movie 1 +107706 5691 trying to get out 3 +107707 5691 to get out 2 +107708 5691 get out 1 +107709 5692 Everything about The Quiet American is good , except its timing . 3 +107710 5692 Everything about The Quiet American 2 +107711 5692 about The Quiet American 2 +107712 5692 is good , except its timing . 3 +107713 5692 is good , except its timing 3 +107714 5692 is good , 4 +107715 5692 except its timing 2 +107716 5692 its timing 2 +107717 5693 This rich , bittersweet Israeli documentary , about the life of song-and-dance-man Pasach ` ke Burstein and his family , transcends ethnic lines . 3 +107718 5693 This rich , bittersweet Israeli documentary , about the life of song-and-dance-man Pasach ` ke Burstein and his family , 3 +107719 5693 This rich , bittersweet Israeli documentary , about the life of song-and-dance-man Pasach ` ke Burstein and his family 3 +107720 5693 This rich , bittersweet Israeli documentary , 3 +107721 5693 This rich , bittersweet Israeli documentary 3 +107722 5693 rich , bittersweet Israeli documentary 3 +107723 5693 , bittersweet Israeli documentary 2 +107724 5693 bittersweet Israeli documentary 2 +107725 5693 Israeli documentary 2 +107726 5693 about the life of song-and-dance-man Pasach ` ke Burstein and his family 2 +107727 5693 about the life 3 +107728 5693 of song-and-dance-man Pasach ` ke Burstein and his family 2 +107729 5693 song-and-dance-man Pasach ` ke Burstein and his family 2 +107730 5693 song-and-dance-man Pasach ` ke Burstein and 2 +107731 5693 song-and-dance-man Pasach ` ke Burstein 2 +107732 5693 song-and-dance-man 3 +107733 5693 Pasach ` ke Burstein 2 +107734 5693 Pasach 2 +107735 5693 ` ke Burstein 3 +107736 5693 ke Burstein 2 +107737 5693 ke 3 +107738 5693 Burstein 2 +107739 5693 transcends ethnic lines . 1 +107740 5693 transcends ethnic lines 3 +107741 5693 ethnic lines 2 +107742 5694 Writer\/director David Caesar ladles on the local flavour with a hugely enjoyable film about changing times , clashing cultures and the pleasures of a well-made pizza . 4 +107743 5694 Writer\/director David Caesar 2 +107744 5694 ladles on the local flavour with a hugely enjoyable film about changing times , clashing cultures and the pleasures of a well-made pizza . 4 +107745 5694 ladles on the local flavour with a hugely enjoyable film about changing times , clashing cultures and the pleasures of a well-made pizza 3 +107746 5694 ladles 2 +107747 5694 on the local flavour with a hugely enjoyable film about changing times , clashing cultures and the pleasures of a well-made pizza 4 +107748 5694 the local flavour with a hugely enjoyable film about changing times , clashing cultures and the pleasures of a well-made pizza 3 +107749 5694 the local flavour 2 +107750 5694 local flavour 3 +107751 5694 flavour 2 +107752 5694 with a hugely enjoyable film about changing times , clashing cultures and the pleasures of a well-made pizza 3 +107753 5694 a hugely enjoyable film about changing times , clashing cultures and the pleasures of a well-made pizza 4 +107754 5694 a hugely enjoyable film 4 +107755 5694 hugely enjoyable film 4 +107756 5694 hugely enjoyable 4 +107757 5694 about changing times , clashing cultures and the pleasures of a well-made pizza 3 +107758 5694 changing times , clashing cultures and the pleasures of a well-made pizza 3 +107759 5694 changing times , clashing cultures and 2 +107760 5694 changing times , clashing cultures 2 +107761 5694 changing times , 2 +107762 5694 changing times 2 +107763 5694 the pleasures of a well-made pizza 3 +107764 5694 of a well-made pizza 3 +107765 5694 a well-made pizza 3 +107766 5694 well-made pizza 3 +107767 5694 pizza 2 +107768 5696 I have to admit that I am baffled by Jason X. 1 +107769 5696 have to admit that I am baffled by Jason X. 1 +107770 5696 to admit that I am baffled by Jason X. 1 +107771 5696 admit that I am baffled by Jason X. 1 +107772 5696 that I am baffled by Jason X. 2 +107773 5696 I am baffled by Jason X. 1 +107774 5696 am baffled by Jason X. 1 +107775 5696 baffled by Jason X. 0 +107776 5696 by Jason X. 2 +107777 5697 A smart , compelling drama . 4 +107778 5697 A smart , compelling drama 4 +107779 5697 smart , compelling drama 3 +107780 5697 smart , compelling 4 +107781 5698 Drumline ably captures the complicated relationships in a marching band . 3 +107782 5698 ably captures the complicated relationships in a marching band . 3 +107783 5698 captures the complicated relationships in a marching band . 3 +107784 5698 captures the complicated relationships in a marching band 3 +107785 5698 the complicated relationships in a marching band 2 +107786 5698 the complicated relationships 2 +107787 5698 complicated relationships 2 +107788 5698 in a marching band 2 +107789 5698 a marching band 2 +107790 5698 marching band 2 +107791 5699 Oh , and Booty Call . 2 +107792 5699 , and Booty Call . 2 +107793 5699 and Booty Call . 2 +107794 5699 and Booty 2 +107795 5699 Booty 2 +107796 5699 Call . 2 +107797 5700 It is messy , uncouth , incomprehensible , vicious and absurd . 0 +107798 5700 is messy , uncouth , incomprehensible , vicious and absurd . 0 +107799 5700 is messy , uncouth , incomprehensible , vicious and absurd 0 +107800 5700 messy , uncouth , incomprehensible , vicious and absurd 1 +107801 5700 , uncouth , incomprehensible , vicious and absurd 0 +107802 5700 uncouth , incomprehensible , vicious and absurd 0 +107803 5700 uncouth 2 +107804 5700 , incomprehensible , vicious and absurd 1 +107805 5700 incomprehensible , vicious and absurd 2 +107806 5700 , vicious and absurd 1 +107807 5700 vicious and absurd 0 +107808 5700 vicious and 1 +107809 5700 vicious 2 +107810 5701 Confessions is without a doubt a memorable directorial debut from King Hunk . 3 +107811 5701 is without a doubt a memorable directorial debut from King Hunk . 4 +107812 5701 is without a doubt a memorable directorial debut from King Hunk 4 +107813 5701 is without a doubt 2 +107814 5701 without a doubt 2 +107815 5701 a doubt 1 +107816 5701 a memorable directorial debut from King Hunk 4 +107817 5701 a memorable directorial debut 4 +107818 5701 memorable directorial debut 3 +107819 5701 from King Hunk 2 +107820 5701 King Hunk 2 +107821 5702 Do n't expect any subtlety from this latest entry in the increasingly threadbare gross-out comedy cycle . 2 +107822 5702 Do n't expect any subtlety from this latest entry in the increasingly threadbare gross-out comedy cycle 0 +107823 5702 expect any subtlety from this latest entry in the increasingly threadbare gross-out comedy cycle 1 +107824 5702 expect any subtlety 2 +107825 5702 any subtlety 2 +107826 5702 from this latest entry in the increasingly threadbare gross-out comedy cycle 1 +107827 5702 this latest entry in the increasingly threadbare gross-out comedy cycle 2 +107828 5702 this latest entry 2 +107829 5702 latest entry 2 +107830 5702 in the increasingly threadbare gross-out comedy cycle 2 +107831 5702 the increasingly threadbare gross-out comedy cycle 2 +107832 5702 increasingly threadbare gross-out comedy cycle 2 +107833 5702 increasingly threadbare 1 +107834 5702 gross-out comedy cycle 2 +107835 5702 comedy cycle 2 +107836 5702 cycle 2 +107837 5703 Canadian filmmaker Gary Burns ' inventive and mordantly humorous take on the soullessness of work in the city . 4 +107838 5703 Canadian filmmaker Gary Burns ' inventive and mordantly humorous 3 +107839 5703 Canadian filmmaker Gary Burns ' 2 +107840 5703 filmmaker Gary Burns ' 2 +107841 5703 Gary Burns ' 2 +107842 5703 inventive and mordantly humorous 4 +107843 5703 and mordantly humorous 3 +107844 5703 mordantly humorous 2 +107845 5703 take on the soullessness of work in the city . 2 +107846 5703 take on the soullessness of work in the city 2 +107847 5703 take on the soullessness of work 3 +107848 5703 on the soullessness of work 1 +107849 5703 the soullessness of work 2 +107850 5703 the soullessness 1 +107851 5703 soullessness 1 +107852 5703 in the city 2 +107853 5704 New ways of describing badness need to be invented to describe exactly how bad it is . 0 +107854 5704 New ways of describing badness 1 +107855 5704 New ways 2 +107856 5704 of describing badness 0 +107857 5704 describing badness 1 +107858 5704 describing 2 +107859 5704 need to be invented to describe exactly how bad it is . 0 +107860 5704 need to be invented to describe exactly how bad it is 0 +107861 5704 to be invented to describe exactly how bad it is 1 +107862 5704 be invented to describe exactly how bad it is 0 +107863 5704 invented to describe exactly how bad it is 0 +107864 5704 to describe exactly how bad it is 0 +107865 5704 describe exactly how bad it is 0 +107866 5704 exactly how bad it is 0 +107867 5704 exactly how bad 1 +107868 5705 A film that suffers because of its many excesses . 1 +107869 5705 film that suffers because of its many excesses . 1 +107870 5705 film that suffers because of its many excesses 1 +107871 5705 that suffers because of its many excesses 1 +107872 5705 suffers because of its many excesses 0 +107873 5705 because of its many excesses 2 +107874 5705 of its many excesses 2 +107875 5705 its many excesses 1 +107876 5705 many excesses 1 +107877 5706 Brings an irresistible blend of warmth and humor and a consistent embracing humanity in the face of life 's harshness . 4 +107878 5706 Brings an irresistible blend of warmth and humor and a consistent embracing humanity in the face of life 's harshness 4 +107879 5706 an irresistible blend of warmth and humor and a consistent embracing humanity in the face of life 's harshness 4 +107880 5706 an irresistible blend of warmth and humor and 4 +107881 5706 an irresistible blend of warmth and humor 4 +107882 5706 an irresistible blend 4 +107883 5706 irresistible blend 4 +107884 5706 of warmth and humor 4 +107885 5706 warmth and humor 3 +107886 5706 a consistent embracing humanity in the face of life 's harshness 2 +107887 5706 a consistent embracing humanity 3 +107888 5706 consistent embracing humanity 3 +107889 5706 consistent embracing 2 +107890 5706 embracing 4 +107891 5706 in the face of life 's harshness 2 +107892 5706 the face of life 's harshness 2 +107893 5706 of life 's harshness 2 +107894 5706 life 's harshness 1 +107895 5706 harshness 2 +107896 5707 -LRB- The film 's -RRB- taste for `` shock humor '' will wear thin on all but those weaned on the comedy of Tom Green and the Farrelly Brothers . 1 +107897 5707 -LRB- The film 's -RRB- taste for `` shock humor '' will wear thin on all but those weaned on the comedy of Tom Green and the Farrelly Brothers 1 +107898 5707 -LRB- The film 's -RRB- taste for `` shock humor '' will wear thin on all but 1 +107899 5707 -LRB- The film 's -RRB- taste for `` shock humor '' will wear thin on all 1 +107900 5707 The film 's -RRB- taste for `` shock humor '' will wear thin on all 0 +107901 5707 -RRB- taste for `` shock humor '' will wear thin on all 1 +107902 5707 taste for `` shock humor '' will wear thin on all 1 +107903 5707 for `` shock humor '' will wear thin on all 1 +107904 5707 `` shock humor '' will wear thin on all 1 +107905 5707 `` shock humor '' 1 +107906 5707 shock humor '' 2 +107907 5707 humor '' 2 +107908 5707 will wear thin on all 1 +107909 5707 wear thin on all 1 +107910 5707 wear thin 1 +107911 5707 on all 2 +107912 5707 those weaned on the comedy of Tom Green and the Farrelly Brothers 2 +107913 5707 weaned on the comedy of Tom Green and the Farrelly Brothers 2 +107914 5707 weaned 2 +107915 5707 on the comedy of Tom Green and the Farrelly Brothers 2 +107916 5707 the comedy of Tom Green and the Farrelly Brothers 2 +107917 5707 of Tom Green and the Farrelly Brothers 2 +107918 5707 Tom Green and the Farrelly Brothers 2 +107919 5707 Tom Green and 2 +107920 5707 the Farrelly Brothers 2 +107921 5707 Farrelly Brothers 2 +107922 5708 Its screenplay serves as auto-critique , and its clumsiness as its own most damning censure . 1 +107923 5708 Its screenplay 2 +107924 5708 serves as auto-critique , and its clumsiness as its own most damning censure . 1 +107925 5708 serves as auto-critique , and its clumsiness as its own most damning censure 1 +107926 5708 serves as auto-critique , and 2 +107927 5708 serves as auto-critique , 2 +107928 5708 serves as auto-critique 2 +107929 5708 as auto-critique 2 +107930 5708 auto-critique 1 +107931 5708 its clumsiness as its own most damning censure 0 +107932 5708 its clumsiness 1 +107933 5708 clumsiness 1 +107934 5708 as its own most damning censure 1 +107935 5708 its own most damning censure 1 +107936 5708 own most damning censure 0 +107937 5708 most damning censure 1 +107938 5708 most damning 1 +107939 5708 censure 2 +107940 5709 Uplifting as only a document of the worst possibilities of mankind can be , and among the best films of the year . 4 +107941 5709 Uplifting as only a document of the worst possibilities of mankind can be 2 +107942 5709 as only a document of the worst possibilities of mankind can be 1 +107943 5709 only a document of the worst possibilities of mankind can be 1 +107944 5709 only a document of the worst possibilities of mankind 1 +107945 5709 only a document 2 +107946 5709 of the worst possibilities of mankind 1 +107947 5709 the worst possibilities of mankind 1 +107948 5709 the worst possibilities 1 +107949 5709 worst possibilities 1 +107950 5709 of mankind 2 +107951 5709 mankind 2 +107952 5709 , and among the best films of the year . 4 +107953 5709 among the best films of the year . 4 +107954 5709 among the best films of the year 4 +107955 5710 The film is flat . 1 +107956 5710 is flat . 1 +107957 5711 A fascinating , unnerving examination of the delusions of one unstable man . 3 +107958 5711 A fascinating , unnerving examination of the delusions of one unstable man 3 +107959 5711 A fascinating , unnerving examination of the delusions 4 +107960 5711 A fascinating , unnerving examination 3 +107961 5711 fascinating , unnerving examination 4 +107962 5711 , unnerving examination 2 +107963 5711 unnerving examination 2 +107964 5711 of the delusions 2 +107965 5711 the delusions 1 +107966 5711 of one unstable man 3 +107967 5711 one unstable man 2 +107968 5711 unstable man 2 +107969 5711 unstable 1 +107970 5712 Feels as if the inmates have actually taken over the asylum . 2 +107971 5712 as if the inmates have actually taken over the asylum . 2 +107972 5712 as if the inmates have actually taken over the asylum 2 +107973 5712 if the inmates have actually taken over the asylum 2 +107974 5712 the inmates have actually taken over the asylum 2 +107975 5712 the inmates 2 +107976 5712 inmates 1 +107977 5712 have actually taken over the asylum 2 +107978 5712 have actually 2 +107979 5712 taken over the asylum 2 +107980 5712 over the asylum 2 +107981 5712 the asylum 2 +107982 5713 This is unusual , food-for-thought cinema that 's as entertaining as it is instructive . 3 +107983 5713 is unusual , food-for-thought cinema that 's as entertaining as it is instructive . 4 +107984 5713 is unusual , food-for-thought cinema that 's as entertaining as it is instructive 4 +107985 5713 unusual , food-for-thought cinema that 's as entertaining as it is instructive 4 +107986 5713 unusual , food-for-thought cinema 3 +107987 5713 , food-for-thought cinema 3 +107988 5713 food-for-thought cinema 3 +107989 5713 food-for-thought 2 +107990 5713 that 's as entertaining as it is instructive 4 +107991 5713 's as entertaining as it is instructive 4 +107992 5713 's as entertaining 3 +107993 5713 as it is instructive 3 +107994 5713 it is instructive 3 +107995 5713 is instructive 3 +107996 5713 instructive 3 +107997 5714 Watching The Powerpuff Girls Movie , my mind kept returning to one anecdote for comparison : the cartoon in Japan that gave people seizures . 3 +107998 5714 Watching The Powerpuff Girls Movie 2 +107999 5714 The Powerpuff Girls Movie 2 +108000 5714 Powerpuff Girls Movie 2 +108001 5714 Girls Movie 2 +108002 5714 , my mind kept returning to one anecdote for comparison : the cartoon in Japan that gave people seizures . 1 +108003 5714 my mind kept returning to one anecdote for comparison : the cartoon in Japan that gave people seizures . 1 +108004 5714 my mind 3 +108005 5714 kept returning to one anecdote for comparison : the cartoon in Japan that gave people seizures . 2 +108006 5714 kept returning to one anecdote for comparison : the cartoon in Japan that gave people seizures 2 +108007 5714 returning to one anecdote for comparison : the cartoon in Japan that gave people seizures 1 +108008 5714 to one anecdote for comparison : the cartoon in Japan that gave people seizures 1 +108009 5714 one anecdote for comparison : the cartoon in Japan that gave people seizures 2 +108010 5714 one anecdote for comparison : 2 +108011 5714 one anecdote for comparison 2 +108012 5714 one anecdote 2 +108013 5714 anecdote 2 +108014 5714 for comparison 2 +108015 5714 the cartoon in Japan that gave people seizures 1 +108016 5714 the cartoon in Japan 2 +108017 5714 the cartoon 3 +108018 5714 that gave people seizures 1 +108019 5714 gave people seizures 1 +108020 5714 gave people 2 +108021 5714 seizures 2 +108022 5715 A funny , triumphant , and moving documentary . 4 +108023 5715 A funny , triumphant , and moving documentary 4 +108024 5715 A funny , triumphant , and 4 +108025 5715 A funny , triumphant , 2 +108026 5715 funny , triumphant , 4 +108027 5715 , triumphant , 4 +108028 5715 triumphant , 3 +108029 5715 moving documentary 3 +108030 5716 Just when you think that every possible angle has been exhausted by documentarians , another new film emerges with yet another remarkable yet shockingly little-known perspective . 3 +108031 5716 Just when you think that every possible angle has been exhausted by documentarians 2 +108032 5716 when you think that every possible angle has been exhausted by documentarians 2 +108033 5716 you think that every possible angle has been exhausted by documentarians 2 +108034 5716 think that every possible angle has been exhausted by documentarians 2 +108035 5716 that every possible angle has been exhausted by documentarians 2 +108036 5716 every possible angle has been exhausted by documentarians 1 +108037 5716 every possible angle 2 +108038 5716 possible angle 3 +108039 5716 has been exhausted by documentarians 2 +108040 5716 been exhausted by documentarians 1 +108041 5716 exhausted by documentarians 1 +108042 5716 by documentarians 2 +108043 5716 , another new film emerges with yet another remarkable yet shockingly little-known perspective . 2 +108044 5716 another new film emerges with yet another remarkable yet shockingly little-known perspective . 3 +108045 5716 another new film 2 +108046 5716 emerges with yet another remarkable yet shockingly little-known perspective . 4 +108047 5716 emerges with yet another remarkable yet shockingly little-known perspective 3 +108048 5716 with yet another remarkable yet shockingly little-known perspective 3 +108049 5716 yet another remarkable yet shockingly little-known perspective 3 +108050 5716 another remarkable yet shockingly little-known perspective 3 +108051 5716 remarkable yet shockingly little-known perspective 4 +108052 5716 remarkable yet shockingly 3 +108053 5716 remarkable yet 3 +108054 5716 little-known perspective 1 +108055 5716 little-known 2 +108056 5717 A witty , trenchant , wildly unsentimental but flawed look at the ins and outs of modern moviemaking . 2 +108057 5717 A witty , trenchant , wildly unsentimental but flawed 1 +108058 5717 A witty , trenchant , 3 +108059 5717 witty , trenchant , 3 +108060 5717 , trenchant , 2 +108061 5717 trenchant , 2 +108062 5717 wildly unsentimental but flawed 1 +108063 5717 wildly unsentimental but 1 +108064 5717 wildly unsentimental 2 +108065 5717 look at the ins and outs of modern moviemaking . 2 +108066 5717 look at the ins and outs of modern moviemaking 2 +108067 5717 at the ins and outs of modern moviemaking 2 +108068 5717 the ins and outs of modern moviemaking 3 +108069 5717 the ins and outs 2 +108070 5717 ins and outs 2 +108071 5717 ins and 2 +108072 5717 ins 2 +108073 5717 outs 2 +108074 5717 of modern moviemaking 2 +108075 5717 modern moviemaking 3 +108076 5718 Please . 2 +108077 5719 A thriller with an edge -- which is to say that it does n't follow the stale , standard , connect-the-dots storyline which has become commonplace in movies that explore the seamy underbelly of the criminal world . 3 +108078 5719 A thriller with an edge -- which is to say that it does n't follow the stale , standard , connect-the-dots storyline which has become commonplace in movies that explore the seamy underbelly of the criminal world 2 +108079 5719 A thriller with an edge -- 3 +108080 5719 A thriller with an edge 3 +108081 5719 with an edge 2 +108082 5719 an edge 2 +108083 5719 which is to say that it does n't follow the stale , standard , connect-the-dots storyline which has become commonplace in movies that explore the seamy underbelly of the criminal world 2 +108084 5719 is to say that it does n't follow the stale , standard , connect-the-dots storyline which has become commonplace in movies that explore the seamy underbelly of the criminal world 3 +108085 5719 to say that it does n't follow the stale , standard , connect-the-dots storyline which has become commonplace in movies that explore the seamy underbelly of the criminal world 3 +108086 5719 say that it does n't follow the stale , standard , connect-the-dots storyline which has become commonplace in movies that explore the seamy underbelly of the criminal world 3 +108087 5719 that it does n't follow the stale , standard , connect-the-dots storyline which has become commonplace in movies that explore the seamy underbelly of the criminal world 3 +108088 5719 it does n't follow the stale , standard , connect-the-dots storyline which has become commonplace in movies that explore the seamy underbelly of the criminal world 3 +108089 5719 does n't follow the stale , standard , connect-the-dots storyline which has become commonplace in movies that explore the seamy underbelly of the criminal world 3 +108090 5719 follow the stale , standard , connect-the-dots storyline which has become commonplace in movies that explore the seamy underbelly of the criminal world 0 +108091 5719 the stale , standard , connect-the-dots storyline which has become commonplace in movies that explore the seamy underbelly of the criminal world 1 +108092 5719 the stale , standard , connect-the-dots storyline 1 +108093 5719 stale , standard , connect-the-dots storyline 0 +108094 5719 , standard , connect-the-dots storyline 2 +108095 5719 standard , connect-the-dots storyline 2 +108096 5719 , connect-the-dots storyline 2 +108097 5719 connect-the-dots storyline 2 +108098 5719 which has become commonplace in movies that explore the seamy underbelly of the criminal world 2 +108099 5719 has become commonplace in movies that explore the seamy underbelly of the criminal world 2 +108100 5719 become commonplace in movies that explore the seamy underbelly of the criminal world 2 +108101 5719 become commonplace 2 +108102 5719 commonplace 2 +108103 5719 in movies that explore the seamy underbelly of the criminal world 2 +108104 5719 movies that explore the seamy underbelly of the criminal world 2 +108105 5719 that explore the seamy underbelly of the criminal world 3 +108106 5719 explore the seamy underbelly of the criminal world 2 +108107 5719 the seamy underbelly of the criminal world 2 +108108 5719 the seamy underbelly 2 +108109 5719 seamy underbelly 2 +108110 5719 seamy 2 +108111 5719 of the criminal world 2 +108112 5719 the criminal world 1 +108113 5719 criminal world 2 +108114 5720 No matter how you slice it , Mark Wahlberg and Thandie Newton are not Hepburn and Grant , two cinematic icons with chemistry galore . 2 +108115 5720 No matter how you slice it 2 +108116 5720 matter how you slice it 2 +108117 5720 how you slice it 2 +108118 5720 you slice it 3 +108119 5720 slice it 2 +108120 5720 , Mark Wahlberg and Thandie Newton are not Hepburn and Grant , two cinematic icons with chemistry galore . 1 +108121 5720 Mark Wahlberg and Thandie Newton are not Hepburn and Grant , two cinematic icons with chemistry galore . 1 +108122 5720 Mark Wahlberg and Thandie Newton 2 +108123 5720 Wahlberg and Thandie Newton 2 +108124 5720 and Thandie Newton 2 +108125 5720 Thandie Newton 2 +108126 5720 Thandie 2 +108127 5720 Newton 2 +108128 5720 are not Hepburn and Grant , two cinematic icons with chemistry galore . 2 +108129 5720 are not Hepburn and Grant , two cinematic icons with chemistry galore 2 +108130 5720 Hepburn and Grant , two cinematic icons with chemistry galore 3 +108131 5720 Hepburn and Grant , 2 +108132 5720 Hepburn and Grant 2 +108133 5720 Hepburn and 2 +108134 5720 Hepburn 2 +108135 5720 two cinematic icons with chemistry galore 3 +108136 5720 two cinematic icons 3 +108137 5720 cinematic icons 2 +108138 5720 icons 3 +108139 5720 with chemistry galore 3 +108140 5720 chemistry galore 3 +108141 5720 galore 2 +108142 5721 Death to Smoochy tells a moldy-oldie , not-nearly - as-nasty - as-it - thinks-it-is joke . 1 +108143 5721 tells a moldy-oldie , not-nearly - as-nasty - as-it - thinks-it-is joke . 2 +108144 5721 tells a moldy-oldie , not-nearly - as-nasty - as-it - thinks-it-is joke 1 +108145 5721 a moldy-oldie , not-nearly - as-nasty - as-it - thinks-it-is joke 1 +108146 5721 a moldy-oldie , not-nearly - as-nasty - as-it - 2 +108147 5721 a moldy-oldie , not-nearly - as-nasty - as-it 1 +108148 5721 moldy-oldie , not-nearly - as-nasty - as-it 1 +108149 5721 moldy-oldie 2 +108150 5721 , not-nearly - as-nasty - as-it 1 +108151 5721 not-nearly - as-nasty - as-it 2 +108152 5721 not-nearly - as-nasty - 2 +108153 5721 not-nearly 1 +108154 5721 - as-nasty - 1 +108155 5721 as-nasty - 1 +108156 5721 as-nasty 2 +108157 5721 as-it 2 +108158 5721 thinks-it-is joke 1 +108159 5721 thinks-it-is 2 +108160 5722 Dripping with cliche and bypassing no opportunity to trivialize the material . 0 +108161 5722 Dripping with cliche and bypassing no opportunity to trivialize the material 0 +108162 5722 Dripping with cliche and 1 +108163 5722 Dripping with cliche 1 +108164 5722 Dripping 2 +108165 5722 with cliche 1 +108166 5722 bypassing no opportunity to trivialize the material 1 +108167 5722 bypassing 2 +108168 5722 no opportunity to trivialize the material 2 +108169 5722 opportunity to trivialize the material 2 +108170 5722 to trivialize the material 1 +108171 5722 trivialize the material 2 +108172 5722 trivialize 2 +108173 5723 If you 're looking for an intelligent movie in which you can release your pent up anger , ENOUGH is just the ticket you need . 3 +108174 5723 If you 're looking for an intelligent movie in which you can release your pent up anger 2 +108175 5723 you 're looking for an intelligent movie in which you can release your pent up anger 3 +108176 5723 're looking for an intelligent movie in which you can release your pent up anger 3 +108177 5723 looking for an intelligent movie in which you can release your pent up anger 2 +108178 5723 for an intelligent movie in which you can release your pent up anger 3 +108179 5723 an intelligent movie in which you can release your pent up anger 3 +108180 5723 an intelligent movie 4 +108181 5723 intelligent movie 3 +108182 5723 in which you can release your pent up anger 2 +108183 5723 you can release your pent up anger 3 +108184 5723 can release your pent up anger 2 +108185 5723 release your pent up anger 2 +108186 5723 release your pent 2 +108187 5723 your pent 2 +108188 5723 pent 2 +108189 5723 up anger 2 +108190 5723 , ENOUGH is just the ticket you need . 2 +108191 5723 ENOUGH is just the ticket you need . 3 +108192 5723 is just the ticket you need . 3 +108193 5723 is just the ticket you need 2 +108194 5723 the ticket you need 3 +108195 5723 the ticket 2 +108196 5723 you need 2 +108197 5724 Unfortunately , there is almost nothing in this flat effort that will amuse or entertain them , either . 1 +108198 5724 , there is almost nothing in this flat effort that will amuse or entertain them , either . 1 +108199 5724 there is almost nothing in this flat effort that will amuse or entertain them , either . 0 +108200 5724 is almost nothing in this flat effort that will amuse or entertain them , either . 1 +108201 5724 is almost nothing in this flat effort that will amuse or entertain them , either 1 +108202 5724 is almost nothing in this flat effort that will amuse or entertain them , 1 +108203 5724 is almost nothing in this flat effort that will amuse or entertain them 2 +108204 5724 nothing in this flat effort that will amuse or entertain them 1 +108205 5724 nothing in this flat effort 2 +108206 5724 in this flat effort 1 +108207 5724 this flat effort 0 +108208 5724 flat effort 1 +108209 5724 that will amuse or entertain them 3 +108210 5724 will amuse or entertain them 3 +108211 5724 amuse or entertain them 3 +108212 5724 amuse or entertain 3 +108213 5724 amuse or 2 +108214 5725 Not to mention absolutely refreshed . 4 +108215 5725 to mention absolutely refreshed . 3 +108216 5725 to mention absolutely refreshed 3 +108217 5725 mention absolutely refreshed 2 +108218 5725 absolutely refreshed 3 +108219 5725 refreshed 3 +108220 5726 My precious new Star Wars movie is a lumbering , wheezy drag ... 0 +108221 5726 My precious new Star Wars movie 3 +108222 5726 precious new Star Wars movie 3 +108223 5726 new Star Wars movie 3 +108224 5726 Star Wars movie 2 +108225 5726 Wars movie 2 +108226 5726 is a lumbering , wheezy drag ... 0 +108227 5726 is a lumbering , wheezy drag 1 +108228 5726 a lumbering , wheezy drag 0 +108229 5726 lumbering , wheezy drag 2 +108230 5726 lumbering , wheezy 1 +108231 5726 lumbering 1 +108232 5726 , wheezy 2 +108233 5726 wheezy 1 +108234 5727 Boyd 's screenplay -LRB- co-written with Guardian hack Nick Davies -RRB- has a florid turn of phrase that owes more to Guy Ritchie than the Bard of Avon . 1 +108235 5727 Boyd 's screenplay -LRB- co-written with Guardian hack Nick Davies -RRB- 2 +108236 5727 Boyd 's screenplay 2 +108237 5727 -LRB- co-written with Guardian hack Nick Davies -RRB- 2 +108238 5727 co-written with Guardian hack Nick Davies -RRB- 2 +108239 5727 co-written with Guardian hack Nick Davies 2 +108240 5727 with Guardian hack Nick Davies 1 +108241 5727 Guardian hack Nick Davies 2 +108242 5727 Guardian 2 +108243 5727 hack Nick Davies 1 +108244 5727 Nick Davies 2 +108245 5727 has a florid turn of phrase that owes more to Guy Ritchie than the Bard of Avon . 2 +108246 5727 has a florid turn of phrase that owes more to Guy Ritchie than the Bard of Avon 1 +108247 5727 a florid turn of phrase that owes more to Guy Ritchie than the Bard of Avon 2 +108248 5727 a florid turn of phrase 2 +108249 5727 a florid turn 1 +108250 5727 florid turn 2 +108251 5727 of phrase 2 +108252 5727 that owes more to Guy Ritchie than the Bard of Avon 2 +108253 5727 owes more to Guy Ritchie than the Bard of Avon 2 +108254 5727 owes more to Guy Ritchie 2 +108255 5727 more to Guy Ritchie 2 +108256 5727 to Guy Ritchie 2 +108257 5727 than the Bard of Avon 2 +108258 5727 the Bard of Avon 2 +108259 5727 of Avon 2 +108260 5727 Avon 2 +108261 5728 Bacon keeps things interesting , but do n't go out of your way to pay full price . 2 +108262 5728 keeps things interesting , but do n't go out of your way to pay full price . 1 +108263 5728 keeps things interesting , but do n't go out of your way to pay full price 2 +108264 5728 keeps things interesting , but 2 +108265 5728 keeps things interesting , 3 +108266 5728 keeps things interesting 3 +108267 5728 do n't go out of your way to pay full price 1 +108268 5728 go out of your way to pay full price 2 +108269 5728 of your way to pay full price 2 +108270 5728 your way to pay full price 2 +108271 5728 way to pay full price 2 +108272 5728 to pay full price 2 +108273 5728 pay full price 2 +108274 5729 A horrible , 99-minute stink bomb . 0 +108275 5729 A horrible , 99-minute 0 +108276 5729 horrible , 99-minute 0 +108277 5729 , 99-minute 2 +108278 5729 99-minute 3 +108279 5729 stink bomb . 1 +108280 5729 stink bomb 2 +108281 5729 stink 1 +108282 5730 A laughable -- or rather , unlaughable -- excuse for a film . 0 +108283 5730 A laughable -- or rather , unlaughable -- excuse for a film 0 +108284 5730 A laughable -- or rather , unlaughable -- 1 +108285 5730 A laughable -- or rather , unlaughable 1 +108286 5730 A laughable -- or rather , 2 +108287 5730 A laughable -- or rather 1 +108288 5730 A laughable -- 1 +108289 5730 A laughable 2 +108290 5730 or rather 2 +108291 5730 unlaughable 1 +108292 5730 excuse for a film 1 +108293 5731 A big fat pain . 1 +108294 5731 big fat pain . 1 +108295 5731 fat pain . 2 +108296 5731 pain . 2 +108297 5732 There 's nothing more satisfying during a summer of event movies than a spy thriller like The Bourne Identity that 's packed with just as much intelligence as action . 3 +108298 5732 's nothing more satisfying during a summer of event movies than a spy thriller like The Bourne Identity that 's packed with just as much intelligence as action . 4 +108299 5732 's nothing more satisfying during a summer of event movies than a spy thriller like The Bourne Identity that 's packed with just as much intelligence as action 4 +108300 5732 more satisfying during a summer of event movies than a spy thriller like The Bourne Identity that 's packed with just as much intelligence as action 4 +108301 5732 satisfying during a summer of event movies than a spy thriller like The Bourne Identity that 's packed with just as much intelligence as action 3 +108302 5732 during a summer of event movies than a spy thriller like The Bourne Identity that 's packed with just as much intelligence as action 3 +108303 5732 a summer of event movies than a spy thriller like The Bourne Identity that 's packed with just as much intelligence as action 4 +108304 5732 a summer of event movies than a spy thriller like The Bourne Identity 2 +108305 5732 of event movies than a spy thriller like The Bourne Identity 3 +108306 5732 event movies than a spy thriller like The Bourne Identity 2 +108307 5732 event movies 2 +108308 5732 than a spy thriller like The Bourne Identity 3 +108309 5732 a spy thriller like The Bourne Identity 2 +108310 5732 a spy thriller 2 +108311 5732 spy thriller 2 +108312 5732 like The Bourne Identity 2 +108313 5732 that 's packed with just as much intelligence as action 4 +108314 5732 's packed with just as much intelligence as action 4 +108315 5732 packed with just as much intelligence as action 4 +108316 5732 packed with just as much intelligence 4 +108317 5732 with just as much intelligence 3 +108318 5732 just as much intelligence 3 +108319 5732 as action 2 +108320 5733 Like Mike is n't going to make box office money that makes Michael Jordan jealous , but it has some cute moments , funny scenes , and hits the target audience -LRB- young Bow Wow fans -RRB- - with nothing but net . 3 +108321 5733 Like Mike is n't going to make box office money that makes Michael Jordan jealous , but it has some cute moments , funny scenes , and hits the target audience -LRB- young Bow Wow fans -RRB- - with nothing but net 3 +108322 5733 Like Mike is n't going to make box office money that makes Michael Jordan jealous , but 2 +108323 5733 Like Mike is n't going to make box office money that makes Michael Jordan jealous , 2 +108324 5733 Like Mike is n't going to make box office money that makes Michael Jordan jealous 1 +108325 5733 is n't going to make box office money that makes Michael Jordan jealous 1 +108326 5733 going to make box office money that makes Michael Jordan jealous 3 +108327 5733 to make box office money that makes Michael Jordan jealous 3 +108328 5733 make box office money that makes Michael Jordan jealous 3 +108329 5733 box office money that makes Michael Jordan jealous 3 +108330 5733 box office money 2 +108331 5733 office money 2 +108332 5733 that makes Michael Jordan jealous 1 +108333 5733 makes Michael Jordan jealous 2 +108334 5733 Michael Jordan jealous 2 +108335 5733 Jordan jealous 1 +108336 5733 jealous 1 +108337 5733 it has some cute moments , funny scenes , and hits the target audience -LRB- young Bow Wow fans -RRB- - with nothing but net 3 +108338 5733 has some cute moments , funny scenes , and hits the target audience -LRB- young Bow Wow fans -RRB- - with nothing but net 3 +108339 5733 has some cute moments , funny scenes , and hits the target audience -LRB- young Bow Wow fans -RRB- - 3 +108340 5733 some cute moments , funny scenes , and hits the target audience -LRB- young Bow Wow fans -RRB- - 3 +108341 5733 some cute moments , funny scenes , and hits the target audience -LRB- young Bow Wow fans -RRB- 3 +108342 5733 some cute moments , funny scenes , and 3 +108343 5733 some cute moments , funny scenes , 3 +108344 5733 some cute moments , funny scenes 3 +108345 5733 some cute moments , 3 +108346 5733 some cute moments 3 +108347 5733 cute moments 3 +108348 5733 funny scenes 3 +108349 5733 hits the target audience -LRB- young Bow Wow fans -RRB- 3 +108350 5733 the target audience -LRB- young Bow Wow fans -RRB- 2 +108351 5733 the target audience -LRB- young Bow Wow fans 2 +108352 5733 the target audience -LRB- 2 +108353 5733 young Bow Wow fans 2 +108354 5733 Bow Wow fans 2 +108355 5733 Wow fans 4 +108356 5733 with nothing but net 3 +108357 5733 nothing but net 4 +108358 5733 but net 2 +108359 5734 By turns very dark and very funny . 4 +108360 5734 By turns very dark and very funny 3 +108361 5734 turns very dark and very funny 4 +108362 5734 very dark and very funny 3 +108363 5734 very dark and 2 +108364 5734 very dark 2 +108365 5735 The Last Kiss will probably never achieve the popularity of My Big Fat Greek Wedding , but its provocative central wedding sequence has far more impact . 3 +108366 5735 The Last Kiss will probably never achieve the popularity of My Big Fat Greek Wedding , but its provocative central wedding sequence has far more impact 4 +108367 5735 The Last Kiss will probably never achieve the popularity of My Big Fat Greek Wedding , but 1 +108368 5735 The Last Kiss will probably never achieve the popularity of My Big Fat Greek Wedding , 2 +108369 5735 The Last Kiss will probably never achieve the popularity of My Big Fat Greek Wedding 1 +108370 5735 will probably never achieve the popularity of My Big Fat Greek Wedding 1 +108371 5735 never achieve the popularity of My Big Fat Greek Wedding 1 +108372 5735 achieve the popularity of My Big Fat Greek Wedding 3 +108373 5735 the popularity of My Big Fat Greek Wedding 2 +108374 5735 its provocative central wedding sequence has far more impact 3 +108375 5735 its provocative central wedding sequence 2 +108376 5735 provocative central wedding sequence 3 +108377 5735 central wedding sequence 2 +108378 5735 wedding sequence 3 +108379 5735 has far more impact 2 +108380 5735 far more impact 3 +108381 5736 ` Punch-Drunk Love is so convinced of its own brilliance that , if it were a person , you 'd want to smash its face in . ' 0 +108382 5736 Punch-Drunk Love is so convinced of its own brilliance that , if it were a person , you 'd want to smash its face in . ' 1 +108383 5736 is so convinced of its own brilliance that , if it were a person , you 'd want to smash its face in . ' 0 +108384 5736 is so convinced of its own brilliance that , if it were a person , you 'd want to smash its face in . 0 +108385 5736 is so convinced of its own brilliance that , if it were a person , you 'd want to smash its face in 1 +108386 5736 is so convinced of its own brilliance 3 +108387 5736 so convinced of its own brilliance 2 +108388 5736 convinced of its own brilliance 1 +108389 5736 of its own brilliance 3 +108390 5736 its own brilliance 4 +108391 5736 own brilliance 3 +108392 5736 that , if it were a person , you 'd want to smash its face in 1 +108393 5736 if it were a person , you 'd want to smash its face in 0 +108394 5736 if it were a person 2 +108395 5736 it were a person 2 +108396 5736 were a person 3 +108397 5736 a person 2 +108398 5736 , you 'd want to smash its face in 2 +108399 5736 you 'd want to smash its face in 1 +108400 5736 'd want to smash its face in 2 +108401 5736 want to smash its face in 1 +108402 5736 to smash its face in 1 +108403 5736 smash its face in 1 +108404 5736 smash its face 2 +108405 5736 its face 3 +108406 5737 I 've had more interesting -- and , dare I say , thematically complex -- bowel movements than this long-on-the-shelf , point-and-shoot exercise in gimmicky crime drama . 1 +108407 5737 've had more interesting -- and , dare I say , thematically complex -- bowel movements than this long-on-the-shelf , point-and-shoot exercise in gimmicky crime drama . 0 +108408 5737 've had more interesting -- and , dare I say , thematically complex -- bowel movements than this long-on-the-shelf , point-and-shoot exercise in gimmicky crime drama 1 +108409 5737 had more interesting -- and , dare I say , thematically complex -- bowel movements than this long-on-the-shelf , point-and-shoot exercise in gimmicky crime drama 0 +108410 5737 more interesting -- and , dare I say , thematically complex -- bowel movements than this long-on-the-shelf , point-and-shoot exercise in gimmicky crime drama 0 +108411 5737 more interesting -- and , dare I say , 4 +108412 5737 more interesting -- and 3 +108413 5737 more interesting -- 3 +108414 5737 , dare I say , 2 +108415 5737 dare I say , 2 +108416 5737 dare I say 2 +108417 5737 I say 2 +108418 5737 thematically complex -- bowel movements than this long-on-the-shelf , point-and-shoot exercise in gimmicky crime drama 2 +108419 5737 thematically complex 3 +108420 5737 thematically 3 +108421 5737 -- bowel movements than this long-on-the-shelf , point-and-shoot exercise in gimmicky crime drama 0 +108422 5737 bowel movements than this long-on-the-shelf , point-and-shoot exercise in gimmicky crime drama 0 +108423 5737 bowel movements 2 +108424 5737 bowel 2 +108425 5737 than this long-on-the-shelf , point-and-shoot exercise in gimmicky crime drama 1 +108426 5737 this long-on-the-shelf , point-and-shoot exercise in gimmicky crime drama 1 +108427 5737 this long-on-the-shelf , point-and-shoot exercise 2 +108428 5737 long-on-the-shelf , point-and-shoot exercise 2 +108429 5737 long-on-the-shelf 1 +108430 5737 , point-and-shoot exercise 2 +108431 5737 point-and-shoot exercise 2 +108432 5737 point-and-shoot 2 +108433 5737 in gimmicky crime drama 2 +108434 5737 gimmicky crime drama 2 +108435 5738 Woody Allen has really found his groove these days . 4 +108436 5738 has really found his groove these days . 3 +108437 5738 has really found his groove these days 4 +108438 5738 found his groove these days 3 +108439 5738 found his groove 3 +108440 5738 his groove 2 +108441 5738 groove 2 +108442 5739 A soap-opera quality twist in the last 20 minutes ... almost puts the kibosh on what is otherwise a sumptuous work of B-movie imagination . 1 +108443 5739 A soap-opera quality twist in the last 20 minutes 2 +108444 5739 A soap-opera quality twist 2 +108445 5739 soap-opera quality twist 3 +108446 5739 quality twist 3 +108447 5739 in the last 20 minutes 2 +108448 5739 the last 20 minutes 2 +108449 5739 last 20 minutes 2 +108450 5739 ... almost puts the kibosh on what is otherwise a sumptuous work of B-movie imagination . 2 +108451 5739 almost puts the kibosh on what is otherwise a sumptuous work of B-movie imagination . 2 +108452 5739 puts the kibosh on what is otherwise a sumptuous work of B-movie imagination . 1 +108453 5739 puts the kibosh on what is otherwise a sumptuous work of B-movie imagination 2 +108454 5739 the kibosh on what is otherwise a sumptuous work of B-movie imagination 2 +108455 5739 the kibosh 2 +108456 5739 kibosh 2 +108457 5739 on what is otherwise a sumptuous work of B-movie imagination 2 +108458 5739 what is otherwise a sumptuous work of B-movie imagination 4 +108459 5739 is otherwise a sumptuous work of B-movie imagination 3 +108460 5739 is otherwise 2 +108461 5739 a sumptuous work of B-movie imagination 2 +108462 5739 a sumptuous work 3 +108463 5739 sumptuous work 4 +108464 5739 of B-movie imagination 2 +108465 5739 B-movie imagination 1 +108466 5740 A coming-of-age tale from New Zealand whose boozy , languid air is balanced by a rich visual clarity and deeply felt performances across the board . 3 +108467 5740 A coming-of-age tale from New Zealand whose boozy , languid air is balanced by a rich visual clarity and deeply 3 +108468 5740 A coming-of-age tale 3 +108469 5740 from New Zealand whose boozy , languid air is balanced by a rich visual clarity and deeply 3 +108470 5740 New Zealand whose boozy , languid air is balanced by a rich visual clarity and deeply 3 +108471 5740 New Zealand 2 +108472 5740 whose boozy , languid air is balanced by a rich visual clarity and deeply 3 +108473 5740 whose boozy , languid air 2 +108474 5740 whose boozy , languid 1 +108475 5740 boozy , languid 2 +108476 5740 , languid 2 +108477 5740 languid 2 +108478 5740 is balanced by a rich visual clarity and deeply 3 +108479 5740 balanced by a rich visual clarity and deeply 4 +108480 5740 by a rich visual clarity and deeply 3 +108481 5740 a rich visual clarity and deeply 3 +108482 5740 rich visual clarity and deeply 4 +108483 5740 visual clarity and deeply 3 +108484 5740 clarity and deeply 3 +108485 5740 felt performances across the board . 3 +108486 5740 felt performances across the board 2 +108487 5740 felt performances 3 +108488 5740 across the board 2 +108489 5740 the board 2 +108490 5741 `` What really happened ? '' 2 +108491 5741 What really happened ? '' 2 +108492 5741 really happened ? '' 2 +108493 5741 really happened ? 2 +108494 5741 really happened 2 +108495 5742 ... less a story than an inexplicable nightmare , right down to the population 's shrugging acceptance to each new horror . 1 +108496 5742 less a story than an inexplicable nightmare , right down to the population 's shrugging acceptance to each new horror . 1 +108497 5742 less a story than an inexplicable nightmare , right down to the population 2 +108498 5742 less a story 1 +108499 5742 than an inexplicable nightmare , right down to the population 2 +108500 5742 an inexplicable nightmare , right down to the population 1 +108501 5742 an inexplicable nightmare , 0 +108502 5742 an inexplicable nightmare 1 +108503 5742 inexplicable nightmare 1 +108504 5742 right down to the population 2 +108505 5742 down to the population 2 +108506 5742 to the population 2 +108507 5742 the population 2 +108508 5742 's shrugging acceptance to each new horror . 2 +108509 5742 's shrugging acceptance to each new horror 2 +108510 5742 shrugging acceptance to each new horror 2 +108511 5742 shrugging acceptance 2 +108512 5742 acceptance 2 +108513 5742 to each new horror 2 +108514 5742 each new horror 2 +108515 5742 new horror 2 +108516 5743 `` The best Disney movie since the Lion King '' 4 +108517 5743 `` The best Disney movie 4 +108518 5743 The best Disney movie 4 +108519 5743 best Disney movie 4 +108520 5743 Disney movie 2 +108521 5743 since the Lion King '' 2 +108522 5743 the Lion King '' 2 +108523 5743 Lion King '' 2 +108524 5743 King '' 2 +108525 5744 A devastating indictment of unbridled greed and materalism . 0 +108526 5744 A devastating indictment of unbridled greed and materalism 2 +108527 5744 A devastating indictment 2 +108528 5744 devastating indictment 3 +108529 5744 of unbridled greed and materalism 1 +108530 5744 unbridled greed and materalism 2 +108531 5744 greed and materalism 2 +108532 5744 greed and 2 +108533 5744 greed 2 +108534 5744 materalism 2 +108535 5745 The whole movie is simply a lazy exercise in bad filmmaking that asks you to not only suspend your disbelief but your intelligence as well . 1 +108536 5745 The whole movie 2 +108537 5745 whole movie 2 +108538 5745 is simply a lazy exercise in bad filmmaking that asks you to not only suspend your disbelief but your intelligence as well . 0 +108539 5745 is simply a lazy exercise in bad filmmaking that asks you to not only suspend your disbelief but your intelligence as well 0 +108540 5745 a lazy exercise in bad filmmaking that asks you to not only suspend your disbelief but your intelligence as well 1 +108541 5745 a lazy exercise in bad filmmaking 0 +108542 5745 a lazy exercise 1 +108543 5745 lazy exercise 1 +108544 5745 in bad filmmaking 0 +108545 5745 bad filmmaking 0 +108546 5745 that asks you to not only suspend your disbelief but your intelligence as well 1 +108547 5745 asks you to not only suspend your disbelief but your intelligence as well 1 +108548 5745 asks you to not only suspend your disbelief but 2 +108549 5745 asks you to not only suspend your disbelief 2 +108550 5745 you to not only suspend your disbelief 2 +108551 5745 to not only suspend your disbelief 2 +108552 5745 not only suspend your disbelief 2 +108553 5745 your intelligence as well 2 +108554 5745 your intelligence 2 +108555 5746 Skin Of Man gets a few cheap shocks from its kids-in-peril theatrics , but it also taps into the primal fears of young people trying to cope with the mysterious and brutal nature of adults . 3 +108556 5746 Skin Of Man gets a few cheap shocks from its kids-in-peril theatrics , but it also taps into the primal fears of young people trying to cope with the mysterious and brutal nature of adults 3 +108557 5746 Skin Of Man gets a few cheap shocks from its kids-in-peril theatrics , but 1 +108558 5746 Skin Of Man gets a few cheap shocks from its kids-in-peril theatrics , 2 +108559 5746 Skin Of Man gets a few cheap shocks from its kids-in-peril theatrics 1 +108560 5746 Of Man gets a few cheap shocks from its kids-in-peril theatrics 2 +108561 5746 Of Man 2 +108562 5746 gets a few cheap shocks from its kids-in-peril theatrics 2 +108563 5746 a few cheap shocks from its kids-in-peril theatrics 2 +108564 5746 a few cheap shocks 1 +108565 5746 few cheap shocks 1 +108566 5746 cheap shocks 1 +108567 5746 from its kids-in-peril theatrics 2 +108568 5746 its kids-in-peril theatrics 2 +108569 5746 kids-in-peril theatrics 2 +108570 5746 kids-in-peril 2 +108571 5746 theatrics 2 +108572 5746 it also taps into the primal fears of young people trying to cope with the mysterious and brutal nature of adults 3 +108573 5746 also taps into the primal fears of young people trying to cope with the mysterious and brutal nature of adults 3 +108574 5746 taps into the primal fears of young people trying to cope with the mysterious and brutal nature of adults 3 +108575 5746 into the primal fears of young people trying to cope with the mysterious and brutal nature of adults 2 +108576 5746 the primal fears of young people trying to cope with the mysterious and brutal nature of adults 2 +108577 5746 the primal fears 2 +108578 5746 primal fears 2 +108579 5746 primal 2 +108580 5746 of young people trying to cope with the mysterious and brutal nature of adults 2 +108581 5746 young people trying to cope with the mysterious and brutal nature of adults 2 +108582 5746 young people 2 +108583 5746 trying to cope with the mysterious and brutal nature of adults 1 +108584 5746 to cope with the mysterious and brutal nature of adults 2 +108585 5746 cope with the mysterious and brutal nature of adults 3 +108586 5746 with the mysterious and brutal nature of adults 2 +108587 5746 the mysterious and brutal nature of adults 2 +108588 5746 the mysterious and brutal nature 2 +108589 5746 mysterious and brutal nature 1 +108590 5746 and brutal nature 2 +108591 5746 brutal nature 2 +108592 5746 of adults 2 +108593 5747 Overall , it 's a pretty mediocre family film . 2 +108594 5747 , it 's a pretty mediocre family film . 1 +108595 5747 it 's a pretty mediocre family film . 1 +108596 5747 's a pretty mediocre family film . 1 +108597 5747 's a pretty mediocre family film 1 +108598 5747 a pretty mediocre family film 1 +108599 5747 pretty mediocre family film 2 +108600 5747 pretty mediocre 1 +108601 5748 But even while his characters are acting horribly , he is always sympathetic . 3 +108602 5748 even while his characters are acting horribly , he is always sympathetic . 2 +108603 5748 even while his characters are acting horribly 0 +108604 5748 while his characters are acting horribly 1 +108605 5748 his characters are acting horribly 0 +108606 5748 are acting horribly 0 +108607 5748 acting horribly 0 +108608 5748 , he is always sympathetic . 3 +108609 5748 he is always sympathetic . 3 +108610 5748 is always sympathetic . 2 +108611 5748 is always sympathetic 3 +108612 5749 Impresses as a skillfully assembled , highly polished and professional adaptation ... just about as chilling and unsettling as ` Manhunter ' was . 4 +108613 5749 Impresses as a skillfully assembled , highly polished and professional adaptation ... just about as chilling and unsettling as ` Manhunter ' 4 +108614 5749 Impresses 3 +108615 5749 as a skillfully assembled , highly polished and professional adaptation ... just about as chilling and unsettling as ` Manhunter ' 4 +108616 5749 a skillfully assembled , highly polished and professional adaptation ... just about as chilling and unsettling as ` Manhunter ' 3 +108617 5749 a skillfully assembled , highly polished and professional adaptation ... 4 +108618 5749 a skillfully assembled , highly polished and professional adaptation 4 +108619 5749 skillfully assembled , highly polished and professional adaptation 4 +108620 5749 skillfully assembled , highly polished and professional 4 +108621 5749 skillfully assembled , highly polished and 4 +108622 5749 skillfully assembled , highly polished 4 +108623 5749 skillfully assembled , 3 +108624 5749 skillfully assembled 3 +108625 5749 highly polished 3 +108626 5749 just about as chilling and unsettling as ` Manhunter ' 2 +108627 5749 just about as chilling and unsettling 2 +108628 5749 just about as 2 +108629 5749 just about 2 +108630 5749 chilling and unsettling 2 +108631 5749 as ` Manhunter ' 2 +108632 5749 ` Manhunter ' 2 +108633 5749 Manhunter ' 2 +108634 5749 Manhunter 2 +108635 5749 was . 2 +108636 5750 An engrossing and grim portrait of hookers : what they think of themselves and their clients . 4 +108637 5750 An engrossing and grim portrait of hookers : what they think of themselves and their clients 3 +108638 5750 An engrossing and grim portrait of hookers : 2 +108639 5750 An engrossing and grim portrait of hookers 3 +108640 5750 An engrossing and grim portrait 3 +108641 5750 engrossing and grim portrait 2 +108642 5750 engrossing and grim 3 +108643 5750 of hookers 2 +108644 5750 hookers 2 +108645 5750 what they think of themselves and their clients 2 +108646 5750 they think of themselves and their clients 2 +108647 5750 think of themselves and their clients 2 +108648 5750 of themselves and their clients 2 +108649 5750 themselves and their clients 2 +108650 5750 themselves and 2 +108651 5750 their clients 2 +108652 5751 Makes the same mistake as the music industry it criticizes , becoming so slick and watered-down it almost loses what made you love it in the first place . 1 +108653 5751 Makes the same mistake as the music industry it criticizes , becoming so slick and watered-down it almost loses what made you love it in the first place 1 +108654 5751 Makes the same mistake as the music industry it criticizes , becoming so slick and watered-down it almost loses what made you love it 1 +108655 5751 Makes the same mistake as the music industry it criticizes , 1 +108656 5751 Makes the same mistake as the music industry it criticizes 2 +108657 5751 Makes the same mistake as the music industry 1 +108658 5751 the same mistake as the music industry 1 +108659 5751 the same mistake 1 +108660 5751 same mistake 2 +108661 5751 as the music industry 2 +108662 5751 the music industry 2 +108663 5751 it criticizes 2 +108664 5751 criticizes 2 +108665 5751 becoming so slick and watered-down it almost loses what made you love it 2 +108666 5751 so slick and watered-down it almost loses what made you love it 1 +108667 5751 so slick and 3 +108668 5751 so slick 2 +108669 5751 watered-down it almost loses what made you love it 1 +108670 5751 watered-down 1 +108671 5751 it almost loses what made you love it 1 +108672 5751 almost loses what made you love it 2 +108673 5751 loses what made you love it 1 +108674 5751 what made you love it 3 +108675 5751 made you love it 3 +108676 5751 you love it 3 +108677 5752 Some motion pictures portray ultimate passion ; others create ultimate thrills . 2 +108678 5752 Some motion pictures portray ultimate passion ; others create ultimate thrills 3 +108679 5752 Some motion pictures portray ultimate passion ; 2 +108680 5752 Some motion pictures portray ultimate passion 2 +108681 5752 Some motion pictures 2 +108682 5752 motion pictures 2 +108683 5752 portray ultimate passion 3 +108684 5752 ultimate passion 3 +108685 5752 others create ultimate thrills 2 +108686 5752 create ultimate thrills 4 +108687 5752 ultimate thrills 4 +108688 5753 Yet another genre exercise , Gangster No. 1 is as generic as its title . 1 +108689 5753 another genre exercise , Gangster No. 1 is as generic as its title . 0 +108690 5753 another genre exercise , Gangster No. 1 2 +108691 5753 another genre exercise , 1 +108692 5753 another genre exercise 1 +108693 5753 genre exercise 2 +108694 5753 Gangster No. 2 +108695 5753 is as generic as its title . 0 +108696 5753 is as generic as its title 1 +108697 5753 as generic as its title 1 +108698 5753 generic as its title 2 +108699 5754 First and foremost ... the reason to go see `` Blue Crush '' is the phenomenal , water-born cinematography by David Hennings . 4 +108700 5754 ... the reason to go see `` Blue Crush '' is the phenomenal , water-born cinematography by David Hennings . 4 +108701 5754 the reason to go see `` Blue Crush '' is the phenomenal , water-born cinematography by David Hennings . 3 +108702 5754 the reason to go see `` Blue Crush '' is the phenomenal , water-born cinematography by David Hennings 4 +108703 5754 the reason to go 2 +108704 5754 reason to go 3 +108705 5754 see `` Blue Crush '' is the phenomenal , water-born cinematography by David Hennings 4 +108706 5754 `` Blue Crush '' is the phenomenal , water-born cinematography by David Hennings 4 +108707 5754 Blue Crush '' is the phenomenal , water-born cinematography by David Hennings 4 +108708 5754 '' is the phenomenal , water-born cinematography by David Hennings 3 +108709 5754 is the phenomenal , water-born cinematography by David Hennings 4 +108710 5754 the phenomenal , water-born cinematography by David Hennings 4 +108711 5754 the phenomenal , water-born cinematography 3 +108712 5754 phenomenal , water-born cinematography 4 +108713 5754 , water-born cinematography 2 +108714 5754 water-born cinematography 2 +108715 5754 water-born 2 +108716 5754 by David Hennings 2 +108717 5754 David Hennings 2 +108718 5754 Hennings 2 +108719 5755 An awful lot like one of -LRB- Spears ' -RRB- music videos in content -- except that it goes on for at least 90 more minutes and , worse , that you have to pay if you want to see it . 0 +108720 5755 like one of -LRB- Spears ' -RRB- music videos in content -- except that it goes on for at least 90 more minutes and , worse , that you have to pay if you want to see it . 0 +108721 5755 like one of -LRB- Spears ' -RRB- music videos in content -- except that it goes on for at least 90 more minutes and , worse , that you have to pay if you want to see it 0 +108722 5755 like one of -LRB- Spears ' -RRB- music videos in content -- 2 +108723 5755 like one of -LRB- Spears ' -RRB- music videos in content 2 +108724 5755 like one of -LRB- Spears ' -RRB- music videos 2 +108725 5755 one of -LRB- Spears ' -RRB- music videos 2 +108726 5755 of -LRB- Spears ' -RRB- music videos 2 +108727 5755 -LRB- Spears ' -RRB- music videos 2 +108728 5755 -LRB- Spears ' -RRB- 2 +108729 5755 Spears ' -RRB- 2 +108730 5755 music videos 3 +108731 5755 in content 2 +108732 5755 except that it goes on for at least 90 more minutes and , worse , that you have to pay if you want to see it 1 +108733 5755 it goes on for at least 90 more minutes and , worse , that you have to pay if you want to see it 0 +108734 5755 goes on for at least 90 more minutes and , worse , that you have to pay if you want to see it 2 +108735 5755 goes on for at least 90 more minutes and 2 +108736 5755 goes on for at least 90 more minutes 2 +108737 5755 for at least 90 more minutes 2 +108738 5755 at least 90 more minutes 2 +108739 5755 at least 90 more 2 +108740 5755 at least 90 2 +108741 5755 , worse , that you have to pay if you want to see it 1 +108742 5755 , worse , 1 +108743 5755 , worse 1 +108744 5755 that you have to pay if you want to see it 2 +108745 5755 you have to pay if you want to see it 3 +108746 5755 have to pay if you want to see it 3 +108747 5755 to pay if you want to see it 2 +108748 5755 pay if you want to see it 2 +108749 5755 if you want to see it 2 +108750 5755 you want to see it 3 +108751 5755 want to see it 3 +108752 5756 In other words , it 's just another sports drama\/character study . 1 +108753 5756 , it 's just another sports drama\/character study . 1 +108754 5756 it 's just another sports drama\/character study . 2 +108755 5756 's just another sports drama\/character study . 2 +108756 5756 's just another sports drama\/character study 2 +108757 5756 another sports drama\/character study 2 +108758 5756 sports drama\/character study 2 +108759 5756 drama\/character study 2 +108760 5756 drama\/character 2 +108761 5757 It 's not too fast and not too slow . 3 +108762 5757 's not too fast and not too slow . 3 +108763 5757 's not too fast and not too slow 2 +108764 5757 too fast and not too slow 2 +108765 5757 too fast and 2 +108766 5757 too fast 1 +108767 5757 not too slow 2 +108768 5757 too slow 1 +108769 5758 Get out your pooper-scoopers . 0 +108770 5758 Get out your pooper-scoopers 1 +108771 5758 your pooper-scoopers 1 +108772 5758 pooper-scoopers 1 +108773 5759 The one not-so-small problem with Expecting is that the entire exercise has no real point . 1 +108774 5759 The one not-so-small problem with Expecting 1 +108775 5759 The one not-so-small problem 2 +108776 5759 one not-so-small problem 1 +108777 5759 not-so-small problem 1 +108778 5759 not-so-small 2 +108779 5759 with Expecting 2 +108780 5759 Expecting 3 +108781 5759 is that the entire exercise has no real point . 2 +108782 5759 is that the entire exercise has no real point 1 +108783 5759 that the entire exercise has no real point 1 +108784 5759 the entire exercise has no real point 1 +108785 5759 the entire exercise 2 +108786 5759 entire exercise 2 +108787 5759 has no real point 0 +108788 5759 no real point 1 +108789 5759 real point 2 +108790 5760 Starts off witty and sophisticated and you want to love it -- but filmmaker Yvan Attal quickly writes himself into a corner . 1 +108791 5760 Starts off witty and sophisticated and you want to love it -- but filmmaker Yvan Attal quickly writes himself into a corner 2 +108792 5760 Starts off witty and sophisticated and you want to love it -- 3 +108793 5760 Starts off witty and sophisticated and you want to love it 2 +108794 5760 Starts off witty and sophisticated and you 3 +108795 5760 Starts off witty and sophisticated and 3 +108796 5760 Starts off witty and sophisticated 3 +108797 5760 off witty and sophisticated 3 +108798 5760 witty and sophisticated 4 +108799 5760 want to love it 2 +108800 5760 to love it 2 +108801 5760 but filmmaker Yvan Attal quickly writes himself into a corner 1 +108802 5760 filmmaker Yvan Attal quickly writes himself into a corner 1 +108803 5760 filmmaker Yvan Attal 2 +108804 5760 Yvan Attal 2 +108805 5760 Yvan 2 +108806 5760 quickly writes himself into a corner 1 +108807 5760 writes himself into a corner 2 +108808 5760 writes himself 2 +108809 5760 writes 2 +108810 5760 into a corner 2 +108811 5760 a corner 2 +108812 5761 According to Wendigo , ` nature ' loves the members of the upper class almost as much as they love themselves . 3 +108813 5761 According to Wendigo 2 +108814 5761 to Wendigo 2 +108815 5761 , ` nature ' loves the members of the upper class almost as much as they love themselves . 2 +108816 5761 ` nature ' loves the members of the upper class almost as much as they love themselves . 1 +108817 5761 ` nature ' 2 +108818 5761 nature ' 2 +108819 5761 loves the members of the upper class almost as much as they love themselves . 2 +108820 5761 loves the members of the upper class almost as much as they love themselves 1 +108821 5761 the members of the upper class almost as much as they love themselves 2 +108822 5761 of the upper class almost as much as they love themselves 1 +108823 5761 the upper class almost as much as they love themselves 2 +108824 5761 the upper class 2 +108825 5761 upper class 2 +108826 5761 almost as much as they love themselves 1 +108827 5761 as much as they love themselves 2 +108828 5761 much as they love themselves 2 +108829 5761 as they love themselves 2 +108830 5761 they love themselves 2 +108831 5761 love themselves 2 +108832 5762 Then you get another phone call warning you that if the video is n't back at Blockbuster before midnight , you 're going to face frightening late fees . 1 +108833 5762 you get another phone call warning you that if the video is n't back at Blockbuster before midnight , you 're going to face frightening late fees . 2 +108834 5762 get another phone call warning you that if the video is n't back at Blockbuster before midnight , you 're going to face frightening late fees . 2 +108835 5762 get another phone call warning you that if the video is n't back at Blockbuster before midnight , you 're going to face frightening late fees 1 +108836 5762 another phone call warning you that if the video is n't back at Blockbuster before midnight , you 're going to face frightening late fees 1 +108837 5762 another phone 2 +108838 5762 call warning you that if the video is n't back at Blockbuster before midnight , you 're going to face frightening late fees 2 +108839 5762 warning you that if the video is n't back at Blockbuster before midnight , you 're going to face frightening late fees 2 +108840 5762 warning you 1 +108841 5762 that if the video is n't back at Blockbuster before midnight , you 're going to face frightening late fees 1 +108842 5762 if the video is n't back at Blockbuster before midnight , you 're going to face frightening late fees 0 +108843 5762 if the video is n't back at Blockbuster before midnight 2 +108844 5762 the video is n't back at Blockbuster before midnight 2 +108845 5762 is n't back at Blockbuster before midnight 2 +108846 5762 is n't back at Blockbuster 2 +108847 5762 back at Blockbuster 2 +108848 5762 at Blockbuster 3 +108849 5762 before midnight 2 +108850 5762 , you 're going to face frightening late fees 2 +108851 5762 you 're going to face frightening late fees 1 +108852 5762 're going to face frightening late fees 1 +108853 5762 going to face frightening late fees 1 +108854 5762 to face frightening late fees 1 +108855 5762 face frightening late fees 1 +108856 5762 frightening late fees 1 +108857 5762 late fees 1 +108858 5762 fees 2 +108859 5763 Often messy and frustrating , but very pleasing at its best moments , it 's very much like life itself . 3 +108860 5763 Often messy and frustrating , but very pleasing at its best moments 3 +108861 5763 messy and frustrating , but very pleasing at its best moments 3 +108862 5763 messy and frustrating , 0 +108863 5763 messy and frustrating 1 +108864 5763 messy and 1 +108865 5763 but very pleasing at its best moments 4 +108866 5763 very pleasing at its best moments 3 +108867 5763 pleasing at its best moments 3 +108868 5763 at its best moments 3 +108869 5763 its best moments 3 +108870 5763 best moments 3 +108871 5763 , it 's very much like life itself . 2 +108872 5763 it 's very much like life itself . 3 +108873 5763 's very much like life itself . 2 +108874 5763 's very much like life itself 3 +108875 5763 's very much like life 2 +108876 5763 very much like life 3 +108877 5764 But unless you 're an absolute raving Star Wars junkie , it is n't much fun . 1 +108878 5764 unless you 're an absolute raving Star Wars junkie , it is n't much fun . 1 +108879 5764 unless you 're an absolute raving Star Wars junkie 1 +108880 5764 you 're an absolute raving Star Wars junkie 1 +108881 5764 're an absolute raving Star Wars junkie 2 +108882 5764 an absolute raving Star Wars junkie 2 +108883 5764 absolute raving Star Wars junkie 2 +108884 5764 raving Star Wars junkie 2 +108885 5764 raving 2 +108886 5764 Star Wars junkie 2 +108887 5764 Wars junkie 2 +108888 5764 , it is n't much fun . 1 +108889 5764 it is n't much fun . 1 +108890 5764 is n't much fun . 1 +108891 5765 The inherent limitations of using a video game as the source material movie are once again made all too clear in this schlocky horror\/action hybrid . 1 +108892 5765 The inherent limitations of using a video game as the source material movie 1 +108893 5765 The inherent limitations 2 +108894 5765 inherent limitations 2 +108895 5765 of using a video game as the source material movie 2 +108896 5765 using a video game as the source material movie 2 +108897 5765 using a video game 2 +108898 5765 a video game 2 +108899 5765 as the source material movie 2 +108900 5765 the source material movie 3 +108901 5765 source material movie 2 +108902 5765 material movie 2 +108903 5765 are once again made all too clear in this schlocky horror\/action hybrid . 1 +108904 5765 are once again made all too clear in this schlocky horror\/action hybrid 1 +108905 5765 are once again 2 +108906 5765 made all too clear in this schlocky horror\/action hybrid 1 +108907 5765 made all too clear 2 +108908 5765 all too clear 2 +108909 5765 too clear 1 +108910 5765 in this schlocky horror\/action hybrid 2 +108911 5765 this schlocky horror\/action hybrid 1 +108912 5765 schlocky horror\/action hybrid 1 +108913 5765 horror\/action hybrid 3 +108914 5765 horror\/action 2 +108915 5766 It 's difficult for a longtime admirer of his work to not be swept up in Invincible and overlook its drawbacks . 2 +108916 5766 's difficult for a longtime admirer of his work to not be swept up in Invincible and overlook its drawbacks . 2 +108917 5766 's difficult for a longtime admirer of his work to not be swept up in Invincible and overlook its drawbacks 3 +108918 5766 's difficult for a longtime admirer of his work 2 +108919 5766 difficult for a longtime admirer of his work 2 +108920 5766 for a longtime admirer of his work 3 +108921 5766 a longtime admirer of his work 3 +108922 5766 a longtime admirer 3 +108923 5766 longtime admirer 3 +108924 5766 admirer 2 +108925 5766 of his work 2 +108926 5766 to not be swept up in Invincible and overlook its drawbacks 2 +108927 5766 not be swept up in Invincible and overlook its drawbacks 2 +108928 5766 be swept up in Invincible and overlook its drawbacks 3 +108929 5766 be swept up in Invincible and 2 +108930 5766 be swept up in Invincible 4 +108931 5766 swept up in Invincible 3 +108932 5766 swept up 2 +108933 5766 overlook its drawbacks 2 +108934 5766 its drawbacks 1 +108935 5766 drawbacks 1 +108936 5767 With this masterful , flawless film , -LRB- Wang -RRB- emerges in the front ranks of China 's now numerous , world-renowned filmmakers . 4 +108937 5767 With this masterful 3 +108938 5767 this masterful 4 +108939 5767 , flawless film , -LRB- Wang -RRB- emerges in the front ranks of China 's now numerous , world-renowned filmmakers . 4 +108940 5767 flawless film , -LRB- Wang -RRB- emerges in the front ranks of China 's now numerous , world-renowned filmmakers . 3 +108941 5767 flawless film , -LRB- Wang -RRB- 3 +108942 5767 flawless film , 4 +108943 5767 flawless film 4 +108944 5767 -LRB- Wang -RRB- 2 +108945 5767 Wang -RRB- 1 +108946 5767 emerges in the front ranks of China 's now numerous , world-renowned filmmakers . 3 +108947 5767 emerges in the front ranks of China 's now numerous , world-renowned filmmakers 3 +108948 5767 in the front ranks of China 's now numerous , world-renowned filmmakers 4 +108949 5767 the front ranks of China 's now numerous , world-renowned filmmakers 3 +108950 5767 the front ranks 2 +108951 5767 front ranks 2 +108952 5767 of China 's now numerous , world-renowned filmmakers 3 +108953 5767 China 's now numerous , world-renowned filmmakers 2 +108954 5767 now numerous , world-renowned filmmakers 3 +108955 5767 numerous , world-renowned filmmakers 3 +108956 5767 , world-renowned filmmakers 2 +108957 5767 world-renowned filmmakers 2 +108958 5767 world-renowned 3 +108959 5768 The farcical elements seemed too pat and familiar to hold my interest , yet its diverting grim message is a good one . 2 +108960 5768 The farcical elements seemed too pat and familiar to hold my interest , yet its diverting grim message is a good one 3 +108961 5768 The farcical elements seemed too pat and familiar to hold my interest , yet 2 +108962 5768 The farcical elements seemed too pat and familiar to hold my interest , 1 +108963 5768 The farcical elements seemed too pat and familiar to hold my interest 2 +108964 5768 The farcical elements 2 +108965 5768 farcical elements 2 +108966 5768 seemed too pat and familiar to hold my interest 0 +108967 5768 too pat and familiar to hold my interest 1 +108968 5768 pat and familiar to hold my interest 2 +108969 5768 pat and familiar 2 +108970 5768 pat and 2 +108971 5768 to hold my interest 2 +108972 5768 hold my interest 3 +108973 5768 its diverting grim message is a good one 3 +108974 5768 its diverting grim message 2 +108975 5768 diverting grim message 1 +108976 5768 grim message 1 +108977 5769 Much like Robin Williams , Death to Smoochy has already reached its expiration date . 1 +108978 5769 Much like Robin Williams , Death to Smoochy 2 +108979 5769 like Robin Williams , Death to Smoochy 2 +108980 5769 Robin Williams , Death to Smoochy 3 +108981 5769 Robin Williams , 2 +108982 5769 has already reached its expiration date . 2 +108983 5769 has already reached its expiration date 0 +108984 5769 has already 2 +108985 5769 reached its expiration date 1 +108986 5769 its expiration date 2 +108987 5769 expiration date 1 +108988 5769 expiration 2 +108989 5770 And for many of us , that 's good enough . 3 +108990 5770 for many of us , that 's good enough . 2 +108991 5770 for many of us 2 +108992 5770 , that 's good enough . 2 +108993 5770 that 's good enough . 3 +108994 5770 's good enough . 3 +108995 5770 's good enough 2 +108996 5771 Sinks into the usual cafeteria goulash of fart jokes , masturbation jokes , and racist Japanese jokes . 2 +108997 5771 Sinks into the usual cafeteria goulash of fart jokes , masturbation jokes , and racist Japanese jokes 1 +108998 5771 Sinks into the usual cafeteria goulash 1 +108999 5771 into the usual cafeteria goulash 2 +109000 5771 the usual cafeteria goulash 1 +109001 5771 usual cafeteria goulash 2 +109002 5771 cafeteria goulash 1 +109003 5771 cafeteria 2 +109004 5771 goulash 2 +109005 5771 of fart jokes , masturbation jokes , and racist Japanese jokes 0 +109006 5771 fart jokes , masturbation jokes , and racist Japanese jokes 1 +109007 5771 fart jokes , masturbation jokes , and 1 +109008 5771 fart jokes , masturbation jokes , 1 +109009 5771 fart jokes , masturbation jokes 2 +109010 5771 fart jokes , 1 +109011 5771 fart jokes 2 +109012 5771 masturbation jokes 1 +109013 5771 masturbation 2 +109014 5771 racist Japanese jokes 0 +109015 5771 Japanese jokes 2 +109016 5772 A puzzle whose pieces do not fit . 1 +109017 5772 puzzle whose pieces do not fit . 1 +109018 5772 puzzle whose pieces do not fit 1 +109019 5772 whose pieces do not fit 1 +109020 5772 whose pieces 2 +109021 5772 do not fit 1 +109022 5773 Though a capable thriller , somewhere along the way K-19 jettisoned some crucial drama . 1 +109023 5773 Though a capable thriller 3 +109024 5773 a capable thriller 3 +109025 5773 capable thriller 3 +109026 5773 , somewhere along the way K-19 jettisoned some crucial drama . 2 +109027 5773 somewhere along the way K-19 jettisoned some crucial drama . 3 +109028 5773 somewhere along the way K-19 2 +109029 5773 along the way K-19 2 +109030 5773 the way K-19 2 +109031 5773 way K-19 2 +109032 5773 jettisoned some crucial drama . 2 +109033 5773 jettisoned some crucial drama 2 +109034 5773 some crucial drama 2 +109035 5773 crucial drama 2 +109036 5774 A movie you observe , rather than one you enter into . 1 +109037 5774 A movie you observe 2 +109038 5774 you observe 2 +109039 5774 , rather than one you enter into . 2 +109040 5774 rather than one you enter into . 2 +109041 5774 rather than one 2 +109042 5774 you enter into . 2 +109043 5774 enter into . 2 +109044 5774 enter into 2 +109045 5775 scenario that will give most parents pause ... Then , something terrible happens . 2 +109046 5775 scenario that will give most parents pause ... Then , something terrible happens 1 +109047 5775 scenario that will give most parents pause ... 1 +109048 5775 scenario that will give most parents pause 2 +109049 5775 scenario that will give most parents 2 +109050 5775 that will give most parents 2 +109051 5775 will give most parents 2 +109052 5775 give most parents 2 +109053 5775 Then , something terrible happens 2 +109054 5775 , something terrible happens 2 +109055 5775 something terrible happens 1 +109056 5776 The ingenious construction -LRB- adapted by David Hare from Michael Cunningham 's novel -RRB- constantly flows forwards and back , weaving themes among three strands which allow us to view events as if through a prism 3 +109057 5776 The ingenious construction -LRB- adapted by David Hare from Michael Cunningham 's novel -RRB- 3 +109058 5776 The ingenious construction 3 +109059 5776 ingenious construction 2 +109060 5776 -LRB- adapted by David Hare from Michael Cunningham 's novel -RRB- 2 +109061 5776 adapted by David Hare from Michael Cunningham 's novel -RRB- 2 +109062 5776 adapted by David Hare from Michael Cunningham 's novel 2 +109063 5776 adapted 2 +109064 5776 by David Hare from Michael Cunningham 's novel 2 +109065 5776 David Hare from Michael Cunningham 's novel 2 +109066 5776 David Hare 2 +109067 5776 Hare 2 +109068 5776 from Michael Cunningham 's novel 2 +109069 5776 Michael Cunningham 's novel 2 +109070 5776 Michael Cunningham 's 2 +109071 5776 Cunningham 's 2 +109072 5776 Cunningham 2 +109073 5776 constantly flows forwards and back , weaving themes among three strands which allow us to view events as if through a prism 3 +109074 5776 flows forwards and back , weaving themes among three strands which allow us to view events as if through a prism 3 +109075 5776 flows forwards and back , 2 +109076 5776 flows forwards and back 2 +109077 5776 flows 2 +109078 5776 forwards and back 2 +109079 5776 forwards and 2 +109080 5776 forwards 2 +109081 5776 weaving themes among three strands which allow us to view events as if through a prism 3 +109082 5776 weaving themes 2 +109083 5776 among three strands which allow us to view events as if through a prism 3 +109084 5776 three strands which allow us to view events as if through a prism 2 +109085 5776 three strands 2 +109086 5776 which allow us to view events as if through a prism 2 +109087 5776 allow us to view events as if through a prism 2 +109088 5776 allow us 2 +109089 5776 to view events as if through a prism 2 +109090 5776 to view events as if 2 +109091 5776 to view events 2 +109092 5776 view events 2 +109093 5776 through a prism 1 +109094 5776 a prism 2 +109095 5777 Those who trek to the ` plex predisposed to like it probably will enjoy themselves . 3 +109096 5777 Those who trek to the ` plex predisposed to like it 2 +109097 5777 who trek to the ` plex predisposed to like it 2 +109098 5777 trek to the ` plex predisposed to like it 3 +109099 5777 to the ` plex predisposed to like it 2 +109100 5777 the ` plex predisposed to like it 2 +109101 5777 the ` plex 2 +109102 5777 ` plex 2 +109103 5777 plex 2 +109104 5777 predisposed to like it 3 +109105 5777 predisposed 2 +109106 5777 to like it 2 +109107 5777 probably will enjoy themselves . 3 +109108 5777 will enjoy themselves . 3 +109109 5777 will enjoy themselves 2 +109110 5777 enjoy themselves 3 +109111 5778 ... tackling a low-budget movie in which inexperienced children play the two main characters might not be the best way to cut your teeth in the film industry . 2 +109112 5778 tackling a low-budget movie in which inexperienced children play the two main characters might not be the best way to cut your teeth in the film industry . 2 +109113 5778 tackling a low-budget movie in which inexperienced children play the two main characters might not be the best way to cut your teeth in the film industry 1 +109114 5778 tackling a low-budget movie in which inexperienced children play the two main characters 1 +109115 5778 a low-budget movie in which inexperienced children play the two main characters 1 +109116 5778 a low-budget movie 2 +109117 5778 low-budget movie 1 +109118 5778 in which inexperienced children play the two main characters 2 +109119 5778 inexperienced children play the two main characters 1 +109120 5778 inexperienced children 2 +109121 5778 play the two main characters 2 +109122 5778 the two main characters 2 +109123 5778 two main characters 2 +109124 5778 might not be the best way to cut your teeth in the film industry 1 +109125 5778 be the best way to cut your teeth in the film industry 2 +109126 5778 the best way to cut your teeth in the film industry 2 +109127 5778 to cut your teeth in the film industry 2 +109128 5778 cut your teeth in the film industry 2 +109129 5778 cut your teeth 2 +109130 5778 in the film industry 2 +109131 5778 the film industry 2 +109132 5779 Ignoring that , he made Swimfan anyway 1 +109133 5779 Ignoring 2 +109134 5779 that , he made Swimfan anyway 2 +109135 5779 he made Swimfan anyway 2 +109136 5779 made Swimfan anyway 3 +109137 5779 made Swimfan 2 +109138 5780 About as enjoyable , I would imagine , as searching for a quarter in a giant pile of elephant feces ... positively dreadful . 0 +109139 5780 About as enjoyable 3 +109140 5780 as enjoyable 2 +109141 5780 , I would imagine , as searching for a quarter in a giant pile of elephant feces ... positively dreadful . 0 +109142 5780 I would imagine , as searching for a quarter in a giant pile of elephant feces ... positively dreadful . 0 +109143 5780 would imagine , as searching for a quarter in a giant pile of elephant feces ... positively dreadful . 2 +109144 5780 would imagine , as searching for a quarter in a giant pile of elephant feces ... positively dreadful 0 +109145 5780 imagine , as searching for a quarter in a giant pile of elephant feces ... positively dreadful 0 +109146 5780 imagine , 2 +109147 5780 as searching for a quarter in a giant pile of elephant feces ... positively dreadful 0 +109148 5780 searching for a quarter in a giant pile of elephant feces ... positively dreadful 0 +109149 5780 searching for a quarter in a giant pile of elephant feces ... 0 +109150 5780 searching for a quarter in a giant pile of elephant feces 0 +109151 5780 searching for a quarter 2 +109152 5780 for a quarter 2 +109153 5780 a quarter 2 +109154 5780 in a giant pile of elephant feces 0 +109155 5780 a giant pile of elephant feces 0 +109156 5780 a giant pile 2 +109157 5780 giant pile 2 +109158 5780 of elephant feces 0 +109159 5780 elephant feces 1 +109160 5780 elephant 2 +109161 5780 positively dreadful 0 +109162 5781 Though intrepid in exploring an attraction that crosses sexual identity , Ozpetek falls short in showing us Antonia 's true emotions ... But at the very least , His Secret Life will leave you thinking . 3 +109163 5781 Though intrepid in exploring an attraction that crosses sexual identity , Ozpetek falls short in showing us Antonia 's true emotions ... But at the very least , His Secret Life will leave you thinking 3 +109164 5781 Though intrepid in exploring an attraction that crosses sexual identity , Ozpetek falls short in showing us Antonia 's true emotions ... But 1 +109165 5781 Though intrepid in exploring an attraction that crosses sexual identity , Ozpetek falls short in showing us Antonia 's true emotions ... 3 +109166 5781 Though intrepid in exploring an attraction that crosses sexual identity , Ozpetek falls short in showing us Antonia 's true emotions 2 +109167 5781 Though intrepid in exploring an attraction that crosses sexual identity 3 +109168 5781 intrepid in exploring an attraction that crosses sexual identity 3 +109169 5781 intrepid 3 +109170 5781 in exploring an attraction that crosses sexual identity 3 +109171 5781 exploring an attraction that crosses sexual identity 2 +109172 5781 an attraction that crosses sexual identity 3 +109173 5781 that crosses sexual identity 2 +109174 5781 crosses sexual identity 2 +109175 5781 sexual identity 2 +109176 5781 , Ozpetek falls short in showing us Antonia 's true emotions 2 +109177 5781 Ozpetek falls short in showing us Antonia 's true emotions 1 +109178 5781 falls short in showing us Antonia 's true emotions 1 +109179 5781 short in showing us Antonia 's true emotions 2 +109180 5781 in showing us Antonia 's true emotions 2 +109181 5781 showing us Antonia 's true emotions 2 +109182 5781 Antonia 's true emotions 2 +109183 5781 Antonia 's 2 +109184 5781 true emotions 3 +109185 5781 at the very least , His Secret Life will leave you thinking 2 +109186 5781 , His Secret Life will leave you thinking 3 +109187 5781 His Secret Life will leave you thinking 2 +109188 5781 will leave you thinking 3 +109189 5781 leave you thinking 2 +109190 5781 you thinking 2 +109191 5782 A conventional , but well-crafted film about a historic legal battle in Ireland over a man 's right to raise his own children . 3 +109192 5782 A conventional , but well-crafted film about a historic legal battle in Ireland over a man 3 +109193 5782 A conventional , but well-crafted film 3 +109194 5782 conventional , but well-crafted film 3 +109195 5782 conventional , but well-crafted 3 +109196 5782 conventional , but 2 +109197 5782 conventional , 1 +109198 5782 about a historic legal battle in Ireland over a man 2 +109199 5782 a historic legal battle in Ireland over a man 2 +109200 5782 a historic legal battle 2 +109201 5782 historic legal battle 2 +109202 5782 historic 3 +109203 5782 legal battle 1 +109204 5782 in Ireland over a man 3 +109205 5782 Ireland over a man 2 +109206 5782 over a man 2 +109207 5782 's right to raise his own children . 2 +109208 5782 's right to raise his own children 2 +109209 5782 right to raise his own children 2 +109210 5782 to raise his own children 2 +109211 5782 raise his own children 2 +109212 5782 raise 2 +109213 5782 his own children 2 +109214 5782 own children 2 +109215 5783 This is just lazy writing . 0 +109216 5783 is just lazy writing . 0 +109217 5783 is just lazy writing 0 +109218 5783 is just lazy 0 +109219 5783 just lazy 1 +109220 5784 Hart 's War seems to want to be a character study , but apparently ca n't quite decide which character . 1 +109221 5784 Hart 's War 2 +109222 5784 Hart 's 2 +109223 5784 Hart 2 +109224 5784 seems to want to be a character study , but apparently ca n't quite decide which character . 1 +109225 5784 seems to want to be a character study , but apparently ca n't quite decide which character 2 +109226 5784 seems to want to be a character study , but apparently 1 +109227 5784 seems to want to be a character study , but 2 +109228 5784 seems to want to be a character study , 1 +109229 5784 seems to want to be a character study 2 +109230 5784 to want to be a character study 2 +109231 5784 want to be a character study 2 +109232 5784 to be a character study 2 +109233 5784 be a character study 2 +109234 5784 a character study 2 +109235 5784 ca n't quite decide which character 2 +109236 5784 decide which character 2 +109237 5784 which character 2 +109238 5785 Contrived , awkward and filled with unintended laughs , the film shows signs that someone other than the director got into the editing room and tried to improve things by making the movie go faster . 0 +109239 5785 Contrived , awkward and filled with unintended laughs 0 +109240 5785 Contrived , awkward and 1 +109241 5785 Contrived , awkward 1 +109242 5785 Contrived , 2 +109243 5785 filled with unintended laughs 2 +109244 5785 with unintended laughs 2 +109245 5785 unintended laughs 2 +109246 5785 unintended 2 +109247 5785 , the film shows signs that someone other than the director got into the editing room and tried to improve things by making the movie go faster . 1 +109248 5785 the film shows signs that someone other than the director got into the editing room and tried to improve things by making the movie go faster . 1 +109249 5785 shows signs that someone other than the director got into the editing room and tried to improve things by making the movie go faster . 2 +109250 5785 shows signs that someone other than the director got into the editing room and tried to improve things by making the movie go faster 2 +109251 5785 shows signs 2 +109252 5785 that someone other than the director got into the editing room and tried to improve things by making the movie go faster 1 +109253 5785 someone other than the director got into the editing room and tried to improve things by making the movie go faster 1 +109254 5785 someone other than the director 1 +109255 5785 someone other 2 +109256 5785 than the director 2 +109257 5785 got into the editing room and tried to improve things by making the movie go faster 2 +109258 5785 got into the editing room and 2 +109259 5785 got into the editing room 2 +109260 5785 into the editing room 2 +109261 5785 the editing room 2 +109262 5785 editing room 2 +109263 5785 tried to improve things by making the movie go faster 2 +109264 5785 to improve things by making the movie go faster 2 +109265 5785 improve things by making the movie go faster 2 +109266 5785 improve things 2 +109267 5785 by making the movie go faster 2 +109268 5785 making the movie go faster 2 +109269 5785 the movie go faster 2 +109270 5785 go faster 2 +109271 5786 The movie is about as humorous as watching your favorite pet get buried alive . 0 +109272 5786 is about as humorous as watching your favorite pet get buried alive . 1 +109273 5786 is about as humorous as watching your favorite pet get buried alive 0 +109274 5786 is about as humorous as 2 +109275 5786 about as humorous as 2 +109276 5786 about as humorous 1 +109277 5786 watching your favorite pet get buried alive 0 +109278 5786 your favorite pet get buried alive 1 +109279 5786 your favorite pet 2 +109280 5786 favorite pet 2 +109281 5786 pet 2 +109282 5786 get buried alive 2 +109283 5786 buried alive 2 +109284 5787 A riveting documentary . 4 +109285 5787 riveting documentary . 4 +109286 5788 MY LITTLE EYE is the best little `` horror '' movie I 've seen in years . 4 +109287 5788 MY LITTLE EYE 2 +109288 5788 LITTLE EYE 2 +109289 5788 is the best little `` horror '' movie I 've seen in years . 4 +109290 5788 is the best little `` horror '' movie I 've seen in years 4 +109291 5788 the best little `` horror '' movie I 've seen in years 4 +109292 5788 the best little `` horror '' movie 3 +109293 5788 best little `` horror '' movie 3 +109294 5788 best little 3 +109295 5788 `` horror '' movie 2 +109296 5788 horror '' movie 2 +109297 5788 '' movie 2 +109298 5788 I 've seen in years 2 +109299 5788 've seen in years 2 +109300 5788 seen in years 3 +109301 5789 Unfortunately , a cast of competent performers from movies , television and the theater are cast adrift in various New York City locations with no unifying rhythm or visual style . 1 +109302 5789 , a cast of competent performers from movies , television and the theater are cast adrift in various New York City locations with no unifying rhythm or visual style . 1 +109303 5789 a cast of competent performers from movies , television and the theater are cast adrift in various New York City locations with no unifying rhythm or visual style . 1 +109304 5789 a cast of competent performers from movies , television and the theater 3 +109305 5789 of competent performers from movies , television and the theater 2 +109306 5789 competent performers from movies , television and the theater 3 +109307 5789 competent performers 3 +109308 5789 from movies , television and the theater 2 +109309 5789 movies , television and the theater 3 +109310 5789 movies , television and 2 +109311 5789 movies , television 2 +109312 5789 movies , 2 +109313 5789 are cast adrift in various New York City locations with no unifying rhythm or visual style . 1 +109314 5789 are cast adrift in various New York City locations with no unifying rhythm or visual style 1 +109315 5789 cast adrift in various New York City locations with no unifying rhythm or visual style 1 +109316 5789 cast adrift in various New York City locations 2 +109317 5789 adrift in various New York City locations 1 +109318 5789 in various New York City locations 2 +109319 5789 various New York City locations 2 +109320 5789 New York City locations 2 +109321 5789 York City locations 2 +109322 5789 City locations 2 +109323 5789 with no unifying rhythm or visual style 2 +109324 5789 no unifying rhythm or visual style 1 +109325 5789 no unifying rhythm or 0 +109326 5789 no unifying rhythm 1 +109327 5789 unifying rhythm 3 +109328 5789 unifying 3 +109329 5790 Reveals how important our special talents can be when put in service of of others . 3 +109330 5790 Reveals how important our special talents can be when put in service of of others 3 +109331 5790 how important our special talents can be when put in service of of others 3 +109332 5790 how important 2 +109333 5790 our special talents can be when put in service of of others 3 +109334 5790 our special talents 2 +109335 5790 special talents 2 +109336 5790 can be when put in service of of others 2 +109337 5790 be when put in service of of others 2 +109338 5790 when put in service of of others 2 +109339 5790 put in service of of others 2 +109340 5790 in service of of others 2 +109341 5790 service of of others 3 +109342 5790 of of others 2 +109343 5791 Crush is so warm and fuzzy you might be able to forgive its mean-spirited second half . 3 +109344 5791 is so warm and fuzzy you might be able to forgive its mean-spirited second half . 3 +109345 5791 is so warm and fuzzy you might be able to forgive its mean-spirited second half 3 +109346 5791 is so warm and fuzzy 3 +109347 5791 so warm and fuzzy 4 +109348 5791 warm and fuzzy 3 +109349 5791 you might be able to forgive its mean-spirited second half 2 +109350 5791 might be able to forgive its mean-spirited second half 2 +109351 5791 be able to forgive its mean-spirited second half 2 +109352 5791 able to forgive its mean-spirited second half 3 +109353 5791 to forgive its mean-spirited second half 2 +109354 5791 forgive its mean-spirited second half 1 +109355 5791 its mean-spirited second half 1 +109356 5791 mean-spirited second half 1 +109357 5792 The film 's desire to be liked sometimes undermines the possibility for an exploration of the thornier aspects of the nature\/nurture argument in regards to homosexuality . 1 +109358 5792 The film 's desire to be liked sometimes 1 +109359 5792 desire to be liked sometimes 2 +109360 5792 to be liked sometimes 2 +109361 5792 be liked sometimes 3 +109362 5792 liked sometimes 3 +109363 5792 undermines the possibility for an exploration of the thornier aspects of the nature\/nurture argument in regards to homosexuality . 2 +109364 5792 undermines the possibility for an exploration of the thornier aspects of the nature\/nurture argument in regards to homosexuality 1 +109365 5792 undermines the possibility for an exploration of the thornier aspects of the nature\/nurture argument in regards 1 +109366 5792 undermines 2 +109367 5792 the possibility for an exploration of the thornier aspects of the nature\/nurture argument in regards 2 +109368 5792 for an exploration of the thornier aspects of the nature\/nurture argument in regards 2 +109369 5792 an exploration of the thornier aspects of the nature\/nurture argument in regards 2 +109370 5792 of the thornier aspects of the nature\/nurture argument in regards 2 +109371 5792 the thornier aspects of the nature\/nurture argument in regards 2 +109372 5792 the thornier aspects 1 +109373 5792 thornier aspects 2 +109374 5792 thornier 1 +109375 5792 of the nature\/nurture argument in regards 2 +109376 5792 the nature\/nurture argument in regards 2 +109377 5792 the nature\/nurture argument 2 +109378 5792 nature\/nurture argument 2 +109379 5792 nature\/nurture 2 +109380 5792 argument 2 +109381 5792 in regards 2 +109382 5792 regards 2 +109383 5792 to homosexuality 2 +109384 5793 Jolie gives it that extra little something that makes it worth checking out at theaters , especially if you 're in the mood for something more comfortable than challenging . 3 +109385 5793 gives it that extra little something that makes it worth checking out at theaters , especially if you 're in the mood for something more comfortable than challenging . 3 +109386 5793 gives it that extra little something that makes it worth checking out at theaters , especially if you 're in the mood for something more comfortable than challenging 3 +109387 5793 gives it that extra little something that makes it worth checking out at theaters , 3 +109388 5793 gives it that extra little something that makes it worth checking out at theaters 3 +109389 5793 that extra little something that makes it worth checking out at theaters 3 +109390 5793 that extra little something 3 +109391 5793 extra little something 3 +109392 5793 little something 2 +109393 5793 that makes it worth checking out at theaters 4 +109394 5793 makes it worth checking out at theaters 3 +109395 5793 it worth checking out at theaters 3 +109396 5793 worth checking out at theaters 3 +109397 5793 checking out at theaters 2 +109398 5793 checking out 2 +109399 5793 checking 2 +109400 5793 at theaters 3 +109401 5793 especially if you 're in the mood for something more comfortable than challenging 2 +109402 5793 if you 're in the mood for something more comfortable than challenging 3 +109403 5793 you 're in the mood for something more comfortable than challenging 2 +109404 5793 're in the mood for something more comfortable than challenging 2 +109405 5793 're in the mood for something 2 +109406 5793 in the mood for something 2 +109407 5793 the mood for something 2 +109408 5793 more comfortable than challenging 2 +109409 5793 comfortable than challenging 2 +109410 5793 than challenging 2 +109411 5794 Unfortunately , we 'd prefer a simple misfire . 1 +109412 5794 , we 'd prefer a simple misfire . 1 +109413 5794 we 'd prefer a simple misfire . 2 +109414 5794 'd prefer a simple misfire . 2 +109415 5794 'd prefer a simple misfire 1 +109416 5794 prefer a simple misfire 2 +109417 5794 a simple misfire 1 +109418 5794 simple misfire 1 +109419 5795 This is very much of a mixed bag , with enough negatives to outweigh the positives . 1 +109420 5795 is very much of a mixed bag , with enough negatives to outweigh the positives . 1 +109421 5795 is very much of a mixed bag , with enough negatives to outweigh the positives 2 +109422 5795 is very much of a mixed bag , with enough negatives 1 +109423 5795 very much of a mixed bag , with enough negatives 2 +109424 5795 much of a mixed bag , with enough negatives 1 +109425 5795 of a mixed bag , with enough negatives 1 +109426 5795 of a mixed bag 2 +109427 5795 , with enough negatives 1 +109428 5795 with enough negatives 1 +109429 5795 enough negatives 2 +109430 5795 negatives 1 +109431 5795 to outweigh the positives 2 +109432 5795 outweigh the positives 1 +109433 5795 outweigh 2 +109434 5795 the positives 3 +109435 5795 positives 3 +109436 5796 Although tender and touching , the movie would have benefited from a little more dramatic tension and some more editing . 2 +109437 5796 Although tender and touching 3 +109438 5796 tender and touching 4 +109439 5796 tender and 3 +109440 5796 , the movie would have benefited from a little more dramatic tension and some more editing . 1 +109441 5796 the movie would have benefited from a little more dramatic tension and some more editing . 1 +109442 5796 would have benefited from a little more dramatic tension and some more editing . 1 +109443 5796 would have benefited from a little more dramatic tension and some more editing 1 +109444 5796 have benefited from a little more dramatic tension and some more editing 1 +109445 5796 benefited from a little more dramatic tension and some more editing 2 +109446 5796 from a little more dramatic tension and some more editing 2 +109447 5796 a little more dramatic tension and some more editing 3 +109448 5796 a little more dramatic tension and 2 +109449 5796 a little more dramatic tension 2 +109450 5796 little more dramatic tension 2 +109451 5796 little more dramatic 3 +109452 5796 more dramatic 2 +109453 5796 some more editing 2 +109454 5796 more editing 1 +109455 5797 Officially , it is twice as bestial but half as funny . 1 +109456 5797 Officially 2 +109457 5797 , it is twice as bestial but half as funny . 1 +109458 5797 it is twice as bestial but half as funny . 2 +109459 5797 is twice as bestial but half as funny . 1 +109460 5797 is twice as bestial but half as funny 1 +109461 5797 twice as bestial but half as funny 1 +109462 5797 twice as bestial but half 2 +109463 5797 twice as bestial but 2 +109464 5797 twice as bestial 2 +109465 5797 as bestial 1 +109466 5797 bestial 2 +109467 5798 An ugly-duckling tale so hideously and clumsily told it feels accidental . 0 +109468 5798 An ugly-duckling tale so hideously and clumsily 1 +109469 5798 An ugly-duckling tale 2 +109470 5798 ugly-duckling tale 2 +109471 5798 ugly-duckling 1 +109472 5798 so hideously and clumsily 1 +109473 5798 hideously and clumsily 0 +109474 5798 hideously and 0 +109475 5798 told it feels accidental . 2 +109476 5798 told it feels accidental 2 +109477 5798 it feels accidental 1 +109478 5798 feels accidental 2 +109479 5798 accidental 2 +109480 5799 About the best thing you could say about Narc is that it 's a rock-solid little genre picture . 3 +109481 5799 About the best thing you could say about Narc 1 +109482 5799 About the best thing 2 +109483 5799 you could say about Narc 2 +109484 5799 could say about Narc 2 +109485 5799 say about Narc 2 +109486 5799 about Narc 2 +109487 5799 is that it 's a rock-solid little genre picture . 3 +109488 5799 is that it 's a rock-solid little genre picture 4 +109489 5799 that it 's a rock-solid little genre picture 4 +109490 5799 it 's a rock-solid little genre picture 4 +109491 5799 's a rock-solid little genre picture 3 +109492 5799 a rock-solid little genre picture 3 +109493 5799 rock-solid little genre picture 3 +109494 5799 little genre picture 2 +109495 5799 genre picture 2 +109496 5800 A film that should be relegated to a dark video store corner is somehow making its way instead to theaters . 0 +109497 5800 A film that should be relegated to a dark video store corner 1 +109498 5800 that should be relegated to a dark video store corner 0 +109499 5800 should be relegated to a dark video store corner 0 +109500 5800 be relegated to a dark video store corner 1 +109501 5800 relegated to a dark video store corner 1 +109502 5800 to a dark video store corner 2 +109503 5800 a dark video store corner 2 +109504 5800 dark video store corner 2 +109505 5800 video store corner 2 +109506 5800 store corner 2 +109507 5800 is somehow making its way instead to theaters . 1 +109508 5800 is somehow making its way instead to theaters 1 +109509 5800 making its way instead to theaters 2 +109510 5800 making its way 2 +109511 5800 instead to theaters 2 +109512 5800 to theaters 2 +109513 5801 Deserves high marks for political courage but barely gets by on its artistic merits . 2 +109514 5801 high marks for political courage but barely gets by on its artistic merits . 2 +109515 5801 marks for political courage but barely gets by on its artistic merits . 2 +109516 5801 marks for political courage but barely gets by on its artistic merits 2 +109517 5801 marks for political courage but 2 +109518 5801 marks for political courage 3 +109519 5801 for political courage 3 +109520 5801 political courage 3 +109521 5801 barely gets by on its artistic merits 1 +109522 5801 gets by on its artistic merits 2 +109523 5801 by on its artistic merits 2 +109524 5801 on its artistic merits 2 +109525 5801 its artistic merits 2 +109526 5801 artistic merits 3 +109527 5802 It 's Young Guns meets Goodfellas in this easily skippable hayseeds-vs . 2 +109528 5802 It 's Young Guns 2 +109529 5802 Young Guns 2 +109530 5802 meets Goodfellas in this easily skippable hayseeds-vs . 0 +109531 5802 meets Goodfellas in this easily skippable hayseeds-vs 1 +109532 5802 Goodfellas in this easily skippable hayseeds-vs 1 +109533 5802 in this easily skippable hayseeds-vs 1 +109534 5802 this easily skippable hayseeds-vs 2 +109535 5802 easily skippable hayseeds-vs 2 +109536 5802 easily skippable 1 +109537 5802 skippable 1 +109538 5802 hayseeds-vs 2 +109539 5803 ... unbearably lame . 0 +109540 5803 unbearably lame . 0 +109541 5803 lame . 0 +109542 5804 Real-life strongman Ahola lacks the charisma and ability to carry the film on his admittedly broad shoulders . 1 +109543 5804 Real-life strongman Ahola 2 +109544 5804 strongman Ahola 2 +109545 5804 strongman 2 +109546 5804 lacks the charisma and ability to carry the film on his admittedly broad shoulders . 1 +109547 5804 lacks the charisma and ability to carry the film on his admittedly broad shoulders 2 +109548 5804 lacks the charisma and ability 0 +109549 5804 the charisma and ability 3 +109550 5804 charisma and ability 3 +109551 5804 charisma and 3 +109552 5804 to carry the film on his admittedly broad shoulders 2 +109553 5804 carry the film on his admittedly broad shoulders 3 +109554 5804 carry the film 3 +109555 5804 on his admittedly broad shoulders 2 +109556 5804 his admittedly broad shoulders 2 +109557 5804 admittedly broad shoulders 2 +109558 5804 admittedly broad 2 +109559 5805 An artful yet depressing film that makes a melodramatic mountain out of the molehill of a missing bike . 1 +109560 5805 An artful yet depressing film that makes a melodramatic mountain out of the molehill of a missing bike 1 +109561 5805 An artful yet depressing film that makes a melodramatic mountain out of the molehill 2 +109562 5805 An artful yet depressing film that makes a melodramatic mountain out 2 +109563 5805 An artful yet depressing film 2 +109564 5805 artful yet depressing film 2 +109565 5805 yet depressing film 1 +109566 5805 yet depressing 1 +109567 5805 that makes a melodramatic mountain out 2 +109568 5805 makes a melodramatic mountain out 2 +109569 5805 makes a melodramatic mountain 3 +109570 5805 a melodramatic mountain 2 +109571 5805 melodramatic mountain 3 +109572 5805 of the molehill 2 +109573 5805 the molehill 1 +109574 5805 molehill 2 +109575 5805 of a missing bike 2 +109576 5805 a missing bike 2 +109577 5805 missing bike 2 +109578 5806 It 's got the brawn , but not the brains . 1 +109579 5806 's got the brawn , but not the brains . 2 +109580 5806 's got the brawn , but not the brains 1 +109581 5806 got the brawn , but not the brains 1 +109582 5806 the brawn , but not the brains 1 +109583 5806 the brawn , but not 3 +109584 5806 the brawn , 2 +109585 5806 the brawn 3 +109586 5806 brawn 2 +109587 5806 the brains 2 +109588 5807 Too ordinary to restore -LRB- Harmon -RRB- to prominence , despite some creepy scenes that evoke childish night terrors , and a praiseworthy attempt to generate suspense rather than gross out the audience . 2 +109589 5807 Too ordinary 1 +109590 5807 to restore -LRB- Harmon -RRB- to prominence , despite some creepy scenes that evoke childish night terrors , and a praiseworthy attempt to generate suspense rather than gross out the audience . 3 +109591 5807 to restore -LRB- Harmon -RRB- to prominence , despite some creepy scenes that evoke childish night terrors , and a praiseworthy attempt to generate suspense rather than gross out the audience 3 +109592 5807 restore -LRB- Harmon -RRB- to prominence , despite some creepy scenes that evoke childish night terrors , and a praiseworthy attempt to generate suspense rather than gross out the audience 2 +109593 5807 restore -LRB- Harmon -RRB- to prominence , 3 +109594 5807 restore -LRB- Harmon -RRB- to prominence 2 +109595 5807 restore 3 +109596 5807 -LRB- Harmon -RRB- to prominence 2 +109597 5807 -LRB- Harmon -RRB- 3 +109598 5807 Harmon -RRB- 2 +109599 5807 to prominence 2 +109600 5807 prominence 2 +109601 5807 despite some creepy scenes that evoke childish night terrors , and a praiseworthy attempt to generate suspense rather than gross out the audience 3 +109602 5807 some creepy scenes that evoke childish night terrors , and a praiseworthy attempt to generate suspense rather than gross out the audience 3 +109603 5807 some creepy scenes that evoke childish night terrors , and 2 +109604 5807 some creepy scenes that evoke childish night terrors , 2 +109605 5807 some creepy scenes that evoke childish night terrors 2 +109606 5807 some creepy scenes 1 +109607 5807 creepy scenes 2 +109608 5807 that evoke childish night terrors 1 +109609 5807 evoke childish night terrors 1 +109610 5807 childish night terrors 2 +109611 5807 night terrors 2 +109612 5807 terrors 2 +109613 5807 a praiseworthy attempt to generate suspense rather than gross out the audience 4 +109614 5807 praiseworthy attempt to generate suspense rather than gross out the audience 3 +109615 5807 praiseworthy 4 +109616 5807 attempt to generate suspense rather than gross out the audience 3 +109617 5807 to generate suspense rather than gross out the audience 2 +109618 5807 generate suspense rather than gross out the audience 3 +109619 5807 generate suspense rather than 2 +109620 5807 generate suspense 3 +109621 5807 gross out the audience 1 +109622 5807 gross out 1 +109623 5808 A sentimental hybrid that could benefit from the spice of specificity . 3 +109624 5808 A sentimental hybrid that could benefit from the spice of specificity 2 +109625 5808 A sentimental hybrid 3 +109626 5808 sentimental hybrid 2 +109627 5808 that could benefit from the spice of specificity 2 +109628 5808 could benefit from the spice of specificity 2 +109629 5808 benefit from the spice of specificity 2 +109630 5808 from the spice of specificity 2 +109631 5808 the spice of specificity 2 +109632 5808 the spice 2 +109633 5808 of specificity 2 +109634 5808 specificity 2 +109635 5809 The slapstick is labored , and the bigger setpieces flat . 0 +109636 5809 The slapstick is labored , and the bigger setpieces flat 0 +109637 5809 The slapstick is labored , and 0 +109638 5809 The slapstick is labored , 1 +109639 5809 The slapstick is labored 1 +109640 5809 The slapstick 2 +109641 5809 is labored 1 +109642 5809 the bigger setpieces flat 1 +109643 5809 the bigger setpieces 2 +109644 5809 bigger setpieces 2 +109645 5810 Miyazaki has created such a vibrant , colorful world , it 's almost impossible not to be swept away by the sheer beauty of his images . 4 +109646 5810 Miyazaki has created such a vibrant , colorful world 3 +109647 5810 has created such a vibrant , colorful world 3 +109648 5810 created such a vibrant , colorful world 4 +109649 5810 such a vibrant , colorful world 4 +109650 5810 a vibrant , colorful world 4 +109651 5810 vibrant , colorful world 3 +109652 5810 , colorful world 2 +109653 5810 colorful world 3 +109654 5810 , it 's almost impossible not to be swept away by the sheer beauty of his images . 4 +109655 5810 it 's almost impossible not to be swept away by the sheer beauty of his images . 4 +109656 5810 's almost impossible not to be swept away by the sheer beauty of his images . 4 +109657 5810 's almost impossible not to be swept away by the sheer beauty of his images 4 +109658 5810 's almost impossible 2 +109659 5810 almost impossible 1 +109660 5810 not to be swept away by the sheer beauty of his images 3 +109661 5810 to be swept away by the sheer beauty of his images 3 +109662 5810 be swept away by the sheer beauty of his images 3 +109663 5810 swept away by the sheer beauty of his images 4 +109664 5810 by the sheer beauty of his images 3 +109665 5810 the sheer beauty of his images 3 +109666 5810 the sheer beauty 3 +109667 5810 sheer beauty 3 +109668 5810 of his images 2 +109669 5810 his images 2 +109670 5811 Less than fresh . 1 +109671 5811 Less than fresh 0 +109672 5811 than fresh 2 +109673 5812 It squanders Chan 's uniqueness ; it could even be said to squander Jennifer Love Hewitt ! 1 +109674 5812 It squanders Chan 's uniqueness ; it could even be said to squander Jennifer Love Hewitt 2 +109675 5812 It squanders Chan 's uniqueness ; 1 +109676 5812 It squanders Chan 's uniqueness 1 +109677 5812 squanders Chan 's uniqueness 1 +109678 5812 Chan 's uniqueness 3 +109679 5812 uniqueness 3 +109680 5812 it could even be said to squander Jennifer Love Hewitt 2 +109681 5812 could even be said to squander Jennifer Love Hewitt 2 +109682 5812 could even 2 +109683 5812 be said to squander Jennifer Love Hewitt 1 +109684 5812 said to squander Jennifer Love Hewitt 1 +109685 5812 to squander Jennifer Love Hewitt 1 +109686 5812 squander Jennifer Love Hewitt 1 +109687 5812 squander 2 +109688 5812 Jennifer Love Hewitt 2 +109689 5812 Love Hewitt 2 +109690 5813 This is the sort of low-grade dreck that usually goes straight to video -- with a lousy script , inept direction , pathetic acting , poorly dubbed dialogue and murky cinematography , complete with visible boom mikes . 0 +109691 5813 is the sort of low-grade dreck that usually goes straight to video -- with a lousy script , inept direction , pathetic acting , poorly dubbed dialogue and murky cinematography , complete with visible boom mikes . 0 +109692 5813 is the sort of low-grade dreck that usually goes straight to video -- with a lousy script , inept direction , pathetic acting , poorly dubbed dialogue and murky cinematography , complete with visible boom mikes 0 +109693 5813 the sort of low-grade dreck that usually goes straight to video -- with a lousy script , inept direction , pathetic acting , poorly dubbed dialogue and murky cinematography , complete with visible boom mikes 0 +109694 5813 of low-grade dreck that usually goes straight to video -- with a lousy script , inept direction , pathetic acting , poorly dubbed dialogue and murky cinematography , complete with visible boom mikes 0 +109695 5813 low-grade dreck that usually goes straight to video -- with a lousy script , inept direction , pathetic acting , poorly dubbed dialogue and murky cinematography , complete with visible boom mikes 0 +109696 5813 low-grade dreck that usually goes straight to video -- with a lousy script , inept direction , pathetic acting , poorly dubbed dialogue and murky cinematography , 1 +109697 5813 low-grade dreck that usually goes straight to video -- with a lousy script , inept direction , pathetic acting , poorly dubbed dialogue and murky cinematography 0 +109698 5813 low-grade dreck 0 +109699 5813 low-grade 1 +109700 5813 that usually goes straight to video -- with a lousy script , inept direction , pathetic acting , poorly dubbed dialogue and murky cinematography 0 +109701 5813 usually goes straight to video -- with a lousy script , inept direction , pathetic acting , poorly dubbed dialogue and murky cinematography 0 +109702 5813 goes straight to video -- with a lousy script , inept direction , pathetic acting , poorly dubbed dialogue and murky cinematography 0 +109703 5813 goes straight to video -- 2 +109704 5813 goes straight to video 1 +109705 5813 straight to video 1 +109706 5813 with a lousy script , inept direction , pathetic acting , poorly dubbed dialogue and murky cinematography 0 +109707 5813 a lousy script , inept direction , pathetic acting , poorly dubbed dialogue and murky cinematography 1 +109708 5813 a lousy script , 0 +109709 5813 a lousy script 0 +109710 5813 lousy script 1 +109711 5813 inept direction , pathetic acting , poorly dubbed dialogue and murky cinematography 0 +109712 5813 inept direction , 1 +109713 5813 inept direction 2 +109714 5813 pathetic acting , poorly dubbed dialogue and murky cinematography 0 +109715 5813 acting , poorly dubbed dialogue and murky cinematography 1 +109716 5813 , poorly dubbed dialogue and murky cinematography 0 +109717 5813 poorly dubbed dialogue and murky cinematography 1 +109718 5813 poorly dubbed 0 +109719 5813 dialogue and murky cinematography 1 +109720 5813 and murky cinematography 1 +109721 5813 murky cinematography 1 +109722 5813 complete with visible boom mikes 2 +109723 5813 with visible boom mikes 2 +109724 5813 visible boom mikes 2 +109725 5813 boom mikes 3 +109726 5813 mikes 2 +109727 5814 Like The Rugrats movies , The Wild Thornberrys Movie does n't offer much more than the series , but its emphasis on caring for animals and respecting other cultures is particularly welcome . 3 +109728 5814 Like The Rugrats movies , The Wild Thornberrys Movie does n't offer much more than the series , but its emphasis on caring for animals and respecting other cultures is particularly welcome 3 +109729 5814 Like The Rugrats movies , The Wild Thornberrys Movie does n't offer much more than the series , but 1 +109730 5814 Like The Rugrats movies , The Wild Thornberrys Movie does n't offer much more than the series , 1 +109731 5814 Like The Rugrats movies , The Wild Thornberrys Movie does n't offer much more than the series 1 +109732 5814 Like The Rugrats movies 2 +109733 5814 The Rugrats movies 2 +109734 5814 Rugrats movies 2 +109735 5814 , The Wild Thornberrys Movie does n't offer much more than the series 1 +109736 5814 The Wild Thornberrys Movie does n't offer much more than the series 1 +109737 5814 does n't offer much more than the series 2 +109738 5814 offer much more than the series 3 +109739 5814 offer much more 2 +109740 5814 than the series 2 +109741 5814 its emphasis on caring for animals and respecting other cultures is particularly welcome 3 +109742 5814 its emphasis on caring for animals and respecting other cultures 4 +109743 5814 its emphasis 2 +109744 5814 on caring for animals and respecting other cultures 2 +109745 5814 caring for animals and respecting other cultures 3 +109746 5814 caring for animals and 3 +109747 5814 caring for animals 2 +109748 5814 for animals 2 +109749 5814 respecting other cultures 2 +109750 5814 respecting 2 +109751 5814 is particularly welcome 2 +109752 5814 particularly welcome 2 +109753 5815 In truth , it has all the heart of a porno flick -LRB- but none of the sheer lust -RRB- . 1 +109754 5815 In truth 2 +109755 5815 , it has all the heart of a porno flick -LRB- but none of the sheer lust -RRB- . 0 +109756 5815 it has all the heart of a porno flick -LRB- but none of the sheer lust -RRB- . 0 +109757 5815 has all the heart of a porno flick -LRB- but none of the sheer lust -RRB- . 0 +109758 5815 has all the heart of a porno flick -LRB- but none of the sheer lust -RRB- 2 +109759 5815 all the heart of a porno flick -LRB- but none of the sheer lust -RRB- 1 +109760 5815 all the heart 3 +109761 5815 of a porno flick -LRB- but none of the sheer lust -RRB- 2 +109762 5815 a porno flick -LRB- but none of the sheer lust -RRB- 1 +109763 5815 a porno flick 1 +109764 5815 porno flick 1 +109765 5815 porno 1 +109766 5815 -LRB- but none of the sheer lust -RRB- 1 +109767 5815 but none of the sheer lust -RRB- 2 +109768 5815 but none of the sheer lust 2 +109769 5815 none of the sheer lust 2 +109770 5815 of the sheer lust 2 +109771 5815 the sheer lust 2 +109772 5815 sheer lust 2 +109773 5816 Perhaps even the SLC high command found writer-director Mitch Davis 's wall of kitsch hard going . 1 +109774 5816 Perhaps even the SLC high command 2 +109775 5816 even the SLC high command 2 +109776 5816 the SLC high command 2 +109777 5816 SLC high command 2 +109778 5816 SLC 2 +109779 5816 high command 2 +109780 5816 command 2 +109781 5816 found writer-director Mitch Davis 's wall of kitsch hard going . 1 +109782 5816 found writer-director Mitch Davis 's wall of kitsch hard going 1 +109783 5816 found writer-director 2 +109784 5816 Mitch Davis 's wall of kitsch hard going 1 +109785 5816 Mitch Davis 's wall 2 +109786 5816 Mitch Davis 's 2 +109787 5816 Mitch 2 +109788 5816 Davis 's 2 +109789 5816 of kitsch hard going 3 +109790 5816 kitsch hard going 2 +109791 5816 hard going 2 +109792 5817 It 's quite an achievement to set and shoot a movie at the Cannes Film Festival and yet fail to capture its visual appeal or its atmosphere . 0 +109793 5817 's quite an achievement to set and shoot a movie at the Cannes Film Festival and yet fail to capture its visual appeal or its atmosphere . 1 +109794 5817 's quite an achievement to set and shoot a movie at the Cannes Film Festival and yet fail to capture its visual appeal or its atmosphere 1 +109795 5817 's quite an achievement to set and shoot a movie at the Cannes Film Festival and 3 +109796 5817 's quite an achievement to set and shoot a movie at the Cannes Film Festival 3 +109797 5817 's quite an achievement 3 +109798 5817 quite an achievement 3 +109799 5817 to set and shoot a movie at the Cannes Film Festival 3 +109800 5817 set and shoot a movie at the Cannes Film Festival 2 +109801 5817 set and shoot a movie 2 +109802 5817 set and shoot 2 +109803 5817 set and 2 +109804 5817 at the Cannes Film Festival 2 +109805 5817 the Cannes Film Festival 2 +109806 5817 Cannes Film Festival 2 +109807 5817 yet fail to capture its visual appeal or its atmosphere 0 +109808 5817 fail to capture its visual appeal or its atmosphere 0 +109809 5817 to capture its visual appeal or its atmosphere 2 +109810 5817 capture its visual appeal or its atmosphere 3 +109811 5817 its visual appeal or its atmosphere 2 +109812 5817 its visual appeal or 2 +109813 5817 its visual appeal 3 +109814 5817 visual appeal 3 +109815 5818 Many went to see the attraction for the sole reason that it was hot outside and there was air conditioning inside , and I do n't think that A.C. will help this movie one bit . 0 +109816 5818 Many went to see the attraction for the sole reason that it was hot outside and there was air conditioning inside , and I do n't think that A.C. will help this movie one bit 0 +109817 5818 Many went to see the attraction for the sole reason that it was hot outside and there was air conditioning inside , and 1 +109818 5818 Many went to see the attraction for the sole reason that it was hot outside and there was air conditioning inside , 0 +109819 5818 Many went to see the attraction for the sole reason that it was hot outside and there was air conditioning inside 2 +109820 5818 went to see the attraction for the sole reason that it was hot outside and there was air conditioning inside 1 +109821 5818 to see the attraction for the sole reason that it was hot outside and there was air conditioning inside 2 +109822 5818 see the attraction for the sole reason that it was hot outside and there was air conditioning inside 1 +109823 5818 see the attraction for the sole reason 3 +109824 5818 see the attraction 2 +109825 5818 for the sole reason 2 +109826 5818 the sole reason 2 +109827 5818 sole reason 2 +109828 5818 sole 2 +109829 5818 that it was hot outside and there was air conditioning inside 2 +109830 5818 it was hot outside and there was air conditioning inside 2 +109831 5818 it was hot outside and 2 +109832 5818 it was hot outside 2 +109833 5818 was hot outside 2 +109834 5818 hot outside 2 +109835 5818 there was air conditioning inside 2 +109836 5818 was air conditioning inside 2 +109837 5818 air conditioning inside 2 +109838 5818 air conditioning 2 +109839 5818 I do n't think that A.C. will help this movie one bit 1 +109840 5818 do n't think that A.C. will help this movie one bit 1 +109841 5818 think that A.C. will help this movie one bit 2 +109842 5818 that A.C. will help this movie one bit 2 +109843 5818 A.C. will help this movie one bit 3 +109844 5818 A.C. 2 +109845 5818 will help this movie one bit 2 +109846 5818 help this movie one bit 1 +109847 5818 this movie one bit 2 +109848 5818 movie one bit 2 +109849 5818 one bit 2 +109850 5819 Grant is certainly amusing , but the very hollowness of the character he plays keeps him at arms length 1 +109851 5819 Grant is certainly amusing , but 3 +109852 5819 Grant is certainly amusing , 3 +109853 5819 Grant is certainly amusing 3 +109854 5819 is certainly amusing 3 +109855 5819 the very hollowness of the character he plays keeps him at arms length 2 +109856 5819 the very hollowness of the character he plays 1 +109857 5819 the very hollowness 1 +109858 5819 very hollowness 1 +109859 5819 hollowness 1 +109860 5819 of the character he plays 2 +109861 5819 the character he plays 2 +109862 5819 he plays 2 +109863 5819 keeps him at arms length 2 +109864 5819 keeps him 2 +109865 5819 at arms length 2 +109866 5819 arms length 2 +109867 5820 The script by David Koepp is perfectly serviceable and because he gives the story some soul ... he elevates the experience to a more mythic level . 4 +109868 5820 The script by David Koepp is perfectly serviceable and because he gives the story some soul ... he elevates the experience to a more mythic level 4 +109869 5820 The script by David Koepp is perfectly serviceable and because he gives the story some soul ... 3 +109870 5820 The script by David Koepp is perfectly serviceable and because he gives the story some soul 3 +109871 5820 The script by David Koepp 2 +109872 5820 by David Koepp 2 +109873 5820 David Koepp 2 +109874 5820 is perfectly serviceable and because he gives the story some soul 3 +109875 5820 perfectly serviceable and because he gives the story some soul 3 +109876 5820 perfectly serviceable and 3 +109877 5820 perfectly serviceable 3 +109878 5820 because he gives the story some soul 3 +109879 5820 he gives the story some soul 3 +109880 5820 gives the story some soul 3 +109881 5820 gives the story 2 +109882 5820 some soul 3 +109883 5820 he elevates the experience to a more mythic level 2 +109884 5820 elevates the experience to a more mythic level 3 +109885 5820 elevates the experience 3 +109886 5820 to a more mythic level 3 +109887 5820 a more mythic level 3 +109888 5820 more mythic level 2 +109889 5820 mythic level 2 +109890 5821 Washington overcomes the script 's flaws and envelops the audience in his character 's anguish , anger and frustration . 3 +109891 5821 overcomes the script 's flaws and envelops the audience in his character 's anguish , anger and frustration . 1 +109892 5821 overcomes the script 's flaws and envelops the audience in his character 's anguish , anger and frustration 3 +109893 5821 overcomes the script 's flaws and 2 +109894 5821 overcomes the script 's flaws 2 +109895 5821 overcomes 3 +109896 5821 the script 's flaws 1 +109897 5821 envelops the audience in his character 's anguish , anger and frustration 2 +109898 5821 envelops 2 +109899 5821 the audience in his character 's anguish , anger and frustration 2 +109900 5821 in his character 's anguish , anger and frustration 2 +109901 5821 his character 's anguish , anger and frustration 2 +109902 5821 anguish , anger and frustration 1 +109903 5821 , anger and frustration 2 +109904 5821 anger and frustration 1 +109905 5821 anger and 1 +109906 5822 Well-acted , well-directed and , for all its moodiness , not too pretentious . 4 +109907 5822 Well-acted , well-directed and , for all its moodiness , not too 3 +109908 5822 well-directed and , for all its moodiness , not too 3 +109909 5822 well-directed and , for all its moodiness , 3 +109910 5822 well-directed and 3 +109911 5822 well-directed 3 +109912 5822 , for all its moodiness , 2 +109913 5822 for all its moodiness , 2 +109914 5822 for all its moodiness 2 +109915 5822 all its moodiness 1 +109916 5822 its moodiness 2 +109917 5822 moodiness 1 +109918 5822 not too 2 +109919 5822 pretentious . 1 +109920 5823 Been there , done that , liked it much better the first time around - when it was called The Professional . 1 +109921 5823 Been there , done that , liked it much better the first time around - when it was called The Professional 1 +109922 5823 Been there , done that , liked it much better 1 +109923 5823 Been there , done that , 1 +109924 5823 there , done that , 1 +109925 5823 there , done that 3 +109926 5823 there , 2 +109927 5823 liked it much better 3 +109928 5823 it much better 2 +109929 5823 the first time around - when it was called The Professional 2 +109930 5823 the first time around - 2 +109931 5823 the first time around 2 +109932 5823 first time around 2 +109933 5823 time around 2 +109934 5823 when it was called The Professional 2 +109935 5823 it was called The Professional 2 +109936 5823 was called The Professional 2 +109937 5823 called The Professional 2 +109938 5823 The Professional 2 +109939 5824 While you have to admit it 's semi-amusing to watch Robert DeNiro belt out `` When you 're a Jet , you 're a Jet all the way , '' it 's equally distasteful to watch him sing the lyrics to `` Tonight . '' 1 +109940 5824 While you have to admit it 's semi-amusing to watch Robert DeNiro belt out `` When you 're a Jet , you 're a Jet all the way 2 +109941 5824 While you have to admit it 's semi-amusing to watch Robert DeNiro belt out `` When you 're a Jet 2 +109942 5824 you have to admit it 's semi-amusing to watch Robert DeNiro belt out `` When you 're a Jet 3 +109943 5824 have to admit it 's semi-amusing to watch Robert DeNiro belt out `` When you 're a Jet 3 +109944 5824 to admit it 's semi-amusing to watch Robert DeNiro belt out `` When you 're a Jet 2 +109945 5824 admit it 's semi-amusing to watch Robert DeNiro belt out `` When you 're a Jet 3 +109946 5824 it 's semi-amusing to watch Robert DeNiro belt out `` When you 're a Jet 2 +109947 5824 's semi-amusing to watch Robert DeNiro belt out `` When you 're a Jet 3 +109948 5824 semi-amusing to watch Robert DeNiro belt out `` When you 're a Jet 3 +109949 5824 semi-amusing 2 +109950 5824 to watch Robert DeNiro belt out `` When you 're a Jet 2 +109951 5824 watch Robert DeNiro belt out `` When you 're a Jet 3 +109952 5824 Robert DeNiro belt out `` When you 're a Jet 2 +109953 5824 belt out `` When you 're a Jet 2 +109954 5824 belt out `` 2 +109955 5824 belt out 2 +109956 5824 When you 're a Jet 3 +109957 5824 you 're a Jet 2 +109958 5824 're a Jet 2 +109959 5824 a Jet 2 +109960 5824 , you 're a Jet all the way 3 +109961 5824 you 're a Jet all the way 3 +109962 5824 're a Jet all the way 2 +109963 5824 a Jet all the way 2 +109964 5824 a Jet all 2 +109965 5824 , '' it 's equally distasteful to watch him sing the lyrics to `` Tonight . '' 0 +109966 5824 '' it 's equally distasteful to watch him sing the lyrics to `` Tonight . '' 1 +109967 5824 it 's equally distasteful to watch him sing the lyrics to `` Tonight . '' 1 +109968 5824 's equally distasteful to watch him sing the lyrics to `` Tonight . '' 2 +109969 5824 's equally distasteful to watch him sing the lyrics to `` Tonight . 1 +109970 5824 's equally distasteful to watch him sing the lyrics to `` Tonight 0 +109971 5824 's equally distasteful 1 +109972 5824 equally distasteful 1 +109973 5824 to watch him sing the lyrics to `` Tonight 2 +109974 5824 watch him sing the lyrics to `` Tonight 2 +109975 5824 him sing the lyrics to `` Tonight 2 +109976 5824 sing the lyrics to `` Tonight 2 +109977 5824 sing the lyrics 2 +109978 5824 the lyrics 2 +109979 5824 lyrics 2 +109980 5824 to `` Tonight 2 +109981 5824 to `` 2 +109982 5824 Tonight 2 +109983 5825 As a kind of colorful , dramatized PBS program , Frida gets the job done . 3 +109984 5825 As a kind of colorful , dramatized PBS program 1 +109985 5825 a kind of colorful , dramatized PBS program 2 +109986 5825 of colorful , dramatized PBS program 2 +109987 5825 colorful , dramatized PBS program 3 +109988 5825 , dramatized PBS program 1 +109989 5825 dramatized PBS program 1 +109990 5825 PBS program 2 +109991 5825 program 2 +109992 5825 , Frida gets the job done . 3 +109993 5825 Frida gets the job done . 4 +109994 5826 It 's a boom-box of a movie that might have been titled ` The Loud and the Ludicrous ' ... the pandering to a moviegoing audience dominated by young males is all too calculated . 2 +109995 5826 It 's a boom-box of a movie that might have been titled ` The Loud and the Ludicrous ' ... the pandering to a moviegoing audience dominated by young males is all too calculated 0 +109996 5826 It 's a boom-box of a movie that might have been titled ` The Loud and the Ludicrous ' ... 1 +109997 5826 It 's a boom-box of a movie that might have been titled ` The Loud and the Ludicrous ' 0 +109998 5826 's a boom-box of a movie that might have been titled ` The Loud and the Ludicrous ' 1 +109999 5826 a boom-box of a movie that might have been titled ` The Loud and the Ludicrous ' 0 +110000 5826 a boom-box 2 +110001 5826 boom-box 2 +110002 5826 of a movie that might have been titled ` The Loud and the Ludicrous ' 0 +110003 5826 a movie that might have been titled ` The Loud and the Ludicrous ' 0 +110004 5826 that might have been titled ` The Loud and the Ludicrous ' 1 +110005 5826 might have been titled ` The Loud and the Ludicrous ' 2 +110006 5826 have been titled ` The Loud and the Ludicrous ' 1 +110007 5826 been titled ` The Loud and the Ludicrous ' 1 +110008 5826 titled ` The Loud and the Ludicrous ' 2 +110009 5826 ` The Loud and the Ludicrous ' 1 +110010 5826 The Loud and the Ludicrous ' 2 +110011 5826 The Loud and 2 +110012 5826 The Loud 2 +110013 5826 the Ludicrous ' 2 +110014 5826 Ludicrous ' 1 +110015 5826 the pandering to a moviegoing audience dominated by young males is all too calculated 1 +110016 5826 the pandering to a moviegoing audience dominated by young males 1 +110017 5826 the pandering 2 +110018 5826 to a moviegoing audience dominated by young males 2 +110019 5826 a moviegoing audience dominated by young males 2 +110020 5826 a moviegoing audience 2 +110021 5826 moviegoing audience 2 +110022 5826 dominated by young males 2 +110023 5826 by young males 2 +110024 5826 is all too calculated 1 +110025 5826 is all too 2 +110026 5826 all too 2 +110027 5827 It 's not going to be everyone 's bag of popcorn , but it definitely gives you something to chew on . 3 +110028 5827 It 's not going to be everyone 's bag of popcorn , but it definitely gives you something to chew on 3 +110029 5827 It 's not going to be everyone 's bag of popcorn , but 2 +110030 5827 It 's not going to be everyone 's bag of popcorn , 1 +110031 5827 It 's not going to be everyone 's bag of popcorn 1 +110032 5827 's not going to be everyone 's bag of popcorn 1 +110033 5827 going to be everyone 's bag of popcorn 3 +110034 5827 to be everyone 's bag of popcorn 2 +110035 5827 be everyone 's bag of popcorn 2 +110036 5827 everyone 's bag of popcorn 2 +110037 5827 everyone 's bag 2 +110038 5827 it definitely gives you something to chew on 3 +110039 5827 definitely gives you something to chew on 3 +110040 5827 gives you something to chew on 2 +110041 5827 gives you something 2 +110042 5828 I 'm not generally a fan of vegetables but this batch is pretty cute . 2 +110043 5828 I 'm not generally a fan of vegetables but this batch is pretty cute 4 +110044 5828 I 'm not generally a fan of vegetables but 1 +110045 5828 I 'm not generally a fan of vegetables 1 +110046 5828 'm not generally a fan of vegetables 1 +110047 5828 'm not generally 2 +110048 5828 a fan of vegetables 2 +110049 5828 of vegetables 3 +110050 5828 vegetables 2 +110051 5828 this batch is pretty cute 4 +110052 5828 this batch 2 +110053 5828 batch 3 +110054 5828 is pretty cute 3 +110055 5828 pretty cute 3 +110056 5829 Each of these stories has the potential for Touched by an Angel simplicity and sappiness , but Thirteen Conversations About One Thing , for all its generosity and optimism , never resorts to easy feel-good sentiments . 4 +110057 5829 Each of these stories has the potential for Touched by an Angel simplicity and sappiness , but Thirteen Conversations About One Thing , for all its generosity and optimism , never resorts to easy feel-good sentiments 2 +110058 5829 Each of these stories has the potential for Touched by an Angel simplicity and sappiness , but 2 +110059 5829 Each of these stories has the potential for Touched by an Angel simplicity and sappiness , 3 +110060 5829 Each of these stories has the potential for Touched by an Angel simplicity and sappiness 1 +110061 5829 Each of these stories 2 +110062 5829 of these stories 2 +110063 5829 these stories 2 +110064 5829 has the potential for Touched by an Angel simplicity and sappiness 1 +110065 5829 has the potential for Touched by an Angel simplicity and 3 +110066 5829 has the potential for Touched by an Angel simplicity 2 +110067 5829 the potential for Touched by an Angel simplicity 2 +110068 5829 for Touched by an Angel simplicity 3 +110069 5829 Touched by an Angel simplicity 2 +110070 5829 by an Angel simplicity 3 +110071 5829 an Angel simplicity 3 +110072 5829 Angel simplicity 2 +110073 5829 sappiness 1 +110074 5829 Thirteen Conversations About One Thing , for all its generosity and optimism , never resorts to easy feel-good sentiments 3 +110075 5829 Thirteen Conversations About One Thing , for all its generosity and optimism , 3 +110076 5829 Thirteen Conversations About One Thing , for all its generosity and optimism 2 +110077 5829 Thirteen Conversations About One Thing , 2 +110078 5829 Thirteen Conversations About One Thing 2 +110079 5829 for all its generosity and optimism 2 +110080 5829 all its generosity and optimism 2 +110081 5829 its generosity and optimism 2 +110082 5829 its generosity and 2 +110083 5829 its generosity 2 +110084 5829 never resorts to easy feel-good sentiments 2 +110085 5829 resorts to easy feel-good sentiments 3 +110086 5829 resorts 2 +110087 5829 to easy feel-good sentiments 3 +110088 5829 easy feel-good sentiments 4 +110089 5829 feel-good sentiments 3 +110090 5830 `` Sorority Boys '' was funnier , and that movie was pretty bad . 0 +110091 5830 `` Sorority Boys '' was funnier , and that movie was pretty bad 1 +110092 5830 `` Sorority Boys '' was funnier , and 2 +110093 5830 `` Sorority Boys '' was funnier , 1 +110094 5830 `` Sorority Boys '' was funnier 1 +110095 5830 Sorority Boys '' was funnier 2 +110096 5830 '' was funnier 2 +110097 5830 was funnier 2 +110098 5830 that movie was pretty bad 0 +110099 5830 was pretty bad 2 +110100 5830 pretty bad 1 +110101 5831 There 's something fishy about a seasonal holiday kids ' movie ... that derives its moment of most convincing emotional gravity from a scene where Santa gives gifts to grownups . 1 +110102 5831 There 's something fishy about a seasonal holiday kids ' movie ... that derives its moment of most convincing emotional gravity from a scene where Santa gives gifts to grownups 1 +110103 5831 There 's something fishy about a seasonal holiday kids ' movie ... 1 +110104 5831 There 's something fishy about a seasonal holiday kids ' movie 1 +110105 5831 's something fishy about a seasonal holiday kids ' movie 2 +110106 5831 something fishy about a seasonal holiday kids ' movie 2 +110107 5831 something fishy about a seasonal holiday kids ' 2 +110108 5831 something fishy 3 +110109 5831 fishy 1 +110110 5831 about a seasonal holiday kids ' 2 +110111 5831 about a seasonal holiday kids 2 +110112 5831 a seasonal holiday kids 2 +110113 5831 seasonal holiday kids 3 +110114 5831 holiday kids 2 +110115 5831 that derives its moment of most convincing emotional gravity from a scene where Santa gives gifts to grownups 2 +110116 5831 derives its moment of most convincing emotional gravity from a scene where Santa gives gifts to grownups 2 +110117 5831 its moment of most convincing emotional gravity from a scene where Santa gives gifts to grownups 3 +110118 5831 its moment 1 +110119 5831 of most convincing emotional gravity from a scene where Santa gives gifts to grownups 3 +110120 5831 most convincing emotional gravity from a scene where Santa gives gifts to grownups 3 +110121 5831 most convincing emotional gravity 2 +110122 5831 most convincing 2 +110123 5831 emotional gravity 3 +110124 5831 from a scene where Santa gives gifts to grownups 3 +110125 5831 a scene where Santa gives gifts to grownups 2 +110126 5831 a scene 2 +110127 5831 where Santa gives gifts to grownups 3 +110128 5831 Santa gives gifts to grownups 3 +110129 5831 gives gifts to grownups 3 +110130 5831 gives gifts 2 +110131 5831 to grownups 2 +110132 5832 I have n't seen such self-amused trash since Freddy Got Fingered . 1 +110133 5832 have n't seen such self-amused trash since Freddy Got Fingered . 0 +110134 5832 have n't seen such self-amused trash since Freddy Got Fingered 1 +110135 5832 seen such self-amused trash since Freddy Got Fingered 1 +110136 5832 seen such self-amused trash 1 +110137 5832 such self-amused trash 1 +110138 5832 self-amused trash 0 +110139 5832 self-amused 2 +110140 5832 since Freddy Got Fingered 1 +110141 5832 Freddy Got Fingered 2 +110142 5832 Freddy 2 +110143 5832 Got Fingered 2 +110144 5832 Fingered 2 +110145 5833 Ramsay and Morton fill this character study with poetic force and buoyant feeling . 3 +110146 5833 Ramsay and Morton 2 +110147 5833 Ramsay and 2 +110148 5833 fill this character study with poetic force and buoyant feeling . 4 +110149 5833 fill this character study with poetic force and buoyant feeling 3 +110150 5833 fill this character study 2 +110151 5833 this character study 2 +110152 5833 with poetic force and buoyant feeling 4 +110153 5833 poetic force and buoyant feeling 3 +110154 5833 poetic force and 3 +110155 5833 poetic force 3 +110156 5833 buoyant feeling 4 +110157 5834 With the cheesiest monsters this side of a horror spoof , which They is n't , it is more likely to induce sleep than fright . 0 +110158 5834 With the cheesiest monsters this side of a horror spoof , which They is n't 0 +110159 5834 the cheesiest monsters this side of a horror spoof , which They is n't 2 +110160 5834 the cheesiest 1 +110161 5834 monsters this side of a horror spoof , which They is n't 2 +110162 5834 this side of a horror spoof , which They is n't 2 +110163 5834 of a horror spoof , which They is n't 2 +110164 5834 a horror spoof , which They is n't 2 +110165 5834 a horror spoof , 2 +110166 5834 a horror spoof 2 +110167 5834 horror spoof 2 +110168 5834 which They is n't 2 +110169 5834 They is n't 2 +110170 5834 , it is more likely to induce sleep than fright . 1 +110171 5834 it is more likely to induce sleep than fright . 1 +110172 5834 is more likely to induce sleep than fright . 0 +110173 5834 is more likely to induce sleep than fright 1 +110174 5834 more likely to induce sleep than fright 0 +110175 5834 likely to induce sleep than fright 0 +110176 5834 to induce sleep than fright 0 +110177 5834 induce sleep than fright 1 +110178 5834 induce sleep 1 +110179 5834 induce 2 +110180 5834 than fright 2 +110181 5835 Dogtown and Z-Boys more than exposes the roots of the skateboarding boom that would become `` the punk kids ' revolution . '' 2 +110182 5835 more than exposes the roots of the skateboarding boom that would become `` the punk kids ' revolution . '' 3 +110183 5835 more than exposes the roots of the skateboarding boom that would become `` the punk kids ' revolution . 2 +110184 5835 more than exposes the roots of the skateboarding boom that would become `` the punk kids ' revolution 3 +110185 5835 exposes the roots of the skateboarding boom that would become `` the punk kids ' revolution 2 +110186 5835 the roots of the skateboarding boom that would become `` the punk kids ' revolution 2 +110187 5835 the roots of the skateboarding boom 3 +110188 5835 of the skateboarding boom 3 +110189 5835 the skateboarding boom 2 +110190 5835 skateboarding boom 2 +110191 5835 skateboarding 2 +110192 5835 that would become `` the punk kids ' revolution 2 +110193 5835 would become `` the punk kids ' revolution 1 +110194 5835 become `` the punk kids ' revolution 2 +110195 5835 become `` 2 +110196 5835 the punk kids ' revolution 3 +110197 5835 the punk kids ' 2 +110198 5835 punk kids ' 1 +110199 5835 kids ' 2 +110200 5836 To some eyes 2 +110201 5836 some eyes 2 +110202 5836 a recycling 2 +110203 5836 an assassin 's greatest hits 2 +110204 5836 an assassin 's 2 +110205 5836 assassin 's 2 +110206 5836 greatest hits 4 +110207 5837 Most of the movie is so deadly dull that watching the proverbial paint dry would be a welcome improvement . 0 +110208 5837 is so deadly dull that watching the proverbial paint dry would be a welcome improvement . 1 +110209 5837 is so deadly dull that watching the proverbial paint dry would be a welcome improvement 0 +110210 5837 is so deadly dull 0 +110211 5837 so deadly dull 2 +110212 5837 so deadly 2 +110213 5837 that watching the proverbial paint dry would be a welcome improvement 0 +110214 5837 watching the proverbial paint dry would be a welcome improvement 0 +110215 5837 watching the proverbial paint dry 1 +110216 5837 the proverbial paint dry 1 +110217 5837 the proverbial paint 2 +110218 5837 proverbial paint 2 +110219 5837 proverbial 2 +110220 5837 would be a welcome improvement 3 +110221 5837 be a welcome improvement 2 +110222 5837 a welcome improvement 3 +110223 5837 welcome improvement 2 +110224 5838 That Haynes can both maintain and dismantle the facades that his genre and his character construct is a wonderous accomplishment of veracity and narrative grace . 4 +110225 5838 That Haynes 2 +110226 5838 can both maintain and dismantle the facades that his genre and his character construct is a wonderous accomplishment of veracity and narrative grace . 4 +110227 5838 can both maintain and dismantle the facades that his genre and his character construct is a wonderous accomplishment of veracity and narrative grace 4 +110228 5838 both maintain and dismantle the facades that his genre and his character construct is a wonderous accomplishment of veracity and narrative grace 3 +110229 5838 maintain and dismantle the facades that his genre and his character construct is a wonderous accomplishment of veracity and narrative grace 2 +110230 5838 maintain and 2 +110231 5838 dismantle the facades that his genre and his character construct is a wonderous accomplishment of veracity and narrative grace 4 +110232 5838 dismantle the facades 2 +110233 5838 dismantle 2 +110234 5838 the facades 2 +110235 5838 facades 2 +110236 5838 that his genre and his character construct is a wonderous accomplishment of veracity and narrative grace 3 +110237 5838 his genre and his character construct is a wonderous accomplishment of veracity and narrative grace 4 +110238 5838 his genre and his character construct 2 +110239 5838 his genre and 2 +110240 5838 his genre 2 +110241 5838 his character construct 2 +110242 5838 character construct 2 +110243 5838 is a wonderous accomplishment of veracity and narrative grace 4 +110244 5838 a wonderous accomplishment of veracity and narrative grace 4 +110245 5838 a wonderous accomplishment 4 +110246 5838 wonderous accomplishment 4 +110247 5838 wonderous 3 +110248 5838 accomplishment 3 +110249 5838 of veracity and narrative grace 3 +110250 5838 veracity and narrative grace 2 +110251 5838 veracity 3 +110252 5838 and narrative grace 3 +110253 5838 narrative grace 3 +110254 5839 This is a nervy , risky film , and Villeneuve has inspired Croze to give herself over completely to the tormented persona of Bibi . 2 +110255 5839 This is a nervy , risky film , and Villeneuve has inspired Croze to give herself over completely to the tormented persona of Bibi 4 +110256 5839 This is a nervy , risky film , and 3 +110257 5839 This is a nervy , risky film , 2 +110258 5839 This is a nervy , risky film 2 +110259 5839 is a nervy , risky film 3 +110260 5839 a nervy , risky film 2 +110261 5839 nervy , risky film 2 +110262 5839 nervy , risky 1 +110263 5839 , risky 2 +110264 5839 Villeneuve has inspired Croze to give herself over completely to the tormented persona of Bibi 2 +110265 5839 has inspired Croze to give herself over completely to the tormented persona of Bibi 2 +110266 5839 inspired Croze to give herself over completely to the tormented persona of Bibi 2 +110267 5839 Croze to give herself over completely to the tormented persona of Bibi 3 +110268 5839 Croze 2 +110269 5839 to give herself over completely to the tormented persona of Bibi 2 +110270 5839 give herself over completely to the tormented persona of Bibi 3 +110271 5839 give herself over completely 2 +110272 5839 give herself over 1 +110273 5839 give herself 2 +110274 5839 to the tormented persona of Bibi 2 +110275 5839 the tormented persona of Bibi 2 +110276 5839 the tormented persona 2 +110277 5839 tormented persona 2 +110278 5839 of Bibi 2 +110279 5839 Bibi 2 +110280 5840 It 's a barely tolerable slog over well-trod ground . 0 +110281 5840 's a barely tolerable slog over well-trod ground . 1 +110282 5840 's a barely tolerable slog over well-trod ground 0 +110283 5840 a barely tolerable slog over well-trod ground 1 +110284 5840 a barely tolerable slog 2 +110285 5840 barely tolerable slog 0 +110286 5840 barely tolerable 0 +110287 5840 tolerable 2 +110288 5840 slog 1 +110289 5840 over well-trod ground 2 +110290 5840 well-trod ground 2 +110291 5840 well-trod 2 +110292 5841 That such a horrible movie could have sprung from such a great one is one of the year 's worst cinematic tragedies . 0 +110293 5841 That such a horrible movie could have sprung from such a great one 0 +110294 5841 such a horrible movie could have sprung from such a great one 1 +110295 5841 such a horrible movie 0 +110296 5841 could have sprung from such a great one 2 +110297 5841 have sprung from such a great one 3 +110298 5841 sprung from such a great one 3 +110299 5841 from such a great one 3 +110300 5841 such a great one 3 +110301 5841 is one of the year 's worst cinematic tragedies . 0 +110302 5841 is one of the year 's worst cinematic tragedies 0 +110303 5841 one of the year 's worst cinematic tragedies 1 +110304 5841 of the year 's worst cinematic tragedies 1 +110305 5841 the year 's worst cinematic tragedies 0 +110306 5841 worst cinematic tragedies 0 +110307 5841 cinematic tragedies 1 +110308 5842 That chirpy songbird Britney Spears has popped up with more mindless drivel . 0 +110309 5842 That chirpy 2 +110310 5842 chirpy 2 +110311 5842 songbird Britney Spears has popped up with more mindless drivel . 0 +110312 5842 songbird Britney Spears has popped up with more mindless drivel 0 +110313 5842 songbird 2 +110314 5842 Britney Spears has popped up with more mindless drivel 0 +110315 5842 has popped up with more mindless drivel 0 +110316 5842 popped up with more mindless drivel 1 +110317 5842 popped up 2 +110318 5842 popped 2 +110319 5842 with more mindless drivel 2 +110320 5842 more mindless drivel 1 +110321 5842 more mindless 1 +110322 5843 The Master of Disguise falls under the category of ` should have been a sketch on Saturday Night Live . ' 1 +110323 5843 falls under the category of ` should have been a sketch on Saturday Night Live . ' 1 +110324 5843 falls under the category of ` should have been a sketch on Saturday Night Live . 2 +110325 5843 falls under the category of ` should have been a sketch on Saturday Night Live 2 +110326 5843 under the category of ` should have been a sketch on Saturday Night Live 2 +110327 5843 the category of ` should have been a sketch on Saturday Night Live 2 +110328 5843 of ` should have been a sketch on Saturday Night Live 1 +110329 5843 should have been a sketch on Saturday Night Live 2 +110330 5843 have been a sketch on Saturday Night Live 3 +110331 5843 been a sketch on Saturday Night Live 2 +110332 5843 a sketch on Saturday Night Live 2 +110333 5843 a sketch 2 +110334 5843 on Saturday Night Live 2 +110335 5843 Saturday Night Live 2 +110336 5843 Night Live 2 +110337 5844 A good-natured ensemble comedy that tries hard to make the most of a bumper cast , but never quite gets off the ground . 1 +110338 5844 A good-natured ensemble comedy that tries hard to make the most of a bumper 3 +110339 5844 A good-natured ensemble comedy 3 +110340 5844 good-natured ensemble comedy 3 +110341 5844 that tries hard to make the most of a bumper 2 +110342 5844 tries hard to make the most of a bumper 2 +110343 5844 hard to make the most of a bumper 1 +110344 5844 to make the most of a bumper 2 +110345 5844 make the most of a bumper 2 +110346 5844 the most of a bumper 2 +110347 5844 of a bumper 2 +110348 5844 a bumper 1 +110349 5844 bumper 2 +110350 5844 cast , but never quite gets off the ground . 2 +110351 5844 cast , but never quite gets off the ground 1 +110352 5844 cast , but never quite 2 +110353 5844 cast , but 2 +110354 5844 cast , 2 +110355 5845 Like a precious and finely cut diamond , magnificent to behold in its sparkling beauty yet in reality it 's one tough rock . 3 +110356 5845 Like a precious and finely cut diamond 3 +110357 5845 a precious and finely cut diamond 2 +110358 5845 precious and finely cut diamond 3 +110359 5845 and finely cut diamond 3 +110360 5845 finely cut diamond 3 +110361 5845 cut diamond 2 +110362 5845 diamond 2 +110363 5845 , magnificent to behold in its sparkling beauty yet in reality it 's one tough rock . 4 +110364 5845 magnificent to behold in its sparkling beauty yet in reality it 's one tough rock . 3 +110365 5845 magnificent to behold in its sparkling beauty 3 +110366 5845 to behold in its sparkling beauty 3 +110367 5845 behold in its sparkling beauty 3 +110368 5845 in its sparkling beauty 3 +110369 5845 its sparkling beauty 3 +110370 5845 sparkling beauty 4 +110371 5845 yet in reality it 's one tough rock . 2 +110372 5845 in reality it 's one tough rock . 3 +110373 5845 it 's one tough rock . 3 +110374 5845 's one tough rock . 2 +110375 5845 's one tough rock 2 +110376 5845 one tough rock 2 +110377 5845 tough rock 2 +110378 5846 Overall tomfoolery like this is a matter of taste . 1 +110379 5846 Overall tomfoolery like this 2 +110380 5846 Overall tomfoolery 2 +110381 5846 tomfoolery 2 +110382 5846 is a matter of taste . 2 +110383 5846 is a matter of taste 2 +110384 5846 a matter of taste 2 +110385 5846 of taste 2 +110386 5847 What results is the best performance from either in years . 4 +110387 5847 What results is the best performance from either in years 4 +110388 5847 results is the best performance from either in years 4 +110389 5847 is the best performance from either in years 4 +110390 5847 the best performance from either in years 4 +110391 5847 the best performance 4 +110392 5847 from either in years 2 +110393 5847 either in years 2 +110394 5848 You 'll trudge out of the theater feeling as though you rode the Zipper after eating a corn dog and an extra-large cotton candy . 0 +110395 5848 'll trudge out of the theater feeling as though you rode the Zipper after eating a corn dog and an extra-large cotton candy . 0 +110396 5848 'll trudge out of the theater feeling as though you rode the Zipper after eating a corn dog and an extra-large cotton candy 3 +110397 5848 trudge out of the theater feeling as though you rode the Zipper after eating a corn dog and an extra-large cotton candy 2 +110398 5848 trudge out of the theater feeling 1 +110399 5848 trudge out 1 +110400 5848 trudge 1 +110401 5848 as though you rode the Zipper after eating a corn dog and an extra-large cotton candy 1 +110402 5848 though you rode the Zipper after eating a corn dog and an extra-large cotton candy 1 +110403 5848 you rode the Zipper after eating a corn dog and an extra-large cotton candy 3 +110404 5848 rode the Zipper after eating a corn dog and an extra-large cotton candy 2 +110405 5848 rode the Zipper 1 +110406 5848 rode 2 +110407 5848 the Zipper 2 +110408 5848 Zipper 2 +110409 5848 after eating a corn dog and an extra-large cotton candy 2 +110410 5848 eating a corn dog and an extra-large cotton candy 2 +110411 5848 eating 2 +110412 5848 a corn dog and an extra-large cotton candy 2 +110413 5848 a corn dog and 2 +110414 5848 a corn dog 1 +110415 5848 corn dog 2 +110416 5848 an extra-large cotton candy 2 +110417 5848 extra-large cotton candy 3 +110418 5848 extra-large 2 +110419 5849 The actors are simply too good , and the story too intriguing , for technical flaws to get in the way . 4 +110420 5849 The actors are simply too good , and the story too intriguing , for technical flaws to get in the way 2 +110421 5849 The actors are simply too good , and the story too intriguing , 4 +110422 5849 The actors are simply too good , and the story too intriguing 4 +110423 5849 The actors are simply too good , and 4 +110424 5849 The actors are simply too good , 3 +110425 5849 The actors are simply too good 4 +110426 5849 are simply too good 3 +110427 5849 too good 3 +110428 5849 the story too intriguing 2 +110429 5849 too intriguing 2 +110430 5849 for technical flaws to get in the way 1 +110431 5849 technical flaws to get in the way 1 +110432 5849 technical flaws 1 +110433 5850 Yes , but also intriguing and honorable , a worthwhile addition to a distinguished film legacy . 3 +110434 5850 Yes , but also intriguing and honorable , a worthwhile addition to a distinguished film legacy 4 +110435 5850 Yes , but also intriguing and honorable , 3 +110436 5850 , but also intriguing and honorable , 3 +110437 5850 but also intriguing and honorable , 3 +110438 5850 also intriguing and honorable , 3 +110439 5850 intriguing and honorable , 4 +110440 5850 intriguing and honorable 3 +110441 5850 a worthwhile addition to a distinguished film legacy 3 +110442 5850 a worthwhile addition 3 +110443 5850 worthwhile addition 3 +110444 5850 to a distinguished film legacy 2 +110445 5850 a distinguished film legacy 3 +110446 5850 distinguished film legacy 4 +110447 5850 film legacy 3 +110448 5851 It may be about drug dealers , kidnapping , and unsavory folks , but the tone and pacing are shockingly intimate . 2 +110449 5851 It may be about drug dealers , kidnapping , and unsavory folks , but the tone and pacing are shockingly intimate 3 +110450 5851 It may be about drug dealers , kidnapping , and unsavory folks , but 2 +110451 5851 It may be about drug dealers , kidnapping , and unsavory folks , 2 +110452 5851 It may be about drug dealers , kidnapping , and unsavory folks 2 +110453 5851 may be about drug dealers , kidnapping , and unsavory folks 2 +110454 5851 be about drug dealers , kidnapping , and unsavory folks 2 +110455 5851 about drug dealers , kidnapping , and unsavory folks 2 +110456 5851 drug dealers , kidnapping , and unsavory folks 1 +110457 5851 drug dealers , kidnapping , and 2 +110458 5851 drug dealers , kidnapping , 2 +110459 5851 drug dealers , kidnapping 2 +110460 5851 drug dealers , 1 +110461 5851 drug dealers 1 +110462 5851 kidnapping 2 +110463 5851 unsavory folks 2 +110464 5851 unsavory 1 +110465 5851 the tone and pacing are shockingly intimate 3 +110466 5851 the tone and pacing 2 +110467 5851 tone and pacing 2 +110468 5851 are shockingly intimate 3 +110469 5851 shockingly intimate 3 +110470 5852 Laggard drama wending its way to an uninspired philosophical epiphany . 1 +110471 5852 Laggard drama wending its way to an uninspired philosophical epiphany 1 +110472 5852 Laggard drama 2 +110473 5852 Laggard 2 +110474 5852 wending its way to an uninspired philosophical epiphany 1 +110475 5852 wending its way 2 +110476 5852 wending 2 +110477 5852 to an uninspired philosophical epiphany 2 +110478 5852 an uninspired philosophical epiphany 1 +110479 5852 uninspired philosophical epiphany 2 +110480 5852 uninspired philosophical 1 +110481 5853 When a movie has stuck around for this long , you know there 's something there . 4 +110482 5853 When a movie has stuck around for this long 3 +110483 5853 a movie has stuck around for this long 2 +110484 5853 has stuck around for this long 2 +110485 5853 stuck around for this long 1 +110486 5853 stuck around 2 +110487 5853 for this long 2 +110488 5853 this long 2 +110489 5853 , you know there 's something there . 3 +110490 5853 you know there 's something there . 3 +110491 5853 know there 's something there . 2 +110492 5853 know there 's something there 2 +110493 5853 there 's something there 3 +110494 5853 's something there 3 +110495 5853 's something 2 +110496 5854 But Death to Smoochy keeps firing until the bitter end . 2 +110497 5854 Death to Smoochy keeps firing until the bitter end . 3 +110498 5854 keeps firing until the bitter end . 2 +110499 5854 keeps firing until the bitter end 2 +110500 5854 keeps firing 2 +110501 5854 until the bitter end 2 +110502 5855 A dashing and absorbing outing with one of France 's most inventive directors . 3 +110503 5855 A dashing and absorbing outing with one of France 's most inventive directors 4 +110504 5855 A dashing and absorbing 3 +110505 5855 dashing and absorbing 3 +110506 5855 dashing and 2 +110507 5855 outing with one of France 's most inventive directors 3 +110508 5855 with one of France 's most inventive directors 4 +110509 5855 one of France 's most inventive directors 4 +110510 5855 of France 's most inventive directors 3 +110511 5855 France 's most inventive directors 4 +110512 5855 France 's 2 +110513 5855 most inventive directors 3 +110514 5855 inventive directors 3 +110515 5856 Dogtown is hollow , self-indulgent , and - worst of all - boring . 1 +110516 5856 is hollow , self-indulgent , and - worst of all - boring . 0 +110517 5856 is hollow , self-indulgent , and - worst of all - boring 0 +110518 5856 hollow , self-indulgent , and - worst of all - boring 0 +110519 5856 hollow , self-indulgent , and - worst of all - 1 +110520 5856 hollow , self-indulgent , and 1 +110521 5856 hollow , self-indulgent , 1 +110522 5856 hollow , self-indulgent 0 +110523 5856 hollow , 2 +110524 5856 - worst of all - 0 +110525 5856 worst of all - 2 +110526 5857 Barrels along at the start before becoming mired in sentimentality . 2 +110527 5857 Barrels along at the start before becoming mired in sentimentality 2 +110528 5857 Barrels along at the start 2 +110529 5857 Barrels along 2 +110530 5857 before becoming mired in sentimentality 1 +110531 5857 becoming mired in sentimentality 1 +110532 5857 mired in sentimentality 2 +110533 5857 in sentimentality 2 +110534 5858 The case is a convincing one , and should give anyone with a conscience reason to pause . 4 +110535 5858 is a convincing one , and should give anyone with a conscience reason to pause . 3 +110536 5858 is a convincing one , and should give anyone with a conscience reason to pause 4 +110537 5858 is a convincing one , and 3 +110538 5858 is a convincing one , 3 +110539 5858 is a convincing one 3 +110540 5858 a convincing one 3 +110541 5858 convincing one 3 +110542 5858 should give anyone with a conscience reason to pause 2 +110543 5858 give anyone with a conscience reason to pause 2 +110544 5858 give anyone with a conscience reason 2 +110545 5858 give anyone 2 +110546 5858 with a conscience reason 2 +110547 5858 a conscience reason 2 +110548 5858 conscience reason 2 +110549 5858 conscience 2 +110550 5858 to pause 2 +110551 5859 An uplifting , near-masterpiece . 4 +110552 5859 An uplifting , near-masterpiece 4 +110553 5859 near-masterpiece 4 +110554 5860 A keep - 'em - guessing plot and an affectionate take on its screwed-up characters . 3 +110555 5860 A keep - 'em - guessing plot and an affectionate take on its screwed-up characters 3 +110556 5860 A keep - 'em - 2 +110557 5860 A keep - 'em 2 +110558 5860 keep - 'em 3 +110559 5860 keep - 2 +110560 5860 guessing plot and an affectionate take on its screwed-up characters 3 +110561 5860 guessing plot and an affectionate 3 +110562 5860 guessing plot and 3 +110563 5860 guessing plot 2 +110564 5860 an affectionate 3 +110565 5860 take on its screwed-up characters 2 +110566 5860 on its screwed-up characters 2 +110567 5860 its screwed-up characters 1 +110568 5860 screwed-up characters 1 +110569 5861 A loud , low-budget and tired formula film that arrives cloaked in the euphemism ` urban drama . ' 0 +110570 5861 A loud , low-budget and tired formula film that arrives 0 +110571 5861 A loud , low-budget and tired formula film 1 +110572 5861 loud , low-budget and tired formula film 0 +110573 5861 loud , low-budget and tired 0 +110574 5861 , low-budget and tired 1 +110575 5861 low-budget and tired 0 +110576 5861 low-budget and 1 +110577 5861 formula film 2 +110578 5861 that arrives 2 +110579 5861 cloaked in the euphemism ` urban drama . ' 2 +110580 5861 cloaked in the euphemism ` urban drama . 2 +110581 5861 cloaked in the euphemism ` urban drama 1 +110582 5861 cloaked 2 +110583 5861 in the euphemism ` urban drama 2 +110584 5861 the euphemism ` urban drama 2 +110585 5861 euphemism ` urban drama 2 +110586 5861 euphemism 2 +110587 5861 ` urban drama 2 +110588 5861 urban drama 2 +110589 5862 Plays like a glossy melodrama that occasionally verges on camp . 1 +110590 5862 like a glossy melodrama that occasionally verges on camp . 1 +110591 5862 like a glossy melodrama that occasionally verges on camp 2 +110592 5862 a glossy melodrama that occasionally verges on camp 2 +110593 5862 a glossy melodrama 2 +110594 5862 glossy melodrama 1 +110595 5862 that occasionally verges on camp 2 +110596 5862 occasionally verges on camp 2 +110597 5862 verges on camp 2 +110598 5862 on camp 2 +110599 5863 When -LRB- Reno -RRB- lets her radical flag fly , taking angry potshots at George W. Bush , Henry Kissinger , Larry King , et al. , Reno devolves into a laugh-free lecture . 1 +110600 5863 When -LRB- Reno -RRB- lets her radical flag fly , taking angry potshots at George W. Bush , Henry Kissinger , Larry King , et al. 1 +110601 5863 -LRB- Reno -RRB- lets her radical flag fly , taking angry potshots at George W. Bush , Henry Kissinger , Larry King , et al. 0 +110602 5863 Reno -RRB- lets her radical flag fly , taking angry potshots at George W. Bush , Henry Kissinger , Larry King , et al. 1 +110603 5863 -RRB- lets her radical flag fly , taking angry potshots at George W. Bush , Henry Kissinger , Larry King , et al. 1 +110604 5863 lets her radical flag fly , taking angry potshots at George W. Bush , Henry Kissinger , Larry King , et al. 2 +110605 5863 lets her radical flag fly , 2 +110606 5863 lets her radical flag fly 2 +110607 5863 her radical flag fly 2 +110608 5863 radical flag fly 2 +110609 5863 flag fly 2 +110610 5863 flag 2 +110611 5863 taking angry potshots at George W. Bush , Henry Kissinger , Larry King , et al. 1 +110612 5863 taking angry potshots 2 +110613 5863 angry potshots 1 +110614 5863 potshots 2 +110615 5863 at George W. Bush , Henry Kissinger , Larry King , et al. 2 +110616 5863 George W. Bush , Henry Kissinger , Larry King , et al. 2 +110617 5863 George W. Bush , Henry Kissinger , Larry King , 2 +110618 5863 George W. Bush , Henry Kissinger , Larry King 2 +110619 5863 George W. Bush , Henry Kissinger , 2 +110620 5863 George W. Bush , Henry Kissinger 2 +110621 5863 George W. Bush , 2 +110622 5863 George W. Bush 2 +110623 5863 W. Bush 2 +110624 5863 W. 2 +110625 5863 Bush 2 +110626 5863 Henry Kissinger 2 +110627 5863 Henry 2 +110628 5863 Larry King 2 +110629 5863 et al. 2 +110630 5863 et 2 +110631 5863 al. 2 +110632 5863 , Reno devolves into a laugh-free lecture . 2 +110633 5863 Reno devolves into a laugh-free lecture . 1 +110634 5863 devolves into a laugh-free lecture . 1 +110635 5863 devolves into a laugh-free lecture 1 +110636 5863 into a laugh-free lecture 1 +110637 5863 a laugh-free lecture 2 +110638 5863 laugh-free lecture 1 +110639 5863 laugh-free 2 +110640 5863 lecture 2 +110641 5864 Mattei 's underdeveloped effort here is nothing but a convenient conveyor belt of brooding personalities that parade about as if they were coming back from Stock Character camp -- a drowsy drama infatuated by its own pretentious self-examination . 1 +110642 5864 Mattei 's underdeveloped effort 1 +110643 5864 underdeveloped effort 1 +110644 5864 underdeveloped 1 +110645 5864 here is nothing but a convenient conveyor belt of brooding personalities that parade about as if they were coming back from Stock Character camp -- a drowsy drama infatuated by its own pretentious self-examination . 1 +110646 5864 is nothing but a convenient conveyor belt of brooding personalities that parade about as if they were coming back from Stock Character camp -- a drowsy drama infatuated by its own pretentious self-examination . 1 +110647 5864 is nothing but a convenient conveyor belt of brooding personalities that parade about as if they were coming back from Stock Character camp -- a drowsy drama infatuated by its own pretentious self-examination 1 +110648 5864 nothing but a convenient conveyor belt of brooding personalities that parade about as if they were coming back from Stock Character camp -- a drowsy drama infatuated by its own pretentious self-examination 2 +110649 5864 but a convenient conveyor belt of brooding personalities that parade about as if they were coming back from Stock Character camp -- a drowsy drama infatuated by its own pretentious self-examination 1 +110650 5864 a convenient conveyor belt of brooding personalities that parade about as if they were coming back from Stock Character camp -- a drowsy drama infatuated by its own pretentious self-examination 0 +110651 5864 a convenient conveyor belt 2 +110652 5864 convenient conveyor belt 2 +110653 5864 conveyor belt 2 +110654 5864 conveyor 2 +110655 5864 of brooding personalities that parade about as if they were coming back from Stock Character camp -- a drowsy drama infatuated by its own pretentious self-examination 1 +110656 5864 brooding personalities that parade about as if they were coming back from Stock Character camp -- a drowsy drama infatuated by its own pretentious self-examination 1 +110657 5864 brooding personalities 2 +110658 5864 that parade about as if they were coming back from Stock Character camp -- a drowsy drama infatuated by its own pretentious self-examination 1 +110659 5864 that parade about 2 +110660 5864 that parade 2 +110661 5864 as if they were coming back from Stock Character camp -- a drowsy drama infatuated by its own pretentious self-examination 1 +110662 5864 if they were coming back from Stock Character camp -- a drowsy drama infatuated by its own pretentious self-examination 0 +110663 5864 if they were coming back from Stock Character camp 2 +110664 5864 they were coming back from Stock Character camp 2 +110665 5864 were coming back from Stock Character camp 2 +110666 5864 coming back from Stock Character camp 1 +110667 5864 from Stock Character camp 2 +110668 5864 Stock Character camp 1 +110669 5864 Character camp 2 +110670 5864 -- a drowsy drama infatuated by its own pretentious self-examination 2 +110671 5864 a drowsy drama infatuated by its own pretentious self-examination 0 +110672 5864 a drowsy drama 2 +110673 5864 drowsy drama 1 +110674 5864 drowsy 1 +110675 5864 infatuated by its own pretentious self-examination 2 +110676 5864 infatuated 3 +110677 5864 by its own pretentious self-examination 1 +110678 5864 its own pretentious self-examination 1 +110679 5864 own pretentious self-examination 1 +110680 5864 pretentious self-examination 2 +110681 5864 self-examination 2 +110682 5865 A baffling subplot involving smuggling drugs inside Danish cows falls flat , and if you 're going to alter the Bard 's ending , you 'd better have a good alternative . 1 +110683 5865 A baffling subplot involving smuggling drugs inside Danish cows falls flat , and if you 're going to alter the Bard 's ending , you 'd better have a good alternative 1 +110684 5865 A baffling subplot involving smuggling drugs inside Danish cows falls flat , and 1 +110685 5865 A baffling subplot involving smuggling drugs inside Danish cows falls flat , 2 +110686 5865 A baffling subplot involving smuggling drugs inside Danish cows falls flat 2 +110687 5865 A baffling subplot involving smuggling drugs inside Danish cows 1 +110688 5865 A baffling subplot 1 +110689 5865 baffling subplot 2 +110690 5865 subplot 2 +110691 5865 involving smuggling drugs inside Danish cows 2 +110692 5865 smuggling drugs inside Danish cows 2 +110693 5865 smuggling drugs 2 +110694 5865 smuggling 2 +110695 5865 inside Danish cows 2 +110696 5865 Danish cows 3 +110697 5865 Danish 2 +110698 5865 falls flat 1 +110699 5865 if you 're going to alter the Bard 's ending , you 'd better have a good alternative 2 +110700 5865 if you 're going to alter the Bard 's ending 2 +110701 5865 you 're going to alter the Bard 's ending 2 +110702 5865 're going to alter the Bard 's ending 2 +110703 5865 going to alter the Bard 's ending 2 +110704 5865 to alter the Bard 's ending 2 +110705 5865 alter the Bard 's ending 2 +110706 5865 alter 2 +110707 5865 the Bard 's ending 2 +110708 5865 , you 'd better have a good alternative 1 +110709 5865 you 'd better have a good alternative 2 +110710 5865 'd better have a good alternative 2 +110711 5865 'd better 2 +110712 5865 have a good alternative 2 +110713 5865 a good alternative 3 +110714 5865 good alternative 3 +110715 5866 ` In this poor remake of such a well loved classic , Parker exposes the limitations of his skill and the basic flaws in his vision . ' 0 +110716 5866 In this poor remake of such a well loved classic , Parker exposes the limitations of his skill and the basic flaws in his vision . ' 1 +110717 5866 In this poor remake of such a well loved classic 2 +110718 5866 this poor remake of such a well loved classic 1 +110719 5866 this poor remake 1 +110720 5866 poor remake 0 +110721 5866 of such a well loved classic 3 +110722 5866 such a well loved classic 4 +110723 5866 a well loved classic 3 +110724 5866 well loved classic 4 +110725 5866 loved classic 3 +110726 5866 , Parker exposes the limitations of his skill and the basic flaws in his vision . ' 1 +110727 5866 Parker exposes the limitations of his skill and the basic flaws in his vision . ' 1 +110728 5866 exposes the limitations of his skill and the basic flaws in his vision . ' 1 +110729 5866 exposes the limitations of his skill and the basic flaws in his vision . 0 +110730 5866 exposes the limitations of his skill and the basic flaws in his vision 1 +110731 5866 the limitations of his skill and the basic flaws in his vision 2 +110732 5866 the limitations of his skill and 1 +110733 5866 the limitations of his skill 1 +110734 5866 the limitations 2 +110735 5866 of his skill 2 +110736 5866 his skill 2 +110737 5866 the basic flaws in his vision 1 +110738 5866 the basic flaws 1 +110739 5866 basic flaws 1 +110740 5866 in his vision 2 +110741 5867 Offers no new insight on the matter , nor do its characters exactly spring to life . 0 +110742 5867 Offers no new insight on the matter , nor do its characters exactly spring to life 1 +110743 5867 Offers no new insight on the matter , nor 1 +110744 5867 Offers no new insight on the matter , 1 +110745 5867 Offers no new insight on the matter 0 +110746 5867 Offers no new insight 1 +110747 5867 no new insight 1 +110748 5867 new insight 3 +110749 5867 on the matter 2 +110750 5867 the matter 2 +110751 5867 do its characters exactly spring to life 2 +110752 5867 do its characters exactly spring 2 +110753 5867 do its characters exactly 2 +110754 5867 do its characters 2 +110755 5868 ... a low rate Annie featuring some kid who ca n't act , only echoes of Jordan , and weirdo actor Crispin Glover screwing things up old school . 1 +110756 5868 a low rate Annie featuring some kid who ca n't act , only echoes of Jordan , and weirdo actor Crispin Glover screwing things up old school . 2 +110757 5868 a low rate Annie featuring some kid who ca n't act , only echoes of Jordan , and weirdo actor Crispin Glover screwing things up old school 0 +110758 5868 a low rate Annie 1 +110759 5868 low rate Annie 1 +110760 5868 rate Annie 3 +110761 5868 Annie 2 +110762 5868 featuring some kid who ca n't act , only echoes of Jordan , and weirdo actor Crispin Glover screwing things up old school 2 +110763 5868 some kid who ca n't act , only echoes of Jordan , and weirdo actor Crispin Glover screwing things up old school 0 +110764 5868 some kid who ca n't act , only echoes of Jordan , and 1 +110765 5868 some kid who ca n't act , only echoes of Jordan , 1 +110766 5868 some kid who ca n't act , only echoes of Jordan 1 +110767 5868 some kid who ca n't act , only 1 +110768 5868 some kid who ca n't act , 2 +110769 5868 some kid who ca n't act 2 +110770 5868 some kid 2 +110771 5868 who ca n't act 1 +110772 5868 ca n't act 0 +110773 5868 echoes of Jordan 2 +110774 5868 of Jordan 2 +110775 5868 weirdo actor Crispin Glover screwing things up old school 0 +110776 5868 weirdo actor Crispin Glover 1 +110777 5868 actor Crispin Glover 2 +110778 5868 Crispin Glover 2 +110779 5868 Crispin 2 +110780 5868 screwing things up old school 1 +110781 5868 screwing things 2 +110782 5868 screwing 1 +110783 5868 up old school 2 +110784 5868 old school 2 +110785 5869 The quirky drama touches the heart and the funnybone thanks to the energetic and always surprising performance by Rachel Griffiths . 4 +110786 5869 The quirky drama 3 +110787 5869 quirky drama 3 +110788 5869 touches the heart and the funnybone thanks to the energetic and always surprising performance by Rachel Griffiths . 4 +110789 5869 touches the heart and the funnybone thanks to the energetic and always surprising performance by Rachel Griffiths 4 +110790 5869 touches the heart and the funnybone thanks to the energetic and always surprising performance 4 +110791 5869 touches the heart and the funnybone thanks 3 +110792 5869 the heart and the funnybone thanks 2 +110793 5869 the heart and 3 +110794 5869 the funnybone thanks 3 +110795 5869 the funnybone 2 +110796 5869 funnybone 3 +110797 5869 to the energetic and always surprising performance 3 +110798 5869 the energetic and always surprising performance 4 +110799 5869 energetic and always surprising performance 4 +110800 5869 energetic and always surprising 3 +110801 5869 always surprising 3 +110802 5869 by Rachel Griffiths 2 +110803 5869 Rachel Griffiths 2 +110804 5870 -LRB- A -RRB- poorly executed comedy . 0 +110805 5870 poorly executed comedy . 1 +110806 5870 executed comedy . 2 +110807 5870 executed comedy 2 +110808 5871 A deftly entertaining film , smartly played and smartly directed . 4 +110809 5871 A deftly entertaining film 4 +110810 5871 deftly entertaining film 4 +110811 5871 entertaining film 3 +110812 5871 , smartly played and smartly directed . 4 +110813 5871 smartly played and smartly directed . 4 +110814 5871 played and smartly directed . 4 +110815 5871 played and smartly directed 4 +110816 5871 played and smartly 3 +110817 5871 played and 2 +110818 5872 As chilling and fascinating as Philippe Mora 's modern Hitler-study , Snide and Prejudice . 3 +110819 5872 As chilling and fascinating as Philippe Mora 's modern Hitler-study 4 +110820 5872 chilling and fascinating as Philippe Mora 's modern Hitler-study 3 +110821 5872 chilling and fascinating 4 +110822 5872 as Philippe Mora 's modern Hitler-study 2 +110823 5872 Philippe Mora 's modern Hitler-study 2 +110824 5872 Philippe Mora 's 2 +110825 5872 Mora 's 2 +110826 5872 Mora 2 +110827 5872 modern Hitler-study 2 +110828 5872 Hitler-study 2 +110829 5872 , Snide and Prejudice . 1 +110830 5872 Snide and Prejudice . 1 +110831 5872 Snide and Prejudice 1 +110832 5872 Snide and 1 +110833 5872 Snide 0 +110834 5873 It 's that rare family movie -- genuine and sweet without relying on animation or dumb humor . 4 +110835 5873 's that rare family movie -- genuine and sweet without relying on animation or dumb humor . 4 +110836 5873 's that rare family movie -- genuine and sweet without relying on animation or dumb humor 3 +110837 5873 's that rare family movie -- genuine and sweet 3 +110838 5873 that rare family movie -- genuine and sweet 4 +110839 5873 that rare family movie -- 3 +110840 5873 that rare family movie 3 +110841 5873 rare family movie 3 +110842 5873 genuine and sweet 3 +110843 5873 genuine and 3 +110844 5873 without relying on animation or dumb humor 2 +110845 5873 relying on animation or dumb humor 1 +110846 5873 on animation or dumb humor 2 +110847 5873 animation or dumb humor 2 +110848 5873 animation or 2 +110849 5873 dumb humor 1 +110850 5874 Cox creates a fluid and mesmerizing sequence of images to match the words of Nijinsky 's diaries . 3 +110851 5874 creates a fluid and mesmerizing sequence of images to match the words of Nijinsky 's diaries . 3 +110852 5874 creates a fluid and mesmerizing sequence of images to match the words of Nijinsky 's diaries 3 +110853 5874 creates a fluid and mesmerizing sequence of images 4 +110854 5874 a fluid and mesmerizing sequence of images 3 +110855 5874 a fluid and mesmerizing sequence 4 +110856 5874 fluid and mesmerizing sequence 3 +110857 5874 fluid and mesmerizing 4 +110858 5874 of images 2 +110859 5874 to match the words of Nijinsky 's diaries 2 +110860 5874 match the words of Nijinsky 's diaries 2 +110861 5874 the words of Nijinsky 's diaries 2 +110862 5874 the words 2 +110863 5874 of Nijinsky 's diaries 2 +110864 5875 The whole affair , true story or not , feels incredibly hokey ... -LRB- it -RRB- comes off like a Hallmark commercial . 1 +110865 5875 The whole affair , true story or not , feels incredibly hokey ... -LRB- it -RRB- comes off like a Hallmark commercial 1 +110866 5875 The whole affair , true story or not , feels incredibly hokey ... 0 +110867 5875 The whole affair , true story or not , feels incredibly hokey 1 +110868 5875 The whole affair , true story or not , 2 +110869 5875 , true story or not , 2 +110870 5875 true story or not , 2 +110871 5875 true story or not 2 +110872 5875 true story or 2 +110873 5875 feels incredibly hokey 1 +110874 5875 incredibly hokey 1 +110875 5875 hokey 1 +110876 5875 -LRB- it -RRB- comes off like a Hallmark commercial 2 +110877 5875 it -RRB- comes off like a Hallmark commercial 1 +110878 5875 -RRB- comes off like a Hallmark commercial 1 +110879 5875 comes off like a Hallmark commercial 1 +110880 5875 like a Hallmark commercial 2 +110881 5875 a Hallmark commercial 2 +110882 5875 Hallmark commercial 1 +110883 5876 Nicholas Nickleby celebrates the human spirit with such unrelenting Dickensian decency that it turned me -LRB- horrors ! -RRB- 3 +110884 5876 celebrates the human spirit with such unrelenting Dickensian decency that it turned me -LRB- horrors ! -RRB- 3 +110885 5876 celebrates the human spirit 3 +110886 5876 with such unrelenting Dickensian decency that it turned me -LRB- horrors ! -RRB- 2 +110887 5876 such unrelenting Dickensian decency that it turned me -LRB- horrors ! -RRB- 2 +110888 5876 such unrelenting Dickensian decency that it turned me 3 +110889 5876 such unrelenting Dickensian decency 2 +110890 5876 unrelenting Dickensian decency 2 +110891 5876 Dickensian decency 2 +110892 5876 that it turned me 2 +110893 5876 it turned me 2 +110894 5876 turned me 2 +110895 5876 -LRB- horrors ! -RRB- 2 +110896 5876 horrors ! -RRB- 1 +110897 5876 horrors ! 1 +110898 5877 It is one more celluloid testimonial to the cruelties experienced by Southern blacks as distilled through a Caucasian perspective . 2 +110899 5877 is one more celluloid testimonial to the cruelties experienced by Southern blacks as distilled through a Caucasian perspective . 2 +110900 5877 is one more celluloid testimonial to the cruelties experienced by Southern blacks as distilled through a Caucasian perspective 1 +110901 5877 one more celluloid testimonial to the cruelties experienced by Southern blacks as distilled through a Caucasian perspective 1 +110902 5877 one more celluloid testimonial 2 +110903 5877 more celluloid testimonial 2 +110904 5877 more celluloid 1 +110905 5877 testimonial 2 +110906 5877 to the cruelties experienced by Southern blacks as distilled through a Caucasian perspective 1 +110907 5877 the cruelties experienced by Southern blacks as distilled through a Caucasian perspective 2 +110908 5877 the cruelties 2 +110909 5877 cruelties 2 +110910 5877 experienced by Southern blacks as distilled through a Caucasian perspective 1 +110911 5877 experienced by Southern blacks as distilled 2 +110912 5877 by Southern blacks as distilled 1 +110913 5877 Southern blacks as distilled 2 +110914 5877 Southern blacks 2 +110915 5877 blacks 2 +110916 5877 as distilled 2 +110917 5877 distilled 2 +110918 5877 through a Caucasian perspective 2 +110919 5877 a Caucasian perspective 2 +110920 5877 Caucasian perspective 2 +110921 5877 Caucasian 2 +110922 5878 It 's a hellish , numbing experience to watch , and it does n't offer any insights that have n't been thoroughly debated in the media already , back in the Dahmer heyday of the mid - '90s . 1 +110923 5878 It 's a hellish , numbing experience to watch , and it does n't offer any insights that have n't been thoroughly debated in the media already , back in the Dahmer heyday of the mid - '90s 0 +110924 5878 It 's a hellish , numbing experience to watch , and 1 +110925 5878 It 's a hellish , numbing experience to watch , 1 +110926 5878 It 's a hellish , numbing experience to watch 1 +110927 5878 's a hellish , numbing experience to watch 0 +110928 5878 's a hellish , 1 +110929 5878 's a hellish 1 +110930 5878 a hellish 2 +110931 5878 numbing experience to watch 1 +110932 5878 numbing experience 1 +110933 5878 numbing 1 +110934 5878 it does n't offer any insights that have n't been thoroughly debated in the media already , back in the Dahmer heyday of the mid - '90s 1 +110935 5878 does n't offer any insights that have n't been thoroughly debated in the media already , back in the Dahmer heyday of the mid - '90s 2 +110936 5878 offer any insights that have n't been thoroughly debated in the media already , back in the Dahmer heyday of the mid - '90s 1 +110937 5878 offer any insights that have n't been thoroughly debated in the media already , 2 +110938 5878 offer any insights that have n't been thoroughly debated in the media already 2 +110939 5878 offer any insights that have n't been thoroughly debated in the media 2 +110940 5878 any insights that have n't been thoroughly debated in the media 1 +110941 5878 any insights 2 +110942 5878 that have n't been thoroughly debated in the media 2 +110943 5878 have n't been thoroughly debated in the media 2 +110944 5878 been thoroughly debated in the media 2 +110945 5878 thoroughly debated in the media 2 +110946 5878 debated in the media 2 +110947 5878 in the media 1 +110948 5878 the media 2 +110949 5878 back in the Dahmer heyday of the mid - '90s 2 +110950 5878 in the Dahmer heyday of the mid - '90s 2 +110951 5878 the Dahmer heyday of the mid - '90s 2 +110952 5878 the Dahmer heyday 2 +110953 5878 Dahmer heyday 2 +110954 5878 of the mid - '90s 2 +110955 5878 the mid - '90s 2 +110956 5878 mid - '90s 2 +110957 5878 - '90s 2 +110958 5878 '90s 2 +110959 5879 The film is so packed with subplots involving the various Silbersteins that it feels more like the pilot episode of a TV series than a feature film . 1 +110960 5879 is so packed with subplots involving the various Silbersteins that it feels more like the pilot episode of a TV series than a feature film . 2 +110961 5879 is so packed with subplots involving the various Silbersteins that it feels more like the pilot episode of a TV series than a feature film 1 +110962 5879 so packed with subplots involving the various Silbersteins that it feels more like the pilot episode of a TV series than a feature film 1 +110963 5879 packed with subplots involving the various Silbersteins that it feels more like the pilot episode of a TV series than a feature film 1 +110964 5879 with subplots involving the various Silbersteins that it feels more like the pilot episode of a TV series than a feature film 1 +110965 5879 subplots involving the various Silbersteins that it feels more like the pilot episode of a TV series than a feature film 1 +110966 5879 involving the various Silbersteins that it feels more like the pilot episode of a TV series than a feature film 0 +110967 5879 involving the various Silbersteins 2 +110968 5879 the various Silbersteins 2 +110969 5879 various Silbersteins 2 +110970 5879 Silbersteins 2 +110971 5879 that it feels more like the pilot episode of a TV series than a feature film 1 +110972 5879 it feels more like the pilot episode of a TV series than a feature film 0 +110973 5879 feels more like the pilot episode of a TV series than a feature film 1 +110974 5879 feels more like the pilot episode of a TV series 1 +110975 5879 more like the pilot episode of a TV series 1 +110976 5879 like the pilot episode of a TV series 2 +110977 5879 the pilot episode of a TV series 2 +110978 5879 of a TV series 2 +110979 5879 a TV series 2 +110980 5880 The performances are immaculate , with Roussillon providing comic relief . 4 +110981 5880 are immaculate , with Roussillon providing comic relief . 3 +110982 5880 are immaculate , with Roussillon providing comic relief 3 +110983 5880 are immaculate , 3 +110984 5880 are immaculate 3 +110985 5880 with Roussillon providing comic relief 3 +110986 5880 Roussillon providing comic relief 3 +110987 5880 Roussillon 2 +110988 5880 providing comic relief 4 +110989 5881 A profoundly stupid affair , populating its hackneyed and meanspirited storyline with cardboard characters and performers who value cash above credibility . 0 +110990 5881 A profoundly stupid affair 1 +110991 5881 profoundly stupid affair 0 +110992 5881 profoundly stupid 0 +110993 5881 , populating its hackneyed and meanspirited storyline with cardboard characters and performers who value cash above credibility . 1 +110994 5881 populating its hackneyed and meanspirited storyline with cardboard characters and performers who value cash above credibility . 0 +110995 5881 populating its hackneyed and meanspirited storyline with cardboard characters and performers who 0 +110996 5881 populating 2 +110997 5881 its hackneyed and meanspirited storyline with cardboard characters and performers who 0 +110998 5881 its hackneyed and meanspirited storyline with cardboard characters and performers 1 +110999 5881 its hackneyed and meanspirited storyline 1 +111000 5881 hackneyed and meanspirited storyline 1 +111001 5881 hackneyed and meanspirited 0 +111002 5881 hackneyed and 1 +111003 5881 meanspirited 2 +111004 5881 with cardboard characters and performers 1 +111005 5881 cardboard characters and performers 1 +111006 5881 characters and performers 2 +111007 5881 value cash above credibility . 1 +111008 5881 value cash above credibility 2 +111009 5881 cash above credibility 2 +111010 5881 cash 2 +111011 5881 above credibility 2 +111012 5882 A gem of a movie . 4 +111013 5882 A gem of a movie 4 +111014 5883 An effective portrait of a life in stasis -- of the power of inertia to arrest development in a dead-end existence . 3 +111015 5883 An effective portrait of a life in stasis -- of the power of inertia to arrest development in a dead-end existence 3 +111016 5883 An effective portrait of a life in stasis -- 3 +111017 5883 An effective portrait of a life in stasis 3 +111018 5883 An effective portrait 3 +111019 5883 effective portrait 3 +111020 5883 of a life in stasis 2 +111021 5883 a life in stasis 2 +111022 5883 in stasis 2 +111023 5883 stasis 2 +111024 5883 of the power of inertia to arrest development in a dead-end existence 2 +111025 5883 of the power 2 +111026 5883 of inertia to arrest development in a dead-end existence 2 +111027 5883 inertia to arrest development in a dead-end existence 1 +111028 5883 to arrest development in a dead-end existence 1 +111029 5883 arrest development in a dead-end existence 0 +111030 5883 arrest development 2 +111031 5883 in a dead-end existence 1 +111032 5883 a dead-end existence 1 +111033 5883 dead-end existence 1 +111034 5884 Simply put , `` Far From Heaven '' is a masterpiece . 4 +111035 5884 Simply put 2 +111036 5884 , `` Far From Heaven '' is a masterpiece . 4 +111037 5884 `` Far From Heaven '' is a masterpiece . 4 +111038 5884 `` Far From Heaven '' 1 +111039 5884 Far From Heaven '' 2 +111040 5884 is a masterpiece . 4 +111041 5884 is a masterpiece 4 +111042 5885 The film starts promisingly , but the ending is all too predictable and far too cliched to really work . 1 +111043 5885 The film starts promisingly , but the ending is all too predictable and far too cliched to really work 1 +111044 5885 The film starts promisingly , but 1 +111045 5885 The film starts promisingly , 2 +111046 5885 The film starts promisingly 2 +111047 5885 starts promisingly 3 +111048 5885 the ending is all too predictable and far too cliched to really work 0 +111049 5885 is all too predictable and far too cliched to really work 1 +111050 5885 is all too predictable and far too cliched 0 +111051 5885 all too predictable and far too cliched 1 +111052 5885 too predictable and far too cliched 0 +111053 5885 too predictable and 1 +111054 5885 far too cliched 1 +111055 5885 too cliched 1 +111056 5885 to really work 2 +111057 5886 ... begins on a high note and sustains it beautifully . 3 +111058 5886 begins on a high note and sustains it beautifully . 4 +111059 5886 begins on a high note and sustains it beautifully 4 +111060 5886 begins on a high note and 3 +111061 5886 begins on a high note 3 +111062 5886 on a high note 3 +111063 5886 a high note 4 +111064 5886 high note 3 +111065 5886 sustains it beautifully 4 +111066 5886 sustains it 3 +111067 5887 Tries to work in the same vein as the brilliance of Animal House but instead comes closer to the failure of the third Revenge of the Nerds sequel . 0 +111068 5887 Tries to work in the same vein as the brilliance of Animal House 2 +111069 5887 to work in the same vein as the brilliance of Animal House 3 +111070 5887 work in the same vein as the brilliance of Animal House 3 +111071 5887 work in the same vein 2 +111072 5887 in the same vein 2 +111073 5887 the same vein 2 +111074 5887 same vein 2 +111075 5887 as the brilliance of Animal House 2 +111076 5887 the brilliance of Animal House 3 +111077 5887 the brilliance 2 +111078 5887 of Animal House 3 +111079 5887 but instead comes closer to the failure of the third Revenge of the Nerds sequel . 2 +111080 5887 instead comes closer to the failure of the third Revenge of the Nerds sequel . 0 +111081 5887 instead comes closer to the failure of the third Revenge of the Nerds sequel 1 +111082 5887 comes closer to the failure of the third Revenge of the Nerds sequel 0 +111083 5887 closer to the failure of the third Revenge of the Nerds sequel 1 +111084 5887 to the failure of the third Revenge of the Nerds sequel 1 +111085 5887 the failure of the third Revenge of the Nerds sequel 1 +111086 5887 the failure 2 +111087 5887 of the third Revenge of the Nerds sequel 2 +111088 5887 the third Revenge of the Nerds sequel 1 +111089 5887 the third Revenge 2 +111090 5887 third Revenge 2 +111091 5887 of the Nerds sequel 2 +111092 5887 the Nerds sequel 2 +111093 5887 Nerds sequel 2 +111094 5887 Nerds 3 +111095 5888 An instance of an old dog not only learning but inventing a remarkable new trick . 3 +111096 5888 An instance of an old dog 2 +111097 5888 An instance 2 +111098 5888 of an old dog 2 +111099 5888 an old dog 2 +111100 5888 old dog 2 +111101 5888 not only learning but inventing a remarkable new trick . 3 +111102 5888 not only learning but inventing a remarkable new trick 3 +111103 5888 only learning but inventing a remarkable new trick 3 +111104 5888 learning but inventing a remarkable new trick 4 +111105 5888 learning but inventing 2 +111106 5888 learning but 2 +111107 5888 inventing 3 +111108 5888 a remarkable new trick 3 +111109 5888 remarkable new trick 3 +111110 5888 new trick 2 +111111 5889 Henry Bean 's thoughtful screenplay provides no easy answers , but offers a compelling investigation of faith versus intellect 3 +111112 5889 Henry Bean 's thoughtful screenplay 3 +111113 5889 Henry Bean 's 2 +111114 5889 Bean 's 2 +111115 5889 thoughtful screenplay 3 +111116 5889 provides no easy answers , but offers a compelling investigation of faith versus intellect 3 +111117 5889 provides no easy answers , but 2 +111118 5889 provides no easy answers , 2 +111119 5889 provides no easy answers 2 +111120 5889 no easy answers 2 +111121 5889 offers a compelling investigation of faith versus intellect 3 +111122 5889 a compelling investigation of faith versus intellect 3 +111123 5889 a compelling investigation 3 +111124 5889 compelling investigation 3 +111125 5889 investigation 2 +111126 5889 of faith versus intellect 2 +111127 5889 faith versus intellect 2 +111128 5889 versus intellect 2 +111129 5890 What begins brightly gets bogged down over 140 minutes . 1 +111130 5890 What begins brightly 3 +111131 5890 begins brightly 2 +111132 5890 gets bogged down over 140 minutes . 0 +111133 5890 gets bogged down over 140 minutes 1 +111134 5890 bogged down over 140 minutes 1 +111135 5890 down over 140 minutes 1 +111136 5890 over 140 minutes 2 +111137 5890 140 minutes 2 +111138 5890 140 2 +111139 5891 ... a guiltless film for nice evening out . 3 +111140 5891 a guiltless film for nice evening out . 3 +111141 5891 a guiltless film for nice evening out 3 +111142 5891 a guiltless film 3 +111143 5891 guiltless film 2 +111144 5891 guiltless 2 +111145 5891 for nice evening out 3 +111146 5891 nice evening out 3 +111147 5891 evening out 2 +111148 5892 You might say Tykwer has done all that Heaven allows , if you wanted to make as anti-Kieslowski a pun as possible . 2 +111149 5892 might say Tykwer has done all that Heaven allows , if you wanted to make as anti-Kieslowski a pun as possible . 2 +111150 5892 might say Tykwer has done all that Heaven allows , if you wanted to make as anti-Kieslowski a pun as possible 2 +111151 5892 say Tykwer has done all that Heaven allows , if you wanted to make as anti-Kieslowski a pun as possible 2 +111152 5892 Tykwer has done all that Heaven allows , if you wanted to make as anti-Kieslowski a pun as possible 2 +111153 5892 has done all that Heaven allows , if you wanted to make as anti-Kieslowski a pun as possible 2 +111154 5892 done all that Heaven allows , if you wanted to make as anti-Kieslowski a pun as possible 2 +111155 5892 done all 2 +111156 5892 that Heaven allows , if you wanted to make as anti-Kieslowski a pun as possible 2 +111157 5892 Heaven allows , if you wanted to make as anti-Kieslowski a pun as possible 2 +111158 5892 allows , if you wanted to make as anti-Kieslowski a pun as possible 2 +111159 5892 allows , 2 +111160 5892 if you wanted to make as anti-Kieslowski a pun as possible 2 +111161 5892 you wanted to make as anti-Kieslowski a pun as possible 2 +111162 5892 wanted to make as anti-Kieslowski a pun as possible 2 +111163 5892 to make as anti-Kieslowski a pun as possible 1 +111164 5892 make as anti-Kieslowski a pun as possible 2 +111165 5892 as anti-Kieslowski a pun as possible 2 +111166 5892 anti-Kieslowski a pun as possible 2 +111167 5892 anti-Kieslowski 2 +111168 5892 a pun as possible 2 +111169 5892 a pun 2 +111170 5893 Shanghai Ghetto may not be as dramatic as Roman Polanski 's The Pianist , but its compassionate spirit soars every bit as high . 4 +111171 5893 Shanghai Ghetto may not be as dramatic as Roman Polanski 's The Pianist , but its compassionate spirit soars every bit as high 4 +111172 5893 Shanghai Ghetto may not be as dramatic as Roman Polanski 's The Pianist , but 1 +111173 5893 Shanghai Ghetto may not be as dramatic as Roman Polanski 's The Pianist , 2 +111174 5893 Shanghai Ghetto may not be as dramatic as Roman Polanski 's The Pianist 2 +111175 5893 may not be as dramatic as Roman Polanski 's The Pianist 2 +111176 5893 be as dramatic as Roman Polanski 's The Pianist 2 +111177 5893 be as dramatic 2 +111178 5893 as Roman Polanski 's The Pianist 2 +111179 5893 Roman Polanski 's The Pianist 2 +111180 5893 's The Pianist 2 +111181 5893 its compassionate spirit soars every bit as high 4 +111182 5893 its compassionate spirit 3 +111183 5893 compassionate spirit 3 +111184 5893 soars every bit as high 4 +111185 5893 every bit as high 3 +111186 5893 as high 2 +111187 5894 `` The Tuxedo '' should have been the vehicle for Chan that `` The Mask '' was for Jim Carrey . 2 +111188 5894 The Tuxedo '' should have been the vehicle for Chan that `` The Mask '' was for Jim Carrey . 1 +111189 5894 '' should have been the vehicle for Chan that `` The Mask '' was for Jim Carrey . 2 +111190 5894 should have been the vehicle for Chan that `` The Mask '' was for Jim Carrey . 2 +111191 5894 should have been the vehicle for Chan that `` The Mask '' was for Jim Carrey 2 +111192 5894 have been the vehicle for Chan that `` The Mask '' was for Jim Carrey 3 +111193 5894 been the vehicle for Chan that `` The Mask '' was for Jim Carrey 2 +111194 5894 been the vehicle for Chan 2 +111195 5894 the vehicle for Chan 2 +111196 5894 the vehicle 2 +111197 5894 for Chan 2 +111198 5894 that `` The Mask '' was for Jim Carrey 3 +111199 5894 `` The Mask '' was for Jim Carrey 2 +111200 5894 The Mask '' was for Jim Carrey 2 +111201 5894 '' was for Jim Carrey 2 +111202 5894 was for Jim Carrey 2 +111203 5894 for Jim Carrey 2 +111204 5895 This is one of the year 's best films . 4 +111205 5895 is one of the year 's best films . 4 +111206 5896 The film never finds its tone and several scenes run too long . 1 +111207 5896 never finds its tone and several scenes run too long . 1 +111208 5896 finds its tone and several scenes run too long . 1 +111209 5896 finds its tone and several scenes run too long 2 +111210 5896 finds its tone and several scenes run 3 +111211 5896 its tone and several scenes run 2 +111212 5896 tone and several scenes run 2 +111213 5896 and several scenes run 2 +111214 5896 several scenes run 2 +111215 5896 scenes run 2 +111216 5897 An entertaining British hybrid of comedy , caper thrills and quirky romance . 4 +111217 5897 An entertaining British hybrid of comedy , caper thrills and quirky romance 4 +111218 5897 An entertaining British hybrid 3 +111219 5897 entertaining British hybrid 3 +111220 5897 British hybrid 2 +111221 5897 of comedy , caper thrills and quirky romance 2 +111222 5897 comedy , caper thrills and quirky romance 3 +111223 5897 comedy , caper thrills and 3 +111224 5897 comedy , caper thrills 3 +111225 5897 caper thrills 3 +111226 5897 quirky romance 2 +111227 5898 Nothing more or less than an outright bodice-ripper -- it should have ditched the artsy pretensions and revelled in the entertaining shallows . 1 +111228 5898 Nothing more or less than an outright bodice-ripper 1 +111229 5898 Nothing more or less 2 +111230 5898 than an outright bodice-ripper 2 +111231 5898 an outright bodice-ripper 2 +111232 5898 outright bodice-ripper 3 +111233 5898 -- it should have ditched the artsy pretensions and revelled in the entertaining shallows . 2 +111234 5898 it should have ditched the artsy pretensions and revelled in the entertaining shallows . 1 +111235 5898 it should have ditched the artsy pretensions and revelled in the entertaining shallows 2 +111236 5898 should have ditched the artsy pretensions and revelled in the entertaining shallows 1 +111237 5898 have ditched the artsy pretensions and revelled in the entertaining shallows 1 +111238 5898 ditched the artsy pretensions and revelled in the entertaining shallows 2 +111239 5898 ditched the artsy pretensions and 2 +111240 5898 ditched the artsy pretensions 3 +111241 5898 the artsy pretensions 2 +111242 5898 artsy pretensions 2 +111243 5898 revelled in the entertaining shallows 3 +111244 5898 revelled 2 +111245 5898 in the entertaining shallows 2 +111246 5898 the entertaining shallows 2 +111247 5898 entertaining shallows 2 +111248 5898 shallows 2 +111249 5899 The powerful success of Read My Lips with such provocative material shows why , after only three films , director\/co-writer Jacques Audiard , though little known in this country , belongs in the very top rank of French filmmakers . 3 +111250 5899 The powerful success of Read My Lips with such provocative material 3 +111251 5899 The powerful success 4 +111252 5899 powerful success 4 +111253 5899 of Read My Lips with such provocative material 2 +111254 5899 Read My Lips with such provocative material 3 +111255 5899 with such provocative material 3 +111256 5899 such provocative material 2 +111257 5899 provocative material 3 +111258 5899 shows why , after only three films , director\/co-writer Jacques Audiard , though little known in this country , belongs in the very top rank of French filmmakers . 4 +111259 5899 shows why , after only three films , director\/co-writer Jacques Audiard , though little known in this country , belongs in the very top rank of French filmmakers 3 +111260 5899 why , after only three films , director\/co-writer Jacques Audiard , though little known in this country , belongs in the very top rank of French filmmakers 4 +111261 5899 , after only three films , director\/co-writer Jacques Audiard , though little known in this country , belongs in the very top rank of French filmmakers 4 +111262 5899 after only three films , director\/co-writer Jacques Audiard , though little known in this country , belongs in the very top rank of French filmmakers 4 +111263 5899 after only three films 2 +111264 5899 only three films 2 +111265 5899 three films 2 +111266 5899 , director\/co-writer Jacques Audiard , though little known in this country , belongs in the very top rank of French filmmakers 3 +111267 5899 director\/co-writer Jacques Audiard , though little known in this country , belongs in the very top rank of French filmmakers 4 +111268 5899 director\/co-writer Jacques Audiard , though little known in this country , 2 +111269 5899 director\/co-writer Jacques Audiard , though little known in this country 2 +111270 5899 director\/co-writer Jacques Audiard , 2 +111271 5899 director\/co-writer Jacques Audiard 2 +111272 5899 director\/co-writer 2 +111273 5899 Jacques Audiard 2 +111274 5899 Jacques 2 +111275 5899 though little known in this country 2 +111276 5899 little known in this country 2 +111277 5899 known in this country 2 +111278 5899 in this country 2 +111279 5899 this country 2 +111280 5899 belongs in the very top rank of French filmmakers 4 +111281 5899 in the very top rank of French filmmakers 4 +111282 5899 the very top rank of French filmmakers 3 +111283 5899 the very top rank 3 +111284 5899 very top rank 3 +111285 5899 very top 3 +111286 5899 of French filmmakers 2 +111287 5899 French filmmakers 2 +111288 5900 Big mistake . 1 +111289 5900 mistake . 1 +111290 5901 Far away . 2 +111291 5901 Far away 2 +111292 5902 Enthusiastically taking up the current teen movie concern with bodily functions , Walt Becker 's film pushes all the demographically appropriate comic buttons . 3 +111293 5902 Enthusiastically taking up the current teen movie concern with bodily functions 1 +111294 5902 taking up the current teen movie concern with bodily functions 3 +111295 5902 taking up 2 +111296 5902 the current teen movie concern with bodily functions 2 +111297 5902 the current teen movie concern 2 +111298 5902 current teen movie concern 2 +111299 5902 teen movie concern 2 +111300 5902 movie concern 2 +111301 5902 with bodily functions 2 +111302 5902 bodily functions 2 +111303 5902 , Walt Becker 's film pushes all the demographically appropriate comic buttons . 4 +111304 5902 Walt Becker 's film pushes all the demographically appropriate comic buttons . 3 +111305 5902 Walt Becker 's film 2 +111306 5902 Walt Becker 's 2 +111307 5902 Walt 2 +111308 5902 Becker 's 2 +111309 5902 Becker 2 +111310 5902 pushes all the demographically appropriate comic buttons . 3 +111311 5902 pushes all the demographically appropriate comic buttons 3 +111312 5902 all the demographically appropriate comic buttons 3 +111313 5902 the demographically appropriate comic buttons 2 +111314 5902 demographically appropriate comic buttons 2 +111315 5902 appropriate comic buttons 3 +111316 5902 comic buttons 2 +111317 5903 Unfortunately , the experience of actually watching the movie is less compelling than the circumstances of its making . 0 +111318 5903 , the experience of actually watching the movie is less compelling than the circumstances of its making . 1 +111319 5903 the experience of actually watching the movie is less compelling than the circumstances of its making . 1 +111320 5903 the experience of actually watching the movie 2 +111321 5903 of actually watching the movie 2 +111322 5903 actually watching the movie 2 +111323 5903 watching the movie 2 +111324 5903 is less compelling than the circumstances of its making . 1 +111325 5903 is less compelling than the circumstances of its making 1 +111326 5903 less compelling than the circumstances of its making 1 +111327 5903 compelling than the circumstances of its making 2 +111328 5903 than the circumstances of its making 2 +111329 5903 the circumstances of its making 2 +111330 5903 the circumstances 2 +111331 5903 of its making 2 +111332 5903 its making 2 +111333 5904 Saved from being merely way-cool by a basic , credible compassion . 2 +111334 5904 Saved from being merely way-cool by a basic , credible compassion 3 +111335 5904 from being merely way-cool by a basic , credible compassion 3 +111336 5904 being merely way-cool by a basic , credible compassion 2 +111337 5904 merely way-cool by a basic , credible compassion 3 +111338 5904 way-cool by a basic , credible compassion 3 +111339 5904 way-cool 4 +111340 5904 by a basic , credible compassion 3 +111341 5904 a basic , credible compassion 3 +111342 5904 basic , credible compassion 2 +111343 5904 , credible compassion 3 +111344 5904 credible compassion 3 +111345 5905 For a film about explosions and death and spies , `` Ballistic : Ecks vs. Sever '' seems as safe as a children 's film . 1 +111346 5905 For a film about explosions and death and spies 2 +111347 5905 a film about explosions and death and spies 2 +111348 5905 about explosions and death and spies 2 +111349 5905 explosions and death and spies 2 +111350 5905 and death and spies 2 +111351 5905 death and spies 2 +111352 5905 death and 2 +111353 5905 spies 1 +111354 5905 , `` Ballistic : Ecks vs. Sever '' seems as safe as a children 's film . 1 +111355 5905 `` Ballistic : Ecks vs. Sever '' seems as safe as a children 's film . 1 +111356 5905 `` Ballistic : Ecks vs. Sever '' 2 +111357 5905 Ballistic : Ecks vs. Sever '' 2 +111358 5905 Ecks vs. 2 +111359 5905 seems as safe as a children 's film . 2 +111360 5905 seems as safe as a children 's film 2 +111361 5905 as safe as a children 's film 2 +111362 5905 safe as a children 's film 3 +111363 5905 as a children 's film 2 +111364 5906 The title , alone , should scare any sane person away . 0 +111365 5906 , alone , should scare any sane person away . 1 +111366 5906 alone , should scare any sane person away . 1 +111367 5906 , should scare any sane person away . 1 +111368 5906 should scare any sane person away . 1 +111369 5906 should scare any sane person away 0 +111370 5906 scare any sane person away 0 +111371 5906 scare any sane person 2 +111372 5906 any sane person 2 +111373 5906 sane person 3 +111374 5907 Another boorish movie from the I-heard-a-joke - at-a-frat-party school of screenwriting . 0 +111375 5907 Another boorish movie from the I-heard-a-joke - at-a-frat-party school of screenwriting 2 +111376 5907 Another boorish movie from the I-heard-a-joke - 0 +111377 5907 Another boorish movie from the I-heard-a-joke 0 +111378 5907 Another boorish movie 1 +111379 5907 boorish movie 1 +111380 5907 boorish 1 +111381 5907 from the I-heard-a-joke 2 +111382 5907 the I-heard-a-joke 2 +111383 5907 I-heard-a-joke 2 +111384 5907 at-a-frat-party school of screenwriting 1 +111385 5907 at-a-frat-party school 2 +111386 5907 at-a-frat-party 2 +111387 5907 of screenwriting 2 +111388 5908 ... even if you 've never heard of Chaplin , you 'll still be glued to the screen . 4 +111389 5908 even if you 've never heard of Chaplin , you 'll still be glued to the screen . 3 +111390 5908 even if you 've never heard of Chaplin 2 +111391 5908 if you 've never heard of Chaplin 2 +111392 5908 you 've never heard of Chaplin 2 +111393 5908 've never heard of Chaplin 2 +111394 5908 heard of Chaplin 2 +111395 5908 of Chaplin 2 +111396 5908 , you 'll still be glued to the screen . 4 +111397 5908 you 'll still be glued to the screen . 3 +111398 5908 'll still be glued to the screen . 4 +111399 5908 'll still be glued to the screen 4 +111400 5908 be glued to the screen 3 +111401 5908 glued to the screen 4 +111402 5908 glued 3 +111403 5909 An original little film about one young woman 's education . 2 +111404 5909 An original little film about one young woman 3 +111405 5909 An original little film 3 +111406 5909 original little film 3 +111407 5909 about one young woman 2 +111408 5909 one young woman 2 +111409 5909 's education . 2 +111410 5909 's education 2 +111411 5910 Unwieldy contraption . 1 +111412 5910 contraption . 2 +111413 5911 Well , in some of those , the mother deer even dies . 1 +111414 5911 , in some of those , the mother deer even dies . 2 +111415 5911 in some of those , the mother deer even dies . 2 +111416 5911 in some of those 2 +111417 5911 some of those 2 +111418 5911 , the mother deer even dies . 2 +111419 5911 the mother deer even dies . 2 +111420 5911 the mother deer 2 +111421 5911 mother deer 2 +111422 5911 deer 2 +111423 5911 even dies . 1 +111424 5911 dies . 1 +111425 5912 You really have to salute writer-director Haneke -LRB- he adapted Elfriede Jelinek 's novel -RRB- for making a film that is n't nearly as graphic but much more powerful , brutally shocking and difficult to watch . 2 +111426 5912 really have to salute writer-director Haneke -LRB- he adapted Elfriede Jelinek 's novel -RRB- for making a film that is n't nearly as graphic but much more powerful , brutally shocking and difficult to watch . 3 +111427 5912 have to salute writer-director Haneke -LRB- he adapted Elfriede Jelinek 's novel -RRB- for making a film that is n't nearly as graphic but much more powerful , brutally shocking and difficult to watch . 3 +111428 5912 have to salute writer-director Haneke -LRB- he adapted Elfriede Jelinek 's novel -RRB- for making a film that is n't nearly as graphic but much more powerful , brutally shocking and difficult to watch 3 +111429 5912 to salute writer-director Haneke -LRB- he adapted Elfriede Jelinek 's novel -RRB- for making a film that is n't nearly as graphic but much more powerful , brutally shocking and difficult to watch 4 +111430 5912 salute writer-director Haneke -LRB- he adapted Elfriede Jelinek 's novel -RRB- for making a film that is n't nearly as graphic but much more powerful , brutally shocking and difficult to watch 4 +111431 5912 salute writer-director Haneke -LRB- he adapted Elfriede Jelinek 's novel -RRB- 3 +111432 5912 salute writer-director Haneke 3 +111433 5912 writer-director Haneke 2 +111434 5912 -LRB- he adapted Elfriede Jelinek 's novel -RRB- 2 +111435 5912 he adapted Elfriede Jelinek 's novel -RRB- 2 +111436 5912 he adapted Elfriede Jelinek 's novel 2 +111437 5912 adapted Elfriede Jelinek 's novel 2 +111438 5912 Elfriede Jelinek 's novel 2 +111439 5912 Elfriede Jelinek 's 2 +111440 5912 Elfriede 2 +111441 5912 Jelinek 's 2 +111442 5912 Jelinek 2 +111443 5912 for making a film that is n't nearly as graphic but much more powerful , brutally shocking and difficult to watch 2 +111444 5912 making a film that is n't nearly as graphic but much more powerful , brutally shocking and difficult to watch 3 +111445 5912 a film that is n't nearly as graphic but much more powerful , brutally shocking and difficult to watch 1 +111446 5912 that is n't nearly as graphic but much more powerful , brutally shocking and difficult to watch 3 +111447 5912 is n't nearly as graphic but much more powerful , brutally shocking and difficult to watch 3 +111448 5912 is n't nearly as graphic but much more powerful , brutally shocking and difficult 3 +111449 5912 nearly as graphic but much more powerful , brutally shocking and difficult 2 +111450 5912 nearly as graphic but much more powerful , brutally shocking and 4 +111451 5912 nearly as graphic but much more powerful , brutally shocking 2 +111452 5912 nearly as graphic but much more powerful , 3 +111453 5912 nearly as graphic but much more powerful 3 +111454 5912 nearly as graphic but much 1 +111455 5912 nearly as graphic but 2 +111456 5912 nearly as graphic 2 +111457 5912 as graphic 2 +111458 5912 more powerful 3 +111459 5912 brutally shocking 2 +111460 5913 In his latest effort , Storytelling , Solondz has finally made a movie that is n't just offensive -- it also happens to be good . 3 +111461 5913 In his latest effort , Storytelling , Solondz has finally made a movie that is n't just offensive -- it also happens to be good 3 +111462 5913 In his latest effort , Storytelling , Solondz has finally made a movie that is n't just offensive -- 2 +111463 5913 In his latest effort , Storytelling , Solondz has finally made a movie that is n't just offensive 2 +111464 5913 In his latest effort , Storytelling 2 +111465 5913 his latest effort , Storytelling 2 +111466 5913 his latest effort , 3 +111467 5913 his latest effort 2 +111468 5913 , Solondz has finally made a movie that is n't just offensive 2 +111469 5913 Solondz has finally made a movie that is n't just offensive 2 +111470 5913 has finally made a movie that is n't just offensive 3 +111471 5913 made a movie that is n't just offensive 1 +111472 5913 a movie that is n't just offensive 1 +111473 5913 that is n't just offensive 2 +111474 5913 is n't just offensive 1 +111475 5913 just offensive 1 +111476 5913 it also happens to be good 3 +111477 5913 also happens to be good 3 +111478 5913 happens to be good 3 +111479 5913 to be good 2 +111480 5913 be good 3 +111481 5914 ... quite endearing . 3 +111482 5914 quite endearing . 3 +111483 5914 endearing . 4 +111484 5915 It 's hard to pity the ` plain ' girl who becomes a ravishing waif after applying a smear of lip-gloss . 1 +111485 5915 's hard to pity the ` plain ' girl who becomes a ravishing waif after applying a smear of lip-gloss . 1 +111486 5915 's hard to pity the ` plain ' girl who becomes a ravishing waif after applying a smear of lip-gloss 1 +111487 5915 hard to pity the ` plain ' girl who becomes a ravishing waif after applying a smear of lip-gloss 1 +111488 5915 to pity the ` plain ' girl who becomes a ravishing waif after applying a smear of lip-gloss 1 +111489 5915 pity the ` plain ' girl who becomes a ravishing waif after applying a smear of lip-gloss 2 +111490 5915 the ` plain ' girl who becomes a ravishing waif after applying a smear of lip-gloss 2 +111491 5915 the ` plain ' girl 2 +111492 5915 ` plain ' girl 2 +111493 5915 plain ' girl 2 +111494 5915 ' girl 2 +111495 5915 who becomes a ravishing waif after applying a smear of lip-gloss 2 +111496 5915 becomes a ravishing waif after applying a smear of lip-gloss 2 +111497 5915 becomes a ravishing waif 2 +111498 5915 a ravishing waif 2 +111499 5915 ravishing waif 1 +111500 5915 waif 2 +111501 5915 after applying a smear of lip-gloss 2 +111502 5915 applying a smear of lip-gloss 2 +111503 5915 a smear of lip-gloss 2 +111504 5915 a smear 1 +111505 5915 smear 1 +111506 5915 of lip-gloss 2 +111507 5915 lip-gloss 2 +111508 5917 It 's the movie equivalent of a sweaty old guy in a rain coat shopping for cheap porn . 2 +111509 5917 's the movie equivalent of a sweaty old guy in a rain coat shopping for cheap porn . 0 +111510 5917 's the movie equivalent of a sweaty old guy in a rain coat shopping for cheap porn 1 +111511 5917 the movie equivalent of a sweaty old guy in a rain coat shopping for cheap porn 1 +111512 5917 of a sweaty old guy in a rain coat shopping for cheap porn 2 +111513 5917 a sweaty old guy in a rain coat shopping for cheap porn 1 +111514 5917 a sweaty old guy 2 +111515 5917 sweaty old guy 2 +111516 5917 sweaty 2 +111517 5917 old guy 2 +111518 5917 in a rain coat shopping for cheap porn 1 +111519 5917 a rain coat shopping for cheap porn 1 +111520 5917 a rain coat shopping 2 +111521 5917 rain coat shopping 2 +111522 5917 coat shopping 2 +111523 5917 coat 2 +111524 5917 shopping 2 +111525 5917 for cheap porn 1 +111526 5917 cheap porn 1 +111527 5918 The only pain you 'll feel as the credits roll is your stomach grumbling for some tasty grub . 1 +111528 5918 The only pain you 'll feel as the credits roll 2 +111529 5918 The only pain 1 +111530 5918 only pain 1 +111531 5918 you 'll feel as the credits roll 2 +111532 5918 'll feel as the credits roll 3 +111533 5918 feel as the credits roll 2 +111534 5918 as the credits roll 2 +111535 5918 the credits roll 2 +111536 5918 is your stomach grumbling for some tasty grub . 2 +111537 5918 is your stomach grumbling for some tasty grub 2 +111538 5918 your stomach grumbling for some tasty grub 2 +111539 5918 grumbling for some tasty grub 2 +111540 5918 grumbling 1 +111541 5918 for some tasty grub 2 +111542 5918 some tasty grub 3 +111543 5918 tasty grub 2 +111544 5918 grub 2 +111545 5919 The threat 2 +111546 5919 implied 2 +111547 5919 in the title 2 +111548 5919 is terrifying 2 +111549 5919 like locusts in a horde these things will keep coming 1 +111550 5919 like locusts in a horde 2 +111551 5919 locusts in a horde 2 +111552 5919 locusts 2 +111553 5919 in a horde 2 +111554 5919 a horde 2 +111555 5919 horde 2 +111556 5919 these things will keep coming 2 +111557 5919 these things 3 +111558 5919 will keep coming 3 +111559 5919 keep coming 2 +111560 5920 Wanders all over the map thematically and stylistically , and borrows heavily from Lynch , Jeunet , and von Trier while failing to find a spark of its own . 1 +111561 5920 Wanders 1 +111562 5920 all over the map thematically and stylistically , and borrows heavily from Lynch , Jeunet , and von Trier while failing to find a spark of its own . 2 +111563 5920 all over the map thematically and stylistically , and borrows heavily from Lynch , Jeunet , and von Trier while failing to find a spark of its own 1 +111564 5920 over the map thematically and stylistically , and borrows heavily from Lynch , Jeunet , and von Trier while failing to find a spark of its own 1 +111565 5920 over the 2 +111566 5920 map thematically and stylistically , and borrows heavily from Lynch , Jeunet , and von Trier while failing to find a spark of its own 1 +111567 5920 map thematically and stylistically , and 3 +111568 5920 map thematically and stylistically , 2 +111569 5920 map thematically and stylistically 2 +111570 5920 thematically and stylistically 3 +111571 5920 thematically and 2 +111572 5920 stylistically 3 +111573 5920 borrows heavily from Lynch , Jeunet , and von Trier while failing to find a spark of its own 1 +111574 5920 from Lynch , Jeunet , and von Trier while failing to find a spark of its own 1 +111575 5920 Lynch , Jeunet , and von Trier while failing to find a spark of its own 2 +111576 5920 Lynch , Jeunet , and von Trier 3 +111577 5920 , Jeunet , and von Trier 2 +111578 5920 Jeunet , and von Trier 2 +111579 5920 Jeunet 3 +111580 5920 , and von Trier 2 +111581 5920 and von Trier 2 +111582 5920 von Trier 2 +111583 5920 Trier 2 +111584 5920 while failing to find a spark of its own 1 +111585 5920 failing to find a spark of its own 1 +111586 5920 to find a spark of its own 2 +111587 5920 find a spark of its own 3 +111588 5920 a spark of its own 3 +111589 5921 Blessed with a searing lead performance by Ryan Gosling -LRB- Murder by Numbers -RRB- , the movie is powerful and provocative . 4 +111590 5921 Blessed with a searing lead performance by Ryan Gosling -LRB- Murder by Numbers -RRB- 3 +111591 5921 Blessed with a searing lead performance 3 +111592 5921 with a searing lead performance 4 +111593 5921 a searing lead performance 4 +111594 5921 searing lead performance 4 +111595 5921 by Ryan Gosling -LRB- Murder by Numbers -RRB- 2 +111596 5921 , the movie is powerful and provocative . 4 +111597 5921 the movie is powerful and provocative . 4 +111598 5921 is powerful and provocative . 4 +111599 5921 is powerful and provocative 4 +111600 5921 powerful and provocative 4 +111601 5922 It 's depressing to see how far Herzog has fallen . 1 +111602 5922 's depressing to see how far Herzog has fallen . 1 +111603 5922 's depressing to see how far Herzog has fallen 0 +111604 5922 depressing to see how far Herzog has fallen 0 +111605 5922 to see how far Herzog has fallen 1 +111606 5922 see how far Herzog has fallen 2 +111607 5922 how far Herzog has fallen 1 +111608 5922 Herzog has fallen 1 +111609 5923 Charming , if overly complicated ... 2 +111610 5923 Charming , if overly complicated 2 +111611 5923 if overly complicated 2 +111612 5923 overly complicated 1 +111613 5924 The film has an infectious enthusiasm and we 're touched by the film 's conviction that all life centered on that place , that time and that sport . 3 +111614 5924 The film has an infectious enthusiasm and we 're touched by the film 's conviction that all life centered on that place , that time and that sport 4 +111615 5924 The film has an infectious enthusiasm and 3 +111616 5924 The film has an infectious enthusiasm 4 +111617 5924 has an infectious enthusiasm 4 +111618 5924 an infectious enthusiasm 4 +111619 5924 infectious enthusiasm 4 +111620 5924 we 're touched by the film 's conviction that all life centered on that place , that time and that sport 3 +111621 5924 're touched by the film 's conviction that all life centered on that place , that time and that sport 3 +111622 5924 touched by the film 's conviction that all life centered on that place , that time and that sport 3 +111623 5924 touched by the film 's conviction 3 +111624 5924 by the film 's conviction 2 +111625 5924 the film 's conviction 2 +111626 5924 that all life centered on that place , that time and that sport 2 +111627 5924 all life centered on that place , that time and that sport 2 +111628 5924 all life 2 +111629 5924 centered on that place , that time and that sport 2 +111630 5924 on that place , that time and that sport 2 +111631 5924 that place , that time and that sport 2 +111632 5924 that place , that time and 2 +111633 5924 that place , that time 3 +111634 5924 that place , 2 +111635 5924 that place 2 +111636 5924 that time 2 +111637 5924 that sport 2 +111638 5925 You 'll just have your head in your hands wondering why Lee 's character did n't just go to a bank manager and save everyone the misery . 0 +111639 5925 'll just have your head in your hands wondering why Lee 's character did n't just go to a bank manager and save everyone the misery . 2 +111640 5925 'll just have your head in your hands wondering why Lee 's character did n't just go to a bank manager and save everyone the misery 0 +111641 5925 'll just 2 +111642 5925 have your head in your hands wondering why Lee 's character did n't just go to a bank manager and save everyone the misery 2 +111643 5925 have your head in your hands 2 +111644 5925 have your head 2 +111645 5925 in your hands 2 +111646 5925 your hands 2 +111647 5925 wondering why Lee 's character did n't just go to a bank manager and save everyone the misery 3 +111648 5925 why Lee 's character did n't just go to a bank manager and save everyone the misery 1 +111649 5925 Lee 's character did n't just go to a bank manager and save everyone the misery 1 +111650 5925 Lee 's character 2 +111651 5925 did n't just go to a bank manager and save everyone the misery 1 +111652 5925 did n't just 2 +111653 5925 go to a bank manager and save everyone the misery 1 +111654 5925 go to a bank manager and 2 +111655 5925 go to a bank manager 2 +111656 5925 to a bank manager 2 +111657 5925 a bank manager 2 +111658 5925 bank manager 2 +111659 5925 manager 2 +111660 5925 save everyone the misery 0 +111661 5925 save everyone 2 +111662 5926 Secretary is just too original to be ignored . 3 +111663 5926 is just too original to be ignored . 4 +111664 5926 is just too original to be ignored 3 +111665 5926 is just too original 2 +111666 5926 too original 2 +111667 5926 to be ignored 1 +111668 5926 be ignored 2 +111669 5926 ignored 2 +111670 5927 Despite its dry wit and compassion , the film suffers from a philosophical emptiness and maddeningly sedate pacing . 1 +111671 5927 Despite its dry wit and compassion 2 +111672 5927 its dry wit and compassion 2 +111673 5927 dry wit and compassion 3 +111674 5927 wit and compassion 3 +111675 5927 , the film suffers from a philosophical emptiness and maddeningly sedate pacing . 0 +111676 5927 the film suffers from a philosophical emptiness and maddeningly sedate pacing . 0 +111677 5927 suffers from a philosophical emptiness and maddeningly sedate pacing . 0 +111678 5927 suffers from a philosophical emptiness and maddeningly sedate pacing 0 +111679 5927 from a philosophical emptiness and maddeningly sedate pacing 0 +111680 5927 a philosophical emptiness and maddeningly sedate pacing 1 +111681 5927 philosophical emptiness and maddeningly sedate pacing 0 +111682 5927 emptiness and maddeningly sedate pacing 1 +111683 5927 emptiness and maddeningly 0 +111684 5927 emptiness and 1 +111685 5927 maddeningly 1 +111686 5927 sedate pacing 2 +111687 5927 sedate 1 +111688 5928 What should have been a cutting Hollywood satire is instead about as fresh as last week 's issue of Variety . 0 +111689 5928 What should have been a cutting Hollywood satire 2 +111690 5928 should have been a cutting Hollywood satire 1 +111691 5928 have been a cutting Hollywood satire 2 +111692 5928 been a cutting Hollywood satire 2 +111693 5928 a cutting Hollywood satire 3 +111694 5928 cutting Hollywood satire 3 +111695 5928 is instead about as fresh as last week 's issue of Variety . 1 +111696 5928 is instead about as fresh as last week 's issue of Variety 1 +111697 5928 is instead about as fresh 2 +111698 5928 about as fresh 2 +111699 5928 as last week 's issue of Variety 2 +111700 5928 last week 's issue of Variety 2 +111701 5928 last week 's issue 2 +111702 5928 of Variety 2 +111703 5929 Beautiful to watch and holds a certain charm . 4 +111704 5929 Beautiful to watch and holds a certain charm 4 +111705 5929 Beautiful to watch and 4 +111706 5929 Beautiful to watch 4 +111707 5929 holds a certain charm 3 +111708 5929 a certain charm 3 +111709 5929 certain charm 3 +111710 5930 The camera soars above the globe in dazzling panoramic shots that make the most of the large-screen format , before swooping down on a string of exotic locales , scooping the whole world up in a joyous communal festival of rhythm . 4 +111711 5930 soars above the globe in dazzling panoramic shots that make the most of the large-screen format , before swooping down on a string of exotic locales , scooping the whole world up in a joyous communal festival of rhythm . 3 +111712 5930 soars above the globe in dazzling panoramic shots that make the most of the large-screen format , before swooping down on a string of exotic locales , scooping the whole world up in a joyous communal festival of rhythm 2 +111713 5930 above the globe in dazzling panoramic shots that make the most of the large-screen format , before swooping down on a string of exotic locales , scooping the whole world up in a joyous communal festival of rhythm 4 +111714 5930 the globe in dazzling panoramic shots that make the most of the large-screen format , before swooping down on a string of exotic locales , scooping the whole world up in a joyous communal festival of rhythm 4 +111715 5930 the globe 2 +111716 5930 in dazzling panoramic shots that make the most of the large-screen format , before swooping down on a string of exotic locales , scooping the whole world up in a joyous communal festival of rhythm 4 +111717 5930 dazzling panoramic shots that make the most of the large-screen format , before swooping down on a string of exotic locales , scooping the whole world up in a joyous communal festival of rhythm 4 +111718 5930 dazzling panoramic shots 4 +111719 5930 panoramic shots 2 +111720 5930 that make the most of the large-screen format , before swooping down on a string of exotic locales , scooping the whole world up in a joyous communal festival of rhythm 4 +111721 5930 make the most of the large-screen format , before swooping down on a string of exotic locales , scooping the whole world up in a joyous communal festival of rhythm 3 +111722 5930 make the most of the large-screen format , 3 +111723 5930 make the most of the large-screen format 3 +111724 5930 the most of the large-screen format 2 +111725 5930 of the large-screen format 2 +111726 5930 the large-screen format 2 +111727 5930 large-screen format 2 +111728 5930 large-screen 2 +111729 5930 before swooping down on a string of exotic locales , scooping the whole world up in a joyous communal festival of rhythm 4 +111730 5930 swooping down on a string of exotic locales , scooping the whole world up in a joyous communal festival of rhythm 4 +111731 5930 swooping down on a string of exotic locales , 3 +111732 5930 swooping down on a string of exotic locales 3 +111733 5930 swooping down 2 +111734 5930 swooping 2 +111735 5930 on a string of exotic locales 3 +111736 5930 a string of exotic locales 3 +111737 5930 of exotic locales 2 +111738 5930 exotic locales 2 +111739 5930 scooping the whole world up in a joyous communal festival of rhythm 3 +111740 5930 scooping the whole world up 2 +111741 5930 scooping the whole world 2 +111742 5930 scooping 2 +111743 5930 the whole world 2 +111744 5930 whole world 2 +111745 5930 in a joyous communal festival of rhythm 4 +111746 5930 a joyous communal festival of rhythm 4 +111747 5930 a joyous communal festival 3 +111748 5930 joyous communal festival 3 +111749 5930 communal festival 2 +111750 5930 of rhythm 2 +111751 5931 -LRB- Grant -RRB- goes beyond his usual fluttering and stammering and captures the soul of a man in pain who gradually comes to recognize it and deal with it . 3 +111752 5931 -LRB- Grant -RRB- 2 +111753 5931 Grant -RRB- 2 +111754 5931 goes beyond his usual fluttering and stammering and captures the soul of a man in pain who gradually comes to recognize it and deal with it . 2 +111755 5931 goes beyond his usual fluttering and stammering and captures the soul of a man in pain who gradually comes to recognize it and deal with it 3 +111756 5931 goes beyond his usual fluttering and stammering and 3 +111757 5931 goes beyond his usual fluttering and stammering 3 +111758 5931 beyond his usual fluttering and stammering 2 +111759 5931 his usual fluttering and stammering 2 +111760 5931 usual fluttering and stammering 1 +111761 5931 fluttering and stammering 2 +111762 5931 fluttering and 2 +111763 5931 fluttering 3 +111764 5931 stammering 2 +111765 5931 captures the soul of a man in pain who gradually comes to recognize it and deal with it 3 +111766 5931 the soul of a man in pain who gradually comes to recognize it and deal with it 3 +111767 5931 the soul of a man in pain 1 +111768 5931 the soul 2 +111769 5931 of a man in pain 2 +111770 5931 a man in pain 1 +111771 5931 in pain 1 +111772 5931 who gradually comes to recognize it and deal with it 2 +111773 5931 gradually comes to recognize it and deal with it 2 +111774 5931 comes to recognize it and deal with it 2 +111775 5931 to recognize it and deal with it 2 +111776 5931 recognize it and deal with it 2 +111777 5931 recognize it and 2 +111778 5931 recognize it 3 +111779 5931 deal with it 2 +111780 5932 -LRB- A -RRB- stale retread of the '53 original . 1 +111781 5932 -LRB- A -RRB- stale retread of the '53 original 1 +111782 5932 stale retread of the '53 original 1 +111783 5932 stale retread 1 +111784 5932 of the '53 original 2 +111785 5932 the '53 original 2 +111786 5932 '53 original 2 +111787 5932 '53 2 +111788 5933 It makes even Elizabeth Hurley seem graceless and ugly . 0 +111789 5933 makes even Elizabeth Hurley seem graceless and ugly . 1 +111790 5933 makes even Elizabeth Hurley seem graceless and ugly 1 +111791 5933 even Elizabeth Hurley seem graceless and ugly 0 +111792 5933 Elizabeth Hurley seem graceless and ugly 0 +111793 5933 seem graceless and ugly 1 +111794 5933 graceless and ugly 1 +111795 5934 Blood Work is laughable in the solemnity with which it tries to pump life into overworked elements from Eastwood 's Dirty Harry period . 1 +111796 5934 is laughable in the solemnity with which it tries to pump life into overworked elements from Eastwood 's Dirty Harry period . 1 +111797 5934 is laughable in the solemnity with which it tries to pump life into overworked elements from Eastwood 's Dirty Harry period 2 +111798 5934 laughable in the solemnity with which it tries to pump life into overworked elements from Eastwood 's Dirty Harry period 1 +111799 5934 in the solemnity with which it tries to pump life into overworked elements from Eastwood 's Dirty Harry period 1 +111800 5934 the solemnity with which it tries to pump life into overworked elements from Eastwood 's Dirty Harry period 1 +111801 5934 the solemnity 2 +111802 5934 with which it tries to pump life into overworked elements from Eastwood 's Dirty Harry period 1 +111803 5934 it tries to pump life into overworked elements from Eastwood 's Dirty Harry period 1 +111804 5934 tries to pump life into overworked elements from Eastwood 's Dirty Harry period 1 +111805 5934 to pump life into overworked elements from Eastwood 's Dirty Harry period 1 +111806 5934 pump life into overworked elements from Eastwood 's Dirty Harry period 3 +111807 5934 pump life into overworked elements 2 +111808 5934 pump life 2 +111809 5934 pump 2 +111810 5934 into overworked elements 2 +111811 5934 overworked elements 2 +111812 5934 overworked 1 +111813 5934 from Eastwood 's Dirty Harry period 2 +111814 5934 Eastwood 's Dirty Harry period 2 +111815 5934 Dirty Harry period 2 +111816 5934 Harry period 2 +111817 5935 Anyone not into high-tech splatterfests is advised to take the warning literally , and log on to something more user-friendly . 1 +111818 5935 Anyone not into high-tech splatterfests 1 +111819 5935 not into high-tech splatterfests 1 +111820 5935 into high-tech splatterfests 2 +111821 5935 high-tech splatterfests 2 +111822 5935 splatterfests 1 +111823 5935 is advised to take the warning literally , and log on to something more user-friendly . 1 +111824 5935 is advised to take the warning literally , and log on to something more user-friendly 1 +111825 5935 advised to take the warning literally , and log on to something more user-friendly 1 +111826 5935 to take the warning literally , and log on to something more user-friendly 2 +111827 5935 take the warning literally , and log on to something more user-friendly 1 +111828 5935 take the warning literally , and 2 +111829 5935 take the warning literally , 2 +111830 5935 take the warning literally 1 +111831 5935 take the warning 2 +111832 5935 log on to something more user-friendly 2 +111833 5935 on to something more user-friendly 2 +111834 5935 to something more user-friendly 2 +111835 5935 something more user-friendly 1 +111836 5935 more user-friendly 2 +111837 5935 user-friendly 3 +111838 5936 It 's mindless junk like this that makes you appreciate original romantic comedies like Punch-Drunk Love . 2 +111839 5936 's mindless junk like this that makes you appreciate original romantic comedies like Punch-Drunk Love . 1 +111840 5936 's mindless junk like this that makes you appreciate original romantic comedies like Punch-Drunk Love 1 +111841 5936 mindless junk like this that makes you appreciate original romantic comedies like Punch-Drunk Love 0 +111842 5936 mindless junk 1 +111843 5936 like this that makes you appreciate original romantic comedies like Punch-Drunk Love 2 +111844 5936 this that makes you appreciate original romantic comedies like Punch-Drunk Love 2 +111845 5936 that makes you appreciate original romantic comedies like Punch-Drunk Love 2 +111846 5936 makes you appreciate original romantic comedies like Punch-Drunk Love 2 +111847 5936 you appreciate original romantic comedies like Punch-Drunk Love 3 +111848 5936 appreciate original romantic comedies like Punch-Drunk Love 2 +111849 5936 appreciate original romantic comedies 4 +111850 5936 original romantic comedies 2 +111851 5936 like Punch-Drunk Love 2 +111852 5937 The code talkers deserved better than a hollow tribute . 1 +111853 5937 The code talkers 2 +111854 5937 code talkers 2 +111855 5937 talkers 2 +111856 5937 deserved better than a hollow tribute . 2 +111857 5937 deserved better than a hollow tribute 2 +111858 5937 deserved better 2 +111859 5937 than a hollow tribute 2 +111860 5937 a hollow tribute 2 +111861 5937 hollow tribute 1 +111862 5938 Underachieves only in not taking the Shakespeare parallels quite far enough . 2 +111863 5938 Underachieves only in not taking the Shakespeare parallels quite far enough 1 +111864 5938 Underachieves only 1 +111865 5938 Underachieves 1 +111866 5938 in not taking the Shakespeare parallels quite far enough 1 +111867 5938 not taking the Shakespeare parallels quite far enough 1 +111868 5938 taking the Shakespeare parallels quite far enough 3 +111869 5938 taking the Shakespeare parallels 2 +111870 5938 the Shakespeare parallels 2 +111871 5938 Shakespeare parallels 2 +111872 5938 quite far enough 2 +111873 5938 far enough 2 +111874 5939 Since the movie is based on a Nicholas Sparks best seller , you know death is lurking around the corner , just waiting to spoil things . 2 +111875 5939 Since the movie is based on a Nicholas Sparks best seller 2 +111876 5939 the movie is based on a Nicholas Sparks best seller 2 +111877 5939 is based on a Nicholas Sparks best seller 2 +111878 5939 based on a Nicholas Sparks best seller 3 +111879 5939 on a Nicholas Sparks best seller 2 +111880 5939 a Nicholas Sparks best seller 2 +111881 5939 a Nicholas Sparks 2 +111882 5939 Nicholas Sparks 2 +111883 5939 best seller 3 +111884 5939 seller 2 +111885 5939 , you know death is lurking around the corner , just waiting to spoil things . 2 +111886 5939 you know death is lurking around the corner , just waiting to spoil things . 2 +111887 5939 know death is lurking around the corner , just waiting to spoil things . 2 +111888 5939 know death is lurking around the corner , just waiting to spoil things 2 +111889 5939 death is lurking around the corner , just waiting to spoil things 1 +111890 5939 is lurking around the corner , just waiting to spoil things 2 +111891 5939 lurking around the corner , just waiting to spoil things 1 +111892 5939 lurking around the corner , 2 +111893 5939 lurking around the corner 2 +111894 5939 around the corner 2 +111895 5939 the corner 2 +111896 5939 just waiting to spoil things 2 +111897 5939 waiting to spoil things 1 +111898 5939 to spoil things 1 +111899 5939 spoil things 1 +111900 5939 spoil 2 +111901 5940 Tsai Ming-liang 's ghosts are painfully aware of their not-being . 2 +111902 5940 Tsai Ming-liang 's ghosts 2 +111903 5940 Tsai Ming-liang 's 2 +111904 5940 are painfully aware of their not-being . 2 +111905 5940 are painfully aware of their not-being 1 +111906 5940 painfully aware of their not-being 1 +111907 5940 aware of their not-being 2 +111908 5940 of their not-being 2 +111909 5940 their not-being 2 +111910 5940 not-being 2 +111911 5941 On the Granger Movie Gauge of 1 to 10 , The Powerpuff Girls is a fast , frenetic , funny , even punny 6 -- aimed specifically at a grade-school audience . 3 +111912 5941 On the Granger Movie Gauge of 1 to 10 2 +111913 5941 the Granger Movie Gauge of 1 to 10 2 +111914 5941 the Granger Movie Gauge 2 +111915 5941 Granger Movie Gauge 2 +111916 5941 Granger 2 +111917 5941 Movie Gauge 3 +111918 5941 Gauge 2 +111919 5941 of 1 to 10 2 +111920 5941 1 to 10 2 +111921 5941 1 to 2 +111922 5941 , The Powerpuff Girls is a fast , frenetic , funny , even punny 6 -- aimed specifically at a grade-school audience . 4 +111923 5941 The Powerpuff Girls is a fast , frenetic , funny , even punny 6 -- aimed specifically at a grade-school audience . 3 +111924 5941 is a fast , frenetic , funny , even punny 6 -- aimed specifically at a grade-school audience . 3 +111925 5941 is a fast , frenetic , funny , even punny 6 -- aimed specifically at a grade-school audience 4 +111926 5941 a fast , frenetic , funny , even punny 6 -- aimed specifically at a grade-school audience 3 +111927 5941 a fast , frenetic , funny , even punny 6 -- 4 +111928 5941 a fast , frenetic , funny , even punny 6 4 +111929 5941 fast , frenetic , funny , even punny 6 3 +111930 5941 , frenetic , funny , even punny 6 4 +111931 5941 frenetic , funny , even punny 6 4 +111932 5941 , funny , even punny 6 3 +111933 5941 funny , even punny 6 3 +111934 5941 , even punny 6 2 +111935 5941 even punny 6 2 +111936 5941 punny 6 2 +111937 5941 punny 2 +111938 5941 6 2 +111939 5941 aimed specifically at a grade-school audience 2 +111940 5941 aimed specifically 2 +111941 5941 at a grade-school audience 1 +111942 5941 a grade-school audience 2 +111943 5941 grade-school audience 1 +111944 5941 grade-school 2 +111945 5942 The explosion essentially ruined -- or , rather , overpowered -- the fiction of the movie for me . 1 +111946 5942 The explosion essentially ruined -- or , rather , overpowered -- the fiction of the movie for me 1 +111947 5942 The explosion essentially ruined -- or , rather , overpowered -- 0 +111948 5942 The explosion essentially ruined -- or , rather , overpowered 1 +111949 5942 The explosion 2 +111950 5942 essentially ruined -- or , rather , overpowered 1 +111951 5942 essentially ruined -- or , rather , 0 +111952 5942 essentially ruined -- or , rather 1 +111953 5942 essentially ruined -- or , 1 +111954 5942 essentially ruined -- or 0 +111955 5942 essentially ruined -- 0 +111956 5942 essentially ruined 2 +111957 5942 overpowered 2 +111958 5942 the fiction of the movie for me 2 +111959 5942 the fiction 2 +111960 5942 of the movie for me 2 +111961 5942 the movie for me 2 +111962 5943 This is n't exactly profound cinema , but it 's good-natured and sometimes quite funny . 3 +111963 5943 This is n't exactly profound cinema , but it 's good-natured and sometimes quite funny 3 +111964 5943 This is n't exactly profound cinema , but 1 +111965 5943 This is n't exactly profound cinema , 1 +111966 5943 This is n't exactly profound cinema 2 +111967 5943 is n't exactly profound cinema 1 +111968 5943 is n't exactly 2 +111969 5943 profound cinema 4 +111970 5943 it 's good-natured and sometimes quite funny 3 +111971 5943 's good-natured and sometimes quite funny 3 +111972 5943 good-natured and sometimes quite funny 4 +111973 5943 sometimes quite funny 3 +111974 5944 A pathetic exploitation film that tries to seem sincere , and just seems worse for the effort . 0 +111975 5944 A pathetic exploitation film that tries to seem sincere , and just 2 +111976 5944 A pathetic exploitation film 0 +111977 5944 pathetic exploitation film 1 +111978 5944 exploitation film 1 +111979 5944 that tries to seem sincere , and just 2 +111980 5944 tries to seem sincere , and just 1 +111981 5944 to seem sincere , and just 2 +111982 5944 seem sincere , and just 3 +111983 5944 sincere , and just 3 +111984 5944 sincere , and 2 +111985 5944 sincere , 2 +111986 5944 seems worse for the effort . 1 +111987 5944 seems worse for the effort 1 +111988 5944 worse for the effort 2 +111989 5944 for the effort 2 +111990 5945 The nicest thing that can be said about Stealing Harvard -LRB- which might have been called Freddy Gets Molested by a Dog -RRB- is that it 's not as obnoxious as Tom Green 's Freddie Got Fingered . 1 +111991 5945 The nicest thing that can be said about Stealing Harvard -LRB- which might have been called Freddy Gets Molested by a Dog -RRB- 1 +111992 5945 The nicest thing that can be said about Stealing Harvard 2 +111993 5945 that can be said about Stealing Harvard 2 +111994 5945 can be said about Stealing Harvard 2 +111995 5945 be said about Stealing Harvard 2 +111996 5945 said about Stealing Harvard 2 +111997 5945 about Stealing Harvard 2 +111998 5945 -LRB- which might have been called Freddy Gets Molested by a Dog -RRB- 1 +111999 5945 which might have been called Freddy Gets Molested by a Dog -RRB- 1 +112000 5945 which might have been called Freddy Gets Molested by a Dog 1 +112001 5945 might have been called Freddy Gets Molested by a Dog 1 +112002 5945 have been called Freddy Gets Molested by a Dog 1 +112003 5945 been called Freddy Gets Molested by a Dog 0 +112004 5945 called Freddy Gets Molested by a Dog 1 +112005 5945 Freddy Gets Molested by a Dog 1 +112006 5945 Freddy Gets Molested 0 +112007 5945 Gets Molested 1 +112008 5945 Molested 1 +112009 5945 by a Dog 2 +112010 5945 a Dog 2 +112011 5945 is that it 's not as obnoxious as Tom Green 's Freddie Got Fingered . 2 +112012 5945 is that it 's not as obnoxious as Tom Green 's Freddie Got Fingered 1 +112013 5945 that it 's not as obnoxious as Tom Green 's Freddie Got Fingered 2 +112014 5945 it 's not as obnoxious as Tom Green 's Freddie Got Fingered 2 +112015 5945 's not as obnoxious as Tom Green 's Freddie Got Fingered 1 +112016 5945 as obnoxious as Tom Green 's Freddie Got Fingered 1 +112017 5945 obnoxious as Tom Green 's Freddie Got Fingered 1 +112018 5945 as Tom Green 's Freddie Got Fingered 2 +112019 5945 Tom Green 's Freddie Got Fingered 1 +112020 5945 Tom Green 's 2 +112021 5945 Green 's 2 +112022 5945 Freddie Got Fingered 2 +112023 5946 Full of detail about the man and his country , and is well worth seeing . 4 +112024 5946 Full of detail about the man and his country , and is well worth seeing 4 +112025 5946 Full of detail about the man and his country , and 2 +112026 5946 Full of detail about the man and his country , 2 +112027 5946 Full of detail about the man and his country 2 +112028 5946 Full of detail 3 +112029 5946 of detail 2 +112030 5946 about the man and his country 2 +112031 5946 the man and his country 2 +112032 5946 his country 2 +112033 5946 is well worth seeing 4 +112034 5947 works on the whodunit level as its larger themes get lost in the murk of its own making 1 +112035 5947 works on the whodunit level as its larger themes 2 +112036 5947 on the whodunit level as its larger themes 2 +112037 5947 the whodunit level as its larger themes 2 +112038 5947 the whodunit level 2 +112039 5947 whodunit level 2 +112040 5947 as its larger themes 3 +112041 5947 its larger themes 2 +112042 5947 larger themes 2 +112043 5947 get lost in the murk of its own making 1 +112044 5947 lost in the murk of its own making 1 +112045 5947 in the murk of its own making 1 +112046 5947 the murk of its own making 1 +112047 5947 the murk 2 +112048 5947 murk 1 +112049 5947 of its own making 2 +112050 5947 its own making 3 +112051 5947 own making 2 +112052 5948 May seriously impair your ability to ever again maintain a straight face while speaking to a highway patrolman . 2 +112053 5948 seriously impair your ability to ever again maintain a straight face while speaking to a highway patrolman . 2 +112054 5948 impair your ability to ever again maintain a straight face while speaking to a highway patrolman . 3 +112055 5948 impair your ability to ever again maintain a straight face while speaking to a highway patrolman 3 +112056 5948 impair 2 +112057 5948 your ability to ever again maintain a straight face while speaking to a highway patrolman 2 +112058 5948 ability to ever again maintain a straight face while speaking to a highway patrolman 2 +112059 5948 to ever again maintain a straight face while speaking to a highway patrolman 2 +112060 5948 ever again maintain a straight face while speaking to a highway patrolman 2 +112061 5948 ever again 2 +112062 5948 maintain a straight face while speaking to a highway patrolman 3 +112063 5948 maintain a straight face 3 +112064 5948 while speaking to a highway patrolman 2 +112065 5948 speaking to a highway patrolman 2 +112066 5948 to a highway patrolman 2 +112067 5948 a highway patrolman 2 +112068 5948 highway patrolman 2 +112069 5948 highway 2 +112070 5948 patrolman 2 +112071 5949 It hates its characters . 1 +112072 5949 hates its characters . 2 +112073 5949 hates its characters 1 +112074 5950 So fiendishly cunning that even the most jaded cinema audiences will leave the auditorium feeling dizzy , confused , and totally disorientated . 3 +112075 5950 fiendishly cunning that even the most jaded cinema audiences will leave the auditorium feeling dizzy , confused , and totally disorientated . 2 +112076 5950 fiendishly 1 +112077 5950 cunning that even the most jaded cinema audiences will leave the auditorium feeling dizzy , confused , and totally disorientated . 2 +112078 5950 cunning that even the most jaded cinema audiences will leave the auditorium feeling dizzy , confused , and totally disorientated 2 +112079 5950 that even the most jaded cinema audiences will leave the auditorium feeling dizzy , confused , and totally disorientated 0 +112080 5950 even the most jaded cinema audiences will leave the auditorium feeling dizzy , confused , and totally disorientated 2 +112081 5950 even the most jaded cinema audiences 3 +112082 5950 the most jaded cinema audiences 2 +112083 5950 most jaded cinema audiences 1 +112084 5950 most jaded 3 +112085 5950 cinema audiences 2 +112086 5950 will leave the auditorium feeling dizzy , confused , and totally disorientated 1 +112087 5950 leave the auditorium feeling dizzy , confused , and totally disorientated 0 +112088 5950 the auditorium feeling dizzy , confused , and totally disorientated 0 +112089 5950 the auditorium feeling 2 +112090 5950 auditorium feeling 2 +112091 5950 dizzy , confused , and totally disorientated 0 +112092 5950 dizzy 1 +112093 5950 , confused , and totally disorientated 1 +112094 5950 confused , and totally disorientated 1 +112095 5950 , and totally disorientated 1 +112096 5950 and totally disorientated 1 +112097 5950 totally disorientated 1 +112098 5950 disorientated 1 +112099 5951 Like the series , the movie is funny , smart , visually inventive , and most of all , alive . 2 +112100 5951 Like the series 2 +112101 5951 , the movie is funny , smart , visually inventive , and most of all , alive . 4 +112102 5951 the movie is funny , smart , visually inventive , and most of all , alive . 4 +112103 5951 is funny , smart , visually inventive , and most of all , alive . 4 +112104 5951 is funny , smart , visually inventive , and most of all , alive 3 +112105 5951 is funny , smart , visually inventive , and most of all , 4 +112106 5951 is funny , smart , visually inventive , and most of all 4 +112107 5951 is funny , smart , visually inventive , and most 4 +112108 5951 funny , smart , visually inventive , and most 3 +112109 5951 funny , smart , visually inventive , and 4 +112110 5951 funny , smart , visually inventive , 4 +112111 5951 funny , smart , visually inventive 3 +112112 5951 funny , smart , 3 +112113 5951 funny , smart 4 +112114 5951 visually inventive 3 +112115 5952 Jacquot has filmed the opera exactly as the libretto directs , ideally capturing the opera 's drama and lyricism . 3 +112116 5952 has filmed the opera exactly as the libretto directs , ideally capturing the opera 's drama and lyricism . 4 +112117 5952 has filmed the opera exactly as the libretto directs , ideally capturing the opera 's drama and lyricism 4 +112118 5952 filmed the opera exactly as the libretto directs , ideally capturing the opera 's drama and lyricism 4 +112119 5952 filmed the opera exactly 2 +112120 5952 as the libretto directs , ideally capturing the opera 's drama and lyricism 3 +112121 5952 the libretto directs , ideally capturing the opera 's drama and lyricism 3 +112122 5952 the libretto 2 +112123 5952 libretto 2 +112124 5952 directs , ideally capturing the opera 's drama and lyricism 3 +112125 5952 directs , ideally 3 +112126 5952 directs , 2 +112127 5952 ideally 3 +112128 5952 capturing the opera 's drama and lyricism 3 +112129 5952 the opera 's drama and lyricism 3 +112130 5952 the opera 's 2 +112131 5952 opera 's 2 +112132 5952 drama and lyricism 2 +112133 5952 drama and 2 +112134 5953 Philosophically , intellectually and logistically a mess . 0 +112135 5953 Philosophically 2 +112136 5953 , intellectually and logistically a mess . 1 +112137 5953 intellectually and logistically a mess . 0 +112138 5953 intellectually and logistically a mess 2 +112139 5953 intellectually and logistically 3 +112140 5953 intellectually and 2 +112141 5953 logistically 3 +112142 5954 The performances are all solid ; it merely lacks originality to make it a great movie . 2 +112143 5954 The performances are all solid ; it merely lacks originality to make it a great movie 3 +112144 5954 The performances are all solid ; 3 +112145 5954 The performances are all solid 3 +112146 5954 are all solid 2 +112147 5954 it merely lacks originality to make it a great movie 1 +112148 5954 merely lacks originality to make it a great movie 1 +112149 5954 lacks originality to make it a great movie 1 +112150 5954 originality to make it a great movie 4 +112151 5954 to make it a great movie 3 +112152 5954 make it a great movie 4 +112153 5954 it a great movie 3 +112154 5955 Move over Bond ; this girl deserves a sequel . 4 +112155 5955 Move over Bond ; this girl deserves a sequel 4 +112156 5955 Move over Bond ; 3 +112157 5955 Move over Bond 4 +112158 5955 over Bond 2 +112159 5955 this girl deserves a sequel 3 +112160 5955 this girl 3 +112161 5955 deserves a sequel 4 +112162 5955 a sequel 2 +112163 5956 Barely manages for but a few seconds over its seemingly eternal running time to pique your interest , your imagination , your empathy or anything , really , save your disgust and your indifference . 1 +112164 5956 manages for but a few seconds over its seemingly eternal running time to pique your interest , your imagination , your empathy or anything , really , save your disgust and your indifference . 1 +112165 5956 manages for but a few seconds over its seemingly eternal running time to pique your interest , your imagination , your empathy or anything , really , save your disgust and your indifference 1 +112166 5956 manages for but a few seconds 1 +112167 5956 for but a few seconds 1 +112168 5956 but a few seconds 2 +112169 5956 a few seconds 2 +112170 5956 few seconds 3 +112171 5956 over its seemingly eternal running time to pique your interest , your imagination , your empathy or anything , really , save your disgust and your indifference 0 +112172 5956 its seemingly eternal running time to pique your interest , your imagination , your empathy or anything , really , save your disgust and your indifference 1 +112173 5956 seemingly eternal running time to pique your interest , your imagination , your empathy or anything , really , save your disgust and your indifference 0 +112174 5956 seemingly eternal 2 +112175 5956 eternal 2 +112176 5956 running time to pique your interest , your imagination , your empathy or anything , really , save your disgust and your indifference 2 +112177 5956 time to pique your interest , your imagination , your empathy or anything , really , save your disgust and your indifference 1 +112178 5956 to pique your interest , your imagination , your empathy or anything , really , save your disgust and your indifference 2 +112179 5956 pique your interest , your imagination , your empathy or anything , really , save your disgust and your indifference 1 +112180 5956 pique your interest , your imagination , your empathy or anything , 3 +112181 5956 pique your interest , your imagination , your empathy or anything 2 +112182 5956 pique 2 +112183 5956 your interest , your imagination , your empathy or anything 2 +112184 5956 your interest , your imagination , your empathy or 2 +112185 5956 your interest , your imagination , your empathy 3 +112186 5956 your interest , your imagination , 2 +112187 5956 your interest , your imagination 2 +112188 5956 your interest , 2 +112189 5956 your imagination 2 +112190 5956 your empathy 2 +112191 5956 really , save your disgust and your indifference 1 +112192 5956 , save your disgust and your indifference 1 +112193 5956 save your disgust and your indifference 2 +112194 5956 your disgust and your indifference 0 +112195 5956 your disgust and 2 +112196 5956 your disgust 1 +112197 5956 your indifference 1 +112198 5957 The metaphors are provocative , but too often , the viewer is left puzzled by the mechanics of the delivery . 1 +112199 5957 The metaphors are provocative , but too often , the viewer is left puzzled by the mechanics of the delivery 1 +112200 5957 The metaphors are provocative , but 3 +112201 5957 The metaphors are provocative , 3 +112202 5957 The metaphors are provocative 3 +112203 5957 The metaphors 2 +112204 5957 are provocative 2 +112205 5957 too often , the viewer is left puzzled by the mechanics of the delivery 1 +112206 5957 , the viewer is left puzzled by the mechanics of the delivery 1 +112207 5957 the viewer is left puzzled by the mechanics of the delivery 1 +112208 5957 is left puzzled by the mechanics of the delivery 1 +112209 5957 is left 2 +112210 5957 puzzled by the mechanics of the delivery 1 +112211 5957 puzzled 2 +112212 5957 by the mechanics of the delivery 2 +112213 5957 the mechanics of the delivery 2 +112214 5957 the mechanics 2 +112215 5957 of the delivery 2 +112216 5957 the delivery 2 +112217 5958 Interesting and thoroughly unfaithful version of Carmen 3 +112218 5958 Interesting and thoroughly unfaithful version 2 +112219 5958 Interesting and thoroughly 4 +112220 5958 unfaithful version 2 +112221 5959 A terrifically entertaining specimen of Spielbergian sci-fi . 4 +112222 5959 A terrifically entertaining specimen of Spielbergian 4 +112223 5959 A terrifically entertaining specimen 4 +112224 5959 terrifically entertaining specimen 4 +112225 5959 terrifically entertaining 4 +112226 5959 of Spielbergian 2 +112227 5959 Spielbergian 2 +112228 5959 sci-fi . 3 +112229 5960 Everything that was right about Blade is wrong in its sequel . 1 +112230 5960 Everything that was right about Blade 3 +112231 5960 that was right about Blade 2 +112232 5960 was right about Blade 3 +112233 5960 right about Blade 2 +112234 5960 about Blade 2 +112235 5960 is wrong in its sequel . 1 +112236 5960 is wrong in its sequel 1 +112237 5960 wrong in its sequel 2 +112238 5960 in its sequel 2 +112239 5960 its sequel 2 +112240 5961 If you ever wondered what it would be like to be smack in the middle of a war zone armed with nothing but a camera , this Oscar-nominated documentary takes you there . 4 +112241 5961 If you ever wondered what it would be like to be smack in the middle of a war zone armed with nothing but a camera 3 +112242 5961 you ever wondered what it would be like to be smack in the middle of a war zone armed with nothing but a camera 2 +112243 5961 ever wondered what it would be like to be smack in the middle of a war zone armed with nothing but a camera 2 +112244 5961 wondered what it would be like to be smack in the middle of a war zone armed with nothing but a camera 2 +112245 5961 what it would be like to be smack in the middle of a war zone armed with nothing but a camera 3 +112246 5961 it would be like to be smack in the middle of a war zone armed with nothing but a camera 3 +112247 5961 would be like to be smack in the middle of a war zone armed with nothing but a camera 3 +112248 5961 be like to be smack in the middle of a war zone armed with nothing but a camera 3 +112249 5961 like to be smack in the middle of a war zone armed with nothing but a camera 2 +112250 5961 to be smack in the middle of a war zone armed with nothing but a camera 2 +112251 5961 be smack in the middle of a war zone armed with nothing but a camera 2 +112252 5961 smack in the middle of a war zone armed with nothing but a camera 2 +112253 5961 smack in the middle of a war zone 2 +112254 5961 smack 2 +112255 5961 in the middle of a war zone 2 +112256 5961 the middle of a war zone 2 +112257 5961 of a war zone 1 +112258 5961 a war zone 2 +112259 5961 war zone 2 +112260 5961 armed with nothing but a camera 2 +112261 5961 armed 2 +112262 5961 with nothing but a camera 2 +112263 5961 nothing but a camera 2 +112264 5961 but a camera 2 +112265 5961 a camera 2 +112266 5961 , this Oscar-nominated documentary takes you there . 3 +112267 5961 this Oscar-nominated documentary takes you there . 3 +112268 5961 this Oscar-nominated documentary 4 +112269 5961 Oscar-nominated documentary 4 +112270 5961 Oscar-nominated 4 +112271 5961 takes you there . 2 +112272 5961 takes you there 2 +112273 5961 you there 2 +112274 5962 An animation landmark as monumental as Disney 's 1937 breakthrough Snow White and the Seven Dwarfs . 4 +112275 5962 An animation 2 +112276 5962 landmark as monumental as Disney 's 1937 breakthrough Snow White and the Seven Dwarfs . 3 +112277 5962 landmark as monumental as Disney 's 1937 breakthrough Snow White and the Seven Dwarfs 4 +112278 5962 as monumental as Disney 's 1937 breakthrough Snow White and the Seven Dwarfs 3 +112279 5962 as monumental as Disney 's 1937 breakthrough 4 +112280 5962 monumental as Disney 's 1937 breakthrough 4 +112281 5962 as Disney 's 1937 breakthrough 3 +112282 5962 Disney 's 1937 breakthrough 4 +112283 5962 1937 breakthrough 3 +112284 5962 1937 2 +112285 5962 Snow White and the Seven Dwarfs 2 +112286 5962 Snow White and 2 +112287 5962 Snow White 3 +112288 5962 the Seven Dwarfs 2 +112289 5962 Seven Dwarfs 2 +112290 5962 Dwarfs 2 +112291 5963 ... the whole thing succeeded only in making me groggy . 1 +112292 5963 the whole thing succeeded only in making me groggy . 1 +112293 5963 succeeded only in making me groggy . 3 +112294 5963 succeeded only in making me groggy 0 +112295 5963 succeeded 3 +112296 5963 only in making me groggy 1 +112297 5963 in making me groggy 1 +112298 5963 making me groggy 1 +112299 5963 making me 2 +112300 5963 groggy 1 +112301 5964 The niftiest trick perpetrated by The Importance of Being Earnest is the alchemical transmogrification of Wilde into Austen -- and a Hollywood-ized Austen at that . 2 +112302 5964 The niftiest trick perpetrated by The Importance of Being Earnest 3 +112303 5964 The niftiest trick 3 +112304 5964 niftiest trick 3 +112305 5964 niftiest 3 +112306 5964 perpetrated by The Importance of Being Earnest 2 +112307 5964 perpetrated 2 +112308 5964 by The Importance of Being Earnest 2 +112309 5964 is the alchemical transmogrification of Wilde into Austen -- and a Hollywood-ized Austen at that . 1 +112310 5964 is the alchemical transmogrification of Wilde into Austen -- and a Hollywood-ized Austen at that 1 +112311 5964 the alchemical transmogrification of Wilde into Austen -- and a Hollywood-ized Austen at that 2 +112312 5964 the alchemical transmogrification of Wilde into Austen -- and 3 +112313 5964 the alchemical transmogrification of Wilde into Austen -- 3 +112314 5964 the alchemical transmogrification of Wilde into Austen 2 +112315 5964 the alchemical transmogrification 2 +112316 5964 alchemical transmogrification 2 +112317 5964 alchemical 2 +112318 5964 transmogrification 2 +112319 5964 of Wilde into Austen 2 +112320 5964 Wilde into Austen 2 +112321 5964 into Austen 2 +112322 5964 Austen 2 +112323 5964 a Hollywood-ized Austen at that 2 +112324 5964 a Hollywood-ized Austen 2 +112325 5964 Hollywood-ized Austen 2 +112326 5964 Hollywood-ized 2 +112327 5965 If religious films are n't your bailiwick , stay away . 1 +112328 5965 If religious films are n't your bailiwick 2 +112329 5965 religious films are n't your bailiwick 2 +112330 5965 religious films 2 +112331 5965 are n't your bailiwick 1 +112332 5965 your bailiwick 2 +112333 5965 bailiwick 2 +112334 5965 , stay away . 0 +112335 5965 stay away . 0 +112336 5965 stay away 0 +112337 5966 Almost nothing else -- raunchy and graphic as it may be in presentation -- is one-sided , outwardly sexist or mean-spirited . 2 +112338 5966 Almost nothing else -- raunchy and graphic as it may be in presentation -- 2 +112339 5966 Almost nothing else 1 +112340 5966 -- raunchy and graphic as it may be in presentation -- 2 +112341 5966 raunchy and graphic as it may be in presentation -- 3 +112342 5966 raunchy and graphic as it may be in presentation 2 +112343 5966 raunchy and graphic 1 +112344 5966 as it may be in presentation 2 +112345 5966 it may be in presentation 2 +112346 5966 may be in presentation 2 +112347 5966 be in presentation 2 +112348 5966 in presentation 2 +112349 5966 is one-sided , outwardly sexist or mean-spirited . 2 +112350 5966 is one-sided , outwardly sexist or mean-spirited 1 +112351 5966 one-sided , outwardly sexist or mean-spirited 1 +112352 5966 one-sided , outwardly sexist or 1 +112353 5966 one-sided , outwardly sexist 1 +112354 5966 one-sided , 1 +112355 5966 outwardly sexist 0 +112356 5966 outwardly 2 +112357 5967 Rumor , a muddled drama about coming to terms with death , feels impersonal , almost generic . 1 +112358 5967 Rumor , a muddled drama about coming to terms with death , 1 +112359 5967 Rumor , a muddled drama about coming to terms with death 2 +112360 5967 Rumor , 2 +112361 5967 a muddled drama about coming to terms with death 2 +112362 5967 a muddled drama 2 +112363 5967 muddled drama 1 +112364 5967 about coming to terms with death 2 +112365 5967 coming to terms with death 2 +112366 5967 to terms with death 2 +112367 5967 terms with death 2 +112368 5967 with death 2 +112369 5967 feels impersonal , almost generic . 1 +112370 5967 feels impersonal , almost generic 0 +112371 5967 impersonal , almost generic 1 +112372 5967 , almost generic 1 +112373 5967 almost generic 1 +112374 5968 Alan and his fellow survivors are idiosyncratic enough to lift the movie above its playwriting 101 premise . 3 +112375 5968 Alan and his fellow survivors 2 +112376 5968 Alan and 2 +112377 5968 his fellow survivors 2 +112378 5968 fellow survivors 2 +112379 5968 are idiosyncratic enough to lift the movie above its playwriting 101 premise . 3 +112380 5968 are idiosyncratic enough to lift the movie above its playwriting 101 premise 3 +112381 5968 idiosyncratic enough to lift the movie above its playwriting 101 premise 3 +112382 5968 idiosyncratic enough 2 +112383 5968 to lift the movie above its playwriting 101 premise 2 +112384 5968 lift the movie above its playwriting 101 premise 3 +112385 5968 the movie above its playwriting 101 premise 2 +112386 5968 above its playwriting 101 premise 2 +112387 5968 its playwriting 101 premise 3 +112388 5968 playwriting 101 premise 1 +112389 5968 playwriting 3 +112390 5968 101 premise 2 +112391 5969 It 's a satisfying summer blockbuster and worth a look . 3 +112392 5969 's a satisfying summer blockbuster and worth a look . 3 +112393 5969 's a satisfying summer blockbuster and worth a look 3 +112394 5969 a satisfying summer blockbuster and worth a look 3 +112395 5969 a satisfying summer blockbuster and 3 +112396 5969 a satisfying summer blockbuster 3 +112397 5969 satisfying summer blockbuster 4 +112398 5969 satisfying summer 3 +112399 5970 K-19 : The Widowmaker is derivative , overlong , and bombastic -- yet surprisingly entertaining . 3 +112400 5970 : The Widowmaker is derivative , overlong , and bombastic -- yet surprisingly entertaining . 3 +112401 5970 The Widowmaker is derivative , overlong , and bombastic -- yet surprisingly entertaining . 3 +112402 5970 The Widowmaker is derivative , overlong , and bombastic -- yet surprisingly entertaining 2 +112403 5970 is derivative , overlong , and bombastic -- yet surprisingly entertaining 2 +112404 5970 derivative , overlong , and bombastic -- yet surprisingly entertaining 3 +112405 5970 derivative , overlong , and bombastic -- 0 +112406 5970 derivative , overlong , and bombastic 1 +112407 5970 , overlong , and bombastic 0 +112408 5970 overlong , and bombastic 0 +112409 5970 , and bombastic 2 +112410 5970 yet surprisingly entertaining 3 +112411 5970 surprisingly entertaining 4 +112412 5971 The story really has no place to go since Simone is not real -- she ca n't provide any conflict . 1 +112413 5971 The story really has no place to go since Simone is not real -- she ca n't provide any conflict 1 +112414 5971 The story really has no place to go since Simone is not real -- 1 +112415 5971 The story really has no place to go since Simone is not real 1 +112416 5971 really has no place to go since Simone is not real 1 +112417 5971 has no place to go since Simone is not real 1 +112418 5971 no place to go since Simone is not real 2 +112419 5971 place to go since Simone is not real 2 +112420 5971 to go since Simone is not real 2 +112421 5971 go since Simone is not real 2 +112422 5971 since Simone is not real 2 +112423 5971 Simone is not real 2 +112424 5971 is not real 1 +112425 5971 she ca n't provide any conflict 1 +112426 5971 ca n't provide any conflict 2 +112427 5971 provide any conflict 1 +112428 5971 any conflict 2 +112429 5972 There is something in Full Frontal , I guess , about artifice and acting and how it distorts reality for people who make movies and watch them , but like most movie riddles , it works only if you have an interest in the characters you see . 1 +112430 5972 There is something in Full Frontal , I guess , about artifice and acting and how it distorts reality for people who make movies and watch them , but like most movie riddles , it works only if you have an interest in the characters you see 2 +112431 5972 There is something in Full Frontal , I guess , about artifice and acting and how it distorts reality for people who make movies and watch them , but 1 +112432 5972 There is something in Full Frontal , I guess , about artifice and acting and how it distorts reality for people who make movies and watch them , 2 +112433 5972 There is something in Full Frontal , I guess , about artifice and acting and how it distorts reality for people who make movies and watch them 2 +112434 5972 is something in Full Frontal , I guess , about artifice and acting and how it distorts reality for people who make movies and watch them 2 +112435 5972 is something in Full Frontal , 2 +112436 5972 is something in Full Frontal 2 +112437 5972 something in Full Frontal 2 +112438 5972 in Full Frontal 2 +112439 5972 I guess , about artifice and acting and how it distorts reality for people who make movies and watch them 2 +112440 5972 I guess , about artifice and acting and 2 +112441 5972 I guess , about artifice and acting 2 +112442 5972 guess , about artifice and acting 2 +112443 5972 guess , 2 +112444 5972 about artifice and acting 2 +112445 5972 artifice and acting 2 +112446 5972 artifice and 2 +112447 5972 how it distorts reality for people who make movies and watch them 2 +112448 5972 it distorts reality for people who make movies and watch them 2 +112449 5972 distorts reality for people who make movies and watch them 1 +112450 5972 distorts reality 2 +112451 5972 distorts 2 +112452 5972 for people who make movies and watch them 3 +112453 5972 people who make movies and watch them 2 +112454 5972 who make movies and watch them 2 +112455 5972 make movies and watch them 2 +112456 5972 make movies and 2 +112457 5972 like most movie riddles , it works only if you have an interest in the characters you see 2 +112458 5972 like most movie riddles 2 +112459 5972 most movie riddles 2 +112460 5972 movie riddles 2 +112461 5972 riddles 2 +112462 5972 , it works only if you have an interest in the characters you see 2 +112463 5972 it works only if you have an interest in the characters you see 2 +112464 5972 works only if you have an interest in the characters you see 2 +112465 5972 only if you have an interest in the characters you see 2 +112466 5972 if you have an interest in the characters you see 2 +112467 5972 you have an interest in the characters you see 3 +112468 5972 have an interest in the characters you see 3 +112469 5972 an interest in the characters you see 2 +112470 5972 an interest 3 +112471 5972 in the characters you see 3 +112472 5972 the characters you see 2 +112473 5973 An unsuccessful attempt at a movie of ideas . 1 +112474 5973 An unsuccessful attempt at a movie of ideas 1 +112475 5973 An unsuccessful attempt at a movie 0 +112476 5973 An unsuccessful attempt 1 +112477 5973 unsuccessful attempt 1 +112478 5973 unsuccessful 0 +112479 5973 at a movie 2 +112480 5974 Many shallower movies these days seem too long , but this one is egregiously short . 2 +112481 5974 Many shallower movies these days seem too long , but this one is egregiously short 2 +112482 5974 Many shallower movies these days seem too long , but 2 +112483 5974 Many shallower movies these days seem too long , 1 +112484 5974 Many shallower movies these days seem too long 1 +112485 5974 Many shallower movies 2 +112486 5974 shallower movies 2 +112487 5974 shallower 1 +112488 5974 these days seem too long 1 +112489 5974 seem too long 1 +112490 5974 this one is egregiously short 2 +112491 5974 is egregiously short 1 +112492 5974 egregiously short 1 +112493 5974 egregiously 1 +112494 5975 Did no one on the set have a sense of humor , or did they not have the nerve to speak up ? 1 +112495 5975 Did no one on the set have a sense of humor , or did they not have the nerve to speak up 1 +112496 5975 Did no one on the set have a sense of humor , or 1 +112497 5975 Did no one on the set have a sense of humor , 1 +112498 5975 Did no one on the set have a sense of humor 0 +112499 5975 Did no one on the set 2 +112500 5975 no one on the set 2 +112501 5975 on the set 2 +112502 5975 have a sense of humor 3 +112503 5975 a sense of humor 2 +112504 5975 did they not have the nerve to speak up 1 +112505 5975 did they not 3 +112506 5975 did they 2 +112507 5975 have the nerve to speak up 2 +112508 5975 the nerve to speak up 3 +112509 5975 nerve to speak up 2 +112510 5975 to speak up 2 +112511 5975 speak up 2 +112512 5976 A not-so-Divine Secrets of the Ya-Ya Sisterhood with a hefty helping of Re-Fried Green Tomatoes . 1 +112513 5976 A not-so-Divine Secrets of the Ya-Ya 1 +112514 5976 A not-so-Divine Secrets 1 +112515 5976 not-so-Divine Secrets 2 +112516 5976 not-so-Divine 1 +112517 5976 of the Ya-Ya 2 +112518 5976 the Ya-Ya 2 +112519 5976 Sisterhood with a hefty helping of Re-Fried Green Tomatoes . 2 +112520 5976 Sisterhood with a hefty helping of Re-Fried Green Tomatoes 2 +112521 5976 with a hefty helping of Re-Fried Green Tomatoes 2 +112522 5976 a hefty helping of Re-Fried Green Tomatoes 2 +112523 5976 a hefty helping 2 +112524 5976 hefty helping 3 +112525 5976 hefty 2 +112526 5976 of Re-Fried Green Tomatoes 2 +112527 5976 Re-Fried Green Tomatoes 1 +112528 5976 Re-Fried 1 +112529 5976 Green Tomatoes 2 +112530 5976 Tomatoes 2 +112531 5977 A fresh-faced , big-hearted and frequently funny thrill ride for the kiddies , with enough eye candy and cheeky wit to keep parents away from the concession stand . ' 4 +112532 5977 A fresh-faced , big-hearted and frequently funny thrill 4 +112533 5977 fresh-faced , big-hearted and frequently funny thrill 4 +112534 5977 fresh-faced , big-hearted and frequently 3 +112535 5977 , big-hearted and frequently 4 +112536 5977 big-hearted and frequently 3 +112537 5977 big-hearted and 3 +112538 5977 big-hearted 4 +112539 5977 funny thrill 4 +112540 5977 ride for the kiddies , with enough eye candy and cheeky wit to keep parents away from the concession stand . ' 4 +112541 5977 ride for the kiddies , with enough eye candy and cheeky wit to keep parents away from the concession stand . 3 +112542 5977 ride for the kiddies , with enough eye candy and cheeky wit to keep parents away from the concession stand 4 +112543 5977 ride for the kiddies , with enough eye 3 +112544 5977 for the kiddies , with enough eye 2 +112545 5977 the kiddies , with enough eye 2 +112546 5977 the kiddies , 2 +112547 5977 with enough eye 2 +112548 5977 enough eye 2 +112549 5977 candy and cheeky wit to keep parents away from the concession stand 4 +112550 5977 candy and cheeky 3 +112551 5977 candy and 2 +112552 5977 wit to keep parents away from the concession stand 3 +112553 5977 to keep parents away from the concession stand 2 +112554 5977 keep parents away from the concession stand 2 +112555 5977 keep parents away 1 +112556 5977 from the concession stand 2 +112557 5977 the concession stand 2 +112558 5977 concession stand 2 +112559 5977 concession 2 +112560 5978 But the feelings evoked in the film are lukewarm and quick to pass . 1 +112561 5978 the feelings evoked in the film are lukewarm and quick to pass . 1 +112562 5978 the feelings evoked in the film 2 +112563 5978 the feelings 2 +112564 5978 feelings 2 +112565 5978 evoked in the film 2 +112566 5978 evoked 2 +112567 5978 are lukewarm and quick to pass . 1 +112568 5978 are lukewarm and quick to pass 2 +112569 5978 lukewarm and quick to pass 1 +112570 5978 lukewarm and quick 2 +112571 5978 lukewarm and 1 +112572 5978 lukewarm 2 +112573 5979 ` The film is stark , straightforward and deadly ... an unnatural calm that 's occasionally shaken by ... blasts of rage , and later , violent jealousy . ' 2 +112574 5979 The film is stark , straightforward and deadly ... an unnatural calm that 's occasionally shaken by ... blasts of rage , and later , violent jealousy . ' 3 +112575 5979 is stark , straightforward and deadly ... an unnatural calm that 's occasionally shaken by ... blasts of rage , and later , violent jealousy . ' 2 +112576 5979 is stark , straightforward and deadly ... an unnatural calm that 's occasionally shaken by ... blasts of rage , and later , violent jealousy . 2 +112577 5979 is stark , straightforward and deadly ... an unnatural calm that 's occasionally shaken by ... blasts of rage , and later , violent jealousy 3 +112578 5979 is stark , straightforward and deadly ... 3 +112579 5979 is stark , straightforward and deadly 2 +112580 5979 stark , straightforward and deadly 3 +112581 5979 , straightforward and deadly 2 +112582 5979 straightforward and deadly 3 +112583 5979 an unnatural calm that 's occasionally shaken by ... blasts of rage , and later , violent jealousy 2 +112584 5979 an unnatural calm that 's occasionally shaken by ... blasts of rage , and 2 +112585 5979 an unnatural calm that 's occasionally shaken by ... blasts of rage , 2 +112586 5979 an unnatural calm that 's occasionally shaken by ... blasts of rage 1 +112587 5979 an unnatural calm that 's occasionally shaken by ... 3 +112588 5979 an unnatural calm that 's occasionally shaken by 3 +112589 5979 an unnatural calm 3 +112590 5979 unnatural calm 2 +112591 5979 unnatural 1 +112592 5979 that 's occasionally shaken by 2 +112593 5979 's occasionally shaken by 2 +112594 5979 's occasionally 2 +112595 5979 shaken by 2 +112596 5979 shaken 2 +112597 5979 blasts of rage 1 +112598 5979 blasts 3 +112599 5979 of rage 2 +112600 5979 rage 1 +112601 5979 later , violent jealousy 1 +112602 5979 , violent jealousy 2 +112603 5979 violent jealousy 1 +112604 5980 What -LRB- Frei -RRB- gives us ... is a man who uses the damage of war -- far more often than the warfare itself -- to create the kind of art shots that fill gallery shows . 3 +112605 5980 What -LRB- Frei -RRB- 2 +112606 5980 -LRB- Frei -RRB- 2 +112607 5980 Frei -RRB- 2 +112608 5980 Frei 2 +112609 5980 gives us ... is a man who uses the damage of war -- far more often than the warfare itself -- to create the kind of art shots that fill gallery shows . 2 +112610 5980 gives us ... is a man who uses the damage of war -- far more often than the warfare itself -- to create the kind of art shots that fill gallery shows 2 +112611 5980 us ... is a man who uses the damage of war -- far more often than the warfare itself -- to create the kind of art shots that fill gallery shows 3 +112612 5980 ... is a man who uses the damage of war -- far more often than the warfare itself -- to create the kind of art shots that fill gallery shows 3 +112613 5980 is a man who uses the damage of war -- far more often than the warfare itself -- to create the kind of art shots that fill gallery shows 3 +112614 5980 a man who uses the damage of war -- far more often than the warfare itself -- to create the kind of art shots that fill gallery shows 2 +112615 5980 who uses the damage of war -- far more often than the warfare itself -- to create the kind of art shots that fill gallery shows 3 +112616 5980 uses the damage of war -- far more often than the warfare itself -- to create the kind of art shots that fill gallery shows 3 +112617 5980 the damage of war -- far more often than the warfare itself -- to create the kind of art shots that fill gallery shows 2 +112618 5980 of war -- far more often than the warfare itself -- to create the kind of art shots that fill gallery shows 2 +112619 5980 war -- far more often than the warfare itself -- to create the kind of art shots that fill gallery shows 2 +112620 5980 war -- far more often than the warfare itself -- 2 +112621 5980 -- far more often than the warfare itself -- 2 +112622 5980 far more often than the warfare itself -- 3 +112623 5980 far more often than the warfare 3 +112624 5980 more often than the warfare 2 +112625 5980 than the warfare 2 +112626 5980 the warfare 2 +112627 5980 itself -- 2 +112628 5980 to create the kind of art shots that fill gallery shows 2 +112629 5980 create the kind of art shots that fill gallery shows 3 +112630 5980 the kind of art shots that fill gallery shows 3 +112631 5980 the kind of art shots 2 +112632 5980 of art shots 2 +112633 5980 art shots 2 +112634 5980 that fill gallery shows 2 +112635 5980 fill gallery shows 2 +112636 5980 gallery shows 2 +112637 5980 gallery 2 +112638 5981 The entire movie is in need of a scented bath . 0 +112639 5981 is in need of a scented bath . 1 +112640 5981 is in need of a scented bath 1 +112641 5981 in need of a scented bath 1 +112642 5981 need of a scented bath 1 +112643 5981 of a scented bath 2 +112644 5981 a scented bath 2 +112645 5981 scented bath 2 +112646 5981 scented 2 +112647 5981 bath 2 +112648 5982 This new movie version of the Alexandre Dumas classic is the stuff of high romance , brought off with considerable wit . 3 +112649 5982 This new movie version of the Alexandre Dumas classic 2 +112650 5982 This new movie version 2 +112651 5982 new movie version 2 +112652 5982 of the Alexandre Dumas classic 2 +112653 5982 the Alexandre Dumas classic 2 +112654 5982 Alexandre Dumas classic 3 +112655 5982 Alexandre 3 +112656 5982 Dumas classic 2 +112657 5982 is the stuff of high romance , brought off with considerable wit . 4 +112658 5982 is the stuff of high romance , brought off with considerable wit 3 +112659 5982 the stuff of high romance , brought off with considerable wit 4 +112660 5982 of high romance , brought off with considerable wit 3 +112661 5982 high romance , brought off with considerable wit 4 +112662 5982 high romance , 3 +112663 5982 high romance 2 +112664 5982 brought off with considerable wit 4 +112665 5982 brought off 2 +112666 5982 with considerable wit 4 +112667 5982 considerable wit 3 +112668 5983 Stands as a document of what it felt like to be a New Yorker -- or , really , to be a human being -- in the weeks after 9\/11 . 3 +112669 5983 Stands as a document of what it felt like to be a New Yorker -- or , really , to be a human being -- in the weeks after 9\/11 2 +112670 5983 as a document of what it felt like to be a New Yorker -- or , really , to be a human being -- in the weeks after 9\/11 2 +112671 5983 a document of what it felt like to be a New Yorker -- or , really , to be a human being -- in the weeks after 9\/11 3 +112672 5983 of what it felt like to be a New Yorker -- or , really , to be a human being -- in the weeks after 9\/11 2 +112673 5983 what it felt like to be a New Yorker -- or , really , to be a human being -- in the weeks after 9\/11 2 +112674 5983 it felt like to be a New Yorker -- or , really , to be a human being -- in the weeks after 9\/11 3 +112675 5983 felt like to be a New Yorker -- or , really , to be a human being -- in the weeks after 9\/11 3 +112676 5983 like to be a New Yorker -- or , really , to be a human being -- in the weeks after 9\/11 3 +112677 5983 to be a New Yorker -- or , really , to be a human being -- in the weeks after 9\/11 2 +112678 5983 to be a New Yorker -- or , really , 2 +112679 5983 to be a New Yorker -- or , really 2 +112680 5983 to be a New Yorker -- or , 2 +112681 5983 to be a New Yorker -- or 2 +112682 5983 to be a New Yorker -- 2 +112683 5983 to be a New Yorker 3 +112684 5983 be a New Yorker 2 +112685 5983 a New Yorker 2 +112686 5983 to be a human being -- in the weeks after 9\/11 2 +112687 5983 be a human being -- in the weeks after 9\/11 2 +112688 5983 be a human being -- 2 +112689 5983 be a human being 2 +112690 5983 a human being 2 +112691 5983 human being 2 +112692 5983 in the weeks after 9\/11 2 +112693 5983 the weeks after 9\/11 2 +112694 5983 the weeks 2 +112695 5983 after 9\/11 2 +112696 5983 9\/11 2 +112697 5984 Almost as offensive as `` Freddy Got Fingered . '' 1 +112698 5984 Almost as offensive as `` Freddy 1 +112699 5984 Almost as offensive 1 +112700 5984 as offensive 1 +112701 5984 as `` Freddy 2 +112702 5984 as `` 2 +112703 5984 Got Fingered . '' 2 +112704 5984 Got Fingered . 2 +112705 5985 The plot grows thin soon , and you find yourself praying for a quick resolution . 1 +112706 5985 The plot grows thin soon , and you find yourself praying for a quick resolution 1 +112707 5985 The plot grows thin soon , and 2 +112708 5985 The plot grows thin soon , 1 +112709 5985 The plot grows thin soon 1 +112710 5985 grows thin soon 1 +112711 5985 grows thin 1 +112712 5985 you find yourself praying for a quick resolution 1 +112713 5985 find yourself praying for a quick resolution 2 +112714 5985 yourself praying for a quick resolution 0 +112715 5985 praying for a quick resolution 2 +112716 5985 praying 2 +112717 5985 for a quick resolution 2 +112718 5985 a quick resolution 2 +112719 5985 quick resolution 2 +112720 5986 A funny and touching film that is gorgeously acted by a British cast to rival Gosford Park 's . 4 +112721 5986 A funny and touching film that is gorgeously 4 +112722 5986 A funny and touching film 4 +112723 5986 funny and touching film 4 +112724 5986 and touching film 2 +112725 5986 touching film 4 +112726 5986 that is gorgeously 3 +112727 5986 is gorgeously 3 +112728 5986 acted by a British cast to rival Gosford Park 's . 3 +112729 5986 acted by a British cast to rival Gosford Park 's 2 +112730 5986 acted by a British cast 2 +112731 5986 by a British cast 3 +112732 5986 a British cast 3 +112733 5986 British cast 2 +112734 5986 to rival Gosford Park 's 3 +112735 5986 rival Gosford Park 's 2 +112736 5986 Gosford Park 's 2 +112737 5986 Gosford 2 +112738 5986 Park 's 2 +112739 5987 There 's not a single jump-in-your-seat moment and believe it or not , Jason actually takes a backseat in his own film to special effects . 0 +112740 5987 There 's not a single jump-in-your-seat moment and believe it or not , Jason actually takes a backseat in his own film to special effects 2 +112741 5987 There 's not a single jump-in-your-seat moment and 1 +112742 5987 There 's not a single jump-in-your-seat moment 1 +112743 5987 's not a single jump-in-your-seat moment 1 +112744 5987 a single jump-in-your-seat moment 2 +112745 5987 single jump-in-your-seat moment 2 +112746 5987 jump-in-your-seat moment 3 +112747 5987 jump-in-your-seat 3 +112748 5987 believe it or not , Jason actually takes a backseat in his own film to special effects 1 +112749 5987 believe it or not 2 +112750 5987 believe it or 3 +112751 5987 believe it 3 +112752 5987 , Jason actually takes a backseat in his own film to special effects 2 +112753 5987 Jason actually takes a backseat in his own film to special effects 2 +112754 5987 actually takes a backseat in his own film to special effects 2 +112755 5987 takes a backseat in his own film to special effects 1 +112756 5987 takes a backseat in his own film 2 +112757 5987 a backseat in his own film 1 +112758 5987 a backseat 2 +112759 5987 backseat 2 +112760 5987 in his own film 2 +112761 5987 his own film 2 +112762 5987 own film 2 +112763 5987 to special effects 2 +112764 5988 Elegantly crafted but emotionally cold , a puzzle whose intricate construction one can admire but is difficult to connect with on any deeper level . 1 +112765 5988 crafted but emotionally cold , a puzzle whose intricate construction one can admire but is difficult to connect with on any deeper level . 1 +112766 5988 crafted but emotionally cold , a puzzle whose intricate construction one can admire but is difficult to connect with on any deeper level 2 +112767 5988 crafted but emotionally 2 +112768 5988 but emotionally 2 +112769 5988 cold , a puzzle whose intricate construction one can admire but is difficult to connect with on any deeper level 2 +112770 5988 a puzzle whose intricate construction one can admire but is difficult to connect with on any deeper level 2 +112771 5988 a puzzle 2 +112772 5988 whose intricate construction one can admire but is difficult to connect with on any deeper level 2 +112773 5988 whose intricate construction one 2 +112774 5988 intricate construction one 2 +112775 5988 intricate construction 2 +112776 5988 can admire but is difficult to connect with on any deeper level 2 +112777 5988 can admire but 2 +112778 5988 can admire 3 +112779 5988 is difficult to connect with on any deeper level 1 +112780 5988 difficult to connect with on any deeper level 1 +112781 5988 to connect with on any deeper level 2 +112782 5988 connect with on any deeper level 3 +112783 5988 with on any deeper level 2 +112784 5988 on any deeper level 2 +112785 5988 any deeper level 2 +112786 5988 deeper level 2 +112787 5989 It is that rare combination of bad writing , bad direction and bad acting -- the trifecta of badness . 0 +112788 5989 is that rare combination of bad writing , bad direction and bad acting -- the trifecta of badness . 0 +112789 5989 is that rare combination of bad writing , bad direction and bad acting -- the trifecta of badness 0 +112790 5989 that rare combination of bad writing , bad direction and bad acting -- the trifecta of badness 1 +112791 5989 that rare combination 3 +112792 5989 rare combination 3 +112793 5989 of bad writing , bad direction and bad acting -- the trifecta of badness 0 +112794 5989 bad writing , bad direction and bad acting -- the trifecta of badness 0 +112795 5989 bad writing , 1 +112796 5989 bad direction and bad acting -- the trifecta of badness 2 +112797 5989 bad direction and bad acting -- 0 +112798 5989 bad direction and bad acting 0 +112799 5989 bad direction and 2 +112800 5989 bad direction 0 +112801 5989 bad acting 1 +112802 5989 the trifecta of badness 0 +112803 5989 the trifecta 2 +112804 5989 trifecta 2 +112805 5989 of badness 1 +112806 5990 Off the Hook is overlong and not well-acted , but credit writer-producer-director Adam Watstein with finishing it at all . 1 +112807 5990 Off the Hook 2 +112808 5990 is overlong and not well-acted , but credit writer-producer-director Adam Watstein with finishing it at all . 1 +112809 5990 is overlong and not well-acted , but credit writer-producer-director Adam Watstein with finishing it at all 2 +112810 5990 is overlong and not well-acted , but credit writer-producer-director 1 +112811 5990 overlong and not well-acted , but credit writer-producer-director 1 +112812 5990 overlong and not well-acted , but 1 +112813 5990 overlong and not well-acted , 1 +112814 5990 overlong and not well-acted 1 +112815 5990 overlong and 1 +112816 5990 not well-acted 1 +112817 5990 credit writer-producer-director 2 +112818 5990 writer-producer-director 2 +112819 5990 Adam Watstein with finishing it at all 3 +112820 5990 Adam Watstein 2 +112821 5990 Watstein 2 +112822 5990 with finishing it at all 2 +112823 5990 finishing it at all 2 +112824 5990 finishing it 2 +112825 5990 finishing 2 +112826 5991 An occasionally interesting but mostly repetitive look at a slice of counterculture that might be best forgotten . 1 +112827 5991 An occasionally interesting but mostly repetitive 1 +112828 5991 occasionally interesting but mostly repetitive 2 +112829 5991 occasionally interesting but 2 +112830 5991 occasionally interesting 1 +112831 5991 mostly repetitive 1 +112832 5991 look at a slice of counterculture that might be best forgotten . 1 +112833 5991 look at a slice of counterculture that might be best forgotten 0 +112834 5991 at a slice of counterculture that might be best forgotten 1 +112835 5991 a slice of counterculture that might be best forgotten 1 +112836 5991 a slice of counterculture 3 +112837 5991 of counterculture 2 +112838 5991 counterculture 2 +112839 5991 that might be best forgotten 1 +112840 5991 might be best forgotten 1 +112841 5991 be best forgotten 1 +112842 5991 best forgotten 1 +112843 5992 You have no affinity for most of the characters . 0 +112844 5992 have no affinity for most of the characters . 1 +112845 5992 have no affinity for most of the characters 1 +112846 5992 no affinity for most of the characters 1 +112847 5992 no affinity 1 +112848 5992 affinity 2 +112849 5992 for most of the characters 3 +112850 5992 most of the characters 2 +112851 5993 A perfect example of rancid , well-intentioned , but shamelessly manipulative movie making . 1 +112852 5993 A perfect example of rancid , well-intentioned , but shamelessly manipulative movie making 1 +112853 5993 A perfect example 2 +112854 5993 perfect example 3 +112855 5993 of rancid , well-intentioned , but shamelessly manipulative movie making 1 +112856 5993 rancid , well-intentioned , but shamelessly manipulative movie making 2 +112857 5993 rancid , well-intentioned , but shamelessly manipulative movie 2 +112858 5993 rancid 2 +112859 5993 , well-intentioned , but shamelessly manipulative movie 2 +112860 5993 well-intentioned , but shamelessly manipulative movie 1 +112861 5993 well-intentioned , but shamelessly manipulative 2 +112862 5993 well-intentioned , but 2 +112863 5993 well-intentioned , 3 +112864 5993 shamelessly manipulative 1 +112865 5994 ... a quietly introspective portrait of the self-esteem of employment and the shame of losing a job ... 3 +112866 5994 ... a quietly introspective portrait of the self-esteem of employment and the shame of losing a job 3 +112867 5994 a quietly introspective portrait of the self-esteem of employment and the shame of losing a job 3 +112868 5994 a quietly introspective portrait 3 +112869 5994 quietly introspective portrait 2 +112870 5994 introspective portrait 3 +112871 5994 of the self-esteem of employment and the shame of losing a job 1 +112872 5994 the self-esteem of employment and the shame of losing a job 2 +112873 5994 the self-esteem of employment and 2 +112874 5994 the self-esteem of employment 2 +112875 5994 the self-esteem 2 +112876 5994 of employment 2 +112877 5994 the shame of losing a job 2 +112878 5994 the shame 2 +112879 5994 of losing a job 2 +112880 5994 losing a job 2 +112881 5995 Handsome and sincere but slightly awkward in its combination of entertainment and evangelical boosterism . 2 +112882 5995 Handsome and sincere but slightly awkward in its combination of entertainment and evangelical 2 +112883 5995 Handsome and sincere but slightly awkward 3 +112884 5995 Handsome and sincere but slightly 2 +112885 5995 Handsome and sincere but 3 +112886 5995 Handsome and sincere 3 +112887 5995 in its combination of entertainment and evangelical 3 +112888 5995 its combination of entertainment and evangelical 2 +112889 5995 its combination 2 +112890 5995 of entertainment and evangelical 2 +112891 5995 entertainment and evangelical 3 +112892 5995 entertainment and 3 +112893 5995 evangelical 3 +112894 5995 boosterism . 2 +112895 5995 boosterism 2 +112896 5996 The storytelling may be ordinary , but the cast is one of those all-star reunions that fans of Gosford Park have come to assume is just another day of Brit cinema . 3 +112897 5996 The storytelling may be ordinary , but the cast is one of those all-star reunions that fans of Gosford Park have come to assume is just another day of Brit cinema 2 +112898 5996 The storytelling may be ordinary , but 2 +112899 5996 The storytelling may be ordinary , 2 +112900 5996 The storytelling may be ordinary 2 +112901 5996 may be ordinary 2 +112902 5996 be ordinary 2 +112903 5996 the cast is one of those all-star reunions that fans of Gosford Park have come to assume is just another day of Brit cinema 2 +112904 5996 is one of those all-star reunions that fans of Gosford Park have come to assume is just another day of Brit cinema 2 +112905 5996 is one of those all-star reunions 3 +112906 5996 one of those all-star reunions 3 +112907 5996 of those all-star reunions 2 +112908 5996 those all-star reunions 2 +112909 5996 all-star reunions 3 +112910 5996 reunions 2 +112911 5996 that fans of Gosford Park have come to assume is just another day of Brit cinema 2 +112912 5996 fans of Gosford Park have come to assume is just another day of Brit cinema 1 +112913 5996 fans of Gosford Park 2 +112914 5996 of Gosford Park 2 +112915 5996 Gosford Park 2 +112916 5996 have come to assume is just another day of Brit cinema 2 +112917 5996 come to assume is just another day of Brit cinema 2 +112918 5996 to assume is just another day of Brit cinema 2 +112919 5996 assume is just another day of Brit cinema 1 +112920 5996 is just another day of Brit cinema 2 +112921 5996 another day of Brit cinema 1 +112922 5996 of Brit cinema 2 +112923 5996 Brit cinema 2 +112924 5997 Barely . 2 +112925 5998 ... a complete shambles of a movie so sloppy , so uneven , so damn unpleasant that I ca n't believe any viewer , young or old , would have a good time here . 0 +112926 5998 a complete shambles of a movie so sloppy , so uneven , so damn unpleasant that I ca n't believe any viewer , young or old , would have a good time here . 0 +112927 5998 a complete shambles of a movie so sloppy , so uneven , so damn unpleasant that I ca n't believe any viewer , young or old , 1 +112928 5998 a complete shambles 1 +112929 5998 complete shambles 0 +112930 5998 shambles 1 +112931 5998 of a movie so sloppy , so uneven , so damn unpleasant that I ca n't believe any viewer , young or old , 0 +112932 5998 a movie so sloppy , so uneven , so damn unpleasant that I ca n't believe any viewer , young or old , 0 +112933 5998 a movie so sloppy , so uneven , so damn unpleasant 0 +112934 5998 so sloppy , so uneven , so damn unpleasant 1 +112935 5998 so sloppy , so uneven , so 0 +112936 5998 so sloppy , so uneven , 1 +112937 5998 so sloppy , so uneven 0 +112938 5998 so sloppy , 1 +112939 5998 so sloppy 0 +112940 5998 so uneven 2 +112941 5998 damn unpleasant 1 +112942 5998 that I ca n't believe any viewer , young or old , 2 +112943 5998 I ca n't believe any viewer , young or old , 2 +112944 5998 ca n't believe any viewer , young or old , 2 +112945 5998 believe any viewer , young or old , 2 +112946 5998 any viewer , young or old , 3 +112947 5998 any viewer , young or old 2 +112948 5998 any viewer , 2 +112949 5998 young or old 2 +112950 5998 young or 2 +112951 5998 would have a good time here . 3 +112952 5998 would have a good time here 4 +112953 5998 have a good time here 3 +112954 5999 Devotees of Star Trek II : The Wrath of Khan will feel a nagging sense of deja vu , and the grandeur of the best Next Generation episodes is lacking . 1 +112955 5999 Devotees of Star Trek II : The Wrath of Khan will feel a nagging sense of deja vu , and the grandeur of the best Next Generation episodes is lacking 1 +112956 5999 Devotees of Star Trek II : The Wrath of Khan will feel a nagging sense of deja vu , and 3 +112957 5999 Devotees of Star Trek II : The Wrath of Khan will feel a nagging sense of deja vu , 1 +112958 5999 Devotees of Star Trek II : The Wrath of Khan will feel a nagging sense of deja vu 1 +112959 5999 Devotees of Star Trek II : The Wrath of Khan 2 +112960 5999 of Star Trek II : The Wrath of Khan 2 +112961 5999 Star Trek II : The Wrath of Khan 2 +112962 5999 Star Trek II : 2 +112963 5999 Star Trek II 2 +112964 5999 Trek II 2 +112965 5999 The Wrath of Khan 2 +112966 5999 The Wrath 2 +112967 5999 Wrath 2 +112968 5999 of Khan 2 +112969 5999 Khan 2 +112970 5999 will feel a nagging sense of deja vu 2 +112971 5999 feel a nagging sense of deja vu 3 +112972 5999 a nagging sense of deja vu 2 +112973 5999 a nagging sense 1 +112974 5999 nagging sense 2 +112975 5999 nagging 1 +112976 5999 the grandeur of the best Next Generation episodes is lacking 1 +112977 5999 the grandeur of the best Next Generation episodes 3 +112978 5999 the grandeur 3 +112979 5999 of the best Next Generation episodes 3 +112980 5999 the best Next Generation episodes 3 +112981 5999 best Next Generation episodes 2 +112982 5999 Next Generation episodes 2 +112983 5999 Generation episodes 2 +112984 5999 is lacking 1 +112985 6000 Too campy to work as straight drama and too violent and sordid to function as comedy , Vulgar is , truly and thankfully , a one-of-a-kind work . 1 +112986 6000 Too campy to work as straight drama and too violent and sordid to function as comedy 1 +112987 6000 Too campy to work as straight drama and 1 +112988 6000 Too campy to work as straight drama 1 +112989 6000 campy to work as straight drama 2 +112990 6000 to work as straight drama 2 +112991 6000 work as straight drama 2 +112992 6000 as straight drama 2 +112993 6000 straight drama 2 +112994 6000 too violent and sordid to function as comedy 1 +112995 6000 too violent and 2 +112996 6000 too violent 1 +112997 6000 sordid to function as comedy 1 +112998 6000 sordid 2 +112999 6000 to function as comedy 2 +113000 6000 function as comedy 2 +113001 6000 as comedy 2 +113002 6000 , Vulgar is , truly and thankfully , a one-of-a-kind work . 1 +113003 6000 Vulgar is , truly and thankfully , a one-of-a-kind work . 2 +113004 6000 is , truly and thankfully , a one-of-a-kind work . 4 +113005 6000 is , truly and thankfully , a one-of-a-kind work 1 +113006 6000 is , truly and thankfully , 2 +113007 6000 is , truly and thankfully 2 +113008 6000 truly and thankfully 2 +113009 6000 truly and 2 +113010 6000 a one-of-a-kind work 4 +113011 6000 one-of-a-kind work 3 +113012 6000 one-of-a-kind 3 +113013 6001 Gets bogged down by an overly sillified plot and stop-and-start pacing . 1 +113014 6001 bogged down by an overly sillified plot and stop-and-start pacing . 0 +113015 6001 bogged down by an overly sillified plot and stop-and-start pacing 1 +113016 6001 bogged down 1 +113017 6001 by an overly sillified plot and stop-and-start pacing 1 +113018 6001 an overly sillified plot and stop-and-start pacing 1 +113019 6001 an overly sillified plot and 1 +113020 6001 an overly sillified plot 1 +113021 6001 overly sillified plot 1 +113022 6001 overly sillified 2 +113023 6001 sillified 2 +113024 6001 stop-and-start pacing 1 +113025 6001 stop-and-start 2 +113026 6002 Theological matters aside , the movie is so clumsily sentimental and ineptly directed it may leave you speaking in tongues . 1 +113027 6002 Theological matters aside 2 +113028 6002 Theological matters 2 +113029 6002 Theological 3 +113030 6002 , the movie is so clumsily sentimental and ineptly directed it may leave you speaking in tongues . 0 +113031 6002 the movie is so clumsily sentimental and ineptly directed it may leave you speaking in tongues . 0 +113032 6002 is so clumsily sentimental and ineptly directed it may leave you speaking in tongues . 0 +113033 6002 is so clumsily sentimental and ineptly directed it may leave you speaking in tongues 1 +113034 6002 is so clumsily sentimental and ineptly 1 +113035 6002 is so clumsily sentimental and 2 +113036 6002 is so clumsily sentimental 1 +113037 6002 so clumsily sentimental 1 +113038 6002 clumsily sentimental 2 +113039 6002 directed it may leave you speaking in tongues 1 +113040 6002 it may leave you speaking in tongues 2 +113041 6002 may leave you speaking in tongues 2 +113042 6002 leave you speaking in tongues 3 +113043 6002 you speaking in tongues 2 +113044 6002 speaking in tongues 2 +113045 6002 in tongues 2 +113046 6002 tongues 2 +113047 6003 Comes off more like a misdemeanor , a flat , unconvincing drama that never catches fire . 1 +113048 6003 Comes off more like a misdemeanor , a flat , unconvincing drama that never catches fire 1 +113049 6003 Comes off more 2 +113050 6003 like a misdemeanor , a flat , unconvincing drama that never catches fire 2 +113051 6003 a misdemeanor , a flat , unconvincing drama that never catches fire 1 +113052 6003 a misdemeanor , 2 +113053 6003 a misdemeanor 2 +113054 6003 a flat , unconvincing drama that never catches fire 1 +113055 6003 a flat , unconvincing drama 1 +113056 6003 flat , unconvincing drama 1 +113057 6003 flat , unconvincing 1 +113058 6003 , unconvincing 1 +113059 6003 that never catches fire 1 +113060 6003 never catches fire 1 +113061 6004 Offers laughs and insight into one of the toughest ages a kid can go through . 3 +113062 6004 laughs and insight into one of the toughest ages a kid can go through . 3 +113063 6004 laughs and insight into one of the toughest ages a kid can go through 2 +113064 6004 insight into one of the toughest ages a kid can go through 2 +113065 6004 into one of the toughest ages a kid can go through 1 +113066 6004 one of the toughest ages a kid can go through 2 +113067 6004 of the toughest ages a kid can go through 2 +113068 6004 the toughest ages a kid can go through 1 +113069 6004 the toughest ages 2 +113070 6004 toughest ages 2 +113071 6004 toughest 2 +113072 6004 a kid can go through 2 +113073 6004 can go through 2 +113074 6004 go through 2 +113075 6005 At its best -LRB- and it does have some very funny sequences -RRB- Looking for Leonard reminds you just how comically subversive silence can be . 2 +113076 6005 At its best -LRB- and it does have some very funny sequences -RRB- Looking for Leonard 3 +113077 6005 its best -LRB- and it does have some very funny sequences -RRB- Looking for Leonard 3 +113078 6005 its best -LRB- and it does have some very funny sequences -RRB- 3 +113079 6005 -LRB- and it does have some very funny sequences -RRB- 3 +113080 6005 -LRB- and it does have some very funny sequences 3 +113081 6005 it does have some very funny sequences 3 +113082 6005 does have some very funny sequences 3 +113083 6005 have some very funny sequences 3 +113084 6005 some very funny sequences 3 +113085 6005 very funny sequences 4 +113086 6005 Looking for Leonard 2 +113087 6005 for Leonard 2 +113088 6005 Leonard 2 +113089 6005 reminds you just how comically subversive silence can be . 2 +113090 6005 reminds you just how comically subversive silence can be 3 +113091 6005 just how comically subversive silence can be 2 +113092 6005 just how comically 2 +113093 6005 how comically 3 +113094 6005 subversive silence can be 2 +113095 6005 subversive silence 2 +113096 6006 The picture does n't know it 's a comedy . 2 +113097 6006 does n't know it 's a comedy . 1 +113098 6006 does n't know it 's a comedy 1 +113099 6006 know it 's a comedy 2 +113100 6006 it 's a comedy 2 +113101 6006 's a comedy 2 +113102 6007 The Armenian genocide deserves a more engaged and honest treatment . 2 +113103 6007 The Armenian genocide 1 +113104 6007 Armenian genocide 1 +113105 6007 Armenian 2 +113106 6007 genocide 1 +113107 6007 deserves a more engaged and honest treatment . 2 +113108 6007 deserves a more engaged and honest treatment 2 +113109 6007 a more engaged and honest treatment 3 +113110 6007 more engaged and honest treatment 3 +113111 6007 more engaged and honest 3 +113112 6007 more engaged and 2 +113113 6007 more engaged 2 +113114 6008 One scene after another in this supposedly funny movie falls to the floor with a sickening thud . 1 +113115 6008 One scene after another in this supposedly funny movie 1 +113116 6008 after another in this supposedly funny movie 2 +113117 6008 another in this supposedly funny movie 2 +113118 6008 in this supposedly funny movie 2 +113119 6008 this supposedly funny movie 0 +113120 6008 supposedly funny movie 1 +113121 6008 supposedly funny 1 +113122 6008 falls to the floor with a sickening thud . 1 +113123 6008 falls to the floor with a sickening thud 1 +113124 6008 to the floor with a sickening thud 1 +113125 6008 the floor with a sickening thud 2 +113126 6008 the floor 2 +113127 6008 with a sickening thud 1 +113128 6008 a sickening thud 1 +113129 6008 sickening thud 1 +113130 6008 thud 1 +113131 6009 I have two words to say about Reign of Fire . 2 +113132 6009 have two words to say about Reign of Fire . 2 +113133 6009 have two words to say about Reign of Fire 2 +113134 6009 two words to say about Reign of Fire 2 +113135 6009 two words 2 +113136 6009 to say about Reign of Fire 2 +113137 6009 say about Reign of Fire 2 +113138 6009 about Reign of Fire 2 +113139 6010 Why did they deem it necessary to document all this emotional misery ? 1 +113140 6010 did they deem it necessary to document all this emotional misery ? 1 +113141 6010 did they deem it necessary to document all this emotional misery 0 +113142 6010 deem it necessary to document all this emotional misery 1 +113143 6010 deem 2 +113144 6010 it necessary to document all this emotional misery 2 +113145 6010 necessary to document all this emotional misery 1 +113146 6010 to document all this emotional misery 1 +113147 6010 document all this emotional misery 2 +113148 6010 all this emotional misery 0 +113149 6010 this emotional misery 0 +113150 6010 emotional misery 1 +113151 6011 A first-class road movie that proves you can run away from home , but your ego and all your problems go with you . 4 +113152 6011 A first-class road movie that proves you can run away from home , but your ego and all your problems go with you 3 +113153 6011 A first-class road movie that proves you can run away from home , but your ego and 3 +113154 6011 A first-class road movie that proves you can run away from home , but your ego 3 +113155 6011 A first-class road movie that proves you 3 +113156 6011 A first-class road movie 4 +113157 6011 first-class road movie 3 +113158 6011 that proves you 3 +113159 6011 proves you 2 +113160 6011 can run away from home , but your ego 2 +113161 6011 run away from home , but your ego 2 +113162 6011 away from home , but your ego 2 +113163 6011 from home , but your ego 2 +113164 6011 from home 2 +113165 6011 , but your ego 1 +113166 6011 your ego 3 +113167 6011 all your problems go with you 2 +113168 6011 all your problems 2 +113169 6011 your problems 2 +113170 6011 go with you 2 +113171 6012 The story itself it mostly told through on-camera interviews with several survivors , whose riveting memories are rendered with such clarity that it 's as if it all happened only yesterday . 4 +113172 6012 The story itself it mostly told through on-camera interviews with several survivors , whose riveting memories are rendered with such clarity that it 's as if it all happened only yesterday 3 +113173 6012 it mostly told through on-camera interviews with several survivors , whose riveting memories are rendered with such clarity that it 's as if it all happened only yesterday 2 +113174 6012 mostly told through on-camera interviews with several survivors , whose riveting memories are rendered with such clarity that it 's as if it all happened only yesterday 3 +113175 6012 told through on-camera interviews with several survivors , whose riveting memories are rendered with such clarity that it 's as if it all happened only yesterday 4 +113176 6012 told through on-camera interviews 2 +113177 6012 through on-camera interviews 2 +113178 6012 on-camera interviews 2 +113179 6012 with several survivors , whose riveting memories are rendered with such clarity that it 's as if it all happened only yesterday 3 +113180 6012 several survivors , whose riveting memories are rendered with such clarity that it 's as if it all happened only yesterday 4 +113181 6012 several survivors , 3 +113182 6012 several survivors 2 +113183 6012 whose riveting memories are rendered with such clarity that it 's as if it all happened only yesterday 3 +113184 6012 riveting memories are rendered with such clarity that it 's as if it all happened only yesterday 4 +113185 6012 riveting memories 3 +113186 6012 are rendered with such clarity that it 's as if it all happened only yesterday 3 +113187 6012 rendered with such clarity that it 's as if it all happened only yesterday 4 +113188 6012 rendered with such clarity 4 +113189 6012 with such clarity 3 +113190 6012 such clarity 3 +113191 6012 that it 's as if it all happened only yesterday 2 +113192 6012 it 's as if it all happened only yesterday 2 +113193 6012 's as if it all happened only yesterday 2 +113194 6012 as if it all happened only yesterday 2 +113195 6012 if it all happened only yesterday 2 +113196 6012 it all happened only yesterday 2 +113197 6012 all happened only yesterday 2 +113198 6012 happened only yesterday 2 +113199 6012 only yesterday 2 +113200 6013 It ends up being neither , and fails at both endeavors . 0 +113201 6013 ends up being neither , and fails at both endeavors . 0 +113202 6013 ends up being neither , and fails at both endeavors 1 +113203 6013 ends up being neither , and 2 +113204 6013 ends up being neither , 2 +113205 6013 ends up being neither 1 +113206 6013 being neither 1 +113207 6013 fails at both endeavors 1 +113208 6013 at both endeavors 2 +113209 6013 both endeavors 2 +113210 6013 endeavors 3 +113211 6014 A coming-of-age movie that Hollywood would n't have the guts to make . 4 +113212 6014 A coming-of-age movie that Hollywood 2 +113213 6014 A coming-of-age movie 3 +113214 6014 that Hollywood 2 +113215 6014 would n't have the guts to make . 1 +113216 6014 would n't have the guts to make 2 +113217 6014 have the guts to make 2 +113218 6014 the guts to make 2 +113219 6014 the guts 2 +113220 6015 Tennessee Williams by way of Oprah 's Book Club . 2 +113221 6015 Tennessee Williams by way of Oprah 's Book Club 1 +113222 6015 Tennessee Williams by way 2 +113223 6015 Tennessee Williams 2 +113224 6015 Tennessee 2 +113225 6015 by way 2 +113226 6015 of Oprah 's Book Club 2 +113227 6015 Oprah 's Book Club 2 +113228 6015 Oprah 's 3 +113229 6015 Oprah 2 +113230 6015 Book Club 2 +113231 6016 A brain twister , less a movie-movie than a funny and weird meditation on Hollywood , success , artistic integrity and intellectual bankruptcy . 2 +113232 6016 A brain twister 2 +113233 6016 brain twister 2 +113234 6016 twister 2 +113235 6016 , less a movie-movie than a funny and weird meditation on Hollywood , success , artistic integrity and intellectual bankruptcy . 1 +113236 6016 less a movie-movie than a funny and weird meditation on Hollywood , success , artistic integrity and intellectual bankruptcy . 2 +113237 6016 less a movie-movie than a funny and weird meditation on Hollywood , success , artistic integrity and intellectual bankruptcy 2 +113238 6016 a movie-movie than a funny and weird meditation on Hollywood , success , artistic integrity and intellectual bankruptcy 3 +113239 6016 a movie-movie 2 +113240 6016 movie-movie 2 +113241 6016 than a funny and weird meditation on Hollywood , success , artistic integrity and intellectual bankruptcy 3 +113242 6016 a funny and weird meditation on Hollywood , success , artistic integrity and intellectual bankruptcy 2 +113243 6016 a funny and weird meditation 2 +113244 6016 funny and weird meditation 3 +113245 6016 funny and weird 4 +113246 6016 on Hollywood , success , artistic integrity and intellectual bankruptcy 2 +113247 6016 Hollywood , success , artistic integrity and intellectual bankruptcy 3 +113248 6016 Hollywood , success , artistic integrity and 3 +113249 6016 Hollywood , success , artistic integrity 3 +113250 6016 Hollywood , success , 3 +113251 6016 Hollywood , success 3 +113252 6016 Hollywood , 2 +113253 6016 intellectual bankruptcy 1 +113254 6016 bankruptcy 1 +113255 6017 Wraps itself in the guise of a dark and quirky comedy , but it is n't as quirky as it thinks it is and its comedy is generally mean-spirited . 2 +113256 6017 Wraps itself in the guise of a dark and quirky comedy 1 +113257 6017 Wraps itself 2 +113258 6017 in the guise of a dark and quirky comedy 2 +113259 6017 the guise of a dark and quirky comedy 1 +113260 6017 of a dark and quirky comedy 2 +113261 6017 a dark and quirky comedy 2 +113262 6017 dark and quirky comedy 3 +113263 6017 and quirky comedy 3 +113264 6017 quirky comedy 3 +113265 6017 , but it is n't as quirky as it thinks it is and its comedy is generally mean-spirited . 1 +113266 6017 , but it is n't as quirky as it thinks it is and its comedy is generally mean-spirited 1 +113267 6017 it is n't as quirky as it thinks it is and its comedy is generally mean-spirited 1 +113268 6017 is n't as quirky as it thinks it is and its comedy is generally mean-spirited 1 +113269 6017 is n't as quirky 2 +113270 6017 as quirky 2 +113271 6017 as it thinks it is and its comedy is generally mean-spirited 1 +113272 6017 it thinks it is and its comedy is generally mean-spirited 3 +113273 6017 thinks it is and its comedy is generally mean-spirited 1 +113274 6017 it is and its comedy is generally mean-spirited 1 +113275 6017 it is and 2 +113276 6017 its comedy is generally mean-spirited 1 +113277 6017 is generally mean-spirited 1 +113278 6017 generally mean-spirited 3 +113279 6018 One of the most exciting action films to come out of China in recent years . 4 +113280 6018 One of the most exciting action films to come out of China in recent years 4 +113281 6018 One of the most exciting action films 3 +113282 6018 of the most exciting action films 3 +113283 6018 the most exciting action films 4 +113284 6018 most exciting action films 3 +113285 6018 to come out of China in recent years 2 +113286 6018 come out of China in recent years 2 +113287 6018 of China in recent years 2 +113288 6018 China in recent years 2 +113289 6018 in recent years 2 +113290 6019 A well-acted movie that simply does n't gel . 2 +113291 6019 A well-acted movie that simply does n't 3 +113292 6019 A well-acted movie 3 +113293 6019 well-acted movie 3 +113294 6019 that simply does n't 2 +113295 6019 simply does n't 1 +113296 6019 gel . 2 +113297 6020 A real snooze . 0 +113298 6020 real snooze . 0 +113299 6021 One of those films that started with a great premise and then just fell apart . 0 +113300 6021 One of those films that started with a great premise and then just fell apart 1 +113301 6021 of those films that started with a great premise and then just fell apart 0 +113302 6021 those films that started with a great premise and then just fell apart 0 +113303 6021 that started with a great premise and then just fell apart 1 +113304 6021 started with a great premise and then just fell apart 1 +113305 6021 started with a great premise and 2 +113306 6021 started with a great premise 3 +113307 6021 with a great premise 3 +113308 6021 a great premise 3 +113309 6021 great premise 4 +113310 6021 then just fell apart 0 +113311 6021 just fell apart 1 +113312 6021 fell apart 1 +113313 6021 fell 2 +113314 6022 The success of Undercover Brother is found in its ability to spoof both black and white stereotypes equally . 3 +113315 6022 The success of Undercover Brother 3 +113316 6022 The success 3 +113317 6022 of Undercover Brother 2 +113318 6022 is found in its ability to spoof both black and white stereotypes equally . 3 +113319 6022 is found in its ability to spoof both black and white stereotypes equally 3 +113320 6022 found in its ability to spoof both black and white stereotypes equally 3 +113321 6022 in its ability to spoof both black and white stereotypes equally 2 +113322 6022 its ability to spoof both black and white stereotypes equally 2 +113323 6022 ability to spoof both black and white stereotypes equally 2 +113324 6022 to spoof both black and white stereotypes equally 3 +113325 6022 spoof both black and white stereotypes equally 2 +113326 6022 spoof both black and white stereotypes 2 +113327 6022 both black and white stereotypes 2 +113328 6022 both black and white 2 +113329 6022 black and white 2 +113330 6022 black and 2 +113331 6023 If the plot seems a bit on the skinny side , that 's because Panic Room is interested in nothing more than sucking you in ... and making you sweat . 3 +113332 6023 If the plot seems a bit on the skinny side 2 +113333 6023 the plot seems a bit on the skinny side 1 +113334 6023 seems a bit on the skinny side 1 +113335 6023 a bit on the skinny side 1 +113336 6023 on the skinny side 2 +113337 6023 the skinny side 2 +113338 6023 skinny side 2 +113339 6023 , that 's because Panic Room is interested in nothing more than sucking you in ... and making you sweat . 3 +113340 6023 that 's because Panic Room is interested in nothing more than sucking you in ... and making you sweat . 3 +113341 6023 's because Panic Room is interested in nothing more than sucking you in ... and making you sweat . 2 +113342 6023 's because Panic Room is interested in nothing more than sucking you in ... and making you sweat 2 +113343 6023 because Panic Room is interested in nothing more than sucking you in ... and making you sweat 3 +113344 6023 Panic Room is interested in nothing more than sucking you in ... and making you sweat 3 +113345 6023 Panic Room 2 +113346 6023 Panic 1 +113347 6023 is interested in nothing more than sucking you in ... and making you sweat 2 +113348 6023 is interested in nothing 1 +113349 6023 is interested 3 +113350 6023 in nothing 2 +113351 6023 more than sucking you in ... and making you sweat 3 +113352 6023 than sucking you in ... and making you sweat 3 +113353 6023 sucking you in ... and making you sweat 3 +113354 6023 sucking you in ... and 2 +113355 6023 sucking you in ... 3 +113356 6023 sucking you in 2 +113357 6023 sucking you 1 +113358 6023 sucking 1 +113359 6023 making you sweat 2 +113360 6023 you sweat 3 +113361 6024 This is the kind of movie during which you want to bang your head on the seat in front of you , at its cluelessness , at its idiocy , at its utterly misplaced earnestness . 0 +113362 6024 is the kind of movie during which you want to bang your head on the seat in front of you , at its cluelessness , at its idiocy , at its utterly misplaced earnestness . 0 +113363 6024 is the kind of movie during which you want to bang your head on the seat in front of you , at its cluelessness , at its idiocy , at its utterly misplaced earnestness 0 +113364 6024 the kind of movie during which you want to bang your head on the seat in front of you , at its cluelessness , at its idiocy , at its utterly misplaced earnestness 0 +113365 6024 during which you want to bang your head on the seat in front of you , at its cluelessness , at its idiocy , at its utterly misplaced earnestness 0 +113366 6024 during which 2 +113367 6024 you want to bang your head on the seat in front of you , at its cluelessness , at its idiocy , at its utterly misplaced earnestness 0 +113368 6024 want to bang your head on the seat in front of you , at its cluelessness , at its idiocy , at its utterly misplaced earnestness 0 +113369 6024 to bang your head on the seat in front of you , at its cluelessness , at its idiocy , at its utterly misplaced earnestness 2 +113370 6024 bang your head on the seat in front of you , at its cluelessness , at its idiocy , at its utterly misplaced earnestness 0 +113371 6024 bang your head on the seat in front of you , at its cluelessness , at its idiocy , 0 +113372 6024 bang your head on the seat in front of you , at its cluelessness , at its idiocy 1 +113373 6024 bang your head on the seat in front of you , at its cluelessness , 0 +113374 6024 bang your head on the seat in front of you , at its cluelessness 0 +113375 6024 bang your head on the seat in front of you , 1 +113376 6024 bang your head on the seat in front of you 2 +113377 6024 bang your head 1 +113378 6024 bang 2 +113379 6024 on the seat in front of you 2 +113380 6024 the seat in front of you 2 +113381 6024 the seat 2 +113382 6024 in front of you 2 +113383 6024 front of you 2 +113384 6024 at its cluelessness 1 +113385 6024 its cluelessness 2 +113386 6024 cluelessness 1 +113387 6024 at its idiocy 2 +113388 6024 its idiocy 0 +113389 6024 at its utterly misplaced earnestness 0 +113390 6024 its utterly misplaced earnestness 1 +113391 6024 utterly misplaced earnestness 1 +113392 6024 utterly misplaced 0 +113393 6024 misplaced 2 +113394 6025 The film boasts dry humor and jarring shocks , plus moments of breathtaking mystery . 4 +113395 6025 boasts dry humor and jarring shocks , plus moments of breathtaking mystery . 3 +113396 6025 boasts dry humor and jarring shocks , plus moments of breathtaking mystery 3 +113397 6025 dry humor and jarring shocks , plus moments of breathtaking mystery 2 +113398 6025 dry humor and jarring shocks , plus 3 +113399 6025 dry humor and jarring shocks , 2 +113400 6025 dry humor and jarring shocks 3 +113401 6025 dry humor and 2 +113402 6025 jarring shocks 3 +113403 6025 moments of breathtaking mystery 3 +113404 6025 of breathtaking mystery 4 +113405 6025 breathtaking mystery 3 +113406 6026 El Crimen Del Padre Amaro would likely be most effective if used as a tool to rally anti-Catholic protestors . 1 +113407 6026 would likely be most effective if used as a tool to rally anti-Catholic protestors . 1 +113408 6026 would likely be most effective if used as a tool to rally anti-Catholic protestors 2 +113409 6026 would likely 2 +113410 6026 be most effective if used as a tool to rally anti-Catholic protestors 1 +113411 6026 most effective if used as a tool to rally anti-Catholic protestors 1 +113412 6026 if used as a tool to rally anti-Catholic protestors 2 +113413 6026 used as a tool to rally anti-Catholic protestors 2 +113414 6026 as a tool to rally anti-Catholic protestors 2 +113415 6026 a tool to rally anti-Catholic protestors 2 +113416 6026 tool to rally anti-Catholic protestors 2 +113417 6026 to rally anti-Catholic protestors 2 +113418 6026 rally anti-Catholic protestors 2 +113419 6026 rally 2 +113420 6026 anti-Catholic protestors 2 +113421 6026 protestors 2 +113422 6027 ... salaciously simplistic . 2 +113423 6027 salaciously simplistic . 1 +113424 6027 salaciously 2 +113425 6027 simplistic . 2 +113426 6028 A fanciful drama about Napoleon 's last years and his surprising discovery of love and humility . 4 +113427 6028 A fanciful drama about Napoleon 's last years and his surprising discovery of love and humility 4 +113428 6028 A fanciful drama 2 +113429 6028 fanciful drama 3 +113430 6028 about Napoleon 's last years and his surprising discovery of love and humility 2 +113431 6028 Napoleon 's last years and his surprising discovery of love and humility 2 +113432 6028 Napoleon 's last years and 2 +113433 6028 Napoleon 's last years 2 +113434 6028 Napoleon 's 2 +113435 6028 last years 2 +113436 6028 his surprising discovery of love and humility 3 +113437 6028 his surprising discovery 3 +113438 6028 surprising discovery 3 +113439 6028 of love and humility 3 +113440 6028 love and humility 3 +113441 6029 Excellent performances from Jacqueline Bisset and Martha Plimpton grace this deeply touching melodrama . 4 +113442 6029 Excellent performances from Jacqueline Bisset and Martha Plimpton 4 +113443 6029 from Jacqueline Bisset and Martha Plimpton 2 +113444 6029 Jacqueline Bisset and Martha Plimpton 2 +113445 6029 Jacqueline Bisset and 2 +113446 6029 Jacqueline Bisset 2 +113447 6029 Jacqueline 2 +113448 6029 Martha Plimpton 2 +113449 6029 Plimpton 2 +113450 6029 grace this deeply touching melodrama . 4 +113451 6029 grace this deeply touching melodrama 3 +113452 6029 this deeply touching melodrama 3 +113453 6029 deeply touching melodrama 4 +113454 6029 touching melodrama 3 +113455 6030 The film 's thoroughly recycled plot and tiresome jokes ... drag the movie down . 1 +113456 6030 The film 's thoroughly recycled plot and tiresome jokes ... 0 +113457 6030 The film 's thoroughly recycled plot and tiresome jokes 0 +113458 6030 The film 's thoroughly recycled plot and 2 +113459 6030 The film 's thoroughly recycled plot 1 +113460 6030 thoroughly recycled plot 2 +113461 6030 recycled plot 1 +113462 6030 tiresome jokes 1 +113463 6030 drag the movie down . 2 +113464 6030 drag the movie down 1 +113465 6030 drag the movie 1 +113466 6031 Below is well below expectations . 0 +113467 6031 is well below expectations . 0 +113468 6031 is well below expectations 1 +113469 6031 below expectations 3 +113470 6032 an essentially awkward version of the lightweight female empowerment picture we 've been watching for decades 1 +113471 6032 an essentially awkward version of the lightweight female empowerment 2 +113472 6032 an essentially awkward version 1 +113473 6032 essentially awkward version 1 +113474 6032 awkward version 1 +113475 6032 of the lightweight female empowerment 1 +113476 6032 the lightweight female empowerment 2 +113477 6032 lightweight female empowerment 1 +113478 6032 female empowerment 3 +113479 6032 picture we 've been watching for decades 2 +113480 6032 we 've been watching for decades 2 +113481 6032 've been watching for decades 2 +113482 6032 been watching for decades 2 +113483 6032 watching for decades 2 +113484 6032 for decades 2 +113485 6033 About Schmidt belongs to Nicholson . 3 +113486 6033 belongs to Nicholson . 2 +113487 6033 belongs to Nicholson 3 +113488 6033 to Nicholson 2 +113489 6034 And it marks him as one of the most interesting writer\/directors working today . 3 +113490 6034 it marks him as one of the most interesting writer\/directors working today . 4 +113491 6034 marks him as one of the most interesting writer\/directors working today . 4 +113492 6034 marks him as one of the most interesting writer\/directors working today 4 +113493 6034 marks him 2 +113494 6034 as one of the most interesting writer\/directors working today 3 +113495 6034 one of the most interesting writer\/directors working today 4 +113496 6034 one of the most interesting writer\/directors 3 +113497 6034 of the most interesting writer\/directors 3 +113498 6034 the most interesting writer\/directors 3 +113499 6034 most interesting writer\/directors 2 +113500 6034 most interesting 3 +113501 6034 writer\/directors 2 +113502 6034 working today 2 +113503 6035 I approached the usher and said that if she had to sit through it again , she should ask for a raise . 0 +113504 6035 approached the usher and said that if she had to sit through it again , she should ask for a raise . 0 +113505 6035 approached the usher and said that if she had to sit through it again , she should ask for a raise 0 +113506 6035 approached the usher and 2 +113507 6035 approached the usher 2 +113508 6035 approached 2 +113509 6035 the usher 2 +113510 6035 usher 2 +113511 6035 said that if she had to sit through it again , she should ask for a raise 1 +113512 6035 that if she had to sit through it again , she should ask for a raise 1 +113513 6035 if she had to sit through it again , she should ask for a raise 1 +113514 6035 if she had to sit through it again 2 +113515 6035 she had to sit through it again 1 +113516 6035 had to sit through it again 0 +113517 6035 to sit through it again 1 +113518 6035 sit through it again 3 +113519 6035 sit through it 2 +113520 6035 , she should ask for a raise 2 +113521 6035 she should ask for a raise 2 +113522 6035 should ask for a raise 2 +113523 6035 ask for a raise 3 +113524 6035 for a raise 2 +113525 6035 a raise 3 +113526 6036 At its best , which occurs often , Michael Moore 's Bowling for Columbine rekindles the muckraking , soul-searching spirit of the ` Are we a sick society ? ' 3 +113527 6036 At its best , which occurs often 3 +113528 6036 its best , which occurs often 2 +113529 6036 its best , 3 +113530 6036 which occurs often 2 +113531 6036 occurs often 2 +113532 6036 , Michael Moore 's Bowling for Columbine rekindles the muckraking , soul-searching spirit of the ` Are we a sick society ? ' 2 +113533 6036 Michael Moore 's Bowling for Columbine rekindles the muckraking , soul-searching spirit of the ` Are we a sick society ? ' 3 +113534 6036 Michael Moore 's Bowling for Columbine 2 +113535 6036 Michael Moore 's Bowling 2 +113536 6036 Bowling 2 +113537 6036 for Columbine 2 +113538 6036 Columbine 2 +113539 6036 rekindles the muckraking , soul-searching spirit of the ` Are we a sick society ? ' 2 +113540 6036 rekindles the muckraking , soul-searching spirit of the ` Are we a sick society ? 2 +113541 6036 rekindles the muckraking , soul-searching spirit of the ` Are we a sick society 2 +113542 6036 rekindles 3 +113543 6036 the muckraking , soul-searching spirit of the ` Are we a sick society 2 +113544 6036 the muckraking , soul-searching spirit 3 +113545 6036 muckraking , soul-searching spirit 2 +113546 6036 muckraking 2 +113547 6036 , soul-searching spirit 2 +113548 6036 soul-searching spirit 2 +113549 6036 of the ` Are we a sick society 2 +113550 6036 the ` Are we a sick society 1 +113551 6036 the ` Are 2 +113552 6036 ` Are 2 +113553 6036 we a sick society 1 +113554 6036 a sick society 2 +113555 6036 sick society 1 +113556 6037 The casting of von Sydow ... is itself Intacto 's luckiest stroke . 3 +113557 6037 The casting of von Sydow ... is itself Intacto 's luckiest stroke 2 +113558 6037 The casting 2 +113559 6037 of von Sydow ... is itself Intacto 's luckiest stroke 3 +113560 6037 von Sydow ... is itself Intacto 's luckiest stroke 3 +113561 6037 von Sydow ... 3 +113562 6037 von Sydow 2 +113563 6037 Sydow 2 +113564 6037 is itself Intacto 's luckiest stroke 3 +113565 6037 is itself 2 +113566 6037 Intacto 's luckiest stroke 3 +113567 6037 luckiest stroke 3 +113568 6037 luckiest 3 +113569 6038 a cruelly funny twist on teen comedy packed with inventive cinematic tricks and an ironically killer soundtrack 3 +113570 6038 a cruelly funny twist on teen comedy 3 +113571 6038 a cruelly funny twist 3 +113572 6038 cruelly funny twist 3 +113573 6038 cruelly funny 3 +113574 6038 cruelly 0 +113575 6038 on teen comedy 2 +113576 6038 packed with inventive cinematic tricks and an ironically killer soundtrack 4 +113577 6038 with inventive cinematic tricks and an ironically killer soundtrack 3 +113578 6038 inventive cinematic tricks and an ironically killer soundtrack 4 +113579 6038 inventive cinematic tricks and 3 +113580 6038 inventive cinematic tricks 2 +113581 6038 cinematic tricks 2 +113582 6038 an ironically killer soundtrack 3 +113583 6038 ironically killer soundtrack 3 +113584 6038 killer soundtrack 3 +113585 6039 -LRB- Caine -RRB- proves once again he has n't lost his touch , bringing off a superb performance in an admittedly middling film . 3 +113586 6039 -LRB- Caine -RRB- 2 +113587 6039 Caine -RRB- 2 +113588 6039 proves once again he has n't lost his touch , bringing off a superb performance in an admittedly middling film . 4 +113589 6039 proves once again he has n't lost his touch , bringing off a superb performance in an admittedly middling film 3 +113590 6039 once again he has n't lost his touch , bringing off a superb performance in an admittedly middling film 3 +113591 6039 again he has n't lost his touch , bringing off a superb performance in an admittedly middling film 2 +113592 6039 he has n't lost his touch , bringing off a superb performance in an admittedly middling film 3 +113593 6039 has n't lost his touch , bringing off a superb performance in an admittedly middling film 3 +113594 6039 lost his touch , bringing off a superb performance in an admittedly middling film 1 +113595 6039 lost his touch , 1 +113596 6039 lost his touch 1 +113597 6039 bringing off a superb performance in an admittedly middling film 3 +113598 6039 a superb performance in an admittedly middling film 2 +113599 6039 in an admittedly middling film 1 +113600 6039 an admittedly middling film 3 +113601 6039 admittedly middling film 2 +113602 6039 admittedly middling 2 +113603 6039 middling 2 +113604 6040 A crisp psychological drama -LRB- and -RRB- a fascinating little thriller that would have been perfect for an old `` Twilight Zone '' episode . 3 +113605 6040 A crisp psychological drama -LRB- and -RRB- a fascinating little thriller that would have been perfect for an old `` Twilight Zone '' episode 3 +113606 6040 A crisp psychological drama -LRB- and -RRB- 3 +113607 6040 A crisp psychological drama 3 +113608 6040 crisp psychological drama 3 +113609 6040 a fascinating little thriller that would have been perfect for an old `` Twilight Zone '' episode 3 +113610 6040 a fascinating little thriller 3 +113611 6040 fascinating little thriller 3 +113612 6040 little thriller 2 +113613 6040 that would have been perfect for an old `` Twilight Zone '' episode 2 +113614 6040 would have been perfect for an old `` Twilight Zone '' episode 2 +113615 6040 have been perfect for an old `` Twilight Zone '' episode 3 +113616 6040 been perfect for an old `` Twilight Zone '' episode 3 +113617 6040 been perfect 2 +113618 6040 for an old `` Twilight Zone '' episode 2 +113619 6040 an old `` Twilight Zone '' episode 2 +113620 6040 old `` Twilight Zone '' episode 2 +113621 6040 `` Twilight Zone '' episode 2 +113622 6040 Twilight Zone '' episode 2 +113623 6040 Twilight 2 +113624 6040 Zone '' episode 3 +113625 6040 '' episode 2 +113626 6041 Too often , Son of the Bride becomes an exercise in trying to predict when a preordained `` big moment '' will occur and not `` if . '' 1 +113627 6041 , Son of the Bride becomes an exercise in trying to predict when a preordained `` big moment '' will occur and not `` if . '' 1 +113628 6041 Son of the Bride becomes an exercise in trying to predict when a preordained `` big moment '' will occur and not `` if . '' 1 +113629 6041 becomes an exercise in trying to predict when a preordained `` big moment '' will occur and not `` if . '' 1 +113630 6041 becomes an exercise in trying to predict when a preordained `` big moment '' will occur and not `` if . 2 +113631 6041 becomes an exercise in trying to predict when a preordained `` big moment '' will occur and not `` if 1 +113632 6041 becomes an exercise 2 +113633 6041 in trying to predict when a preordained `` big moment '' will occur and not `` if 2 +113634 6041 trying to predict when a preordained `` big moment '' will occur and not `` if 2 +113635 6041 to predict when a preordained `` big moment '' will occur and not `` if 2 +113636 6041 predict when a preordained `` big moment '' will occur and not `` if 2 +113637 6041 predict 2 +113638 6041 when a preordained `` big moment '' will occur and not `` if 2 +113639 6041 a preordained `` big moment '' will occur and not `` if 2 +113640 6041 a preordained `` big moment '' 2 +113641 6041 preordained `` big moment '' 2 +113642 6041 preordained 2 +113643 6041 `` big moment '' 2 +113644 6041 big moment '' 2 +113645 6041 moment '' 2 +113646 6041 will occur and not `` if 2 +113647 6041 occur and not `` if 2 +113648 6041 occur and not `` 2 +113649 6041 occur and not 2 +113650 6041 occur and 2 +113651 6042 It 's hard to care about a film that proposes as epic tragedy the plight of a callow rich boy who is forced to choose between his beautiful , self-satisfied 22-year-old girlfriend and an equally beautiful , self-satisfied 18-year-old mistress . 1 +113652 6042 's hard to care about a film that proposes as epic tragedy the plight of a callow rich boy who is forced to choose between his beautiful , self-satisfied 22-year-old girlfriend and an equally beautiful , self-satisfied 18-year-old mistress . 1 +113653 6042 's hard to care about a film that proposes as epic tragedy the plight of a callow rich boy who is forced to choose between his beautiful , self-satisfied 22-year-old girlfriend and an equally beautiful , self-satisfied 18-year-old mistress 1 +113654 6042 hard to care about a film that proposes as epic tragedy the plight of a callow rich boy who is forced to choose between his beautiful , self-satisfied 22-year-old girlfriend and an equally beautiful , self-satisfied 18-year-old mistress 1 +113655 6042 to care about a film that proposes as epic tragedy the plight of a callow rich boy who is forced to choose between his beautiful , self-satisfied 22-year-old girlfriend and an equally beautiful , self-satisfied 18-year-old mistress 2 +113656 6042 care about a film that proposes as epic tragedy the plight of a callow rich boy who is forced to choose between his beautiful , self-satisfied 22-year-old girlfriend and an equally beautiful , self-satisfied 18-year-old mistress 3 +113657 6042 about a film that proposes as epic tragedy the plight of a callow rich boy who is forced to choose between his beautiful , self-satisfied 22-year-old girlfriend and an equally beautiful , self-satisfied 18-year-old mistress 2 +113658 6042 a film that proposes as epic tragedy the plight of a callow rich boy who is forced to choose between his beautiful , self-satisfied 22-year-old girlfriend and an equally beautiful , self-satisfied 18-year-old mistress 3 +113659 6042 that proposes as epic tragedy the plight of a callow rich boy who is forced to choose between his beautiful , self-satisfied 22-year-old girlfriend and an equally beautiful , self-satisfied 18-year-old mistress 3 +113660 6042 proposes as epic tragedy the plight of a callow rich boy who is forced to choose between his beautiful , self-satisfied 22-year-old girlfriend and an equally beautiful , self-satisfied 18-year-old mistress 2 +113661 6042 proposes as epic tragedy 2 +113662 6042 proposes 2 +113663 6042 as epic tragedy 1 +113664 6042 epic tragedy 2 +113665 6042 the plight of a callow rich boy who is forced to choose between his beautiful , self-satisfied 22-year-old girlfriend and an equally beautiful , self-satisfied 18-year-old mistress 2 +113666 6042 of a callow rich boy who is forced to choose between his beautiful , self-satisfied 22-year-old girlfriend and an equally beautiful , self-satisfied 18-year-old mistress 3 +113667 6042 a callow rich boy who is forced to choose between his beautiful , self-satisfied 22-year-old girlfriend and an equally beautiful , self-satisfied 18-year-old mistress 2 +113668 6042 a callow rich boy 2 +113669 6042 callow rich boy 1 +113670 6042 callow rich 2 +113671 6042 who is forced to choose between his beautiful , self-satisfied 22-year-old girlfriend and an equally beautiful , self-satisfied 18-year-old mistress 2 +113672 6042 is forced to choose between his beautiful , self-satisfied 22-year-old girlfriend and an equally beautiful , self-satisfied 18-year-old mistress 2 +113673 6042 forced to choose between his beautiful , self-satisfied 22-year-old girlfriend and an equally beautiful , self-satisfied 18-year-old mistress 2 +113674 6042 to choose between his beautiful , self-satisfied 22-year-old girlfriend and an equally beautiful , self-satisfied 18-year-old mistress 2 +113675 6042 choose between his beautiful , self-satisfied 22-year-old girlfriend and an equally beautiful , self-satisfied 18-year-old mistress 2 +113676 6042 between his beautiful , self-satisfied 22-year-old girlfriend and an equally beautiful , self-satisfied 18-year-old mistress 2 +113677 6042 his beautiful , self-satisfied 22-year-old girlfriend and an equally beautiful , self-satisfied 18-year-old mistress 3 +113678 6042 his beautiful , self-satisfied 22-year-old girlfriend and 2 +113679 6042 his beautiful , self-satisfied 22-year-old girlfriend 3 +113680 6042 beautiful , self-satisfied 22-year-old girlfriend 2 +113681 6042 , self-satisfied 22-year-old girlfriend 2 +113682 6042 self-satisfied 22-year-old girlfriend 2 +113683 6042 self-satisfied 2 +113684 6042 22-year-old girlfriend 2 +113685 6042 22-year-old 2 +113686 6042 girlfriend 2 +113687 6042 an equally beautiful , self-satisfied 18-year-old mistress 3 +113688 6042 equally beautiful , self-satisfied 18-year-old mistress 3 +113689 6042 equally beautiful , self-satisfied 4 +113690 6042 beautiful , self-satisfied 4 +113691 6042 , self-satisfied 2 +113692 6042 18-year-old mistress 2 +113693 6042 18-year-old 2 +113694 6042 mistress 2 +113695 6043 I admit it , I hate to like it . 2 +113696 6043 I admit it 2 +113697 6043 , I hate to like it . 2 +113698 6043 I hate to like it . 2 +113699 6043 hate to like it . 1 +113700 6043 hate to like it 2 +113701 6044 It 's so crammed with scenes and vistas and pretty moments that it 's left a few crucial things out , like character development and coherence . 1 +113702 6044 's so crammed with scenes and vistas and pretty moments that it 's left a few crucial things out , like character development and coherence . 1 +113703 6044 's so crammed with scenes and vistas and pretty moments that it 's left a few crucial things out , like character development and coherence 2 +113704 6044 's so crammed with scenes and vistas and pretty moments 3 +113705 6044 so crammed with scenes and vistas and pretty moments 2 +113706 6044 crammed with scenes and vistas and pretty moments 3 +113707 6044 with scenes and vistas and pretty moments 2 +113708 6044 scenes and vistas and pretty moments 3 +113709 6044 scenes and vistas and 2 +113710 6044 scenes and vistas 2 +113711 6044 pretty moments 3 +113712 6044 that it 's left a few crucial things out , like character development and coherence 0 +113713 6044 it 's left a few crucial things out , like character development and coherence 1 +113714 6044 's left a few crucial things out , like character development and coherence 2 +113715 6044 left a few crucial things out , like character development and coherence 0 +113716 6044 left a few crucial things out , 1 +113717 6044 left a few crucial things out 1 +113718 6044 left a few crucial things 2 +113719 6044 a few crucial things 2 +113720 6044 few crucial things 2 +113721 6044 crucial things 2 +113722 6044 like character development and coherence 2 +113723 6044 character development and coherence 2 +113724 6044 development and coherence 2 +113725 6044 development and 2 +113726 6044 coherence 2 +113727 6045 Ozpetek joins the ranks of those gay filmmakers who have used the emigre experience to explore same-sex culture in ways that elude the more nationally settled . 2 +113728 6045 joins the ranks of those gay filmmakers who have used the emigre experience to explore same-sex culture in ways that elude the more nationally settled . 3 +113729 6045 joins the ranks of those gay filmmakers who have used the emigre experience to explore same-sex culture in ways that elude the more nationally settled 3 +113730 6045 joins 2 +113731 6045 the ranks of those gay filmmakers who have used the emigre experience to explore same-sex culture in ways that elude the more nationally settled 3 +113732 6045 of those gay filmmakers who have used the emigre experience to explore same-sex culture in ways that elude the more nationally settled 2 +113733 6045 those gay filmmakers who have used the emigre experience to explore same-sex culture in ways that elude the more nationally settled 2 +113734 6045 those gay filmmakers 2 +113735 6045 gay filmmakers 3 +113736 6045 who have used the emigre experience to explore same-sex culture in ways that elude the more nationally settled 3 +113737 6045 have used the emigre experience to explore same-sex culture in ways that elude the more nationally settled 2 +113738 6045 used the emigre experience to explore same-sex culture in ways that elude the more nationally settled 2 +113739 6045 used the emigre experience 2 +113740 6045 the emigre experience 2 +113741 6045 emigre experience 2 +113742 6045 emigre 2 +113743 6045 to explore same-sex culture in ways that elude the more nationally settled 2 +113744 6045 explore same-sex culture in ways that elude the more nationally settled 3 +113745 6045 explore same-sex culture 2 +113746 6045 same-sex culture 2 +113747 6045 same-sex 2 +113748 6045 in ways that elude the more nationally settled 2 +113749 6045 ways that elude the more nationally settled 2 +113750 6045 that elude the more nationally settled 2 +113751 6045 elude the more nationally settled 2 +113752 6045 elude 2 +113753 6045 the more nationally settled 2 +113754 6045 nationally settled 2 +113755 6045 nationally 2 +113756 6046 Its director 's most substantial feature for some time . 3 +113757 6046 Its director 2 +113758 6046 's most substantial feature for some time . 3 +113759 6046 's most substantial feature for some time 3 +113760 6046 most substantial feature for some time 4 +113761 6046 most substantial feature 2 +113762 6046 most substantial 2 +113763 6047 To better understand why this did n't connect with me would require another viewing , and I wo n't be sitting through this one again ... that in itself is commentary enough . 0 +113764 6047 To better understand why this did n't connect with me would require another viewing , and I wo n't be sitting through this one again ... that in itself is commentary enough 1 +113765 6047 To better understand why this did n't connect with me would require another viewing , and I wo n't be sitting through this one again ... 2 +113766 6047 To better understand why this did n't connect with me would require another viewing , and I wo n't be sitting through this one again 0 +113767 6047 To better understand why this did n't connect with me would require another viewing , and 1 +113768 6047 To better understand why this did n't connect with me would require another viewing , 2 +113769 6047 To better understand why this did n't connect with me would require another viewing 2 +113770 6047 better understand why this did n't connect with me would require another viewing 2 +113771 6047 understand why this did n't connect with me would require another viewing 1 +113772 6047 why this did n't connect with me would require another viewing 1 +113773 6047 this did n't connect with me would require another viewing 1 +113774 6047 did n't connect with me would require another viewing 1 +113775 6047 connect with me would require another viewing 2 +113776 6047 with me would require another viewing 2 +113777 6047 me would require another viewing 2 +113778 6047 would require another viewing 2 +113779 6047 require another viewing 2 +113780 6047 another viewing 2 +113781 6047 I wo n't be sitting through this one again 1 +113782 6047 wo n't be sitting through this one again 0 +113783 6047 be sitting through this one again 2 +113784 6047 sitting through this one again 2 +113785 6047 that in itself is commentary enough 2 +113786 6047 that in itself 2 +113787 6047 in itself 2 +113788 6047 is commentary enough 3 +113789 6047 commentary enough 2 +113790 6048 Vibrantly colored and beautifully designed , Metropolis is a feast for the eyes . 4 +113791 6048 Vibrantly colored and beautifully designed 4 +113792 6048 Vibrantly colored and 3 +113793 6048 Vibrantly colored 4 +113794 6048 Vibrantly 3 +113795 6048 beautifully designed 4 +113796 6048 , Metropolis is a feast for the eyes . 4 +113797 6048 Metropolis is a feast for the eyes . 4 +113798 6048 is a feast for the eyes . 4 +113799 6048 is a feast for the eyes 4 +113800 6048 a feast for the eyes 3 +113801 6048 for the eyes 2 +113802 6049 Deuces Wild is an encyclopedia of cliches that shoplifts shamelessly from farewell-to-innocence movies like The Wanderers and A Bronx Tale without cribbing any of their intelligence . 1 +113803 6049 is an encyclopedia of cliches that shoplifts shamelessly from farewell-to-innocence movies like The Wanderers and A Bronx Tale without cribbing any of their intelligence . 1 +113804 6049 is an encyclopedia of cliches that shoplifts shamelessly from farewell-to-innocence movies like The Wanderers and A Bronx Tale without cribbing any of their intelligence 1 +113805 6049 an encyclopedia of cliches that shoplifts shamelessly from farewell-to-innocence movies like The Wanderers and A Bronx Tale without cribbing any of their intelligence 1 +113806 6049 an encyclopedia 2 +113807 6049 encyclopedia 2 +113808 6049 of cliches that shoplifts shamelessly from farewell-to-innocence movies like The Wanderers and A Bronx Tale without cribbing any of their intelligence 1 +113809 6049 cliches that shoplifts shamelessly from farewell-to-innocence movies like The Wanderers and A Bronx Tale without cribbing any of their intelligence 2 +113810 6049 that shoplifts shamelessly from farewell-to-innocence movies like The Wanderers and A Bronx Tale without cribbing any of their intelligence 1 +113811 6049 shoplifts shamelessly from farewell-to-innocence movies like The Wanderers and A Bronx Tale without cribbing any of their intelligence 0 +113812 6049 shoplifts shamelessly from farewell-to-innocence movies like The Wanderers and A Bronx Tale 1 +113813 6049 shoplifts shamelessly 1 +113814 6049 shoplifts 1 +113815 6049 from farewell-to-innocence movies like The Wanderers and A Bronx Tale 2 +113816 6049 farewell-to-innocence movies like The Wanderers and A Bronx Tale 2 +113817 6049 farewell-to-innocence movies 1 +113818 6049 farewell-to-innocence 2 +113819 6049 like The Wanderers and A Bronx Tale 3 +113820 6049 The Wanderers and A Bronx Tale 2 +113821 6049 Wanderers and A Bronx Tale 1 +113822 6049 Wanderers 2 +113823 6049 and A Bronx Tale 2 +113824 6049 A Bronx Tale 2 +113825 6049 Bronx Tale 2 +113826 6049 Bronx 2 +113827 6049 without cribbing any of their intelligence 2 +113828 6049 cribbing any of their intelligence 2 +113829 6049 cribbing 2 +113830 6049 any of their intelligence 2 +113831 6049 of their intelligence 2 +113832 6049 their intelligence 3 +113833 6050 If there ai n't none , you have a problem . 2 +113834 6050 If there ai n't none 2 +113835 6050 there ai n't none 2 +113836 6050 ai n't none 2 +113837 6050 , you have a problem . 1 +113838 6050 you have a problem . 1 +113839 6050 have a problem . 2 +113840 6050 have a problem 2 +113841 6051 Chomp chomp ! 2 +113842 6051 Chomp 2 +113843 6051 chomp ! 2 +113844 6052 Louiso lets the movie dawdle in classic disaffected-indie-film mode , and brother Hoffman 's script stumbles over a late-inning twist that just does n't make sense . 1 +113845 6052 Louiso lets the movie dawdle in classic disaffected-indie-film mode , and brother Hoffman 's script stumbles over a late-inning twist that just does n't make sense 1 +113846 6052 Louiso lets the movie dawdle in classic disaffected-indie-film mode , and 1 +113847 6052 Louiso lets the movie dawdle in classic disaffected-indie-film mode , 1 +113848 6052 Louiso lets the movie dawdle in classic disaffected-indie-film mode 1 +113849 6052 Louiso 2 +113850 6052 lets the movie dawdle in classic disaffected-indie-film mode 1 +113851 6052 the movie dawdle in classic disaffected-indie-film mode 1 +113852 6052 the movie dawdle 1 +113853 6052 movie dawdle 1 +113854 6052 dawdle 2 +113855 6052 in classic disaffected-indie-film mode 2 +113856 6052 classic disaffected-indie-film mode 2 +113857 6052 disaffected-indie-film mode 2 +113858 6052 disaffected-indie-film 2 +113859 6052 mode 2 +113860 6052 brother Hoffman 's script stumbles over a late-inning twist that just does n't make sense 1 +113861 6052 brother Hoffman 's script 2 +113862 6052 brother Hoffman 's 2 +113863 6052 stumbles over a late-inning twist that just does n't make sense 1 +113864 6052 over a late-inning twist that just does n't make sense 1 +113865 6052 a late-inning twist that just does n't make sense 1 +113866 6052 a late-inning twist 2 +113867 6052 late-inning twist 2 +113868 6052 late-inning 2 +113869 6052 that just does n't make sense 2 +113870 6052 just does n't make sense 1 +113871 6052 does n't make sense 1 +113872 6053 If you do n't flee , you might be seduced . 2 +113873 6053 If you do n't flee 2 +113874 6053 you do n't flee 2 +113875 6053 do n't flee 2 +113876 6053 , you might be seduced . 2 +113877 6053 you might be seduced . 3 +113878 6053 might be seduced . 2 +113879 6053 might be seduced 2 +113880 6053 be seduced 2 +113881 6053 seduced 3 +113882 6054 Oedekerk mugs mercilessly , and the genuinely funny jokes are few and far between . 0 +113883 6054 Oedekerk mugs mercilessly , and the genuinely funny jokes are few and far between 2 +113884 6054 Oedekerk mugs mercilessly , and 2 +113885 6054 Oedekerk mugs mercilessly , 2 +113886 6054 Oedekerk mugs mercilessly 2 +113887 6054 mugs mercilessly 1 +113888 6054 mugs 2 +113889 6054 the genuinely funny jokes are few and far between 1 +113890 6054 the genuinely funny jokes 3 +113891 6054 genuinely funny jokes 3 +113892 6055 Forget the Psychology 101 study of romantic obsession and just watch the procession of costumes in castles and this wo n't seem like such a bore . 1 +113893 6055 Forget the Psychology 101 study of romantic obsession and just watch the procession of costumes in castles and this wo n't seem like such a bore 1 +113894 6055 Forget the Psychology 101 study of romantic obsession and just watch the procession of costumes in castles and 2 +113895 6055 Forget the Psychology 101 study of romantic obsession and just watch the procession of costumes in castles 2 +113896 6055 Forget the Psychology 101 study of romantic obsession and 2 +113897 6055 Forget the Psychology 101 study of romantic obsession 2 +113898 6055 the Psychology 101 study of romantic obsession 3 +113899 6055 the Psychology 101 study 2 +113900 6055 Psychology 101 study 2 +113901 6055 101 study 2 +113902 6055 of romantic obsession 3 +113903 6055 romantic obsession 2 +113904 6055 just watch the procession of costumes in castles 2 +113905 6055 watch the procession of costumes in castles 2 +113906 6055 the procession of costumes in castles 2 +113907 6055 the procession 3 +113908 6055 of costumes in castles 2 +113909 6055 costumes in castles 2 +113910 6055 in castles 2 +113911 6055 castles 2 +113912 6055 this wo n't seem like such a bore 1 +113913 6055 wo n't seem like such a bore 2 +113914 6055 seem like such a bore 1 +113915 6055 like such a bore 1 +113916 6055 such a bore 1 +113917 6056 Allen shows he can outgag any of those young whippersnappers making moving pictures today . 3 +113918 6056 shows he can outgag any of those young whippersnappers making moving pictures today . 4 +113919 6056 shows he can outgag any of those young whippersnappers making moving pictures today 2 +113920 6056 he can outgag any of those young whippersnappers making moving pictures today 4 +113921 6056 can outgag any of those young whippersnappers making moving pictures today 3 +113922 6056 outgag any of those young whippersnappers making moving pictures today 3 +113923 6056 outgag 2 +113924 6056 any of those young whippersnappers making moving pictures today 2 +113925 6056 of those young whippersnappers making moving pictures today 2 +113926 6056 those young whippersnappers making moving pictures today 1 +113927 6056 those young whippersnappers 2 +113928 6056 young whippersnappers 2 +113929 6056 whippersnappers 2 +113930 6056 making moving pictures today 3 +113931 6056 moving pictures today 2 +113932 6056 moving pictures 2 +113933 6057 The pleasure of Read My Lips is like seeing a series of perfect black pearls clicking together to form a string . 4 +113934 6057 The pleasure of Read My Lips 2 +113935 6057 of Read My Lips 3 +113936 6057 is like seeing a series of perfect black pearls clicking together to form a string . 3 +113937 6057 is like seeing a series of perfect black pearls clicking together to form a string 3 +113938 6057 like seeing a series of perfect black pearls clicking together to form a string 2 +113939 6057 seeing a series of perfect black pearls clicking together to form a string 3 +113940 6057 a series of perfect black pearls clicking together to form a string 3 +113941 6057 of perfect black pearls clicking together to form a string 2 +113942 6057 perfect black pearls clicking together to form a string 2 +113943 6057 perfect black pearls 3 +113944 6057 black pearls 2 +113945 6057 pearls 2 +113946 6057 clicking together to form a string 2 +113947 6057 clicking together 2 +113948 6057 clicking 2 +113949 6057 to form a string 2 +113950 6057 form a string 2 +113951 6058 Although Disney follows its standard formula in this animated adventure , it feels more forced than usual . 1 +113952 6058 Although Disney follows its standard formula in this animated adventure 2 +113953 6058 Disney follows its standard formula in this animated adventure 2 +113954 6058 follows its standard formula in this animated adventure 3 +113955 6058 follows its standard formula 2 +113956 6058 its standard formula 1 +113957 6058 standard formula 1 +113958 6058 in this animated adventure 2 +113959 6058 this animated adventure 3 +113960 6058 animated adventure 2 +113961 6058 , it feels more forced than usual . 1 +113962 6058 it feels more forced than usual . 0 +113963 6058 feels more forced than usual . 2 +113964 6058 feels more forced than usual 2 +113965 6058 more forced than usual 0 +113966 6058 forced than usual 2 +113967 6058 than usual 2 +113968 6059 The Irwins ' scenes are fascinating ; the movie as a whole is cheap junk and an insult to their death-defying efforts . 0 +113969 6059 The Irwins ' scenes are fascinating ; the movie as a whole is cheap junk and an insult to their death-defying efforts 1 +113970 6059 The Irwins ' scenes are fascinating ; 4 +113971 6059 The Irwins ' scenes are fascinating 3 +113972 6059 The Irwins ' scenes 2 +113973 6059 The Irwins ' 2 +113974 6059 Irwins ' 2 +113975 6059 Irwins 2 +113976 6059 are fascinating 3 +113977 6059 the movie as a whole is cheap junk and an insult to their death-defying efforts 0 +113978 6059 the movie as a whole 3 +113979 6059 is cheap junk and an insult to their death-defying efforts 0 +113980 6059 cheap junk and an insult to their death-defying efforts 0 +113981 6059 cheap junk and 0 +113982 6059 cheap junk 1 +113983 6059 an insult to their death-defying efforts 2 +113984 6059 to their death-defying efforts 2 +113985 6059 their death-defying efforts 2 +113986 6059 death-defying efforts 2 +113987 6059 death-defying 2 +113988 6060 Few of the increasingly far-fetched events that first-time writer-director Neil Burger follows up with are terribly convincing , which is a pity , considering Barry 's terrific performance . 2 +113989 6060 Few of the increasingly far-fetched events that first-time writer-director Neil Burger follows up with 2 +113990 6060 of the increasingly far-fetched events that first-time writer-director Neil Burger follows up with 1 +113991 6060 the increasingly far-fetched events that first-time writer-director Neil Burger follows up with 1 +113992 6060 the increasingly far-fetched events 1 +113993 6060 increasingly far-fetched events 1 +113994 6060 increasingly far-fetched 1 +113995 6060 that first-time writer-director Neil Burger follows up with 2 +113996 6060 first-time writer-director Neil Burger follows up with 2 +113997 6060 first-time writer-director Neil Burger 2 +113998 6060 writer-director Neil Burger 2 +113999 6060 Neil Burger 2 +114000 6060 follows up with 2 +114001 6060 follows up 2 +114002 6060 are terribly convincing , which is a pity , considering Barry 's terrific performance . 2 +114003 6060 are terribly convincing , which is a pity , considering Barry 's terrific performance 2 +114004 6060 are terribly convincing , which is a pity , 2 +114005 6060 are terribly convincing 3 +114006 6060 terribly convincing 3 +114007 6060 , which is a pity , 2 +114008 6060 which is a pity , 2 +114009 6060 which is a pity 1 +114010 6060 is a pity 1 +114011 6060 considering Barry 's terrific performance 3 +114012 6060 Barry 's terrific performance 4 +114013 6061 As it turns out , you can go home again . 3 +114014 6061 , you can go home again . 2 +114015 6061 you can go home again . 2 +114016 6061 can go home again . 2 +114017 6061 can go home again 3 +114018 6062 How I Killed My Father is one of those art house films that makes you feel like you 're watching an iceberg melt -- only it never melts . 2 +114019 6062 How I Killed My Father is one of those art house films that makes you feel like you 're watching an iceberg melt -- only 0 +114020 6062 I Killed My Father is one of those art house films that makes you feel like you 're watching an iceberg melt -- only 0 +114021 6062 Killed My Father is one of those art house films that makes you feel like you 're watching an iceberg melt -- only 1 +114022 6062 My Father is one of those art house films that makes you feel like you 're watching an iceberg melt -- only 2 +114023 6062 is one of those art house films that makes you feel like you 're watching an iceberg melt -- only 1 +114024 6062 one of those art house films that makes you feel like you 're watching an iceberg melt -- only 1 +114025 6062 one of those art house films 2 +114026 6062 of those art house films 2 +114027 6062 those art house films 2 +114028 6062 art house films 2 +114029 6062 house films 2 +114030 6062 that makes you feel like you 're watching an iceberg melt -- only 1 +114031 6062 makes you feel like you 're watching an iceberg melt -- only 0 +114032 6062 you feel like you 're watching an iceberg melt -- only 0 +114033 6062 feel like you 're watching an iceberg melt -- only 0 +114034 6062 like you 're watching an iceberg melt -- only 0 +114035 6062 you 're watching an iceberg melt -- only 1 +114036 6062 're watching an iceberg melt -- only 1 +114037 6062 watching an iceberg melt -- only 0 +114038 6062 an iceberg melt -- only 3 +114039 6062 an iceberg 2 +114040 6062 iceberg 2 +114041 6062 melt -- only 2 +114042 6062 melt -- 2 +114043 6062 melt 2 +114044 6062 it never melts . 2 +114045 6062 never melts . 2 +114046 6062 melts . 2 +114047 6062 melts 2 +114048 6063 She 's not yet an actress , not quite a singer ... 2 +114049 6063 's not yet an actress , not quite a singer ... 1 +114050 6063 's not yet an actress , not quite a singer 2 +114051 6063 's not yet 2 +114052 6063 an actress , not quite a singer 1 +114053 6063 an actress , not quite 2 +114054 6063 an actress , not 2 +114055 6063 an actress , 2 +114056 6063 a singer 2 +114057 6064 Complex , sinuously plotted and , somehow , off-puttingly cold . 1 +114058 6064 Complex , sinuously plotted and , somehow , off-puttingly cold 2 +114059 6064 sinuously plotted and , somehow , off-puttingly cold 2 +114060 6064 sinuously plotted and , somehow , 2 +114061 6064 sinuously plotted and 3 +114062 6064 sinuously plotted 1 +114063 6064 sinuously 2 +114064 6064 , somehow , 2 +114065 6064 somehow , 2 +114066 6064 off-puttingly cold 0 +114067 6064 off-puttingly 1 +114068 6065 While certain cues , like the happy music , suggest that this movie is supposed to warm our hearts , Jeong-Hyang Lee 's film is just as likely to blacken that organ with cold vengefulness . 2 +114069 6065 While certain cues , like the happy music , suggest that this movie is supposed to warm our hearts 2 +114070 6065 certain cues , like the happy music , suggest that this movie is supposed to warm our hearts 2 +114071 6065 certain cues 2 +114072 6065 cues 2 +114073 6065 , like the happy music , suggest that this movie is supposed to warm our hearts 2 +114074 6065 like the happy music , suggest that this movie is supposed to warm our hearts 2 +114075 6065 like the happy music 3 +114076 6065 the happy music 3 +114077 6065 happy music 3 +114078 6065 , suggest that this movie is supposed to warm our hearts 2 +114079 6065 suggest that this movie is supposed to warm our hearts 2 +114080 6065 that this movie is supposed to warm our hearts 2 +114081 6065 this movie is supposed to warm our hearts 2 +114082 6065 is supposed to warm our hearts 2 +114083 6065 supposed to warm our hearts 2 +114084 6065 to warm our hearts 3 +114085 6065 warm our hearts 3 +114086 6065 , Jeong-Hyang Lee 's film is just as likely to blacken that organ with cold vengefulness . 1 +114087 6065 Jeong-Hyang Lee 's film is just as likely to blacken that organ with cold vengefulness . 2 +114088 6065 Jeong-Hyang Lee 's film 2 +114089 6065 Jeong-Hyang Lee 's 2 +114090 6065 Jeong-Hyang 2 +114091 6065 is just as likely to blacken that organ with cold vengefulness . 1 +114092 6065 is just as likely to blacken that organ with cold vengefulness 1 +114093 6065 is just as likely 2 +114094 6065 as likely 2 +114095 6065 to blacken that organ with cold vengefulness 1 +114096 6065 blacken that organ with cold vengefulness 1 +114097 6065 blacken that organ 2 +114098 6065 blacken 2 +114099 6065 that organ 2 +114100 6065 organ 2 +114101 6065 with cold vengefulness 1 +114102 6065 cold vengefulness 1 +114103 6065 vengefulness 2 +114104 6066 Fails in making this character understandable , in getting under her skin , in exploring motivation ... Well before the end , the film grows as dull as its characters , about whose fate it is hard to care . 0 +114105 6066 Fails in making this character understandable , in getting under her skin , in exploring motivation ... Well before the end 1 +114106 6066 Fails in making this character understandable , in getting under her skin , in exploring motivation ... Well 1 +114107 6066 Fails in making this character understandable , in getting under her skin , in exploring motivation ... 1 +114108 6066 in making this character understandable , in getting under her skin , in exploring motivation ... 2 +114109 6066 making this character understandable , in getting under her skin , in exploring motivation ... 3 +114110 6066 making this character understandable , in getting under her skin , in exploring motivation 2 +114111 6066 making this character understandable , in getting under her skin , 2 +114112 6066 making this character understandable , in getting under her skin 2 +114113 6066 making this character understandable , 3 +114114 6066 making this character understandable 2 +114115 6066 this character understandable 2 +114116 6066 understandable 3 +114117 6066 in getting under her skin 2 +114118 6066 getting under her skin 2 +114119 6066 under her skin 2 +114120 6066 her skin 3 +114121 6066 in exploring motivation 2 +114122 6066 exploring motivation 2 +114123 6066 motivation 2 +114124 6066 before the end 2 +114125 6066 , the film grows as dull as its characters , about whose fate it is hard to care . 1 +114126 6066 the film grows as dull as its characters , about whose fate it is hard to care . 0 +114127 6066 grows as dull as its characters , about whose fate it is hard to care . 0 +114128 6066 grows as dull as its characters , about whose fate it is hard to care 0 +114129 6066 as dull as its characters , about whose fate it is hard to care 1 +114130 6066 dull as its characters , about whose fate it is hard to care 1 +114131 6066 as its characters , about whose fate it is hard to care 1 +114132 6066 its characters , about whose fate it is hard to care 1 +114133 6066 about whose fate it is hard to care 1 +114134 6066 about whose fate 2 +114135 6066 whose fate 2 +114136 6066 it is hard to care 2 +114137 6066 is hard to care 1 +114138 6066 hard to care 1 +114139 6067 It has plenty of laughs . 3 +114140 6067 has plenty of laughs . 4 +114141 6067 has plenty of laughs 3 +114142 6067 plenty of laughs 3 +114143 6068 Narc is all menace and atmosphere . 1 +114144 6068 is all menace and atmosphere . 2 +114145 6068 is all menace and atmosphere 2 +114146 6068 all menace and atmosphere 1 +114147 6068 menace and atmosphere 2 +114148 6068 menace and 2 +114149 6069 No laughs . 1 +114150 6069 laughs . 2 +114151 6070 Paul Bettany is cool . 3 +114152 6071 The story is so light and sugary that were it a Macy 's Thanksgiving Day Parade balloon , extra heavy-duty ropes would be needed to keep it from floating away . 2 +114153 6071 The story is so light and sugary that were it a Macy 's Thanksgiving Day Parade balloon 2 +114154 6071 is so light and sugary that were it a Macy 's Thanksgiving Day Parade balloon 2 +114155 6071 so light and sugary that were it a Macy 's Thanksgiving Day Parade balloon 2 +114156 6071 light and sugary that were it a Macy 's Thanksgiving Day Parade balloon 1 +114157 6071 light and sugary 3 +114158 6071 light and 2 +114159 6071 that were it a Macy 's Thanksgiving Day Parade balloon 2 +114160 6071 were it a Macy 's Thanksgiving Day Parade balloon 2 +114161 6071 it a Macy 's Thanksgiving Day Parade balloon 2 +114162 6071 a Macy 's Thanksgiving Day Parade balloon 2 +114163 6071 a Macy 's 2 +114164 6071 Macy 's 2 +114165 6071 Macy 3 +114166 6071 Thanksgiving Day Parade balloon 2 +114167 6071 Thanksgiving 2 +114168 6071 Day Parade balloon 2 +114169 6071 Parade balloon 2 +114170 6071 balloon 2 +114171 6071 , extra heavy-duty ropes would be needed to keep it from floating away . 1 +114172 6071 extra heavy-duty ropes would be needed to keep it from floating away . 2 +114173 6071 extra heavy-duty ropes 2 +114174 6071 heavy-duty ropes 2 +114175 6071 heavy-duty 1 +114176 6071 ropes 2 +114177 6071 would be needed to keep it from floating away . 2 +114178 6071 would be needed to keep it from floating away 2 +114179 6071 be needed to keep it from floating away 2 +114180 6071 needed to keep it from floating away 1 +114181 6071 to keep it from floating away 2 +114182 6071 keep it from floating away 2 +114183 6071 from floating away 2 +114184 6071 floating away 2 +114185 6072 Personal Velocity has a no-frills docu-Dogma plainness , yet Miller lingers on invisible , nearly psychic nuances , leaping into digressions of memory and desire . 2 +114186 6072 Personal Velocity has a no-frills docu-Dogma plainness , yet Miller lingers on invisible , nearly psychic nuances , leaping into digressions of memory and desire 2 +114187 6072 Personal Velocity has a no-frills docu-Dogma plainness , yet 1 +114188 6072 Personal Velocity has a no-frills docu-Dogma plainness , 1 +114189 6072 Personal Velocity has a no-frills docu-Dogma plainness 1 +114190 6072 has a no-frills docu-Dogma plainness 1 +114191 6072 a no-frills docu-Dogma plainness 2 +114192 6072 no-frills docu-Dogma plainness 1 +114193 6072 docu-Dogma plainness 1 +114194 6072 docu-Dogma 2 +114195 6072 plainness 2 +114196 6072 Miller lingers on invisible , nearly psychic nuances , leaping into digressions of memory and desire 2 +114197 6072 lingers on invisible , nearly psychic nuances , leaping into digressions of memory and desire 2 +114198 6072 on invisible , nearly psychic nuances , leaping into digressions of memory and desire 3 +114199 6072 invisible , nearly psychic nuances , leaping into digressions of memory and desire 4 +114200 6072 invisible , nearly psychic nuances , 2 +114201 6072 invisible , nearly psychic nuances 2 +114202 6072 invisible 2 +114203 6072 , nearly psychic nuances 1 +114204 6072 nearly psychic nuances 2 +114205 6072 psychic nuances 2 +114206 6072 psychic 2 +114207 6072 leaping into digressions of memory and desire 2 +114208 6072 into digressions of memory and desire 2 +114209 6072 digressions of memory and desire 2 +114210 6072 of memory and desire 2 +114211 6072 memory and desire 2 +114212 6073 Merry friggin ' Christmas ! 2 +114213 6073 Merry friggin ' 2 +114214 6073 Merry 3 +114215 6073 Christmas ! 2 +114216 6074 The screenplay comes across , rather unintentionally , as Hip-Hop Scooby-Doo . 2 +114217 6074 comes across , rather unintentionally , as Hip-Hop Scooby-Doo . 2 +114218 6074 comes across , rather unintentionally , as Hip-Hop Scooby-Doo 2 +114219 6074 comes across , rather unintentionally , 1 +114220 6074 comes across , rather unintentionally 2 +114221 6074 comes across , 2 +114222 6074 rather unintentionally 2 +114223 6074 as Hip-Hop Scooby-Doo 2 +114224 6074 Hip-Hop Scooby-Doo 2 +114225 6075 Judd 's characters ought to pick up the durable best seller Smart Women , Foolish Choices for advice . 1 +114226 6075 Judd 's characters 2 +114227 6075 Judd 's 2 +114228 6075 ought to pick up the durable best seller Smart Women , Foolish Choices for advice . 2 +114229 6075 ought to pick up the durable best seller Smart Women , Foolish Choices for advice 1 +114230 6075 to pick up the durable best seller Smart Women , Foolish Choices for advice 2 +114231 6075 pick up the durable best seller Smart Women , Foolish Choices for advice 1 +114232 6075 the durable best seller Smart Women , Foolish Choices for advice 2 +114233 6075 the durable best seller Smart Women , 2 +114234 6075 the durable best seller Smart Women 2 +114235 6075 durable best seller Smart Women 2 +114236 6075 durable best 2 +114237 6075 seller Smart Women 2 +114238 6075 Smart Women 2 +114239 6075 Foolish Choices for advice 1 +114240 6075 Foolish Choices 1 +114241 6075 for advice 2 +114242 6076 The Saigon of 1952 is an uneasy mix of sensual delights and simmering violence , and The Quiet American brings us right into the center of that world . 3 +114243 6076 The Saigon of 1952 is an uneasy mix of sensual delights and simmering violence , and The Quiet American brings us right into the center of that world 3 +114244 6076 The Saigon of 1952 is an uneasy mix of sensual delights and simmering violence , and 2 +114245 6076 The Saigon of 1952 is an uneasy mix of sensual delights and simmering violence , 2 +114246 6076 The Saigon of 1952 is an uneasy mix of sensual delights and simmering violence 2 +114247 6076 The Saigon of 1952 2 +114248 6076 The Saigon 2 +114249 6076 of 1952 2 +114250 6076 is an uneasy mix of sensual delights and simmering violence 2 +114251 6076 an uneasy mix of sensual delights and simmering violence 3 +114252 6076 of sensual delights and simmering violence 3 +114253 6076 sensual delights and simmering violence 3 +114254 6076 sensual delights and simmering 3 +114255 6076 delights and simmering 4 +114256 6076 delights and 3 +114257 6076 simmering 2 +114258 6076 The Quiet American brings us right into the center of that world 2 +114259 6076 brings us right into the center of that world 3 +114260 6076 us right into the center of that world 3 +114261 6076 right into the center of that world 3 +114262 6076 into the center of that world 2 +114263 6076 the center of that world 2 +114264 6076 of that world 2 +114265 6076 that world 2 +114266 6077 ` Lovely and Amazing , ' unhappily , is neither ... excessively strained and contrived . 2 +114267 6077 ` Lovely and Amazing , ' unhappily , 2 +114268 6077 Lovely and Amazing , ' unhappily , 2 +114269 6077 Lovely and Amazing , ' unhappily 2 +114270 6077 Lovely and Amazing , ' 3 +114271 6077 Lovely and Amazing , 3 +114272 6077 unhappily 1 +114273 6077 is neither ... excessively strained and contrived . 2 +114274 6077 is neither ... excessively strained and contrived 1 +114275 6077 is neither ... excessively strained and 2 +114276 6077 is neither ... excessively strained 1 +114277 6077 is neither ... 2 +114278 6077 excessively strained 1 +114279 6077 excessively 2 +114280 6078 , Skins has its heart in the right place 2 +114281 6078 Skins has its heart in the right place 2 +114282 6078 has its heart in the right place 3 +114283 6078 its heart in the right place 3 +114284 6078 that 's not much to hang a soap opera on 1 +114285 6078 's not much to hang a soap opera on 1 +114286 6078 much to hang a soap opera on 2 +114287 6078 to hang a soap opera on 1 +114288 6078 hang a soap opera on 1 +114289 6078 hang a soap opera 2 +114290 6078 hang 2 +114291 6078 a soap opera 2 +114292 6079 The script is too mainstream and the psychology too textbook to intrigue . 1 +114293 6079 The script is too mainstream and the psychology too textbook to intrigue 1 +114294 6079 The script is too mainstream and 2 +114295 6079 The script is too mainstream 2 +114296 6079 is too mainstream 1 +114297 6079 too mainstream 1 +114298 6079 the psychology too textbook to intrigue 1 +114299 6079 the psychology 2 +114300 6079 too textbook to intrigue 1 +114301 6079 textbook to intrigue 2 +114302 6079 to intrigue 2 +114303 6080 Jarecki and Gibney do find enough material to bring Kissinger 's record into question and explain how the diplomat 's tweaked version of statecraft may have cost thousands and possibly millions of lives . 2 +114304 6080 Jarecki and Gibney 2 +114305 6080 Jarecki and 2 +114306 6080 Jarecki 2 +114307 6080 Gibney 2 +114308 6080 do find enough material to bring Kissinger 's record into question and explain how the diplomat 's tweaked version of statecraft may have cost thousands and possibly millions of lives . 2 +114309 6080 do find enough material to bring Kissinger 's record into question and explain how the diplomat 's tweaked version of statecraft may have cost thousands and possibly millions of lives 2 +114310 6080 find enough material to bring Kissinger 's record into question and explain how the diplomat 's tweaked version of statecraft may have cost thousands and possibly millions of lives 2 +114311 6080 find enough material 2 +114312 6080 enough material 2 +114313 6080 to bring Kissinger 's record into question and explain how the diplomat 's tweaked version of statecraft may have cost thousands and possibly millions of lives 2 +114314 6080 bring Kissinger 's record into question and explain how the diplomat 's tweaked version of statecraft may have cost thousands and possibly millions of lives 3 +114315 6080 bring Kissinger 's record into question and 2 +114316 6080 bring Kissinger 's record into question 2 +114317 6080 bring Kissinger 's record 2 +114318 6080 Kissinger 's record 2 +114319 6080 Kissinger 's 2 +114320 6080 into question 2 +114321 6080 explain how the diplomat 's tweaked version of statecraft may have cost thousands and possibly millions of lives 3 +114322 6080 how the diplomat 's tweaked version of statecraft may have cost thousands and possibly millions of lives 0 +114323 6080 the diplomat 's tweaked version of statecraft may have cost thousands and possibly millions of lives 1 +114324 6080 the diplomat 's tweaked version of statecraft 2 +114325 6080 the diplomat 's tweaked version 2 +114326 6080 the diplomat 's 2 +114327 6080 diplomat 's 2 +114328 6080 diplomat 2 +114329 6080 tweaked version 2 +114330 6080 tweaked 2 +114331 6080 of statecraft 2 +114332 6080 statecraft 2 +114333 6080 may have cost thousands and possibly millions of lives 2 +114334 6080 have cost thousands and possibly millions of lives 1 +114335 6080 cost thousands and possibly millions of lives 2 +114336 6080 cost thousands and possibly 2 +114337 6080 cost thousands and 2 +114338 6080 cost thousands 2 +114339 6080 millions of lives 2 +114340 6080 of lives 3 +114341 6081 A quirky comedy set in Newfoundland that cleverly captures the dry wit that 's so prevalent on The Rock . 3 +114342 6081 A quirky comedy 3 +114343 6081 set in Newfoundland that cleverly captures the dry wit that 's so prevalent on The Rock . 3 +114344 6081 set in Newfoundland that cleverly captures the dry wit that 's so prevalent on The Rock 3 +114345 6081 in Newfoundland that cleverly captures the dry wit that 's so prevalent on The Rock 2 +114346 6081 Newfoundland that cleverly captures the dry wit that 's so prevalent on The Rock 2 +114347 6081 that cleverly captures the dry wit that 's so prevalent on The Rock 4 +114348 6081 cleverly captures the dry wit that 's so prevalent on The Rock 4 +114349 6081 captures the dry wit that 's so prevalent on The Rock 3 +114350 6081 the dry wit that 's so prevalent on The Rock 2 +114351 6081 the dry wit 2 +114352 6081 that 's so prevalent on The Rock 2 +114353 6081 's so prevalent on The Rock 2 +114354 6081 so prevalent on The Rock 2 +114355 6081 prevalent on The Rock 2 +114356 6081 prevalent 2 +114357 6081 on The Rock 2 +114358 6082 What bubbles up out of John C. Walsh 's Pipe Dream is the distinct and very welcome sense of watching intelligent people making a movie they might actually want to watch . 3 +114359 6082 What bubbles up out of John C. Walsh 's Pipe Dream is the distinct and very welcome sense of watching intelligent people making a movie 3 +114360 6082 bubbles up out of John C. Walsh 's Pipe Dream is the distinct and very welcome sense of watching intelligent people making a movie 4 +114361 6082 bubbles up out of John C. Walsh 's Pipe Dream 2 +114362 6082 up out of John C. Walsh 's Pipe Dream 1 +114363 6082 up out 2 +114364 6082 of John C. Walsh 's Pipe Dream 1 +114365 6082 John C. Walsh 's Pipe Dream 2 +114366 6082 John C. Walsh 's 2 +114367 6082 C. Walsh 's 2 +114368 6082 C. 2 +114369 6082 Walsh 's 2 +114370 6082 is the distinct and very welcome sense of watching intelligent people making a movie 3 +114371 6082 the distinct and very welcome sense of watching intelligent people making a movie 3 +114372 6082 the distinct and very welcome sense 3 +114373 6082 distinct and very welcome sense 3 +114374 6082 distinct and very welcome 4 +114375 6082 distinct and 2 +114376 6082 very welcome 3 +114377 6082 of watching intelligent people making a movie 3 +114378 6082 watching intelligent people making a movie 3 +114379 6082 watching intelligent people 2 +114380 6082 intelligent people 3 +114381 6082 they might actually want to watch . 2 +114382 6082 might actually want to watch . 3 +114383 6082 might actually want to watch 3 +114384 6082 might actually 2 +114385 6082 want to watch 3 +114386 6083 You do n't want to call the cops . 2 +114387 6083 do n't want to call the cops . 2 +114388 6083 do n't want to call the cops 2 +114389 6083 want to call the cops 2 +114390 6083 to call the cops 2 +114391 6083 call the cops 1 +114392 6083 the cops 2 +114393 6084 A canny , derivative , wildly gruesome portrait of a London sociopath who 's the scariest of sadists . 2 +114394 6084 A canny , derivative , wildly gruesome portrait of a London 3 +114395 6084 A canny , derivative , wildly gruesome portrait 3 +114396 6084 canny , derivative , wildly gruesome portrait 2 +114397 6084 canny , derivative , wildly gruesome 3 +114398 6084 , derivative , wildly gruesome 2 +114399 6084 derivative , wildly gruesome 3 +114400 6084 , wildly gruesome 1 +114401 6084 wildly gruesome 1 +114402 6084 gruesome 1 +114403 6084 of a London 2 +114404 6084 a London 2 +114405 6084 sociopath who 's the scariest of sadists . 1 +114406 6084 sociopath who 's the scariest of sadists 3 +114407 6084 sociopath 1 +114408 6084 who 's the scariest of sadists 3 +114409 6084 's the scariest of sadists 2 +114410 6084 the scariest of sadists 2 +114411 6084 the scariest 2 +114412 6084 scariest 2 +114413 6084 of sadists 2 +114414 6084 sadists 1 +114415 6085 A genuinely moving and wisely unsentimental drama . 4 +114416 6085 A genuinely moving and wisely unsentimental drama 3 +114417 6085 genuinely moving and wisely unsentimental drama 3 +114418 6085 genuinely moving and wisely unsentimental 4 +114419 6085 genuinely moving and 3 +114420 6085 genuinely moving 3 +114421 6085 wisely unsentimental 2 +114422 6085 wisely 3 +114423 6086 You 'd think by now America would have had enough of plucky British eccentrics with hearts of gold . 2 +114424 6086 You 'd think by now 2 +114425 6086 'd think by now 2 +114426 6086 think by now 2 +114427 6086 America would have had enough of plucky British eccentrics with hearts of gold . 2 +114428 6086 would have had enough of plucky British eccentrics with hearts of gold . 2 +114429 6086 would have had enough of plucky British eccentrics with hearts of gold 2 +114430 6086 have had enough of plucky British eccentrics with hearts of gold 1 +114431 6086 had enough of plucky British eccentrics with hearts of gold 2 +114432 6086 had enough of plucky British eccentrics 2 +114433 6086 enough of plucky British eccentrics 1 +114434 6086 of plucky British eccentrics 2 +114435 6086 plucky British eccentrics 2 +114436 6086 plucky 2 +114437 6086 British eccentrics 2 +114438 6086 with hearts of gold 4 +114439 6086 hearts of gold 4 +114440 6086 of gold 3 +114441 6087 After Collateral Damage 2 +114442 6087 aggrieved 2 +114443 6087 has been unturned 2 +114444 6087 been unturned 2 +114445 6087 unturned 1 +114446 6088 The truth about Charlie is that it 's a brazenly misguided project . 1 +114447 6088 The truth about Charlie 2 +114448 6088 about Charlie 2 +114449 6088 is that it 's a brazenly misguided project . 0 +114450 6088 is that it 's a brazenly misguided project 1 +114451 6088 that it 's a brazenly misguided project 0 +114452 6088 it 's a brazenly misguided project 1 +114453 6088 's a brazenly misguided project 1 +114454 6088 a brazenly misguided project 1 +114455 6088 brazenly misguided project 0 +114456 6088 brazenly 2 +114457 6088 misguided project 1 +114458 6089 Some of the most inventive silliness you are likely to witness in a movie theatre for some time . 3 +114459 6089 Some of the most inventive 4 +114460 6089 of the most inventive 4 +114461 6089 the most inventive 3 +114462 6089 most inventive 3 +114463 6089 silliness you are likely to witness in a movie theatre for some time . 2 +114464 6089 silliness you are likely to witness in a movie theatre for some time 3 +114465 6089 you are likely to witness in a movie theatre for some time 3 +114466 6089 are likely to witness in a movie theatre for some time 2 +114467 6089 likely to witness in a movie theatre for some time 3 +114468 6089 to witness in a movie theatre for some time 2 +114469 6089 witness in a movie theatre for some time 2 +114470 6089 in a movie theatre for some time 2 +114471 6089 a movie theatre for some time 2 +114472 6089 a movie theatre 3 +114473 6089 movie theatre 2 +114474 6090 It 's Tommy 's job to clean the peep booths surrounding her , and after viewing this one , you 'll feel like mopping up , too . 1 +114475 6090 It 's Tommy 's job to clean the peep booths surrounding her , and after viewing this one , you 'll feel like mopping up , too 1 +114476 6090 It 's Tommy 's job to clean the peep booths surrounding her , and 2 +114477 6090 It 's Tommy 's job to clean the peep booths surrounding her , 2 +114478 6090 It 's Tommy 's job to clean the peep booths surrounding her 2 +114479 6090 's Tommy 's job to clean the peep booths surrounding her 2 +114480 6090 Tommy 's job to clean the peep booths surrounding her 3 +114481 6090 Tommy 's 2 +114482 6090 Tommy 2 +114483 6090 job to clean the peep booths surrounding her 2 +114484 6090 to clean the peep booths surrounding her 2 +114485 6090 clean the peep booths surrounding her 2 +114486 6090 clean the peep booths 2 +114487 6090 the peep booths 2 +114488 6090 peep booths 2 +114489 6090 peep 2 +114490 6090 booths 2 +114491 6090 surrounding her 2 +114492 6090 after viewing this one , you 'll feel like mopping up , too 2 +114493 6090 after viewing this one 2 +114494 6090 viewing this one 2 +114495 6090 , you 'll feel like mopping up , too 2 +114496 6090 you 'll feel like mopping up , too 2 +114497 6090 'll feel like mopping up , too 2 +114498 6090 feel like mopping up , too 2 +114499 6090 feel like mopping up , 1 +114500 6090 feel like mopping up 1 +114501 6090 like mopping up 2 +114502 6090 mopping up 3 +114503 6090 mopping 2 +114504 6091 The story ultimately takes hold and grips hard . 4 +114505 6091 ultimately takes hold and grips hard . 4 +114506 6091 takes hold and grips hard . 3 +114507 6091 takes hold and grips hard 3 +114508 6091 takes hold and grips 3 +114509 6091 hold and grips 2 +114510 6091 hold and 2 +114511 6092 Despite the predictable parent vs. child coming-of-age theme , first-class , natural acting and a look at `` the real Americans '' make this a charmer . 4 +114512 6092 Despite the predictable parent vs. child coming-of-age theme 2 +114513 6092 the predictable parent vs. child coming-of-age theme 1 +114514 6092 the predictable parent 1 +114515 6092 predictable parent 2 +114516 6092 vs. child coming-of-age theme 2 +114517 6092 child coming-of-age theme 2 +114518 6092 coming-of-age theme 3 +114519 6092 , first-class , natural acting and a look at `` the real Americans '' make this a charmer . 4 +114520 6092 first-class , natural acting and a look at `` the real Americans '' make this a charmer . 4 +114521 6092 first-class , natural acting and a look at `` the real Americans '' 3 +114522 6092 first-class , natural acting and 4 +114523 6092 first-class , natural acting 4 +114524 6092 , natural acting 4 +114525 6092 natural acting 2 +114526 6092 a look at `` the real Americans '' 2 +114527 6092 at `` the real Americans '' 2 +114528 6092 at `` the real Americans 2 +114529 6092 at `` 2 +114530 6092 the real Americans 2 +114531 6092 real Americans 3 +114532 6092 make this a charmer . 4 +114533 6092 make this a charmer 3 +114534 6092 this a charmer 3 +114535 6093 Another wholly unnecessary addition to the growing , moldering pile of , well , extreme stunt pictures . 0 +114536 6093 Another wholly unnecessary addition to the growing , moldering pile of , well , extreme stunt 1 +114537 6093 Another wholly unnecessary addition 1 +114538 6093 wholly unnecessary addition 1 +114539 6093 wholly unnecessary 1 +114540 6093 to the growing , moldering pile of , well , extreme stunt 1 +114541 6093 the growing , moldering pile of , well , extreme stunt 2 +114542 6093 the growing , moldering pile 1 +114543 6093 growing , moldering pile 1 +114544 6093 , moldering pile 2 +114545 6093 moldering pile 1 +114546 6093 moldering 1 +114547 6093 of , well , extreme stunt 2 +114548 6093 of , well , 2 +114549 6093 , well , 3 +114550 6093 well , 2 +114551 6093 extreme stunt 2 +114552 6093 pictures . 2 +114553 6094 Bound to appeal to women looking for a howlingly trashy time . 3 +114554 6094 Bound to appeal to women looking for a howlingly trashy time 3 +114555 6094 to appeal to women looking for a howlingly trashy time 3 +114556 6094 appeal to women looking for a howlingly trashy time 3 +114557 6094 to women looking for a howlingly trashy time 2 +114558 6094 women looking for a howlingly trashy time 2 +114559 6094 looking for a howlingly trashy time 2 +114560 6094 for a howlingly trashy time 2 +114561 6094 a howlingly trashy time 2 +114562 6094 howlingly trashy time 3 +114563 6094 howlingly 2 +114564 6094 trashy time 1 +114565 6095 Boisterous , heartfelt comedy . 4 +114566 6095 Boisterous , heartfelt comedy 3 +114567 6095 Boisterous , 2 +114568 6095 heartfelt comedy 4 +114569 6096 The redeeming feature of Chan 's films has always been the action , but the stunts in The Tuxedo seem tired and , what 's worse , routine . 1 +114570 6096 The redeeming feature of Chan 's films has always been the action , but the stunts in The Tuxedo seem tired and , what 's worse , routine 1 +114571 6096 The redeeming feature of Chan 's films has always been the action , but 2 +114572 6096 The redeeming feature of Chan 's films has always been the action , 3 +114573 6096 The redeeming feature of Chan 's films has always been the action 3 +114574 6096 The redeeming feature of Chan 's films 3 +114575 6096 The redeeming feature 3 +114576 6096 redeeming feature 3 +114577 6096 of Chan 's films 2 +114578 6096 Chan 's films 2 +114579 6096 has always been the action 2 +114580 6096 been the action 2 +114581 6096 the stunts in The Tuxedo seem tired and , what 's worse , routine 1 +114582 6096 the stunts in The Tuxedo 2 +114583 6096 the stunts 2 +114584 6096 in The Tuxedo 2 +114585 6096 seem tired and , what 's worse , routine 1 +114586 6096 seem tired and , 1 +114587 6096 seem tired and 2 +114588 6096 seem tired 1 +114589 6096 what 's worse , routine 1 +114590 6096 's worse , routine 0 +114591 6096 worse , routine 1 +114592 6096 worse , 1 +114593 6097 It plays like a big-budget , after-school special with a generous cast , who at times lift the material from its well-meaning clunkiness . 2 +114594 6097 plays like a big-budget , after-school special with a generous cast , who at times lift the material from its well-meaning clunkiness . 2 +114595 6097 plays like a big-budget , after-school special with a generous cast , who at times lift the material from its well-meaning clunkiness 2 +114596 6097 like a big-budget , after-school special with a generous cast , who at times lift the material from its well-meaning clunkiness 1 +114597 6097 a big-budget , after-school special with a generous cast , who at times lift the material from its well-meaning clunkiness 2 +114598 6097 a big-budget , after-school special 1 +114599 6097 big-budget , after-school special 1 +114600 6097 big-budget 2 +114601 6097 , after-school special 1 +114602 6097 with a generous cast , who at times lift the material from its well-meaning clunkiness 3 +114603 6097 a generous cast , who at times lift the material from its well-meaning clunkiness 2 +114604 6097 a generous cast , 3 +114605 6097 a generous cast 3 +114606 6097 generous cast 3 +114607 6097 who at times lift the material from its well-meaning clunkiness 2 +114608 6097 at times lift the material from its well-meaning clunkiness 2 +114609 6097 lift the material from its well-meaning clunkiness 1 +114610 6097 lift the material 2 +114611 6097 from its well-meaning clunkiness 1 +114612 6097 its well-meaning clunkiness 2 +114613 6097 well-meaning clunkiness 1 +114614 6097 clunkiness 1 +114615 6098 The vistas are sweeping and the acting is far from painful . 2 +114616 6098 The vistas are sweeping and the acting is far from painful 3 +114617 6098 The vistas are sweeping and 2 +114618 6098 The vistas are sweeping 3 +114619 6098 The vistas 2 +114620 6098 are sweeping 3 +114621 6098 the acting is far from painful 3 +114622 6098 is far from painful 2 +114623 6098 far from painful 2 +114624 6098 from painful 2 +114625 6099 A gratingly unfunny groaner littered with zero-dimensional , unlikable characters and hackneyed , threadbare comic setups . 0 +114626 6099 A gratingly unfunny groaner 1 +114627 6099 gratingly unfunny groaner 0 +114628 6099 gratingly unfunny 1 +114629 6099 groaner 1 +114630 6099 littered with zero-dimensional , unlikable characters and hackneyed , threadbare comic setups . 0 +114631 6099 littered with zero-dimensional , unlikable characters and hackneyed , threadbare comic setups 0 +114632 6099 with zero-dimensional , unlikable characters and hackneyed , threadbare comic setups 0 +114633 6099 zero-dimensional , unlikable characters and hackneyed , threadbare comic setups 0 +114634 6099 zero-dimensional , unlikable characters and 0 +114635 6099 zero-dimensional , unlikable characters 0 +114636 6099 zero-dimensional 1 +114637 6099 , unlikable characters 1 +114638 6099 unlikable characters 1 +114639 6099 hackneyed , threadbare comic setups 0 +114640 6099 , threadbare comic setups 2 +114641 6099 threadbare comic setups 1 +114642 6099 comic setups 2 +114643 6100 It 's hard to imagine another director ever making his wife look so bad in a major movie . 0 +114644 6100 's hard to imagine another director ever making his wife look so bad in a major movie . 1 +114645 6100 's hard to imagine another director ever making his wife look so bad in a major movie 0 +114646 6100 hard to imagine another director ever making his wife look so bad in a major movie 0 +114647 6100 to imagine another director ever making his wife look so bad in a major movie 0 +114648 6100 imagine another director ever making his wife look so bad in a major movie 0 +114649 6100 another director ever making his wife look so bad in a major movie 1 +114650 6100 director ever making his wife look so bad in a major movie 0 +114651 6100 ever making his wife look so bad in a major movie 1 +114652 6100 making his wife look so bad in a major movie 0 +114653 6100 his wife look so bad in a major movie 1 +114654 6100 look so bad in a major movie 0 +114655 6100 so bad in a major movie 0 +114656 6100 bad in a major movie 0 +114657 6100 in a major movie 2 +114658 6100 a major movie 3 +114659 6100 major movie 3 +114660 6101 Nair does n't use -LRB- Monsoon Wedding -RRB- to lament the loss of culture . 2 +114661 6101 does n't use -LRB- Monsoon Wedding -RRB- to lament the loss of culture . 1 +114662 6101 does n't use -LRB- Monsoon Wedding -RRB- to lament the loss of culture 2 +114663 6101 use -LRB- Monsoon Wedding -RRB- to lament the loss of culture 2 +114664 6101 -LRB- Monsoon Wedding -RRB- to lament the loss of culture 2 +114665 6101 Monsoon Wedding -RRB- to lament the loss of culture 1 +114666 6101 -RRB- to lament the loss of culture 2 +114667 6101 to lament the loss of culture 1 +114668 6101 lament the loss of culture 1 +114669 6101 lament 2 +114670 6101 the loss of culture 2 +114671 6101 of culture 2 +114672 6102 Much of it comes from the brave , uninhibited performances by its lead actors . 4 +114673 6102 comes from the brave , uninhibited performances by its lead actors . 4 +114674 6102 comes from the brave , uninhibited performances by its lead actors 4 +114675 6102 comes from the brave , uninhibited performances 3 +114676 6102 from the brave , uninhibited performances 3 +114677 6102 the brave , uninhibited performances 3 +114678 6102 brave , uninhibited performances 4 +114679 6102 brave , uninhibited 3 +114680 6102 , uninhibited 3 +114681 6102 uninhibited 3 +114682 6102 by its lead actors 2 +114683 6102 its lead actors 2 +114684 6103 But even then , I 'd recommend waiting for DVD and just skipping straight to her scenes . 1 +114685 6103 even then , I 'd recommend waiting for DVD and just skipping straight to her scenes . 1 +114686 6103 even then 2 +114687 6103 , I 'd recommend waiting for DVD and just skipping straight to her scenes . 1 +114688 6103 I 'd recommend waiting for DVD and just skipping straight to her scenes . 1 +114689 6103 'd recommend waiting for DVD and just skipping straight to her scenes . 2 +114690 6103 'd recommend waiting for DVD and just skipping straight to her scenes 2 +114691 6103 recommend waiting for DVD and just skipping straight to her scenes 1 +114692 6103 waiting for DVD and just skipping straight to her scenes 1 +114693 6103 waiting for DVD and just 2 +114694 6103 waiting for DVD and 2 +114695 6103 waiting for DVD 2 +114696 6103 for DVD 2 +114697 6103 skipping straight to her scenes 2 +114698 6103 skipping straight 2 +114699 6103 skipping 2 +114700 6103 to her scenes 2 +114701 6103 her scenes 2 +114702 6104 There are some movies that hit you from the first scene and you know it 's going to be a trip . 3 +114703 6104 There are some movies that hit you from the first scene and you know it 's going to be a trip 3 +114704 6104 There are some movies that hit you from the first scene and 2 +114705 6104 There are some movies that hit you from the first scene 3 +114706 6104 are some movies that hit you from the first scene 3 +114707 6104 some movies that hit you from the first scene 3 +114708 6104 that hit you from the first scene 2 +114709 6104 hit you from the first scene 3 +114710 6104 hit you 2 +114711 6104 from the first scene 2 +114712 6104 the first scene 2 +114713 6104 first scene 3 +114714 6104 you know it 's going to be a trip 3 +114715 6104 know it 's going to be a trip 2 +114716 6104 it 's going to be a trip 3 +114717 6104 's going to be a trip 2 +114718 6104 going to be a trip 2 +114719 6104 to be a trip 2 +114720 6104 be a trip 2 +114721 6105 He 's the scariest guy you 'll see all summer . 3 +114722 6105 's the scariest guy you 'll see all summer . 2 +114723 6105 's the scariest guy you 'll see all summer 2 +114724 6105 the scariest guy you 'll see all summer 3 +114725 6105 the scariest guy 1 +114726 6105 scariest guy 2 +114727 6105 you 'll see all summer 2 +114728 6105 'll see all summer 2 +114729 6105 see all summer 3 +114730 6105 all summer 2 +114731 6106 A movie that falls victim to frazzled wackiness and frayed satire . 2 +114732 6106 movie that falls victim to frazzled wackiness and frayed satire . 2 +114733 6106 movie that falls victim to frazzled wackiness and frayed satire 1 +114734 6106 that falls victim to frazzled wackiness and frayed satire 1 +114735 6106 falls victim to frazzled wackiness and frayed satire 1 +114736 6106 to frazzled wackiness and frayed satire 2 +114737 6106 frazzled wackiness and frayed satire 1 +114738 6106 frazzled wackiness and 1 +114739 6106 frazzled wackiness 2 +114740 6106 frazzled 2 +114741 6106 wackiness 3 +114742 6106 frayed satire 1 +114743 6106 frayed 2 +114744 6107 This is the kind of subject matter that could so easily have been fumbled by a lesser filmmaker , but Ayres makes the right choices at every turn . 3 +114745 6107 This is the kind of subject matter that could so easily have been fumbled by a lesser filmmaker , but Ayres makes the right choices at every turn 3 +114746 6107 This is the kind of subject matter that could so easily have been fumbled by a lesser filmmaker , but 3 +114747 6107 This is the kind of subject matter that could so easily have been fumbled by a lesser filmmaker , 3 +114748 6107 This is the kind of subject matter that could so easily have been fumbled by a lesser filmmaker 3 +114749 6107 is the kind of subject matter that could so easily have been fumbled by a lesser filmmaker 3 +114750 6107 the kind of subject matter that could so easily have been fumbled by a lesser filmmaker 2 +114751 6107 the kind of subject matter 2 +114752 6107 of subject matter 2 +114753 6107 that could so easily have been fumbled by a lesser filmmaker 3 +114754 6107 could so easily have been fumbled by a lesser filmmaker 3 +114755 6107 could so easily 2 +114756 6107 have been fumbled by a lesser filmmaker 2 +114757 6107 been fumbled by a lesser filmmaker 1 +114758 6107 fumbled by a lesser filmmaker 2 +114759 6107 fumbled 1 +114760 6107 by a lesser filmmaker 2 +114761 6107 a lesser filmmaker 2 +114762 6107 lesser filmmaker 2 +114763 6107 Ayres makes the right choices at every turn 4 +114764 6107 Ayres 2 +114765 6107 makes the right choices at every turn 3 +114766 6107 the right choices at every turn 3 +114767 6107 the right choices 3 +114768 6107 right choices 3 +114769 6108 This is Christmas Future for a lot of baby boomers . 3 +114770 6108 is Christmas Future for a lot of baby boomers . 2 +114771 6108 is Christmas Future for a lot of baby boomers 2 +114772 6108 Christmas Future for a lot of baby boomers 2 +114773 6108 Christmas Future 2 +114774 6108 for a lot of baby boomers 2 +114775 6108 a lot of baby boomers 2 +114776 6108 of baby boomers 2 +114777 6108 baby boomers 2 +114778 6108 boomers 2 +114779 6109 ... most viewers will wish there had been more of the `` Queen '' and less of the `` Damned . '' 1 +114780 6109 most viewers will wish there had been more of the `` Queen '' and less of the `` Damned . '' 1 +114781 6109 viewers will wish there had been more of the `` Queen '' and less of the `` Damned . '' 1 +114782 6109 will wish there had been more of the `` Queen '' and less of the `` Damned . '' 1 +114783 6109 will wish there had been more of the `` Queen '' and less of the `` Damned . 1 +114784 6109 will wish there had been more of the `` Queen '' and less of the `` Damned 1 +114785 6109 wish there had been more of the `` Queen '' and less of the `` Damned 1 +114786 6109 there had been more of the `` Queen '' and less of the `` Damned 2 +114787 6109 had been more of the `` Queen '' and less of the `` Damned 2 +114788 6109 been more of the `` Queen '' and less of the `` Damned 2 +114789 6109 more of the `` Queen '' and less of the `` Damned 1 +114790 6109 of the `` Queen '' and less of the `` Damned 2 +114791 6109 the `` Queen '' and less of the `` Damned 1 +114792 6109 the `` Queen '' and 2 +114793 6109 the `` Queen '' 2 +114794 6109 `` Queen '' 2 +114795 6109 Queen '' 2 +114796 6109 less of the `` Damned 2 +114797 6109 of the `` Damned 2 +114798 6109 the `` Damned 2 +114799 6109 `` Damned 2 +114800 6110 Not once does it come close to being exciting . 1 +114801 6110 Not once 2 +114802 6110 does it come close to being exciting . 2 +114803 6110 does it come close to being exciting 2 +114804 6110 come close to being exciting 2 +114805 6110 close to being exciting 3 +114806 6110 to being exciting 3 +114807 6110 being exciting 3 +114808 6111 If you go into the theater expecting a scary , action-packed chiller , you might soon be looking for a sign . 1 +114809 6111 If you go into the theater expecting a scary , action-packed chiller 3 +114810 6111 you go into the theater expecting a scary , action-packed chiller 3 +114811 6111 go into the theater expecting a scary , action-packed chiller 2 +114812 6111 into the theater expecting a scary , action-packed chiller 2 +114813 6111 the theater expecting a scary , action-packed chiller 2 +114814 6111 expecting a scary , action-packed chiller 2 +114815 6111 a scary , action-packed chiller 3 +114816 6111 scary , action-packed chiller 3 +114817 6111 , action-packed chiller 3 +114818 6111 action-packed chiller 3 +114819 6111 , you might soon be looking for a sign . 1 +114820 6111 you might soon be looking for a sign . 2 +114821 6111 might soon be looking for a sign . 2 +114822 6111 might soon be looking for a sign 2 +114823 6111 might soon 2 +114824 6111 be looking for a sign 2 +114825 6111 looking for a sign 2 +114826 6111 for a sign 2 +114827 6112 Should have gone straight to video . 0 +114828 6112 have gone straight to video . 1 +114829 6112 have gone straight to video 2 +114830 6112 gone straight to video 1 +114831 6113 classic cinema served up with heart and humor 4 +114832 6113 classic cinema 3 +114833 6113 served up with heart and humor 4 +114834 6113 served up 2 +114835 6113 with heart and humor 3 +114836 6113 heart and humor 3 +114837 6114 What 's missing is what we call the ` wow ' factor . 1 +114838 6114 What 's missing 1 +114839 6114 's missing 2 +114840 6114 is what we call the ` wow ' factor . 3 +114841 6114 is what we call the ` wow ' factor 3 +114842 6114 what we call the ` wow ' factor 3 +114843 6114 we call the ` wow ' factor 3 +114844 6114 call the ` wow ' factor 3 +114845 6114 the ` wow ' factor 1 +114846 6114 ` wow ' factor 3 +114847 6114 wow ' factor 3 +114848 6114 ' factor 2 +114849 6115 Perhaps the most annoying thing about Who Is Cletis Tout ? 2 +114850 6115 Perhaps the most annoying thing 1 +114851 6115 the most annoying thing 0 +114852 6115 most annoying thing 2 +114853 6115 most annoying 1 +114854 6115 about Who Is Cletis Tout ? 2 +114855 6116 Not at all clear what it 's trying to say and even if it were -- I doubt it would be all that interesting . 0 +114856 6116 at all clear what it 's trying to say and even if it were -- I doubt it would be all that interesting . 2 +114857 6116 at all clear what it 's trying to say and even if it were -- I doubt it 1 +114858 6116 at all clear 2 +114859 6116 what it 's trying to say and even if it were -- I doubt it 2 +114860 6116 what it 's trying to say and 3 +114861 6116 what it 's trying to say 2 +114862 6116 it 's trying to say 2 +114863 6116 's trying to say 2 +114864 6116 trying to say 2 +114865 6116 even if it were -- I doubt it 2 +114866 6116 if it were -- I doubt it 2 +114867 6116 it were -- I doubt it 2 +114868 6116 were -- I doubt it 2 +114869 6116 were -- 2 +114870 6116 I doubt it 2 +114871 6116 doubt it 1 +114872 6116 would be all that interesting . 2 +114873 6116 would be all that interesting 2 +114874 6116 be all that interesting 2 +114875 6117 Lacks dramatic punch and depth . 1 +114876 6117 Lacks dramatic punch and depth 0 +114877 6117 dramatic punch and depth 3 +114878 6117 punch and depth 3 +114879 6117 punch and 2 +114880 6118 Instead of building to a laugh riot we are left with a handful of disparate funny moments of no real consequence . 1 +114881 6118 Instead of building to a laugh riot 2 +114882 6118 of building to a laugh riot 3 +114883 6118 building to a laugh riot 3 +114884 6118 to a laugh riot 2 +114885 6118 a laugh riot 3 +114886 6118 laugh riot 3 +114887 6118 we are left with a handful of disparate funny moments of no real consequence . 2 +114888 6118 are left with a handful of disparate funny moments of no real consequence . 1 +114889 6118 are left with a handful of disparate funny moments of no real consequence 2 +114890 6118 left with a handful of disparate funny moments of no real consequence 2 +114891 6118 with a handful of disparate funny moments of no real consequence 2 +114892 6118 a handful of disparate funny moments of no real consequence 2 +114893 6118 of disparate funny moments of no real consequence 2 +114894 6118 disparate funny moments of no real consequence 2 +114895 6118 disparate funny moments 3 +114896 6118 of no real consequence 1 +114897 6118 no real consequence 2 +114898 6118 real consequence 2 +114899 6119 The story that emerges has elements of romance , tragedy and even silent-movie comedy . 3 +114900 6119 The story that emerges 2 +114901 6119 that emerges 2 +114902 6119 has elements of romance , tragedy and even silent-movie comedy . 3 +114903 6119 has elements of romance , tragedy and even silent-movie comedy 3 +114904 6119 elements of romance , tragedy and even silent-movie comedy 3 +114905 6119 of romance , tragedy and even silent-movie comedy 2 +114906 6119 romance , tragedy and even silent-movie comedy 3 +114907 6119 romance , tragedy and 2 +114908 6119 romance , tragedy 3 +114909 6119 romance , 2 +114910 6119 even silent-movie comedy 2 +114911 6119 silent-movie comedy 2 +114912 6119 silent-movie 2 +114913 6120 Quitting delivers a sucker-punch , and its impact is all the greater beause director Zhang 's last film , the cuddly Shower , was a non-threatening multi-character piece centered around a public bath house . 2 +114914 6120 Quitting delivers a sucker-punch , and its impact is all the greater beause director Zhang 's last film , the cuddly Shower , was a non-threatening multi-character piece centered around a public bath house 3 +114915 6120 Quitting delivers a sucker-punch , and 2 +114916 6120 Quitting delivers a sucker-punch , 2 +114917 6120 Quitting delivers a sucker-punch 2 +114918 6120 delivers a sucker-punch 2 +114919 6120 a sucker-punch 1 +114920 6120 sucker-punch 2 +114921 6120 its impact is all the greater beause director Zhang 's last film , the cuddly Shower , was a non-threatening multi-character piece centered around a public bath house 3 +114922 6120 is all the greater beause director Zhang 's last film , the cuddly Shower , was a non-threatening multi-character piece centered around a public bath house 3 +114923 6120 the greater beause director Zhang 's last film , the cuddly Shower , was a non-threatening multi-character piece centered around a public bath house 3 +114924 6120 the greater beause director 3 +114925 6120 greater beause director 3 +114926 6120 beause director 2 +114927 6120 beause 2 +114928 6120 Zhang 's last film , the cuddly Shower , was a non-threatening multi-character piece centered around a public bath house 2 +114929 6120 Zhang 's last film , the cuddly Shower , 3 +114930 6120 Zhang 's last film , the cuddly Shower 2 +114931 6120 Zhang 's last film , 2 +114932 6120 Zhang 's last film 1 +114933 6120 last film 2 +114934 6120 the cuddly Shower 3 +114935 6120 cuddly Shower 2 +114936 6120 cuddly 3 +114937 6120 was a non-threatening multi-character piece centered around a public bath house 2 +114938 6120 a non-threatening multi-character piece centered around a public bath house 2 +114939 6120 a non-threatening multi-character piece 3 +114940 6120 non-threatening multi-character piece 2 +114941 6120 non-threatening 2 +114942 6120 multi-character piece 2 +114943 6120 centered around a public bath house 2 +114944 6120 around a public bath house 2 +114945 6120 a public bath house 2 +114946 6120 public bath house 2 +114947 6120 bath house 2 +114948 6121 A movie I loved on first sight and , even more important , love in remembrance . 4 +114949 6121 I loved on first sight and , even more important , love in remembrance . 3 +114950 6121 I loved on first sight and , even more important , 4 +114951 6121 I loved on first sight and , even more important 4 +114952 6121 loved on first sight and , even more important 3 +114953 6121 on first sight and , even more important 2 +114954 6121 first sight and , even more important 2 +114955 6121 first sight and , 2 +114956 6121 first sight and 2 +114957 6121 first sight 2 +114958 6121 even more important 3 +114959 6121 love in remembrance . 3 +114960 6121 love in remembrance 4 +114961 6121 in remembrance 3 +114962 6122 Kids five and up will be delighted with the fast , funny , and even touching story . 4 +114963 6122 Kids five and up 2 +114964 6122 Kids five 2 +114965 6122 and up 2 +114966 6122 will be delighted with the fast , funny , and even touching story . 4 +114967 6122 will be delighted with the fast , funny , and even touching story 4 +114968 6122 be delighted with the fast , funny , and even touching story 4 +114969 6122 delighted with the fast , funny , and even touching story 4 +114970 6122 with the fast , funny , and even touching story 4 +114971 6122 the fast , funny , and even touching story 3 +114972 6122 fast , funny , and even touching story 4 +114973 6122 fast , funny , and even touching 3 +114974 6122 , funny , and even touching 3 +114975 6122 funny , and even touching 4 +114976 6122 , and even touching 3 +114977 6122 and even touching 3 +114978 6122 even touching 2 +114979 6123 What an embarrassment . 0 +114980 6123 an embarrassment . 0 +114981 6123 embarrassment . 0 +114982 6124 Byler is too savvy a filmmaker to let this morph into a typical romantic triangle . 3 +114983 6124 is too savvy a filmmaker to let this morph into a typical romantic triangle . 3 +114984 6124 is too savvy a filmmaker to let this morph into a typical romantic triangle 2 +114985 6124 is too savvy 2 +114986 6124 too savvy 2 +114987 6124 a filmmaker to let this morph into a typical romantic triangle 1 +114988 6124 filmmaker to let this morph into a typical romantic triangle 2 +114989 6124 to let this morph into a typical romantic triangle 1 +114990 6124 let this morph into a typical romantic triangle 1 +114991 6124 let this morph 2 +114992 6124 this morph 2 +114993 6124 into a typical romantic triangle 1 +114994 6124 a typical romantic triangle 2 +114995 6124 typical romantic triangle 2 +114996 6124 romantic triangle 2 +114997 6125 What `` Empire '' lacks in depth it makes up for with its heart . 3 +114998 6125 What `` Empire '' lacks in depth 2 +114999 6125 `` Empire '' lacks in depth 1 +115000 6125 Empire '' lacks in depth 1 +115001 6125 '' lacks in depth 1 +115002 6125 lacks in depth 1 +115003 6125 in depth 2 +115004 6125 it makes up for with its heart . 3 +115005 6125 makes up for with its heart . 3 +115006 6125 makes up for with its heart 3 +115007 6125 for with its heart 4 +115008 6126 Sensitive ensemble performances and good period reconstruction add up to a moving tragedy with some buoyant human moments . 4 +115009 6126 Sensitive ensemble performances and good period reconstruction 3 +115010 6126 Sensitive ensemble performances and 3 +115011 6126 Sensitive ensemble performances 3 +115012 6126 ensemble performances 2 +115013 6126 good period reconstruction 3 +115014 6126 period reconstruction 2 +115015 6126 add up to a moving tragedy with some buoyant human moments . 3 +115016 6126 add up to a moving tragedy with some buoyant human moments 3 +115017 6126 to a moving tragedy with some buoyant human moments 3 +115018 6126 a moving tragedy with some buoyant human moments 3 +115019 6126 a moving tragedy 2 +115020 6126 moving tragedy 3 +115021 6126 with some buoyant human moments 2 +115022 6126 some buoyant human moments 3 +115023 6126 buoyant human moments 2 +115024 6126 human moments 3 +115025 6127 As a remake , it 's a pale imitation . 0 +115026 6127 As a remake 2 +115027 6127 , it 's a pale imitation . 1 +115028 6127 it 's a pale imitation . 1 +115029 6127 's a pale imitation . 1 +115030 6127 's a pale imitation 1 +115031 6127 a pale imitation 1 +115032 6127 pale imitation 1 +115033 6128 Fessenden has nurtured his metaphors at the expense of his narrative , but he does display an original talent . 3 +115034 6128 Fessenden has nurtured his metaphors at the expense of his narrative , but he does display an original talent 3 +115035 6128 Fessenden has nurtured his metaphors at the expense of his narrative , but 2 +115036 6128 Fessenden has nurtured his metaphors at the expense of his narrative , 1 +115037 6128 Fessenden has nurtured his metaphors at the expense of his narrative 1 +115038 6128 has nurtured his metaphors at the expense of his narrative 1 +115039 6128 nurtured his metaphors at the expense of his narrative 2 +115040 6128 nurtured his metaphors 1 +115041 6128 nurtured 2 +115042 6128 his metaphors 2 +115043 6128 at the expense of his narrative 2 +115044 6128 the expense of his narrative 2 +115045 6128 of his narrative 2 +115046 6128 his narrative 2 +115047 6128 he does display an original talent 4 +115048 6128 does display an original talent 3 +115049 6128 display an original talent 3 +115050 6128 an original talent 3 +115051 6129 Frida is n't that much different from many a Hollywood romance . 1 +115052 6129 is n't that much different from many a Hollywood romance . 2 +115053 6129 is n't that much different from many a Hollywood romance 1 +115054 6129 that much different from many a Hollywood romance 2 +115055 6129 that much different 2 +115056 6129 much different 2 +115057 6129 from many a Hollywood romance 2 +115058 6129 many a Hollywood romance 3 +115059 6129 a Hollywood romance 2 +115060 6130 As action-adventure , this space-based homage to Robert Louis Stevenson 's Treasure Island fires on all plasma conduits . 3 +115061 6130 As action-adventure 2 +115062 6130 , this space-based homage to Robert Louis Stevenson 's Treasure Island fires on all plasma conduits . 3 +115063 6130 this space-based homage to Robert Louis Stevenson 's Treasure Island fires on all plasma conduits . 3 +115064 6130 this space-based homage to Robert Louis Stevenson 's Treasure Island 2 +115065 6130 this space-based homage 2 +115066 6130 space-based homage 2 +115067 6130 space-based 2 +115068 6130 to Robert Louis Stevenson 's Treasure Island 2 +115069 6130 Robert Louis Stevenson 's Treasure Island 2 +115070 6130 Robert Louis Stevenson 's 2 +115071 6130 Louis Stevenson 's 2 +115072 6130 Stevenson 's 2 +115073 6130 Treasure Island 2 +115074 6130 fires on all plasma conduits . 2 +115075 6130 fires on all plasma conduits 3 +115076 6130 on all plasma conduits 2 +115077 6130 all plasma conduits 2 +115078 6130 plasma conduits 2 +115079 6130 plasma 2 +115080 6130 conduits 2 +115081 6131 Coppola 's directorial debut is an incredibly layered and stylistic film that , despite a fairly slow paced , almost humdrum approach to character development , still manages at least a decent attempt at meaningful cinema . 3 +115082 6131 Coppola 's directorial debut 2 +115083 6131 is an incredibly layered and stylistic film that , despite a fairly slow paced , almost humdrum approach to character development , still manages at least a decent attempt at meaningful cinema . 4 +115084 6131 is an incredibly layered and stylistic film that , despite a fairly slow paced , almost humdrum approach to character development , still manages at least a decent attempt at meaningful cinema 2 +115085 6131 an incredibly layered and stylistic film that , despite a fairly slow paced , almost humdrum approach to character development , still manages at least a decent attempt at meaningful cinema 3 +115086 6131 an incredibly layered and stylistic film 4 +115087 6131 incredibly layered and stylistic film 3 +115088 6131 incredibly layered and stylistic 3 +115089 6131 layered and stylistic 3 +115090 6131 layered and 2 +115091 6131 that , despite a fairly slow paced , almost humdrum approach to character development , still manages at least a decent attempt at meaningful cinema 2 +115092 6131 , despite a fairly slow paced , almost humdrum approach to character development , still manages at least a decent attempt at meaningful cinema 2 +115093 6131 despite a fairly slow paced , almost humdrum approach to character development , still manages at least a decent attempt at meaningful cinema 3 +115094 6131 despite a fairly slow paced , almost humdrum approach to character development 1 +115095 6131 a fairly slow paced , almost humdrum approach to character development 1 +115096 6131 a fairly slow paced , 1 +115097 6131 a fairly slow paced 1 +115098 6131 fairly slow paced 1 +115099 6131 fairly slow 0 +115100 6131 almost humdrum approach to character development 1 +115101 6131 almost humdrum approach 1 +115102 6131 humdrum approach 2 +115103 6131 to character development 2 +115104 6131 , still manages at least a decent attempt at meaningful cinema 3 +115105 6131 still manages at least a decent attempt at meaningful cinema 3 +115106 6131 manages at least a decent attempt at meaningful cinema 3 +115107 6131 at least a decent attempt at meaningful cinema 3 +115108 6131 at least a decent attempt 2 +115109 6131 a decent attempt 3 +115110 6131 decent attempt 2 +115111 6131 at meaningful cinema 3 +115112 6131 meaningful cinema 4 +115113 6132 Both a grand tour through 300 hundred years of Russian cultural identity and a stunning technical achievement . 4 +115114 6132 Both a grand tour through 300 hundred years of Russian cultural identity and a stunning technical achievement 4 +115115 6132 a grand tour through 300 hundred years of Russian cultural identity and a stunning technical achievement 4 +115116 6132 a grand tour 3 +115117 6132 grand tour 3 +115118 6132 through 300 hundred years of Russian cultural identity and a stunning technical achievement 3 +115119 6132 300 hundred years of Russian cultural identity and a stunning technical achievement 3 +115120 6132 300 hundred years 2 +115121 6132 300 hundred 2 +115122 6132 of Russian cultural identity and a stunning technical achievement 3 +115123 6132 Russian cultural identity and a stunning technical achievement 4 +115124 6132 Russian cultural identity and 2 +115125 6132 Russian cultural identity 2 +115126 6132 cultural identity 3 +115127 6132 a stunning technical achievement 4 +115128 6132 stunning technical achievement 4 +115129 6132 technical achievement 3 +115130 6133 Unintelligible , poorly acted , brain-slappingly bad , Harvard Man is ludicrous enough that it could become a cult classic . 2 +115131 6133 Unintelligible 2 +115132 6133 , poorly acted , brain-slappingly bad , Harvard Man is ludicrous enough that it could become a cult classic . 0 +115133 6133 poorly acted , brain-slappingly bad , Harvard Man is ludicrous enough that it could become a cult classic . 1 +115134 6133 poorly acted , brain-slappingly bad , Harvard Man 1 +115135 6133 poorly acted , brain-slappingly bad , 1 +115136 6133 poorly acted , brain-slappingly bad 1 +115137 6133 poorly acted , 0 +115138 6133 poorly acted 0 +115139 6133 brain-slappingly bad 0 +115140 6133 brain-slappingly 3 +115141 6133 is ludicrous enough that it could become a cult classic . 2 +115142 6133 is ludicrous enough that it could become a cult classic 2 +115143 6133 ludicrous enough that it could become a cult classic 2 +115144 6133 ludicrous enough 1 +115145 6133 that it could become a cult classic 3 +115146 6133 it could become a cult classic 3 +115147 6133 could become a cult classic 3 +115148 6133 become a cult classic 3 +115149 6133 a cult classic 3 +115150 6134 The animation and game phenomenon that peaked about three years ago is actually dying a slow death , if the poor quality of Pokemon 4 Ever is any indication . 0 +115151 6134 The animation and game phenomenon that peaked about three years ago 2 +115152 6134 The animation and game phenomenon 3 +115153 6134 animation and game phenomenon 3 +115154 6134 and game phenomenon 3 +115155 6134 game phenomenon 2 +115156 6134 phenomenon 3 +115157 6134 that peaked about three years ago 2 +115158 6134 peaked about three years ago 3 +115159 6134 peaked 3 +115160 6134 about three years ago 2 +115161 6134 about three years 2 +115162 6134 about three 2 +115163 6134 is actually dying a slow death , if the poor quality of Pokemon 4 Ever is any indication . 1 +115164 6134 is actually dying a slow death , if the poor quality of Pokemon 4 Ever is any indication 0 +115165 6134 dying a slow death , if the poor quality of Pokemon 4 Ever is any indication 0 +115166 6134 dying a slow death , 2 +115167 6134 dying a slow death 1 +115168 6134 a slow death 1 +115169 6134 slow death 0 +115170 6134 if the poor quality of Pokemon 4 Ever is any indication 1 +115171 6134 the poor quality of Pokemon 4 Ever is any indication 0 +115172 6134 the poor quality of Pokemon 4 1 +115173 6134 the poor quality 1 +115174 6134 of Pokemon 4 2 +115175 6134 Pokemon 4 2 +115176 6134 Ever is any indication 2 +115177 6134 is any indication 2 +115178 6134 any indication 2 +115179 6135 It is just too bad the film 's story does not live up to its style . 1 +115180 6135 is just too bad the film 's story does not live up to its style . 1 +115181 6135 is just too bad the film 's story does not live up to its style 1 +115182 6135 just too bad the film 's story does not live up to its style 0 +115183 6135 too bad the film 's story does not live up to its style 1 +115184 6135 bad the film 's story does not live up to its style 1 +115185 6135 the film 's story does not live up to its style 1 +115186 6135 the film 's story 2 +115187 6135 does not live up to its style 1 +115188 6135 live up to its style 2 +115189 6135 to its style 2 +115190 6136 Sex ironically has little to do with the story , which becomes something about how lame it is to try and evade your responsibilities and that you should never , ever , leave a large dog alone with a toddler . 1 +115191 6136 ironically has little to do with the story , which becomes something about how lame it is to try and evade your responsibilities and that you should never , ever , leave a large dog alone with a toddler . 1 +115192 6136 has little to do with the story , which becomes something about how lame it is to try and evade your responsibilities and that you should never , ever , leave a large dog alone with a toddler . 1 +115193 6136 has little to do with the story , which becomes something about how lame it is to try and evade your responsibilities and that you should never , ever , leave a large dog alone with a toddler 0 +115194 6136 has little to do with the story , 1 +115195 6136 has little to do with the story 1 +115196 6136 has little 2 +115197 6136 to do with the story 2 +115198 6136 do with the story 2 +115199 6136 which becomes something about how lame it is to try and evade your responsibilities and that you should never , ever , leave a large dog alone with a toddler 1 +115200 6136 which becomes something about how lame it is to try and evade your responsibilities and 2 +115201 6136 which becomes something about how lame it is to try and evade your responsibilities 1 +115202 6136 becomes something about how lame it is to try and evade your responsibilities 1 +115203 6136 something about how lame it is to try and evade your responsibilities 1 +115204 6136 about how lame it is to try and evade your responsibilities 1 +115205 6136 about how lame 1 +115206 6136 how lame 0 +115207 6136 it is to try and evade your responsibilities 2 +115208 6136 is to try and evade your responsibilities 2 +115209 6136 to try and evade your responsibilities 2 +115210 6136 try and evade your responsibilities 2 +115211 6136 try and evade 1 +115212 6136 try and 2 +115213 6136 your responsibilities 2 +115214 6136 responsibilities 2 +115215 6136 that you should never , ever , leave a large dog alone with a toddler 2 +115216 6136 you should never , ever , leave a large dog alone with a toddler 1 +115217 6136 should never , ever , leave a large dog alone with a toddler 1 +115218 6136 should never , ever , 1 +115219 6136 , ever , 2 +115220 6136 ever , 2 +115221 6136 leave a large dog alone with a toddler 2 +115222 6136 leave a large dog alone 1 +115223 6136 leave a large dog 2 +115224 6136 a large dog 2 +115225 6136 large dog 2 +115226 6136 with a toddler 2 +115227 6136 a toddler 2 +115228 6136 toddler 2 +115229 6137 The movie is without intent . 1 +115230 6137 is without intent . 1 +115231 6137 is without intent 2 +115232 6137 without intent 3 +115233 6138 Does anyone much think the central story of Brendan Behan is that he was a bisexual sweetheart before he took to drink ? 2 +115234 6138 Does anyone much think the central story of Brendan Behan is that he was a bisexual sweetheart before he took to drink 2 +115235 6138 Does anyone much 2 +115236 6138 Does anyone 2 +115237 6138 think the central story of Brendan Behan is that he was a bisexual sweetheart before he took to drink 2 +115238 6138 the central story of Brendan Behan is that he was a bisexual sweetheart before he took to drink 2 +115239 6138 the central story of Brendan Behan 2 +115240 6138 the central story 3 +115241 6138 central story 2 +115242 6138 of Brendan Behan 2 +115243 6138 Brendan Behan 2 +115244 6138 is that he was a bisexual sweetheart before he took to drink 2 +115245 6138 that he was a bisexual sweetheart before he took to drink 2 +115246 6138 he was a bisexual sweetheart before he took to drink 2 +115247 6138 was a bisexual sweetheart before he took to drink 2 +115248 6138 was a bisexual sweetheart 2 +115249 6138 a bisexual sweetheart 2 +115250 6138 bisexual sweetheart 2 +115251 6138 bisexual 2 +115252 6138 before he took to drink 2 +115253 6138 he took to drink 2 +115254 6138 took to drink 2 +115255 6139 Director David Fincher and writer David Koepp ca n't sustain it . 1 +115256 6139 Director David Fincher and writer David Koepp 2 +115257 6139 David Fincher and writer David Koepp 2 +115258 6139 Fincher and writer David Koepp 2 +115259 6139 and writer David Koepp 2 +115260 6139 writer David Koepp 2 +115261 6139 ca n't sustain it . 1 +115262 6139 ca n't sustain it 2 +115263 6140 Even though we know the outcome , the seesawing of the general 's fate in the arguments of competing lawyers has the stomach-knotting suspense of a legal thriller , while the testimony of witnesses lends the film a resonant undertone of tragedy . 3 +115264 6140 Even though we know the outcome 2 +115265 6140 though we know the outcome 2 +115266 6140 we know the outcome 2 +115267 6140 know the outcome 2 +115268 6140 , the seesawing of the general 's fate in the arguments of competing lawyers has the stomach-knotting suspense of a legal thriller , while the testimony of witnesses lends the film a resonant undertone of tragedy . 3 +115269 6140 the seesawing of the general 's fate in the arguments of competing lawyers has the stomach-knotting suspense of a legal thriller , while the testimony of witnesses lends the film a resonant undertone of tragedy . 3 +115270 6140 the seesawing of the general 's fate in the arguments of competing lawyers 2 +115271 6140 the seesawing 2 +115272 6140 of the general 's fate in the arguments of competing lawyers 2 +115273 6140 the general 's fate in the arguments of competing lawyers 2 +115274 6140 the general 's fate 2 +115275 6140 the general 's 3 +115276 6140 general 's 2 +115277 6140 in the arguments of competing lawyers 3 +115278 6140 the arguments of competing lawyers 2 +115279 6140 the arguments 3 +115280 6140 of competing lawyers 2 +115281 6140 competing lawyers 2 +115282 6140 competing 2 +115283 6140 lawyers 2 +115284 6140 has the stomach-knotting suspense of a legal thriller , while the testimony of witnesses lends the film a resonant undertone of tragedy . 3 +115285 6140 has the stomach-knotting suspense of a legal thriller , while the testimony of witnesses lends the film a resonant undertone of tragedy 3 +115286 6140 has the stomach-knotting suspense of a legal thriller , 3 +115287 6140 has the stomach-knotting suspense of a legal thriller 3 +115288 6140 the stomach-knotting suspense of a legal thriller 3 +115289 6140 the stomach-knotting suspense 3 +115290 6140 stomach-knotting suspense 3 +115291 6140 stomach-knotting 2 +115292 6140 of a legal thriller 1 +115293 6140 a legal thriller 3 +115294 6140 legal thriller 2 +115295 6140 while the testimony of witnesses lends the film a resonant undertone of tragedy 2 +115296 6140 the testimony of witnesses lends the film a resonant undertone of tragedy 2 +115297 6140 the testimony of witnesses 2 +115298 6140 of witnesses 2 +115299 6140 lends the film a resonant undertone of tragedy 2 +115300 6140 lends the film 2 +115301 6140 a resonant undertone of tragedy 2 +115302 6140 a resonant undertone 2 +115303 6140 resonant undertone 2 +115304 6140 undertone 2 +115305 6140 of tragedy 2 +115306 6141 And they succeed merrily at their noble endeavor . 3 +115307 6141 they succeed merrily at their noble endeavor . 3 +115308 6141 succeed merrily at their noble endeavor . 4 +115309 6141 succeed merrily at their noble endeavor 3 +115310 6141 succeed merrily 3 +115311 6141 merrily 3 +115312 6141 at their noble endeavor 3 +115313 6141 their noble endeavor 3 +115314 6141 noble endeavor 3 +115315 6142 An immensely entertaining look at some of the unsung heroes of 20th century pop music . 4 +115316 6142 An immensely entertaining look at some of the unsung heroes of 20th century 4 +115317 6142 An immensely entertaining look 4 +115318 6142 immensely entertaining look 3 +115319 6142 immensely entertaining 4 +115320 6142 at some of the unsung heroes of 20th century 2 +115321 6142 some of the unsung heroes of 20th century 3 +115322 6142 of the unsung heroes of 20th century 3 +115323 6142 the unsung heroes of 20th century 3 +115324 6142 the unsung heroes 2 +115325 6142 unsung heroes 3 +115326 6142 unsung 2 +115327 6142 of 20th century 2 +115328 6142 pop music . 2 +115329 6143 Too predictably , in fact . 1 +115330 6143 Too predictably 0 +115331 6143 , in fact . 2 +115332 6143 in fact . 2 +115333 6144 Gangs , despite the gravity of its subject matter , is often as fun to watch as a good spaghetti western . 2 +115334 6144 , despite the gravity of its subject matter , is often as fun to watch as a good spaghetti western . 2 +115335 6144 despite the gravity of its subject matter , is often as fun to watch as a good spaghetti western . 3 +115336 6144 despite the gravity of its subject matter 3 +115337 6144 the gravity of its subject matter 2 +115338 6144 the gravity 2 +115339 6144 of its subject matter 2 +115340 6144 , is often as fun to watch as a good spaghetti western . 3 +115341 6144 is often as fun to watch as a good spaghetti western . 3 +115342 6144 is often as fun to watch as a good spaghetti western 4 +115343 6144 is often as fun 4 +115344 6144 as fun 3 +115345 6144 to watch as a good spaghetti western 3 +115346 6144 watch as a good spaghetti western 3 +115347 6144 as a good spaghetti western 2 +115348 6144 a good spaghetti western 3 +115349 6144 good spaghetti western 3 +115350 6144 spaghetti western 1 +115351 6144 spaghetti 3 +115352 6145 It 's 51 times better than this . 2 +115353 6145 's 51 times better than this . 0 +115354 6145 's 51 times better than this 1 +115355 6145 51 times better than this 2 +115356 6145 51 times 2 +115357 6145 better than this 1 +115358 6145 than this 2 +115359 6146 But it 's surprisingly harmless . 3 +115360 6146 it 's surprisingly harmless . 2 +115361 6146 's surprisingly harmless . 3 +115362 6146 's surprisingly harmless 2 +115363 6146 surprisingly harmless 2 +115364 6147 You might be shocked to discover that Seinfeld 's real life is boring . 2 +115365 6147 might be shocked to discover that Seinfeld 's real life is boring . 2 +115366 6147 might be shocked to discover that Seinfeld 's real life is boring 1 +115367 6147 be shocked to discover that Seinfeld 's real life is boring 2 +115368 6147 shocked to discover that Seinfeld 's real life is boring 0 +115369 6147 to discover that Seinfeld 's real life is boring 2 +115370 6147 discover that Seinfeld 's real life is boring 2 +115371 6147 that Seinfeld 's real life is boring 2 +115372 6147 Seinfeld 's real life is boring 1 +115373 6147 Seinfeld 's real life 2 +115374 6147 Seinfeld 's 2 +115375 6147 is boring 0 +115376 6148 One of the most splendid entertainments to emerge from the French film industry in years . 4 +115377 6148 One of the most splendid 4 +115378 6148 of the most splendid 3 +115379 6148 the most splendid 3 +115380 6148 most splendid 4 +115381 6148 entertainments to emerge from the French film industry in years . 2 +115382 6148 entertainments to emerge from the French film industry in years 2 +115383 6148 entertainments 2 +115384 6148 to emerge from the French film industry in years 2 +115385 6148 emerge from the French film industry in years 2 +115386 6148 from the French film industry in years 2 +115387 6148 the French film industry in years 2 +115388 6149 As the movie traces Mr. Brown 's athletic exploits , it is impossible not to be awed by the power and grace of one of the greatest natural sportsmen of modern times . 4 +115389 6149 As the movie traces Mr. Brown 's athletic exploits 2 +115390 6149 the movie traces Mr. Brown 's athletic exploits 2 +115391 6149 traces Mr. Brown 's athletic exploits 2 +115392 6149 Mr. Brown 's athletic exploits 2 +115393 6149 Mr. Brown 's 2 +115394 6149 athletic exploits 2 +115395 6149 athletic 2 +115396 6149 , it is impossible not to be awed by the power and grace of one of the greatest natural sportsmen of modern times . 3 +115397 6149 it is impossible not to be awed by the power and grace of one of the greatest natural sportsmen of modern times . 4 +115398 6149 is impossible not to be awed by the power and grace of one of the greatest natural sportsmen of modern times . 4 +115399 6149 is impossible not to be awed by the power and grace of one of the greatest natural sportsmen of modern times 4 +115400 6149 is impossible 1 +115401 6149 not to be awed by the power and grace of one of the greatest natural sportsmen of modern times 3 +115402 6149 to be awed by the power and grace of one of the greatest natural sportsmen of modern times 3 +115403 6149 be awed by the power and grace of one of the greatest natural sportsmen of modern times 4 +115404 6149 awed by the power and grace of one of the greatest natural sportsmen of modern times 3 +115405 6149 awed 3 +115406 6149 by the power and grace of one of the greatest natural sportsmen of modern times 3 +115407 6149 the power and grace of one of the greatest natural sportsmen of modern times 4 +115408 6149 the power and grace 3 +115409 6149 power and grace 3 +115410 6149 power and 2 +115411 6149 of one of the greatest natural sportsmen of modern times 3 +115412 6149 one of the greatest natural sportsmen of modern times 3 +115413 6149 of the greatest natural sportsmen of modern times 3 +115414 6149 the greatest natural sportsmen of modern times 4 +115415 6149 the greatest natural sportsmen 3 +115416 6149 greatest natural sportsmen 4 +115417 6149 natural sportsmen 3 +115418 6149 sportsmen 2 +115419 6150 Once again , director Chris Columbus takes a hat-in-hand approach to Rowling that stifles creativity and allows the film to drag on for nearly three hours . 1 +115420 6150 , director Chris Columbus takes a hat-in-hand approach to Rowling that stifles creativity and allows the film to drag on for nearly three hours . 0 +115421 6150 director Chris Columbus takes a hat-in-hand approach to Rowling that stifles creativity and allows the film to drag on for nearly three hours . 1 +115422 6150 director Chris Columbus 2 +115423 6150 Chris Columbus 2 +115424 6150 takes a hat-in-hand approach to Rowling that stifles creativity and allows the film to drag on for nearly three hours . 0 +115425 6150 takes a hat-in-hand approach to Rowling that stifles creativity and allows the film to drag on for nearly three hours 0 +115426 6150 takes a hat-in-hand approach 3 +115427 6150 a hat-in-hand approach 2 +115428 6150 hat-in-hand approach 2 +115429 6150 hat-in-hand 2 +115430 6150 to Rowling that stifles creativity and allows the film to drag on for nearly three hours 0 +115431 6150 Rowling that stifles creativity and allows the film to drag on for nearly three hours 0 +115432 6150 that stifles creativity and allows the film to drag on for nearly three hours 0 +115433 6150 stifles creativity and allows the film to drag on for nearly three hours 1 +115434 6150 stifles creativity and 1 +115435 6150 stifles creativity 1 +115436 6150 stifles 2 +115437 6150 allows the film to drag on for nearly three hours 0 +115438 6150 the film to drag on for nearly three hours 0 +115439 6150 film to drag on for nearly three hours 0 +115440 6150 to drag on for nearly three hours 1 +115441 6150 drag on for nearly three hours 1 +115442 6150 drag on 1 +115443 6150 for nearly three hours 3 +115444 6151 In the end , the film feels homogenized and a bit contrived , as if we 're looking back at a tattered and ugly past with rose-tinted glasses . 1 +115445 6151 , the film feels homogenized and a bit contrived , as if we 're looking back at a tattered and ugly past with rose-tinted glasses . 2 +115446 6151 the film feels homogenized and a bit contrived , as if we 're looking back at a tattered and ugly past with rose-tinted glasses . 1 +115447 6151 feels homogenized and a bit contrived , as if we 're looking back at a tattered and ugly past with rose-tinted glasses . 1 +115448 6151 feels homogenized and a bit contrived , as if we 're looking back at a tattered and ugly past with rose-tinted glasses 2 +115449 6151 feels homogenized and a bit contrived , 1 +115450 6151 feels homogenized and a bit contrived 1 +115451 6151 homogenized and a bit contrived 1 +115452 6151 homogenized and 2 +115453 6151 homogenized 2 +115454 6151 a bit contrived 2 +115455 6151 as if we 're looking back at a tattered and ugly past with rose-tinted glasses 2 +115456 6151 if we 're looking back at a tattered and ugly past with rose-tinted glasses 2 +115457 6151 we 're looking back at a tattered and ugly past with rose-tinted glasses 1 +115458 6151 're looking back at a tattered and ugly past with rose-tinted glasses 2 +115459 6151 looking back at a tattered and ugly past with rose-tinted glasses 2 +115460 6151 looking back 2 +115461 6151 at a tattered and ugly past with rose-tinted glasses 2 +115462 6151 a tattered and ugly past with rose-tinted glasses 1 +115463 6151 a tattered and ugly past 2 +115464 6151 tattered and ugly past 1 +115465 6151 tattered and ugly 2 +115466 6151 tattered and 2 +115467 6151 with rose-tinted glasses 2 +115468 6151 rose-tinted glasses 2 +115469 6151 rose-tinted 2 +115470 6152 Apparently , romantic comedy with a fresh point of view just does n't figure in the present Hollywood program . 0 +115471 6152 , romantic comedy with a fresh point of view just does n't figure in the present Hollywood program . 1 +115472 6152 romantic comedy with a fresh point of view just does n't figure in the present Hollywood program . 3 +115473 6152 romantic comedy with a fresh point of view 3 +115474 6152 with a fresh point of view 4 +115475 6152 a fresh point of view 3 +115476 6152 a fresh point 3 +115477 6152 fresh point 3 +115478 6152 just does n't figure in the present Hollywood program . 1 +115479 6152 does n't figure in the present Hollywood program . 2 +115480 6152 does n't figure in the present Hollywood program 1 +115481 6152 figure in the present Hollywood program 2 +115482 6152 in the present Hollywood program 2 +115483 6152 the present Hollywood program 2 +115484 6152 present Hollywood program 2 +115485 6152 Hollywood program 3 +115486 6153 It 's hard to imagine any recent film , independent or otherwise , that makes as much of a mess as this one . 0 +115487 6153 's hard to imagine any recent film , independent or otherwise , that makes as much of a mess as this one . 0 +115488 6153 's hard to imagine any recent film , independent or otherwise , that makes as much of a mess as this one 0 +115489 6153 hard to imagine any recent film , independent or otherwise , that makes as much of a mess as this one 0 +115490 6153 to imagine any recent film , independent or otherwise , that makes as much of a mess as this one 0 +115491 6153 imagine any recent film , independent or otherwise , that makes as much of a mess as this one 0 +115492 6153 any recent film , independent or otherwise , that makes as much of a mess as this one 0 +115493 6153 any recent film , independent or otherwise , 3 +115494 6153 any recent film , independent or otherwise 2 +115495 6153 any recent film , 2 +115496 6153 any recent film 2 +115497 6153 independent or otherwise 2 +115498 6153 independent or 3 +115499 6153 that makes as much of a mess as this one 1 +115500 6153 makes as much of a mess as this one 1 +115501 6153 as much of a mess as this one 1 +115502 6153 of a mess as this one 2 +115503 6153 a mess as this one 1 +115504 6153 as this one 2 +115505 6154 A solid cast , assured direction and complete lack of modern day irony . 3 +115506 6154 A solid cast , assured direction and complete lack of modern day irony 3 +115507 6154 A solid cast , 3 +115508 6154 assured direction and complete lack of modern day irony 3 +115509 6154 direction and complete lack of modern day irony 2 +115510 6154 direction and complete lack 1 +115511 6154 and complete lack 2 +115512 6154 complete lack 1 +115513 6154 of modern day irony 2 +115514 6154 modern day irony 2 +115515 6154 day irony 2 +115516 6155 ... the kind of entertainment that parents love to have their kids see . 4 +115517 6155 the kind of entertainment that parents love to have their kids see . 4 +115518 6155 the kind of entertainment that parents love to have their kids 4 +115519 6155 of entertainment that parents love to have their kids 3 +115520 6155 entertainment that parents love to have their kids 4 +115521 6155 that parents love to have their kids 2 +115522 6155 parents love to have their kids 4 +115523 6155 love to have their kids 3 +115524 6155 to have their kids 3 +115525 6155 have their kids 2 +115526 6155 see . 2 +115527 6156 Charly comes off as emotionally manipulative and sadly imitative of innumerable past Love Story derisions . 1 +115528 6156 Charly 2 +115529 6156 comes off as emotionally manipulative and sadly imitative of innumerable past Love Story derisions . 0 +115530 6156 comes off as emotionally manipulative and sadly imitative of innumerable past Love Story derisions 2 +115531 6156 as emotionally manipulative and sadly imitative of innumerable past Love Story derisions 0 +115532 6156 emotionally manipulative and sadly imitative of innumerable past Love Story derisions 1 +115533 6156 emotionally manipulative and sadly imitative of innumerable 1 +115534 6156 emotionally manipulative and 2 +115535 6156 emotionally manipulative 2 +115536 6156 sadly imitative of innumerable 1 +115537 6156 imitative of innumerable 1 +115538 6156 imitative 1 +115539 6156 of innumerable 2 +115540 6156 innumerable 2 +115541 6156 past Love Story derisions 1 +115542 6156 Love Story derisions 2 +115543 6156 Story derisions 2 +115544 6156 derisions 2 +115545 6157 The Pool drowned me in boredom . 1 +115546 6157 drowned me in boredom . 0 +115547 6157 drowned me in boredom 0 +115548 6157 drowned me 0 +115549 6157 in boredom 1 +115550 6158 Despite the fact that this film was n't as bad as I thought it was going to be , it 's still not a good movie 0 +115551 6158 Despite the fact that this film was n't as bad as I thought it was going to be 2 +115552 6158 the fact that this film was n't as bad as I thought it was going to be 2 +115553 6158 that this film was n't as bad as I thought it was going to be 3 +115554 6158 this film was n't as bad as I thought it was going to be 2 +115555 6158 was n't as bad as I thought it was going to be 3 +115556 6158 was n't as bad 2 +115557 6158 as I thought it was going to be 2 +115558 6158 I thought it was going to be 2 +115559 6158 thought it was going to be 3 +115560 6158 it was going to be 3 +115561 6158 was going to be 2 +115562 6158 going to be 2 +115563 6158 , it 's still not a good movie 0 +115564 6158 it 's still not a good movie 1 +115565 6158 's still not a good movie 1 +115566 6159 Spy Kids 2 also happens to be that rarity among sequels : It actually improves upon the original hit movie . 4 +115567 6159 Spy Kids 2 also happens to be that rarity among sequels : It actually improves upon the original hit movie 3 +115568 6159 Spy Kids 2 also happens to be that rarity among sequels : 3 +115569 6159 Spy Kids 2 also happens to be that rarity among sequels 3 +115570 6159 also happens to be that rarity among sequels 2 +115571 6159 happens to be that rarity among sequels 3 +115572 6159 to be that rarity among sequels 3 +115573 6159 be that rarity among sequels 2 +115574 6159 that rarity among sequels 3 +115575 6159 that rarity 2 +115576 6159 among sequels 2 +115577 6159 It actually improves upon the original hit movie 4 +115578 6159 actually improves upon the original hit movie 3 +115579 6159 improves upon the original hit movie 3 +115580 6159 upon the original hit movie 2 +115581 6159 the original hit movie 3 +115582 6159 original hit movie 3 +115583 6159 hit movie 2 +115584 6160 The people in ABC Africa are treated as docile , mostly wordless ethnographic extras . 2 +115585 6160 The people in ABC Africa 2 +115586 6160 in ABC Africa 2 +115587 6160 ABC Africa 2 +115588 6160 ABC 2 +115589 6160 are treated as docile , mostly wordless ethnographic extras . 1 +115590 6160 are treated as docile , mostly wordless ethnographic extras 1 +115591 6160 treated as docile , mostly wordless ethnographic extras 3 +115592 6160 treated 2 +115593 6160 as docile , mostly wordless ethnographic extras 1 +115594 6160 docile , mostly wordless ethnographic extras 1 +115595 6160 docile 2 +115596 6160 , mostly wordless ethnographic extras 2 +115597 6160 mostly wordless ethnographic extras 1 +115598 6160 mostly wordless 2 +115599 6160 wordless 2 +115600 6160 ethnographic extras 2 +115601 6160 ethnographic 2 +115602 6160 extras 2 +115603 6161 Maggie G. makes an amazing breakthrough in her first starring role and eats up the screen . 4 +115604 6161 Maggie G. 2 +115605 6161 G. 2 +115606 6161 makes an amazing breakthrough in her first starring role and eats up the screen . 4 +115607 6161 makes an amazing breakthrough in her first starring role and eats up the screen 4 +115608 6161 makes an amazing breakthrough in her first starring role and 3 +115609 6161 makes an amazing breakthrough in her first starring role 4 +115610 6161 makes an amazing breakthrough 4 +115611 6161 an amazing breakthrough 4 +115612 6161 amazing breakthrough 4 +115613 6161 in her first starring role 2 +115614 6161 her first starring role 2 +115615 6161 first starring role 2 +115616 6161 eats up the screen 4 +115617 6161 eats up 2 +115618 6162 Very well-written and very well-acted . 4 +115619 6162 Very well-written and very well-acted 4 +115620 6162 Very well-written and 4 +115621 6162 Very well-written 4 +115622 6162 very well-acted 4 +115623 6163 This fascinating look at Israel in ferment feels as immediate as the latest news footage from Gaza and , because of its heightened , well-shaped dramas , twice as powerful . 4 +115624 6163 This fascinating look at Israel in ferment 3 +115625 6163 This fascinating look 3 +115626 6163 fascinating look 4 +115627 6163 at Israel in ferment 2 +115628 6163 Israel in ferment 2 +115629 6163 in ferment 2 +115630 6163 ferment 2 +115631 6163 feels as immediate as the latest news footage from Gaza and , because of its heightened , well-shaped dramas , twice as powerful . 3 +115632 6163 feels as immediate as the latest news footage from Gaza and , because of its heightened , well-shaped dramas , twice as powerful 4 +115633 6163 as immediate as the latest news footage from Gaza and , because of its heightened , well-shaped dramas , twice as powerful 4 +115634 6163 as immediate as the latest news footage from Gaza 2 +115635 6163 immediate as the latest news footage from Gaza 2 +115636 6163 as the latest news footage from Gaza 2 +115637 6163 the latest news footage from Gaza 2 +115638 6163 the latest news footage 2 +115639 6163 latest news footage 2 +115640 6163 news footage 2 +115641 6163 from Gaza 2 +115642 6163 and , because of its heightened , well-shaped dramas , twice as powerful 3 +115643 6163 , because of its heightened , well-shaped dramas , twice as powerful 4 +115644 6163 , because of its heightened , well-shaped dramas , 2 +115645 6163 because of its heightened , well-shaped dramas , 3 +115646 6163 because of its heightened , well-shaped dramas 3 +115647 6163 of its heightened , well-shaped dramas 3 +115648 6163 its heightened , well-shaped dramas 4 +115649 6163 heightened , well-shaped dramas 4 +115650 6163 , well-shaped dramas 4 +115651 6163 well-shaped dramas 3 +115652 6163 well-shaped 2 +115653 6163 twice as powerful 3 +115654 6163 as powerful 2 +115655 6164 For more than two decades Mr. Nachtwey has traveled to places in the world devastated by war , famine and poverty and documented the cruelty and suffering he has found with an devastating , eloquent clarity . 3 +115656 6164 For more than two decades 2 +115657 6164 more than two decades 2 +115658 6164 more than two 2 +115659 6164 than two 2 +115660 6164 Mr. Nachtwey has traveled to places in the world devastated by war , famine and poverty and documented the cruelty and suffering he has found with an devastating , eloquent clarity . 4 +115661 6164 Mr. Nachtwey 2 +115662 6164 has traveled to places in the world devastated by war , famine and poverty and documented the cruelty and suffering he has found with an devastating , eloquent clarity . 2 +115663 6164 has traveled to places in the world devastated by war , famine and poverty and documented the cruelty and suffering he has found with an devastating , eloquent clarity 3 +115664 6164 traveled to places in the world devastated by war , famine and poverty and documented the cruelty and suffering he has found with an devastating , eloquent clarity 3 +115665 6164 traveled 2 +115666 6164 to places in the world devastated by war , famine and poverty and documented the cruelty and suffering he has found with an devastating , eloquent clarity 3 +115667 6164 places in the world devastated by war , famine and poverty and documented the cruelty and suffering he has found with an devastating , eloquent clarity 2 +115668 6164 in the world devastated by war , famine and poverty and documented the cruelty and suffering he has found with an devastating , eloquent clarity 4 +115669 6164 the world devastated by war , famine and poverty and documented the cruelty and suffering he has found with an devastating , eloquent clarity 3 +115670 6164 devastated by war , famine and poverty and documented the cruelty and suffering he has found with an devastating , eloquent clarity 3 +115671 6164 devastated by war , famine and poverty and 1 +115672 6164 devastated by war , famine and poverty 2 +115673 6164 devastated 1 +115674 6164 by war , famine and poverty 2 +115675 6164 war , famine and poverty 2 +115676 6164 , famine and poverty 2 +115677 6164 famine and poverty 2 +115678 6164 famine and 2 +115679 6164 famine 2 +115680 6164 documented the cruelty and suffering he has found with an devastating , eloquent clarity 4 +115681 6164 documented 2 +115682 6164 the cruelty and suffering he has found with an devastating , eloquent clarity 3 +115683 6164 the cruelty and suffering 1 +115684 6164 cruelty and suffering 1 +115685 6164 cruelty and 2 +115686 6164 cruelty 2 +115687 6164 he has found with an devastating , eloquent clarity 3 +115688 6164 has found with an devastating , eloquent clarity 3 +115689 6164 found with an devastating , eloquent clarity 3 +115690 6164 with an devastating , eloquent clarity 2 +115691 6164 an devastating , eloquent clarity 2 +115692 6164 devastating , eloquent clarity 3 +115693 6164 , eloquent clarity 2 +115694 6164 eloquent clarity 4 +115695 6165 Nice piece of work . 3 +115696 6165 Nice piece of work 3 +115697 6165 Nice piece 3 +115698 6166 Turturro is fabulously funny and over the top as a ` very sneaky ' butler who excels in the art of impossible disappearing\/reappearing acts 4 +115699 6166 Turturro 2 +115700 6166 is fabulously funny and over the top as a ` very sneaky ' butler who excels in the art of impossible disappearing\/reappearing acts 4 +115701 6166 fabulously funny and over the top as a ` very sneaky ' butler who excels in the art of impossible disappearing\/reappearing acts 3 +115702 6166 fabulously funny and 4 +115703 6166 fabulously funny 4 +115704 6166 fabulously 3 +115705 6166 over the top as a ` very sneaky ' butler who excels in the art of impossible disappearing\/reappearing acts 2 +115706 6166 the top as a ` very sneaky ' butler who excels in the art of impossible disappearing\/reappearing acts 2 +115707 6166 as a ` very sneaky ' butler who excels in the art of impossible disappearing\/reappearing acts 3 +115708 6166 a ` very sneaky ' butler who excels in the art of impossible disappearing\/reappearing acts 2 +115709 6166 a ` very sneaky ' butler 2 +115710 6166 ` very sneaky ' butler 2 +115711 6166 very sneaky ' butler 2 +115712 6166 very sneaky 2 +115713 6166 ' butler 2 +115714 6166 butler 2 +115715 6166 who excels in the art of impossible disappearing\/reappearing acts 3 +115716 6166 excels in the art of impossible disappearing\/reappearing acts 4 +115717 6166 excels 3 +115718 6166 in the art of impossible disappearing\/reappearing acts 3 +115719 6166 the art of impossible disappearing\/reappearing acts 2 +115720 6166 of impossible disappearing\/reappearing acts 1 +115721 6166 impossible disappearing\/reappearing acts 2 +115722 6166 impossible disappearing\/reappearing 2 +115723 6166 disappearing\/reappearing 2 +115724 6167 A confluence of kiddie entertainment , sophisticated wit and symbolic graphic design . 3 +115725 6167 A confluence of kiddie entertainment , sophisticated wit and symbolic graphic design 3 +115726 6167 A confluence 2 +115727 6167 of kiddie entertainment , sophisticated wit and symbolic graphic design 3 +115728 6167 kiddie entertainment , sophisticated wit and symbolic graphic design 3 +115729 6167 kiddie entertainment , sophisticated wit and 3 +115730 6167 kiddie entertainment , sophisticated wit 3 +115731 6167 kiddie entertainment , 3 +115732 6167 kiddie entertainment 2 +115733 6167 sophisticated wit 4 +115734 6167 symbolic graphic design 3 +115735 6167 graphic design 2 +115736 6168 Below may not mark Mr. Twohy 's emergence into the mainstream , but his promise remains undiminished . 3 +115737 6168 Below may not mark Mr. Twohy 's emergence into the mainstream , but his promise remains undiminished 3 +115738 6168 Below may not mark Mr. Twohy 's emergence into the mainstream , but 2 +115739 6168 Below may not mark Mr. Twohy 's emergence into the mainstream , 1 +115740 6168 Below may not mark Mr. Twohy 's emergence into the mainstream 2 +115741 6168 may not mark Mr. Twohy 's emergence into the mainstream 1 +115742 6168 mark Mr. Twohy 's emergence into the mainstream 2 +115743 6168 mark Mr. Twohy 's emergence 2 +115744 6168 Mr. Twohy 's emergence 2 +115745 6168 Mr. Twohy 's 2 +115746 6168 Twohy 's 2 +115747 6168 emergence 2 +115748 6168 into the mainstream 2 +115749 6168 the mainstream 2 +115750 6168 his promise remains undiminished 3 +115751 6168 his promise 3 +115752 6168 remains undiminished 3 +115753 6168 undiminished 2 +115754 6169 As satisfyingly odd and intriguing a tale as it was a century and a half ago ... has a delightfully dour , deadpan tone and stylistic consistency . 4 +115755 6169 As satisfyingly odd and intriguing a tale as it was a century and a half ago 4 +115756 6169 satisfyingly odd and intriguing a tale as it was a century and a half ago 3 +115757 6169 satisfyingly odd and intriguing a tale 3 +115758 6169 satisfyingly odd and intriguing 3 +115759 6169 odd and intriguing 3 +115760 6169 as it was a century and a half ago 2 +115761 6169 it was a century and a half ago 2 +115762 6169 was a century and a half ago 2 +115763 6169 a century and a half ago 3 +115764 6169 a century and a half 2 +115765 6169 century and a half 2 +115766 6169 ... has a delightfully dour , deadpan tone and stylistic consistency . 2 +115767 6169 has a delightfully dour , deadpan tone and stylistic consistency . 3 +115768 6169 has a delightfully dour , deadpan tone and stylistic consistency 3 +115769 6169 a delightfully dour , deadpan tone and stylistic consistency 3 +115770 6169 a delightfully dour , deadpan tone and 2 +115771 6169 a delightfully dour , deadpan tone 3 +115772 6169 a delightfully dour , 3 +115773 6169 a delightfully dour 3 +115774 6169 delightfully dour 3 +115775 6169 dour 1 +115776 6169 deadpan tone 1 +115777 6169 stylistic consistency 2 +115778 6169 consistency 3 +115779 6170 Jacobi , the most fluent of actors , is given relatively dry material from Nijinsky 's writings to perform , and the visuals , even erotically frank ones , become dullingly repetitive . 1 +115780 6170 Jacobi , the most fluent of actors , is given relatively dry material from Nijinsky 's writings to perform , and the visuals , even erotically frank ones , become dullingly repetitive 1 +115781 6170 Jacobi , the most fluent of actors , is given relatively dry material from Nijinsky 's writings to perform , and 2 +115782 6170 Jacobi , the most fluent of actors , is given relatively dry material from Nijinsky 's writings to perform , 1 +115783 6170 Jacobi , the most fluent of actors , is given relatively dry material from Nijinsky 's writings to perform 2 +115784 6170 Jacobi , the most fluent of actors , 3 +115785 6170 Jacobi , the most fluent of actors 2 +115786 6170 Jacobi , 2 +115787 6170 Jacobi 2 +115788 6170 the most fluent of actors 3 +115789 6170 the most fluent 2 +115790 6170 most fluent 2 +115791 6170 is given relatively dry material from Nijinsky 's writings to perform 2 +115792 6170 given relatively dry material from Nijinsky 's writings to perform 1 +115793 6170 given relatively dry material 2 +115794 6170 relatively dry material 1 +115795 6170 relatively dry 1 +115796 6170 from Nijinsky 's writings to perform 2 +115797 6170 Nijinsky 's writings to perform 2 +115798 6170 writings to perform 3 +115799 6170 writings 2 +115800 6170 to perform 3 +115801 6170 the visuals , even erotically frank ones , become dullingly repetitive 1 +115802 6170 the visuals , even erotically frank ones , 3 +115803 6170 the visuals , even erotically frank ones 2 +115804 6170 the visuals , 2 +115805 6170 the visuals 2 +115806 6170 even erotically frank ones 2 +115807 6170 even erotically frank 2 +115808 6170 erotically frank 3 +115809 6170 erotically 1 +115810 6170 become dullingly repetitive 1 +115811 6170 dullingly repetitive 0 +115812 6170 dullingly 1 +115813 6171 I have always appreciated a smartly written motion picture , and , whatever flaws Igby Goes Down may possess , it is undeniably that . 3 +115814 6171 I have always appreciated a smartly written motion picture , and , whatever flaws Igby Goes Down may possess , it is undeniably that 3 +115815 6171 I have always appreciated a smartly written motion picture , and 3 +115816 6171 I have always appreciated a smartly written motion picture , 3 +115817 6171 I have always appreciated a smartly written motion picture 3 +115818 6171 have always appreciated a smartly written motion picture 3 +115819 6171 have always 2 +115820 6171 appreciated a smartly written motion picture 3 +115821 6171 a smartly written motion picture 4 +115822 6171 smartly written motion picture 4 +115823 6171 , whatever flaws Igby Goes Down may possess , it is undeniably that 2 +115824 6171 whatever flaws Igby Goes Down may possess , it is undeniably that 1 +115825 6171 whatever flaws Igby Goes Down may possess 1 +115826 6171 flaws Igby Goes Down may possess 2 +115827 6171 flaws Igby 1 +115828 6171 Goes Down may possess 2 +115829 6171 Down may possess 2 +115830 6171 may possess 2 +115831 6171 possess 2 +115832 6171 , it is undeniably that 2 +115833 6171 it is undeniably that 2 +115834 6171 is undeniably that 2 +115835 6171 undeniably that 2 +115836 6172 `` Juwanna Mann ? '' 2 +115837 6172 Juwanna Mann ? '' 2 +115838 6172 Mann ? '' 2 +115839 6172 Mann ? 2 +115840 6173 Who knows , but it works under the direction of Kevin Reynolds . 3 +115841 6173 Who knows 2 +115842 6173 , but it works under the direction of Kevin Reynolds . 3 +115843 6173 but it works under the direction of Kevin Reynolds . 3 +115844 6173 but it works under the direction of Kevin Reynolds 3 +115845 6173 it works under the direction of Kevin Reynolds 2 +115846 6173 works under the direction of Kevin Reynolds 2 +115847 6173 under the direction of Kevin Reynolds 2 +115848 6173 the direction of Kevin Reynolds 2 +115849 6173 of Kevin Reynolds 2 +115850 6173 Kevin Reynolds 2 +115851 6174 A yawn-provoking little farm melodrama . 0 +115852 6174 yawn-provoking little farm melodrama . 1 +115853 6174 yawn-provoking 1 +115854 6174 little farm melodrama . 1 +115855 6174 farm melodrama . 1 +115856 6174 farm 2 +115857 6174 melodrama . 2 +115858 6175 The script 's judgment and sense of weight is way , way off . 0 +115859 6175 The script 's judgment and sense of weight 2 +115860 6175 The script 's judgment and sense 2 +115861 6175 judgment and sense 2 +115862 6175 judgment and 2 +115863 6175 of weight 2 +115864 6175 is way , way off . 1 +115865 6175 is way , way off 1 +115866 6175 is way , 2 +115867 6176 The solid filmmaking and convincing characters makes this a high water mark for this genre . 4 +115868 6176 The solid filmmaking and convincing characters 3 +115869 6176 The solid filmmaking and 3 +115870 6176 The solid filmmaking 4 +115871 6176 solid filmmaking 3 +115872 6176 convincing characters 3 +115873 6176 makes this a high water mark for this genre . 3 +115874 6176 makes this a high water mark for this genre 3 +115875 6176 this a high water mark for this genre 4 +115876 6176 a high water mark for this genre 4 +115877 6176 a high water mark 3 +115878 6176 high water mark 4 +115879 6176 water mark 2 +115880 6176 for this genre 2 +115881 6177 Shamelessly resorting to pee-related sight gags that might even cause Tom Green a grimace ; still , Myer 's energy and the silliness of it all eventually prevail 2 +115882 6177 resorting to pee-related sight gags that might even cause Tom Green a grimace ; still , Myer 's energy and the silliness of it all eventually prevail 2 +115883 6177 to pee-related sight gags that might even cause Tom Green a grimace ; still , Myer 's energy and the silliness of it all eventually prevail 2 +115884 6177 pee-related sight gags that might even cause Tom Green a grimace ; still , Myer 's energy and the silliness of it all eventually prevail 3 +115885 6177 pee-related sight gags that might even cause Tom Green a grimace ; still , Myer 's energy and 2 +115886 6177 pee-related sight gags that might even cause Tom Green a grimace ; still , Myer 's energy 2 +115887 6177 pee-related sight gags that might even cause Tom Green a grimace ; still , 1 +115888 6177 pee-related sight gags that might even cause Tom Green a grimace ; still 1 +115889 6177 pee-related sight gags 2 +115890 6177 pee-related 1 +115891 6177 sight gags 1 +115892 6177 that might even cause Tom Green a grimace ; still 1 +115893 6177 might even cause Tom Green a grimace ; still 2 +115894 6177 might even 2 +115895 6177 cause Tom Green a grimace ; still 1 +115896 6177 cause Tom Green a grimace ; 2 +115897 6177 cause Tom Green a grimace 1 +115898 6177 Tom Green a grimace 1 +115899 6177 a grimace 1 +115900 6177 grimace 1 +115901 6177 Myer 's energy 2 +115902 6177 Myer 's 2 +115903 6177 Myer 2 +115904 6177 the silliness of it all eventually prevail 3 +115905 6177 the silliness of it 2 +115906 6177 all eventually prevail 2 +115907 6177 eventually prevail 3 +115908 6177 prevail 3 +115909 6178 Murderous Maids has a lot going for it , not least the brilliant performances by Testud ... and Parmentier . 3 +115910 6178 has a lot going for it , not least the brilliant performances by Testud ... and Parmentier . 4 +115911 6178 has a lot going for it , not least the brilliant performances by Testud ... and Parmentier 4 +115912 6178 a lot going for it , not least the brilliant performances by Testud ... and Parmentier 4 +115913 6178 a lot going for it , not least the brilliant performances by Testud ... and 3 +115914 6178 a lot going for it , not least the brilliant performances by Testud ... 4 +115915 6178 a lot going for it , not least the brilliant performances by Testud 2 +115916 6178 going for it , not least the brilliant performances by Testud 3 +115917 6178 going for it , not least 2 +115918 6178 for it , not least 2 +115919 6178 it , not least 2 +115920 6178 the brilliant performances by Testud 4 +115921 6178 the brilliant performances 4 +115922 6178 brilliant performances 4 +115923 6178 by Testud 2 +115924 6178 Parmentier 2 +115925 6179 The results , if not memorable , are at least interesting . 2 +115926 6179 , if not memorable , are at least interesting . 3 +115927 6179 if not memorable , are at least interesting . 2 +115928 6179 if not memorable 2 +115929 6179 not memorable 1 +115930 6179 , are at least interesting . 3 +115931 6179 are at least interesting . 3 +115932 6179 are at least interesting 2 +115933 6179 at least interesting 2 +115934 6180 ... generically , forgettably pleasant from start to finish . 2 +115935 6180 generically , forgettably pleasant from start to finish . 2 +115936 6180 generically , forgettably pleasant from start to finish 1 +115937 6180 generically 1 +115938 6180 , forgettably pleasant from start to finish 2 +115939 6180 forgettably pleasant from start to finish 3 +115940 6180 pleasant from start to finish 3 +115941 6180 pleasant from start 4 +115942 6181 Well made but uninvolving , Bloodwork is n't a terrible movie , just a stultifyingly obvious one -- an unrewarding collar for a murder mystery . 1 +115943 6181 Well made but uninvolving 2 +115944 6181 made but uninvolving 1 +115945 6181 but uninvolving 1 +115946 6181 , Bloodwork is n't a terrible movie , just a stultifyingly obvious one -- an unrewarding collar for a murder mystery . 2 +115947 6181 Bloodwork is n't a terrible movie , just a stultifyingly obvious one -- an unrewarding collar for a murder mystery . 1 +115948 6181 Bloodwork 2 +115949 6181 is n't a terrible movie , just a stultifyingly obvious one -- an unrewarding collar for a murder mystery . 1 +115950 6181 is n't a terrible movie , just a stultifyingly obvious one -- an unrewarding collar for a murder mystery 1 +115951 6181 a terrible movie , just a stultifyingly obvious one -- an unrewarding collar for a murder mystery 0 +115952 6181 a terrible movie , just a stultifyingly obvious one -- 0 +115953 6181 a terrible movie , just a stultifyingly obvious one 0 +115954 6181 a terrible movie , just 0 +115955 6181 a terrible movie , 0 +115956 6181 a stultifyingly obvious one 1 +115957 6181 stultifyingly obvious one 2 +115958 6181 stultifyingly obvious 1 +115959 6181 stultifyingly 2 +115960 6181 an unrewarding collar for a murder mystery 2 +115961 6181 an unrewarding collar 1 +115962 6181 unrewarding collar 1 +115963 6181 collar 2 +115964 6181 for a murder mystery 2 +115965 6182 Franco is an excellent choice for the walled-off but combustible hustler , but he does not give the transcendent performance SONNY needs to overcome gaps in character development and story logic . 0 +115966 6182 Franco is an excellent choice for the walled-off but combustible hustler , but he does not give the transcendent performance SONNY needs to overcome gaps in character development and story logic 1 +115967 6182 Franco is an excellent choice for the walled-off but combustible hustler , but 3 +115968 6182 Franco is an excellent choice for the walled-off but combustible hustler , 4 +115969 6182 Franco is an excellent choice for the walled-off but combustible hustler 4 +115970 6182 is an excellent choice for the walled-off but combustible hustler 3 +115971 6182 an excellent choice for the walled-off but combustible hustler 2 +115972 6182 an excellent choice 3 +115973 6182 excellent choice 3 +115974 6182 for the walled-off but combustible hustler 2 +115975 6182 the walled-off but combustible hustler 2 +115976 6182 walled-off but combustible hustler 2 +115977 6182 walled-off but combustible 2 +115978 6182 walled-off but 2 +115979 6182 walled-off 1 +115980 6182 he does not give the transcendent performance SONNY needs to overcome gaps in character development and story logic 1 +115981 6182 does not give the transcendent performance SONNY needs to overcome gaps in character development and story logic 2 +115982 6182 give the transcendent performance SONNY needs to overcome gaps in character development and story logic 2 +115983 6182 give the transcendent performance 3 +115984 6182 the transcendent performance 4 +115985 6182 transcendent performance 3 +115986 6182 transcendent 3 +115987 6182 SONNY needs to overcome gaps in character development and story logic 0 +115988 6182 needs to overcome gaps in character development and story logic 1 +115989 6182 to overcome gaps in character development and story logic 1 +115990 6182 overcome gaps in character development and story logic 2 +115991 6182 overcome gaps 2 +115992 6182 in character development and story logic 2 +115993 6182 character development and story logic 2 +115994 6182 character development and 2 +115995 6182 story logic 2 +115996 6183 Suffice to say that after seeing this movie in IMAX form , you 'll be more acquainted with the tiniest details of Tom Hanks ' face than his wife is . 2 +115997 6183 Suffice to say that after seeing this movie in IMAX form , you 'll be more acquainted with the tiniest details of Tom Hanks ' face than his wife is 2 +115998 6183 to say that after seeing this movie in IMAX form , you 'll be more acquainted with the tiniest details of Tom Hanks ' face than his wife is 2 +115999 6183 say that after seeing this movie in IMAX form , you 'll be more acquainted with the tiniest details of Tom Hanks ' face than his wife is 1 +116000 6183 that after seeing this movie in IMAX form , you 'll be more acquainted with the tiniest details of Tom Hanks ' face than his wife is 2 +116001 6183 after seeing this movie in IMAX form , you 'll be more acquainted with the tiniest details of Tom Hanks ' face than his wife is 3 +116002 6183 after seeing this movie in IMAX form 2 +116003 6183 seeing this movie in IMAX form 2 +116004 6183 seeing this movie 2 +116005 6183 in IMAX form 2 +116006 6183 IMAX form 2 +116007 6183 , you 'll be more acquainted with the tiniest details of Tom Hanks ' face than his wife is 3 +116008 6183 you 'll be more acquainted with the tiniest details of Tom Hanks ' face than his wife is 2 +116009 6183 'll be more acquainted with the tiniest details of Tom Hanks ' face than his wife is 1 +116010 6183 be more acquainted with the tiniest details of Tom Hanks ' face than his wife is 2 +116011 6183 more acquainted with the tiniest details of Tom Hanks ' face than his wife is 2 +116012 6183 more acquainted with the tiniest details of Tom Hanks ' face 2 +116013 6183 acquainted with the tiniest details of Tom Hanks ' face 3 +116014 6183 with the tiniest details of Tom Hanks ' face 2 +116015 6183 the tiniest details of Tom Hanks ' face 2 +116016 6183 the tiniest details 2 +116017 6183 tiniest details 2 +116018 6183 of Tom Hanks ' face 2 +116019 6183 Tom Hanks ' face 2 +116020 6183 Tom Hanks ' 2 +116021 6183 Hanks ' 2 +116022 6183 than his wife is 2 +116023 6183 his wife is 2 +116024 6184 It just does n't have much else ... especially in a moral sense . 2 +116025 6184 just does n't have much else ... especially in a moral sense . 1 +116026 6184 does n't have much else ... especially in a moral sense . 1 +116027 6184 does n't have much else ... especially in a moral sense 1 +116028 6184 have much else ... especially in a moral sense 2 +116029 6184 have much else ... 2 +116030 6184 have much else 2 +116031 6184 much else 2 +116032 6184 especially in a moral sense 2 +116033 6184 in a moral sense 2 +116034 6184 a moral sense 2 +116035 6184 moral sense 2 +116036 6185 A hallmark film in an increasingly important film industry and worth the look . 3 +116037 6185 A hallmark film in an increasingly important film industry and worth the look 3 +116038 6185 A hallmark film 3 +116039 6185 hallmark film 4 +116040 6185 in an increasingly important film industry and worth the look 3 +116041 6185 in an increasingly important film industry and 3 +116042 6185 in an increasingly important film industry 2 +116043 6185 an increasingly important film industry 3 +116044 6185 increasingly important film industry 4 +116045 6185 increasingly important 2 +116046 6185 worth the look 3 +116047 6186 Has enough wit , energy and geniality to please not only the fanatical adherents on either side , but also people who know nothing about the subject and think they 're not interested . 3 +116048 6186 Has enough wit 3 +116049 6186 enough wit 2 +116050 6186 , energy and geniality to please not only the fanatical adherents on either side , but also people who know nothing about the subject and think they 're not interested . 3 +116051 6186 energy and geniality to please not only the fanatical adherents on either side , but also people who know nothing about the subject and think they 're not interested . 3 +116052 6186 energy and geniality to please not only the fanatical adherents on either side , but also people who know nothing about the subject and think they 3 +116053 6186 energy and geniality 3 +116054 6186 geniality 3 +116055 6186 to please not only the fanatical adherents on either side , but also people who know nothing about the subject and think they 2 +116056 6186 please not only the fanatical adherents on either side , but also people who know nothing about the subject and think they 2 +116057 6186 please not only the fanatical adherents on either side , but also people who know nothing about the subject and 1 +116058 6186 please not only the fanatical adherents on either side , but also people who know nothing about the subject 4 +116059 6186 not only the fanatical adherents on either side , but also people who know nothing about the subject 2 +116060 6186 the fanatical adherents on either side , but also people who know nothing about the subject 2 +116061 6186 the fanatical adherents on either side , but also 2 +116062 6186 the fanatical adherents on either side , 2 +116063 6186 the fanatical adherents on either side 2 +116064 6186 the fanatical adherents 2 +116065 6186 fanatical adherents 2 +116066 6186 fanatical 2 +116067 6186 adherents 2 +116068 6186 people who know nothing about the subject 2 +116069 6186 who know nothing about the subject 1 +116070 6186 know nothing about the subject 2 +116071 6186 nothing about the subject 2 +116072 6186 think they 1 +116073 6186 're not interested . 2 +116074 6186 're not interested 2 +116075 6187 What one is left with , even after the most awful acts are committed , is an overwhelming sadness that feels as if it has made its way into your very bloodstream . 3 +116076 6187 What one is left with 2 +116077 6187 one is left with 2 +116078 6187 is left with 2 +116079 6187 left with 2 +116080 6187 , even after the most awful acts are committed , is an overwhelming sadness that feels as if it has made its way into your very bloodstream . 3 +116081 6187 even after the most awful acts are committed , is an overwhelming sadness that feels as if it has made its way into your very bloodstream . 3 +116082 6187 even after the most awful acts are committed 2 +116083 6187 after the most awful acts are committed 1 +116084 6187 the most awful acts are committed 1 +116085 6187 the most awful acts 0 +116086 6187 most awful acts 1 +116087 6187 awful acts 1 +116088 6187 are committed 3 +116089 6187 , is an overwhelming sadness that feels as if it has made its way into your very bloodstream . 2 +116090 6187 is an overwhelming sadness that feels as if it has made its way into your very bloodstream . 3 +116091 6187 is an overwhelming sadness that feels as if it has made its way into your very bloodstream 1 +116092 6187 an overwhelming sadness that feels as if it has made its way into your very bloodstream 1 +116093 6187 an overwhelming sadness 2 +116094 6187 overwhelming sadness 1 +116095 6187 that feels as if it has made its way into your very bloodstream 2 +116096 6187 feels as if it has made its way into your very bloodstream 2 +116097 6187 as if it has made its way into your very bloodstream 3 +116098 6187 if it has made its way into your very bloodstream 2 +116099 6187 it has made its way into your very bloodstream 3 +116100 6187 has made its way into your very bloodstream 3 +116101 6187 made its way into your very bloodstream 2 +116102 6187 made its way 2 +116103 6187 into your very bloodstream 2 +116104 6187 your very bloodstream 2 +116105 6187 very bloodstream 2 +116106 6187 bloodstream 2 +116107 6188 -LRB- Lee -RRB- treats his audience the same way that Jim Brown treats his women -- as dumb , credulous , unassuming , subordinate subjects . 0 +116108 6188 -LRB- Lee -RRB- 2 +116109 6188 Lee -RRB- 2 +116110 6188 treats his audience the same way that Jim Brown treats his women -- as dumb , credulous , unassuming , subordinate subjects . 0 +116111 6188 treats his audience the same way that Jim Brown treats his women -- as dumb , credulous , unassuming , subordinate subjects 0 +116112 6188 treats his audience 2 +116113 6188 the same way that Jim Brown treats his women -- as dumb , credulous , unassuming , subordinate subjects 1 +116114 6188 that Jim Brown treats his women -- as dumb , credulous , unassuming , subordinate subjects 0 +116115 6188 Jim Brown treats his women -- as dumb , credulous , unassuming , subordinate subjects 0 +116116 6188 Jim Brown 3 +116117 6188 treats his women -- as dumb , credulous , unassuming , subordinate subjects 1 +116118 6188 treats his women -- 2 +116119 6188 treats his women 2 +116120 6188 his women 2 +116121 6188 as dumb , credulous , unassuming , subordinate subjects 1 +116122 6188 dumb , credulous , unassuming , subordinate subjects 0 +116123 6188 dumb , credulous , unassuming , subordinate 0 +116124 6188 , credulous , unassuming , subordinate 2 +116125 6188 credulous , unassuming , subordinate 1 +116126 6188 credulous 3 +116127 6188 , unassuming , subordinate 1 +116128 6188 unassuming , subordinate 1 +116129 6188 , subordinate 2 +116130 6188 subordinate 2 +116131 6189 ... there is enough originality in ` Life ' to distance it from the pack of paint-by-number romantic comedies that so often end up on cinema screens . 3 +116132 6189 there is enough originality in ` Life ' to distance it from the pack of paint-by-number romantic comedies that so often end up on cinema screens . 3 +116133 6189 is enough originality in ` Life ' to distance it from the pack of paint-by-number romantic comedies that so often end up on cinema screens . 3 +116134 6189 is enough originality in ` Life ' to distance it from the pack of paint-by-number romantic comedies that so often end up on cinema screens 3 +116135 6189 enough originality in ` Life ' to distance it from the pack of paint-by-number romantic comedies that so often end up on cinema screens 3 +116136 6189 enough originality in ` Life ' to distance it from the pack of paint-by-number romantic comedies 3 +116137 6189 originality in ` Life ' to distance it from the pack of paint-by-number romantic comedies 3 +116138 6189 originality in ` Life ' 3 +116139 6189 in ` Life ' 2 +116140 6189 in ` Life 2 +116141 6189 to distance it from the pack of paint-by-number romantic comedies 3 +116142 6189 distance it from the pack of paint-by-number romantic comedies 3 +116143 6189 distance it 2 +116144 6189 from the pack of paint-by-number romantic comedies 2 +116145 6189 the pack of paint-by-number romantic comedies 2 +116146 6189 the pack 2 +116147 6189 of paint-by-number romantic comedies 3 +116148 6189 paint-by-number romantic comedies 2 +116149 6189 that so often end up on cinema screens 3 +116150 6189 so often end up on cinema screens 3 +116151 6189 end up on cinema screens 2 +116152 6189 on cinema screens 2 +116153 6189 cinema screens 2 +116154 6190 A feature-length , R-rated , road-trip version of Mama 's Family . 2 +116155 6190 A feature-length , R-rated , road-trip version of Mama 2 +116156 6190 A feature-length , R-rated , road-trip version 2 +116157 6190 feature-length , R-rated , road-trip version 2 +116158 6190 , R-rated , road-trip version 2 +116159 6190 R-rated , road-trip version 2 +116160 6190 R-rated 2 +116161 6190 , road-trip version 3 +116162 6190 road-trip version 2 +116163 6190 of Mama 2 +116164 6190 's Family . 2 +116165 6190 's Family 2 +116166 6191 The disjointed mess flows as naturally as Jolie 's hideous yellow ` do . 0 +116167 6191 The disjointed mess 1 +116168 6191 disjointed mess 1 +116169 6191 flows as naturally as Jolie 's hideous yellow ` do . 2 +116170 6191 flows as naturally as Jolie 's hideous yellow ` do 2 +116171 6191 flows as naturally 3 +116172 6191 as naturally 3 +116173 6191 as Jolie 's hideous yellow ` do 1 +116174 6191 Jolie 's hideous yellow ` do 1 +116175 6191 Jolie 's hideous yellow 1 +116176 6191 Jolie 's 2 +116177 6191 hideous yellow 1 +116178 6191 hideous 0 +116179 6191 ` do 2 +116180 6192 Though Jackson does n't always succeed in integrating the characters in the foreground into the extraordinarily rich landscape , it must be said that he is an imaginative filmmaker who can see the forest for the trees . 3 +116181 6192 Though Jackson does n't always succeed in integrating the characters in the foreground into the extraordinarily rich landscape 1 +116182 6192 Jackson does n't always succeed in integrating the characters in the foreground into the extraordinarily rich landscape 2 +116183 6192 does n't always succeed in integrating the characters in the foreground into the extraordinarily rich landscape 2 +116184 6192 succeed in integrating the characters in the foreground into the extraordinarily rich landscape 4 +116185 6192 in integrating the characters in the foreground into the extraordinarily rich landscape 3 +116186 6192 integrating the characters in the foreground into the extraordinarily rich landscape 4 +116187 6192 integrating the characters in the foreground 3 +116188 6192 integrating the characters 3 +116189 6192 integrating 2 +116190 6192 in the foreground 2 +116191 6192 the foreground 2 +116192 6192 foreground 2 +116193 6192 into the extraordinarily rich landscape 3 +116194 6192 the extraordinarily rich landscape 4 +116195 6192 extraordinarily rich landscape 4 +116196 6192 extraordinarily rich 3 +116197 6192 , it must be said that he is an imaginative filmmaker who can see the forest for the trees . 3 +116198 6192 it must be said that he is an imaginative filmmaker who can see the forest for the trees . 3 +116199 6192 must be said that he is an imaginative filmmaker who can see the forest for the trees . 3 +116200 6192 must be said that he is an imaginative filmmaker who can see the forest for the trees 3 +116201 6192 be said that he is an imaginative filmmaker who can see the forest for the trees 4 +116202 6192 said that he is an imaginative filmmaker who can see the forest for the trees 3 +116203 6192 that he is an imaginative filmmaker who can see the forest for the trees 4 +116204 6192 he is an imaginative filmmaker who can see the forest for the trees 3 +116205 6192 is an imaginative filmmaker who can see the forest for the trees 4 +116206 6192 an imaginative filmmaker who can see the forest for the trees 4 +116207 6192 an imaginative filmmaker 3 +116208 6192 imaginative filmmaker 3 +116209 6192 who can see the forest for the trees 2 +116210 6192 can see the forest for the trees 3 +116211 6192 see the forest for the trees 3 +116212 6192 the forest for the trees 2 +116213 6192 the forest 3 +116214 6192 forest 2 +116215 6192 for the trees 2 +116216 6192 the trees 2 +116217 6193 A terrific B movie -- in fact , the best in recent memory . 4 +116218 6193 A terrific B movie -- in fact , the best in recent memory 4 +116219 6193 A terrific B movie -- 3 +116220 6193 A terrific B movie 4 +116221 6193 terrific B movie 4 +116222 6193 in fact , the best in recent memory 4 +116223 6193 fact , the best in recent memory 4 +116224 6193 the best in recent memory 4 +116225 6194 This is a film that manages to find greatness in the hue of its drastic iconography . 3 +116226 6194 is a film that manages to find greatness in the hue of its drastic iconography . 3 +116227 6194 is a film that manages to find greatness in the hue of its drastic iconography 4 +116228 6194 a film that manages to find greatness in the hue of its drastic iconography 3 +116229 6194 that manages to find greatness in the hue of its drastic iconography 3 +116230 6194 manages to find greatness in the hue of its drastic iconography 4 +116231 6194 to find greatness in the hue of its drastic iconography 3 +116232 6194 find greatness in the hue of its drastic iconography 2 +116233 6194 find greatness 3 +116234 6194 in the hue of its drastic iconography 2 +116235 6194 the hue of its drastic iconography 2 +116236 6194 the hue 2 +116237 6194 hue 2 +116238 6194 of its drastic iconography 2 +116239 6194 its drastic iconography 3 +116240 6194 drastic iconography 2 +116241 6194 drastic 2 +116242 6194 iconography 2 +116243 6195 The slam-bang superheroics are kinetic enough to engross even the most antsy youngsters . 4 +116244 6195 The slam-bang superheroics 2 +116245 6195 slam-bang superheroics 2 +116246 6195 superheroics 2 +116247 6195 are kinetic enough to engross even the most antsy youngsters . 3 +116248 6195 are kinetic enough to engross even the most antsy youngsters 3 +116249 6195 kinetic enough to engross even the most antsy youngsters 4 +116250 6195 kinetic enough 2 +116251 6195 to engross even the most antsy youngsters 3 +116252 6195 engross even the most antsy youngsters 3 +116253 6195 engross even 3 +116254 6195 engross 3 +116255 6195 the most antsy youngsters 2 +116256 6195 most antsy youngsters 3 +116257 6195 most antsy 2 +116258 6195 antsy 2 +116259 6196 I firmly believe that a good video game movie is going to show up soon . 3 +116260 6196 firmly believe that a good video game movie is going to show up soon . 3 +116261 6196 believe that a good video game movie is going to show up soon . 2 +116262 6196 believe that a good video game movie is going to show up soon 2 +116263 6196 that a good video game movie is going to show up soon 3 +116264 6196 a good video game movie is going to show up soon 2 +116265 6196 a good video game movie 4 +116266 6196 good video game movie 3 +116267 6196 video game movie 2 +116268 6196 game movie 2 +116269 6196 is going to show up soon 2 +116270 6196 going to show up soon 2 +116271 6196 to show up soon 2 +116272 6196 show up soon 2 +116273 6197 Can you bear the laughter ? 3 +116274 6197 Can you bear the laughter 2 +116275 6197 bear the laughter 3 +116276 6197 the laughter 2 +116277 6198 One of the worst films of 2002 . 0 +116278 6198 One of the worst films of 2002 1 +116279 6198 of the worst films of 2002 0 +116280 6198 the worst films of 2002 0 +116281 6199 Needed a little less bling-bling and a lot more romance . 1 +116282 6199 Needed a little less bling-bling and a lot more romance 1 +116283 6199 a little less bling-bling and a lot more romance 3 +116284 6199 little less bling-bling and a lot more romance 1 +116285 6199 little less bling-bling and a lot more 1 +116286 6199 little less bling-bling and 2 +116287 6199 little less bling-bling 1 +116288 6199 less bling-bling 1 +116289 6199 bling-bling 2 +116290 6200 Not even Solondz 's thirst for controversy , sketchy characters and immature provocations can fully succeed at cheapening it . 1 +116291 6200 Not even Solondz 's thirst for controversy 2 +116292 6200 even Solondz 's thirst for controversy 2 +116293 6200 Solondz 's thirst for controversy 2 +116294 6200 Solondz 's thirst 2 +116295 6200 , sketchy characters and immature provocations can fully succeed at cheapening it . 1 +116296 6200 sketchy characters and immature provocations can fully succeed at cheapening it . 1 +116297 6200 sketchy characters and immature provocations 0 +116298 6200 characters and immature provocations 2 +116299 6200 and immature provocations 1 +116300 6200 immature provocations 1 +116301 6200 provocations 2 +116302 6200 can fully succeed at cheapening it . 1 +116303 6200 can fully succeed at cheapening it 2 +116304 6200 can fully 2 +116305 6200 succeed at cheapening it 0 +116306 6200 at cheapening it 1 +116307 6200 cheapening it 1 +116308 6200 cheapening 1 +116309 6201 Like a three-ring circus , there are side stories aplenty -- none of them memorable . 1 +116310 6201 Like a three-ring circus 2 +116311 6201 a three-ring circus 2 +116312 6201 three-ring circus 2 +116313 6201 three-ring 2 +116314 6201 , there are side stories aplenty -- none of them memorable . 1 +116315 6201 there are side stories aplenty -- none of them memorable . 1 +116316 6201 there are side stories aplenty -- none of them memorable 0 +116317 6201 there are side stories aplenty -- 2 +116318 6201 there are side stories aplenty 2 +116319 6201 are side stories aplenty 3 +116320 6201 are side stories 2 +116321 6201 side stories 2 +116322 6201 aplenty 3 +116323 6201 none of them memorable 1 +116324 6202 Another entertaining romp from Robert Rodriguez . 3 +116325 6202 Another entertaining 3 +116326 6202 romp from Robert Rodriguez . 3 +116327 6202 romp from Robert Rodriguez 2 +116328 6202 from Robert Rodriguez 2 +116329 6203 A family film that contains some hefty thematic material on time , death , eternity , and what is needed to live a rich and full life . 3 +116330 6203 A family film that contains some hefty thematic material on time , death , eternity , and what 3 +116331 6203 A family film 3 +116332 6203 that contains some hefty thematic material on time , death , eternity , and what 3 +116333 6203 contains some hefty thematic material on time , death , eternity , and what 3 +116334 6203 contains some hefty thematic material 2 +116335 6203 some hefty thematic material 2 +116336 6203 hefty thematic material 3 +116337 6203 thematic material 2 +116338 6203 on time , death , eternity , and what 2 +116339 6203 time , death , eternity , and what 2 +116340 6203 time , death , eternity , and 2 +116341 6203 time , death , eternity , 2 +116342 6203 time , death , eternity 2 +116343 6203 time , death , 2 +116344 6203 time , death 1 +116345 6203 time , 2 +116346 6203 eternity 2 +116347 6203 is needed to live a rich and full life . 3 +116348 6203 is needed to live a rich and full life 3 +116349 6203 needed to live a rich and full life 2 +116350 6203 to live a rich and full life 2 +116351 6203 live a rich and full life 3 +116352 6203 a rich and full life 3 +116353 6203 rich and full life 3 +116354 6203 rich and full 3 +116355 6204 It 's a masterpiece . 4 +116356 6204 's a masterpiece . 4 +116357 6204 's a masterpiece 4 +116358 6205 I was trying to decide what annoyed me most about God is Great ... I 'm Not , and then I realized that I just did n't care . 0 +116359 6205 I was trying to decide what annoyed me most about God is Great ... I 'm Not , and then I realized that I just did n't care 0 +116360 6205 I was trying to decide what annoyed me most about God is Great ... 1 +116361 6205 I was trying to decide what annoyed me most about God is Great 1 +116362 6205 was trying to decide what annoyed me most about God is Great 1 +116363 6205 trying to decide what annoyed me most about God is Great 1 +116364 6205 to decide what annoyed me most about God is Great 0 +116365 6205 decide what annoyed me most about God is Great 1 +116366 6205 what annoyed me most about God is Great 1 +116367 6205 annoyed me most about God is Great 1 +116368 6205 annoyed 1 +116369 6205 me most about God is Great 2 +116370 6205 most about God is Great 2 +116371 6205 most about God 2 +116372 6205 about God 2 +116373 6205 I 'm Not , and then I realized that I just did n't care 1 +116374 6205 I 'm Not , and then 2 +116375 6205 I 'm Not , and 2 +116376 6205 I 'm Not , 2 +116377 6205 I 'm Not 1 +116378 6205 I realized that I just did n't care 1 +116379 6205 realized that I just did n't care 1 +116380 6205 that I just did n't care 1 +116381 6205 I just did n't care 1 +116382 6205 just did n't care 1 +116383 6205 did n't care 1 +116384 6206 Watching Spirited Away is like watching an Eastern imagination explode . 2 +116385 6206 Watching Spirited Away 2 +116386 6206 is like watching an Eastern imagination explode . 2 +116387 6206 is like watching an Eastern imagination explode 2 +116388 6206 like watching an Eastern imagination explode 3 +116389 6206 watching an Eastern imagination explode 2 +116390 6206 an Eastern imagination explode 2 +116391 6206 an Eastern imagination 2 +116392 6206 Eastern imagination 2 +116393 6207 The entire point of a shaggy dog story , of course , is that it goes nowhere , and this is classic nowheresville in every sense . 1 +116394 6207 The entire point of a shaggy dog story , of course , is that it goes nowhere , and this is classic nowheresville in every sense 1 +116395 6207 The entire point of a shaggy dog story , of course , is that it goes nowhere , and 1 +116396 6207 The entire point of a shaggy dog story , of course , is that it goes nowhere , 1 +116397 6207 The entire point of a shaggy dog story , of course , is that it goes nowhere 2 +116398 6207 The entire point of a shaggy dog story , of course , 2 +116399 6207 The entire point of a shaggy dog story , of course 2 +116400 6207 The entire point of a shaggy dog story , 2 +116401 6207 The entire point of a shaggy dog story 1 +116402 6207 The entire point 2 +116403 6207 entire point 2 +116404 6207 of a shaggy dog story 2 +116405 6207 a shaggy dog story 2 +116406 6207 shaggy dog story 2 +116407 6207 dog story 2 +116408 6207 is that it goes nowhere 1 +116409 6207 that it goes nowhere 1 +116410 6207 this is classic nowheresville in every sense 1 +116411 6207 is classic nowheresville in every sense 0 +116412 6207 classic nowheresville in every sense 2 +116413 6207 classic nowheresville 2 +116414 6207 nowheresville 1 +116415 6208 -LRB- A -RRB- smarter and much funnier version of the old Police Academy flicks . 3 +116416 6208 smarter and much funnier version of the old Police Academy flicks . 4 +116417 6208 smarter and much 3 +116418 6208 funnier version of the old Police Academy flicks . 3 +116419 6208 funnier version of the old Police Academy flicks 3 +116420 6208 version of the old Police Academy flicks 2 +116421 6208 of the old Police Academy flicks 2 +116422 6208 the old Police Academy flicks 2 +116423 6208 old Police Academy flicks 2 +116424 6208 Police Academy flicks 2 +116425 6208 Academy flicks 2 +116426 6209 It tells its story in a flat manner and leaves you with the impression that you should have gotten more out of it than you did . 2 +116427 6209 tells its story in a flat manner and leaves you with the impression that you should have gotten more out of it than you did . 0 +116428 6209 tells its story in a flat manner and leaves you with the impression that you should have gotten more out of it than you did 1 +116429 6209 tells its story in a flat manner and 2 +116430 6209 tells its story in a flat manner 1 +116431 6209 tells its story 2 +116432 6209 in a flat manner 1 +116433 6209 a flat manner 2 +116434 6209 flat manner 1 +116435 6209 leaves you with the impression that you should have gotten more out of it than you did 1 +116436 6209 with the impression that you should have gotten more out of it than you did 1 +116437 6209 the impression that you should have gotten more out of it than you did 2 +116438 6209 that you should have gotten more out of it than you did 1 +116439 6209 you should have gotten more out of it than you did 2 +116440 6209 should have gotten more out of it than you did 1 +116441 6209 have gotten more out of it than you did 2 +116442 6209 gotten more out of it than you did 2 +116443 6209 gotten more out of it 2 +116444 6209 gotten more out 2 +116445 6209 gotten 2 +116446 6209 than you did 2 +116447 6209 you did 2 +116448 6210 As with so many merchandised-to-the-max movies of this type , more time appears to have gone into recruiting the right bands for the playlist and the costuming of the stars than into the script , which has a handful of smart jokes and not much else . 1 +116449 6210 As with so many merchandised-to-the-max movies of this type 1 +116450 6210 with so many merchandised-to-the-max movies of this type 2 +116451 6210 so many merchandised-to-the-max movies of this type 1 +116452 6210 so many merchandised-to-the-max movies 1 +116453 6210 merchandised-to-the-max movies 2 +116454 6210 merchandised-to-the-max 1 +116455 6210 of this type 2 +116456 6210 this type 2 +116457 6210 , more time appears to have gone into recruiting the right bands for the playlist and the costuming of the stars than into the script , which has a handful of smart jokes and not much else . 1 +116458 6210 more time appears to have gone into recruiting the right bands for the playlist and the costuming of the stars than into the script , which has a handful of smart jokes and not much else . 1 +116459 6210 appears to have gone into recruiting the right bands for the playlist and the costuming of the stars than into the script , which has a handful of smart jokes and not much else . 2 +116460 6210 appears to have gone into recruiting the right bands for the playlist and the costuming of the stars than into the script , which has a handful of smart jokes and not much else 2 +116461 6210 to have gone into recruiting the right bands for the playlist and the costuming of the stars than into the script , which has a handful of smart jokes and not much else 1 +116462 6210 have gone into recruiting the right bands for the playlist and the costuming of the stars than into the script , which has a handful of smart jokes and not much else 1 +116463 6210 gone into recruiting the right bands for the playlist and the costuming of the stars than into the script , which has a handful of smart jokes and not much else 2 +116464 6210 gone into recruiting the right bands for the playlist and the costuming of the stars than into the script , which has a handful of smart jokes and 2 +116465 6210 gone into recruiting the right bands for the playlist and the costuming of the stars than into the script , which has a handful of smart jokes 2 +116466 6210 into recruiting the right bands for the playlist and the costuming of the stars than into the script , which has a handful of smart jokes 3 +116467 6210 recruiting the right bands for the playlist and the costuming of the stars than into the script , which has a handful of smart jokes 2 +116468 6210 recruiting the right bands for the playlist and the costuming of the stars 2 +116469 6210 recruiting 2 +116470 6210 the right bands for the playlist and the costuming of the stars 3 +116471 6210 the right bands for the playlist and 2 +116472 6210 the right bands for the playlist 2 +116473 6210 the right bands 2 +116474 6210 right bands 2 +116475 6210 for the playlist 1 +116476 6210 the playlist 2 +116477 6210 playlist 2 +116478 6210 the costuming of the stars 3 +116479 6210 the costuming 2 +116480 6210 costuming 2 +116481 6210 of the stars 2 +116482 6210 than into the script , which has a handful of smart jokes 3 +116483 6210 into the script , which has a handful of smart jokes 3 +116484 6210 the script , which has a handful of smart jokes 3 +116485 6210 which has a handful of smart jokes 3 +116486 6210 has a handful of smart jokes 3 +116487 6210 a handful of smart jokes 3 +116488 6210 of smart jokes 3 +116489 6210 smart jokes 3 +116490 6211 Foster breathes life into a roll that could have otherwise been bland and run of the mill . 3 +116491 6211 breathes life into a roll that could have otherwise been bland and run of the mill . 3 +116492 6211 breathes life into a roll that could have otherwise been bland and run of the mill 3 +116493 6211 breathes life 3 +116494 6211 into a roll that could have otherwise been bland and run of the mill 3 +116495 6211 a roll that could have otherwise been bland and run of the mill 2 +116496 6211 a roll 2 +116497 6211 that could have otherwise been bland and run of the mill 2 +116498 6211 could have otherwise been bland and run of the mill 2 +116499 6211 have otherwise been bland and run of the mill 2 +116500 6211 have otherwise been bland and 1 +116501 6211 have otherwise been bland 2 +116502 6211 have otherwise 2 +116503 6211 been bland 0 +116504 6211 run of the mill 1 +116505 6211 of the mill 2 +116506 6211 the mill 2 +116507 6211 mill 2 +116508 6212 Just how these families interact may surprise you . 2 +116509 6212 Just how these families interact 2 +116510 6212 how these families interact 2 +116511 6212 these families interact 3 +116512 6212 these families 2 +116513 6212 interact 2 +116514 6212 may surprise you . 2 +116515 6212 may surprise you 3 +116516 6212 surprise you 3 +116517 6213 A B-movie you can sit through , enjoy on a certain level and then forget . 3 +116518 6213 A B-movie you 2 +116519 6213 B-movie you 1 +116520 6213 can sit through , enjoy on a certain level and then forget . 2 +116521 6213 can sit through , enjoy on a certain level and then forget 2 +116522 6213 sit through , enjoy on a certain level and then forget 2 +116523 6213 sit through , enjoy on a certain level and then 3 +116524 6213 sit through , enjoy on a certain level and 3 +116525 6213 sit through , enjoy on a certain level 3 +116526 6213 sit through , 1 +116527 6213 enjoy on a certain level 3 +116528 6213 on a certain level 2 +116529 6213 a certain level 2 +116530 6213 certain level 2 +116531 6214 Trouble Every Day is a success in some sense , but it 's hard to like a film so cold and dead . 1 +116532 6214 Trouble Every Day is a success in some sense , but it 's hard to like a film so cold and dead 0 +116533 6214 Trouble Every Day is a success in some sense , but 2 +116534 6214 Trouble Every Day is a success in some sense , 3 +116535 6214 Trouble Every Day is a success in some sense 3 +116536 6214 is a success in some sense 3 +116537 6214 a success in some sense 2 +116538 6214 in some sense 2 +116539 6214 some sense 2 +116540 6214 it 's hard to like a film so cold and dead 0 +116541 6214 's hard to like a film so cold and dead 0 +116542 6214 hard to like a film so cold and dead 1 +116543 6214 to like a film so cold and dead 2 +116544 6214 like a film so cold and dead 1 +116545 6214 a film so cold and dead 0 +116546 6214 so cold and dead 1 +116547 6214 cold and dead 0 +116548 6215 Schneider 's mugging is relentless and his constant need to suddenly transpose himself into another character undermines the story 's continuity and progression . 2 +116549 6215 Schneider 's mugging is relentless and his constant need to suddenly transpose himself into another character undermines the story 's continuity and progression 0 +116550 6215 Schneider 's mugging is relentless and 2 +116551 6215 Schneider 's mugging is relentless 2 +116552 6215 Schneider 's mugging 2 +116553 6215 is relentless 2 +116554 6215 his constant need to suddenly transpose himself into another character undermines the story 's continuity and progression 1 +116555 6215 his constant need to suddenly transpose himself into another character 1 +116556 6215 constant need to suddenly transpose himself into another character 1 +116557 6215 need to suddenly transpose himself into another character 2 +116558 6215 to suddenly transpose himself into another character 2 +116559 6215 suddenly transpose himself into another character 2 +116560 6215 transpose himself into another character 2 +116561 6215 transpose himself 2 +116562 6215 transpose 2 +116563 6215 into another character 2 +116564 6215 undermines the story 's continuity and progression 1 +116565 6215 the story 's continuity and progression 2 +116566 6215 continuity and progression 2 +116567 6215 continuity and 2 +116568 6216 They are what makes it worth the trip to the theatre . 3 +116569 6216 are what makes it worth the trip to the theatre . 3 +116570 6216 are what makes it worth the trip to the theatre 4 +116571 6216 what makes it worth the trip to the theatre 3 +116572 6216 makes it worth the trip to the theatre 3 +116573 6216 worth the trip to the theatre 4 +116574 6216 the trip to the theatre 2 +116575 6217 Well , it probably wo n't have you swinging from the trees hooting it 's praises , but it 's definitely worth taking a look . 3 +116576 6217 Well , it probably wo n't have you swinging from the trees hooting it 's praises , but it 's definitely worth taking a look 2 +116577 6217 Well , it probably wo n't have you swinging from the trees hooting it 's praises , but 1 +116578 6217 Well , it probably wo n't have you swinging from the trees hooting it 's praises , 1 +116579 6217 Well , it probably wo n't have you swinging from the trees hooting it 's praises 1 +116580 6217 , it probably wo n't have you swinging from the trees hooting it 's praises 1 +116581 6217 it probably wo n't have you swinging from the trees hooting it 's praises 1 +116582 6217 probably wo n't have you swinging from the trees hooting it 's praises 1 +116583 6217 wo n't have you swinging from the trees hooting it 's praises 1 +116584 6217 have you swinging from the trees hooting it 's praises 4 +116585 6217 you swinging from the trees hooting it 's praises 3 +116586 6217 swinging from the trees hooting it 's praises 4 +116587 6217 from the trees hooting it 's praises 2 +116588 6217 the trees hooting it 's praises 3 +116589 6217 hooting it 's praises 3 +116590 6217 hooting 1 +116591 6217 it 's praises 2 +116592 6217 's praises 2 +116593 6217 praises 3 +116594 6217 it 's definitely worth taking a look 4 +116595 6217 's definitely worth taking a look 3 +116596 6217 's definitely worth 3 +116597 6217 taking a look 2 +116598 6218 A gentle and engrossing character study . 3 +116599 6218 A gentle and engrossing character 3 +116600 6218 gentle and engrossing character 3 +116601 6218 gentle and engrossing 3 +116602 6218 study . 2 +116603 6219 Denver should not get the first and last look at one of the most triumphant performances of Vanessa Redgrave 's career . 2 +116604 6219 Denver 2 +116605 6219 should not get the first and last look at one of the most triumphant performances of Vanessa Redgrave 's career . 3 +116606 6219 should not get the first and last look at one of the most triumphant performances of Vanessa Redgrave 's career 4 +116607 6219 get the first and last look at one of the most triumphant performances of Vanessa Redgrave 's career 4 +116608 6219 the first and last look at one of the most triumphant performances of Vanessa Redgrave 's career 4 +116609 6219 the first and last look at one 2 +116610 6219 the first and last look 2 +116611 6219 first and last look 2 +116612 6219 and last look 2 +116613 6219 last look 2 +116614 6219 at one 2 +116615 6219 of the most triumphant performances of Vanessa Redgrave 's career 4 +116616 6219 the most triumphant performances of Vanessa Redgrave 's career 4 +116617 6219 the most triumphant performances 4 +116618 6219 most triumphant performances 4 +116619 6219 most triumphant 3 +116620 6219 of Vanessa Redgrave 's career 2 +116621 6219 Vanessa Redgrave 's career 2 +116622 6219 Vanessa Redgrave 's 2 +116623 6219 Vanessa 2 +116624 6219 Redgrave 's 2 +116625 6219 Redgrave 2 +116626 6220 ` Butterfingered ' is the word for the big-fisted direction of Jez Butterworth , who manages to blast even the smallest sensitivities from the romance with his clamorous approach . 1 +116627 6220 Butterfingered ' is the word for the big-fisted direction of Jez Butterworth , who manages to blast even the smallest sensitivities from the romance with his clamorous approach . 2 +116628 6220 Butterfingered 1 +116629 6220 ' is the word for the big-fisted direction of Jez Butterworth , who manages to blast even the smallest sensitivities from the romance with his clamorous approach . 2 +116630 6220 is the word for the big-fisted direction of Jez Butterworth , who manages to blast even the smallest sensitivities from the romance with his clamorous approach . 1 +116631 6220 is the word for the big-fisted direction of Jez Butterworth , who manages to blast even the smallest sensitivities from the romance with his clamorous approach 1 +116632 6220 the word for the big-fisted direction of Jez Butterworth , who manages to blast even the smallest sensitivities from the romance with his clamorous approach 2 +116633 6220 for the big-fisted direction of Jez Butterworth , who manages to blast even the smallest sensitivities from the romance with his clamorous approach 1 +116634 6220 the big-fisted direction of Jez Butterworth , who manages to blast even the smallest sensitivities from the romance with his clamorous approach 1 +116635 6220 the big-fisted direction 2 +116636 6220 big-fisted direction 2 +116637 6220 big-fisted 3 +116638 6220 of Jez Butterworth , who manages to blast even the smallest sensitivities from the romance with his clamorous approach 1 +116639 6220 Jez Butterworth , who manages to blast even the smallest sensitivities from the romance with his clamorous approach 2 +116640 6220 Jez Butterworth , 2 +116641 6220 Jez Butterworth 2 +116642 6220 Jez 2 +116643 6220 Butterworth 2 +116644 6220 who manages to blast even the smallest sensitivities from the romance with his clamorous approach 1 +116645 6220 manages to blast even the smallest sensitivities from the romance with his clamorous approach 2 +116646 6220 to blast even the smallest sensitivities from the romance with his clamorous approach 1 +116647 6220 blast even the smallest sensitivities from the romance with his clamorous approach 2 +116648 6220 blast even the smallest sensitivities from the romance 1 +116649 6220 even the smallest sensitivities from the romance 2 +116650 6220 even the smallest sensitivities 2 +116651 6220 the smallest sensitivities 2 +116652 6220 smallest sensitivities 2 +116653 6220 smallest 2 +116654 6220 sensitivities 2 +116655 6220 from the romance 2 +116656 6220 with his clamorous approach 2 +116657 6220 his clamorous approach 1 +116658 6220 clamorous approach 2 +116659 6220 clamorous 2 +116660 6221 Caruso sometimes descends into sub-Tarantino cuteness ... but for the most part he makes sure The Salton Sea works the way a good noir should , keeping it tight and nasty . 3 +116661 6221 Caruso sometimes descends into sub-Tarantino cuteness ... but for the most part he makes sure The Salton Sea works the way a good noir should , keeping it tight and nasty 3 +116662 6221 Caruso sometimes descends into sub-Tarantino cuteness ... but 2 +116663 6221 Caruso sometimes descends into sub-Tarantino cuteness ... 2 +116664 6221 Caruso sometimes descends into sub-Tarantino cuteness 2 +116665 6221 sometimes descends into sub-Tarantino cuteness 3 +116666 6221 descends into sub-Tarantino cuteness 1 +116667 6221 descends 2 +116668 6221 into sub-Tarantino cuteness 3 +116669 6221 sub-Tarantino cuteness 2 +116670 6221 sub-Tarantino 2 +116671 6221 for the most part he makes sure The Salton Sea works the way a good noir should , keeping it tight and nasty 3 +116672 6221 he makes sure The Salton Sea works the way a good noir should , keeping it tight and nasty 3 +116673 6221 makes sure The Salton Sea works the way a good noir should , keeping it tight and nasty 3 +116674 6221 makes sure The Salton Sea works the way a good noir should , 3 +116675 6221 makes sure The Salton Sea works the way a good noir should 3 +116676 6221 sure The Salton Sea works the way a good noir should 2 +116677 6221 The Salton Sea works the way a good noir should 3 +116678 6221 works the way a good noir should 3 +116679 6221 the way a good noir should 3 +116680 6221 a good noir should 2 +116681 6221 a good noir 3 +116682 6221 good noir 3 +116683 6221 keeping it tight and nasty 2 +116684 6221 it tight and nasty 3 +116685 6221 tight and nasty 3 +116686 6222 Just watch Bettany strut his stuff . 2 +116687 6222 watch Bettany strut his stuff . 2 +116688 6222 watch Bettany strut his stuff 2 +116689 6222 Bettany strut his stuff 3 +116690 6222 strut his stuff 4 +116691 6222 strut 2 +116692 6222 his stuff 2 +116693 6223 Despite its faults , Gangs excels in spectacle and pacing . 3 +116694 6223 Despite its faults 2 +116695 6223 , Gangs excels in spectacle and pacing . 3 +116696 6223 Gangs excels in spectacle and pacing . 3 +116697 6223 excels in spectacle and pacing . 3 +116698 6223 excels in spectacle and pacing 3 +116699 6223 in spectacle and pacing 2 +116700 6223 spectacle and pacing 3 +116701 6223 spectacle and 1 +116702 6224 The most remarkable -LRB- and frustrating -RRB- thing about World Traveler , which opens today in Manhattan , is that its protagonist , after being an object of intense scrutiny for 104 minutes , remains a complete blank . 2 +116703 6224 The most remarkable -LRB- and frustrating -RRB- thing about World Traveler , which opens today in Manhattan , 2 +116704 6224 The most remarkable -LRB- and frustrating -RRB- thing about World Traveler , which opens today in Manhattan 1 +116705 6224 The most remarkable -LRB- and frustrating -RRB- thing about World Traveler , 1 +116706 6224 The most remarkable -LRB- and frustrating -RRB- thing about World Traveler 2 +116707 6224 The most remarkable -LRB- and frustrating -RRB- thing 1 +116708 6224 most remarkable -LRB- and frustrating -RRB- thing 2 +116709 6224 -LRB- and frustrating -RRB- thing 2 +116710 6224 -LRB- and frustrating -RRB- 2 +116711 6224 -LRB- and frustrating 1 +116712 6224 about World Traveler 2 +116713 6224 which opens today in Manhattan 2 +116714 6224 opens today in Manhattan 2 +116715 6224 today in Manhattan 2 +116716 6224 is that its protagonist , after being an object of intense scrutiny for 104 minutes , remains a complete blank . 1 +116717 6224 is that its protagonist , after being an object of intense scrutiny for 104 minutes , remains a complete blank 0 +116718 6224 that its protagonist , after being an object of intense scrutiny for 104 minutes , remains a complete blank 0 +116719 6224 its protagonist , after being an object of intense scrutiny for 104 minutes , remains a complete blank 1 +116720 6224 , after being an object of intense scrutiny for 104 minutes , remains a complete blank 1 +116721 6224 after being an object of intense scrutiny for 104 minutes , remains a complete blank 1 +116722 6224 after being an object of intense scrutiny for 104 minutes 2 +116723 6224 being an object of intense scrutiny for 104 minutes 2 +116724 6224 an object of intense scrutiny for 104 minutes 2 +116725 6224 an object 2 +116726 6224 of intense scrutiny for 104 minutes 1 +116727 6224 intense scrutiny for 104 minutes 1 +116728 6224 intense scrutiny 2 +116729 6224 for 104 minutes 2 +116730 6224 104 minutes 2 +116731 6224 104 2 +116732 6224 , remains a complete blank 3 +116733 6224 remains a complete blank 1 +116734 6224 a complete blank 2 +116735 6224 complete blank 1 +116736 6225 Mr. Koshashvili is a director to watch . 4 +116737 6225 Mr. Koshashvili 2 +116738 6225 Koshashvili 2 +116739 6225 is a director to watch . 3 +116740 6225 is a director to watch 4 +116741 6226 Using an endearing cast , writer\/director Dover Kosashvili takes a slightly dark look at relationships , both sexual and kindred . 3 +116742 6226 Using an endearing cast 3 +116743 6226 an endearing cast 3 +116744 6226 endearing cast 3 +116745 6226 , writer\/director Dover Kosashvili takes a slightly dark look at relationships , both sexual and kindred . 2 +116746 6226 writer\/director Dover Kosashvili takes a slightly dark look at relationships , both sexual and kindred . 3 +116747 6226 writer\/director Dover Kosashvili 2 +116748 6226 takes a slightly dark look at relationships , both sexual and kindred . 2 +116749 6226 takes a slightly dark look at relationships , both sexual and kindred 2 +116750 6226 takes a slightly dark look at relationships , 3 +116751 6226 takes a slightly dark look at relationships 2 +116752 6226 takes a slightly dark look 2 +116753 6226 a slightly dark look 2 +116754 6226 slightly dark look 2 +116755 6226 slightly dark 2 +116756 6226 at relationships 2 +116757 6226 both sexual and kindred 2 +116758 6226 sexual and kindred 2 +116759 6226 sexual and 2 +116760 6226 kindred 2 +116761 6227 Cube 's charisma and chemistry compensate for corniness and cliche . 2 +116762 6227 Cube 's charisma and chemistry 3 +116763 6227 Cube 's 2 +116764 6227 charisma and chemistry 3 +116765 6227 compensate for corniness and cliche . 2 +116766 6227 compensate for corniness and cliche 1 +116767 6227 for corniness and cliche 2 +116768 6227 corniness and cliche 0 +116769 6227 corniness and 2 +116770 6227 corniness 2 +116771 6228 It 's an unusual , thoughtful bio-drama with a rich subject and some fantastic moments and scenes . 2 +116772 6228 's an unusual , thoughtful bio-drama with a rich subject and some fantastic moments and scenes . 4 +116773 6228 's an unusual , thoughtful bio-drama with a rich subject and some fantastic moments and scenes 3 +116774 6228 an unusual , thoughtful bio-drama with a rich subject and some fantastic moments and scenes 4 +116775 6228 an unusual , thoughtful bio-drama 3 +116776 6228 unusual , thoughtful bio-drama 3 +116777 6228 unusual , thoughtful 3 +116778 6228 , thoughtful 2 +116779 6228 bio-drama 2 +116780 6228 with a rich subject and some fantastic moments and scenes 4 +116781 6228 a rich subject and some fantastic moments and scenes 3 +116782 6228 a rich subject and 3 +116783 6228 a rich subject 3 +116784 6228 rich subject 3 +116785 6228 some fantastic moments and scenes 4 +116786 6228 fantastic moments and scenes 4 +116787 6228 moments and scenes 2 +116788 6229 A living testament to the power of the eccentric and the strange . 3 +116789 6229 testament to the power of the eccentric and the strange . 2 +116790 6229 testament to the power of the eccentric and the strange 2 +116791 6229 to the power of the eccentric and the strange 3 +116792 6229 the power of the eccentric and the strange 2 +116793 6229 of the eccentric and the strange 2 +116794 6229 the eccentric and the strange 2 +116795 6229 the eccentric and 2 +116796 6229 the eccentric 2 +116797 6229 the strange 2 +116798 6230 It 's technically sumptuous but also almost wildly alive . 4 +116799 6230 's technically sumptuous but also almost wildly alive . 4 +116800 6230 's technically sumptuous but also almost wildly alive 3 +116801 6230 technically sumptuous but also almost wildly alive 3 +116802 6230 technically sumptuous but also 3 +116803 6230 technically sumptuous but 3 +116804 6230 technically sumptuous 3 +116805 6230 almost wildly alive 3 +116806 6230 wildly alive 4 +116807 6232 It 's a compelling and horrifying story , and The Laramie Project is worthwhile for reminding us that this sort of thing does , in fact , still happen in America . 4 +116808 6232 It 's a compelling and horrifying story , and The Laramie Project is worthwhile for reminding us that this sort of thing does , in fact , still happen in America 3 +116809 6232 It 's a compelling and horrifying story , and 3 +116810 6232 It 's a compelling and horrifying story , 2 +116811 6232 It 's a compelling and horrifying story 3 +116812 6232 's a compelling and horrifying story 3 +116813 6232 a compelling and horrifying story 3 +116814 6232 compelling and horrifying story 3 +116815 6232 compelling and horrifying 3 +116816 6232 compelling and 4 +116817 6232 The Laramie Project is worthwhile for reminding us that this sort of thing does , in fact , still happen in America 3 +116818 6232 The Laramie Project 2 +116819 6232 Laramie Project 2 +116820 6232 is worthwhile for reminding us that this sort of thing does , in fact , still happen in America 3 +116821 6232 worthwhile for reminding us that this sort of thing does , in fact , still happen in America 3 +116822 6232 for reminding us that this sort of thing does , in fact , still happen in America 2 +116823 6232 reminding us that this sort of thing does , in fact , still happen in America 2 +116824 6232 reminding us 2 +116825 6232 that this sort of thing does , in fact , still happen in America 2 +116826 6232 this sort of thing does , in fact , still happen in America 2 +116827 6232 does , in fact , still happen in America 2 +116828 6232 does , in fact , 2 +116829 6232 does , in fact 2 +116830 6232 does , 2 +116831 6232 still happen in America 2 +116832 6232 happen in America 2 +116833 6233 The film favors the scientific over the spectacular -LRB- visually speaking -RRB- . 2 +116834 6233 favors the scientific over the spectacular -LRB- visually speaking -RRB- . 3 +116835 6233 favors the scientific over the spectacular -LRB- visually speaking -RRB- 2 +116836 6233 the scientific over the spectacular -LRB- visually speaking -RRB- 3 +116837 6233 the scientific 2 +116838 6233 over the spectacular -LRB- visually speaking -RRB- 3 +116839 6233 the spectacular -LRB- visually speaking -RRB- 3 +116840 6233 the spectacular 3 +116841 6233 -LRB- visually speaking -RRB- 2 +116842 6233 visually speaking -RRB- 2 +116843 6233 visually speaking 3 +116844 6234 It is life affirming and heartbreaking , sweet without the decay factor , funny and sad . 3 +116845 6234 is life affirming and heartbreaking , sweet without the decay factor , funny and sad . 3 +116846 6234 is life affirming and heartbreaking , sweet without the decay factor , funny and sad 4 +116847 6234 life affirming and heartbreaking , sweet without the decay factor , funny and sad 3 +116848 6234 life affirming and heartbreaking , sweet without the decay factor , 4 +116849 6234 life affirming and heartbreaking , sweet without the decay factor 3 +116850 6234 life affirming and heartbreaking , 3 +116851 6234 life affirming and heartbreaking 3 +116852 6234 affirming and heartbreaking 3 +116853 6234 affirming and 3 +116854 6234 sweet without the decay factor 4 +116855 6234 sweet without the decay 3 +116856 6234 without the decay 2 +116857 6234 the decay 2 +116858 6234 decay 1 +116859 6234 funny and sad 3 +116860 6235 The film is explosive , but a few of those sticks are wet . 2 +116861 6235 The film is explosive , but a few of those sticks are wet 1 +116862 6235 The film is explosive , but 1 +116863 6235 The film is explosive , 4 +116864 6235 The film is explosive 4 +116865 6235 is explosive 3 +116866 6235 a few of those sticks are wet 2 +116867 6235 a few of those sticks 2 +116868 6235 of those sticks 2 +116869 6235 those sticks 2 +116870 6235 are wet 2 +116871 6236 Jackass is a vulgar and cheap-looking version of Candid Camera staged for the Marquis de Sade set . 0 +116872 6236 Jackass is a vulgar and cheap-looking version of Candid Camera staged for the Marquis de Sade set 0 +116873 6236 Jackass is a vulgar and 1 +116874 6236 Jackass is a vulgar 1 +116875 6236 is a vulgar 0 +116876 6236 a vulgar 2 +116877 6236 cheap-looking version of Candid Camera staged for the Marquis de Sade set 1 +116878 6236 cheap-looking version of Candid Camera 1 +116879 6236 cheap-looking version 0 +116880 6236 cheap-looking 1 +116881 6236 of Candid Camera 3 +116882 6236 Candid Camera 2 +116883 6236 Candid 3 +116884 6236 staged for the Marquis de Sade set 2 +116885 6236 for the Marquis de Sade set 1 +116886 6236 the Marquis de Sade set 2 +116887 6236 Marquis de Sade set 2 +116888 6236 de Sade set 2 +116889 6236 Sade set 2 +116890 6237 It rapidly develops into a gut-wrenching examination of the way cultural differences and emotional expectations collide . 3 +116891 6237 rapidly develops into a gut-wrenching examination of the way cultural differences and emotional expectations collide . 3 +116892 6237 develops into a gut-wrenching examination of the way cultural differences and emotional expectations collide . 2 +116893 6237 develops into a gut-wrenching examination of the way cultural differences and emotional expectations collide 3 +116894 6237 into a gut-wrenching examination of the way cultural differences and emotional expectations collide 3 +116895 6237 a gut-wrenching examination of the way cultural differences and emotional expectations collide 2 +116896 6237 a gut-wrenching examination 2 +116897 6237 gut-wrenching examination 3 +116898 6237 of the way cultural differences and emotional expectations collide 2 +116899 6237 the way cultural differences and emotional expectations collide 2 +116900 6237 cultural differences and emotional expectations collide 2 +116901 6237 cultural differences and emotional expectations 2 +116902 6237 cultural differences and 2 +116903 6237 cultural differences 3 +116904 6237 emotional expectations 2 +116905 6237 collide 2 +116906 6238 Attal 's hang-ups surrounding infidelity are so old-fashioned and , dare I say , outdated , it 's a wonder that he could n't have brought something fresher to the proceedings simply by accident . 1 +116907 6238 Attal 's hang-ups surrounding infidelity are so old-fashioned and , dare I say , outdated , it 's a wonder that he could n't have brought something fresher to the proceedings simply by accident 0 +116908 6238 Attal 's hang-ups surrounding infidelity are so old-fashioned and , dare I say , outdated , 1 +116909 6238 Attal 's hang-ups surrounding infidelity are so old-fashioned and , dare I say , outdated 1 +116910 6238 Attal 's hang-ups surrounding infidelity are so old-fashioned and , dare I say , 1 +116911 6238 Attal 's hang-ups surrounding infidelity are so old-fashioned and , dare I say 3 +116912 6238 Attal 's hang-ups surrounding infidelity are so old-fashioned and , 1 +116913 6238 Attal 's hang-ups surrounding infidelity are so old-fashioned and 1 +116914 6238 Attal 's hang-ups surrounding infidelity are so old-fashioned 1 +116915 6238 Attal 's hang-ups surrounding infidelity 2 +116916 6238 Attal 's 2 +116917 6238 hang-ups surrounding infidelity 2 +116918 6238 hang-ups 2 +116919 6238 surrounding infidelity 2 +116920 6238 are so old-fashioned 1 +116921 6238 so old-fashioned 1 +116922 6238 it 's a wonder that he could n't have brought something fresher to the proceedings simply by accident 2 +116923 6238 's a wonder that he could n't have brought something fresher to the proceedings simply by accident 1 +116924 6238 's a wonder 2 +116925 6238 a wonder 3 +116926 6238 that he could n't have brought something fresher to the proceedings simply by accident 2 +116927 6238 he could n't have brought something fresher to the proceedings simply by accident 2 +116928 6238 could n't have brought something fresher to the proceedings simply by accident 3 +116929 6238 have brought something fresher to the proceedings simply by accident 2 +116930 6238 brought something fresher to the proceedings simply by accident 2 +116931 6238 brought something fresher to the proceedings 3 +116932 6238 brought something fresher 3 +116933 6238 something fresher 2 +116934 6238 fresher 2 +116935 6238 to the proceedings 2 +116936 6238 simply by accident 1 +116937 6238 by accident 2 +116938 6238 accident 1 +116939 6239 Most haunting about `` Fence '' is its conclusion , when we hear the ultimate fate of these girls and realize , much to our dismay , that this really did happen . 4 +116940 6239 Most haunting about `` Fence '' 2 +116941 6239 haunting about `` Fence '' 2 +116942 6239 about `` Fence '' 2 +116943 6239 about `` Fence 2 +116944 6239 about `` 2 +116945 6239 is its conclusion , when we hear the ultimate fate of these girls and realize , much to our dismay , that this really did happen . 2 +116946 6239 is its conclusion , when we hear the ultimate fate of these girls and realize , much to our dismay , that this really did happen 2 +116947 6239 its conclusion , when we hear the ultimate fate of these girls and realize , much to our dismay , that this really did happen 3 +116948 6239 its conclusion , 2 +116949 6239 its conclusion 2 +116950 6239 when we hear the ultimate fate of these girls and realize , much to our dismay , that this really did happen 3 +116951 6239 we hear the ultimate fate of these girls and realize , much to our dismay , that this really did happen 2 +116952 6239 hear the ultimate fate of these girls and realize , much to our dismay , that this really did happen 2 +116953 6239 hear the ultimate fate of these girls and 2 +116954 6239 hear the ultimate fate of these girls 2 +116955 6239 the ultimate fate of these girls 2 +116956 6239 the ultimate fate 2 +116957 6239 of these girls 2 +116958 6239 these girls 2 +116959 6239 realize , much to our dismay , that this really did happen 1 +116960 6239 realize , much to our dismay , 1 +116961 6239 realize , much to our dismay 1 +116962 6239 realize , 2 +116963 6239 much to our dismay 1 +116964 6239 to our dismay 1 +116965 6239 our dismay 1 +116966 6239 dismay 1 +116967 6239 that this really did happen 2 +116968 6239 this really did happen 2 +116969 6239 really did happen 2 +116970 6239 did happen 2 +116971 6240 Then you 'd do well to check this one out because it 's straight up Twin Peaks action ... 3 +116972 6240 you 'd do well to check this one out because it 's straight up Twin Peaks action ... 3 +116973 6240 'd do well to check this one out because it 's straight up Twin Peaks action ... 3 +116974 6240 'd do well to check this one out because it 's straight up Twin Peaks action 3 +116975 6240 do well to check this one out because it 's straight up Twin Peaks action 3 +116976 6240 do well to check this one out 3 +116977 6240 do well 2 +116978 6240 to check this one out 3 +116979 6240 check this one out 3 +116980 6240 check this one 2 +116981 6240 because it 's straight up Twin Peaks action 2 +116982 6240 it 's straight up Twin Peaks action 2 +116983 6240 's straight up Twin Peaks action 2 +116984 6240 's straight 2 +116985 6240 up Twin Peaks action 2 +116986 6240 Twin Peaks action 2 +116987 6240 Twin 2 +116988 6240 Peaks action 2 +116989 6240 Peaks 2 +116990 6241 In the real world 2 +116991 6241 the real world 2 +116992 6241 real world 2 +116993 6241 an actor this uncharismatically beautiful 3 +116994 6241 this uncharismatically beautiful 2 +116995 6241 this uncharismatically 1 +116996 6241 uncharismatically 1 +116997 6241 loaded with credits like `` Girl in Bar # 3 2 +116998 6241 loaded with credits like `` Girl 2 +116999 6241 with credits like `` Girl 2 +117000 6241 credits like `` Girl 2 +117001 6241 like `` Girl 2 +117002 6241 in Bar # 3 2 +117003 6241 Bar # 3 2 +117004 6241 # 3 2 +117005 6242 an original and highly cerebral examination of the psychopathic mind 3 +117006 6242 an original and highly cerebral examination 3 +117007 6242 original and highly cerebral examination 3 +117008 6242 original and highly cerebral 4 +117009 6242 original and 2 +117010 6242 highly cerebral 3 +117011 6242 of the psychopathic mind 2 +117012 6242 the psychopathic mind 2 +117013 6242 psychopathic mind 2 +117014 6243 There is no solace here , no entertainment value , merely a fierce lesson in where filmmaking can take us . 1 +117015 6243 is no solace here , no entertainment value , merely a fierce lesson in where filmmaking can take us . 2 +117016 6243 is no solace here , no entertainment value , merely a fierce lesson in where filmmaking can take us 1 +117017 6243 no solace here , no entertainment value , merely a fierce lesson in where filmmaking can take us 1 +117018 6243 no solace here , no entertainment value , 0 +117019 6243 no solace here , no entertainment value 0 +117020 6243 no solace here , 1 +117021 6243 no solace here 1 +117022 6243 solace here 2 +117023 6243 solace 2 +117024 6243 no entertainment value 0 +117025 6243 merely a fierce lesson in where filmmaking can take us 2 +117026 6243 merely a fierce lesson 2 +117027 6243 a fierce lesson 2 +117028 6243 fierce lesson 2 +117029 6243 in where filmmaking can take us 2 +117030 6243 where filmmaking can take us 2 +117031 6243 filmmaking can take us 2 +117032 6243 can take us 2 +117033 6244 So earnest and well-meaning , and so stocked with talent , that you almost forget the sheer , ponderous awfulness of its script . 2 +117034 6244 earnest and well-meaning , and so stocked with talent , that you almost forget the sheer , ponderous awfulness of its script . 2 +117035 6244 earnest and well-meaning , and so stocked with talent , that you almost forget the sheer , 4 +117036 6244 earnest and well-meaning , and so stocked with talent , that you almost forget the sheer 4 +117037 6244 earnest and well-meaning , and so stocked with talent , 3 +117038 6244 earnest and well-meaning , and so stocked with talent 4 +117039 6244 earnest and well-meaning , and 3 +117040 6244 earnest and well-meaning , 3 +117041 6244 earnest and well-meaning 3 +117042 6244 so stocked with talent 4 +117043 6244 so stocked 2 +117044 6244 stocked 2 +117045 6244 that you almost forget the sheer 2 +117046 6244 you almost forget the sheer 2 +117047 6244 almost forget the sheer 1 +117048 6244 forget the sheer 2 +117049 6244 the sheer 2 +117050 6244 ponderous awfulness of its script . 0 +117051 6244 ponderous awfulness of its script 0 +117052 6244 awfulness of its script 1 +117053 6244 of its script 2 +117054 6245 My Wife 's plotting is nothing special ; it 's the delivery that matters here . 2 +117055 6245 My Wife 's plotting is nothing special ; it 's the delivery that matters here 3 +117056 6245 My Wife 's plotting is nothing special ; 2 +117057 6245 My Wife 's plotting is nothing special 1 +117058 6245 My Wife 's plotting 2 +117059 6245 My Wife 's 2 +117060 6245 Wife 's 2 +117061 6245 is nothing special 1 +117062 6245 nothing special 1 +117063 6245 it 's the delivery that matters here 3 +117064 6245 's the delivery that matters here 2 +117065 6245 the delivery that matters here 2 +117066 6245 that matters here 2 +117067 6245 matters here 2 +117068 6246 Likely to have decades of life as a classic movie franchise ? 3 +117069 6246 Likely to have decades of life as a classic movie franchise 4 +117070 6246 to have decades of life as a classic movie franchise 4 +117071 6246 have decades of life as a classic movie franchise 4 +117072 6246 have decades of life 2 +117073 6246 decades of life 2 +117074 6246 as a classic movie franchise 3 +117075 6246 a classic movie franchise 3 +117076 6246 classic movie franchise 3 +117077 6247 Although shot with little style , Skins is heartfelt and achingly real . 3 +117078 6247 Although shot with little style 2 +117079 6247 shot with little style 2 +117080 6247 with little style 2 +117081 6247 little style 1 +117082 6247 , Skins is heartfelt and achingly real . 4 +117083 6247 Skins is heartfelt and achingly real . 4 +117084 6247 is heartfelt and achingly real . 3 +117085 6247 is heartfelt and achingly real 4 +117086 6247 heartfelt and achingly real 3 +117087 6247 heartfelt and 3 +117088 6247 achingly real 2 +117089 6248 Few films have captured the chaos of an urban conflagration with such fury , and audience members will leave feeling as shaken as Nesbitt 's Cooper looks when the bullets stop flying . 3 +117090 6248 Few films have captured the chaos of an urban conflagration with such fury , and audience members will leave feeling as shaken as Nesbitt 's Cooper looks when the bullets stop flying 4 +117091 6248 Few films have captured the chaos of an urban conflagration with such fury , and 3 +117092 6248 Few films have captured the chaos of an urban conflagration with such fury , 3 +117093 6248 Few films have captured the chaos of an urban conflagration with such fury 2 +117094 6248 have captured the chaos of an urban conflagration with such fury 3 +117095 6248 captured the chaos of an urban conflagration with such fury 3 +117096 6248 captured the chaos of an urban conflagration 3 +117097 6248 the chaos of an urban conflagration 1 +117098 6248 of an urban conflagration 2 +117099 6248 an urban conflagration 2 +117100 6248 urban conflagration 2 +117101 6248 conflagration 2 +117102 6248 with such fury 1 +117103 6248 such fury 3 +117104 6248 audience members will leave feeling as shaken as Nesbitt 's Cooper looks when the bullets stop flying 3 +117105 6248 audience members 2 +117106 6248 will leave feeling as shaken as Nesbitt 's Cooper looks when the bullets stop flying 2 +117107 6248 leave feeling as shaken as Nesbitt 's Cooper looks when the bullets stop flying 3 +117108 6248 feeling as shaken as Nesbitt 's Cooper looks when the bullets stop flying 2 +117109 6248 as shaken as Nesbitt 's Cooper looks when the bullets stop flying 2 +117110 6248 shaken as Nesbitt 's Cooper looks when the bullets stop flying 2 +117111 6248 shaken as Nesbitt 's Cooper 2 +117112 6248 as Nesbitt 's Cooper 2 +117113 6248 Nesbitt 's Cooper 2 +117114 6248 Nesbitt 's 2 +117115 6248 Nesbitt 2 +117116 6248 looks when the bullets stop flying 2 +117117 6248 when the bullets stop flying 2 +117118 6248 the bullets stop flying 2 +117119 6248 the bullets 2 +117120 6248 stop flying 2 +117121 6248 flying 2 +117122 6249 Those with a modicum of patience will find in these characters ' foibles a timeless and unique perspective . 3 +117123 6249 Those with a modicum of patience 1 +117124 6249 with a modicum of patience 3 +117125 6249 a modicum of patience 3 +117126 6249 a modicum 2 +117127 6249 modicum 2 +117128 6249 of patience 2 +117129 6249 will find in these characters ' foibles a timeless and unique perspective . 4 +117130 6249 will find in these characters ' foibles a timeless and unique perspective 3 +117131 6249 find in these characters ' foibles a timeless and unique perspective 3 +117132 6249 in these characters ' foibles a timeless and unique perspective 3 +117133 6249 these characters ' foibles a timeless and unique perspective 3 +117134 6249 these characters ' foibles 2 +117135 6249 these characters ' 2 +117136 6249 a timeless and unique perspective 4 +117137 6249 timeless and unique perspective 3 +117138 6249 timeless and unique 4 +117139 6249 timeless and 3 +117140 6250 An unflinching , complex portrait of a modern Israel that is rarely seen on-screen . 3 +117141 6250 An unflinching , complex portrait of a modern Israel that is rarely seen on-screen 3 +117142 6250 An unflinching , 3 +117143 6250 complex portrait of a modern Israel that is rarely seen on-screen 3 +117144 6250 complex portrait of a modern Israel 3 +117145 6250 complex portrait 2 +117146 6250 of a modern Israel 2 +117147 6250 a modern Israel 2 +117148 6250 modern Israel 2 +117149 6250 that is rarely seen on-screen 2 +117150 6250 is rarely seen on-screen 2 +117151 6250 is rarely 2 +117152 6250 seen on-screen 2 +117153 6251 Efteriades gives the neighborhood -- scenery , vibe and all -- the cinematic equivalent of a big , tender hug . 3 +117154 6251 Efteriades 2 +117155 6251 gives the neighborhood -- scenery , vibe and all -- the cinematic equivalent of a big , tender hug . 3 +117156 6251 gives the neighborhood -- scenery , vibe and all -- the cinematic equivalent of a big , tender hug 3 +117157 6251 gives the neighborhood -- 2 +117158 6251 gives the neighborhood 2 +117159 6251 the neighborhood 2 +117160 6251 scenery , vibe and all -- the cinematic equivalent of a big , tender hug 4 +117161 6251 scenery , vibe and all -- 3 +117162 6251 scenery , vibe and all 3 +117163 6251 scenery , vibe and 2 +117164 6251 scenery , vibe 3 +117165 6251 scenery , 2 +117166 6251 vibe 2 +117167 6251 the cinematic equivalent of a big , tender hug 3 +117168 6251 of a big , tender hug 3 +117169 6251 a big , tender hug 3 +117170 6251 big , tender hug 4 +117171 6251 , tender hug 3 +117172 6251 tender hug 3 +117173 6251 hug 2 +117174 6252 Though it pretends to expose the life of male hustlers , it 's exploitive without being insightful . 1 +117175 6252 Though it pretends to expose the life of male hustlers 1 +117176 6252 it pretends to expose the life of male hustlers 1 +117177 6252 pretends to expose the life of male hustlers 1 +117178 6252 to expose the life of male hustlers 2 +117179 6252 expose the life of male hustlers 2 +117180 6252 expose 2 +117181 6252 the life of male hustlers 2 +117182 6252 of male hustlers 3 +117183 6252 male hustlers 2 +117184 6252 hustlers 2 +117185 6252 , it 's exploitive without being insightful . 1 +117186 6252 it 's exploitive without being insightful . 1 +117187 6252 's exploitive without being insightful . 1 +117188 6252 's exploitive without being insightful 2 +117189 6252 exploitive without being insightful 2 +117190 6252 exploitive 2 +117191 6252 without being insightful 1 +117192 6252 being insightful 3 +117193 6253 Egoyan 's work often elegantly considers various levels of reality and uses shifting points of view , but here he has constructed a film so labyrinthine that it defeats his larger purpose . 2 +117194 6253 Egoyan 's work often elegantly considers various levels of reality and uses shifting points of view , but here he has constructed a film so labyrinthine that it defeats his larger purpose 1 +117195 6253 Egoyan 's work often elegantly considers various levels of reality and uses shifting points of view , but 2 +117196 6253 Egoyan 's work often elegantly considers various levels of reality and uses shifting points of view , 2 +117197 6253 Egoyan 's work often elegantly considers various levels of reality and uses shifting points of view 4 +117198 6253 often elegantly considers various levels of reality and uses shifting points of view 3 +117199 6253 elegantly considers various levels of reality and uses shifting points of view 4 +117200 6253 elegantly considers various levels of reality and 3 +117201 6253 elegantly considers various levels of reality 3 +117202 6253 considers various levels of reality 2 +117203 6253 various levels of reality 2 +117204 6253 various levels 2 +117205 6253 of reality 2 +117206 6253 uses shifting points of view 2 +117207 6253 shifting points of view 2 +117208 6253 shifting points 2 +117209 6253 here he has constructed a film so labyrinthine that it defeats his larger purpose 1 +117210 6253 he has constructed a film so labyrinthine that it defeats his larger purpose 1 +117211 6253 has constructed a film so labyrinthine that it defeats his larger purpose 1 +117212 6253 constructed a film so labyrinthine that it defeats his larger purpose 1 +117213 6253 constructed a film so labyrinthine 2 +117214 6253 a film so labyrinthine 2 +117215 6253 so labyrinthine 2 +117216 6253 that it defeats his larger purpose 1 +117217 6253 it defeats his larger purpose 1 +117218 6253 defeats his larger purpose 2 +117219 6253 defeats 2 +117220 6253 his larger purpose 2 +117221 6253 larger purpose 2 +117222 6254 Serious and thoughtful . 4 +117223 6254 Serious and thoughtful 4 +117224 6254 Serious and 2 +117225 6255 Kung Pow seems like some futile concoction that was developed hastily after Oedekerk and his fellow moviemakers got through crashing a college keg party . 0 +117226 6255 Kung Pow seems like some futile concoction that was developed hastily after Oedekerk and his fellow moviemakers got through crashing a college keg party 0 +117227 6255 Kung Pow seems like some futile concoction that was developed hastily after Oedekerk and 1 +117228 6255 Kung Pow seems like some futile concoction that was developed hastily after Oedekerk 1 +117229 6255 seems like some futile concoction that was developed hastily after Oedekerk 1 +117230 6255 like some futile concoction that was developed hastily after Oedekerk 1 +117231 6255 some futile concoction that was developed hastily after Oedekerk 0 +117232 6255 some futile concoction 1 +117233 6255 futile concoction 1 +117234 6255 futile 1 +117235 6255 that was developed hastily after Oedekerk 2 +117236 6255 was developed hastily after Oedekerk 1 +117237 6255 developed hastily after Oedekerk 2 +117238 6255 developed hastily 1 +117239 6255 after Oedekerk 2 +117240 6255 his fellow moviemakers got through crashing a college keg party 2 +117241 6255 his fellow moviemakers 2 +117242 6255 fellow moviemakers 2 +117243 6255 moviemakers 2 +117244 6255 got through crashing a college keg party 2 +117245 6255 through crashing a college keg party 2 +117246 6255 crashing a college keg party 2 +117247 6255 crashing 2 +117248 6255 a college keg party 1 +117249 6255 college keg party 1 +117250 6255 keg party 2 +117251 6255 keg 2 +117252 6256 This thing works on no level whatsoever for me . 0 +117253 6256 works on no level whatsoever for me . 0 +117254 6256 works on no level whatsoever for me 0 +117255 6256 on no level whatsoever for me 1 +117256 6256 no level whatsoever for me 1 +117257 6256 no level whatsoever 1 +117258 6256 level whatsoever 2 +117259 6257 Shiri is an action film that delivers on the promise of excitement , but it also has a strong dramatic and emotional pull that gradually sneaks up on the audience . 3 +117260 6257 Shiri is an action film that delivers on the promise of excitement , but it also has a strong dramatic and emotional pull that gradually sneaks up on the audience 4 +117261 6257 Shiri is an action film that delivers on the promise of excitement , but 2 +117262 6257 Shiri is an action film that delivers on the promise of excitement , 4 +117263 6257 Shiri is an action film that delivers on the promise of excitement 4 +117264 6257 is an action film that delivers on the promise of excitement 3 +117265 6257 an action film that delivers on the promise of excitement 3 +117266 6257 an action film 2 +117267 6257 that delivers on the promise of excitement 3 +117268 6257 delivers on the promise of excitement 4 +117269 6257 on the promise of excitement 3 +117270 6257 the promise of excitement 3 +117271 6257 of excitement 2 +117272 6257 it also has a strong dramatic and emotional pull that gradually sneaks up on the audience 3 +117273 6257 also has a strong dramatic and emotional pull that gradually sneaks up on the audience 4 +117274 6257 has a strong dramatic and emotional pull that gradually sneaks up on the audience 3 +117275 6257 a strong dramatic and emotional pull that gradually sneaks up on the audience 3 +117276 6257 a strong dramatic and emotional pull 3 +117277 6257 strong dramatic and emotional pull 3 +117278 6257 dramatic and emotional pull 3 +117279 6257 dramatic and emotional 3 +117280 6257 dramatic and 2 +117281 6257 that gradually sneaks up on the audience 3 +117282 6257 gradually sneaks up on the audience 3 +117283 6257 sneaks up on the audience 2 +117284 6257 on the audience 2 +117285 6258 A properly spooky film about the power of spirits to influence us whether we believe in them or not . 3 +117286 6258 A properly spooky film about the power of spirits to influence us whether we believe in them or not 3 +117287 6258 A properly spooky film about the power of spirits 3 +117288 6258 A properly spooky film 3 +117289 6258 properly spooky film 4 +117290 6258 properly spooky 3 +117291 6258 about the power of spirits 2 +117292 6258 the power of spirits 3 +117293 6258 of spirits 2 +117294 6258 to influence us whether we believe in them or not 2 +117295 6258 influence us whether we believe in them or not 2 +117296 6258 influence us 2 +117297 6258 whether we believe in them or not 2 +117298 6258 whether we believe in them or 2 +117299 6258 whether we believe in them 2 +117300 6258 we believe in them 3 +117301 6258 believe in them 2 +117302 6258 in them 2 +117303 6259 Not only a coming-of-age story and cautionary parable , but also a perfectly rendered period piece . 4 +117304 6259 Not only a coming-of-age story and cautionary parable , but also a perfectly rendered period piece 3 +117305 6259 a coming-of-age story and cautionary parable , but also a perfectly rendered period piece 4 +117306 6259 a coming-of-age story and cautionary parable , but also 2 +117307 6259 a coming-of-age story and cautionary parable , 2 +117308 6259 a coming-of-age story and cautionary parable 3 +117309 6259 a coming-of-age story and 3 +117310 6259 a coming-of-age story 2 +117311 6259 cautionary parable 2 +117312 6259 a perfectly rendered period piece 3 +117313 6259 perfectly rendered period piece 3 +117314 6259 perfectly rendered 3 +117315 6259 period piece 2 +117316 6260 Birthday Girl does n't try to surprise us with plot twists , but rather seems to enjoy its own transparency . 3 +117317 6260 does n't try to surprise us with plot twists , but rather seems to enjoy its own transparency . 3 +117318 6260 does n't try to surprise us with plot twists , but rather seems to enjoy its own transparency 4 +117319 6260 does n't try to surprise us with plot twists , but rather 3 +117320 6260 does n't try to surprise us with plot twists , but 2 +117321 6260 does n't try to surprise us with plot twists , 2 +117322 6260 does n't try to surprise us with plot twists 3 +117323 6260 try to surprise us with plot twists 3 +117324 6260 to surprise us with plot twists 3 +117325 6260 surprise us with plot twists 3 +117326 6260 surprise us 3 +117327 6260 with plot twists 2 +117328 6260 seems to enjoy its own transparency 3 +117329 6260 to enjoy its own transparency 3 +117330 6260 enjoy its own transparency 3 +117331 6260 its own transparency 2 +117332 6260 own transparency 2 +117333 6260 transparency 2 +117334 6261 A behind the scenes look at the training and dedication that goes into becoming a world-class fencer and the champion that 's made a difference to NYC inner-city youth . 2 +117335 6261 A behind the scenes 2 +117336 6261 behind the scenes 2 +117337 6261 look at the training and dedication that goes into becoming a world-class fencer and the champion that 's made a difference to NYC inner-city youth . 2 +117338 6261 look at the training and dedication that goes into becoming a world-class fencer and the champion that 's made a difference to NYC inner-city youth 2 +117339 6261 at the training and dedication that goes into becoming a world-class fencer and the champion that 's made a difference to NYC inner-city youth 2 +117340 6261 the training and dedication that goes into becoming a world-class fencer and the champion that 's made a difference to NYC inner-city youth 2 +117341 6261 the training and dedication that goes into becoming a world-class fencer and 2 +117342 6261 the training and dedication that goes into becoming a world-class fencer 3 +117343 6261 the training and dedication 3 +117344 6261 training and dedication 2 +117345 6261 training and 2 +117346 6261 training 3 +117347 6261 that goes into becoming a world-class fencer 3 +117348 6261 goes into becoming a world-class fencer 2 +117349 6261 into becoming a world-class fencer 3 +117350 6261 becoming a world-class fencer 2 +117351 6261 a world-class fencer 3 +117352 6261 world-class fencer 2 +117353 6261 world-class 3 +117354 6261 fencer 2 +117355 6261 the champion that 's made a difference to NYC inner-city youth 3 +117356 6261 the champion 2 +117357 6261 that 's made a difference to NYC inner-city youth 2 +117358 6261 's made a difference to NYC inner-city youth 2 +117359 6261 made a difference to NYC inner-city youth 2 +117360 6261 made a difference 3 +117361 6261 to NYC inner-city youth 2 +117362 6261 NYC inner-city youth 2 +117363 6261 NYC 2 +117364 6261 inner-city youth 2 +117365 6262 That 's not vintage Spielberg and that , finally , is minimally satisfying . 2 +117366 6262 That 's not vintage Spielberg and that , finally , is minimally satisfying 3 +117367 6262 That 's not vintage Spielberg and 1 +117368 6262 That 's not vintage Spielberg 1 +117369 6262 's not vintage Spielberg 1 +117370 6262 vintage Spielberg 3 +117371 6262 that , finally , is minimally satisfying 2 +117372 6262 , finally , is minimally satisfying 2 +117373 6262 finally , is minimally satisfying 3 +117374 6262 , is minimally satisfying 2 +117375 6262 is minimally satisfying 2 +117376 6262 minimally satisfying 1 +117377 6262 minimally 2 +117378 6263 Every now and again , a movie comes along to remind us of how very bad a motion picture can truly be . 0 +117379 6263 Every now and again 2 +117380 6263 now and again 2 +117381 6263 , a movie comes along to remind us of how very bad a motion picture can truly be . 0 +117382 6263 a movie comes along to remind us of how very bad a motion picture can truly be . 0 +117383 6263 comes along to remind us of how very bad a motion picture can truly be . 0 +117384 6263 comes along to remind us of how very bad a motion picture can truly be 0 +117385 6263 to remind us of how very bad a motion picture can truly be 0 +117386 6263 remind us of how very bad a motion picture can truly be 0 +117387 6263 remind us 3 +117388 6263 of how very bad a motion picture can truly be 0 +117389 6263 how very bad a motion picture can truly be 0 +117390 6263 how very bad 0 +117391 6263 a motion picture can truly be 2 +117392 6263 can truly be 3 +117393 6263 can truly 2 +117394 6264 Raimi and his team could n't have done any better in bringing the story of Spider-Man to the big screen . 4 +117395 6264 Raimi and his team 2 +117396 6264 Raimi and 2 +117397 6264 his team 2 +117398 6264 could n't have done any better in bringing the story of Spider-Man to the big screen . 4 +117399 6264 could n't have done any better in bringing the story of Spider-Man to the big screen 4 +117400 6264 have done any better in bringing the story of Spider-Man to the big screen 2 +117401 6264 done any better in bringing the story of Spider-Man to the big screen 3 +117402 6264 done any better 2 +117403 6264 in bringing the story of Spider-Man to the big screen 2 +117404 6264 bringing the story of Spider-Man to the big screen 2 +117405 6264 bringing the story of Spider-Man 2 +117406 6264 the story of Spider-Man 2 +117407 6264 of Spider-Man 2 +117408 6265 I still want my money back . 0 +117409 6265 still want my money back . 0 +117410 6265 want my money back . 0 +117411 6265 want my money back 0 +117412 6265 want my money 2 +117413 6265 my money 2 +117414 6266 It 's unfortunate that Wallace , who wrote Gibson 's Braveheart as well as the recent Pearl Harbor , has such an irrepressible passion for sappy situations and dialogue . 1 +117415 6266 's unfortunate that Wallace , who wrote Gibson 's Braveheart as well as the recent Pearl Harbor , has such an irrepressible passion for sappy situations and dialogue . 0 +117416 6266 's unfortunate that Wallace , who wrote Gibson 's Braveheart as well as the recent Pearl Harbor , has such an irrepressible passion for sappy situations and dialogue 1 +117417 6266 's unfortunate 1 +117418 6266 that Wallace , who wrote Gibson 's Braveheart as well as the recent Pearl Harbor , has such an irrepressible passion for sappy situations and dialogue 1 +117419 6266 Wallace , who wrote Gibson 's Braveheart as well as the recent Pearl Harbor , has such an irrepressible passion for sappy situations and dialogue 1 +117420 6266 Wallace , who wrote Gibson 's Braveheart as well as the recent Pearl Harbor , 2 +117421 6266 Wallace , who wrote Gibson 's Braveheart as well as the recent Pearl Harbor 2 +117422 6266 Wallace , 2 +117423 6266 who wrote Gibson 's Braveheart as well as the recent Pearl Harbor 2 +117424 6266 wrote Gibson 's Braveheart as well as the recent Pearl Harbor 2 +117425 6266 Gibson 's Braveheart as well as the recent Pearl Harbor 2 +117426 6266 's Braveheart as well as the recent Pearl Harbor 2 +117427 6266 Braveheart as well as the recent Pearl Harbor 2 +117428 6266 Braveheart as well as 3 +117429 6266 Braveheart 2 +117430 6266 the recent Pearl Harbor 2 +117431 6266 recent Pearl Harbor 2 +117432 6266 has such an irrepressible passion for sappy situations and dialogue 1 +117433 6266 such an irrepressible passion for sappy situations and dialogue 1 +117434 6266 such an irrepressible passion 2 +117435 6266 an irrepressible passion 3 +117436 6266 irrepressible passion 3 +117437 6266 for sappy situations and dialogue 2 +117438 6266 sappy situations and dialogue 1 +117439 6266 situations and dialogue 2 +117440 6267 This mistaken-identity picture is so film-culture referential that the final product is a ghost . 1 +117441 6267 This mistaken-identity picture 2 +117442 6267 mistaken-identity picture 2 +117443 6267 mistaken-identity 1 +117444 6267 is so film-culture referential that the final product is a ghost . 1 +117445 6267 is so film-culture referential that the final product is a ghost 1 +117446 6267 is so film-culture referential 2 +117447 6267 is so film-culture 2 +117448 6267 so film-culture 2 +117449 6267 film-culture 2 +117450 6267 referential 2 +117451 6267 that the final product is a ghost 1 +117452 6267 the final product is a ghost 3 +117453 6267 the final product 2 +117454 6267 final product 2 +117455 6267 is a ghost 2 +117456 6268 A forceful drama of an alienated executive who re-invents himself . 3 +117457 6268 A forceful drama of an alienated executive who re-invents himself 4 +117458 6268 A forceful drama 3 +117459 6268 forceful drama 3 +117460 6268 of an alienated executive who re-invents himself 2 +117461 6268 an alienated executive who re-invents himself 2 +117462 6268 an alienated executive 2 +117463 6268 alienated executive 2 +117464 6268 alienated 1 +117465 6268 executive 2 +117466 6268 who re-invents himself 3 +117467 6268 re-invents himself 3 +117468 6268 re-invents 2 +117469 6269 It 's kind of sad that so many people put so much time and energy into this turkey . 1 +117470 6269 's kind of sad that so many people put so much time and energy into this turkey . 0 +117471 6269 's kind of sad that so many people put so much time and energy into this turkey 1 +117472 6269 's kind of sad 1 +117473 6269 kind of sad 2 +117474 6269 kind of 2 +117475 6269 that so many people put so much time and energy into this turkey 1 +117476 6269 so many people put so much time and energy into this turkey 1 +117477 6269 so many people 2 +117478 6269 many people 2 +117479 6269 put so much time and energy into this turkey 1 +117480 6269 put so much time and energy 2 +117481 6269 put so much 2 +117482 6269 time and energy 2 +117483 6269 into this turkey 1 +117484 6269 this turkey 2 +117485 6270 Charlize CHASES Kevin with a GUN . 2 +117486 6270 Charlize CHASES Kevin with a GUN 2 +117487 6270 Charlize CHASES Kevin 2 +117488 6270 Charlize 2 +117489 6270 CHASES Kevin 2 +117490 6270 with a GUN 2 +117491 6270 a GUN 2 +117492 6271 The Woodman seems to have directly influenced this girl-meets-girl love story , but even more reassuring is how its makers actually seem to understand what made Allen 's romantic comedies so pertinent and enduring . 3 +117493 6271 The Woodman seems to have directly influenced this girl-meets-girl love story , but even more reassuring is how its makers actually seem to understand what made Allen 's romantic comedies so pertinent and enduring 3 +117494 6271 The Woodman seems to have directly influenced this girl-meets-girl love story , but 2 +117495 6271 The Woodman seems to have directly influenced this girl-meets-girl love story , 3 +117496 6271 The Woodman seems to have directly influenced this girl-meets-girl love story 2 +117497 6271 The Woodman 2 +117498 6271 Woodman 2 +117499 6271 seems to have directly influenced this girl-meets-girl love story 2 +117500 6271 to have directly influenced this girl-meets-girl love story 2 +117501 6271 have directly influenced this girl-meets-girl love story 2 +117502 6271 directly influenced this girl-meets-girl love story 2 +117503 6271 influenced this girl-meets-girl love story 2 +117504 6271 influenced 2 +117505 6271 this girl-meets-girl love story 2 +117506 6271 girl-meets-girl love story 2 +117507 6271 girl-meets-girl 2 +117508 6271 even more reassuring is how its makers actually seem to understand what made Allen 's romantic comedies so pertinent and enduring 3 +117509 6271 even more reassuring 3 +117510 6271 is how its makers actually seem to understand what made Allen 's romantic comedies so pertinent and enduring 4 +117511 6271 how its makers actually seem to understand what made Allen 's romantic comedies so pertinent and enduring 3 +117512 6271 its makers actually seem to understand what made Allen 's romantic comedies so pertinent and enduring 4 +117513 6271 actually seem to understand what made Allen 's romantic comedies so pertinent and enduring 3 +117514 6271 seem to understand what made Allen 's romantic comedies so pertinent and enduring 3 +117515 6271 to understand what made Allen 's romantic comedies so pertinent and enduring 3 +117516 6271 understand what made Allen 's romantic comedies so pertinent and enduring 3 +117517 6271 what made Allen 's romantic comedies so pertinent and enduring 3 +117518 6271 made Allen 's romantic comedies so pertinent and enduring 4 +117519 6271 Allen 's romantic comedies so pertinent and enduring 3 +117520 6271 Allen 's romantic comedies 2 +117521 6271 so pertinent and enduring 4 +117522 6271 pertinent and enduring 4 +117523 6271 pertinent and 2 +117524 6272 Cuba Gooding Jr. valiantly mugs his way through Snow Dogs , but even his boisterous energy fails to spark this leaden comedy . 1 +117525 6272 Cuba Gooding Jr. valiantly mugs his way through Snow Dogs , but even his boisterous energy fails to spark this leaden comedy 0 +117526 6272 Cuba Gooding Jr. valiantly mugs his way through Snow Dogs , but 2 +117527 6272 Cuba Gooding Jr. valiantly mugs his way through Snow Dogs , 2 +117528 6272 Cuba Gooding Jr. valiantly mugs his way through Snow Dogs 2 +117529 6272 Cuba Gooding Jr. 2 +117530 6272 Cuba 2 +117531 6272 Gooding Jr. 2 +117532 6272 valiantly mugs his way through Snow Dogs 2 +117533 6272 mugs his way through Snow Dogs 2 +117534 6272 mugs his way 2 +117535 6272 even his boisterous energy fails to spark this leaden comedy 1 +117536 6272 his boisterous energy fails to spark this leaden comedy 1 +117537 6272 his boisterous energy 3 +117538 6272 boisterous energy 3 +117539 6272 fails to spark this leaden comedy 0 +117540 6272 to spark this leaden comedy 2 +117541 6272 spark this leaden comedy 2 +117542 6272 this leaden comedy 1 +117543 6272 leaden comedy 2 +117544 6273 Earnest yet curiously tepid and choppy recycling in which predictability is the only winner . 1 +117545 6273 Earnest yet curiously tepid and choppy recycling in which predictability is the only winner 2 +117546 6273 yet curiously tepid and choppy recycling in which predictability is the only winner 1 +117547 6273 curiously tepid and choppy recycling in which predictability is the only winner 1 +117548 6273 curiously tepid and choppy recycling in which 2 +117549 6273 curiously tepid and choppy recycling 1 +117550 6273 tepid and choppy recycling 1 +117551 6273 and choppy recycling 1 +117552 6273 choppy recycling 1 +117553 6273 predictability is the only winner 1 +117554 6273 is the only winner 4 +117555 6273 the only winner 3 +117556 6273 only winner 2 +117557 6274 The film makes strong arguments regarding the social status of America 's indigenous people , but really only exists to try to eke out an emotional tug of the heart , one which it fails to get . 2 +117558 6274 The film makes strong arguments regarding the social status of America 's indigenous people , but really only exists to try to eke out an emotional tug of the heart , one which it fails to get 1 +117559 6274 The film makes strong arguments regarding the social status of America 's indigenous people , but 3 +117560 6274 The film makes strong arguments regarding the social status of America 's indigenous people , 2 +117561 6274 The film makes strong arguments regarding the social status of America 's indigenous people 3 +117562 6274 makes strong arguments regarding the social status of America 's indigenous people 2 +117563 6274 strong arguments regarding the social status of America 's indigenous people 3 +117564 6274 strong arguments 2 +117565 6274 regarding the social status of America 's indigenous people 2 +117566 6274 the social status of America 's indigenous people 2 +117567 6274 the social status 2 +117568 6274 social status 2 +117569 6274 of America 's indigenous people 2 +117570 6274 America 's indigenous people 2 +117571 6274 indigenous people 2 +117572 6274 indigenous 2 +117573 6274 really only exists to try to eke out an emotional tug of the heart , one which it fails to get 1 +117574 6274 only exists to try to eke out an emotional tug of the heart , one which it fails to get 1 +117575 6274 exists to try to eke out an emotional tug of the heart , one which it fails to get 0 +117576 6274 to try to eke out an emotional tug of the heart , one which it fails to get 2 +117577 6274 try to eke out an emotional tug of the heart , one which it fails to get 2 +117578 6274 to eke out an emotional tug of the heart , one which it fails to get 1 +117579 6274 eke out an emotional tug of the heart , one which it fails to get 2 +117580 6274 eke out 2 +117581 6274 eke 2 +117582 6274 an emotional tug of the heart , one which it fails to get 2 +117583 6274 an emotional tug 2 +117584 6274 emotional tug 2 +117585 6274 of the heart , one which it fails to get 1 +117586 6274 the heart , one which it fails to get 1 +117587 6274 the heart , 3 +117588 6274 one which it fails to get 1 +117589 6274 which it fails to get 1 +117590 6274 it fails to get 1 +117591 6274 fails to get 1 +117592 6275 Spreads itself too thin , leaving these actors , as well as the members of the commune , short of profound characterizations 0 +117593 6275 Spreads itself too thin , leaving these actors , as well as the members of the commune , 1 +117594 6275 Spreads itself too thin , leaving these actors , as well as the members of the commune 1 +117595 6275 Spreads itself too thin , 1 +117596 6275 Spreads itself too thin 1 +117597 6275 itself too thin 2 +117598 6275 too thin 1 +117599 6275 leaving these actors , as well as the members of the commune 2 +117600 6275 these actors , as well as the members of the commune 2 +117601 6275 these actors , as well as 2 +117602 6275 these actors , 2 +117603 6275 these actors 2 +117604 6275 the members of the commune 2 +117605 6275 of the commune 2 +117606 6275 the commune 2 +117607 6275 commune 2 +117608 6275 short of profound characterizations 3 +117609 6275 of profound characterizations 3 +117610 6275 profound characterizations 4 +117611 6276 A completely spooky piece of business that gets under your skin and , some plot blips aside , stays there for the duration . 3 +117612 6276 A completely spooky piece of business that gets under your skin and , some plot blips aside , 3 +117613 6276 A completely spooky piece of business that gets under your skin and , some plot blips aside 3 +117614 6276 A completely spooky piece of business 2 +117615 6276 A completely spooky piece 2 +117616 6276 completely spooky piece 2 +117617 6276 completely spooky 2 +117618 6276 that gets under your skin and , some plot blips aside 2 +117619 6276 gets under your skin and , some plot blips aside 3 +117620 6276 gets under your skin and , some plot blips 1 +117621 6276 under your skin and , some plot blips 2 +117622 6276 your skin and , some plot blips 2 +117623 6276 your skin and , 2 +117624 6276 your skin and 2 +117625 6276 some plot blips 2 +117626 6276 plot blips 2 +117627 6276 blips 2 +117628 6276 stays there for the duration . 2 +117629 6276 stays there for the duration 3 +117630 6276 stays there 2 +117631 6276 for the duration 2 +117632 6277 ` Martin Lawrence Live ' is so self-pitying , I almost expected there to be a collection taken for the comedian at the end of the show . 0 +117633 6277 Martin Lawrence Live ' is so self-pitying , I almost expected there to be a collection taken for the comedian at the end of the show . 2 +117634 6277 Martin Lawrence Live ' is so self-pitying 1 +117635 6277 Martin Lawrence Live ' 2 +117636 6277 Lawrence Live ' 2 +117637 6277 Live ' 2 +117638 6277 is so self-pitying 1 +117639 6277 so self-pitying 2 +117640 6277 self-pitying 1 +117641 6277 , I almost expected there to be a collection taken for the comedian at the end of the show . 2 +117642 6277 I almost expected there to be a collection taken for the comedian at the end of the show . 1 +117643 6277 almost expected there to be a collection taken for the comedian at the end of the show . 2 +117644 6277 expected there to be a collection taken for the comedian at the end of the show . 2 +117645 6277 expected there to be a collection taken for the comedian at the end of the show 1 +117646 6277 there to be a collection taken for the comedian at the end of the show 2 +117647 6277 to be a collection taken for the comedian at the end of the show 1 +117648 6277 be a collection taken for the comedian at the end of the show 1 +117649 6277 a collection taken for the comedian at the end of the show 2 +117650 6277 taken for the comedian at the end of the show 2 +117651 6277 for the comedian at the end of the show 2 +117652 6277 the comedian at the end of the show 2 +117653 6277 the comedian 2 +117654 6277 at the end of the show 2 +117655 6277 the end of the show 2 +117656 6278 An entertaining , if somewhat standardized , action movie . 3 +117657 6278 An entertaining , if somewhat standardized , action 2 +117658 6278 entertaining , if somewhat standardized , action 3 +117659 6278 entertaining , if somewhat standardized , 3 +117660 6278 , if somewhat standardized , 2 +117661 6278 if somewhat standardized , 3 +117662 6278 somewhat standardized , 2 +117663 6278 standardized , 2 +117664 6278 standardized 2 +117665 6279 It has no affect on the Kurds , but it wore me down . 1 +117666 6279 It has no affect on the Kurds , but it wore me down 1 +117667 6279 It has no affect on the Kurds , but 2 +117668 6279 It has no affect on the Kurds , 2 +117669 6279 It has no affect on the Kurds 2 +117670 6279 has no affect on the Kurds 3 +117671 6279 no affect on the Kurds 2 +117672 6279 no affect 2 +117673 6279 affect 2 +117674 6279 on the Kurds 2 +117675 6279 the Kurds 2 +117676 6279 Kurds 2 +117677 6279 it wore me down 1 +117678 6279 wore me down 2 +117679 6279 wore me 2 +117680 6280 Ken Russell would love this . 3 +117681 6280 Ken Russell 2 +117682 6280 Ken 2 +117683 6280 would love this . 3 +117684 6280 would love this 2 +117685 6280 love this 4 +117686 6281 Thumbs down . 0 +117687 6281 Thumbs down 0 +117688 6282 Bang ! 2 +117689 6283 The movie suffers from two fatal ailments -- a dearth of vitality and a story that 's shapeless and uninflected . 0 +117690 6283 suffers from two fatal ailments -- a dearth of vitality and a story that 's shapeless and uninflected . 0 +117691 6283 suffers from two fatal ailments -- a dearth of vitality and a story that 's shapeless and uninflected 0 +117692 6283 from two fatal ailments -- a dearth of vitality and a story that 's shapeless and uninflected 0 +117693 6283 two fatal ailments -- a dearth of vitality and a story that 's shapeless and uninflected 1 +117694 6283 two fatal ailments -- 1 +117695 6283 two fatal ailments 1 +117696 6283 fatal ailments 1 +117697 6283 ailments 1 +117698 6283 a dearth of vitality and a story that 's shapeless and uninflected 1 +117699 6283 a dearth of vitality and 2 +117700 6283 a dearth of vitality 1 +117701 6283 a dearth 3 +117702 6283 dearth 2 +117703 6283 of vitality 2 +117704 6283 a story that 's shapeless and uninflected 1 +117705 6283 that 's shapeless and uninflected 1 +117706 6283 's shapeless and uninflected 2 +117707 6283 shapeless and uninflected 1 +117708 6283 shapeless and 1 +117709 6283 uninflected 2 +117710 6284 This may be Dover Kosashvili 's feature directing debut , but it looks an awful lot like life -- gritty , awkward and ironic . 2 +117711 6284 This may be Dover Kosashvili 's feature directing debut , but it looks an awful lot like life -- gritty , awkward and ironic 3 +117712 6284 This may be Dover Kosashvili 's feature directing debut , but 2 +117713 6284 This may be Dover Kosashvili 's feature directing debut , 3 +117714 6284 This may be Dover Kosashvili 's feature directing debut 2 +117715 6284 may be Dover Kosashvili 's feature directing debut 2 +117716 6284 be Dover Kosashvili 's feature directing debut 2 +117717 6284 Dover Kosashvili 's feature directing debut 3 +117718 6284 feature directing debut 2 +117719 6284 it looks an awful lot like life -- gritty , awkward and ironic 2 +117720 6284 looks an awful lot like life -- gritty , awkward and ironic 1 +117721 6284 an awful lot like life -- gritty , awkward and ironic 2 +117722 6284 an awful lot like life -- gritty , 3 +117723 6284 an awful lot like life -- gritty 2 +117724 6284 an awful lot like life -- 2 +117725 6284 an awful lot like life 2 +117726 6284 awkward and ironic 1 +117727 6284 awkward and 1 +117728 6285 The Trials of Henry Kissinger is a remarkable piece of filmmaking ... because you get it . 4 +117729 6285 The Trials of Henry Kissinger 2 +117730 6285 The Trials 2 +117731 6285 Trials 2 +117732 6285 of Henry Kissinger 2 +117733 6285 is a remarkable piece of filmmaking ... because you get it . 4 +117734 6285 is a remarkable piece of filmmaking ... because you get it 4 +117735 6285 is a remarkable piece of filmmaking ... 4 +117736 6285 is a remarkable piece of filmmaking 4 +117737 6285 a remarkable piece of filmmaking 4 +117738 6285 a remarkable piece 4 +117739 6285 remarkable piece 4 +117740 6285 because you get it 2 +117741 6285 you get it 2 +117742 6285 get it 3 +117743 6286 Deserves a place of honor next to Nanook as a landmark in film history . 3 +117744 6286 Deserves a place of honor next to Nanook as a landmark in film history 4 +117745 6286 Deserves a place of honor next to Nanook 3 +117746 6286 Deserves a place of honor 4 +117747 6286 a place of honor 2 +117748 6286 of honor 2 +117749 6286 next to Nanook 2 +117750 6286 to Nanook 2 +117751 6286 Nanook 2 +117752 6286 as a landmark in film history 4 +117753 6286 a landmark in film history 4 +117754 6286 a landmark 3 +117755 6286 in film history 2 +117756 6286 film history 3 +117757 6287 Like the best of Godard 's movies ... it is visually ravishing , penetrating , impenetrable . 4 +117758 6287 Like the best of Godard 's movies 3 +117759 6287 the best of Godard 's movies 4 +117760 6287 of Godard 's movies 2 +117761 6287 Godard 's movies 2 +117762 6287 ... it is visually ravishing , penetrating , impenetrable . 4 +117763 6287 it is visually ravishing , penetrating , impenetrable . 3 +117764 6287 is visually ravishing , penetrating , impenetrable . 3 +117765 6287 is visually ravishing , penetrating , impenetrable 4 +117766 6287 is visually ravishing , 4 +117767 6287 is visually ravishing 3 +117768 6287 visually ravishing 4 +117769 6287 penetrating , impenetrable 3 +117770 6287 penetrating , 3 +117771 6288 The film 's most improbable feat ? 1 +117772 6288 's most improbable feat ? 2 +117773 6288 's most improbable feat 2 +117774 6288 most improbable feat 2 +117775 6288 most improbable 1 +117776 6289 Puts to rest any thought that the German film industry can not make a delightful comedy centering on food . 4 +117777 6289 Puts to rest any 2 +117778 6289 to rest any 2 +117779 6289 rest any 2 +117780 6289 thought that the German film industry can not make a delightful comedy centering on food . 3 +117781 6289 thought that the German film industry can not make a delightful comedy centering on food 2 +117782 6289 that the German film industry can not make a delightful comedy centering on food 1 +117783 6289 the German film industry can not make a delightful comedy centering on food 0 +117784 6289 the German film industry 2 +117785 6289 German film industry 2 +117786 6289 can not make a delightful comedy centering on food 2 +117787 6289 make a delightful comedy centering on food 4 +117788 6289 a delightful comedy centering on food 4 +117789 6289 a delightful comedy 4 +117790 6289 centering on food 2 +117791 6289 centering 2 +117792 6289 on food 2 +117793 6290 Comes off like a bad imitation of the Bard . 1 +117794 6290 Comes off like a bad imitation of the Bard 1 +117795 6290 like a bad imitation of the Bard 2 +117796 6290 a bad imitation of the Bard 2 +117797 6290 a bad imitation 0 +117798 6290 bad imitation 1 +117799 6290 of the Bard 2 +117800 6291 A great cast and a wonderful but sometimes confusing flashback movie about growing up in a dysfunctional family . 3 +117801 6291 A great cast and a wonderful but sometimes confusing flashback 3 +117802 6291 a wonderful but sometimes confusing flashback 2 +117803 6291 wonderful but sometimes confusing flashback 3 +117804 6291 wonderful but sometimes confusing 3 +117805 6291 wonderful but 3 +117806 6291 sometimes confusing 1 +117807 6291 flashback 2 +117808 6291 movie about growing up in a dysfunctional family . 2 +117809 6291 movie about growing up in a dysfunctional family 2 +117810 6291 about growing up in a dysfunctional family 2 +117811 6291 growing up in a dysfunctional family 2 +117812 6291 in a dysfunctional family 1 +117813 6291 a dysfunctional family 2 +117814 6292 Stealing Harvard will dip into your wallet , swipe 90 minutes of your time , and offer you precisely this in recompense : A few early laughs scattered around a plot as thin as it is repetitious . 0 +117815 6292 will dip into your wallet , swipe 90 minutes of your time , and offer you precisely this in recompense : A few early laughs scattered around a plot as thin as it is repetitious . 0 +117816 6292 will dip into your wallet , swipe 90 minutes of your time , and offer you precisely this in recompense : A few early laughs scattered around a plot as thin as it is repetitious 0 +117817 6292 dip into your wallet , swipe 90 minutes of your time , and offer you precisely this in recompense : A few early laughs scattered around a plot as thin as it is repetitious 1 +117818 6292 dip into your wallet , swipe 90 minutes of your time , and 3 +117819 6292 dip into your wallet , swipe 90 minutes of your time , 1 +117820 6292 dip into your wallet , swipe 90 minutes of your time 1 +117821 6292 dip into your wallet , 2 +117822 6292 dip into your wallet 2 +117823 6292 into your wallet 2 +117824 6292 swipe 90 minutes of your time 1 +117825 6292 swipe 2 +117826 6292 90 minutes of your time 2 +117827 6292 offer you precisely this in recompense : A few early laughs scattered around a plot as thin as it is repetitious 2 +117828 6292 offer you precisely this in recompense : A few early laughs scattered around a plot as thin 2 +117829 6292 offer you precisely 2 +117830 6292 offer you 2 +117831 6292 this in recompense : A few early laughs scattered around a plot as thin 1 +117832 6292 this in recompense : A few early laughs scattered around a plot 2 +117833 6292 in recompense : A few early laughs scattered around a plot 3 +117834 6292 recompense : A few early laughs scattered around a plot 2 +117835 6292 recompense : 2 +117836 6292 recompense 2 +117837 6292 A few early laughs scattered around a plot 2 +117838 6292 A few early laughs 2 +117839 6292 few early laughs 3 +117840 6292 early laughs 3 +117841 6292 scattered around a plot 2 +117842 6292 around a plot 2 +117843 6292 as thin 2 +117844 6292 as it is repetitious 1 +117845 6292 it is repetitious 1 +117846 6292 is repetitious 1 +117847 6292 repetitious 1 +117848 6293 Neither a rousing success nor a blinding embarrassment . 2 +117849 6293 Neither a rousing success nor a blinding 2 +117850 6293 a rousing success nor a blinding 2 +117851 6293 a rousing success nor 2 +117852 6293 a rousing success 4 +117853 6293 rousing success 4 +117854 6293 a blinding 2 +117855 6293 blinding 1 +117856 6294 A heroic tale of persistence that is sure to win viewers ' hearts . 4 +117857 6294 A heroic tale of persistence that is sure to win viewers ' hearts 4 +117858 6294 A heroic tale 3 +117859 6294 heroic tale 2 +117860 6294 of persistence that is sure to win viewers ' hearts 4 +117861 6294 persistence that is sure to win viewers ' hearts 3 +117862 6294 persistence 2 +117863 6294 that is sure to win viewers ' hearts 3 +117864 6294 is sure to win viewers ' hearts 4 +117865 6294 sure to win viewers ' hearts 4 +117866 6294 to win viewers ' hearts 2 +117867 6294 win viewers ' hearts 2 +117868 6294 viewers ' hearts 2 +117869 6294 viewers ' 2 +117870 6295 Not the best Herzog perhaps , but unmistakably Herzog . 2 +117871 6295 Not the best Herzog perhaps , but unmistakably 2 +117872 6295 Not the best Herzog 1 +117873 6295 the best Herzog 3 +117874 6295 best Herzog 3 +117875 6295 perhaps , but unmistakably 2 +117876 6295 perhaps , but 2 +117877 6295 perhaps , 3 +117878 6295 unmistakably 2 +117879 6295 Herzog . 2 +117880 6296 All mood and no movie . 1 +117881 6296 All mood and no movie 2 +117882 6296 mood and no movie 2 +117883 6296 no movie 2 +117884 6297 An infinitely wittier version of the Home Alone formula . 3 +117885 6297 An infinitely wittier version of the Home Alone formula 3 +117886 6297 An infinitely wittier version 3 +117887 6297 infinitely wittier version 4 +117888 6297 wittier version 2 +117889 6297 wittier 3 +117890 6297 of the Home Alone formula 2 +117891 6297 the Home Alone formula 3 +117892 6297 Home Alone formula 2 +117893 6297 Alone formula 2 +117894 6298 The film 's appeal has a lot to do with the casting of Juliette Binoche as Sand , who brings to the role her pale , dark beauty and characteristic warmth . 3 +117895 6298 The film 's appeal 3 +117896 6298 has a lot to do with the casting of Juliette Binoche as Sand , who brings to the role her pale , dark beauty and characteristic warmth . 4 +117897 6298 has a lot to do with the casting of Juliette Binoche as Sand , who brings to the role her pale , dark beauty and characteristic warmth 3 +117898 6298 a lot to do with the casting of Juliette Binoche as Sand , who brings to the role her pale , dark beauty and characteristic warmth 3 +117899 6298 lot to do with the casting of Juliette Binoche as Sand , who brings to the role her pale , dark beauty and characteristic warmth 3 +117900 6298 to do with the casting of Juliette Binoche as Sand , who brings to the role her pale , dark beauty and characteristic warmth 3 +117901 6298 do with the casting of Juliette Binoche as Sand , who brings to the role her pale , dark beauty and characteristic warmth 3 +117902 6298 do with the casting of Juliette Binoche 2 +117903 6298 with the casting of Juliette Binoche 2 +117904 6298 the casting of Juliette Binoche 2 +117905 6298 of Juliette Binoche 2 +117906 6298 Juliette Binoche 2 +117907 6298 as Sand , who brings to the role her pale , dark beauty and characteristic warmth 3 +117908 6298 Sand , who brings to the role her pale , dark beauty and characteristic warmth 3 +117909 6298 Sand , 2 +117910 6298 who brings to the role her pale , dark beauty and characteristic warmth 2 +117911 6298 brings to the role her pale , dark beauty and characteristic warmth 3 +117912 6298 brings to the role 2 +117913 6298 to the role 2 +117914 6298 her pale , dark beauty and characteristic warmth 2 +117915 6298 her pale , dark beauty and 3 +117916 6298 her pale , dark beauty 2 +117917 6298 pale , dark beauty 3 +117918 6298 , dark beauty 3 +117919 6298 dark beauty 2 +117920 6298 characteristic warmth 3 +117921 6299 The result is more depressing than liberating , but it 's never boring . 2 +117922 6299 The result is more depressing than liberating , but it 's never boring 2 +117923 6299 The result is more depressing than liberating , but 1 +117924 6299 The result is more depressing than liberating , 1 +117925 6299 The result is more depressing than liberating 1 +117926 6299 is more depressing than liberating 1 +117927 6299 more depressing than liberating 1 +117928 6299 depressing than liberating 2 +117929 6299 than liberating 2 +117930 6299 it 's never boring 4 +117931 6299 's never boring 3 +117932 6300 Though it lacks the utter authority of a genre gem , there 's a certain robustness to this engaging mix of love and bloodletting . 3 +117933 6300 Though it lacks the utter authority of a genre gem 1 +117934 6300 it lacks the utter authority of a genre gem 0 +117935 6300 lacks the utter authority of a genre gem 1 +117936 6300 the utter authority of a genre gem 3 +117937 6300 the utter authority 2 +117938 6300 utter authority 1 +117939 6300 of a genre gem 3 +117940 6300 a genre gem 3 +117941 6300 genre gem 3 +117942 6300 , there 's a certain robustness to this engaging mix of love and bloodletting . 4 +117943 6300 there 's a certain robustness to this engaging mix of love and bloodletting . 4 +117944 6300 's a certain robustness to this engaging mix of love and bloodletting . 3 +117945 6300 's a certain robustness to this engaging mix of love and bloodletting 3 +117946 6300 a certain robustness to this engaging mix of love and bloodletting 3 +117947 6300 a certain robustness 3 +117948 6300 certain robustness 3 +117949 6300 robustness 3 +117950 6300 to this engaging mix of love and bloodletting 3 +117951 6300 this engaging mix of love and bloodletting 3 +117952 6300 this engaging mix 3 +117953 6300 engaging mix 3 +117954 6300 of love and bloodletting 2 +117955 6300 love and bloodletting 3 +117956 6300 bloodletting 2 +117957 6301 A movie so bad that it quickly enters the pantheon of wreckage that includes Battlefield Earth and Showgirls . 0 +117958 6301 A movie so bad that it quickly enters the pantheon of wreckage that includes Battlefield Earth and Showgirls 2 +117959 6301 so bad that it quickly enters the pantheon of wreckage that includes Battlefield Earth and Showgirls 2 +117960 6301 that it quickly enters the pantheon of wreckage that includes Battlefield Earth and Showgirls 1 +117961 6301 it quickly enters the pantheon of wreckage that includes Battlefield Earth and Showgirls 0 +117962 6301 quickly enters the pantheon of wreckage that includes Battlefield Earth and Showgirls 1 +117963 6301 enters the pantheon of wreckage that includes Battlefield Earth and Showgirls 0 +117964 6301 the pantheon of wreckage that includes Battlefield Earth and Showgirls 0 +117965 6301 the pantheon of wreckage 2 +117966 6301 the pantheon 2 +117967 6301 of wreckage 2 +117968 6301 wreckage 1 +117969 6301 that includes Battlefield Earth and Showgirls 2 +117970 6301 includes Battlefield Earth and Showgirls 1 +117971 6301 Battlefield Earth and Showgirls 2 +117972 6301 Battlefield Earth and 2 +117973 6301 Battlefield Earth 2 +117974 6302 The script falls back on too many tried-and-true shenanigans that hardly distinguish it from the next teen comedy . 0 +117975 6302 falls back on too many tried-and-true shenanigans that hardly distinguish it from the next teen comedy . 1 +117976 6302 falls back on too many tried-and-true shenanigans that hardly distinguish it from the next teen comedy 0 +117977 6302 falls back 1 +117978 6302 on too many tried-and-true shenanigans that hardly distinguish it from the next teen comedy 1 +117979 6302 too many tried-and-true shenanigans that hardly distinguish it from the next teen comedy 1 +117980 6302 too many tried-and-true shenanigans 0 +117981 6302 tried-and-true shenanigans 2 +117982 6302 tried-and-true 3 +117983 6302 that hardly distinguish it from the next teen comedy 1 +117984 6302 hardly distinguish it from the next teen comedy 1 +117985 6302 distinguish it from the next teen comedy 2 +117986 6302 distinguish it 2 +117987 6302 from the next teen comedy 2 +117988 6302 the next teen comedy 2 +117989 6302 next teen comedy 2 +117990 6303 Ms. Seigner and Mr. Serrault bring fresh , unforced naturalism to their characters . 4 +117991 6303 Ms. Seigner and Mr. Serrault 2 +117992 6303 Seigner and Mr. Serrault 2 +117993 6303 Seigner 2 +117994 6303 and Mr. Serrault 2 +117995 6303 Mr. Serrault 2 +117996 6303 bring fresh , unforced naturalism to their characters . 3 +117997 6303 bring fresh , unforced naturalism to their characters 3 +117998 6303 fresh , unforced naturalism to their characters 4 +117999 6303 fresh , unforced naturalism 3 +118000 6303 , unforced naturalism 2 +118001 6303 unforced naturalism 3 +118002 6303 naturalism 2 +118003 6303 to their characters 2 +118004 6304 Admirers of director Abel Ferrara may be relieved that his latest feature , R Xmas , marks a modest if encouraging return to form . 4 +118005 6304 Admirers of director Abel Ferrara 2 +118006 6304 of director Abel Ferrara 3 +118007 6304 director Abel Ferrara 2 +118008 6304 may be relieved that his latest feature , R Xmas , marks a modest if encouraging return to form . 3 +118009 6304 may be relieved that his latest feature , R Xmas , marks a modest if encouraging return to form 3 +118010 6304 be relieved that his latest feature , R Xmas , marks a modest if encouraging return to form 3 +118011 6304 relieved that his latest feature , R Xmas , marks a modest if encouraging return to form 3 +118012 6304 relieved 2 +118013 6304 that his latest feature , R Xmas , marks a modest if encouraging return to form 2 +118014 6304 his latest feature , R Xmas , marks a modest if encouraging return to form 3 +118015 6304 his latest feature , R Xmas , 2 +118016 6304 his latest feature , R Xmas 2 +118017 6304 his latest feature , 2 +118018 6304 his latest feature 2 +118019 6304 latest feature 2 +118020 6304 R Xmas 2 +118021 6304 R 2 +118022 6304 Xmas 3 +118023 6304 marks a modest if encouraging return to form 3 +118024 6304 marks a modest if encouraging return 3 +118025 6304 a modest if encouraging return 2 +118026 6304 modest if encouraging return 2 +118027 6304 if encouraging return 3 +118028 6304 if encouraging 2 +118029 6304 to form 2 +118030 6305 Witty , contemplative , and sublimely beautiful . 4 +118031 6305 , contemplative , and sublimely beautiful . 3 +118032 6305 contemplative , and sublimely beautiful . 4 +118033 6305 contemplative , and sublimely beautiful 4 +118034 6305 contemplative , and 3 +118035 6305 contemplative , 2 +118036 6305 sublimely beautiful 4 +118037 6305 sublimely 2 +118038 6306 Passions , obsessions , and loneliest dark spots are pushed to their most virtuous limits , lending the narrative an unusually surreal tone . 3 +118039 6306 Passions , obsessions , and loneliest dark spots 2 +118040 6306 Passions , obsessions , and 3 +118041 6306 Passions , obsessions , 2 +118042 6306 Passions , obsessions 2 +118043 6306 Passions , 2 +118044 6306 loneliest dark spots 1 +118045 6306 loneliest 2 +118046 6306 dark spots 2 +118047 6306 are pushed to their most virtuous limits , lending the narrative an unusually surreal tone . 3 +118048 6306 are pushed to their most virtuous limits , lending the narrative an unusually surreal tone 2 +118049 6306 pushed to their most virtuous limits , lending the narrative an unusually surreal tone 3 +118050 6306 pushed to their most virtuous limits , 3 +118051 6306 pushed to their most virtuous limits 3 +118052 6306 to their most virtuous limits 2 +118053 6306 their most virtuous limits 3 +118054 6306 most virtuous limits 4 +118055 6306 most virtuous 3 +118056 6306 virtuous 3 +118057 6306 lending the narrative an unusually surreal tone 2 +118058 6306 lending the narrative 2 +118059 6306 lending 2 +118060 6306 an unusually surreal tone 3 +118061 6306 unusually surreal tone 3 +118062 6306 unusually surreal 3 +118063 6307 A chance to see three splendid actors turn a larky chase movie into an emotionally satisfying exploration of the very human need to be somebody , and to belong to somebody . 4 +118064 6307 A chance to see three splendid actors 3 +118065 6307 chance to see three splendid actors 3 +118066 6307 to see three splendid actors 3 +118067 6307 see three splendid actors 2 +118068 6307 three splendid actors 4 +118069 6307 splendid actors 4 +118070 6307 turn a larky chase movie into an emotionally satisfying exploration of the very human need to be somebody , and to belong to somebody . 4 +118071 6307 turn a larky chase movie into an emotionally satisfying exploration of the very human need to be somebody , and to belong to somebody 3 +118072 6307 turn a larky chase movie into an emotionally satisfying exploration of the very human need 3 +118073 6307 turn a larky chase movie 2 +118074 6307 a larky chase movie 2 +118075 6307 larky chase movie 2 +118076 6307 chase movie 2 +118077 6307 into an emotionally satisfying exploration of the very human need 3 +118078 6307 an emotionally satisfying exploration of the very human need 4 +118079 6307 an emotionally satisfying exploration 4 +118080 6307 emotionally satisfying exploration 3 +118081 6307 emotionally satisfying 4 +118082 6307 of the very human need 2 +118083 6307 the very human need 2 +118084 6307 very human need 2 +118085 6307 to be somebody , and to belong to somebody 3 +118086 6307 to be somebody , and 3 +118087 6307 to be somebody , 2 +118088 6307 to be somebody 2 +118089 6307 be somebody 2 +118090 6307 to belong to somebody 2 +118091 6307 belong to somebody 2 +118092 6307 belong 2 +118093 6307 to somebody 2 +118094 6308 ... one of the more influential works of the ` Korean New Wave ' . 4 +118095 6308 one of the more influential works of the ` Korean New Wave ' . 4 +118096 6308 one of the more influential works of the ` Korean New Wave ' 3 +118097 6308 one of the more influential works 3 +118098 6308 of the more influential works 3 +118099 6308 the more influential works 3 +118100 6308 more influential works 2 +118101 6308 more influential 2 +118102 6308 influential 3 +118103 6308 of the ` Korean New Wave ' 2 +118104 6308 the ` Korean New Wave ' 2 +118105 6308 ` Korean New Wave ' 2 +118106 6308 Korean New Wave ' 2 +118107 6308 Korean New 2 +118108 6308 Wave ' 2 +118109 6309 The best drug addition movies are usually depressing but rewarding . 2 +118110 6309 The best drug addition movies 3 +118111 6309 The best drug 2 +118112 6309 best drug 2 +118113 6309 addition movies 2 +118114 6309 are usually depressing but rewarding . 2 +118115 6309 are usually depressing but rewarding 2 +118116 6309 depressing but rewarding 3 +118117 6309 depressing but 1 +118118 6310 Undoubtedly the scariest movie ever made about tattoos . 3 +118119 6310 the scariest movie ever made about tattoos . 2 +118120 6310 the scariest movie 3 +118121 6310 scariest movie 3 +118122 6310 ever made about tattoos . 2 +118123 6310 ever made about tattoos 2 +118124 6310 made about tattoos 2 +118125 6310 about tattoos 3 +118126 6310 tattoos 2 +118127 6311 The good thing -- the only good thing -- about Extreme Ops is that it 's so inane that it gave me plenty of time to ponder my Thanksgiving to-do list . 2 +118128 6311 The good thing -- the only good thing -- about Extreme Ops 2 +118129 6311 The good thing -- the only good thing -- 2 +118130 6311 The good thing 3 +118131 6311 -- the only good thing -- 1 +118132 6311 the only good thing -- 2 +118133 6311 the only good thing 2 +118134 6311 only good thing 2 +118135 6311 only good 2 +118136 6311 about Extreme Ops 2 +118137 6311 is that it 's so inane that it gave me plenty of time to ponder my Thanksgiving to-do list . 1 +118138 6311 is that it 's so inane that it gave me plenty of time to ponder my Thanksgiving to-do list 2 +118139 6311 that it 's so inane that it gave me plenty of time to ponder my Thanksgiving to-do list 2 +118140 6311 it 's so inane that it gave me plenty of time to ponder my Thanksgiving to-do list 1 +118141 6311 's so inane that it gave me plenty of time to ponder my Thanksgiving to-do list 0 +118142 6311 's so inane 2 +118143 6311 so inane 1 +118144 6311 that it gave me plenty of time to ponder my Thanksgiving to-do list 2 +118145 6311 it gave me plenty of time to ponder my Thanksgiving to-do list 1 +118146 6311 gave me plenty of time to ponder my Thanksgiving to-do list 1 +118147 6311 plenty of time to ponder my Thanksgiving to-do list 1 +118148 6311 plenty of time 2 +118149 6311 to ponder my Thanksgiving to-do list 2 +118150 6311 ponder my Thanksgiving to-do list 2 +118151 6311 my Thanksgiving to-do list 2 +118152 6311 Thanksgiving to-do list 2 +118153 6311 to-do list 2 +118154 6311 to-do 2 +118155 6312 To show these characters in the act and give them no feelings of remorse -- and to cut repeatedly to the flashback of the original rape -- is overkill to the highest degree . 2 +118156 6312 To show these characters in the act and give them no feelings of remorse -- and to cut repeatedly to the flashback of the original rape -- 1 +118157 6312 To show these characters in the act and give them no feelings of remorse 1 +118158 6312 show these characters in the act and give them no feelings of remorse 2 +118159 6312 show these characters in the act and 2 +118160 6312 show these characters in the act 2 +118161 6312 show these characters 2 +118162 6312 in the act 2 +118163 6312 give them no feelings of remorse 2 +118164 6312 no feelings of remorse 2 +118165 6312 no feelings 1 +118166 6312 of remorse 2 +118167 6312 remorse 2 +118168 6312 -- and to cut repeatedly to the flashback of the original rape -- 2 +118169 6312 -- and to cut repeatedly to the flashback of the original rape 2 +118170 6312 to cut repeatedly to the flashback of the original rape 1 +118171 6312 cut repeatedly to the flashback of the original rape 2 +118172 6312 cut repeatedly 2 +118173 6312 to the flashback of the original rape 2 +118174 6312 the flashback of the original rape 1 +118175 6312 the flashback 2 +118176 6312 of the original rape 2 +118177 6312 the original rape 2 +118178 6312 original rape 1 +118179 6312 rape 2 +118180 6312 is overkill to the highest degree . 0 +118181 6312 is overkill to the highest degree 0 +118182 6312 overkill to the highest degree 0 +118183 6312 to the highest degree 3 +118184 6312 the highest degree 3 +118185 6312 highest degree 2 +118186 6313 George Clooney , in his first directorial effort , presents this utterly ridiculous shaggy dog story as one of the most creative , energetic and original comedies to hit the screen in years . 3 +118187 6313 George Clooney , in his first directorial effort , 2 +118188 6313 George Clooney , in his first directorial effort 2 +118189 6313 George Clooney , 2 +118190 6313 in his first directorial effort 2 +118191 6313 his first directorial effort 2 +118192 6313 first directorial effort 2 +118193 6313 directorial effort 2 +118194 6313 presents this utterly ridiculous shaggy dog story as one of the most creative , energetic and original comedies to hit the screen in years . 4 +118195 6313 presents this utterly ridiculous shaggy dog story as one of the most creative , energetic and original comedies to hit the screen in years 4 +118196 6313 this utterly ridiculous shaggy dog story as one of the most creative , energetic and original comedies to hit the screen in years 4 +118197 6313 this utterly ridiculous shaggy dog story as one 0 +118198 6313 this utterly ridiculous shaggy dog story 2 +118199 6313 utterly ridiculous shaggy dog story 1 +118200 6313 utterly ridiculous 1 +118201 6313 of the most creative , energetic and original comedies to hit the screen in years 4 +118202 6313 the most creative , energetic and original comedies to hit the screen in years 4 +118203 6313 the most creative , energetic and original 4 +118204 6313 most creative , energetic and original 4 +118205 6313 creative , energetic and original 4 +118206 6313 , energetic and original 4 +118207 6313 energetic and original 4 +118208 6313 comedies to hit the screen in years 3 +118209 6313 to hit the screen in years 2 +118210 6313 hit the screen in years 2 +118211 6313 the screen in years 2 +118212 6314 Alas , getting there is not even half the interest . 0 +118213 6314 , getting there is not even half the interest . 1 +118214 6314 getting there is not even half the interest . 1 +118215 6314 getting there 2 +118216 6314 is not even half the interest . 1 +118217 6314 is not even half the interest 1 +118218 6314 is not even 2 +118219 6314 half the interest 2 +118220 6314 the interest 2 +118221 6315 This is n't a retooled genre piece , the tale of a guy and his gun , but an amiably idiosyncratic work . 2 +118222 6315 is n't a retooled genre piece , the tale of a guy and his gun , but an amiably idiosyncratic work . 3 +118223 6315 is n't a retooled genre piece , the tale of a guy and his gun , but an amiably idiosyncratic work 2 +118224 6315 is n't a retooled genre piece , the tale of a guy and his gun , 3 +118225 6315 is n't a retooled genre piece , the tale of a guy and his gun 2 +118226 6315 a retooled genre piece , the tale of a guy and his gun 2 +118227 6315 a retooled genre piece , the tale of a guy and 2 +118228 6315 a retooled genre piece , the tale of a guy 2 +118229 6315 a retooled genre piece , 2 +118230 6315 a retooled genre piece 2 +118231 6315 retooled genre piece 1 +118232 6315 genre piece 2 +118233 6315 the tale of a guy 2 +118234 6315 of a guy 2 +118235 6315 his gun 2 +118236 6315 but an amiably idiosyncratic work 3 +118237 6315 an amiably idiosyncratic work 3 +118238 6315 amiably idiosyncratic work 3 +118239 6315 amiably idiosyncratic 2 +118240 6315 amiably 2 +118241 6316 It 's sweet . 3 +118242 6316 's sweet . 3 +118243 6317 Do we really need another film that praises female self-sacrifice ? 1 +118244 6317 Do we really need another film that praises female self-sacrifice 2 +118245 6317 Do we really 2 +118246 6317 need another film that praises female self-sacrifice 3 +118247 6317 another film that praises female self-sacrifice 2 +118248 6317 that praises female self-sacrifice 2 +118249 6317 praises female self-sacrifice 3 +118250 6317 female self-sacrifice 2 +118251 6317 self-sacrifice 2 +118252 6318 Be prepared to cling to the edge of your seat , tense with suspense . 4 +118253 6318 Be prepared to cling to the edge of your seat , tense with suspense 4 +118254 6318 prepared to cling to the edge of your seat , tense with suspense 4 +118255 6318 prepared 2 +118256 6318 to cling to the edge of your seat , tense with suspense 3 +118257 6318 cling to the edge of your seat , tense with suspense 4 +118258 6318 cling 2 +118259 6318 to the edge of your seat , tense with suspense 4 +118260 6318 the edge of your seat , tense with suspense 4 +118261 6318 of your seat , tense with suspense 4 +118262 6318 your seat , tense with suspense 4 +118263 6318 your seat , 2 +118264 6318 tense with suspense 3 +118265 6318 with suspense 2 +118266 6319 It may be a somewhat backhanded compliment to say that the film makes the viewer feel like the movie 's various victimized audience members after a while , but it also happens to be the movie 's most admirable quality 3 +118267 6319 may be a somewhat backhanded compliment to say that the film makes the viewer feel like the movie 's various victimized audience members after a while , but it also happens to be the movie 's most admirable quality 2 +118268 6319 be a somewhat backhanded compliment to say that the film makes the viewer feel like the movie 's various victimized audience members after a while , but it also happens to be the movie 's most admirable quality 3 +118269 6319 a somewhat backhanded compliment to say that the film makes the viewer feel like the movie 's various victimized audience members after a while , but it also happens to be the movie 's most admirable quality 4 +118270 6319 somewhat backhanded compliment to say that the film makes the viewer feel like the movie 's various victimized audience members after a while , but it also happens to be the movie 's most admirable quality 3 +118271 6319 somewhat backhanded 1 +118272 6319 compliment to say that the film makes the viewer feel like the movie 's various victimized audience members after a while , but it also happens to be the movie 's most admirable quality 3 +118273 6319 to say that the film makes the viewer feel like the movie 's various victimized audience members after a while , but it also happens to be the movie 's most admirable quality 3 +118274 6319 say that the film makes the viewer feel like the movie 's various victimized audience members after a while , but it also happens to be the movie 's most admirable quality 2 +118275 6319 that the film makes the viewer feel like the movie 's various victimized audience members after a while , but it also happens to be the movie 's most admirable quality 3 +118276 6319 the film makes the viewer feel like the movie 's various victimized audience members after a while , but it also happens to be the movie 's most admirable quality 3 +118277 6319 makes the viewer feel like the movie 's various victimized audience members after a while , but it also happens to be the movie 's most admirable quality 3 +118278 6319 the viewer feel like the movie 's various victimized audience members after a while , but it also happens to be the movie 's most admirable quality 2 +118279 6319 the viewer feel like the movie 's various victimized audience members after a while , but 2 +118280 6319 the viewer feel like the movie 's various victimized audience members after a while , 2 +118281 6319 the viewer feel like the movie 's various victimized audience members after a while 1 +118282 6319 feel like the movie 's various victimized audience members after a while 1 +118283 6319 like the movie 's various victimized audience members after a while 1 +118284 6319 the movie 's various victimized audience members after a while 1 +118285 6319 the movie 's various victimized audience members 0 +118286 6319 various victimized audience members 1 +118287 6319 victimized audience members 2 +118288 6319 victimized 1 +118289 6319 after a while 2 +118290 6319 it also happens to be the movie 's most admirable quality 3 +118291 6319 also happens to be the movie 's most admirable quality 3 +118292 6319 happens to be the movie 's most admirable quality 3 +118293 6319 to be the movie 's most admirable quality 3 +118294 6319 be the movie 's most admirable quality 2 +118295 6319 the movie 's most admirable quality 3 +118296 6319 most admirable quality 4 +118297 6319 admirable quality 3 +118298 6320 ... may work as an addictive guilty pleasure but the material never overcomes its questionable satirical ambivalence . 1 +118299 6320 may work as an addictive guilty pleasure but the material never overcomes its questionable satirical ambivalence . 1 +118300 6320 may work as an addictive guilty pleasure but the material never overcomes its questionable satirical ambivalence 1 +118301 6320 work as an addictive guilty pleasure but the material never overcomes its questionable satirical ambivalence 2 +118302 6320 as an addictive guilty pleasure but the material never overcomes its questionable satirical ambivalence 2 +118303 6320 an addictive guilty pleasure but the material never overcomes its questionable satirical ambivalence 2 +118304 6320 an addictive guilty pleasure but the material 3 +118305 6320 an addictive guilty pleasure 3 +118306 6320 addictive guilty pleasure 3 +118307 6320 addictive 3 +118308 6320 but the material 2 +118309 6320 never overcomes its questionable satirical ambivalence 1 +118310 6320 overcomes its questionable satirical ambivalence 2 +118311 6320 its questionable satirical ambivalence 1 +118312 6320 questionable satirical ambivalence 1 +118313 6320 questionable 1 +118314 6320 satirical ambivalence 2 +118315 6320 ambivalence 1 +118316 6321 If Deuces Wild had been tweaked up a notch it would have become a camp adventure , one of those movies that 's so bad it starts to become good . 2 +118317 6321 If Deuces Wild had been tweaked up a notch 2 +118318 6321 Deuces Wild had been tweaked up a notch 2 +118319 6321 had been tweaked up a notch 2 +118320 6321 been tweaked up a notch 2 +118321 6321 tweaked up a notch 2 +118322 6321 tweaked up 2 +118323 6321 a notch 2 +118324 6321 it would have become a camp adventure , one of those movies that 's so bad it starts to become good . 3 +118325 6321 would have become a camp adventure , one of those movies that 's so bad it starts to become good . 2 +118326 6321 would have become a camp adventure , one of those movies that 's so bad it starts to become good 2 +118327 6321 have become a camp adventure , one of those movies that 's so bad it starts to become good 2 +118328 6321 become a camp adventure , one of those movies that 's so bad it starts to become good 2 +118329 6321 a camp adventure , one of those movies that 's so bad it starts to become good 1 +118330 6321 a camp adventure , 2 +118331 6321 a camp adventure 2 +118332 6321 camp adventure 2 +118333 6321 one of those movies that 's so bad it starts to become good 1 +118334 6321 that 's so bad it starts to become good 3 +118335 6321 's so bad it starts to become good 2 +118336 6321 so bad it starts to become good 2 +118337 6321 bad it starts to become good 2 +118338 6321 it starts to become good 3 +118339 6321 starts to become good 3 +118340 6321 to become good 2 +118341 6321 become good 3 +118342 6322 An engrossing Iranian film about two itinerant teachers and some lost and desolate people they encounter in a place where war has savaged the lives and liberties of the poor and the dispossessed . 3 +118343 6322 An engrossing Iranian film about two itinerant teachers and some lost and desolate people 3 +118344 6322 An engrossing Iranian film about two itinerant teachers and 2 +118345 6322 An engrossing Iranian film about two itinerant teachers 3 +118346 6322 An engrossing Iranian film 2 +118347 6322 engrossing Iranian film 2 +118348 6322 Iranian film 2 +118349 6322 about two itinerant teachers 2 +118350 6322 two itinerant teachers 2 +118351 6322 itinerant teachers 2 +118352 6322 itinerant 2 +118353 6322 some lost and desolate people 2 +118354 6322 lost and desolate people 2 +118355 6322 lost and desolate 1 +118356 6322 lost and 2 +118357 6322 they encounter in a place where war has savaged the lives and liberties of the poor and the dispossessed . 2 +118358 6322 encounter in a place where war has savaged the lives and liberties of the poor and the dispossessed . 1 +118359 6322 encounter in a place where war has savaged the lives and liberties of the poor and the dispossessed 2 +118360 6322 encounter in a place 2 +118361 6322 in a place 2 +118362 6322 where war has savaged the lives and liberties of the poor and the dispossessed 2 +118363 6322 war has savaged the lives and liberties of the poor and the dispossessed 2 +118364 6322 has savaged the lives and liberties of the poor and the dispossessed 2 +118365 6322 savaged the lives and liberties of the poor and the dispossessed 1 +118366 6322 savaged 2 +118367 6322 the lives and liberties of the poor and the dispossessed 2 +118368 6322 the lives and liberties 2 +118369 6322 lives and liberties 2 +118370 6322 lives and 2 +118371 6322 of the poor and the dispossessed 2 +118372 6322 the poor and the dispossessed 1 +118373 6322 the poor and 1 +118374 6322 the dispossessed 2 +118375 6323 Throughout all the tumult , a question comes to mind : So why is this so boring ? 1 +118376 6323 Throughout all the tumult 3 +118377 6323 all the tumult 2 +118378 6323 the tumult 2 +118379 6323 , a question comes to mind : So why is this so boring ? 1 +118380 6323 a question comes to mind : So why is this so boring ? 1 +118381 6323 a question 2 +118382 6323 comes to mind : So why is this so boring ? 0 +118383 6323 to mind : So why is this so boring ? 1 +118384 6323 mind : So why is this so boring ? 1 +118385 6323 mind : 2 +118386 6323 So why is this so boring ? 2 +118387 6323 why is this so boring ? 0 +118388 6323 is this so boring ? 1 +118389 6323 is this so boring 1 +118390 6324 It must be in the genes . 2 +118391 6324 must be in the genes . 2 +118392 6324 must be in the genes 2 +118393 6324 be in the genes 2 +118394 6324 in the genes 2 +118395 6324 the genes 2 +118396 6324 genes 2 +118397 6325 His scenes are short and often unexpected . 2 +118398 6325 are short and often unexpected . 2 +118399 6325 are short and often unexpected 2 +118400 6325 are short and often 2 +118401 6325 short and often 2 +118402 6326 As animation increasingly emphasizes the computer and the cool , this is a film that takes a stand in favor of tradition and warmth . 3 +118403 6326 As animation increasingly emphasizes the computer and the cool 2 +118404 6326 animation increasingly emphasizes the computer and the cool 3 +118405 6326 increasingly emphasizes the computer and the cool 3 +118406 6326 emphasizes the computer and the cool 3 +118407 6326 the computer and the cool 2 +118408 6326 the computer and 3 +118409 6326 the computer 2 +118410 6326 the cool 2 +118411 6326 , this is a film that takes a stand in favor of tradition and warmth . 3 +118412 6326 this is a film that takes a stand in favor of tradition and warmth . 3 +118413 6326 is a film that takes a stand in favor of tradition and warmth . 4 +118414 6326 is a film that takes a stand in favor of tradition and warmth 3 +118415 6326 a film that takes a stand in favor of tradition and warmth 3 +118416 6326 that takes a stand in favor of tradition and warmth 4 +118417 6326 takes a stand in favor of tradition and warmth 3 +118418 6326 a stand in favor of tradition and warmth 3 +118419 6326 a stand 2 +118420 6326 in favor of tradition and warmth 2 +118421 6326 favor of tradition and warmth 3 +118422 6326 of tradition and warmth 3 +118423 6326 tradition and warmth 3 +118424 6326 tradition and 2 +118425 6327 The story is smart and entirely charming in intent and execution . 3 +118426 6327 is smart and entirely charming in intent and execution . 3 +118427 6327 is smart and entirely charming in intent and execution 3 +118428 6327 is smart and entirely charming 4 +118429 6327 smart and entirely charming 4 +118430 6327 entirely charming 4 +118431 6327 in intent and execution 2 +118432 6327 intent and execution 2 +118433 6327 intent and 2 +118434 6328 That rare film whose real-life basis is , in fact , so interesting that no embellishment is needed . 3 +118435 6328 That rare film whose real-life basis is , in fact , so interesting that no embellishment is 3 +118436 6328 That rare film 2 +118437 6328 rare film 3 +118438 6328 whose real-life basis is , in fact , so interesting that no embellishment is 3 +118439 6328 real-life basis is , in fact , so interesting that no embellishment is 3 +118440 6328 real-life basis 2 +118441 6328 is , in fact , so interesting that no embellishment is 3 +118442 6328 is , in fact , so interesting 4 +118443 6328 is , in fact , 2 +118444 6328 is , in fact 2 +118445 6328 that no embellishment is 2 +118446 6328 no embellishment is 2 +118447 6328 no embellishment 2 +118448 6328 embellishment 3 +118449 6328 needed . 3 +118450 6329 A powerful and telling story that examines forbidden love , racial tension , and other issues that are as valid today as they were in the 1950s . 4 +118451 6329 A powerful and telling story that examines forbidden love , racial tension , and other issues that are as valid today as they were in the 1950s 3 +118452 6329 A powerful and telling story that examines 4 +118453 6329 A powerful and telling story 3 +118454 6329 powerful and telling story 4 +118455 6329 powerful and telling 3 +118456 6329 that examines 2 +118457 6329 forbidden love , racial tension , and other issues that are as valid today as they were in the 1950s 3 +118458 6329 forbidden love , racial tension , and other issues that are as valid today 3 +118459 6329 love , racial tension , and other issues that are as valid today 3 +118460 6329 love , racial tension , and 2 +118461 6329 love , racial tension , 2 +118462 6329 love , racial tension 2 +118463 6329 racial tension 1 +118464 6329 other issues that are as valid today 2 +118465 6329 other issues 2 +118466 6329 that are as valid today 3 +118467 6329 are as valid today 2 +118468 6329 are as valid 2 +118469 6329 as valid 2 +118470 6329 valid 3 +118471 6329 as they were in the 1950s 2 +118472 6329 they were in the 1950s 2 +118473 6329 were in the 1950s 2 +118474 6329 in the 1950s 2 +118475 6329 the 1950s 2 +118476 6330 are both superb , while Huppert ... is magnificent . 4 +118477 6330 are both superb , while Huppert ... is magnificent 4 +118478 6330 are both superb , 4 +118479 6330 are both superb 4 +118480 6330 while Huppert ... is magnificent 4 +118481 6330 Huppert ... is magnificent 4 +118482 6330 ... is magnificent 4 +118483 6330 is magnificent 4 +118484 6331 If Divine Secrets of the Ya-Ya Sisterhood suffers from a ploddingly melodramatic structure , it comes to life in the performances . 1 +118485 6331 If Divine Secrets of the Ya-Ya Sisterhood suffers from a ploddingly melodramatic structure 1 +118486 6331 Divine Secrets of the Ya-Ya Sisterhood suffers from a ploddingly melodramatic structure 0 +118487 6331 suffers from a ploddingly melodramatic structure 2 +118488 6331 from a ploddingly melodramatic structure 1 +118489 6331 a ploddingly melodramatic structure 3 +118490 6331 ploddingly melodramatic structure 1 +118491 6331 ploddingly melodramatic 2 +118492 6331 , it comes to life in the performances . 3 +118493 6331 it comes to life in the performances . 2 +118494 6331 comes to life in the performances . 3 +118495 6331 comes to life in the performances 2 +118496 6331 to life in the performances 3 +118497 6331 life in the performances 4 +118498 6332 Devolves into the derivative , leaning on badly-rendered CGI effects . 1 +118499 6332 Devolves into the derivative 1 +118500 6332 into the derivative 2 +118501 6332 the derivative 2 +118502 6332 , leaning on badly-rendered CGI effects . 1 +118503 6332 leaning on badly-rendered CGI effects . 2 +118504 6332 leaning on badly-rendered CGI effects 1 +118505 6332 leaning 2 +118506 6332 on badly-rendered CGI effects 1 +118507 6332 badly-rendered CGI effects 1 +118508 6332 badly-rendered 0 +118509 6333 In a summer overrun with movies dominated by CGI aliens and super heroes , it revigorates the mind to see a feature that concentrates on people , a project in which the script and characters hold sway . 4 +118510 6333 In a summer overrun with movies dominated by CGI aliens and super heroes 2 +118511 6333 a summer overrun with movies dominated by CGI aliens and super heroes 2 +118512 6333 overrun with movies dominated by CGI aliens and super heroes 1 +118513 6333 with movies dominated by CGI aliens and super heroes 2 +118514 6333 movies dominated by CGI aliens and super heroes 2 +118515 6333 dominated by CGI aliens and super heroes 2 +118516 6333 by CGI aliens and super heroes 2 +118517 6333 CGI aliens and super heroes 2 +118518 6333 CGI aliens and 2 +118519 6333 CGI aliens 2 +118520 6333 super heroes 3 +118521 6333 , it revigorates the mind to see a feature that concentrates on people , a project in which the script and characters hold sway . 4 +118522 6333 it revigorates the mind to see a feature that concentrates on people , a project in which the script and characters hold sway . 4 +118523 6333 revigorates the mind to see a feature that concentrates on people , a project in which the script and characters hold sway . 3 +118524 6333 revigorates the mind to see a feature that concentrates on people , a project in which the script and characters hold sway 4 +118525 6333 revigorates 3 +118526 6333 the mind to see a feature that concentrates on people , a project in which the script and characters hold sway 3 +118527 6333 mind to see a feature that concentrates on people , a project in which the script and characters hold sway 3 +118528 6333 to see a feature that concentrates on people , a project in which the script and characters hold sway 4 +118529 6333 see a feature that concentrates on people , a project in which the script and characters hold sway 3 +118530 6333 a feature that concentrates on people , a project in which the script and characters hold sway 3 +118531 6333 a feature 2 +118532 6333 that concentrates on people , a project in which the script and characters hold sway 3 +118533 6333 concentrates on people , a project in which the script and characters hold sway 3 +118534 6333 on people , a project in which the script and characters hold sway 3 +118535 6333 people , a project in which the script and characters hold sway 2 +118536 6333 people , 2 +118537 6333 a project in which the script and characters hold sway 2 +118538 6333 in which the script and characters hold sway 3 +118539 6333 the script and characters hold sway 4 +118540 6333 the script and characters 2 +118541 6333 the script and 2 +118542 6333 hold sway 2 +118543 6333 sway 2 +118544 6334 The unexpected thing is that its dying , in this shower of black-and-white psychedelia , is quite beautiful . 3 +118545 6334 The unexpected thing 2 +118546 6334 unexpected thing 2 +118547 6334 is that its dying , in this shower of black-and-white psychedelia , is quite beautiful . 4 +118548 6334 is that its dying , in this shower of black-and-white psychedelia , is quite beautiful 3 +118549 6334 that its dying , in this shower of black-and-white psychedelia , is quite beautiful 4 +118550 6334 its dying , in this shower of black-and-white psychedelia , is quite beautiful 3 +118551 6334 its dying , in this shower of black-and-white psychedelia , 1 +118552 6334 its dying , in this shower of black-and-white psychedelia 2 +118553 6334 its dying , 1 +118554 6334 its dying 0 +118555 6334 in this shower of black-and-white psychedelia 2 +118556 6334 this shower of black-and-white psychedelia 2 +118557 6334 this shower 2 +118558 6334 of black-and-white psychedelia 2 +118559 6334 black-and-white psychedelia 3 +118560 6334 psychedelia 2 +118561 6334 is quite beautiful 4 +118562 6334 quite beautiful 4 +118563 6335 Bad movie . 0 +118564 6336 It 's a movie that ends with Truckzilla , for cryin ' out loud . 1 +118565 6336 's a movie that ends with Truckzilla , for cryin ' out loud . 2 +118566 6336 's a movie that ends with Truckzilla , for cryin ' out loud 1 +118567 6336 's a movie that ends with Truckzilla , for cryin ' 2 +118568 6336 's a movie that ends with Truckzilla , 2 +118569 6336 's a movie that ends with Truckzilla 2 +118570 6336 a movie that ends with Truckzilla 2 +118571 6336 that ends with Truckzilla 2 +118572 6336 ends with Truckzilla 2 +118573 6336 with Truckzilla 2 +118574 6336 Truckzilla 2 +118575 6336 for cryin ' 3 +118576 6336 cryin ' 2 +118577 6336 cryin 2 +118578 6336 out loud 2 +118579 6337 Episode II -- Attack of the Clones is a technological exercise that lacks juice and delight . 1 +118580 6337 Episode II -- Attack of the Clones is a technological exercise that lacks juice and delight 1 +118581 6337 Episode II -- 3 +118582 6337 Episode II 2 +118583 6337 Attack of the Clones is a technological exercise that lacks juice and delight 1 +118584 6337 Attack of the Clones 2 +118585 6337 of the Clones 2 +118586 6337 the Clones 2 +118587 6337 is a technological exercise that lacks juice and delight 1 +118588 6337 a technological exercise that lacks juice and delight 0 +118589 6337 a technological exercise 2 +118590 6337 technological exercise 2 +118591 6337 that lacks juice and delight 1 +118592 6337 lacks juice and delight 1 +118593 6337 juice and delight 3 +118594 6337 juice and 2 +118595 6338 It 's been 20 years since 48 Hrs . 2 +118596 6338 's been 20 years since 48 Hrs . 2 +118597 6338 's been 20 years since 48 Hrs 2 +118598 6338 been 20 years since 48 Hrs 2 +118599 6338 20 years since 48 Hrs 2 +118600 6338 since 48 Hrs 2 +118601 6338 48 Hrs 2 +118602 6338 Hrs 1 +118603 6339 It 's all entertaining enough , but do n't look for any hefty anti-establishment message in what is essentially a whip-crack of a buddy movie that ends with a whimper . 2 +118604 6339 's all entertaining enough , but do n't look for any hefty anti-establishment message in what is essentially a whip-crack of a buddy movie that ends with a whimper . 2 +118605 6339 's all entertaining enough , but do n't look for any hefty anti-establishment message in what is essentially a whip-crack of a buddy movie that ends with a whimper 2 +118606 6339 's all entertaining enough , but 2 +118607 6339 's all entertaining enough , 2 +118608 6339 's all entertaining enough 3 +118609 6339 all entertaining enough 3 +118610 6339 entertaining enough 2 +118611 6339 do n't look for any hefty anti-establishment message in what is essentially a whip-crack of a buddy movie that ends with a whimper 1 +118612 6339 look for any hefty anti-establishment message in what is essentially a whip-crack of a buddy movie that ends with a whimper 1 +118613 6339 for any hefty anti-establishment message in what is essentially a whip-crack of a buddy movie that ends with a whimper 1 +118614 6339 any hefty anti-establishment message in what is essentially a whip-crack of a buddy movie that ends with a whimper 2 +118615 6339 any hefty anti-establishment message 2 +118616 6339 hefty anti-establishment message 3 +118617 6339 anti-establishment message 1 +118618 6339 anti-establishment 2 +118619 6339 in what is essentially a whip-crack of a buddy movie that ends with a whimper 2 +118620 6339 what is essentially a whip-crack of a buddy movie that ends with a whimper 1 +118621 6339 is essentially a whip-crack of a buddy movie that ends with a whimper 3 +118622 6339 a whip-crack of a buddy movie that ends with a whimper 1 +118623 6339 a whip-crack of a buddy movie 4 +118624 6339 a whip-crack 2 +118625 6339 whip-crack 2 +118626 6339 of a buddy movie 3 +118627 6339 a buddy movie 3 +118628 6339 that ends with a whimper 1 +118629 6340 A bright , inventive , thoroughly winning flight of revisionist fancy . 3 +118630 6340 A bright , inventive 3 +118631 6340 bright , inventive 4 +118632 6340 bright , 2 +118633 6340 , thoroughly winning flight of revisionist fancy . 4 +118634 6340 thoroughly winning flight of revisionist fancy . 3 +118635 6340 thoroughly winning flight of revisionist fancy 3 +118636 6340 winning flight of revisionist fancy 3 +118637 6340 flight of revisionist fancy 2 +118638 6340 flight 2 +118639 6340 of revisionist fancy 2 +118640 6340 revisionist fancy 3 +118641 6341 If there 's no art here , it 's still a good yarn -- which is nothing to sneeze at these days . 3 +118642 6341 If there 's no art here 1 +118643 6341 there 's no art here 1 +118644 6341 's no art here 1 +118645 6341 's no art 2 +118646 6341 no art 1 +118647 6341 , it 's still a good yarn -- which is nothing to sneeze at these days . 3 +118648 6341 it 's still a good yarn -- which is nothing to sneeze at these days . 3 +118649 6341 's still a good yarn -- which is nothing to sneeze at these days . 2 +118650 6341 's still a good yarn -- which is nothing to sneeze at these days 3 +118651 6341 a good yarn -- which is nothing to sneeze at these days 3 +118652 6341 a good yarn -- 3 +118653 6341 a good yarn 3 +118654 6341 which is nothing to sneeze at these days 3 +118655 6341 is nothing to sneeze at these days 3 +118656 6341 nothing to sneeze at these days 3 +118657 6341 to sneeze at these days 2 +118658 6341 sneeze at these days 2 +118659 6341 sneeze 2 +118660 6341 at these days 2 +118661 6342 A close-to-solid espionage thriller with the misfortune of being released a few decades too late . 2 +118662 6342 A close-to-solid espionage thriller with the misfortune of being released a few decades too late 2 +118663 6342 A close-to-solid espionage thriller 3 +118664 6342 close-to-solid espionage thriller 2 +118665 6342 close-to-solid 3 +118666 6342 espionage thriller 2 +118667 6342 with the misfortune of being released a few decades too late 1 +118668 6342 the misfortune of being released a few decades too late 1 +118669 6342 of being released a few decades too late 1 +118670 6342 being released a few decades too late 1 +118671 6342 released a few decades too late 2 +118672 6342 released a few decades 2 +118673 6342 a few decades 2 +118674 6342 few decades 2 +118675 6343 It 's harmless , diverting fluff . 2 +118676 6343 's harmless , diverting fluff . 2 +118677 6343 's harmless , diverting fluff 2 +118678 6343 's harmless , 2 +118679 6343 's harmless 2 +118680 6343 diverting fluff 1 +118681 6344 It 's a hoot watching The Rock chomp on jumbo ants , pull an arrow out of his back , and leap unscathed through raging fire ! 4 +118682 6344 's a hoot watching The Rock chomp on jumbo ants , pull an arrow out of his back , and leap unscathed through raging fire ! 3 +118683 6344 's a hoot watching The Rock chomp on jumbo ants , pull an arrow out of his back , and leap unscathed through raging fire 3 +118684 6344 a hoot watching The Rock chomp on jumbo ants , pull an arrow out of his back , and leap unscathed through raging fire 3 +118685 6344 watching The Rock chomp on jumbo ants , pull an arrow out of his back , and leap unscathed through raging fire 2 +118686 6344 The Rock chomp on jumbo ants , pull an arrow out of his back , and leap unscathed through raging fire 2 +118687 6344 chomp on jumbo ants , pull an arrow out of his back , and leap unscathed through raging fire 2 +118688 6344 chomp on jumbo ants , pull an arrow out of his back , and 1 +118689 6344 chomp on jumbo ants , pull an arrow out of his back , 2 +118690 6344 chomp on jumbo ants , pull an arrow out of his back 1 +118691 6344 chomp on jumbo ants , 2 +118692 6344 chomp on jumbo ants 2 +118693 6344 on jumbo ants 2 +118694 6344 jumbo ants 2 +118695 6344 ants 2 +118696 6344 pull an arrow out of his back 2 +118697 6344 pull an arrow out 2 +118698 6344 pull an arrow 2 +118699 6344 an arrow 2 +118700 6344 arrow 2 +118701 6344 of his back 2 +118702 6344 his back 2 +118703 6344 leap unscathed through raging fire 2 +118704 6344 unscathed through raging fire 2 +118705 6344 unscathed 2 +118706 6344 through raging fire 2 +118707 6344 raging fire 2 +118708 6344 raging 2 +118709 6345 Scherfig , the writer-director , has made a film so unabashedly hopeful that it actually makes the heart soar . 4 +118710 6345 Scherfig , the writer-director , 2 +118711 6345 Scherfig , the writer-director 3 +118712 6345 has made a film so unabashedly hopeful that it actually makes the heart soar . 4 +118713 6345 has made a film so unabashedly hopeful that it actually makes the heart soar 4 +118714 6345 made a film so unabashedly hopeful that it actually makes the heart soar 4 +118715 6345 a film so unabashedly hopeful that it actually makes the heart soar 4 +118716 6345 so unabashedly hopeful that it actually makes the heart soar 4 +118717 6345 so unabashedly hopeful 3 +118718 6345 unabashedly hopeful 3 +118719 6345 that it actually makes the heart soar 4 +118720 6345 it actually makes the heart soar 4 +118721 6345 actually makes the heart soar 4 +118722 6345 makes the heart soar 4 +118723 6345 the heart soar 3 +118724 6346 Cinematic pratfalls given a working over . 2 +118725 6346 Cinematic pratfalls 0 +118726 6346 given a working over . 2 +118727 6346 given a working over 1 +118728 6346 a working over 2 +118729 6346 a working 2 +118730 6347 Talk to Her is so darned assured , we have absolutely no idea who the main characters are until the film is well under way -- and yet it 's hard to stop watching . 3 +118731 6347 Talk to Her is so darned assured 3 +118732 6347 is so darned assured 2 +118733 6347 so darned assured 2 +118734 6347 darned assured 3 +118735 6347 , we have absolutely no idea who the main characters are until the film is well under way -- and yet it 's hard to stop watching . 3 +118736 6347 we have absolutely no idea who the main characters are until the film is well under way -- and yet it 's hard to stop watching . 3 +118737 6347 have absolutely no idea who the main characters are until the film is well under way -- and yet it 's hard to stop watching . 3 +118738 6347 have absolutely no idea who the main characters are until the film is well under way -- and yet it 's hard to stop watching 3 +118739 6347 absolutely no idea who the main characters are until the film is well under way -- and yet it 's hard to stop watching 2 +118740 6347 absolutely no idea 3 +118741 6347 who the main characters are until the film is well under way -- and yet it 's hard to stop watching 3 +118742 6347 the main characters are until the film is well under way -- and yet it 's hard to stop watching 2 +118743 6347 are until the film is well under way -- and yet it 's hard to stop watching 3 +118744 6347 until the film is well under way -- and yet it 's hard to stop watching 4 +118745 6347 the film is well under way -- and yet it 's hard to stop watching 4 +118746 6347 the film is well under way -- and yet 2 +118747 6347 the film is well under way -- and 2 +118748 6347 the film is well under way -- 4 +118749 6347 the film is well under way 2 +118750 6347 is well under way 2 +118751 6347 under way 2 +118752 6347 it 's hard to stop watching 4 +118753 6347 's hard to stop watching 4 +118754 6347 hard to stop watching 3 +118755 6347 to stop watching 1 +118756 6347 stop watching 1 +118757 6348 A miraculous movie , I 'm Going Home is so slight , yet overflows with wisdom and emotion . 4 +118758 6348 A miraculous movie , I 'm Going Home is so slight , 4 +118759 6348 A miraculous movie 4 +118760 6348 miraculous movie 4 +118761 6348 , I 'm Going Home is so slight , 2 +118762 6348 I 'm Going Home is so slight , 2 +118763 6348 I 'm Going Home is so slight 2 +118764 6348 'm Going Home is so slight 2 +118765 6348 Going Home is so slight 2 +118766 6348 Home is so slight 2 +118767 6348 is so slight 1 +118768 6348 so slight 2 +118769 6348 yet overflows with wisdom and emotion . 4 +118770 6348 overflows with wisdom and emotion . 4 +118771 6348 overflows with wisdom and emotion 4 +118772 6348 overflows 3 +118773 6348 with wisdom and emotion 3 +118774 6348 wisdom and emotion 3 +118775 6348 wisdom and 2 +118776 6349 Wang Xiaoshuai directs this intricately structured and well-realized drama that presents a fascinating glimpse of urban life and the class warfare that embroils two young men . 3 +118777 6349 Wang Xiaoshuai 2 +118778 6349 Xiaoshuai 2 +118779 6349 directs this intricately structured and well-realized drama that presents a fascinating glimpse of urban life and the class warfare that embroils two young men . 3 +118780 6349 directs this intricately structured and well-realized drama that presents a fascinating glimpse of urban life and the class warfare that embroils two young men 4 +118781 6349 this intricately structured and well-realized drama that presents a fascinating glimpse of urban life and the class warfare that embroils two young men 3 +118782 6349 this intricately structured and well-realized drama 3 +118783 6349 intricately structured and well-realized drama 3 +118784 6349 intricately structured and well-realized 4 +118785 6349 structured and well-realized 4 +118786 6349 structured and 3 +118787 6349 well-realized 2 +118788 6349 that presents a fascinating glimpse of urban life and the class warfare that embroils two young men 3 +118789 6349 presents a fascinating glimpse of urban life and the class warfare that embroils two young men 3 +118790 6349 a fascinating glimpse of urban life and the class warfare that embroils two young men 4 +118791 6349 a fascinating glimpse of urban life and 4 +118792 6349 a fascinating glimpse of urban life 3 +118793 6349 of urban life 2 +118794 6349 urban life 2 +118795 6349 the class warfare that embroils two young men 2 +118796 6349 the class warfare 1 +118797 6349 class warfare 1 +118798 6349 that embroils two young men 2 +118799 6349 embroils two young men 2 +118800 6349 embroils 2 +118801 6349 two young men 2 +118802 6350 Nohe has made a decent ` intro ' documentary , but he feels like a spectator and not a participant . 1 +118803 6350 Nohe has made a decent ` intro ' documentary , but he feels like a spectator and not a participant 1 +118804 6350 Nohe has made a decent ` intro ' documentary , but 3 +118805 6350 Nohe has made a decent ` intro ' documentary , 3 +118806 6350 Nohe has made a decent ` intro ' documentary 2 +118807 6350 has made a decent ` intro ' documentary 3 +118808 6350 made a decent ` intro ' documentary 3 +118809 6350 a decent ` intro ' documentary 3 +118810 6350 decent ` intro ' documentary 3 +118811 6350 ` intro ' documentary 2 +118812 6350 intro ' documentary 2 +118813 6350 intro 2 +118814 6350 ' documentary 2 +118815 6350 he feels like a spectator and not a participant 1 +118816 6350 feels like a spectator and not a participant 1 +118817 6350 like a spectator and not a participant 1 +118818 6350 a spectator and not a participant 2 +118819 6350 a spectator and 2 +118820 6350 a spectator 3 +118821 6350 not a participant 1 +118822 6350 a participant 2 +118823 6350 participant 2 +118824 6351 Most thrillers send audiences out talking about specific scary scenes or startling moments ; `` Frailty '' leaves us with the terrifying message that the real horror may be waiting for us at home . 3 +118825 6351 Most thrillers send audiences out talking about specific scary scenes or startling moments ; `` Frailty '' leaves us with the terrifying message that the real horror may be waiting for us at home 2 +118826 6351 Most thrillers send audiences out talking about specific scary scenes or startling moments ; 2 +118827 6351 Most thrillers send audiences out talking about specific scary scenes or startling moments 2 +118828 6351 Most thrillers 2 +118829 6351 send audiences out talking about specific scary scenes or startling moments 4 +118830 6351 send audiences 2 +118831 6351 out talking about specific scary scenes or startling moments 2 +118832 6351 talking about specific scary scenes or startling moments 2 +118833 6351 about specific scary scenes or startling moments 2 +118834 6351 specific scary scenes or startling moments 2 +118835 6351 specific scary scenes or 2 +118836 6351 specific scary scenes 2 +118837 6351 scary scenes 2 +118838 6351 startling moments 2 +118839 6351 `` Frailty '' leaves us with the terrifying message that the real horror may be waiting for us at home 2 +118840 6351 Frailty '' leaves us with the terrifying message that the real horror may be waiting for us at home 3 +118841 6351 '' leaves us with the terrifying message that the real horror may be waiting for us at home 3 +118842 6351 leaves us with the terrifying message that the real horror may be waiting for us at home 2 +118843 6351 leaves us with the terrifying message 2 +118844 6351 leaves us 2 +118845 6351 with the terrifying message 1 +118846 6351 the terrifying message 0 +118847 6351 terrifying message 1 +118848 6351 that the real horror may be waiting for us at home 2 +118849 6351 the real horror may be waiting for us at home 1 +118850 6351 the real horror 2 +118851 6351 real horror 2 +118852 6351 may be waiting for us at home 2 +118853 6351 be waiting for us at home 2 +118854 6351 waiting for us at home 2 +118855 6351 waiting for us 2 +118856 6352 The pain , loneliness and insecurity of the screenwriting process are vividly and painfully brought to slovenly life in this self-deprecating , biting and witty feature written by Charlie Kaufman and his twin brother , Donald , and directed by Spike Jonze . 3 +118857 6352 The pain , loneliness and insecurity of the screenwriting process 2 +118858 6352 The pain , loneliness and insecurity 2 +118859 6352 pain , loneliness and insecurity 2 +118860 6352 , loneliness and insecurity 2 +118861 6352 loneliness and insecurity 1 +118862 6352 of the screenwriting process 2 +118863 6352 the screenwriting process 2 +118864 6352 screenwriting process 2 +118865 6352 are vividly and painfully brought to slovenly life in this self-deprecating , biting and witty feature written by Charlie Kaufman and his twin brother , Donald , and directed by Spike Jonze . 4 +118866 6352 are vividly and painfully brought to slovenly life in this self-deprecating , biting and witty feature written by Charlie Kaufman and his twin brother , Donald , and directed by Spike Jonze 4 +118867 6352 are vividly and painfully 2 +118868 6352 vividly and painfully 2 +118869 6352 vividly and 3 +118870 6352 brought to slovenly life in this self-deprecating , biting and witty feature written by Charlie Kaufman and his twin brother , Donald , and directed by Spike Jonze 2 +118871 6352 to slovenly life in this self-deprecating , biting and witty feature written by Charlie Kaufman and his twin brother , Donald , and directed by Spike Jonze 3 +118872 6352 slovenly life in this self-deprecating , biting and witty feature written by Charlie Kaufman and his twin brother , Donald , and directed by Spike Jonze 4 +118873 6352 slovenly life 1 +118874 6352 in this self-deprecating , biting and witty feature written by Charlie Kaufman and his twin brother , Donald , and directed by Spike Jonze 2 +118875 6352 this self-deprecating , biting and witty feature written by Charlie Kaufman and his twin brother , Donald , and directed by Spike Jonze 2 +118876 6352 this self-deprecating , biting and witty feature 3 +118877 6352 self-deprecating , biting and witty feature 1 +118878 6352 , biting and witty feature 3 +118879 6352 biting and witty feature 3 +118880 6352 and witty feature 3 +118881 6352 witty feature 3 +118882 6352 written by Charlie Kaufman and his twin brother , Donald , and directed by Spike Jonze 2 +118883 6352 written by Charlie Kaufman and his twin brother , Donald , and 2 +118884 6352 written by Charlie Kaufman and his twin brother , Donald , 2 +118885 6352 by Charlie Kaufman and his twin brother , Donald , 2 +118886 6352 Charlie Kaufman and his twin brother , Donald , 2 +118887 6352 Charlie Kaufman and 2 +118888 6352 Charlie Kaufman 2 +118889 6352 his twin brother , Donald , 2 +118890 6352 his twin brother , Donald 2 +118891 6352 his twin brother , 2 +118892 6352 his twin brother 2 +118893 6352 twin brother 2 +118894 6352 Donald 2 +118895 6352 directed by Spike Jonze 2 +118896 6352 by Spike Jonze 2 +118897 6352 Spike Jonze 2 +118898 6353 Imagine Susan Sontag falling in love with Howard Stern . 1 +118899 6353 Imagine Susan Sontag falling in love with Howard Stern 2 +118900 6353 Susan Sontag falling in love with Howard Stern 2 +118901 6353 Susan Sontag 2 +118902 6353 Susan 3 +118903 6353 Sontag 2 +118904 6353 falling in love with Howard Stern 2 +118905 6353 falling in love 3 +118906 6353 with Howard Stern 2 +118907 6353 Howard Stern 2 +118908 6353 Stern 2 +118909 6354 Sexy and romantic . 4 +118910 6354 Sexy and romantic 3 +118911 6354 Sexy and 3 +118912 6355 A feeble Tootsie knockoff . 1 +118913 6355 feeble Tootsie knockoff . 1 +118914 6355 Tootsie knockoff . 1 +118915 6355 knockoff . 1 +118916 6355 knockoff 1 +118917 6356 It 's supposed to be post-feminist breezy but ends up as tedious as the chatter of parrots raised on Oprah . 0 +118918 6356 's supposed to be post-feminist breezy but ends up as tedious as the chatter of parrots raised on Oprah . 0 +118919 6356 's supposed to be post-feminist breezy but ends up as tedious as the chatter of parrots raised on Oprah 0 +118920 6356 's supposed to be post-feminist breezy but 1 +118921 6356 's supposed to be post-feminist breezy 2 +118922 6356 supposed to be post-feminist breezy 2 +118923 6356 to be post-feminist breezy 2 +118924 6356 be post-feminist breezy 3 +118925 6356 post-feminist breezy 2 +118926 6356 ends up as tedious as the chatter of parrots raised on Oprah 1 +118927 6356 up as tedious as the chatter of parrots raised on Oprah 0 +118928 6356 up as 2 +118929 6356 tedious as the chatter of parrots raised on Oprah 0 +118930 6356 as the chatter of parrots raised on Oprah 1 +118931 6356 the chatter of parrots raised on Oprah 1 +118932 6356 the chatter 3 +118933 6356 chatter 2 +118934 6356 of parrots raised on Oprah 2 +118935 6356 parrots raised on Oprah 2 +118936 6356 parrots 2 +118937 6356 raised on Oprah 2 +118938 6356 on Oprah 2 +118939 6357 Blade II has a brilliant director and charismatic star , but it suffers from rampant vampire devaluation . 2 +118940 6357 Blade II has a brilliant director and charismatic star , but it suffers from rampant vampire devaluation 3 +118941 6357 Blade II has a brilliant director and charismatic star , but 2 +118942 6357 Blade II has a brilliant director and charismatic star , 4 +118943 6357 Blade II has a brilliant director and charismatic star 4 +118944 6357 has a brilliant director and charismatic star 3 +118945 6357 a brilliant director and charismatic star 4 +118946 6357 a brilliant director and 4 +118947 6357 a brilliant director 3 +118948 6357 brilliant director 4 +118949 6357 charismatic star 3 +118950 6357 it suffers from rampant vampire devaluation 1 +118951 6357 suffers from rampant vampire devaluation 2 +118952 6357 from rampant vampire devaluation 2 +118953 6357 rampant vampire devaluation 1 +118954 6357 rampant 2 +118955 6357 vampire devaluation 2 +118956 6357 devaluation 2 +118957 6359 It finds its moviegoing pleasures in the tiny events that could make a person who has lived her life half-asleep suddenly wake up and take notice . 3 +118958 6359 finds its moviegoing pleasures in the tiny events that could make a person who has lived her life half-asleep suddenly wake up and take notice . 3 +118959 6359 finds its moviegoing pleasures in the tiny events that could make a person who has lived her life half-asleep suddenly wake up and take notice 3 +118960 6359 finds its moviegoing pleasures 3 +118961 6359 its moviegoing pleasures 3 +118962 6359 moviegoing pleasures 3 +118963 6359 in the tiny events that could make a person who has lived her life half-asleep suddenly wake up and take notice 3 +118964 6359 the tiny events that could make a person who has lived her life half-asleep suddenly wake up and take notice 3 +118965 6359 the tiny events 2 +118966 6359 tiny events 2 +118967 6359 that could make a person who has lived her life half-asleep suddenly wake up and take notice 3 +118968 6359 could make a person who has lived her life half-asleep suddenly wake up and take notice 3 +118969 6359 make a person who has lived her life half-asleep suddenly wake up and take notice 3 +118970 6359 make a person who has lived her life half-asleep suddenly wake up and 2 +118971 6359 make a person who has lived her life half-asleep suddenly wake up 3 +118972 6359 a person who has lived her life half-asleep suddenly wake up 2 +118973 6359 who has lived her life half-asleep suddenly wake up 3 +118974 6359 has lived her life half-asleep suddenly wake up 2 +118975 6359 lived her life half-asleep suddenly wake up 2 +118976 6359 her life half-asleep suddenly wake up 2 +118977 6359 her life half-asleep 1 +118978 6359 life half-asleep 2 +118979 6359 half-asleep 2 +118980 6359 suddenly wake up 2 +118981 6359 take notice 3 +118982 6360 Releasing a film with the word ` dog ' in its title in January lends itself to easy jokes and insults , and Snow Dogs deserves every single one of them . 1 +118983 6360 Releasing a film with the word ` dog ' in its title in January lends itself to easy jokes and insults , and Snow Dogs deserves every single one of them 0 +118984 6360 Releasing a film with the word ` dog ' in its title in January lends itself to easy jokes and insults , and 1 +118985 6360 Releasing a film with the word ` dog ' in its title in January lends itself to easy jokes and insults , 1 +118986 6360 Releasing a film with the word ` dog ' in its title in January lends itself to easy jokes and insults 1 +118987 6360 Releasing a film with the word ` dog ' in its title in January 2 +118988 6360 Releasing a film 2 +118989 6360 with the word ` dog ' in its title in January 2 +118990 6360 the word ` dog ' in its title in January 2 +118991 6360 the word ` dog ' 2 +118992 6360 word ` dog ' 1 +118993 6360 ` dog ' 2 +118994 6360 dog ' 2 +118995 6360 in its title in January 2 +118996 6360 its title in January 2 +118997 6360 in January 2 +118998 6360 lends itself to easy jokes and insults 1 +118999 6360 lends itself 2 +119000 6360 to easy jokes and insults 1 +119001 6360 easy jokes and insults 1 +119002 6360 jokes and insults 2 +119003 6360 jokes and 2 +119004 6360 insults 1 +119005 6360 Snow Dogs deserves every single one of them 3 +119006 6360 deserves every single one of them 2 +119007 6360 every single one of them 2 +119008 6360 every single one 2 +119009 6360 single one 2 +119010 6361 Here the love scenes all end in someone screaming . 1 +119011 6361 the love scenes all end in someone screaming . 2 +119012 6361 scenes all end in someone screaming . 1 +119013 6361 scenes all end in someone screaming 1 +119014 6361 all end in someone screaming 1 +119015 6361 all end 3 +119016 6361 in someone screaming 2 +119017 6361 someone screaming 2 +119018 6362 ... has its moments , but ultimately , its curmudgeon does n't quite make the cut of being placed on any list of favorites . 2 +119019 6362 has its moments , but ultimately , its curmudgeon does n't quite make the cut of being placed on any list of favorites . 2 +119020 6362 has its moments , but ultimately 3 +119021 6362 , but ultimately 2 +119022 6362 , its curmudgeon does n't quite make the cut of being placed on any list of favorites . 1 +119023 6362 its curmudgeon does n't quite make the cut of being placed on any list of favorites . 1 +119024 6362 its curmudgeon 1 +119025 6362 does n't quite make the cut of being placed on any list of favorites . 1 +119026 6362 does n't quite make the cut of being placed on any list of favorites 1 +119027 6362 make the cut of being placed on any list of favorites 2 +119028 6362 the cut of being placed on any list of favorites 3 +119029 6362 the cut 2 +119030 6362 of being placed on any list of favorites 3 +119031 6362 being placed on any list of favorites 3 +119032 6362 placed on any list of favorites 4 +119033 6362 placed 2 +119034 6362 on any list of favorites 3 +119035 6362 any list of favorites 2 +119036 6362 any list 2 +119037 6362 of favorites 3 +119038 6362 favorites 2 +119039 6363 The riveting performances by the incredibly flexible cast make Love a joy to behold . 4 +119040 6363 The riveting performances by the incredibly flexible cast 4 +119041 6363 The riveting performances 3 +119042 6363 riveting performances 4 +119043 6363 by the incredibly flexible cast 3 +119044 6363 the incredibly flexible cast 3 +119045 6363 incredibly flexible cast 4 +119046 6363 incredibly flexible 3 +119047 6363 flexible 3 +119048 6363 make Love a joy to behold . 4 +119049 6363 make Love a joy to behold 2 +119050 6363 Love a joy to behold 3 +119051 6363 Love a joy 3 +119052 6363 a joy 4 +119053 6364 There 's undeniable enjoyment to be had from films crammed with movie references , but the fun wears thin -- then out -- when there 's nothing else happening . 3 +119054 6364 There 's undeniable enjoyment to be had from films crammed with movie references , but the fun wears thin -- then out -- when there 's nothing else happening 1 +119055 6364 There 's undeniable enjoyment to be had from films crammed with movie references , but 2 +119056 6364 There 's undeniable enjoyment to be had from films crammed with movie references , 3 +119057 6364 There 's undeniable enjoyment to be had from films crammed with movie references 3 +119058 6364 's undeniable enjoyment to be had from films crammed with movie references 4 +119059 6364 undeniable enjoyment to be had from films crammed with movie references 3 +119060 6364 enjoyment to be had from films crammed with movie references 3 +119061 6364 to be had from films crammed with movie references 1 +119062 6364 be had from films crammed with movie references 2 +119063 6364 had from films crammed with movie references 3 +119064 6364 from films crammed with movie references 1 +119065 6364 films crammed with movie references 1 +119066 6364 crammed with movie references 2 +119067 6364 with movie references 2 +119068 6364 movie references 2 +119069 6364 the fun wears thin -- then out -- when there 's nothing else happening 0 +119070 6364 wears thin -- then out -- when there 's nothing else happening 0 +119071 6364 thin -- then out -- when there 's nothing else happening 1 +119072 6364 thin -- then out -- 2 +119073 6364 -- then out -- 2 +119074 6364 then out -- 2 +119075 6364 then out 2 +119076 6364 when there 's nothing else happening 1 +119077 6364 there 's nothing else happening 1 +119078 6364 's nothing else happening 2 +119079 6364 nothing else happening 1 +119080 6365 Each punch seen through prison bars , the fights become not so much a struggle of man vs. man as Brother-Man vs. The Man . 2 +119081 6365 Each punch seen through prison bars 2 +119082 6365 Each punch 2 +119083 6365 seen through prison bars 2 +119084 6365 through prison bars 2 +119085 6365 prison bars 2 +119086 6365 , the fights become not so much a struggle of man vs. man as Brother-Man vs. The Man . 2 +119087 6365 the fights become not so much a struggle of man vs. man as Brother-Man vs. The Man . 2 +119088 6365 the fights 2 +119089 6365 become not so much a struggle of man vs. man as Brother-Man vs. The Man . 2 +119090 6365 become not so much a struggle of man vs. man as Brother-Man vs. The Man 2 +119091 6365 not so much a struggle of man vs. man as Brother-Man vs. The Man 2 +119092 6365 so much a struggle of man vs. man as Brother-Man vs. The Man 2 +119093 6365 a struggle of man vs. man as Brother-Man vs. The Man 2 +119094 6365 a struggle of man vs. 2 +119095 6365 a struggle of man 2 +119096 6365 a struggle 2 +119097 6365 man as Brother-Man vs. The Man 2 +119098 6365 as Brother-Man vs. The Man 2 +119099 6365 Brother-Man vs. The Man 2 +119100 6365 Brother-Man 2 +119101 6365 vs. The Man 2 +119102 6366 Personal Velocity ought to be exploring these women 's inner lives , but it never moves beyond their surfaces . 2 +119103 6366 Personal Velocity ought to be exploring these women 's inner lives , but it never moves beyond their surfaces 2 +119104 6366 Personal Velocity ought to be exploring these women 's inner lives , but 2 +119105 6366 Personal Velocity ought to be exploring these women 's inner lives , 2 +119106 6366 Personal Velocity ought to be exploring these women 's inner lives 2 +119107 6366 ought to be exploring these women 's inner lives 2 +119108 6366 to be exploring these women 's inner lives 2 +119109 6366 be exploring these women 's inner lives 2 +119110 6366 exploring these women 's inner lives 2 +119111 6366 these women 's inner lives 2 +119112 6366 these women 's 3 +119113 6366 inner lives 2 +119114 6366 it never moves beyond their surfaces 1 +119115 6366 never moves beyond their surfaces 2 +119116 6366 moves beyond their surfaces 2 +119117 6366 beyond their surfaces 2 +119118 6366 their surfaces 2 +119119 6366 surfaces 2 +119120 6367 To work , love stories require the full emotional involvement and support of a viewer . 2 +119121 6367 , love stories require the full emotional involvement and support of a viewer . 2 +119122 6367 love stories require the full emotional involvement and support of a viewer . 2 +119123 6367 require the full emotional involvement and support of a viewer . 2 +119124 6367 require the full emotional involvement and support of a viewer 3 +119125 6367 the full emotional involvement and support of a viewer 3 +119126 6367 the full emotional involvement and 3 +119127 6367 the full emotional involvement 2 +119128 6367 full emotional involvement 2 +119129 6367 emotional involvement 2 +119130 6367 involvement 3 +119131 6367 support of a viewer 2 +119132 6367 of a viewer 2 +119133 6367 a viewer 2 +119134 6368 Adams , with four scriptwriters , takes care with the characters , who are so believable that you feel what they feel . 4 +119135 6368 Adams , with four scriptwriters , 2 +119136 6368 Adams , with four scriptwriters 2 +119137 6368 Adams , 2 +119138 6368 with four scriptwriters 2 +119139 6368 four scriptwriters 2 +119140 6368 takes care with the characters , who are so believable that you feel what they feel . 4 +119141 6368 takes care with the characters , who are so believable that you feel what they feel 3 +119142 6368 takes care 3 +119143 6368 with the characters , who are so believable that you feel what they feel 3 +119144 6368 the characters , who are so believable that you feel what they feel 3 +119145 6368 who are so believable that you feel what they feel 2 +119146 6368 are so believable that you feel what they feel 3 +119147 6368 so believable that you feel what they feel 4 +119148 6368 believable that you feel what they feel 3 +119149 6368 that you feel what they feel 3 +119150 6368 you feel what they feel 3 +119151 6368 feel what they feel 2 +119152 6368 what they feel 2 +119153 6368 they feel 2 +119154 6369 The film gets close to the chimps the same way Goodall did , with a serious minded patience , respect and affection . 3 +119155 6369 gets close to the chimps the same way Goodall did , with a serious minded patience , respect and affection . 3 +119156 6369 gets close to the chimps the same way Goodall did , with a serious minded patience , respect and affection 3 +119157 6369 gets close to the chimps 2 +119158 6369 close to the chimps 2 +119159 6369 to the chimps 2 +119160 6369 the chimps 2 +119161 6369 the same way Goodall did , with a serious minded patience , respect and affection 3 +119162 6369 Goodall did , with a serious minded patience , respect and affection 3 +119163 6369 Goodall 2 +119164 6369 did , with a serious minded patience , respect and affection 3 +119165 6369 with a serious minded patience , respect and affection 3 +119166 6369 a serious minded patience , respect and affection 3 +119167 6369 serious minded patience , respect and affection 3 +119168 6369 minded patience , respect and affection 3 +119169 6369 minded 2 +119170 6369 patience , respect and affection 3 +119171 6369 , respect and affection 2 +119172 6369 respect and affection 3 +119173 6369 respect and 2 +119174 6370 While this one gets off with a good natured warning , future Lizard endeavors will need to adhere more closely to the laws of laughter 1 +119175 6370 While this one gets off with a good natured warning 2 +119176 6370 this one gets off with a good natured warning 3 +119177 6370 gets off with a good natured warning 3 +119178 6370 with a good natured warning 2 +119179 6370 a good natured warning 3 +119180 6370 good natured warning 2 +119181 6370 good natured 3 +119182 6370 , future Lizard endeavors will need to adhere more closely to the laws of laughter 1 +119183 6370 future Lizard endeavors will need to adhere more closely to the laws of laughter 1 +119184 6370 future Lizard endeavors 2 +119185 6370 Lizard endeavors 2 +119186 6370 will need to adhere more closely to the laws of laughter 1 +119187 6370 need to adhere more closely to the laws of laughter 1 +119188 6370 to adhere more closely to the laws of laughter 2 +119189 6370 adhere more closely to the laws of laughter 2 +119190 6370 adhere more closely 2 +119191 6370 adhere 2 +119192 6370 to the laws of laughter 2 +119193 6370 the laws of laughter 2 +119194 6371 What ` Blade Runner ' would 've looked like as a low-budget series on a UHF channel . 1 +119195 6371 What ` Blade Runner ' would 3 +119196 6371 ` Blade Runner ' would 2 +119197 6371 Blade Runner ' would 2 +119198 6371 ' would 2 +119199 6371 've looked like as a low-budget series on a UHF channel . 0 +119200 6371 've looked like as a low-budget series on a UHF channel 0 +119201 6371 looked like as a low-budget series on a UHF channel 1 +119202 6371 like as a low-budget series on a UHF channel 1 +119203 6371 as a low-budget series on a UHF channel 1 +119204 6371 a low-budget series on a UHF channel 1 +119205 6371 a low-budget series 1 +119206 6371 low-budget series 1 +119207 6371 on a UHF channel 2 +119208 6371 a UHF channel 2 +119209 6371 UHF channel 2 +119210 6371 UHF 2 +119211 6372 It 's a film with an idea buried somewhere inside its fabric , but never clearly seen or felt . 1 +119212 6372 's a film with an idea buried somewhere inside its fabric , but never clearly seen or felt . 1 +119213 6372 's a film with an idea buried somewhere inside its fabric , but never clearly seen or felt 1 +119214 6372 a film with an idea buried somewhere inside its fabric , but never clearly seen or felt 1 +119215 6372 with an idea buried somewhere inside its fabric , but never clearly seen or felt 1 +119216 6372 an idea buried somewhere inside its fabric , but never clearly seen or felt 1 +119217 6372 buried somewhere inside its fabric , but never clearly seen or felt 1 +119218 6372 buried somewhere inside its fabric , but never clearly seen or 1 +119219 6372 buried somewhere inside its fabric , but never clearly seen 1 +119220 6372 buried somewhere inside its fabric , but never clearly 1 +119221 6372 buried somewhere inside its fabric , but never 2 +119222 6372 somewhere inside its fabric , but never 2 +119223 6372 somewhere inside its fabric , but 2 +119224 6372 somewhere inside its fabric , 2 +119225 6372 somewhere inside its fabric 2 +119226 6372 inside its fabric 2 +119227 6372 its fabric 2 +119228 6373 A good film with a solid pedigree both in front of and , more specifically , behind the camera . 3 +119229 6373 A good film with a solid pedigree both in front of and , more specifically , behind the camera 3 +119230 6373 with a solid pedigree both in front of and , more specifically , behind the camera 4 +119231 6373 a solid pedigree both in front of and , more specifically , behind the camera 4 +119232 6373 a solid pedigree 3 +119233 6373 solid pedigree 3 +119234 6373 both in front of and , more specifically , behind the camera 2 +119235 6373 in front of and , more specifically , behind the camera 2 +119236 6373 in front of 2 +119237 6373 front of 2 +119238 6373 and , more specifically , behind the camera 2 +119239 6373 , more specifically , behind the camera 2 +119240 6373 , more specifically , 2 +119241 6373 more specifically , 2 +119242 6373 more specifically 2 +119243 6374 While Serving Sara does have a long way to go before it reaches the level of crudity in the latest Austin Powers extravaganza , there 's nothing here to match that movie 's intermittent moments of inspiration . 2 +119244 6374 While Serving Sara does have a long way to go before it reaches the level of crudity in the latest Austin Powers extravaganza 2 +119245 6374 Serving Sara does have a long way to go before it reaches the level of crudity in the latest Austin Powers extravaganza 2 +119246 6374 does have a long way to go before it reaches the level of crudity in the latest Austin Powers extravaganza 1 +119247 6374 have a long way to go before it reaches the level of crudity in the latest Austin Powers extravaganza 1 +119248 6374 a long way to go before it reaches the level of crudity in the latest Austin Powers extravaganza 1 +119249 6374 long way to go before it reaches the level of crudity in the latest Austin Powers extravaganza 1 +119250 6374 way to go before it reaches the level of crudity in the latest Austin Powers extravaganza 1 +119251 6374 to go before it reaches the level of crudity in the latest Austin Powers extravaganza 2 +119252 6374 go before it reaches the level of crudity in the latest Austin Powers extravaganza 1 +119253 6374 before it reaches the level of crudity in the latest Austin Powers extravaganza 2 +119254 6374 it reaches the level of crudity in the latest Austin Powers extravaganza 1 +119255 6374 reaches the level of crudity in the latest Austin Powers extravaganza 1 +119256 6374 the level of crudity in the latest Austin Powers extravaganza 2 +119257 6374 of crudity in the latest Austin Powers extravaganza 2 +119258 6374 crudity in the latest Austin Powers extravaganza 1 +119259 6374 crudity in the latest 2 +119260 6374 in the latest 3 +119261 6374 Austin Powers extravaganza 3 +119262 6374 Powers extravaganza 2 +119263 6374 , there 's nothing here to match that movie 's intermittent moments of inspiration . 1 +119264 6374 there 's nothing here to match that movie 's intermittent moments of inspiration . 1 +119265 6374 's nothing here to match that movie 's intermittent moments of inspiration . 1 +119266 6374 's nothing here to match that movie 's intermittent moments of inspiration 1 +119267 6374 here to match that movie 's intermittent moments of inspiration 2 +119268 6374 to match that movie 's intermittent moments of inspiration 3 +119269 6374 match that movie 's intermittent moments of inspiration 3 +119270 6374 that movie 's intermittent moments of inspiration 3 +119271 6374 that movie 's intermittent moments 2 +119272 6374 that movie 's 2 +119273 6374 intermittent moments 2 +119274 6374 intermittent 2 +119275 6375 Simultaneously heart-breaking and very funny , The Last Kiss is really all about performances . 3 +119276 6375 Simultaneously heart-breaking and very funny 4 +119277 6375 Simultaneously heart-breaking and 2 +119278 6375 Simultaneously heart-breaking 2 +119279 6375 heart-breaking 2 +119280 6375 , The Last Kiss is really all about performances . 3 +119281 6375 The Last Kiss is really all about performances . 3 +119282 6375 is really all about performances . 2 +119283 6375 is really all about performances 3 +119284 6375 all about performances 2 +119285 6375 about performances 2 +119286 6376 The story passes time until it 's time for an absurd finale of twisted metal , fireballs and revenge . 1 +119287 6376 passes time until it 's time for an absurd finale of twisted metal , fireballs and revenge . 1 +119288 6376 passes time until it 's time for an absurd finale of twisted metal , fireballs and revenge 0 +119289 6376 passes time 2 +119290 6376 until it 's time for an absurd finale of twisted metal , fireballs and revenge 2 +119291 6376 it 's time for an absurd finale of twisted metal , fireballs and revenge 1 +119292 6376 's time for an absurd finale of twisted metal , fireballs and revenge 2 +119293 6376 time for an absurd finale of twisted metal , fireballs and revenge 1 +119294 6376 for an absurd finale of twisted metal , fireballs and revenge 1 +119295 6376 an absurd finale of twisted metal , fireballs and revenge 2 +119296 6376 an absurd finale 1 +119297 6376 absurd finale 0 +119298 6376 of twisted metal , fireballs and revenge 2 +119299 6376 twisted metal , fireballs and revenge 2 +119300 6376 metal , fireballs and revenge 3 +119301 6376 , fireballs and revenge 1 +119302 6376 fireballs and revenge 2 +119303 6376 fireballs and 2 +119304 6376 fireballs 2 +119305 6377 It 's a tour de force , written and directed so quietly that it 's implosion rather than explosion you fear . 2 +119306 6377 's a tour de force , written and directed so quietly that it 's implosion rather than explosion you fear . 3 +119307 6377 's a tour de force , written and directed so quietly that it 's implosion rather than explosion you fear 1 +119308 6377 a tour de force , written and directed so quietly that it 's implosion rather than explosion you fear 4 +119309 6377 a tour de force , written and directed so quietly that it 's implosion rather than 2 +119310 6377 a tour de force , written and directed so quietly that it 's implosion 3 +119311 6377 a tour de force , 3 +119312 6377 written and directed so quietly that it 's implosion 2 +119313 6377 written and directed so quietly 3 +119314 6377 so quietly 2 +119315 6377 that it 's implosion 1 +119316 6377 it 's implosion 2 +119317 6377 's implosion 2 +119318 6377 implosion 1 +119319 6377 explosion you fear 2 +119320 6377 you fear 2 +119321 6378 brought to life on the big screen . 3 +119322 6378 brought to life on the big screen 3 +119323 6378 to life on the big screen 2 +119324 6378 life on the big screen 2 +119325 6379 is an inexpressible and drab wannabe looking for that exact niche . 1 +119326 6379 is an inexpressible and drab wannabe looking for that exact niche 1 +119327 6379 an inexpressible and drab wannabe looking for that exact niche 1 +119328 6379 an inexpressible and drab wannabe 0 +119329 6379 inexpressible and drab wannabe 1 +119330 6379 inexpressible 3 +119331 6379 and drab wannabe 0 +119332 6379 drab wannabe 0 +119333 6379 looking for that exact niche 2 +119334 6379 for that exact niche 2 +119335 6379 that exact niche 2 +119336 6379 exact niche 2 +119337 6380 By the time the surprise ending is revealed , interest can not be revived . 1 +119338 6380 By the time the surprise ending is revealed 2 +119339 6380 the surprise ending is revealed 3 +119340 6380 the surprise ending 3 +119341 6380 surprise ending 2 +119342 6380 is revealed 2 +119343 6380 , interest can not be revived . 1 +119344 6380 interest can not be revived . 1 +119345 6380 can not be revived . 1 +119346 6380 can not be revived 1 +119347 6380 be revived 2 +119348 6380 revived 2 +119349 6381 The film sparkles with the the wisdom and humor of its subjects . 4 +119350 6381 sparkles with the the wisdom and humor of its subjects . 4 +119351 6381 sparkles with the the wisdom and humor of its subjects 2 +119352 6381 with the the wisdom and humor of its subjects 4 +119353 6381 the the wisdom and humor of its subjects 3 +119354 6381 the the wisdom and humor 3 +119355 6381 the wisdom and humor 3 +119356 6381 wisdom and humor 3 +119357 6381 of its subjects 2 +119358 6382 ... a hokey piece of nonsense that tries too hard to be emotional . 0 +119359 6382 a hokey piece of nonsense that tries too hard to be emotional . 0 +119360 6382 a hokey piece of nonsense that tries too hard to be emotional 0 +119361 6382 a hokey piece of nonsense 0 +119362 6382 a hokey piece 1 +119363 6382 hokey piece 2 +119364 6382 of nonsense 1 +119365 6382 that tries too hard to be emotional 1 +119366 6382 tries too hard to be emotional 1 +119367 6382 too hard to be emotional 2 +119368 6382 hard to be emotional 1 +119369 6382 to be emotional 2 +119370 6382 be emotional 2 +119371 6383 And for all the wrong reasons besides . 1 +119372 6383 for all the wrong reasons besides . 1 +119373 6383 for all the 2 +119374 6383 wrong reasons besides . 2 +119375 6383 wrong reasons 1 +119376 6383 besides . 2 +119377 6383 besides 2 +119378 6384 Alas , it 's the man that makes the clothes . 3 +119379 6384 , it 's the man that makes the clothes . 2 +119380 6384 it 's the man that makes the clothes . 2 +119381 6384 's the man that makes the clothes . 2 +119382 6384 's the man that makes the clothes 2 +119383 6384 the man that makes the clothes 2 +119384 6384 that makes the clothes 2 +119385 6384 makes the clothes 3 +119386 6384 the clothes 2 +119387 6385 As Janice , Eileen Walsh , an engaging , wide-eyed actress whose teeth are a little too big for her mouth , infuses the movie with much of its slender , glinting charm . 3 +119388 6385 As Janice 2 +119389 6385 , Eileen Walsh , an engaging , wide-eyed actress whose teeth are a little too big for her mouth , infuses the movie with much of its slender , glinting charm . 4 +119390 6385 Eileen Walsh , an engaging , wide-eyed actress whose teeth are a little too big for her mouth , infuses the movie with much of its slender , glinting charm . 3 +119391 6385 Eileen Walsh , an engaging , wide-eyed actress whose teeth are a little too big for her mouth , 1 +119392 6385 Eileen Walsh , an engaging , wide-eyed actress whose teeth are a little too big for her mouth 2 +119393 6385 Eileen Walsh , 2 +119394 6385 an engaging , wide-eyed actress whose teeth are a little too big for her mouth 1 +119395 6385 an engaging , wide-eyed actress 3 +119396 6385 engaging , wide-eyed actress 3 +119397 6385 , wide-eyed actress 2 +119398 6385 wide-eyed actress 2 +119399 6385 wide-eyed 3 +119400 6385 whose teeth are a little too big for her mouth 0 +119401 6385 whose teeth 2 +119402 6385 are a little too big for her mouth 1 +119403 6385 are a little too big 2 +119404 6385 a little too big 2 +119405 6385 too big 1 +119406 6385 for her mouth 2 +119407 6385 her mouth 2 +119408 6385 infuses the movie with much of its slender , glinting charm . 3 +119409 6385 infuses the movie with much of its slender , glinting charm 3 +119410 6385 infuses the movie with much of its slender , 3 +119411 6385 infuses the movie with much of its slender 3 +119412 6385 infuses the movie 2 +119413 6385 with much of its slender 2 +119414 6385 much of its slender 2 +119415 6385 of its slender 2 +119416 6385 its slender 2 +119417 6385 glinting charm 3 +119418 6385 glinting 2 +119419 6386 Quiet , adult and just about more stately than any contemporary movie this year ... a true study , a film with a questioning heart and mind that is n't afraid to admit it does n't have all the answers . 3 +119420 6386 Quiet , adult and just about more stately than any contemporary movie this year ... a true study , a film with a questioning heart and mind that is n't afraid to admit it 3 +119421 6386 Quiet , adult and 2 +119422 6386 Quiet , adult 2 +119423 6386 Quiet , 2 +119424 6386 just about more stately than any contemporary movie this year ... a true study , a film with a questioning heart and mind that is n't afraid to admit it 3 +119425 6386 just about more stately than any contemporary movie this year ... a true study , a film with a questioning heart and 4 +119426 6386 just about more stately than any contemporary movie this year ... a true study , a film with a questioning heart 4 +119427 6386 just about more stately than any contemporary movie this year ... 3 +119428 6386 just about more stately than any contemporary movie this year 3 +119429 6386 just about more stately 2 +119430 6386 about more stately 2 +119431 6386 more stately 2 +119432 6386 than any contemporary movie this year 2 +119433 6386 any contemporary movie this year 2 +119434 6386 any contemporary movie 2 +119435 6386 contemporary movie 2 +119436 6386 a true study , a film with a questioning heart 3 +119437 6386 a true study , 3 +119438 6386 a true study 2 +119439 6386 true study 2 +119440 6386 a film with a questioning heart 2 +119441 6386 with a questioning heart 2 +119442 6386 a questioning heart 2 +119443 6386 questioning heart 2 +119444 6386 questioning 2 +119445 6386 mind that is n't afraid to admit it 2 +119446 6386 that is n't afraid to admit it 3 +119447 6386 is n't afraid to admit it 2 +119448 6386 afraid to admit it 2 +119449 6386 to admit it 2 +119450 6386 does n't have all the answers . 2 +119451 6386 does n't have all the answers 1 +119452 6386 have all the answers 2 +119453 6386 all the answers 2 +119454 6386 the answers 3 +119455 6387 Less cinematically powerful than quietly and deeply moving , which is powerful in itself . 2 +119456 6387 Less cinematically powerful than quietly and deeply moving 2 +119457 6387 Less cinematically powerful than quietly and 2 +119458 6387 Less cinematically powerful than quietly 2 +119459 6387 Less cinematically powerful 1 +119460 6387 cinematically powerful 3 +119461 6387 cinematically 2 +119462 6387 than quietly 2 +119463 6387 , which is powerful in itself . 3 +119464 6387 which is powerful in itself . 2 +119465 6387 which is powerful in itself 3 +119466 6387 is powerful in itself 3 +119467 6387 powerful in itself 2 +119468 6388 What 's most memorable about Circuit is that it 's shot on digital video , whose tiny camera enables Shafer to navigate spaces both large ... and small ... with considerable aplomb . 3 +119469 6388 What 's most memorable about Circuit 3 +119470 6388 's most memorable about Circuit 3 +119471 6388 most memorable about Circuit 2 +119472 6388 about Circuit 2 +119473 6388 is that it 's shot on digital video , whose tiny camera enables Shafer to navigate spaces both large ... and small ... with considerable aplomb . 3 +119474 6388 is that it 's shot on digital video , whose tiny camera enables Shafer to navigate spaces both large ... and small ... with considerable aplomb 3 +119475 6388 that it 's shot on digital video , whose tiny camera enables Shafer to navigate spaces both large ... and small ... with considerable aplomb 3 +119476 6388 it 's shot on digital video , whose tiny camera enables Shafer to navigate spaces both large ... and small ... with considerable aplomb 3 +119477 6388 's shot on digital video , whose tiny camera enables Shafer to navigate spaces both large ... and small ... with considerable aplomb 3 +119478 6388 shot on digital video , whose tiny camera enables Shafer to navigate spaces both large ... and small ... with considerable aplomb 3 +119479 6388 on digital video , whose tiny camera enables Shafer to navigate spaces both large ... and small ... with considerable aplomb 4 +119480 6388 digital video , whose tiny camera enables Shafer to navigate spaces both large ... and small ... with considerable aplomb 2 +119481 6388 digital video , 2 +119482 6388 whose tiny camera enables Shafer to navigate spaces both large ... and small ... with considerable aplomb 2 +119483 6388 tiny camera enables Shafer to navigate spaces both large ... and small ... with considerable aplomb 3 +119484 6388 tiny camera 2 +119485 6388 enables Shafer to navigate spaces both large ... and small ... with considerable aplomb 3 +119486 6388 enables 2 +119487 6388 Shafer to navigate spaces both large ... and small ... with considerable aplomb 4 +119488 6388 to navigate spaces both large ... and small ... with considerable aplomb 2 +119489 6388 navigate spaces both large ... and small ... with considerable aplomb 3 +119490 6388 navigate 2 +119491 6388 spaces both large ... and small ... with considerable aplomb 3 +119492 6388 both large ... and small ... with considerable aplomb 3 +119493 6388 large ... and small ... with considerable aplomb 2 +119494 6388 large ... and 2 +119495 6388 large ... 2 +119496 6388 small ... with considerable aplomb 3 +119497 6388 small ... 1 +119498 6388 with considerable aplomb 3 +119499 6388 considerable aplomb 3 +119500 6388 aplomb 2 +119501 6389 Best of all is Garcia , who perfectly portrays the desperation of a very insecure man . 4 +119502 6389 Best of all 4 +119503 6389 is Garcia , who perfectly portrays the desperation of a very insecure man . 3 +119504 6389 is Garcia , who perfectly portrays the desperation of a very insecure man 2 +119505 6389 Garcia , who perfectly portrays the desperation of a very insecure man 4 +119506 6389 Garcia , 2 +119507 6389 who perfectly portrays the desperation of a very insecure man 3 +119508 6389 perfectly portrays the desperation of a very insecure man 3 +119509 6389 portrays the desperation of a very insecure man 2 +119510 6389 the desperation of a very insecure man 1 +119511 6389 the desperation 2 +119512 6389 of a very insecure man 2 +119513 6389 a very insecure man 2 +119514 6389 very insecure man 2 +119515 6389 very insecure 0 +119516 6390 Mr. Clooney , Mr. Kaufman and all their collaborators are entitled to take a deep bow for fashioning an engrossing entertainment out of an almost sure-fire prescription for a critical and commercial disaster . 3 +119517 6390 Mr. Clooney , Mr. Kaufman and all their collaborators 2 +119518 6390 Mr. Clooney , Mr. Kaufman and all 2 +119519 6390 Mr. Clooney , Mr. Kaufman and 2 +119520 6390 Mr. Clooney , Mr. Kaufman 2 +119521 6390 Mr. Clooney , 2 +119522 6390 Mr. Clooney 2 +119523 6390 Mr. Kaufman 2 +119524 6390 their collaborators 2 +119525 6390 collaborators 2 +119526 6390 are entitled to take a deep bow for fashioning an engrossing entertainment out of an almost sure-fire prescription for a critical and commercial disaster . 2 +119527 6390 are entitled to take a deep bow for fashioning an engrossing entertainment out of an almost sure-fire prescription for a critical and commercial disaster 3 +119528 6390 entitled to take a deep bow for fashioning an engrossing entertainment out of an almost sure-fire prescription for a critical and commercial disaster 2 +119529 6390 entitled 2 +119530 6390 to take a deep bow for fashioning an engrossing entertainment out of an almost sure-fire prescription for a critical and commercial disaster 2 +119531 6390 take a deep bow for fashioning an engrossing entertainment out of an almost sure-fire prescription for a critical and commercial disaster 2 +119532 6390 take a deep bow 2 +119533 6390 a deep bow 3 +119534 6390 deep bow 3 +119535 6390 for fashioning an engrossing entertainment out of an almost sure-fire prescription for a critical and commercial disaster 1 +119536 6390 fashioning an engrossing entertainment out of an almost sure-fire prescription for a critical and commercial disaster 4 +119537 6390 fashioning an engrossing entertainment out 3 +119538 6390 fashioning an engrossing entertainment 2 +119539 6390 fashioning 2 +119540 6390 an engrossing entertainment 4 +119541 6390 engrossing entertainment 4 +119542 6390 of an almost sure-fire prescription for a critical and commercial disaster 0 +119543 6390 an almost sure-fire prescription for a critical and commercial disaster 2 +119544 6390 an almost sure-fire prescription 3 +119545 6390 almost sure-fire prescription 2 +119546 6390 sure-fire prescription 2 +119547 6390 sure-fire 2 +119548 6390 prescription 2 +119549 6390 for a critical and commercial disaster 0 +119550 6390 a critical and commercial disaster 0 +119551 6390 critical and commercial disaster 0 +119552 6390 critical and commercial 2 +119553 6390 critical and 2 +119554 6391 A remarkably insightful look at the backstage angst of the stand-up comic . 4 +119555 6391 A remarkably insightful 4 +119556 6391 remarkably insightful 3 +119557 6391 look at the backstage angst of the stand-up comic . 3 +119558 6391 look at the backstage angst of the stand-up comic 2 +119559 6391 at the backstage angst of the stand-up comic 2 +119560 6391 the backstage angst of the stand-up comic 2 +119561 6391 the backstage angst 3 +119562 6391 backstage angst 2 +119563 6391 of the stand-up comic 3 +119564 6391 the stand-up comic 2 +119565 6391 stand-up comic 2 +119566 6392 Wewannour money back , actually . 1 +119567 6392 Wewannour money back , actually 1 +119568 6392 Wewannour money back , 0 +119569 6392 Wewannour money back 1 +119570 6392 Wewannour money 1 +119571 6392 Wewannour 2 +119572 6393 The mood , look and tone of the film fit the incredible storyline to a T. 3 +119573 6393 The mood , look and tone of the film 2 +119574 6393 The mood , look and tone 2 +119575 6393 mood , look and tone 2 +119576 6393 , look and tone 2 +119577 6393 look and tone 2 +119578 6393 look and 2 +119579 6393 fit the incredible storyline to a T. 4 +119580 6393 fit the incredible storyline 3 +119581 6393 the incredible storyline 4 +119582 6393 incredible storyline 4 +119583 6393 to a T. 3 +119584 6393 a T. 2 +119585 6393 T. 2 +119586 6394 If Ayurveda can help us return to a sane regimen of eating , sleeping and stress-reducing contemplation , it is clearly a good thing . 3 +119587 6394 If Ayurveda can help us return to a sane regimen of eating , sleeping and stress-reducing contemplation 2 +119588 6394 Ayurveda can help us return to a sane regimen of eating , sleeping and stress-reducing contemplation 2 +119589 6394 can help us return to a sane regimen of eating , sleeping and stress-reducing contemplation 2 +119590 6394 help us return to a sane regimen of eating , sleeping and stress-reducing contemplation 3 +119591 6394 us return to a sane regimen of eating , sleeping and stress-reducing contemplation 2 +119592 6394 return to a sane regimen of eating , sleeping and stress-reducing contemplation 3 +119593 6394 to a sane regimen of eating , sleeping and stress-reducing contemplation 2 +119594 6394 a sane regimen of eating , sleeping and stress-reducing contemplation 3 +119595 6394 a sane regimen 3 +119596 6394 sane regimen 2 +119597 6394 regimen 2 +119598 6394 of eating , sleeping and stress-reducing contemplation 2 +119599 6394 eating , sleeping and stress-reducing contemplation 2 +119600 6394 eating , sleeping and stress-reducing 3 +119601 6394 eating , sleeping and 2 +119602 6394 eating , sleeping 2 +119603 6394 eating , 2 +119604 6394 stress-reducing 3 +119605 6394 , it is clearly a good thing . 4 +119606 6394 it is clearly a good thing . 4 +119607 6394 is clearly a good thing . 3 +119608 6394 is clearly a good thing 3 +119609 6394 a good thing 4 +119610 6395 A gangster movie with the capacity to surprise . 3 +119611 6395 A gangster movie with the capacity to surprise 3 +119612 6395 A gangster movie with the capacity 3 +119613 6395 A gangster movie 2 +119614 6395 with the capacity 2 +119615 6395 the capacity 2 +119616 6395 to surprise 2 +119617 6396 Deserving of its critical backlash and more . 1 +119618 6396 Deserving of its critical backlash and more 0 +119619 6396 of its critical backlash and more 1 +119620 6396 its critical backlash and more 2 +119621 6396 its critical backlash and 2 +119622 6396 its critical backlash 1 +119623 6396 critical backlash 1 +119624 6396 backlash 2 +119625 6397 Has its share of arresting images . 2 +119626 6397 Has its share of arresting images 3 +119627 6397 its share of arresting images 2 +119628 6397 of arresting images 2 +119629 6397 arresting images 2 +119630 6398 Starts as a tart little lemon drop of a movie and ends up as a bitter pill . 1 +119631 6398 Starts as a tart little lemon drop of a movie and ends up as a bitter pill 1 +119632 6398 Starts as a tart little lemon drop of a movie and 3 +119633 6398 Starts as a tart little lemon drop of a movie 1 +119634 6398 as a tart little lemon drop of a movie 2 +119635 6398 a tart little lemon drop of a movie 2 +119636 6398 a tart little lemon drop 2 +119637 6398 tart little lemon drop 2 +119638 6398 little lemon drop 2 +119639 6398 lemon drop 2 +119640 6398 lemon 2 +119641 6398 ends up as a bitter pill 1 +119642 6398 as a bitter pill 1 +119643 6398 a bitter pill 1 +119644 6398 bitter pill 1 +119645 6399 There 's a lot of tooth in Roger Dodger . 3 +119646 6399 's a lot of tooth in Roger Dodger . 2 +119647 6399 's a lot of tooth in Roger Dodger 3 +119648 6399 a lot of tooth in Roger Dodger 3 +119649 6399 of tooth in Roger Dodger 2 +119650 6399 tooth in Roger Dodger 2 +119651 6399 in Roger Dodger 2 +119652 6399 Roger Dodger 2 +119653 6399 Dodger 2 +119654 6400 How about starting with a more original story instead of just slapping extreme humor and gross-out gags on top of the same old crap ? 2 +119655 6400 about starting with a more original story instead of just slapping extreme humor and gross-out gags on top of the same old crap ? 0 +119656 6400 about starting with a more original story instead of just slapping extreme humor and gross-out gags on top of the same old crap 1 +119657 6400 starting with a more original story instead of just slapping extreme humor and gross-out gags on top of the same old crap 1 +119658 6400 starting with a more original story instead of just slapping extreme humor and gross-out gags 2 +119659 6400 with a more original story instead of just slapping extreme humor and gross-out gags 2 +119660 6400 a more original story instead of just slapping extreme humor and gross-out gags 1 +119661 6400 a more original story 2 +119662 6400 more original story 2 +119663 6400 instead of just slapping extreme humor and gross-out gags 1 +119664 6400 of just slapping extreme humor and gross-out gags 1 +119665 6400 just slapping extreme humor and gross-out gags 1 +119666 6400 just slapping extreme humor and 2 +119667 6400 just slapping extreme humor 2 +119668 6400 slapping extreme humor 3 +119669 6400 slapping 2 +119670 6400 extreme humor 3 +119671 6400 gross-out gags 1 +119672 6400 on top of the same old crap 1 +119673 6400 top of the same old crap 0 +119674 6400 of the same old crap 1 +119675 6400 the same old crap 0 +119676 6400 same old crap 0 +119677 6400 old crap 0 +119678 6401 Certain to be distasteful to children and adults alike , Eight Crazy Nights is a total misfire . 0 +119679 6401 Certain to be distasteful to children and adults alike 0 +119680 6401 to be distasteful to children and adults alike 1 +119681 6401 be distasteful to children and adults alike 0 +119682 6401 be distasteful to children and adults 1 +119683 6401 distasteful to children and adults 2 +119684 6401 to children and adults 2 +119685 6401 children and adults 2 +119686 6401 , Eight Crazy Nights is a total misfire . 0 +119687 6401 Eight Crazy Nights is a total misfire . 0 +119688 6401 is a total misfire . 0 +119689 6401 is a total misfire 0 +119690 6401 a total misfire 0 +119691 6401 total misfire 1 +119692 6402 Director Jay Russell weighs down his capricious fairy-tale with heavy sentiment and lightweight meaning . 0 +119693 6402 weighs down his capricious fairy-tale with heavy sentiment and lightweight meaning . 2 +119694 6402 weighs down his capricious fairy-tale with heavy sentiment and lightweight meaning 2 +119695 6402 weighs down his capricious fairy-tale 1 +119696 6402 his capricious fairy-tale 2 +119697 6402 capricious fairy-tale 2 +119698 6402 capricious 2 +119699 6402 with heavy sentiment and lightweight meaning 2 +119700 6402 heavy sentiment and lightweight meaning 2 +119701 6402 heavy sentiment and 2 +119702 6402 heavy sentiment 2 +119703 6402 lightweight meaning 1 +119704 6403 McKay seems embarrassed by his own invention and tries to rush through the intermediary passages , apparently hoping that the audience will not notice the glaring triteness of the plot device he has put in service . 0 +119705 6403 McKay seems embarrassed by his own invention and tries to rush through the intermediary passages , apparently hoping that the audience will not notice the glaring triteness of the plot device 1 +119706 6403 seems embarrassed by his own invention and tries to rush through the intermediary passages , apparently hoping that the audience will not notice the glaring triteness of the plot device 1 +119707 6403 seems embarrassed by his own invention and 0 +119708 6403 seems embarrassed by his own invention 0 +119709 6403 seems embarrassed 1 +119710 6403 by his own invention 2 +119711 6403 his own invention 2 +119712 6403 own invention 2 +119713 6403 tries to rush through the intermediary passages , apparently hoping that the audience will not notice the glaring triteness of the plot device 1 +119714 6403 to rush through the intermediary passages , apparently hoping that the audience will not notice the glaring triteness of the plot device 0 +119715 6403 rush through the intermediary passages , apparently hoping that the audience will not notice the glaring triteness of the plot device 2 +119716 6403 rush through the intermediary passages , 2 +119717 6403 rush through the intermediary passages 2 +119718 6403 rush through 1 +119719 6403 the intermediary passages 2 +119720 6403 intermediary passages 2 +119721 6403 intermediary 2 +119722 6403 apparently hoping that the audience will not notice the glaring triteness of the plot device 0 +119723 6403 hoping that the audience will not notice the glaring triteness of the plot device 0 +119724 6403 that the audience will not notice the glaring triteness of the plot device 2 +119725 6403 the audience will not notice the glaring triteness of the plot device 2 +119726 6403 will not notice the glaring triteness of the plot device 1 +119727 6403 notice the glaring triteness of the plot device 1 +119728 6403 the glaring triteness of the plot device 1 +119729 6403 the glaring triteness 2 +119730 6403 glaring triteness 1 +119731 6403 triteness 1 +119732 6403 of the plot device 2 +119733 6403 the plot device 2 +119734 6403 plot device 2 +119735 6403 device 2 +119736 6403 he has put in service . 2 +119737 6403 has put in service . 2 +119738 6403 has put in service 2 +119739 6403 put in service 3 +119740 6403 in service 2 +119741 6404 One ca n't shake the feeling that Crossroads is nothing more than an hour-and-a-half-long commercial for Britney 's latest album . 0 +119742 6404 ca n't shake the feeling that Crossroads is nothing more than an hour-and-a-half-long commercial for Britney 's latest album . 2 +119743 6404 ca n't shake the feeling that Crossroads is nothing more than an hour-and-a-half-long commercial for Britney 's latest album 0 +119744 6404 shake the feeling that Crossroads is nothing more than an hour-and-a-half-long commercial for Britney 's latest album 2 +119745 6404 that Crossroads is nothing more than an hour-and-a-half-long commercial for Britney 's latest album 0 +119746 6404 Crossroads is nothing more than an hour-and-a-half-long commercial for Britney 's latest album 1 +119747 6404 is nothing more than an hour-and-a-half-long commercial for Britney 's latest album 1 +119748 6404 nothing more than an hour-and-a-half-long commercial for Britney 's latest album 1 +119749 6404 than an hour-and-a-half-long commercial for Britney 's latest album 0 +119750 6404 an hour-and-a-half-long commercial for Britney 's latest album 1 +119751 6404 an hour-and-a-half-long commercial 0 +119752 6404 hour-and-a-half-long commercial 1 +119753 6404 hour-and-a-half-long 2 +119754 6404 for Britney 's latest album 2 +119755 6404 Britney 's latest album 2 +119756 6404 latest album 2 +119757 6405 The mantra behind the project seems to have been ` it 's just a kids ' flick . ' 1 +119758 6405 The mantra behind the project 2 +119759 6405 The mantra 2 +119760 6405 mantra 2 +119761 6405 behind the project 3 +119762 6405 seems to have been ` it 's just a kids ' flick . ' 2 +119763 6405 seems to have been ` it 's just a kids ' flick . 1 +119764 6405 seems to have been ` it 's just a kids ' flick 1 +119765 6405 to have been ` it 's just a kids ' flick 2 +119766 6405 have been ` it 's just a kids ' flick 2 +119767 6405 been ` it 's just a kids ' flick 2 +119768 6405 ` it 's just a kids ' flick 1 +119769 6405 it 's just a kids ' flick 1 +119770 6405 it 's just a kids 2 +119771 6405 's just a kids 2 +119772 6405 a kids 2 +119773 6405 ' flick 2 +119774 6406 Often shocking but ultimately worthwhile exploration of motherhood and desperate mothers . 4 +119775 6406 Often shocking but ultimately worthwhile exploration of motherhood and desperate mothers 3 +119776 6406 Often shocking but ultimately worthwhile exploration 3 +119777 6406 Often shocking but ultimately worthwhile 3 +119778 6406 Often shocking but 2 +119779 6406 Often shocking 2 +119780 6406 ultimately worthwhile 3 +119781 6406 of motherhood and desperate mothers 1 +119782 6406 motherhood and desperate mothers 2 +119783 6406 motherhood and desperate 2 +119784 6406 motherhood and 2 +119785 6407 Exhibits the shallow sensationalism characteristic of soap opera ... more salacious telenovela than serious drama . 1 +119786 6407 Exhibits the shallow sensationalism characteristic of soap opera ... more salacious telenovela than serious drama 1 +119787 6407 Exhibits the shallow sensationalism characteristic of soap opera ... 0 +119788 6407 Exhibits the shallow sensationalism characteristic of soap opera 1 +119789 6407 Exhibits 2 +119790 6407 the shallow sensationalism characteristic of soap opera 1 +119791 6407 the shallow sensationalism characteristic 1 +119792 6407 shallow sensationalism characteristic 2 +119793 6407 sensationalism characteristic 2 +119794 6407 sensationalism 2 +119795 6407 more salacious telenovela than serious drama 1 +119796 6407 more salacious telenovela 2 +119797 6407 more salacious 2 +119798 6407 salacious 2 +119799 6407 telenovela 2 +119800 6407 than serious drama 2 +119801 6408 This charming but slight tale has warmth , wit and interesting characters compassionately portrayed . 3 +119802 6408 This charming but slight tale 3 +119803 6408 charming but slight tale 3 +119804 6408 has warmth , wit and interesting characters compassionately portrayed . 4 +119805 6408 has warmth , wit and interesting characters compassionately portrayed 4 +119806 6408 warmth , wit and interesting characters compassionately portrayed 3 +119807 6408 warmth , wit and interesting characters 3 +119808 6408 , wit and interesting characters 3 +119809 6408 wit and interesting characters 3 +119810 6408 and interesting characters 3 +119811 6408 compassionately portrayed 3 +119812 6408 compassionately 3 +119813 6409 A shame that Stealing Harvard is too busy getting in its own way to be anything but frustrating , boring , and forgettable . 0 +119814 6409 shame that Stealing Harvard is too busy getting in its own way to be anything but frustrating , boring , and forgettable . 1 +119815 6409 shame that Stealing Harvard is too busy getting in its own way to be anything but frustrating , boring , and forgettable 0 +119816 6409 that Stealing Harvard is too busy getting in its own way to be anything but frustrating , boring , and forgettable 0 +119817 6409 Stealing Harvard is too busy getting in its own way to be anything but frustrating , boring , and forgettable 0 +119818 6409 is too busy getting in its own way to be anything but frustrating , boring , and forgettable 0 +119819 6409 getting in its own way to be anything but frustrating , boring , and forgettable 0 +119820 6409 getting in its own way 2 +119821 6409 to be anything but frustrating , boring , and forgettable 0 +119822 6409 be anything but frustrating , boring , and forgettable 1 +119823 6409 anything but frustrating , boring , and forgettable 2 +119824 6409 anything but frustrating , boring , and 3 +119825 6409 anything but frustrating , boring , 2 +119826 6409 anything but frustrating , boring 2 +119827 6409 anything but frustrating , 3 +119828 6409 anything but frustrating 2 +119829 6410 You 'll feel like you ate a Reeses without the peanut butter ... ' 1 +119830 6410 'll feel like you ate a Reeses without the peanut butter ... ' 1 +119831 6410 'll feel like you ate a Reeses without the peanut butter ... 1 +119832 6410 'll feel like you ate a Reeses without the peanut butter 1 +119833 6410 feel like you ate a Reeses without the peanut butter 2 +119834 6410 like you ate a Reeses without the peanut butter 2 +119835 6410 you ate a Reeses without the peanut butter 2 +119836 6410 ate a Reeses without the peanut butter 2 +119837 6410 ate a Reeses 3 +119838 6410 ate 1 +119839 6410 a Reeses 2 +119840 6410 Reeses 2 +119841 6410 without the peanut butter 2 +119842 6410 the peanut butter 2 +119843 6410 peanut butter 2 +119844 6410 peanut 2 +119845 6411 It 's an often-cute film but either needs more substance to fill the time or some judicious editing . 2 +119846 6411 's an often-cute film but either needs more substance to fill the time or some judicious editing . 2 +119847 6411 's an often-cute film but either needs more substance to fill the time or some judicious editing 1 +119848 6411 's an often-cute film but 2 +119849 6411 's an often-cute film 3 +119850 6411 an often-cute film 3 +119851 6411 often-cute film 3 +119852 6411 often-cute 3 +119853 6411 either needs more substance to fill the time or some judicious editing 1 +119854 6411 needs more substance to fill the time or some judicious editing 1 +119855 6411 more substance to fill the time or some judicious editing 1 +119856 6411 substance to fill the time or some judicious editing 2 +119857 6411 to fill the time or some judicious editing 2 +119858 6411 fill the time or some judicious editing 2 +119859 6411 the time or some judicious editing 2 +119860 6411 the time or 2 +119861 6411 some judicious editing 2 +119862 6411 judicious editing 3 +119863 6411 judicious 2 +119864 6412 This latest installment of the horror film franchise that is apparently as invulnerable as its trademark villain has arrived for an incongruous summer playoff , demonstrating yet again that the era of the intelligent , well-made B movie is long gone . 1 +119865 6412 This latest installment of the horror film franchise that is apparently as invulnerable as its trademark villain 3 +119866 6412 This latest installment 2 +119867 6412 latest installment 2 +119868 6412 of the horror film franchise that is apparently as invulnerable as its trademark villain 1 +119869 6412 the horror film franchise that is apparently as invulnerable as its trademark villain 2 +119870 6412 the horror film franchise 2 +119871 6412 horror film franchise 2 +119872 6412 film franchise 2 +119873 6412 that is apparently as invulnerable as its trademark villain 1 +119874 6412 is apparently as invulnerable as its trademark villain 3 +119875 6412 is apparently 2 +119876 6412 as invulnerable as its trademark villain 2 +119877 6412 invulnerable as its trademark villain 3 +119878 6412 invulnerable 2 +119879 6412 as its trademark villain 2 +119880 6412 its trademark villain 2 +119881 6412 trademark villain 2 +119882 6412 has arrived for an incongruous summer playoff , demonstrating yet again that the era of the intelligent , well-made B movie is long gone . 1 +119883 6412 has arrived for an incongruous summer playoff , demonstrating yet again that the era of the intelligent , well-made B movie is long gone 1 +119884 6412 arrived for an incongruous summer playoff , demonstrating yet again that the era of the intelligent , well-made B movie is long gone 0 +119885 6412 arrived for an incongruous summer playoff , 2 +119886 6412 arrived for an incongruous summer playoff 2 +119887 6412 for an incongruous summer playoff 2 +119888 6412 an incongruous summer playoff 1 +119889 6412 incongruous summer playoff 1 +119890 6412 summer playoff 2 +119891 6412 playoff 2 +119892 6412 demonstrating yet again that the era of the intelligent , well-made B movie is long gone 2 +119893 6412 demonstrating yet 2 +119894 6412 again that the era of the intelligent , well-made B movie is long gone 0 +119895 6412 that the era of the intelligent , well-made B movie is long gone 1 +119896 6412 the era of the intelligent , well-made B movie is long gone 0 +119897 6412 the era of the intelligent , well-made B movie 2 +119898 6412 of the intelligent , well-made B movie 3 +119899 6412 the intelligent , well-made B movie 3 +119900 6412 intelligent , well-made B movie 3 +119901 6412 , well-made B movie 4 +119902 6412 well-made B movie 2 +119903 6412 is long gone 1 +119904 6413 This is not one of the movies you 'd want to watch if you only had a week to live . 0 +119905 6413 is not one of the movies you 'd want to watch if you only had a week to live . 1 +119906 6413 is not one of the movies you 'd want to watch if you only had a week to live 1 +119907 6413 one of the movies you 'd want to watch if you only had a week to live 4 +119908 6413 of the movies you 'd want to watch if you only had a week to live 3 +119909 6413 the movies you 'd want to watch if you only had a week to live 4 +119910 6413 you 'd want to watch if you only had a week to live 4 +119911 6413 'd want to watch if you only had a week to live 3 +119912 6413 want to watch if you only had a week to live 3 +119913 6413 to watch if you only had a week to live 2 +119914 6413 watch if you only had a week to live 3 +119915 6413 if you only had a week to live 1 +119916 6413 you only had a week to live 2 +119917 6413 only had a week to live 1 +119918 6413 had a week to live 2 +119919 6413 a week to live 2 +119920 6413 week to live 2 +119921 6414 It all seemed wasted like DeNiro 's once promising career and the once grand Long Beach boardwalk . 1 +119922 6414 all seemed wasted like DeNiro 's once promising career and the once grand Long Beach boardwalk . 1 +119923 6414 seemed wasted like DeNiro 's once promising career and the once grand Long Beach boardwalk . 1 +119924 6414 seemed wasted like DeNiro 's once promising career and the once grand Long Beach boardwalk 1 +119925 6414 wasted like DeNiro 's once promising career and the once grand Long Beach boardwalk 0 +119926 6414 like DeNiro 's once promising career and the once grand Long Beach boardwalk 2 +119927 6414 DeNiro 's once promising career and the once grand Long Beach boardwalk 1 +119928 6414 DeNiro 's once promising career and 2 +119929 6414 DeNiro 's once promising career 1 +119930 6414 DeNiro 's 2 +119931 6414 once promising career 2 +119932 6414 once promising 2 +119933 6414 the once grand Long Beach boardwalk 2 +119934 6414 once grand Long Beach boardwalk 2 +119935 6414 once grand 2 +119936 6414 Long Beach boardwalk 2 +119937 6414 Beach boardwalk 2 +119938 6414 boardwalk 2 +119939 6415 An Inuit masterpiece that will give you goosebumps as its uncanny tale of love , communal discord , and justice unfolds . 4 +119940 6415 An Inuit masterpiece that will give you goosebumps as its uncanny tale of love , communal discord , and justice 3 +119941 6415 An Inuit masterpiece 3 +119942 6415 Inuit masterpiece 3 +119943 6415 that will give you goosebumps as its uncanny tale of love , communal discord , and justice 3 +119944 6415 will give you goosebumps as its uncanny tale of love , communal discord , and justice 3 +119945 6415 give you goosebumps as its uncanny tale of love , communal discord , and justice 3 +119946 6415 goosebumps as its uncanny tale of love , communal discord , and justice 3 +119947 6415 goosebumps 3 +119948 6415 as its uncanny tale of love , communal discord , and justice 1 +119949 6415 its uncanny tale of love , communal discord , and justice 2 +119950 6415 its uncanny tale 3 +119951 6415 uncanny tale 3 +119952 6415 of love , communal discord , and justice 2 +119953 6415 love , communal discord , and justice 2 +119954 6415 love , communal discord , and 2 +119955 6415 love , communal discord , 3 +119956 6415 love , communal discord 2 +119957 6415 communal discord 2 +119958 6415 discord 1 +119959 6415 unfolds . 2 +119960 6416 The movie itself appears to be running on hypertime in reverse as the truly funny bits get further and further apart . 1 +119961 6416 The movie itself appears to be running on hypertime in reverse as the truly funny bits 2 +119962 6416 itself appears to be running on hypertime in reverse as the truly funny bits 2 +119963 6416 appears to be running on hypertime in reverse as the truly funny bits 2 +119964 6416 to be running on hypertime in reverse as the truly funny bits 3 +119965 6416 be running on hypertime in reverse as the truly funny bits 2 +119966 6416 running on hypertime in reverse as the truly funny bits 2 +119967 6416 running on hypertime in reverse 2 +119968 6416 on hypertime in reverse 2 +119969 6416 hypertime in reverse 1 +119970 6416 hypertime 2 +119971 6416 in reverse 3 +119972 6416 reverse 2 +119973 6416 as the truly funny bits 2 +119974 6416 the truly funny bits 3 +119975 6416 truly funny bits 3 +119976 6416 get further and further apart . 2 +119977 6416 get further and further apart 2 +119978 6416 further and further apart 2 +119979 6416 further and 2 +119980 6416 further apart 2 +119981 6417 The story is bogus and its characters tissue-thin . 0 +119982 6417 The story is bogus and its characters tissue-thin 1 +119983 6417 The story is bogus and 1 +119984 6417 The story is bogus 0 +119985 6417 is bogus 2 +119986 6417 its characters tissue-thin 1 +119987 6417 tissue-thin 2 +119988 6418 Ponderous , plodding soap opera disguised as a feature film . 1 +119989 6418 Ponderous , plodding soap opera disguised as a feature film 1 +119990 6418 Ponderous , 2 +119991 6418 plodding soap opera disguised as a feature film 1 +119992 6418 plodding soap opera 1 +119993 6418 disguised as a feature film 1 +119994 6418 as a feature film 2 +119995 6419 For casual moviegoers who stumble into Rules expecting a slice of American Pie hijinks starring the kid from Dawson 's Creek , they 'll probably run out screaming . 1 +119996 6419 For casual moviegoers who stumble into Rules expecting a slice of American Pie hijinks starring the kid from Dawson 's Creek 2 +119997 6419 casual moviegoers who stumble into Rules expecting a slice of American Pie hijinks starring the kid from Dawson 's Creek 2 +119998 6419 casual moviegoers 2 +119999 6419 who stumble into Rules expecting a slice of American Pie hijinks starring the kid from Dawson 's Creek 1 +120000 6419 stumble into Rules expecting a slice of American Pie hijinks starring the kid from Dawson 's Creek 2 +120001 6419 into Rules expecting a slice of American Pie hijinks starring the kid from Dawson 's Creek 1 +120002 6419 Rules expecting a slice of American Pie hijinks starring the kid from Dawson 's Creek 1 +120003 6419 expecting a slice of American Pie hijinks starring the kid from Dawson 's Creek 2 +120004 6419 expecting a slice of American Pie hijinks 2 +120005 6419 a slice of American Pie hijinks 3 +120006 6419 of American Pie hijinks 1 +120007 6419 American Pie hijinks 2 +120008 6419 Pie hijinks 2 +120009 6419 hijinks 2 +120010 6419 starring the kid from Dawson 's Creek 2 +120011 6419 starring the kid 2 +120012 6419 from Dawson 's Creek 3 +120013 6419 , they 'll probably run out screaming . 1 +120014 6419 they 'll probably run out screaming . 1 +120015 6419 'll probably run out screaming . 1 +120016 6419 'll probably run out screaming 2 +120017 6419 run out screaming 1 +120018 6420 Should n't have been allowed to use the word `` new '' in its title , because there 's not an original character , siuation or joke in the entire movie . 0 +120019 6420 Should n't have been allowed to use the word `` new '' in its title , because there 's not an original character , siuation or joke in the entire movie 0 +120020 6420 have been allowed to use the word `` new '' in its title , because there 's not an original character , siuation or joke in the entire movie 0 +120021 6420 been allowed to use the word `` new '' in its title , because there 's not an original character , siuation or joke in the entire movie 1 +120022 6420 allowed to use the word `` new '' in its title , because there 's not an original character , siuation or joke in the entire movie 0 +120023 6420 allowed to use the word `` new '' in its title , 2 +120024 6420 allowed to use the word `` new '' in its title 1 +120025 6420 to use the word `` new '' in its title 1 +120026 6420 use the word `` new '' in its title 2 +120027 6420 use the word `` new '' 2 +120028 6420 the word `` new '' 2 +120029 6420 `` new '' 2 +120030 6420 new '' 2 +120031 6420 in its title 2 +120032 6420 because there 's not an original character , siuation or joke in the entire movie 0 +120033 6420 there 's not an original character , siuation or joke in the entire movie 0 +120034 6420 's not an original character , siuation or joke in the entire movie 1 +120035 6420 an original character , siuation or joke in the entire movie 1 +120036 6420 an original character , siuation or joke 2 +120037 6420 original character , siuation or joke 3 +120038 6420 character , siuation or joke 2 +120039 6420 , siuation or joke 2 +120040 6420 siuation or joke 2 +120041 6420 siuation or 2 +120042 6420 siuation 2 +120043 6420 in the entire movie 2 +120044 6421 Totally overwrought , deeply biased , and wholly designed to make you feel guilty about ignoring what the filmmakers clearly believe are The Greatest Musicians of All Time . 0 +120045 6421 Totally overwrought , deeply biased , and wholly designed to make you feel guilty about ignoring what the filmmakers clearly believe 1 +120046 6421 Totally overwrought , 0 +120047 6421 Totally overwrought 1 +120048 6421 deeply biased , and wholly designed to make you feel guilty about ignoring what the filmmakers clearly believe 0 +120049 6421 deeply biased , and wholly 1 +120050 6421 deeply biased , and 1 +120051 6421 deeply biased , 1 +120052 6421 deeply biased 1 +120053 6421 biased 1 +120054 6421 designed to make you feel guilty about ignoring what the filmmakers clearly believe 1 +120055 6421 to make you feel guilty about ignoring what the filmmakers clearly believe 1 +120056 6421 make you feel guilty about ignoring what the filmmakers clearly believe 1 +120057 6421 you feel guilty about ignoring what the filmmakers clearly believe 1 +120058 6421 feel guilty about ignoring what the filmmakers clearly believe 2 +120059 6421 guilty about ignoring what the filmmakers clearly believe 2 +120060 6421 about ignoring what the filmmakers clearly believe 2 +120061 6421 ignoring what the filmmakers clearly believe 1 +120062 6421 what the filmmakers clearly believe 2 +120063 6421 the filmmakers clearly believe 2 +120064 6421 clearly believe 2 +120065 6421 are The Greatest Musicians of All Time . 3 +120066 6421 are The Greatest Musicians of All Time 3 +120067 6421 The Greatest Musicians of All Time 2 +120068 6421 The Greatest Musicians 3 +120069 6421 Greatest Musicians 3 +120070 6421 of All Time 2 +120071 6421 All Time 2 +120072 6422 This is a stunning film , a one-of-a-kind tour de force . 4 +120073 6422 is a stunning film , a one-of-a-kind tour de force . 4 +120074 6422 is a stunning film , a one-of-a-kind tour de force 4 +120075 6422 a stunning film , a one-of-a-kind tour de force 4 +120076 6422 a stunning film , 4 +120077 6422 a stunning film 3 +120078 6422 stunning film 4 +120079 6422 a one-of-a-kind tour de force 4 +120080 6422 one-of-a-kind tour de force 3 +120081 6423 It 's a wise and powerful tale of race and culture forcefully told , with superb performances throughout . 4 +120082 6423 's a wise and powerful tale of race and culture forcefully told , with superb performances throughout . 3 +120083 6423 's a wise and powerful tale of race and culture forcefully told , with superb performances throughout 4 +120084 6423 a wise and powerful tale of race and culture forcefully told , with superb performances throughout 4 +120085 6423 a wise and powerful tale 4 +120086 6423 wise and powerful tale 4 +120087 6423 wise and powerful 3 +120088 6423 of race and culture forcefully told , with superb performances throughout 3 +120089 6423 race and culture forcefully told , with superb performances throughout 4 +120090 6423 race and culture 2 +120091 6423 forcefully told , with superb performances throughout 4 +120092 6423 told , with superb performances throughout 4 +120093 6423 told , 2 +120094 6423 with superb performances throughout 3 +120095 6423 superb performances throughout 4 +120096 6423 superb performances 4 +120097 6424 It 's an entertaining movie , and the effects , boosted to the size of a downtown hotel , will all but take you to outer space . 3 +120098 6424 It 's an entertaining movie , and the effects , boosted to the size of a downtown hotel , will all but take you to outer space 4 +120099 6424 It 's an entertaining movie , and 3 +120100 6424 It 's an entertaining movie , 4 +120101 6424 It 's an entertaining movie 3 +120102 6424 's an entertaining movie 3 +120103 6424 an entertaining movie 3 +120104 6424 entertaining movie 3 +120105 6424 the effects , boosted to the size of a downtown hotel , will all but take you to outer space 2 +120106 6424 the effects , boosted to the size of a downtown hotel , 2 +120107 6424 the effects , boosted to the size of a downtown hotel 2 +120108 6424 the effects , 2 +120109 6424 boosted to the size of a downtown hotel 2 +120110 6424 boosted 2 +120111 6424 to the size of a downtown hotel 2 +120112 6424 the size of a downtown hotel 2 +120113 6424 of a downtown hotel 2 +120114 6424 a downtown hotel 2 +120115 6424 downtown hotel 2 +120116 6424 will all but take you to outer space 3 +120117 6424 will all but 2 +120118 6424 take you to outer space 3 +120119 6424 to outer space 2 +120120 6424 outer space 2 +120121 6425 As they used to say in the 1950s sci-fi movies , Signs is a tribute to Shyamalan 's gifts , which are such that we 'll keep watching the skies for his next project . 3 +120122 6425 As they used to say in the 1950s sci-fi movies 2 +120123 6425 they used to say in the 1950s sci-fi movies 2 +120124 6425 used to say in the 1950s sci-fi movies 2 +120125 6425 to say in the 1950s sci-fi movies 2 +120126 6425 say in the 1950s sci-fi movies 2 +120127 6425 in the 1950s sci-fi movies 2 +120128 6425 the 1950s sci-fi movies 2 +120129 6425 1950s sci-fi movies 2 +120130 6425 sci-fi movies 2 +120131 6425 , Signs is a tribute to Shyamalan 's gifts , which are such that we 'll keep watching the skies for his next project . 3 +120132 6425 Signs is a tribute to Shyamalan 's gifts , which are such that we 'll keep watching the skies for his next project . 4 +120133 6425 is a tribute to Shyamalan 's gifts , which are such that we 'll keep watching the skies for his next project . 3 +120134 6425 is a tribute to Shyamalan 's gifts , which are such that we 'll keep watching the skies for his next project 4 +120135 6425 a tribute to Shyamalan 's gifts , which are such that we 'll keep watching the skies for his next project 4 +120136 6425 to Shyamalan 's gifts , which are such that we 'll keep watching the skies for his next project 3 +120137 6425 Shyamalan 's gifts , which are such that we 'll keep watching the skies for his next project 3 +120138 6425 Shyamalan 's gifts , 3 +120139 6425 Shyamalan 's gifts 3 +120140 6425 which are such that we 'll keep watching the skies for his next project 3 +120141 6425 are such that we 'll keep watching the skies for his next project 3 +120142 6425 such that we 'll keep watching the skies for his next project 3 +120143 6425 that we 'll keep watching the skies for his next project 4 +120144 6425 we 'll keep watching the skies for his next project 3 +120145 6425 'll keep watching the skies for his next project 3 +120146 6425 keep watching the skies for his next project 3 +120147 6425 watching the skies for his next project 2 +120148 6425 watching the skies 2 +120149 6425 for his next project 2 +120150 6425 his next project 2 +120151 6426 Instead of a witty expose on the banality and hypocrisy of too much kid-vid , we get an ugly , mean-spirited lashing out by an adult who 's apparently been forced by his kids to watch too many Barney videos . 1 +120152 6426 Instead of a witty expose on the banality and hypocrisy of too much kid-vid 1 +120153 6426 of a witty expose on the banality and hypocrisy of too much kid-vid 3 +120154 6426 a witty expose on the banality and hypocrisy of too much kid-vid 2 +120155 6426 a witty expose 3 +120156 6426 witty expose 3 +120157 6426 on the banality and hypocrisy of too much kid-vid 1 +120158 6426 the banality and hypocrisy of too much kid-vid 1 +120159 6426 the banality and hypocrisy 0 +120160 6426 banality and hypocrisy 1 +120161 6426 banality and 2 +120162 6426 hypocrisy 2 +120163 6426 of too much kid-vid 1 +120164 6426 too much kid-vid 1 +120165 6426 kid-vid 2 +120166 6426 , we get an ugly , mean-spirited lashing out by an adult who 's apparently been forced by his kids to watch too many Barney videos . 0 +120167 6426 we get an ugly , mean-spirited lashing out by an adult who 's apparently been forced by his kids to watch too many Barney videos . 1 +120168 6426 get an ugly , mean-spirited lashing out by an adult who 's apparently been forced by his kids to watch too many Barney videos . 1 +120169 6426 get an ugly , mean-spirited lashing out by an adult who 's apparently been forced by his kids to watch too many Barney videos 0 +120170 6426 get an ugly , mean-spirited lashing 1 +120171 6426 an ugly , mean-spirited lashing 2 +120172 6426 ugly , mean-spirited lashing 0 +120173 6426 , mean-spirited lashing 1 +120174 6426 mean-spirited lashing 1 +120175 6426 lashing 2 +120176 6426 out by an adult who 's apparently been forced by his kids to watch too many Barney videos 1 +120177 6426 by an adult who 's apparently been forced by his kids to watch too many Barney videos 1 +120178 6426 an adult who 's apparently been forced by his kids to watch too many Barney videos 3 +120179 6426 an adult 2 +120180 6426 who 's apparently been forced by his kids to watch too many Barney videos 2 +120181 6426 's apparently been forced by his kids to watch too many Barney videos 1 +120182 6426 been forced by his kids to watch too many Barney videos 1 +120183 6426 forced by his kids to watch too many Barney videos 1 +120184 6426 by his kids to watch too many Barney videos 2 +120185 6426 his kids to watch too many Barney videos 1 +120186 6426 kids to watch too many Barney videos 1 +120187 6426 to watch too many Barney videos 3 +120188 6426 watch too many Barney videos 2 +120189 6426 too many Barney videos 0 +120190 6426 many Barney videos 2 +120191 6426 Barney videos 2 +120192 6427 A technical triumph and an extraordinary bore . 1 +120193 6427 A technical triumph and an extraordinary 4 +120194 6427 A technical triumph and 4 +120195 6427 A technical triumph 2 +120196 6427 technical triumph 4 +120197 6427 an extraordinary 3 +120198 6428 It 's Quaid who anchors the film with his effortless performance and that trademark grin of his -- so perfect for a ballplayer . 4 +120199 6428 's Quaid who anchors the film with his effortless performance and that trademark grin of his -- so perfect for a ballplayer . 3 +120200 6428 's Quaid who anchors the film with his effortless performance and that trademark grin of his -- so perfect for a ballplayer 3 +120201 6428 Quaid who anchors the film with his effortless performance and that trademark grin of his -- so perfect for a ballplayer 4 +120202 6428 who anchors the film with his effortless performance and that trademark grin of his -- so perfect for a ballplayer 4 +120203 6428 anchors the film with his effortless performance and that trademark grin of his -- so perfect for a ballplayer 3 +120204 6428 the film with his effortless performance and that trademark grin of his -- so perfect for a ballplayer 4 +120205 6428 the film with his effortless performance and 2 +120206 6428 the film with his effortless performance 2 +120207 6428 with his effortless performance 3 +120208 6428 his effortless performance 4 +120209 6428 effortless performance 4 +120210 6428 that trademark grin of his -- so perfect for a ballplayer 3 +120211 6428 that trademark grin of his -- 3 +120212 6428 that trademark grin of his 3 +120213 6428 that trademark grin 3 +120214 6428 trademark grin 3 +120215 6428 of his 2 +120216 6428 so perfect for a ballplayer 3 +120217 6428 perfect for a ballplayer 3 +120218 6428 for a ballplayer 2 +120219 6428 a ballplayer 2 +120220 6428 ballplayer 2 +120221 6429 Making such a tragedy the backdrop to a love story risks trivializing it , though Chouraqui no doubt intended the film to affirm love 's power to help people endure almost unimaginable horror . 3 +120222 6429 Making such a tragedy 2 +120223 6429 such a tragedy 1 +120224 6429 the backdrop to a love story risks trivializing it , though Chouraqui no doubt intended the film to affirm love 's power to help people endure almost unimaginable horror . 2 +120225 6429 to a love story risks trivializing it , though Chouraqui no doubt intended the film to affirm love 's power to help people endure almost unimaginable horror . 3 +120226 6429 to a love story 2 +120227 6429 risks trivializing it , though Chouraqui no doubt intended the film to affirm love 's power to help people endure almost unimaginable horror . 2 +120228 6429 risks trivializing it , though Chouraqui no doubt intended the film to affirm love 's power to help people endure almost unimaginable horror 2 +120229 6429 risks trivializing it , 2 +120230 6429 risks trivializing it 2 +120231 6429 trivializing it 1 +120232 6429 trivializing 2 +120233 6429 though Chouraqui no doubt intended the film to affirm love 's power to help people endure almost unimaginable horror 2 +120234 6429 Chouraqui no doubt intended the film to affirm love 's power to help people endure almost unimaginable horror 3 +120235 6429 no doubt intended the film to affirm love 's power to help people endure almost unimaginable horror 3 +120236 6429 intended the film to affirm love 's power to help people endure almost unimaginable horror 2 +120237 6429 the film to affirm love 's power to help people endure almost unimaginable horror 3 +120238 6429 film to affirm love 's power to help people endure almost unimaginable horror 3 +120239 6429 to affirm love 's power to help people endure almost unimaginable horror 3 +120240 6429 affirm love 's power to help people endure almost unimaginable horror 3 +120241 6429 affirm 3 +120242 6429 love 's power to help people endure almost unimaginable horror 2 +120243 6429 power to help people endure almost unimaginable horror 3 +120244 6429 to help people endure almost unimaginable horror 2 +120245 6429 help people endure almost unimaginable horror 2 +120246 6429 people endure almost unimaginable horror 2 +120247 6429 endure almost unimaginable horror 1 +120248 6429 almost unimaginable horror 1 +120249 6429 unimaginable horror 1 +120250 6429 unimaginable 1 +120251 6430 Instead of contriving a climactic hero 's death for the beloved-major - character-who-shall - remain-nameless , why not invite some genuine spontaneity into the film by having the evil aliens ' laser guns actually hit something for once ? 1 +120252 6430 Instead of contriving a climactic hero 's death for the beloved-major - character-who-shall - remain-nameless 2 +120253 6430 of contriving a climactic hero 's death for the beloved-major - character-who-shall - remain-nameless 2 +120254 6430 of contriving a climactic hero 's death for the beloved-major 2 +120255 6430 contriving a climactic hero 's death for the beloved-major 1 +120256 6430 a climactic hero 's death for the beloved-major 2 +120257 6430 a climactic hero 's death 2 +120258 6430 a climactic hero 's 3 +120259 6430 climactic hero 's 2 +120260 6430 for the beloved-major 2 +120261 6430 the beloved-major 2 +120262 6430 beloved-major 3 +120263 6430 - character-who-shall - remain-nameless 2 +120264 6430 character-who-shall - remain-nameless 1 +120265 6430 character-who-shall - 2 +120266 6430 character-who-shall 2 +120267 6430 remain-nameless 2 +120268 6430 , why not invite some genuine spontaneity into the film by having the evil aliens ' laser guns actually hit something for once ? 1 +120269 6430 why not invite some genuine spontaneity into the film by having the evil aliens ' laser guns actually hit something for once ? 1 +120270 6430 not invite some genuine spontaneity into the film by having the evil aliens ' laser guns actually hit something for once ? 1 +120271 6430 invite some genuine spontaneity into the film by having the evil aliens ' laser guns actually hit something for once ? 1 +120272 6430 invite some genuine spontaneity into the film by having the evil aliens ' laser guns actually hit something for once 1 +120273 6430 invite some genuine spontaneity into the film 3 +120274 6430 invite some genuine spontaneity 2 +120275 6430 invite 3 +120276 6430 some genuine spontaneity 3 +120277 6430 genuine spontaneity 3 +120278 6430 into the film 2 +120279 6430 by having the evil aliens ' laser guns actually hit something for once 1 +120280 6430 having the evil aliens ' laser guns actually hit something for once 2 +120281 6430 the evil aliens ' laser guns actually hit something for once 2 +120282 6430 the evil aliens ' laser guns 2 +120283 6430 the evil aliens ' 2 +120284 6430 evil aliens ' 2 +120285 6430 aliens ' 2 +120286 6430 laser guns 2 +120287 6430 laser 2 +120288 6430 actually hit something for once 2 +120289 6430 hit something for once 2 +120290 6430 something for once 2 +120291 6430 for once 3 +120292 6431 Mel Gibson fights the good fight in Vietnam in director Randall Wallace 's flag-waving war flick with a core of decency . 3 +120293 6431 fights the good fight in Vietnam in director Randall Wallace 's flag-waving war flick with a core of decency . 3 +120294 6431 fights the good fight in Vietnam in director Randall Wallace 's flag-waving war flick with a core of decency 3 +120295 6431 fights the good fight in Vietnam 3 +120296 6431 the good fight in Vietnam 2 +120297 6431 the good fight 3 +120298 6431 good fight 3 +120299 6431 in Vietnam 2 +120300 6431 in director Randall Wallace 's flag-waving war flick with a core of decency 3 +120301 6431 director Randall Wallace 's flag-waving war flick with a core of decency 3 +120302 6431 director Randall Wallace 's flag-waving war flick 2 +120303 6431 director Randall Wallace 's 2 +120304 6431 Randall Wallace 's 2 +120305 6431 flag-waving war flick 2 +120306 6431 flag-waving 2 +120307 6431 war flick 2 +120308 6431 with a core of decency 3 +120309 6431 a core of decency 2 +120310 6431 of decency 2 +120311 6432 Barry convinces us he 's a dangerous , secretly unhinged guy who could easily have killed a president because it made him feel powerful . 4 +120312 6432 Barry convinces us 2 +120313 6432 convinces us 2 +120314 6432 convinces 2 +120315 6432 he 's a dangerous , secretly unhinged guy who could easily have killed a president because it made him feel powerful . 1 +120316 6432 's a dangerous , secretly unhinged guy who could easily have killed a president because it made him feel powerful . 1 +120317 6432 's a dangerous , secretly unhinged guy who could easily have killed a president because it made him feel powerful 2 +120318 6432 a dangerous , secretly unhinged guy who could easily have killed a president because it made him feel powerful 2 +120319 6432 a dangerous , secretly unhinged guy 2 +120320 6432 dangerous , secretly unhinged guy 2 +120321 6432 dangerous , secretly unhinged 2 +120322 6432 , secretly unhinged 2 +120323 6432 secretly unhinged 2 +120324 6432 secretly 2 +120325 6432 unhinged 2 +120326 6432 who could easily have killed a president because it made him feel powerful 2 +120327 6432 could easily have killed a president because it made him feel powerful 2 +120328 6432 have killed a president because it made him feel powerful 2 +120329 6432 killed a president because it made him feel powerful 2 +120330 6432 killed a president 2 +120331 6432 a president 2 +120332 6432 because it made him feel powerful 3 +120333 6432 it made him feel powerful 2 +120334 6432 made him feel powerful 3 +120335 6432 him feel powerful 2 +120336 6432 feel powerful 2 +120337 6433 Not only does Spider-Man deliver , but I suspect it might deliver again and again . 4 +120338 6433 does Spider-Man deliver , but I suspect it might deliver again and again . 4 +120339 6433 does Spider-Man deliver 2 +120340 6433 does Spider-Man 2 +120341 6433 , but I suspect it might deliver again and again . 4 +120342 6433 , but I suspect it might deliver again and again 3 +120343 6433 I suspect it might deliver again and again 3 +120344 6433 suspect it might deliver again and again 3 +120345 6433 it might deliver again and again 3 +120346 6433 might deliver again and again 3 +120347 6433 deliver again and again 4 +120348 6434 Not so much farcical as sour . 1 +120349 6434 so much farcical as sour . 1 +120350 6434 so much farcical as sour 2 +120351 6434 so much farcical 1 +120352 6434 much farcical 2 +120353 6434 as sour 2 +120354 6435 It 's Burns ' visuals , characters and his punchy dialogue , not his plot , that carry waydowntown . 3 +120355 6435 's Burns ' visuals , characters and his punchy dialogue , not his plot , that carry waydowntown . 3 +120356 6435 's Burns ' visuals , characters and his punchy dialogue , not his plot , that carry waydowntown 2 +120357 6435 Burns ' visuals , characters and his punchy dialogue , not his plot , that carry waydowntown 2 +120358 6435 Burns ' visuals , characters and his punchy dialogue , not his plot , 2 +120359 6435 Burns ' visuals , characters and his punchy dialogue , not his plot 2 +120360 6435 Burns ' visuals , characters and his punchy dialogue , 3 +120361 6435 Burns ' visuals , characters and his punchy dialogue 3 +120362 6435 Burns ' visuals , 2 +120363 6435 Burns ' visuals 2 +120364 6435 characters and his punchy dialogue 2 +120365 6435 his punchy dialogue 2 +120366 6435 punchy dialogue 3 +120367 6435 punchy 2 +120368 6435 not his plot 2 +120369 6435 his plot 2 +120370 6435 that carry waydowntown 2 +120371 6435 carry waydowntown 2 +120372 6436 Kapur 's contradictory feelings about his material result in a movie that works against itself . 1 +120373 6436 Kapur 's contradictory feelings about his material 2 +120374 6436 Kapur 's contradictory feelings 2 +120375 6436 Kapur 's 2 +120376 6436 contradictory feelings 2 +120377 6436 about his material 2 +120378 6436 his material 2 +120379 6436 result in a movie that works against itself . 1 +120380 6436 result in a movie that works against itself 0 +120381 6436 in a movie that works against itself 1 +120382 6436 a movie that works against itself 2 +120383 6436 that works against itself 1 +120384 6436 works against itself 1 +120385 6437 The problem , amazingly enough , is the screenplay . 1 +120386 6437 The problem , amazingly enough , 2 +120387 6437 The problem , amazingly enough 2 +120388 6437 The problem , 2 +120389 6437 amazingly enough 2 +120390 6437 is the screenplay . 2 +120391 6437 is the screenplay 2 +120392 6438 Tom Shadyac has learned a bit more craft since directing Adams , but he still lingers over every point until the slowest viewer grasps it . 2 +120393 6438 Tom Shadyac has learned a bit more craft since directing Adams , but he still lingers over every point until the slowest viewer grasps it 1 +120394 6438 Tom Shadyac has learned a bit more craft since directing Adams , but 2 +120395 6438 Tom Shadyac has learned a bit more craft since directing Adams , 3 +120396 6438 Tom Shadyac has learned a bit more craft since directing Adams 3 +120397 6438 Tom Shadyac 2 +120398 6438 has learned a bit more craft since directing Adams 2 +120399 6438 learned a bit more craft since directing Adams 2 +120400 6438 learned a bit more craft 2 +120401 6438 a bit more craft 2 +120402 6438 a bit more 2 +120403 6438 since directing Adams 2 +120404 6438 directing Adams 2 +120405 6438 he still lingers over every point until the slowest viewer grasps it 2 +120406 6438 still lingers over every point until the slowest viewer grasps it 1 +120407 6438 lingers over every point until the slowest viewer grasps it 1 +120408 6438 lingers over every point 2 +120409 6438 over every point 2 +120410 6438 every point 2 +120411 6438 until the slowest viewer grasps it 1 +120412 6438 the slowest viewer grasps it 1 +120413 6438 the slowest viewer 2 +120414 6438 slowest viewer 2 +120415 6438 slowest 1 +120416 6438 grasps it 2 +120417 6438 grasps 3 +120418 6439 Isabelle Huppert excels as the enigmatic Mika and Anna Mouglalis is a stunning new young talent in one of Chabrol 's most intense psychological mysteries . 4 +120419 6439 excels as the enigmatic Mika and Anna Mouglalis is a stunning new young talent in one of Chabrol 's most intense psychological mysteries . 4 +120420 6439 excels as the enigmatic Mika and Anna Mouglalis is a stunning new young talent in one of Chabrol 's most intense psychological mysteries 4 +120421 6439 as the enigmatic Mika and Anna Mouglalis is a stunning new young talent in one of Chabrol 's most intense psychological mysteries 4 +120422 6439 the enigmatic Mika and Anna Mouglalis is a stunning new young talent in one of Chabrol 's most intense psychological mysteries 3 +120423 6439 the enigmatic Mika and Anna Mouglalis 3 +120424 6439 enigmatic Mika and Anna Mouglalis 2 +120425 6439 Mika and Anna Mouglalis 2 +120426 6439 Mika 2 +120427 6439 and Anna Mouglalis 2 +120428 6439 Anna Mouglalis 2 +120429 6439 Anna 2 +120430 6439 Mouglalis 2 +120431 6439 is a stunning new young talent in one of Chabrol 's most intense psychological mysteries 4 +120432 6439 a stunning new young talent in one of Chabrol 's most intense psychological mysteries 4 +120433 6439 a stunning new young talent in one 4 +120434 6439 a stunning new young talent 3 +120435 6439 stunning new young talent 4 +120436 6439 new young talent 2 +120437 6439 of Chabrol 's most intense psychological mysteries 3 +120438 6439 Chabrol 's most intense psychological mysteries 3 +120439 6439 most intense psychological mysteries 4 +120440 6439 most intense 3 +120441 6439 psychological mysteries 2 +120442 6440 The production values are of the highest and the performances attractive without being memorable . 3 +120443 6440 The production values 2 +120444 6440 are of the highest and the performances attractive without being memorable . 3 +120445 6440 are of the highest and the performances attractive without being memorable 3 +120446 6440 are of the highest and the performances 4 +120447 6440 of the highest and the performances 3 +120448 6440 the highest and the performances 3 +120449 6440 the highest and 2 +120450 6440 the highest 2 +120451 6440 attractive without being memorable 2 +120452 6440 without being memorable 1 +120453 6440 being memorable 3 +120454 6441 Nair 's attention to detail creates an impeccable sense of place , while Thurman and Lewis give what can easily be considered career-best performances . 4 +120455 6441 Nair 's attention to detail 3 +120456 6441 Nair 's attention 2 +120457 6441 creates an impeccable sense of place , while Thurman and Lewis give what can easily be considered career-best performances . 3 +120458 6441 creates an impeccable sense of place , while Thurman and Lewis give what can easily be considered career-best performances 4 +120459 6441 creates an impeccable sense of place , 4 +120460 6441 creates an impeccable sense of place 3 +120461 6441 an impeccable sense of place 2 +120462 6441 an impeccable sense 3 +120463 6441 impeccable sense 3 +120464 6441 while Thurman and Lewis give what can easily be considered career-best performances 4 +120465 6441 Thurman and Lewis give what can easily be considered career-best performances 4 +120466 6441 Thurman and Lewis 2 +120467 6441 Thurman and 2 +120468 6441 Thurman 3 +120469 6441 give what can easily be considered career-best performances 3 +120470 6441 what can easily be considered career-best performances 4 +120471 6441 can easily be considered career-best performances 3 +120472 6441 be considered career-best performances 4 +120473 6441 considered career-best performances 4 +120474 6441 career-best performances 3 +120475 6441 career-best 4 +120476 6442 ... in no way original , or even all that memorable , but as downtown Saturday matinee brain candy , it does n't disappoint . 3 +120477 6442 in no way original , or even all that memorable , but as downtown Saturday matinee brain candy , it does n't disappoint . 2 +120478 6442 in no way original , or even all that memorable , but as downtown Saturday matinee brain candy 1 +120479 6442 no way original , or even all that memorable , but as downtown Saturday matinee brain candy 0 +120480 6442 no way original , or even 1 +120481 6442 no way original , or 2 +120482 6442 no way original , 1 +120483 6442 no way original 1 +120484 6442 way original 3 +120485 6442 all that memorable , but as downtown Saturday matinee brain candy 2 +120486 6442 all that memorable , but as downtown Saturday matinee brain 3 +120487 6442 that memorable , but as downtown Saturday matinee brain 2 +120488 6442 that memorable , but as downtown 3 +120489 6442 that memorable , but 2 +120490 6442 that memorable , 3 +120491 6442 that memorable 3 +120492 6442 as downtown 2 +120493 6442 Saturday matinee brain 2 +120494 6442 matinee brain 2 +120495 6442 , it does n't disappoint . 3 +120496 6442 it does n't disappoint . 3 +120497 6443 Completely awful Iranian drama ... as much fun as a grouchy ayatollah in a cold mosque . 0 +120498 6443 Completely awful Iranian drama ... as much fun as a grouchy ayatollah in a cold mosque 0 +120499 6443 Completely awful Iranian drama ... 0 +120500 6443 Completely awful Iranian drama 0 +120501 6443 Completely awful 0 +120502 6443 Iranian drama 3 +120503 6443 as much fun as a grouchy ayatollah in a cold mosque 2 +120504 6443 as a grouchy ayatollah in a cold mosque 2 +120505 6443 a grouchy ayatollah in a cold mosque 1 +120506 6443 a grouchy ayatollah 2 +120507 6443 grouchy ayatollah 2 +120508 6443 grouchy 2 +120509 6443 ayatollah 3 +120510 6443 in a cold mosque 2 +120511 6443 a cold mosque 2 +120512 6443 cold mosque 2 +120513 6443 mosque 2 +120514 6444 By turns fanciful , grisly and engagingly quixotic . 3 +120515 6444 turns fanciful , grisly and engagingly quixotic . 3 +120516 6444 turns fanciful , grisly and engagingly quixotic 4 +120517 6444 fanciful , grisly and engagingly quixotic 3 +120518 6444 fanciful , 3 +120519 6444 grisly and engagingly quixotic 3 +120520 6444 grisly and 2 +120521 6444 engagingly quixotic 2 +120522 6444 engagingly 3 +120523 6444 quixotic 2 +120524 6445 Neither revelatory nor truly edgy -- merely crassly flamboyant and comedically labored . 0 +120525 6445 revelatory nor truly edgy -- merely crassly flamboyant and comedically labored . 1 +120526 6445 nor truly edgy -- merely crassly flamboyant and comedically labored . 0 +120527 6445 nor truly edgy -- merely crassly flamboyant and comedically labored 1 +120528 6445 truly edgy -- merely crassly flamboyant and comedically labored 2 +120529 6445 truly edgy -- merely crassly flamboyant and 2 +120530 6445 truly edgy -- merely crassly flamboyant 2 +120531 6445 truly edgy -- 3 +120532 6445 truly edgy 3 +120533 6445 merely crassly flamboyant 1 +120534 6445 crassly flamboyant 1 +120535 6445 comedically labored 1 +120536 6445 comedically 2 +120537 6446 There 's not much to Fatale , outside of its stylish surprises ... but that 's OK . 2 +120538 6446 There 's not much to Fatale , outside of its stylish surprises ... but that 's OK 2 +120539 6446 There 's not much to Fatale , outside of its stylish surprises ... but 2 +120540 6446 There 's not much to Fatale , outside of its stylish surprises ... 2 +120541 6446 There 's not much to Fatale , outside of its stylish surprises 1 +120542 6446 's not much to Fatale , outside of its stylish surprises 1 +120543 6446 much to Fatale , outside of its stylish surprises 2 +120544 6446 to Fatale , outside of its stylish surprises 3 +120545 6446 Fatale , outside of its stylish surprises 3 +120546 6446 Fatale , 2 +120547 6446 Fatale 2 +120548 6446 outside of its stylish surprises 2 +120549 6446 of its stylish surprises 4 +120550 6446 its stylish surprises 3 +120551 6446 stylish surprises 3 +120552 6446 that 's OK 2 +120553 6446 's OK 2 +120554 6447 The film has a nearly terminal case of the cutes , and it 's neither as funny nor as charming as it thinks it is . 0 +120555 6447 The film has a nearly terminal case of the cutes , and it 's neither as funny nor as charming as it thinks it is 1 +120556 6447 The film has a nearly terminal case of the cutes , and 2 +120557 6447 The film has a nearly terminal case of the cutes , 2 +120558 6447 The film has a nearly terminal case of the cutes 2 +120559 6447 has a nearly terminal case of the cutes 3 +120560 6447 a nearly terminal case of the cutes 2 +120561 6447 a nearly terminal case 1 +120562 6447 nearly terminal case 1 +120563 6447 nearly terminal 1 +120564 6447 terminal 2 +120565 6447 of the cutes 2 +120566 6447 the cutes 2 +120567 6447 cutes 3 +120568 6447 it 's neither as funny nor as charming as it thinks it is 2 +120569 6447 's neither as funny nor as charming as it thinks it is 1 +120570 6447 neither as funny nor as charming as it thinks it is 1 +120571 6447 as funny nor as charming as it thinks it is 1 +120572 6447 as funny nor 1 +120573 6447 as charming as it thinks it is 2 +120574 6447 as charming 2 +120575 6448 The gentle comic treatment of adolescent sturm und drang should please fans of Chris Fuhrman 's posthumously published cult novel . 3 +120576 6448 The gentle comic treatment of adolescent sturm und drang 3 +120577 6448 The gentle comic treatment 3 +120578 6448 gentle comic treatment 2 +120579 6448 comic treatment 2 +120580 6448 of adolescent sturm und drang 1 +120581 6448 adolescent sturm und drang 2 +120582 6448 sturm und drang 2 +120583 6448 und drang 2 +120584 6448 drang 2 +120585 6448 should please fans of Chris Fuhrman 's posthumously published cult novel . 3 +120586 6448 should please fans of Chris Fuhrman 's posthumously published cult novel 3 +120587 6448 please fans of Chris Fuhrman 's posthumously published cult novel 3 +120588 6448 fans of Chris Fuhrman 's posthumously published cult novel 2 +120589 6448 of Chris Fuhrman 's posthumously published cult novel 2 +120590 6448 Chris Fuhrman 's posthumously published cult novel 2 +120591 6448 Chris Fuhrman 's 2 +120592 6448 Fuhrman 's 2 +120593 6448 Fuhrman 2 +120594 6448 posthumously published cult novel 2 +120595 6448 posthumously published 2 +120596 6448 posthumously 2 +120597 6448 published 2 +120598 6448 cult novel 2 +120599 6449 Holofcener rejects patent solutions to dramatize life 's messiness from inside out , in all its strange quirks . 4 +120600 6449 rejects patent solutions to dramatize life 's messiness from inside out , in all its strange quirks . 2 +120601 6449 rejects patent solutions to dramatize life 's messiness from inside out , in all its strange quirks 3 +120602 6449 rejects 1 +120603 6449 patent solutions to dramatize life 's messiness from inside out , in all its strange quirks 3 +120604 6449 patent solutions 2 +120605 6449 patent 2 +120606 6449 to dramatize life 's messiness from inside out , in all its strange quirks 2 +120607 6449 dramatize life 's messiness from inside out , in all its strange quirks 3 +120608 6449 dramatize life 's messiness from inside out , 2 +120609 6449 dramatize life 's messiness from inside out 2 +120610 6449 dramatize life 's messiness 1 +120611 6449 dramatize 2 +120612 6449 life 's messiness 2 +120613 6449 messiness 1 +120614 6449 from inside out 2 +120615 6449 inside out 2 +120616 6449 in all its strange quirks 3 +120617 6449 all its strange quirks 3 +120618 6449 its strange quirks 2 +120619 6449 strange quirks 2 +120620 6450 ... Rogers 's mouth never stops shut about the war between the sexes and how to win the battle . 3 +120621 6450 Rogers 's mouth never stops shut about the war between the sexes and how to win the battle . 2 +120622 6450 Rogers 's mouth never stops shut about the war between the sexes and how to win the battle 2 +120623 6450 Rogers 's mouth 2 +120624 6450 Rogers 's 2 +120625 6450 Rogers 2 +120626 6450 never stops shut about the war between the sexes and how to win the battle 2 +120627 6450 stops shut about the war between the sexes and how to win the battle 2 +120628 6450 shut about the war between the sexes and how to win the battle 2 +120629 6450 shut about the war between the sexes and 2 +120630 6450 shut about the war between the sexes 2 +120631 6450 shut 2 +120632 6450 about the war between the sexes 2 +120633 6450 the war between the sexes 2 +120634 6450 between the sexes 2 +120635 6450 the sexes 2 +120636 6450 sexes 2 +120637 6450 how to win the battle 3 +120638 6450 to win the battle 2 +120639 6450 win the battle 2 +120640 6451 It grabs you in the dark and shakes you vigorously for its duration . 3 +120641 6451 grabs you in the dark and shakes you vigorously for its duration . 3 +120642 6451 grabs you in the dark and shakes you vigorously for its duration 3 +120643 6451 grabs you in the dark and 2 +120644 6451 grabs you in the dark 2 +120645 6451 grabs you 3 +120646 6451 grabs 2 +120647 6451 shakes you vigorously for its duration 4 +120648 6451 shakes you vigorously 3 +120649 6451 shakes you 2 +120650 6451 shakes 2 +120651 6451 vigorously 2 +120652 6451 for its duration 2 +120653 6451 its duration 2 +120654 6452 This cloying , voices-from-the-other-side story is hell . 1 +120655 6452 This cloying , voices-from-the-other-side story 1 +120656 6452 cloying , voices-from-the-other-side story 2 +120657 6452 , voices-from-the-other-side story 2 +120658 6452 voices-from-the-other-side story 2 +120659 6452 voices-from-the-other-side 2 +120660 6452 is hell . 1 +120661 6452 is hell 1 +120662 6453 And , there 's no way you wo n't be talking about the film once you exit the theater . 3 +120663 6453 , there 's no way you wo n't be talking about the film once you exit the theater . 3 +120664 6453 there 's no way you wo n't be talking about the film once you exit the theater . 4 +120665 6453 's no way you wo n't be talking about the film once you exit the theater . 4 +120666 6453 's no way you wo n't be talking about the film once you exit the theater 3 +120667 6453 no way you wo n't be talking about the film once you exit the theater 2 +120668 6453 no way 1 +120669 6453 you wo n't be talking about the film once you exit the theater 0 +120670 6453 wo n't be talking about the film once you exit the theater 0 +120671 6453 be talking about the film once you exit the theater 3 +120672 6453 talking about the film once you exit the theater 2 +120673 6453 talking about the film 2 +120674 6453 once you exit the theater 2 +120675 6453 you exit the theater 1 +120676 6453 exit the theater 1 +120677 6454 Children and adults enamored of all things Pokemon wo n't be disappointed . 3 +120678 6454 Children and adults enamored of all things Pokemon 3 +120679 6454 enamored of all things Pokemon 2 +120680 6454 enamored 3 +120681 6454 of all things Pokemon 2 +120682 6454 all things Pokemon 2 +120683 6454 things Pokemon 2 +120684 6454 wo n't be disappointed . 4 +120685 6455 The film 's hero is a bore and his innocence soon becomes a questionable kind of inexcusable dumb innocence . 1 +120686 6455 The film 's hero is a bore and his innocence soon becomes a questionable kind of inexcusable dumb innocence 1 +120687 6455 The film 's hero is a bore and 0 +120688 6455 The film 's hero is a bore 1 +120689 6455 The film 's hero 2 +120690 6455 is a bore 1 +120691 6455 his innocence soon becomes a questionable kind of inexcusable dumb innocence 1 +120692 6455 his innocence 2 +120693 6455 soon becomes a questionable kind of inexcusable dumb innocence 1 +120694 6455 becomes a questionable kind of inexcusable dumb innocence 1 +120695 6455 a questionable kind of inexcusable dumb innocence 1 +120696 6455 a questionable kind 2 +120697 6455 questionable kind 1 +120698 6455 of inexcusable dumb innocence 1 +120699 6455 inexcusable dumb innocence 2 +120700 6455 inexcusable dumb 0 +120701 6455 inexcusable 0 +120702 6456 Bogdanich is unashamedly pro-Serbian and makes little attempt to give voice to the other side . 1 +120703 6456 Bogdanich 2 +120704 6456 is unashamedly pro-Serbian and makes little attempt to give voice to the other side . 1 +120705 6456 is unashamedly pro-Serbian and makes little attempt to give voice to the other side 2 +120706 6456 is unashamedly pro-Serbian and 2 +120707 6456 is unashamedly pro-Serbian 1 +120708 6456 unashamedly pro-Serbian 2 +120709 6456 pro-Serbian 2 +120710 6456 makes little attempt to give voice to the other side 1 +120711 6456 makes little attempt 1 +120712 6456 little attempt 1 +120713 6456 to give voice to the other side 2 +120714 6456 give voice to the other side 2 +120715 6456 give voice 2 +120716 6456 to the other side 2 +120717 6456 the other side 2 +120718 6457 An extraordinary dramatic experience . 4 +120719 6457 extraordinary dramatic experience . 4 +120720 6457 dramatic experience . 3 +120721 6458 It 's a great performance and a reminder of Dickens ' grandeur . 4 +120722 6458 's a great performance and a reminder of Dickens ' grandeur . 4 +120723 6458 's a great performance and a reminder of Dickens ' grandeur 4 +120724 6458 a great performance and a reminder of Dickens ' grandeur 4 +120725 6458 a great performance and 4 +120726 6458 a great performance 3 +120727 6458 great performance 4 +120728 6458 a reminder of Dickens ' grandeur 2 +120729 6458 of Dickens ' grandeur 2 +120730 6458 Dickens ' grandeur 2 +120731 6459 It looks good , but it is essentially empty . 1 +120732 6459 It looks good , but it is essentially empty 1 +120733 6459 It looks good , but 2 +120734 6459 It looks good , 3 +120735 6459 It looks good 3 +120736 6459 it is essentially empty 0 +120737 6459 is essentially empty 2 +120738 6459 essentially empty 2 +120739 6460 Slap her - she 's not funny ! 1 +120740 6460 Slap her - she 's not funny 0 +120741 6460 Slap her - 2 +120742 6460 she 's not funny 1 +120743 6460 's not funny 1 +120744 6461 Last Dance , whatever its flaws , fulfills one facet of its mission in making me want to find out whether , in this case , that 's true . 2 +120745 6461 Last Dance , whatever its flaws , 2 +120746 6461 Last Dance , whatever its flaws 2 +120747 6461 Last Dance , 2 +120748 6461 Last Dance 2 +120749 6461 whatever its flaws 2 +120750 6461 fulfills one facet of its mission in making me want to find out whether , in this case , that 's true . 2 +120751 6461 fulfills one facet of its mission in making me want to find out whether , in this case , that 's true 2 +120752 6461 fulfills one facet of its mission 3 +120753 6461 one facet of its mission 2 +120754 6461 one facet 2 +120755 6461 of its mission 2 +120756 6461 its mission 2 +120757 6461 in making me want to find out whether , in this case , that 's true 2 +120758 6461 making me want to find out whether , in this case , that 's true 2 +120759 6461 me want to find out whether , in this case , that 's true 2 +120760 6461 want to find out whether , in this case , that 's true 2 +120761 6461 to find out whether , in this case , that 's true 2 +120762 6461 find out whether , in this case , that 's true 2 +120763 6461 find out 2 +120764 6461 whether , in this case , that 's true 2 +120765 6461 , in this case , that 's true 2 +120766 6461 in this case , that 's true 2 +120767 6461 , that 's true 2 +120768 6461 that 's true 3 +120769 6461 's true 2 +120770 6462 The story plays out slowly , but the characters are intriguing and realistic . 3 +120771 6462 The story plays out slowly , but the characters are intriguing and realistic 3 +120772 6462 The story plays out slowly , but 2 +120773 6462 The story plays out slowly , 1 +120774 6462 The story plays out slowly 1 +120775 6462 plays out slowly 2 +120776 6462 the characters are intriguing and realistic 3 +120777 6462 are intriguing and realistic 3 +120778 6462 intriguing and realistic 4 +120779 6463 ... the film 's considered approach to its subject matter is too calm and thoughtful for agitprop , and the thinness of its characterizations makes it a failure as straight drama . ' 0 +120780 6463 the film 's considered approach to its subject matter is too calm and thoughtful for agitprop , and the thinness of its characterizations makes it a failure as straight drama . ' 0 +120781 6463 the film 's considered approach to 2 +120782 6463 the film 's considered approach 3 +120783 6463 considered approach 2 +120784 6463 its subject matter is too calm and thoughtful for agitprop , and the thinness of its characterizations makes it a failure as straight drama . ' 1 +120785 6463 is too calm and thoughtful for agitprop , and the thinness of its characterizations makes it a failure as straight drama . ' 1 +120786 6463 is too calm and thoughtful for agitprop , and the thinness of its characterizations makes it a failure as straight drama . 0 +120787 6463 is too calm and thoughtful for agitprop , and the thinness of its characterizations makes it a failure as straight drama 0 +120788 6463 is too calm and thoughtful for agitprop , and the thinness of its characterizations 1 +120789 6463 is too calm and thoughtful for agitprop , and 2 +120790 6463 is too calm and thoughtful for agitprop , 1 +120791 6463 is too calm and thoughtful for agitprop 2 +120792 6463 too calm and thoughtful for agitprop 2 +120793 6463 too calm and thoughtful 2 +120794 6463 calm and thoughtful 3 +120795 6463 calm and 2 +120796 6463 for agitprop 2 +120797 6463 agitprop 2 +120798 6463 the thinness of its characterizations 1 +120799 6463 the thinness 2 +120800 6463 of its characterizations 2 +120801 6463 makes it a failure as straight drama 0 +120802 6463 it a failure as straight drama 0 +120803 6463 a failure as straight drama 0 +120804 6464 The laughs are as rare as snake foo yung . 1 +120805 6464 are as rare as snake foo yung . 2 +120806 6464 are as rare as snake foo yung 2 +120807 6464 as rare as snake foo yung 2 +120808 6464 rare as snake foo yung 2 +120809 6464 as snake foo yung 2 +120810 6464 snake foo yung 2 +120811 6464 foo yung 2 +120812 6464 foo 2 +120813 6464 yung 2 +120814 6465 This is n't a movie ; it 's a symptom . 1 +120815 6465 This is n't a movie ; it 's a symptom 0 +120816 6465 This is n't a movie ; 1 +120817 6465 This is n't a movie 1 +120818 6465 is n't a movie 2 +120819 6465 it 's a symptom 2 +120820 6465 's a symptom 2 +120821 6465 a symptom 2 +120822 6465 symptom 2 +120823 6466 But it will just as likely make you weep , and it will do so in a way that does n't make you feel like a sucker . 3 +120824 6466 it will just as likely make you weep , and it will do so in a way that does n't make you feel like a sucker . 3 +120825 6466 it will just as likely make you weep , and it will do so in a way that does n't make you feel like a sucker 3 +120826 6466 it will just as likely make you weep , and 2 +120827 6466 it will just as likely make you weep , 3 +120828 6466 it will just as likely make you weep 2 +120829 6466 will just as likely make you weep 3 +120830 6466 will just as likely 2 +120831 6466 just as likely 2 +120832 6466 it will do so in a way that does n't make you feel like a sucker 3 +120833 6466 will do so in a way that does n't make you feel like a sucker 3 +120834 6466 do so in a way that does n't make you feel like a sucker 2 +120835 6466 in a way that does n't make you feel like a sucker 3 +120836 6466 a way that does n't make you feel like a sucker 2 +120837 6466 that does n't make you feel like a sucker 2 +120838 6466 does n't make you feel like a sucker 2 +120839 6466 make you feel like a sucker 1 +120840 6466 you feel like a sucker 1 +120841 6466 feel like a sucker 2 +120842 6466 like a sucker 1 +120843 6467 Though the opera itself takes place mostly indoors , Jacquot seems unsure of how to evoke any sort of naturalism on the set . 2 +120844 6467 Though the opera itself takes place mostly indoors 2 +120845 6467 the opera itself takes place mostly indoors 2 +120846 6467 the opera itself takes 2 +120847 6467 itself takes 2 +120848 6467 place mostly indoors 2 +120849 6467 place mostly 2 +120850 6467 , Jacquot seems unsure of how to evoke any sort of naturalism on the set . 1 +120851 6467 Jacquot seems unsure of how to evoke any sort of naturalism on the set . 1 +120852 6467 seems unsure of how to evoke any sort of naturalism on the set . 1 +120853 6467 seems unsure of how to evoke any sort of naturalism on the set 1 +120854 6467 unsure of how to evoke any sort of naturalism on the set 1 +120855 6467 unsure 2 +120856 6467 of how to evoke any sort of naturalism on the set 2 +120857 6467 how to evoke any sort of naturalism on the set 2 +120858 6467 to evoke any sort of naturalism on the set 2 +120859 6467 evoke any sort of naturalism on the set 3 +120860 6467 evoke any sort of naturalism 2 +120861 6467 any sort of naturalism 2 +120862 6467 any sort 2 +120863 6467 of naturalism 2 +120864 6468 One of those films that seems tailor made to air on pay cable to offer some modest amusements when one has nothing else to watch . 1 +120865 6468 One of those films that seems tailor 2 +120866 6468 of those films that seems tailor 2 +120867 6468 those films that seems tailor 2 +120868 6468 that seems tailor 3 +120869 6468 seems tailor 2 +120870 6468 made to air on pay cable to offer some modest amusements when one has nothing else to watch . 1 +120871 6468 made to air on pay cable to offer some modest amusements when one has nothing else to watch 2 +120872 6468 to air on pay cable to offer some modest amusements when one has nothing else to watch 2 +120873 6468 air on pay cable to offer some modest amusements when one has nothing else to watch 2 +120874 6468 air on pay cable 2 +120875 6468 on pay cable 2 +120876 6468 pay cable 2 +120877 6468 to offer some modest amusements when one has nothing else to watch 2 +120878 6468 offer some modest amusements when one has nothing else to watch 3 +120879 6468 offer some modest amusements 3 +120880 6468 some modest amusements 3 +120881 6468 modest amusements 3 +120882 6468 amusements 3 +120883 6468 when one has nothing else to watch 1 +120884 6468 one has nothing else to watch 1 +120885 6468 has nothing else to watch 1 +120886 6468 nothing else to watch 3 +120887 6469 Young Hanks and Fisk , who vaguely resemble their celebrity parents , bring fresh good looks and an ease in front of the camera to the work . 4 +120888 6469 Young Hanks and Fisk , who vaguely resemble their celebrity parents , 2 +120889 6469 Young Hanks and Fisk , who vaguely resemble their celebrity parents 2 +120890 6469 Young Hanks and Fisk , 2 +120891 6469 Young Hanks and Fisk 2 +120892 6469 Hanks and Fisk 2 +120893 6469 Hanks and 2 +120894 6469 Fisk 2 +120895 6469 who vaguely resemble their celebrity parents 2 +120896 6469 vaguely resemble their celebrity parents 2 +120897 6469 resemble their celebrity parents 3 +120898 6469 their celebrity parents 2 +120899 6469 celebrity parents 2 +120900 6469 bring fresh good looks and an ease in front of the camera to the work . 3 +120901 6469 bring fresh good looks and an ease in front of the camera to the work 4 +120902 6469 bring fresh good looks and an ease in front of the camera 3 +120903 6469 fresh good looks and an ease in front of the camera 3 +120904 6469 fresh good looks and 3 +120905 6469 fresh good looks 2 +120906 6469 an ease in front of the camera 3 +120907 6469 an ease 3 +120908 6469 to the work 2 +120909 6470 Eight Legged Freaks ? 1 +120910 6470 Legged Freaks ? 2 +120911 6471 Fierce , glaring and unforgettable . 3 +120912 6471 , glaring and unforgettable . 3 +120913 6471 glaring and unforgettable . 4 +120914 6471 glaring and unforgettable 3 +120915 6471 glaring and 2 +120916 6472 Though Lan Yu lacks a sense of dramatic urgency , the film makes up for it with a pleasing verisimilitude . 3 +120917 6472 Though Lan Yu lacks a sense of dramatic urgency 1 +120918 6472 Lan Yu lacks a sense of dramatic urgency 1 +120919 6472 lacks a sense of dramatic urgency 1 +120920 6472 a sense of dramatic urgency 3 +120921 6472 of dramatic urgency 2 +120922 6472 dramatic urgency 3 +120923 6472 , the film makes up for it with a pleasing verisimilitude . 3 +120924 6472 the film makes up for it with a pleasing verisimilitude . 3 +120925 6472 makes up for it with a pleasing verisimilitude . 3 +120926 6472 makes up for it with a pleasing verisimilitude 3 +120927 6472 makes up for it 2 +120928 6472 with a pleasing verisimilitude 3 +120929 6472 a pleasing verisimilitude 4 +120930 6472 pleasing verisimilitude 3 +120931 6472 verisimilitude 2 +120932 6473 Wallace directs with such patronising reverence , it turns the stomach . 2 +120933 6473 Wallace directs with such patronising reverence 1 +120934 6473 directs with such patronising reverence 3 +120935 6473 with such patronising reverence 1 +120936 6473 such patronising reverence 1 +120937 6473 patronising reverence 1 +120938 6473 patronising 1 +120939 6473 , it turns the stomach . 2 +120940 6473 it turns the stomach . 1 +120941 6473 turns the stomach . 2 +120942 6473 turns the stomach 1 +120943 6474 No , I hate it . 0 +120944 6474 , I hate it . 0 +120945 6474 I hate it . 0 +120946 6474 hate it . 1 +120947 6475 It 's drab . 1 +120948 6475 's drab . 1 +120949 6475 's drab 1 +120950 6476 The sort of picture in which , whenever one of the characters has some serious soul searching to do , they go to a picture-perfect beach during sunset . 1 +120951 6476 The sort of picture in which 2 +120952 6476 of picture in which 2 +120953 6476 picture in which 2 +120954 6476 , whenever one of the characters has some serious soul searching to do , they go to a picture-perfect beach during sunset . 2 +120955 6476 whenever one of the characters has some serious soul searching to do , they go to a picture-perfect beach during sunset . 2 +120956 6476 whenever one of the characters has some serious soul searching to do 2 +120957 6476 one of the characters has some serious soul searching to do 2 +120958 6476 one of the characters 2 +120959 6476 has some serious soul searching to do 2 +120960 6476 some serious soul searching to do 2 +120961 6476 some serious soul 3 +120962 6476 serious soul 3 +120963 6476 searching to do 2 +120964 6476 , they go to a picture-perfect beach during sunset . 3 +120965 6476 they go to a picture-perfect beach during sunset . 3 +120966 6476 go to a picture-perfect beach during sunset . 2 +120967 6476 go to a picture-perfect beach during sunset 4 +120968 6476 go to a picture-perfect beach 3 +120969 6476 to a picture-perfect beach 4 +120970 6476 a picture-perfect beach 4 +120971 6476 picture-perfect beach 3 +120972 6476 during sunset 3 +120973 6476 sunset 2 +120974 6477 Psychologically savvy . 3 +120975 6477 Psychologically savvy 4 +120976 6478 Another Best of the Year selection . 4 +120977 6478 Another Best of the Year selection 4 +120978 6478 Another Best 3 +120979 6478 of the Year selection 2 +120980 6478 the Year selection 3 +120981 6478 Year selection 2 +120982 6479 As played by Ryan Gosling , Danny is a frighteningly fascinating contradiction . 3 +120983 6479 As played by Ryan Gosling 2 +120984 6479 played by Ryan Gosling 2 +120985 6479 by Ryan Gosling 3 +120986 6479 , Danny is a frighteningly fascinating contradiction . 3 +120987 6479 Danny is a frighteningly fascinating contradiction . 2 +120988 6479 is a frighteningly fascinating contradiction . 3 +120989 6479 is a frighteningly fascinating contradiction 3 +120990 6479 a frighteningly fascinating contradiction 3 +120991 6479 frighteningly fascinating contradiction 3 +120992 6479 frighteningly fascinating 4 +120993 6480 ... better described as a ghost story gone badly awry . 1 +120994 6480 better described as a ghost story gone badly awry . 1 +120995 6480 described as a ghost story gone badly awry . 1 +120996 6480 described as a ghost story gone badly awry 1 +120997 6480 as a ghost story gone badly awry 1 +120998 6480 a ghost story gone badly awry 0 +120999 6480 a ghost story 2 +121000 6480 gone badly awry 1 +121001 6480 badly awry 1 +121002 6480 awry 1 +121003 6481 An Asian neo-realist treasure . 4 +121004 6481 Asian neo-realist treasure . 3 +121005 6481 neo-realist treasure . 2 +121006 6481 neo-realist 2 +121007 6481 treasure . 3 +121008 6482 An achingly enthralling premise , the film is hindered by uneven dialogue and plot lapses . 1 +121009 6482 An achingly enthralling premise , the film 3 +121010 6482 An achingly enthralling premise , 3 +121011 6482 An achingly enthralling premise 3 +121012 6482 achingly enthralling premise 3 +121013 6482 achingly enthralling 2 +121014 6482 is hindered by uneven dialogue and plot lapses . 1 +121015 6482 is hindered by uneven dialogue and plot lapses 0 +121016 6482 hindered by uneven dialogue and plot lapses 1 +121017 6482 by uneven dialogue and plot lapses 0 +121018 6482 uneven dialogue and plot lapses 1 +121019 6482 dialogue and plot lapses 1 +121020 6482 and plot lapses 2 +121021 6482 plot lapses 1 +121022 6483 Disappointingly , the characters are too strange and dysfunctional , Tom included , to ever get under the skin , but this is compensated in large part by the off-the-wall dialogue , visual playfulness and the outlandishness of the idea itself . 2 +121023 6483 Disappointingly , the characters are too strange and dysfunctional , Tom included , to ever get under the skin , but this is compensated in large part by the off-the-wall dialogue , visual playfulness and the outlandishness of the idea itself 1 +121024 6483 Disappointingly , the characters are too strange and dysfunctional , Tom included , to ever get under the skin , but 2 +121025 6483 Disappointingly , the characters are too strange and dysfunctional , Tom included , to ever get under the skin , 1 +121026 6483 Disappointingly , the characters are too strange and dysfunctional , Tom included , to ever get under the skin 1 +121027 6483 , the characters are too strange and dysfunctional , Tom included , to ever get under the skin 1 +121028 6483 the characters are too strange and dysfunctional , Tom included , to ever get under the skin 1 +121029 6483 are too strange and dysfunctional , Tom included , to ever get under the skin 1 +121030 6483 are too strange and dysfunctional , Tom included , 2 +121031 6483 are too strange and dysfunctional 1 +121032 6483 too strange and dysfunctional 1 +121033 6483 strange and dysfunctional 2 +121034 6483 , Tom included , 2 +121035 6483 Tom included , 2 +121036 6483 Tom included 2 +121037 6483 to ever get under the skin 1 +121038 6483 ever get under the skin 2 +121039 6483 get under the skin 3 +121040 6483 under the skin 1 +121041 6483 this is compensated in large part by the off-the-wall dialogue , visual playfulness and the outlandishness of the idea itself 3 +121042 6483 is compensated in large part by the off-the-wall dialogue , visual playfulness and the outlandishness of the idea itself 3 +121043 6483 compensated in large part by the off-the-wall dialogue , visual playfulness and the outlandishness of the idea itself 3 +121044 6483 compensated in large part 2 +121045 6483 compensated 2 +121046 6483 in large part 2 +121047 6483 large part 2 +121048 6483 by the off-the-wall dialogue , visual playfulness and the outlandishness of the idea itself 4 +121049 6483 the off-the-wall dialogue , visual playfulness and the outlandishness of the idea itself 3 +121050 6483 the off-the-wall dialogue , visual playfulness and 3 +121051 6483 the off-the-wall dialogue , visual playfulness 3 +121052 6483 the off-the-wall dialogue , 2 +121053 6483 the off-the-wall dialogue 2 +121054 6483 off-the-wall dialogue 2 +121055 6483 off-the-wall 2 +121056 6483 visual playfulness 3 +121057 6483 playfulness 2 +121058 6483 the outlandishness of the idea itself 3 +121059 6483 the outlandishness 2 +121060 6483 outlandishness 2 +121061 6483 of the idea itself 2 +121062 6483 the idea itself 2 +121063 6484 See Scratch for the history , see Scratch for the music , see Scratch for a lesson in scratching , but , most of all , see it for the passion . 4 +121064 6484 See Scratch for the history 2 +121065 6484 See Scratch 2 +121066 6484 for the history 2 +121067 6484 , see Scratch for the music , see Scratch for a lesson in scratching , but , most of all , see it for the passion . 4 +121068 6484 see Scratch for the music , see Scratch for a lesson in scratching , but , most of all , see it for the passion . 4 +121069 6484 see Scratch for the music 2 +121070 6484 Scratch for the music 2 +121071 6484 for the music 2 +121072 6484 , see Scratch for a lesson in scratching , but , most of all , see it for the passion . 2 +121073 6484 see Scratch for a lesson in scratching , but , most of all , see it for the passion . 3 +121074 6484 see Scratch for a lesson in scratching , but , most of all , see it for the passion 2 +121075 6484 see Scratch for a lesson in scratching , but , most of all , 2 +121076 6484 see Scratch for a lesson in scratching , but , most of all 2 +121077 6484 see Scratch for a lesson in scratching , but , 2 +121078 6484 see Scratch for a lesson in scratching , but 2 +121079 6484 see Scratch for a lesson in scratching , 2 +121080 6484 see Scratch for a lesson in scratching 2 +121081 6484 Scratch for a lesson in scratching 1 +121082 6484 for a lesson in scratching 2 +121083 6484 a lesson in scratching 2 +121084 6484 in scratching 2 +121085 6484 most of all 2 +121086 6484 see it for the passion 3 +121087 6484 for the passion 2 +121088 6484 the passion 2 +121089 6485 A Rumor of Angels does n't just slip -- it avalanches into forced fuzziness . 0 +121090 6485 A Rumor of Angels does n't just slip -- it avalanches into forced fuzziness 0 +121091 6485 A Rumor of Angels does n't just slip -- 1 +121092 6485 A Rumor of Angels does n't just slip 2 +121093 6485 does n't just slip 2 +121094 6485 it avalanches into forced fuzziness 2 +121095 6485 avalanches into forced fuzziness 2 +121096 6485 avalanches 2 +121097 6485 into forced fuzziness 3 +121098 6485 forced fuzziness 2 +121099 6485 fuzziness 1 +121100 6486 Not only is it hokey , manipulative and as bland as Wonder Bread dipped in milk , but it also does the absolute last thing we need Hollywood doing to us : It preaches . 1 +121101 6486 Not only is it hokey 1 +121102 6486 is it hokey 1 +121103 6486 , manipulative and as bland as Wonder Bread dipped in milk , but it also does the absolute last thing we need Hollywood doing to us : It preaches . 1 +121104 6486 manipulative and as bland as Wonder Bread dipped in milk , but it also does the absolute last thing we need Hollywood doing to us : It preaches . 0 +121105 6486 manipulative and as bland as Wonder Bread dipped in milk 1 +121106 6486 manipulative and as bland 1 +121107 6486 and as bland 1 +121108 6486 as bland 2 +121109 6486 as Wonder Bread dipped in milk 2 +121110 6486 Wonder Bread dipped in milk 2 +121111 6486 Wonder Bread 2 +121112 6486 dipped in milk 2 +121113 6486 dipped 2 +121114 6486 in milk 2 +121115 6486 , but it also does the absolute last thing we need Hollywood doing to us : It preaches . 0 +121116 6486 but it also does the absolute last thing we need Hollywood doing to us : It preaches . 2 +121117 6486 but it also does the absolute last thing we need Hollywood doing to us : It preaches 1 +121118 6486 but it also does the absolute last thing we need Hollywood doing to us : 0 +121119 6486 but it also does the absolute last thing we need Hollywood doing to us 1 +121120 6486 it also does the absolute last thing we need Hollywood doing to us 1 +121121 6486 also does the absolute last thing we need Hollywood doing to us 1 +121122 6486 does the absolute last thing we need Hollywood doing to us 1 +121123 6486 the absolute last thing we need Hollywood doing to us 1 +121124 6486 the absolute last thing 2 +121125 6486 absolute last thing 2 +121126 6486 we need Hollywood doing to us 2 +121127 6486 need Hollywood doing to us 2 +121128 6486 Hollywood doing to us 2 +121129 6486 doing to us 2 +121130 6486 It preaches 1 +121131 6486 preaches 2 +121132 6487 However , it 's pleasant enough and its ecological , pro-wildlife sentiments are certainly welcome . 3 +121133 6487 , it 's pleasant enough and its ecological , pro-wildlife sentiments are certainly welcome . 3 +121134 6487 it 's pleasant enough and its ecological , pro-wildlife sentiments are certainly welcome . 3 +121135 6487 it 's pleasant enough and its ecological , pro-wildlife sentiments are certainly welcome 3 +121136 6487 it 's pleasant enough and 3 +121137 6487 it 's pleasant enough 3 +121138 6487 's pleasant enough 3 +121139 6487 its ecological , pro-wildlife sentiments are certainly welcome 3 +121140 6487 its ecological , pro-wildlife sentiments 2 +121141 6487 ecological , pro-wildlife sentiments 2 +121142 6487 ecological 3 +121143 6487 , pro-wildlife sentiments 2 +121144 6487 pro-wildlife sentiments 2 +121145 6487 pro-wildlife 2 +121146 6487 are certainly welcome 3 +121147 6487 are certainly 3 +121148 6488 Dogtown & Z-Boys evokes the blithe rebel fantasy with the kind of insouciance embedded in the sexy demise of James Dean . 3 +121149 6488 Dogtown & Z-Boys 2 +121150 6488 Dogtown & 2 +121151 6488 evokes the blithe rebel fantasy with the kind of insouciance embedded in the sexy demise of James Dean . 3 +121152 6488 evokes the blithe rebel fantasy with the kind of insouciance embedded in the sexy demise of James Dean 3 +121153 6488 evokes the blithe rebel fantasy 2 +121154 6488 the blithe rebel fantasy 2 +121155 6488 blithe rebel fantasy 3 +121156 6488 rebel fantasy 2 +121157 6488 with the kind of insouciance embedded in the sexy demise of James Dean 2 +121158 6488 the kind of insouciance embedded in the sexy demise of James Dean 3 +121159 6488 of insouciance embedded in the sexy demise of James Dean 2 +121160 6488 insouciance embedded in the sexy demise of James Dean 2 +121161 6488 insouciance 2 +121162 6488 embedded in the sexy demise of James Dean 3 +121163 6488 embedded 2 +121164 6488 in the sexy demise of James Dean 2 +121165 6488 the sexy demise of James Dean 2 +121166 6488 the sexy demise 2 +121167 6488 sexy demise 2 +121168 6488 demise 2 +121169 6488 of James Dean 2 +121170 6488 James Dean 2 +121171 6489 Tony Gayton 's script does n't give us anything we have n't seen before , but director D.J. Caruso 's grimy visual veneer and Kilmer 's absorbing performance increase the gravitational pull considerably . 2 +121172 6489 Tony Gayton 's script does n't give us anything we have n't seen before , but director D.J. Caruso 's grimy visual veneer and Kilmer 's absorbing performance increase the gravitational pull considerably 3 +121173 6489 Tony Gayton 's script does n't give us anything we have n't seen before , but 1 +121174 6489 Tony Gayton 's script does n't give us anything we have n't seen before , 1 +121175 6489 Tony Gayton 's script does n't give us anything we have n't seen before 0 +121176 6489 Tony Gayton 's script 2 +121177 6489 Tony Gayton 's 2 +121178 6489 Tony 2 +121179 6489 does n't give us anything we have n't seen before 1 +121180 6489 give us anything we have n't seen before 1 +121181 6489 anything we have n't seen before 3 +121182 6489 we have n't seen before 2 +121183 6489 have n't seen before 2 +121184 6489 director D.J. Caruso 's grimy visual veneer and Kilmer 's absorbing performance increase the gravitational pull considerably 3 +121185 6489 director D.J. Caruso 's grimy visual veneer and Kilmer 's absorbing performance 3 +121186 6489 director D.J. Caruso 's grimy visual veneer and 2 +121187 6489 director D.J. Caruso 's grimy visual veneer 2 +121188 6489 director D.J. Caruso 's 2 +121189 6489 D.J. Caruso 's 2 +121190 6489 D.J. 2 +121191 6489 grimy visual veneer 2 +121192 6489 grimy 2 +121193 6489 visual veneer 3 +121194 6489 Kilmer 's absorbing performance 3 +121195 6489 Kilmer 's 2 +121196 6489 Kilmer 2 +121197 6489 absorbing performance 3 +121198 6489 increase the gravitational pull considerably 2 +121199 6489 increase the gravitational pull 3 +121200 6489 the gravitational pull 3 +121201 6489 gravitational pull 2 +121202 6489 gravitational 3 +121203 6490 The story has its redundancies , and the young actors , not very experienced , are sometimes inexpressive . 1 +121204 6490 The story has its redundancies , and the young actors , not very experienced , are sometimes inexpressive 1 +121205 6490 The story has its redundancies , and 1 +121206 6490 The story has its redundancies , 1 +121207 6490 The story has its redundancies 1 +121208 6490 has its redundancies 1 +121209 6490 its redundancies 2 +121210 6490 redundancies 1 +121211 6490 the young actors , not very experienced , are sometimes inexpressive 1 +121212 6490 the young actors , not very experienced , 3 +121213 6490 the young actors , not very experienced 1 +121214 6490 the young actors , not 2 +121215 6490 the young actors , 2 +121216 6490 the young actors 2 +121217 6490 very experienced 3 +121218 6490 are sometimes inexpressive 1 +121219 6490 sometimes inexpressive 1 +121220 6490 inexpressive 1 +121221 6491 Compared to his series of spectacular belly flops both on and off the screen , RunTelDat is something of a triumph . 3 +121222 6491 Compared to his series of spectacular belly flops both on and off the screen 1 +121223 6491 to his series of spectacular belly flops both on and off the screen 1 +121224 6491 to his series of spectacular belly flops 2 +121225 6491 his series of spectacular belly flops 2 +121226 6491 his series 2 +121227 6491 of spectacular belly flops 1 +121228 6491 spectacular belly flops 1 +121229 6491 belly flops 2 +121230 6491 flops 1 +121231 6491 both on and off the screen 2 +121232 6491 on and off the screen 2 +121233 6491 on and off 2 +121234 6491 , RunTelDat is something of a triumph . 4 +121235 6491 RunTelDat is something of a triumph . 3 +121236 6491 RunTelDat 2 +121237 6491 is something of a triumph . 4 +121238 6491 is something of a triumph 3 +121239 6491 something of a triumph 3 +121240 6491 of a triumph 3 +121241 6492 ... Watching it was painful . 1 +121242 6492 Watching it was painful . 0 +121243 6492 Watching it was painful 0 +121244 6492 was painful 0 +121245 6493 While not for every taste , this often very funny collegiate gross-out comedy goes a long way toward restoring the luster of the National Lampoon film franchise , too long reduced to direct-to-video irrelevancy . 3 +121246 6493 While not for every taste 1 +121247 6493 not for every taste 1 +121248 6493 for every taste 3 +121249 6493 every taste 2 +121250 6493 , this often very funny collegiate gross-out comedy goes a long way toward restoring the luster of the National Lampoon film franchise , too long reduced to direct-to-video irrelevancy . 2 +121251 6493 this often very funny collegiate gross-out comedy goes a long way toward restoring the luster of the National Lampoon film franchise , too long reduced to direct-to-video irrelevancy . 3 +121252 6493 this often very funny collegiate gross-out comedy 3 +121253 6493 often very funny collegiate gross-out comedy 3 +121254 6493 often very funny 3 +121255 6493 collegiate gross-out comedy 2 +121256 6493 collegiate 2 +121257 6493 goes a long way toward restoring the luster of the National Lampoon film franchise , too long reduced to direct-to-video irrelevancy . 3 +121258 6493 goes a long way toward restoring the luster of the National Lampoon film franchise , too long reduced to direct-to-video irrelevancy 3 +121259 6493 toward restoring the luster of the National Lampoon film franchise , too long reduced to direct-to-video irrelevancy 2 +121260 6493 restoring the luster of the National Lampoon film franchise , too long reduced to direct-to-video irrelevancy 3 +121261 6493 restoring 2 +121262 6493 the luster of the National Lampoon film franchise , too long reduced to direct-to-video irrelevancy 2 +121263 6493 the luster 2 +121264 6493 luster 2 +121265 6493 of the National Lampoon film franchise , too long reduced to direct-to-video irrelevancy 1 +121266 6493 the National Lampoon film franchise , too long reduced to direct-to-video irrelevancy 1 +121267 6493 the National Lampoon film franchise , 3 +121268 6493 the National Lampoon film franchise 3 +121269 6493 National Lampoon film franchise 2 +121270 6493 Lampoon film franchise 2 +121271 6493 too long reduced to direct-to-video irrelevancy 1 +121272 6493 reduced to direct-to-video irrelevancy 0 +121273 6493 to direct-to-video irrelevancy 1 +121274 6493 direct-to-video irrelevancy 2 +121275 6493 irrelevancy 1 +121276 6494 There 's no reason to miss Interview with the Assassin 4 +121277 6494 's no reason to miss Interview with the Assassin 3 +121278 6494 no reason to miss Interview with the Assassin 2 +121279 6494 reason to miss Interview with the Assassin 1 +121280 6494 to miss Interview with the Assassin 2 +121281 6494 miss Interview with the Assassin 2 +121282 6495 A knowing look at female friendship , spiked with raw urban humor . 3 +121283 6495 A knowing 3 +121284 6495 look at female friendship , spiked with raw urban humor . 3 +121285 6495 look at female friendship , spiked with raw urban humor 3 +121286 6495 at female friendship , spiked with raw urban humor 3 +121287 6495 female friendship , spiked with raw urban humor 3 +121288 6495 female friendship , 3 +121289 6495 spiked with raw urban humor 3 +121290 6495 with raw urban humor 3 +121291 6495 raw urban humor 3 +121292 6495 urban humor 2 +121293 6496 I 've never seen -LRB- a remake -RRB- do anything as stomach-turning as the way Adam Sandler 's new movie rapes , pillages and incinerates Frank Capra 's classic ... 0 +121294 6496 've never seen -LRB- a remake -RRB- do anything as stomach-turning as the way Adam Sandler 's new movie rapes , pillages and incinerates Frank Capra 's classic ... 0 +121295 6496 've never seen -LRB- a remake -RRB- do anything as stomach-turning as the way Adam Sandler 's new movie rapes , pillages and incinerates Frank Capra 's classic 1 +121296 6496 seen -LRB- a remake -RRB- do anything as stomach-turning as the way Adam Sandler 's new movie rapes , pillages and incinerates Frank Capra 's classic 0 +121297 6496 -LRB- a remake -RRB- do anything as stomach-turning as the way Adam Sandler 's new movie rapes , pillages and incinerates Frank Capra 's classic 1 +121298 6496 a remake -RRB- do anything as stomach-turning as the way Adam Sandler 's new movie rapes , pillages and incinerates Frank Capra 's classic 0 +121299 6496 -RRB- do anything as stomach-turning as the way Adam Sandler 's new movie rapes , pillages and incinerates Frank Capra 's classic 0 +121300 6496 do anything as stomach-turning as the way Adam Sandler 's new movie rapes , pillages and incinerates Frank Capra 's classic 0 +121301 6496 do anything as stomach-turning as the way Adam Sandler 's new movie rapes , pillages and 1 +121302 6496 do anything as stomach-turning as the way Adam Sandler 's new movie rapes , pillages 0 +121303 6496 do anything as stomach-turning as the way Adam Sandler 's new movie rapes , 2 +121304 6496 do anything as stomach-turning as the way Adam Sandler 's new movie rapes 0 +121305 6496 do anything 1 +121306 6496 as stomach-turning as the way Adam Sandler 's new movie rapes 1 +121307 6496 stomach-turning as the way Adam Sandler 's new movie rapes 1 +121308 6496 as the way Adam Sandler 's new movie rapes 1 +121309 6496 the way Adam Sandler 's new movie rapes 1 +121310 6496 the way Adam Sandler 's 2 +121311 6496 way Adam Sandler 's 2 +121312 6496 new movie rapes 1 +121313 6496 movie rapes 1 +121314 6496 rapes 2 +121315 6496 pillages 2 +121316 6496 incinerates Frank Capra 's classic 1 +121317 6496 incinerates 2 +121318 6496 Frank Capra 's classic 3 +121319 6496 Frank Capra 's 2 +121320 6496 Capra 's 2 +121321 6497 Been there , done that ... a thousand times already , and better . 1 +121322 6497 Been there , done that ... a thousand times already , and better 0 +121323 6497 there , done that ... a thousand times already , and better 0 +121324 6497 there , done that ... a thousand times already 0 +121325 6497 done that ... a thousand times already 0 +121326 6497 done that ... a thousand times 1 +121327 6497 that ... a thousand times 2 +121328 6497 a thousand times 2 +121329 6497 thousand times 2 +121330 6497 thousand 2 +121331 6497 , and better 3 +121332 6498 Each scene wreaks of routine ; the film never manages to generate a single threat of suspense . 2 +121333 6498 Each scene wreaks of routine ; the film never manages to generate a single threat of suspense 0 +121334 6498 Each scene wreaks of routine ; 0 +121335 6498 Each scene wreaks of routine 1 +121336 6498 wreaks of routine 2 +121337 6498 wreaks 2 +121338 6498 of routine 2 +121339 6498 the film never manages to generate a single threat of suspense 1 +121340 6498 never manages to generate a single threat of suspense 1 +121341 6498 manages to generate a single threat of suspense 2 +121342 6498 to generate a single threat of suspense 2 +121343 6498 generate a single threat of suspense 2 +121344 6498 a single threat of suspense 2 +121345 6498 a single threat 2 +121346 6498 single threat 2 +121347 6499 Nettelbeck ... has a pleasing way with a metaphor . 3 +121348 6499 ... has a pleasing way with a metaphor . 4 +121349 6499 has a pleasing way with a metaphor . 4 +121350 6499 has a pleasing way with a metaphor 3 +121351 6499 a pleasing way with a metaphor 3 +121352 6499 a pleasing way 3 +121353 6499 pleasing way 3 +121354 6499 with a metaphor 2 +121355 6500 Succeeds only because Bullock and Grant were made to share the silver screen . 2 +121356 6500 only because Bullock and Grant were made to share the silver screen . 3 +121357 6500 only because Bullock and Grant 2 +121358 6500 because Bullock and Grant 2 +121359 6500 were made to share the silver screen . 3 +121360 6500 were made to share the silver screen 3 +121361 6500 made to share the silver screen 3 +121362 6500 to share the silver screen 3 +121363 6500 share the silver screen 2 +121364 6501 It 's almost as if it 's an elaborate dare more than a full-blooded film . 2 +121365 6501 's almost as if it 's an elaborate dare more than a full-blooded film . 1 +121366 6501 's almost as if it 's an elaborate dare more than a full-blooded film 2 +121367 6501 almost as if it 's an elaborate dare more than a full-blooded film 1 +121368 6501 almost as 2 +121369 6501 if it 's an elaborate dare more than a full-blooded film 1 +121370 6501 it 's an elaborate dare more than a full-blooded film 2 +121371 6501 's an elaborate dare more than a full-blooded film 2 +121372 6501 an elaborate dare more than a full-blooded film 2 +121373 6501 an elaborate dare more 2 +121374 6501 an elaborate dare 2 +121375 6501 elaborate dare 2 +121376 6501 than a full-blooded film 2 +121377 6501 a full-blooded film 3 +121378 6501 full-blooded film 2 +121379 6501 full-blooded 3 +121380 6502 Mike White 's deft combination of serious subject matter and dark , funny humor make `` The Good Girl '' a film worth watching . 4 +121381 6502 Mike White 's deft combination of serious subject matter and dark , funny humor 3 +121382 6502 Mike White 's deft combination 2 +121383 6502 Mike White 's 2 +121384 6502 deft combination 2 +121385 6502 of serious subject matter and dark , funny humor 3 +121386 6502 serious subject matter and dark , funny humor 3 +121387 6502 serious subject matter and 3 +121388 6502 serious subject matter 2 +121389 6502 dark , funny humor 3 +121390 6502 , funny humor 3 +121391 6502 funny humor 3 +121392 6502 make `` The Good Girl '' a film worth watching . 4 +121393 6502 make `` The Good Girl '' a film worth watching 3 +121394 6502 `` The Good Girl '' a film worth watching 3 +121395 6502 The Good Girl '' a film worth watching 3 +121396 6502 The Good Girl '' 2 +121397 6502 a film worth watching 3 +121398 6502 a film worth 2 +121399 6502 film worth 2 +121400 6503 The film 's unhurried pace is actually one of its strengths . 3 +121401 6503 The film 's unhurried pace 2 +121402 6503 unhurried pace 2 +121403 6503 is actually one of its strengths . 3 +121404 6503 is actually one of its strengths 3 +121405 6503 one of its strengths 3 +121406 6503 of its strengths 2 +121407 6503 its strengths 3 +121408 6504 A cutesy romantic tale with a twist . 3 +121409 6504 A cutesy romantic tale with a twist 3 +121410 6504 A cutesy romantic tale 3 +121411 6504 cutesy romantic tale 4 +121412 6504 romantic tale 3 +121413 6504 with a twist 2 +121414 6505 A bizarre piece of work , with premise and dialogue at the level of kids ' television and plot threads as morose as teen pregnancy , rape and suspected murder 1 +121415 6505 A bizarre piece of work , with premise and dialogue at the level of kids ' television and plot threads 1 +121416 6505 A bizarre piece of work , with premise and dialogue 3 +121417 6505 A bizarre piece 2 +121418 6505 bizarre piece 2 +121419 6505 of work , with premise and dialogue 2 +121420 6505 work , with premise and dialogue 2 +121421 6505 with premise and dialogue 2 +121422 6505 premise and dialogue 2 +121423 6505 premise and 2 +121424 6505 at the level of kids ' television and plot threads 2 +121425 6505 the level of kids ' television and plot threads 2 +121426 6505 of kids ' television and plot threads 2 +121427 6505 kids ' television and plot threads 2 +121428 6505 television and plot threads 2 +121429 6505 and plot threads 2 +121430 6505 plot threads 2 +121431 6505 threads 2 +121432 6505 as morose as teen pregnancy , rape and suspected murder 1 +121433 6505 morose as teen pregnancy , rape and suspected murder 2 +121434 6505 morose 2 +121435 6505 as teen pregnancy , rape and suspected murder 2 +121436 6505 teen pregnancy , rape and suspected murder 2 +121437 6505 teen pregnancy , 2 +121438 6505 teen pregnancy 2 +121439 6505 pregnancy 2 +121440 6505 rape and suspected murder 3 +121441 6505 rape and 1 +121442 6505 suspected murder 2 +121443 6506 A competent , unpretentious entertainment destined to fill the after-school slot at shopping mall theaters across the country . 3 +121444 6506 A competent , unpretentious entertainment 2 +121445 6506 competent , unpretentious entertainment 3 +121446 6506 competent , unpretentious 3 +121447 6506 , unpretentious 2 +121448 6506 destined to fill the after-school slot at shopping mall theaters across the country . 3 +121449 6506 destined to fill the after-school slot at shopping mall theaters across the country 2 +121450 6506 to fill the after-school slot at shopping mall theaters across the country 2 +121451 6506 fill the after-school slot at shopping mall theaters across the country 1 +121452 6506 fill the after-school slot 1 +121453 6506 the after-school slot 2 +121454 6506 after-school slot 2 +121455 6506 slot 2 +121456 6506 at shopping mall theaters across the country 2 +121457 6506 shopping mall theaters across the country 2 +121458 6506 shopping mall theaters 2 +121459 6506 mall theaters 2 +121460 6506 mall 2 +121461 6506 across the country 2 +121462 6507 While dutifully pulling on heartstrings , directors Dean Deblois and Chris Sanders valiantly keep punching up the mix . 3 +121463 6507 While dutifully pulling on heartstrings 2 +121464 6507 dutifully pulling on heartstrings 3 +121465 6507 dutifully 2 +121466 6507 pulling on heartstrings 4 +121467 6507 on heartstrings 2 +121468 6507 heartstrings 2 +121469 6507 , directors Dean Deblois and Chris Sanders valiantly keep punching up the mix . 4 +121470 6507 directors Dean Deblois and Chris Sanders valiantly keep punching up the mix . 3 +121471 6507 directors Dean Deblois and Chris Sanders 2 +121472 6507 Dean Deblois and Chris Sanders 2 +121473 6507 Deblois and Chris Sanders 2 +121474 6507 Deblois 2 +121475 6507 and Chris Sanders 2 +121476 6507 Chris Sanders 2 +121477 6507 Sanders 2 +121478 6507 valiantly keep punching up the mix . 3 +121479 6507 keep punching up the mix . 2 +121480 6507 keep punching up the mix 2 +121481 6507 punching up the mix 3 +121482 6507 punching up 2 +121483 6508 Feels at times like a giant commercial for Universal Studios , where much of the action takes place . 0 +121484 6508 Feels at times 2 +121485 6508 like a giant commercial for Universal Studios , where much of the action takes place . 2 +121486 6508 like a giant commercial for Universal Studios , where much of the action takes place 1 +121487 6508 a giant commercial for Universal Studios , where much of the action takes place 1 +121488 6508 a giant commercial 2 +121489 6508 giant commercial 2 +121490 6508 for Universal Studios , where much of the action takes place 2 +121491 6508 Universal Studios , where much of the action takes place 2 +121492 6508 Universal Studios , 2 +121493 6508 where much of the action takes place 2 +121494 6508 much of the action takes place 3 +121495 6508 much of the action 2 +121496 6508 of the action 2 +121497 6509 It 's the brilliant surfing photography bringing you right inside the massive waves that lifts Blue Crush into one of the summer 's most pleasurable movies . 4 +121498 6509 's the brilliant surfing photography bringing you right inside the massive waves that lifts Blue Crush into one of the summer 's most pleasurable movies . 4 +121499 6509 's the brilliant surfing photography bringing you right inside the massive waves that lifts Blue Crush into one of the summer 's most pleasurable movies 4 +121500 6509 the brilliant surfing photography bringing you right inside the massive waves that lifts Blue Crush into one of the summer 's most pleasurable movies 3 +121501 6509 the brilliant surfing photography 4 +121502 6509 brilliant surfing photography 4 +121503 6509 surfing photography 2 +121504 6509 bringing you right inside the massive waves that lifts Blue Crush into one of the summer 's most pleasurable movies 4 +121505 6509 bringing you 2 +121506 6509 right inside the massive waves that lifts Blue Crush into one of the summer 's most pleasurable movies 3 +121507 6509 inside the massive waves that lifts Blue Crush into one of the summer 's most pleasurable movies 3 +121508 6509 the massive waves that lifts Blue Crush into one of the summer 's most pleasurable movies 4 +121509 6509 the massive waves 2 +121510 6509 massive waves 2 +121511 6509 that lifts Blue Crush into one of the summer 's most pleasurable movies 4 +121512 6509 lifts Blue Crush into one of the summer 's most pleasurable movies 4 +121513 6509 lifts Blue Crush 2 +121514 6509 into one of the summer 's most pleasurable movies 4 +121515 6509 one of the summer 's most pleasurable movies 4 +121516 6509 of the summer 's most pleasurable movies 4 +121517 6509 the summer 's most pleasurable movies 4 +121518 6509 the summer 's 2 +121519 6509 most pleasurable movies 3 +121520 6509 pleasurable movies 3 +121521 6510 The last scenes of the film are anguished , bitter and truthful . 3 +121522 6510 The last scenes of the film 2 +121523 6510 The last scenes 2 +121524 6510 last scenes 2 +121525 6510 are anguished , bitter and truthful . 2 +121526 6510 are anguished , bitter and truthful 3 +121527 6510 anguished , bitter and truthful 2 +121528 6510 , bitter and truthful 2 +121529 6510 bitter and truthful 3 +121530 6511 The romance between the leads is n't as compelling or as believable as it should be . 1 +121531 6511 The romance between the leads 2 +121532 6511 between the leads 2 +121533 6511 is n't as compelling or as believable as it should be . 1 +121534 6511 is n't as compelling or as believable as it should be 1 +121535 6511 is n't as compelling or as believable 1 +121536 6511 as compelling or as believable 3 +121537 6511 as compelling or 2 +121538 6511 as compelling 3 +121539 6511 as believable 2 +121540 6512 A lyrical metaphor for cultural and personal self-discovery and a picaresque view of a little-remembered world . 3 +121541 6512 A lyrical metaphor for cultural and personal self-discovery and a picaresque view of a little-remembered world 3 +121542 6512 A lyrical metaphor for cultural and personal self-discovery and a picaresque view 3 +121543 6512 A lyrical metaphor 2 +121544 6512 lyrical metaphor 2 +121545 6512 for cultural and personal self-discovery and a picaresque view 3 +121546 6512 cultural and personal self-discovery and a picaresque view 3 +121547 6512 cultural and personal self-discovery and 3 +121548 6512 cultural and personal self-discovery 3 +121549 6512 and personal self-discovery 2 +121550 6512 personal self-discovery 3 +121551 6512 a picaresque view 3 +121552 6512 picaresque view 2 +121553 6512 picaresque 2 +121554 6512 of a little-remembered world 2 +121555 6512 a little-remembered world 3 +121556 6512 little-remembered world 2 +121557 6512 little-remembered 1 +121558 6513 But the film itself is ultimately quite unengaging . 0 +121559 6513 the film itself is ultimately quite unengaging . 1 +121560 6513 itself is ultimately quite unengaging . 0 +121561 6513 is ultimately quite unengaging . 1 +121562 6513 is ultimately quite unengaging 1 +121563 6513 quite unengaging 0 +121564 6513 unengaging 1 +121565 6514 Fluffy and disposible . 1 +121566 6514 Fluffy and disposible 0 +121567 6514 Fluffy and 2 +121568 6514 disposible 1 +121569 6515 There 's ... an underlying Old World sexism to Monday Morning that undercuts its charm . 1 +121570 6515 There 's ... an underlying Old World sexism to Monday Morning that undercuts its charm 1 +121571 6515 There 's ... 2 +121572 6515 an underlying Old World sexism to Monday Morning that undercuts its charm 2 +121573 6515 an underlying Old World 2 +121574 6515 underlying Old World 2 +121575 6515 sexism to Monday Morning that undercuts its charm 1 +121576 6515 to Monday Morning that undercuts its charm 2 +121577 6515 Monday Morning that undercuts its charm 2 +121578 6515 Monday Morning 2 +121579 6515 Monday 2 +121580 6515 that undercuts its charm 2 +121581 6515 undercuts its charm 1 +121582 6516 While the material is slight , the movie is better than you might think . 3 +121583 6516 While the material is slight 2 +121584 6516 the material is slight 2 +121585 6516 is slight 2 +121586 6516 , the movie is better than you might think . 3 +121587 6516 the movie is better than you might think . 3 +121588 6516 is better than you might think . 3 +121589 6516 is better than you might think 3 +121590 6516 than you might think 2 +121591 6517 There 's nothing like love to give a movie a B-12 shot , and CQ shimmers with it . 4 +121592 6517 There 's nothing like love to give a movie a B-12 shot , and CQ shimmers with it 2 +121593 6517 There 's nothing like love to give a movie a B-12 shot , and 3 +121594 6517 There 's nothing like love to give a movie a B-12 shot , 3 +121595 6517 There 's nothing like love to give a movie a B-12 shot 3 +121596 6517 's nothing like love to give a movie a B-12 shot 2 +121597 6517 nothing like love to give a movie a B-12 shot 3 +121598 6517 nothing like love 2 +121599 6517 like love 2 +121600 6517 to give a movie a B-12 shot 2 +121601 6517 give a movie a B-12 shot 2 +121602 6517 give a movie 2 +121603 6517 a B-12 shot 2 +121604 6517 B-12 shot 2 +121605 6517 B-12 2 +121606 6517 CQ shimmers with it 2 +121607 6517 shimmers with it 3 +121608 6517 shimmers 2 +121609 6518 The corpse count ultimately overrides what little we learn along the way about vicarious redemption . 1 +121610 6518 The corpse count 2 +121611 6518 corpse count 2 +121612 6518 ultimately overrides what little we learn along the way about vicarious redemption . 2 +121613 6518 overrides what little we learn along the way about vicarious redemption . 1 +121614 6518 overrides what little we learn along the way about vicarious redemption 1 +121615 6518 overrides 1 +121616 6518 what little we learn along the way about vicarious redemption 2 +121617 6518 little we learn along the way about vicarious redemption 2 +121618 6518 little we 2 +121619 6518 learn along the way about vicarious redemption 2 +121620 6518 learn along 2 +121621 6518 the way about vicarious redemption 2 +121622 6518 about vicarious redemption 2 +121623 6518 vicarious redemption 2 +121624 6518 vicarious 2 +121625 6519 At every opportunity to do something clever , the film goes right over the edge and kills every sense of believability ... all you have left is a no-surprise series of explosions and violence while Banderas looks like he 's not trying to laugh at how bad it 1 +121626 6519 At every opportunity to do something clever , the film goes right over the edge and kills every sense of believability ... all you have left 0 +121627 6519 At every opportunity to do something clever , the film goes right over the edge and kills every sense of believability ... 0 +121628 6519 At every opportunity to do something clever , the film goes right over the edge and kills every sense of believability 0 +121629 6519 At every opportunity to do something clever 3 +121630 6519 every opportunity to do something clever 2 +121631 6519 opportunity to do something clever 2 +121632 6519 to do something clever 2 +121633 6519 do something clever 2 +121634 6519 something clever 3 +121635 6519 , the film goes right over the edge and kills every sense of believability 0 +121636 6519 the film goes right over the edge and kills every sense of believability 0 +121637 6519 goes right over the edge and kills every sense of believability 1 +121638 6519 goes right over the edge and 2 +121639 6519 goes right over the edge 2 +121640 6519 goes right 3 +121641 6519 over the edge 2 +121642 6519 kills every sense of believability 0 +121643 6519 kills 2 +121644 6519 every sense of believability 2 +121645 6519 of believability 2 +121646 6519 all you have left 2 +121647 6519 you have left 2 +121648 6519 have left 2 +121649 6519 is a no-surprise series of explosions and violence while Banderas looks like he 's not trying to laugh at how bad it 1 +121650 6519 is a no-surprise series of explosions and violence while Banderas looks like he 's not trying to laugh at how bad 0 +121651 6519 a no-surprise series of explosions and violence while Banderas looks like he 's not trying to laugh at how bad 1 +121652 6519 a no-surprise series of explosions and violence 2 +121653 6519 a no-surprise series 2 +121654 6519 no-surprise series 1 +121655 6519 no-surprise 1 +121656 6519 of explosions and violence 2 +121657 6519 explosions and violence 2 +121658 6519 explosions and 2 +121659 6519 while Banderas looks like he 's not trying to laugh at how bad 1 +121660 6519 Banderas looks like he 's not trying to laugh at how bad 0 +121661 6519 looks like he 's not trying to laugh at how bad 0 +121662 6519 like he 's not trying to laugh at how bad 2 +121663 6519 he 's not trying to laugh at how bad 2 +121664 6519 's not trying to laugh at how bad 1 +121665 6519 trying to laugh at how bad 1 +121666 6519 to laugh at how bad 1 +121667 6519 laugh at how bad 0 +121668 6519 at how bad 2 +121669 6520 The criticism never rises above easy , cynical potshots at morally bankrupt characters ... 1 +121670 6520 The criticism 2 +121671 6520 never rises above easy , cynical potshots at morally bankrupt characters ... 0 +121672 6520 rises above easy , cynical potshots at morally bankrupt characters ... 3 +121673 6520 rises above easy , cynical potshots at morally bankrupt characters 3 +121674 6520 above easy , cynical potshots at morally bankrupt characters 1 +121675 6520 easy , cynical potshots at morally bankrupt characters 1 +121676 6520 easy , cynical potshots 1 +121677 6520 easy , cynical 2 +121678 6520 at morally bankrupt characters 2 +121679 6520 morally bankrupt characters 1 +121680 6520 morally bankrupt 1 +121681 6520 bankrupt 2 +121682 6521 Though it 's equally solipsistic in tone , the movie has enough vitality to justify the notion of creating a screen adaptation of Evans ' saga of Hollywood excess . 3 +121683 6521 Though it 's equally solipsistic in tone 3 +121684 6521 it 's equally solipsistic in tone 2 +121685 6521 's equally solipsistic in tone 2 +121686 6521 equally solipsistic in tone 2 +121687 6521 solipsistic in tone 2 +121688 6521 solipsistic 2 +121689 6521 , the movie has enough vitality to justify the notion of creating a screen adaptation of Evans ' saga of Hollywood excess . 2 +121690 6521 the movie has enough vitality to justify the notion of creating a screen adaptation of Evans ' saga of Hollywood excess . 4 +121691 6521 has enough vitality to justify the notion of creating a screen adaptation of Evans ' saga of Hollywood excess . 2 +121692 6521 has enough vitality to justify the notion of creating a screen adaptation of Evans ' saga of Hollywood excess 3 +121693 6521 enough vitality to justify the notion of creating a screen adaptation of Evans ' saga of Hollywood excess 3 +121694 6521 vitality to justify the notion of creating a screen adaptation of Evans ' saga of Hollywood excess 3 +121695 6521 to justify the notion of creating a screen adaptation of Evans ' saga of Hollywood excess 2 +121696 6521 justify the notion of creating a screen adaptation of Evans ' saga of Hollywood excess 3 +121697 6521 the notion of creating a screen adaptation of Evans ' saga of Hollywood excess 2 +121698 6521 of creating a screen adaptation of Evans ' saga of Hollywood excess 2 +121699 6521 creating a screen adaptation of Evans ' saga of Hollywood excess 2 +121700 6521 a screen adaptation of Evans ' saga of Hollywood excess 2 +121701 6521 a screen adaptation 2 +121702 6521 of Evans ' saga of Hollywood excess 2 +121703 6521 Evans ' saga of Hollywood excess 2 +121704 6521 Evans ' saga 2 +121705 6521 Evans ' 2 +121706 6521 of Hollywood excess 2 +121707 6521 Hollywood excess 1 +121708 6522 Little more than a stylish exercise in revisionism whose point ... is no doubt true , but serves as a rather thin moral to such a knowing fable . 1 +121709 6522 Little more than a stylish exercise in revisionism whose point 1 +121710 6522 than a stylish exercise in revisionism whose point 1 +121711 6522 a stylish exercise in revisionism whose point 3 +121712 6522 a stylish exercise 3 +121713 6522 stylish exercise 3 +121714 6522 in revisionism whose point 2 +121715 6522 revisionism whose point 2 +121716 6522 revisionism 2 +121717 6522 whose point 2 +121718 6522 ... is no doubt true , but serves as a rather thin moral to such a knowing fable . 2 +121719 6522 is no doubt true , but serves as a rather thin moral to such a knowing fable . 2 +121720 6522 is no doubt true , but serves as a rather thin moral to such a knowing fable 1 +121721 6522 is no doubt true , but 2 +121722 6522 is no doubt true , 2 +121723 6522 is no doubt true 3 +121724 6522 is no doubt 2 +121725 6522 serves as a rather thin moral to such a knowing fable 1 +121726 6522 serves as a rather thin moral 1 +121727 6522 as a rather thin moral 2 +121728 6522 a rather thin moral 1 +121729 6522 rather thin moral 1 +121730 6522 rather thin 1 +121731 6522 to such a knowing fable 2 +121732 6522 such a knowing fable 2 +121733 6522 a knowing fable 2 +121734 6522 knowing fable 2 +121735 6523 One regards Reign of Fire with awe . 4 +121736 6523 regards Reign of Fire with awe . 4 +121737 6523 regards Reign of Fire with awe 3 +121738 6523 regards Reign of Fire 2 +121739 6523 with awe 3 +121740 6524 If anything , the film is doing something of a public service -- shedding light on a group of extremely talented musicians who might otherwise go unnoticed and underappreciated by music fans . 4 +121741 6524 If anything 2 +121742 6524 , the film is doing something of a public service -- shedding light on a group of extremely talented musicians who might otherwise go unnoticed and underappreciated by music fans . 4 +121743 6524 the film is doing something of a public service -- shedding light on a group of extremely talented musicians who might otherwise go unnoticed and underappreciated by music fans . 3 +121744 6524 is doing something of a public service -- shedding light on a group of extremely talented musicians who might otherwise go unnoticed and underappreciated by music fans . 3 +121745 6524 is doing something of a public service -- shedding light on a group of extremely talented musicians who might otherwise go unnoticed and underappreciated by music fans 3 +121746 6524 doing something of a public service -- shedding light on a group of extremely talented musicians who might otherwise go unnoticed and underappreciated by music fans 3 +121747 6524 something of a public service -- shedding light on a group of extremely talented musicians who might otherwise go unnoticed and underappreciated by music fans 3 +121748 6524 something of a public service -- 3 +121749 6524 something of a public service 3 +121750 6524 of a public service 2 +121751 6524 a public service 2 +121752 6524 public service 2 +121753 6524 shedding light on a group of extremely talented musicians who might otherwise go unnoticed and underappreciated by music fans 4 +121754 6524 shedding light on a group of extremely talented musicians 3 +121755 6524 shedding light 2 +121756 6524 shedding 2 +121757 6524 on a group of extremely talented musicians 4 +121758 6524 a group of extremely talented musicians 3 +121759 6524 of extremely talented musicians 3 +121760 6524 extremely talented musicians 4 +121761 6524 extremely talented 4 +121762 6524 who might otherwise go unnoticed and underappreciated by music fans 3 +121763 6524 might otherwise go unnoticed and underappreciated by music fans 2 +121764 6524 go unnoticed and underappreciated by music fans 1 +121765 6524 go unnoticed and underappreciated 3 +121766 6524 unnoticed and underappreciated 1 +121767 6524 unnoticed and 2 +121768 6524 unnoticed 1 +121769 6524 underappreciated 2 +121770 6524 by music fans 2 +121771 6525 ... an adorably whimsical comedy that deserves more than a passing twinkle . 3 +121772 6525 an adorably whimsical comedy that deserves more than a passing twinkle . 4 +121773 6525 an adorably whimsical comedy that deserves more than a passing twinkle 4 +121774 6525 an adorably whimsical comedy 3 +121775 6525 adorably whimsical comedy 4 +121776 6525 that deserves more than a passing twinkle 3 +121777 6525 deserves more than a passing twinkle 3 +121778 6525 deserves more 2 +121779 6525 than a passing twinkle 2 +121780 6525 a passing twinkle 3 +121781 6525 passing twinkle 1 +121782 6525 twinkle 2 +121783 6526 The innate theatrics that provide its thrills and extreme emotions lose their luster when flattened onscreen . 0 +121784 6526 The innate theatrics that provide its thrills and extreme emotions 3 +121785 6526 The innate theatrics 2 +121786 6526 innate theatrics 2 +121787 6526 innate 2 +121788 6526 that provide its thrills and extreme emotions 3 +121789 6526 provide its thrills and extreme emotions 3 +121790 6526 its thrills and extreme emotions 3 +121791 6526 thrills and extreme emotions 3 +121792 6526 thrills and extreme 3 +121793 6526 thrills and 2 +121794 6526 lose their luster when flattened onscreen . 0 +121795 6526 lose their luster when flattened onscreen 2 +121796 6526 lose their luster 1 +121797 6526 their luster 3 +121798 6526 when flattened onscreen 2 +121799 6526 flattened onscreen 2 +121800 6526 flattened 2 +121801 6527 Parents , on the other hand , will be ahead of the plot at all times , and there is n't enough clever innuendo to fil 2 +121802 6527 Parents , on the other hand , will be ahead of the plot at all times , and 2 +121803 6527 Parents , on the other hand , will be ahead of the plot at all times , 2 +121804 6527 Parents , on the other hand , will be ahead of the plot at all times 2 +121805 6527 , on the other hand , will be ahead of the plot at all times 2 +121806 6527 on the other hand , will be ahead of the plot at all times 2 +121807 6527 , will be ahead of the plot at all times 3 +121808 6527 will be ahead of the plot at all times 2 +121809 6527 be ahead of the plot at all times 2 +121810 6527 be ahead 2 +121811 6527 of the plot at all times 2 +121812 6527 the plot at all times 3 +121813 6527 at all times 2 +121814 6527 all times 2 +121815 6527 there is n't enough clever innuendo to fil 2 +121816 6527 is n't enough clever innuendo to fil 1 +121817 6527 enough clever innuendo to fil 3 +121818 6527 enough clever 3 +121819 6527 innuendo to fil 2 +121820 6527 to fil 2 +121821 6527 fil 2 +121822 6528 There 's the plot , and a maddeningly insistent and repetitive piano score that made me want to scream . 1 +121823 6528 's the plot , and a maddeningly insistent and repetitive piano score that made me want to scream . 0 +121824 6528 's the plot , and a maddeningly insistent and repetitive piano score that made me want to scream 0 +121825 6528 the plot , and a maddeningly insistent and repetitive piano score that made me want to scream 0 +121826 6528 the plot , and 2 +121827 6528 the plot , 2 +121828 6528 a maddeningly insistent and repetitive piano score that made me want to scream 1 +121829 6528 a maddeningly insistent and repetitive piano score 2 +121830 6528 maddeningly insistent and repetitive piano score 0 +121831 6528 maddeningly insistent and repetitive 0 +121832 6528 insistent and repetitive 0 +121833 6528 insistent and 2 +121834 6528 piano score 2 +121835 6528 that made me want to scream 1 +121836 6528 made me want to scream 1 +121837 6528 me want to scream 1 +121838 6528 want to scream 2 +121839 6529 If the predictability of bland comfort food appeals to you , then the film is a pleasant enough dish . 1 +121840 6529 If the predictability of bland comfort food appeals to you 1 +121841 6529 the predictability of bland comfort food appeals to you 2 +121842 6529 the predictability of bland comfort food 1 +121843 6529 the predictability 1 +121844 6529 of bland comfort food 1 +121845 6529 bland comfort food 2 +121846 6529 appeals to you 3 +121847 6529 , then the film is a pleasant enough dish . 3 +121848 6529 then the film is a pleasant enough dish . 3 +121849 6529 the film is a pleasant enough dish . 3 +121850 6529 is a pleasant enough dish . 3 +121851 6529 is a pleasant enough dish 3 +121852 6529 a pleasant enough dish 3 +121853 6529 pleasant enough dish 3 +121854 6529 enough dish 2 +121855 6530 An exercise in cynicism every bit as ugly as the shabby digital photography and muddy sound . 0 +121856 6530 An exercise in cynicism every bit as ugly as the shabby digital photography and muddy sound 1 +121857 6530 An exercise in cynicism every bit 2 +121858 6530 in cynicism every bit 1 +121859 6530 cynicism every bit 1 +121860 6530 as ugly as the shabby digital photography and muddy sound 1 +121861 6530 as ugly as the shabby digital photography and 0 +121862 6530 as ugly as the shabby digital photography 0 +121863 6530 ugly as the shabby digital photography 0 +121864 6530 as the shabby digital photography 0 +121865 6530 the shabby digital photography 0 +121866 6530 shabby digital photography 1 +121867 6530 shabby 2 +121868 6530 digital photography 3 +121869 6530 muddy sound 1 +121870 6531 Just another generic drama that has nothing going for it other than its exploitive array of obligatory cheap thrills . 1 +121871 6531 Just another generic drama that has nothing going for it other than its exploitive array of obligatory cheap 0 +121872 6531 Just another generic drama 1 +121873 6531 another generic drama 1 +121874 6531 generic drama 1 +121875 6531 that has nothing going for it other than its exploitive array of obligatory cheap 1 +121876 6531 has nothing going for it other than its exploitive array of obligatory cheap 0 +121877 6531 nothing going for it other than its exploitive array of obligatory cheap 0 +121878 6531 going for it other than its exploitive array of obligatory cheap 1 +121879 6531 for it other than its exploitive array of obligatory cheap 1 +121880 6531 it other than its exploitive array of obligatory cheap 1 +121881 6531 other than its exploitive array of obligatory cheap 1 +121882 6531 than its exploitive array of obligatory cheap 1 +121883 6531 its exploitive array of obligatory cheap 0 +121884 6531 its exploitive array 2 +121885 6531 exploitive array 2 +121886 6531 array 2 +121887 6531 of obligatory cheap 1 +121888 6531 obligatory cheap 1 +121889 6531 thrills . 2 +121890 6532 Strictly middle of the road . 2 +121891 6532 Strictly middle of the road 2 +121892 6532 Strictly middle 2 +121893 6532 of the road 2 +121894 6533 The film is undone by anachronistic quick edits and occasional jarring glimpses of a modern theater audience watching the events unfold . 1 +121895 6533 is undone by anachronistic quick edits and occasional jarring glimpses of a modern theater audience watching the events unfold . 1 +121896 6533 is undone by anachronistic quick edits and occasional jarring glimpses of a modern theater audience watching the events unfold 0 +121897 6533 undone by anachronistic quick edits and occasional jarring glimpses of a modern theater audience watching the events unfold 1 +121898 6533 by anachronistic quick edits and occasional jarring glimpses of a modern theater audience watching the events unfold 2 +121899 6533 anachronistic quick edits and occasional jarring glimpses of a modern theater audience watching the events unfold 3 +121900 6533 anachronistic quick edits and 3 +121901 6533 anachronistic quick edits 2 +121902 6533 quick edits 2 +121903 6533 occasional jarring glimpses of a modern theater audience watching the events unfold 1 +121904 6533 occasional jarring glimpses 3 +121905 6533 jarring glimpses 2 +121906 6533 of a modern theater audience watching the events unfold 2 +121907 6533 a modern theater audience watching the events unfold 2 +121908 6533 a modern theater audience 2 +121909 6533 modern theater audience 2 +121910 6533 theater audience 2 +121911 6533 watching the events unfold 2 +121912 6533 the events unfold 2 +121913 6533 unfold 2 +121914 6534 This kiddie-oriented stinker is so bad that I even caught the gum stuck under my seat trying to sneak out of the theater 0 +121915 6534 This kiddie-oriented stinker 1 +121916 6534 kiddie-oriented stinker 0 +121917 6534 kiddie-oriented 2 +121918 6534 is so bad that I even caught the gum stuck under my seat trying to sneak out of the theater 0 +121919 6534 that I even caught the gum stuck under my seat trying to sneak out of the theater 2 +121920 6534 I even caught the gum stuck under my seat trying to sneak out of the theater 1 +121921 6534 even caught the gum stuck under my seat trying to sneak out of the theater 1 +121922 6534 caught the gum stuck under my seat trying to sneak out of the theater 1 +121923 6534 the gum stuck under my seat trying to sneak out of the theater 1 +121924 6534 the gum 2 +121925 6534 gum 2 +121926 6534 stuck under my seat trying to sneak out of the theater 1 +121927 6534 under my seat trying to sneak out of the theater 1 +121928 6534 my seat trying to sneak out of the theater 0 +121929 6534 trying to sneak out of the theater 1 +121930 6534 to sneak out of the theater 1 +121931 6534 sneak out of the theater 0 +121932 6534 sneak out 2 +121933 6534 sneak 2 +121934 6534 of the theater 3 +121935 6535 The filmmakers keep pushing the jokes at the expense of character until things fall apart . 1 +121936 6535 keep pushing the jokes at the expense of character until things fall apart . 0 +121937 6535 keep pushing the jokes at the expense of character until things fall apart 1 +121938 6535 pushing the jokes at the expense of character until things fall apart 1 +121939 6535 pushing the jokes at the expense of character 1 +121940 6535 pushing the jokes 2 +121941 6535 at the expense of character 1 +121942 6535 the expense of character 2 +121943 6535 until things fall apart 1 +121944 6536 Two-bit potboiler . 1 +121945 6536 Two-bit 2 +121946 6536 potboiler . 2 +121947 6537 Gaping plot holes sink this ` sub ' - standard thriller and drag audience enthusiasm to crush depth . 0 +121948 6537 Gaping plot holes sink this ` sub ' - standard thriller and drag audience enthusiasm to crush depth 0 +121949 6537 Gaping plot holes sink this ` sub ' - 0 +121950 6537 Gaping plot holes sink this ` sub ' 1 +121951 6537 plot holes sink this ` sub ' 1 +121952 6537 sink this ` sub ' 1 +121953 6537 this ` sub ' 2 +121954 6537 ` sub ' 2 +121955 6537 sub ' 2 +121956 6537 standard thriller and drag audience enthusiasm to crush depth 1 +121957 6537 standard thriller and drag audience enthusiasm 1 +121958 6537 thriller and drag audience enthusiasm 2 +121959 6537 and drag audience enthusiasm 2 +121960 6537 drag audience enthusiasm 1 +121961 6537 audience enthusiasm 2 +121962 6537 to crush depth 1 +121963 6537 crush depth 2 +121964 6538 Now he makes them . 2 +121965 6538 he makes them . 2 +121966 6538 makes them . 2 +121967 6538 makes them 2 +121968 6539 It 's a bizarre curiosity memorable mainly for the way it fritters away its potentially interesting subject matter via a banal script , unimpressive acting and indifferent direction . 2 +121969 6539 's a bizarre curiosity memorable mainly for the way it fritters away its potentially interesting subject matter via a banal script , unimpressive acting and indifferent direction . 1 +121970 6539 's a bizarre curiosity memorable mainly for the way it fritters away its potentially interesting subject matter via a banal script , unimpressive acting and indifferent direction 0 +121971 6539 's a bizarre curiosity memorable mainly 2 +121972 6539 's a bizarre curiosity memorable 2 +121973 6539 a bizarre curiosity memorable 3 +121974 6539 a bizarre curiosity 2 +121975 6539 bizarre curiosity 3 +121976 6539 for the way it fritters away its potentially interesting subject matter via a banal script , unimpressive acting and indifferent direction 1 +121977 6539 the way it fritters away its potentially interesting subject matter via a banal script , unimpressive acting and indifferent direction 1 +121978 6539 the way it fritters away its potentially interesting subject matter via a banal script , 0 +121979 6539 the way it fritters away its potentially interesting subject matter via a banal script 1 +121980 6539 it fritters away its potentially interesting subject matter via a banal script 2 +121981 6539 fritters away its potentially interesting subject matter via a banal script 0 +121982 6539 fritters away 1 +121983 6539 fritters 2 +121984 6539 its potentially interesting subject matter via a banal script 1 +121985 6539 its potentially interesting subject matter 2 +121986 6539 potentially interesting subject matter 3 +121987 6539 potentially interesting subject 3 +121988 6539 interesting subject 3 +121989 6539 via a banal script 1 +121990 6539 a banal script 1 +121991 6539 banal script 1 +121992 6539 unimpressive acting and indifferent direction 0 +121993 6539 acting and indifferent direction 2 +121994 6539 acting and indifferent 2 +121995 6540 The powder blues and sun-splashed whites of Tunis make an alluring backdrop for this sensuous and spirited tale of a prim widow who finds an unlikely release in belly-dancing clubs . 3 +121996 6540 The powder blues and sun-splashed whites of Tunis 2 +121997 6540 The powder blues and 2 +121998 6540 The powder blues 2 +121999 6540 powder blues 3 +122000 6540 powder 2 +122001 6540 sun-splashed whites of Tunis 2 +122002 6540 sun-splashed whites 3 +122003 6540 sun-splashed 2 +122004 6540 whites 2 +122005 6540 of Tunis 2 +122006 6540 Tunis 2 +122007 6540 make an alluring backdrop for this sensuous and spirited tale of a prim widow who finds an unlikely release in belly-dancing clubs . 3 +122008 6540 make an alluring backdrop for this sensuous and spirited tale of a prim widow who finds an unlikely release in belly-dancing clubs 2 +122009 6540 an alluring backdrop for this sensuous and spirited tale of a prim widow who finds an unlikely release in belly-dancing clubs 3 +122010 6540 an alluring backdrop 3 +122011 6540 alluring backdrop 2 +122012 6540 for this sensuous and spirited tale of a prim widow who finds an unlikely release in belly-dancing clubs 3 +122013 6540 this sensuous and spirited tale of a prim widow who finds an unlikely release in belly-dancing clubs 3 +122014 6540 this sensuous and spirited tale 4 +122015 6540 sensuous and spirited tale 3 +122016 6540 sensuous and spirited 4 +122017 6540 sensuous and 3 +122018 6540 sensuous 2 +122019 6540 of a prim widow who finds an unlikely release in belly-dancing clubs 2 +122020 6540 a prim widow who finds an unlikely release in belly-dancing clubs 2 +122021 6540 a prim widow 2 +122022 6540 prim widow 2 +122023 6540 who finds an unlikely release in belly-dancing clubs 2 +122024 6540 finds an unlikely release in belly-dancing clubs 2 +122025 6540 an unlikely release in belly-dancing clubs 2 +122026 6540 an unlikely release 2 +122027 6540 unlikely release 2 +122028 6540 in belly-dancing clubs 2 +122029 6540 belly-dancing clubs 2 +122030 6540 belly-dancing 2 +122031 6541 The amazing film work is so convincing that by movies ' end you 'll swear you are wet in some places and feel sand creeping in others . 3 +122032 6541 The amazing film work 4 +122033 6541 amazing film work 4 +122034 6541 film work 2 +122035 6541 is so convincing that by movies ' end you 'll swear you are wet in some places and feel sand creeping in others . 3 +122036 6541 is so convincing that by movies ' end you 'll swear you are wet in some places and feel sand creeping in others 3 +122037 6541 is so convincing 3 +122038 6541 so convincing 3 +122039 6541 that by movies ' end you 'll swear you are wet in some places and feel sand creeping in others 2 +122040 6541 by movies ' end you 'll swear you are wet in some places and feel sand creeping in others 3 +122041 6541 by movies ' end 2 +122042 6541 movies ' end 2 +122043 6541 you 'll swear you are wet in some places and feel sand creeping in others 2 +122044 6541 'll swear you are wet in some places and feel sand creeping in others 2 +122045 6541 swear you are wet in some places and feel sand creeping in others 2 +122046 6541 swear you are wet in some places and 2 +122047 6541 swear you are wet in some places 2 +122048 6541 you are wet in some places 1 +122049 6541 are wet in some places 2 +122050 6541 wet in some places 2 +122051 6541 in some places 2 +122052 6541 some places 2 +122053 6541 feel sand creeping in others 2 +122054 6541 sand creeping in others 2 +122055 6541 creeping in others 1 +122056 6541 creeping 1 +122057 6541 in others 2 +122058 6542 an insular world 2 +122059 6542 insular world 2 +122060 6542 insular 2 +122061 6542 gives the lie 1 +122062 6542 the lie 2 +122063 6542 showcases a group of dedicated artists 3 +122064 6542 a group of dedicated artists 3 +122065 6542 of dedicated artists 3 +122066 6542 dedicated artists 3 +122067 6542 dedicated 3 +122068 6543 A violent initiation rite for the audience , as much as it is for Angelique , the -LRB- opening -RRB- dance guarantees Karmen 's enthronement among the cinema 's memorable women . 2 +122069 6543 A violent initiation rite for the audience 2 +122070 6543 A violent initiation rite 2 +122071 6543 violent initiation rite 2 +122072 6543 initiation rite 3 +122073 6543 initiation 2 +122074 6543 rite 2 +122075 6543 , as much as it is for Angelique , the -LRB- opening -RRB- dance guarantees Karmen 's enthronement among the cinema 's memorable women . 3 +122076 6543 as much as it is for Angelique , the -LRB- opening -RRB- dance guarantees Karmen 's enthronement among the cinema 's memorable women . 3 +122077 6543 as much as it is for Angelique 2 +122078 6543 much as it is for Angelique 2 +122079 6543 as it is for Angelique 3 +122080 6543 it is for Angelique 2 +122081 6543 is for Angelique 2 +122082 6543 for Angelique 2 +122083 6543 Angelique 2 +122084 6543 , the -LRB- opening -RRB- dance guarantees Karmen 's enthronement among the cinema 's memorable women . 4 +122085 6543 the -LRB- opening -RRB- dance guarantees Karmen 's enthronement among the cinema 's memorable women . 3 +122086 6543 the -LRB- opening -RRB- dance 2 +122087 6543 -LRB- opening -RRB- dance 2 +122088 6543 opening -RRB- dance 3 +122089 6543 -RRB- dance 2 +122090 6543 guarantees Karmen 's enthronement among the cinema 's memorable women . 4 +122091 6543 guarantees Karmen 's enthronement among the cinema 's memorable women 3 +122092 6543 guarantees 3 +122093 6543 Karmen 's enthronement among the cinema 's memorable women 3 +122094 6543 Karmen 's enthronement 2 +122095 6543 Karmen 's 2 +122096 6543 Karmen 2 +122097 6543 enthronement 3 +122098 6543 among the cinema 's memorable women 3 +122099 6543 the cinema 's memorable women 3 +122100 6543 the cinema 's 2 +122101 6543 memorable women 3 +122102 6544 That Jack Nicholson makes this man so watchable is a tribute not only to his craft , but to his legend . 4 +122103 6544 That Jack Nicholson 2 +122104 6544 Jack Nicholson 2 +122105 6544 makes this man so watchable is a tribute not only to his craft , but to his legend . 4 +122106 6544 makes this man so watchable is a tribute not only to his craft , but to his legend 3 +122107 6544 this man so watchable is a tribute not only to his craft , but to his legend 3 +122108 6544 this man so watchable 3 +122109 6544 this man 2 +122110 6544 so watchable 3 +122111 6544 is a tribute not only to his craft , but to his legend 3 +122112 6544 is a tribute 3 +122113 6544 not only to his craft , but to his legend 3 +122114 6544 to his craft , but to his legend 3 +122115 6544 to his craft 2 +122116 6544 his craft 3 +122117 6544 , but to his legend 3 +122118 6544 to his legend 2 +122119 6544 his legend 2 +122120 6544 legend 2 +122121 6545 What you expect is just what you get ... assuming the bar of expectations has n't been raised above sixth-grade height . 0 +122122 6545 What you expect is just what you get ... assuming the bar of expectations has n't been raised above sixth-grade height 2 +122123 6545 What you expect is just what you get ... 2 +122124 6545 What you expect is just what you get 2 +122125 6545 What you expect 2 +122126 6545 you expect 2 +122127 6545 is just what you get 2 +122128 6545 just what you get 2 +122129 6545 you get 2 +122130 6545 assuming the bar of expectations has n't been raised above sixth-grade height 1 +122131 6545 assuming the bar of expectations 2 +122132 6545 the bar of expectations 2 +122133 6545 the bar 2 +122134 6545 of expectations 2 +122135 6545 has n't been raised above sixth-grade height 2 +122136 6545 been raised above sixth-grade height 2 +122137 6545 raised above sixth-grade height 2 +122138 6545 above sixth-grade height 2 +122139 6545 sixth-grade height 2 +122140 6545 sixth-grade 2 +122141 6545 height 2 +122142 6546 For all its brooding quality , Ash Wednesday is suspenseful and ultimately unpredictable , with a sterling ensemble cast . 3 +122143 6546 For all its brooding quality 2 +122144 6546 all its brooding quality 2 +122145 6546 its brooding quality 2 +122146 6546 brooding quality 2 +122147 6546 , Ash Wednesday is suspenseful and ultimately unpredictable , with a sterling ensemble cast . 4 +122148 6546 Ash Wednesday is suspenseful and ultimately unpredictable , with a sterling ensemble cast . 4 +122149 6546 is suspenseful and ultimately unpredictable , with a sterling ensemble cast . 4 +122150 6546 is suspenseful and ultimately unpredictable , with a sterling ensemble cast 3 +122151 6546 is suspenseful and ultimately unpredictable , 4 +122152 6546 is suspenseful and ultimately unpredictable 4 +122153 6546 suspenseful and ultimately unpredictable 4 +122154 6546 suspenseful and 2 +122155 6546 ultimately unpredictable 3 +122156 6546 with a sterling ensemble cast 2 +122157 6546 a sterling ensemble cast 4 +122158 6546 sterling ensemble cast 4 +122159 6547 Hollywood Ending is the most disappointing Woody Allen movie ever . 0 +122160 6547 is the most disappointing Woody Allen movie ever . 0 +122161 6547 is the most disappointing Woody Allen movie ever 0 +122162 6547 is the most disappointing Woody Allen movie 0 +122163 6547 the most disappointing Woody Allen movie 0 +122164 6547 most disappointing Woody Allen movie 0 +122165 6547 most disappointing 1 +122166 6547 Woody Allen movie 2 +122167 6547 Allen movie 2 +122168 6548 All in all , a great party . 3 +122169 6548 All in all , a great party 3 +122170 6548 in all , a great party 3 +122171 6548 all , a great party 3 +122172 6548 a great party 3 +122173 6548 great party 3 +122174 6549 Only masochistic moviegoers need apply . 1 +122175 6549 Only masochistic moviegoers 1 +122176 6549 masochistic moviegoers 1 +122177 6549 masochistic 1 +122178 6549 need apply . 2 +122179 6549 need apply 2 +122180 6550 Caviezel embodies the transformation of his character completely . 3 +122181 6550 Caviezel 2 +122182 6550 embodies the transformation of his character completely . 3 +122183 6550 embodies the transformation of his character completely 4 +122184 6550 embodies the transformation of his character 3 +122185 6550 embodies 2 +122186 6550 the transformation of his character 2 +122187 6550 the transformation 2 +122188 6550 of his character 3 +122189 6551 Rarely have I seen a film so willing to champion the fallibility of the human heart . 4 +122190 6551 have I seen a film so willing to champion the fallibility of the human heart . 4 +122191 6551 have I seen a film so willing to champion the fallibility of the human heart 3 +122192 6551 seen a film so willing to champion the fallibility of the human heart 4 +122193 6551 a film so willing to champion the fallibility of the human heart 3 +122194 6551 so willing to champion the fallibility of the human heart 3 +122195 6551 so willing 2 +122196 6551 to champion the fallibility of the human heart 3 +122197 6551 champion the fallibility of the human heart 3 +122198 6551 the fallibility of the human heart 2 +122199 6551 the fallibility 2 +122200 6551 fallibility 2 +122201 6551 of the human heart 3 +122202 6551 the human heart 2 +122203 6551 human heart 2 +122204 6552 The entire film is one big excuse to play one lewd scene after another . 0 +122205 6552 The entire film 2 +122206 6552 entire film 2 +122207 6552 is one big excuse to play one lewd scene after another . 1 +122208 6552 is one big excuse to play one lewd scene after another 1 +122209 6552 one big excuse to play one lewd scene after another 1 +122210 6552 one big excuse 2 +122211 6552 big excuse 1 +122212 6552 to play one lewd scene after another 1 +122213 6552 play one lewd scene after another 1 +122214 6552 play one lewd scene 2 +122215 6552 one lewd scene 2 +122216 6552 lewd scene 2 +122217 6552 lewd 2 +122218 6553 Leigh 's daring here is that without once denying the hardscrabble lives of people on the economic fringes of Margaret Thatcher 's ruinous legacy , he insists on the importance of those moments when people can connect and express their love for each other . 2 +122219 6553 Leigh 's daring 2 +122220 6553 Leigh 's 2 +122221 6553 here is that without once denying the hardscrabble lives of people on the economic fringes of Margaret Thatcher 's ruinous legacy , he insists on the importance of those moments when people can connect and express their love for each other . 3 +122222 6553 is that without once denying the hardscrabble lives of people on the economic fringes of Margaret Thatcher 's ruinous legacy , he insists on the importance of those moments when people can connect and express their love for each other . 2 +122223 6553 is that without once denying the hardscrabble lives of people on the economic fringes of Margaret Thatcher 's ruinous legacy , he insists on the importance of those moments when people can connect and express their love for each other 2 +122224 6553 that without once denying the hardscrabble lives of people on the economic fringes of Margaret Thatcher 's ruinous legacy , he insists on the importance of those moments when people can connect and express their love for each other 3 +122225 6553 without once denying the hardscrabble lives of people on the economic fringes of Margaret Thatcher 's ruinous legacy , he insists on the importance of those moments when people can connect and express their love for each other 3 +122226 6553 without once denying the hardscrabble lives of people on the economic fringes of Margaret Thatcher 's ruinous legacy 3 +122227 6553 once denying the hardscrabble lives of people on the economic fringes of Margaret Thatcher 's ruinous legacy 2 +122228 6553 denying the hardscrabble lives of people on the economic fringes of Margaret Thatcher 's ruinous legacy 2 +122229 6553 the hardscrabble lives of people on the economic fringes of Margaret Thatcher 's ruinous legacy 2 +122230 6553 the hardscrabble lives 2 +122231 6553 hardscrabble lives 1 +122232 6553 hardscrabble 2 +122233 6553 of people on the economic fringes of Margaret Thatcher 's ruinous legacy 2 +122234 6553 people on the economic fringes of Margaret Thatcher 's ruinous legacy 1 +122235 6553 on the economic fringes of Margaret Thatcher 's ruinous legacy 2 +122236 6553 the economic fringes of Margaret Thatcher 's ruinous legacy 2 +122237 6553 the economic fringes 1 +122238 6553 economic fringes 2 +122239 6553 of Margaret Thatcher 's ruinous legacy 2 +122240 6553 Margaret Thatcher 's ruinous legacy 1 +122241 6553 Margaret Thatcher 's 2 +122242 6553 Margaret 2 +122243 6553 Thatcher 's 2 +122244 6553 Thatcher 2 +122245 6553 ruinous legacy 2 +122246 6553 ruinous 2 +122247 6553 , he insists on the importance of those moments when people can connect and express their love for each other 3 +122248 6553 he insists on the importance of those moments when people can connect and express their love for each other 2 +122249 6553 insists on the importance of those moments when people can connect and express their love for each other 4 +122250 6553 insists on the importance of those moments 3 +122251 6553 on the importance of those moments 3 +122252 6553 the importance of those moments 2 +122253 6553 of those moments 2 +122254 6553 when people can connect and express their love for each other 4 +122255 6553 people can connect and express their love for each other 3 +122256 6553 can connect and express their love for each other 2 +122257 6553 connect and express their love for each other 2 +122258 6553 connect and express their love 3 +122259 6553 connect and express 2 +122260 6553 connect and 2 +122261 6553 their love 2 +122262 6554 -LRB- H -RRB- ad I suffered and bled on the hard ground of Ia Drang , I 'd want something a bit more complex than We Were Soldiers to be remembered by . 1 +122263 6554 -LRB- H -RRB- ad I suffered and bled on the hard ground of Ia Drang 2 +122264 6554 -LRB- H -RRB- 2 +122265 6554 H -RRB- 2 +122266 6554 ad I suffered and bled on the hard ground of Ia Drang 1 +122267 6554 ad I 2 +122268 6554 suffered and bled on the hard ground of Ia Drang 2 +122269 6554 suffered and bled 1 +122270 6554 suffered and 2 +122271 6554 on the hard ground of Ia Drang 2 +122272 6554 the hard ground of Ia Drang 2 +122273 6554 the hard ground 2 +122274 6554 hard ground 1 +122275 6554 of Ia Drang 2 +122276 6554 Ia Drang 2 +122277 6554 Ia 2 +122278 6554 , I 'd want something a bit more complex than We Were Soldiers to be remembered by . 1 +122279 6554 I 'd want something a bit more complex than We Were Soldiers to be remembered by . 2 +122280 6554 'd want something a bit more complex than We Were Soldiers to be remembered by . 2 +122281 6554 'd want something a bit more complex than We Were Soldiers to be remembered by 2 +122282 6554 want something a bit more complex than We Were Soldiers to be remembered by 2 +122283 6554 something a bit more complex than We Were Soldiers to be remembered by 2 +122284 6554 a bit more complex than We Were Soldiers to be remembered by 2 +122285 6554 a bit more complex 2 +122286 6554 than We Were Soldiers to be remembered by 2 +122287 6554 We Were Soldiers to be remembered by 2 +122288 6554 Were Soldiers to be remembered by 2 +122289 6554 Soldiers to be remembered by 2 +122290 6554 to be remembered by 2 +122291 6554 be remembered by 2 +122292 6554 remembered by 2 +122293 6555 The filmmakers wisely decided to let Crocodile Hunter Steve Irwin do what he does best , and fashion a story around him . 3 +122294 6555 wisely decided to let Crocodile Hunter Steve Irwin do what he does best , and fashion a story around him . 3 +122295 6555 decided to let Crocodile Hunter Steve Irwin do what he does best , and fashion a story around him . 3 +122296 6555 decided to let Crocodile Hunter Steve Irwin do what he does best , and fashion a story around him 3 +122297 6555 to let Crocodile Hunter Steve Irwin do what he does best , and fashion a story around him 2 +122298 6555 let Crocodile Hunter Steve Irwin do what he does best , and fashion a story around him 3 +122299 6555 let Crocodile Hunter Steve Irwin do what he does best , and 2 +122300 6555 let Crocodile Hunter Steve Irwin do what he does best , 3 +122301 6555 let Crocodile Hunter Steve Irwin do what he does best 3 +122302 6555 Crocodile Hunter Steve Irwin do what he does best 3 +122303 6555 Crocodile Hunter Steve Irwin 2 +122304 6555 Hunter Steve Irwin 2 +122305 6555 Steve Irwin 2 +122306 6555 do what he does best 4 +122307 6555 what he does best 4 +122308 6555 he does best 3 +122309 6555 does best 3 +122310 6555 fashion a story around him 2 +122311 6555 fashion a story 2 +122312 6556 Despite the pyrotechnics , Narc is strictly by the book . 2 +122313 6556 Despite the pyrotechnics 2 +122314 6556 the pyrotechnics 2 +122315 6556 , Narc is strictly by the book . 2 +122316 6556 Narc is strictly by the book . 2 +122317 6556 is strictly by the book . 2 +122318 6556 is strictly by the book 2 +122319 6557 It 's the cute frissons of discovery and humor between Chaplin and Kidman that keep this nicely wound clock not just ticking , but humming . 3 +122320 6557 's the cute frissons of discovery and humor between Chaplin and Kidman that keep this nicely wound clock not just ticking , but humming . 3 +122321 6557 's the cute frissons of discovery and humor between Chaplin and Kidman that keep this nicely wound clock not just ticking , but humming 3 +122322 6557 the cute frissons of discovery and humor between Chaplin and Kidman that keep this nicely wound clock not just ticking , but humming 4 +122323 6557 the cute frissons of discovery and humor between Chaplin and Kidman 4 +122324 6557 the cute frissons 2 +122325 6557 cute frissons 3 +122326 6557 frissons 2 +122327 6557 of discovery and humor between Chaplin and Kidman 2 +122328 6557 discovery and humor between Chaplin and Kidman 3 +122329 6557 discovery and humor 3 +122330 6557 between Chaplin and Kidman 3 +122331 6557 that keep this nicely wound clock not just ticking , but humming 4 +122332 6557 keep this nicely wound clock not just ticking , but humming 4 +122333 6557 this nicely wound clock not just ticking , but humming 3 +122334 6557 nicely wound clock not just ticking , but humming 3 +122335 6557 wound clock not just ticking , but humming 2 +122336 6557 wound clock 2 +122337 6557 clock 2 +122338 6557 not just ticking , but humming 3 +122339 6557 just ticking , but humming 2 +122340 6557 just ticking , but 2 +122341 6557 just ticking , 2 +122342 6557 just ticking 2 +122343 6558 Simply and eloquently articulates the tangled feelings of particular New Yorkers deeply touched by an unprecedented tragedy . 4 +122344 6558 Simply and eloquently 3 +122345 6558 Simply and 2 +122346 6558 articulates the tangled feelings of particular New Yorkers deeply touched by an unprecedented tragedy . 3 +122347 6558 articulates the tangled feelings of particular New Yorkers deeply touched by an unprecedented tragedy 3 +122348 6558 articulates 3 +122349 6558 the tangled feelings of particular New Yorkers deeply touched by an unprecedented tragedy 2 +122350 6558 the tangled feelings 2 +122351 6558 tangled feelings 2 +122352 6558 tangled 2 +122353 6558 of particular New Yorkers deeply touched by an unprecedented tragedy 2 +122354 6558 particular New Yorkers deeply touched by an unprecedented tragedy 3 +122355 6558 particular New Yorkers 2 +122356 6558 deeply touched by an unprecedented tragedy 2 +122357 6558 touched by an unprecedented tragedy 1 +122358 6558 by an unprecedented tragedy 2 +122359 6558 an unprecedented tragedy 1 +122360 6558 unprecedented tragedy 2 +122361 6559 Collapses under its own meager weight . 1 +122362 6559 Collapses under its own meager weight 1 +122363 6559 under its own meager weight 1 +122364 6559 its own meager weight 1 +122365 6559 own meager weight 1 +122366 6559 meager weight 1 +122367 6559 meager 1 +122368 6560 The Good Girl is a film in which the talent is undeniable but the results are underwhelming . 1 +122369 6560 The Good Girl is a film in which the talent is undeniable but the results are underwhelming 2 +122370 6560 The Good Girl is a film in which the talent is undeniable but 3 +122371 6560 The Good Girl is a film in which the talent is undeniable 3 +122372 6560 is a film in which the talent is undeniable 3 +122373 6560 a film in which the talent is undeniable 4 +122374 6560 in which the talent is undeniable 4 +122375 6560 the talent is undeniable 4 +122376 6560 the talent 2 +122377 6560 the results are underwhelming 2 +122378 6560 are underwhelming 1 +122379 6560 underwhelming 1 +122380 6561 Start reading your scripts before signing that dotted line . 1 +122381 6561 Start reading your scripts before signing that dotted line 1 +122382 6561 reading your scripts before signing that dotted line 1 +122383 6561 reading your scripts 2 +122384 6561 your scripts 2 +122385 6561 before signing that dotted line 2 +122386 6561 signing that dotted line 2 +122387 6561 signing 3 +122388 6561 that dotted line 2 +122389 6561 dotted line 2 +122390 6561 dotted 2 +122391 6562 A stirring , funny and finally transporting re-imagining of Beauty and the Beast and 1930s horror films 4 +122392 6562 A stirring , funny and 3 +122393 6562 A stirring , funny 3 +122394 6562 stirring , funny 3 +122395 6562 stirring , 3 +122396 6562 finally transporting re-imagining of Beauty and the Beast and 1930s horror films 3 +122397 6562 transporting re-imagining of Beauty and the Beast and 1930s horror films 2 +122398 6562 re-imagining of Beauty and the Beast and 1930s horror films 2 +122399 6562 re-imagining of Beauty and 3 +122400 6562 re-imagining of Beauty 2 +122401 6562 re-imagining 2 +122402 6562 of Beauty 2 +122403 6562 the Beast and 1930s horror films 2 +122404 6562 the Beast and 2 +122405 6562 1930s horror films 2 +122406 6562 1930s 2 +122407 6563 Abysmally pathetic 0 +122408 6563 Abysmally 1 +122409 6564 The best animated feature to hit theaters since Beauty and the Beast 11 years ago . 4 +122410 6564 The best animated 4 +122411 6564 best animated 3 +122412 6564 feature to hit theaters since Beauty and the Beast 11 years ago . 3 +122413 6564 feature to hit theaters since Beauty and the Beast 11 years ago 3 +122414 6564 to hit theaters since Beauty and the Beast 11 years ago 3 +122415 6564 hit theaters since Beauty and the Beast 11 years ago 2 +122416 6564 hit theaters 2 +122417 6564 since Beauty and the Beast 11 years ago 2 +122418 6564 since Beauty and the Beast 3 +122419 6564 Beauty and the Beast 2 +122420 6564 11 years ago 2 +122421 6564 11 years 2 +122422 6565 A farce of a parody of a comedy of a premise , it is n't a comparison to reality so much as it is a commentary about our knowledge of films . 2 +122423 6565 A farce of a parody of a comedy of a premise 1 +122424 6565 A farce 1 +122425 6565 of a parody of a comedy of a premise 1 +122426 6565 a parody of a comedy of a premise 2 +122427 6565 a parody 2 +122428 6565 of a comedy of a premise 3 +122429 6565 a comedy of a premise 3 +122430 6565 of a premise 2 +122431 6565 , it is n't a comparison to reality so much as it is a commentary about our knowledge of films . 1 +122432 6565 it is n't a comparison to reality so much as it is a commentary about our knowledge of films . 3 +122433 6565 is n't a comparison to reality so much as it is a commentary about our knowledge of films . 2 +122434 6565 is n't a comparison to reality so much as it is a commentary about our knowledge of films 2 +122435 6565 is n't a comparison to reality 2 +122436 6565 is n't a comparison 2 +122437 6565 a comparison 2 +122438 6565 to reality 2 +122439 6565 so much as it is a commentary about our knowledge of films 3 +122440 6565 as it is a commentary about our knowledge of films 2 +122441 6565 it is a commentary about our knowledge of films 2 +122442 6565 is a commentary about our knowledge of films 3 +122443 6565 a commentary about our knowledge of films 1 +122444 6565 a commentary 1 +122445 6565 about our knowledge of films 2 +122446 6565 our knowledge of films 2 +122447 6565 our knowledge 2 +122448 6566 It 's surprisingly decent , particularly for a tenth installment in a series . 3 +122449 6566 's surprisingly decent , particularly for a tenth installment in a series . 3 +122450 6566 's surprisingly decent , particularly for a tenth installment in a series 3 +122451 6566 's surprisingly decent , particularly 3 +122452 6566 's surprisingly decent , 3 +122453 6566 's surprisingly decent 3 +122454 6566 for a tenth installment in a series 2 +122455 6566 a tenth installment in a series 2 +122456 6566 a tenth installment 2 +122457 6566 tenth installment 2 +122458 6566 tenth 2 +122459 6567 Rubbo 's humorously tendentious intervention into the who-wrote-Shakespeare controversy . 3 +122460 6567 Rubbo 's humorously 2 +122461 6567 humorously 3 +122462 6567 tendentious intervention into the who-wrote-Shakespeare controversy . 1 +122463 6567 tendentious intervention into the who-wrote-Shakespeare controversy 2 +122464 6567 tendentious intervention 1 +122465 6567 tendentious 1 +122466 6567 intervention 2 +122467 6567 into the who-wrote-Shakespeare controversy 2 +122468 6567 the who-wrote-Shakespeare controversy 2 +122469 6567 who-wrote-Shakespeare controversy 2 +122470 6567 who-wrote-Shakespeare 2 +122471 6568 Spain 's greatest star wattage does n't overcome the tumult of maudlin tragedy . 1 +122472 6568 Spain 's greatest star wattage 3 +122473 6568 Spain 's 2 +122474 6568 greatest star wattage 3 +122475 6568 star wattage 2 +122476 6568 wattage 2 +122477 6568 does n't overcome the tumult of maudlin tragedy . 1 +122478 6568 does n't overcome the tumult of maudlin tragedy 1 +122479 6568 overcome the tumult of maudlin tragedy 2 +122480 6568 the tumult of maudlin tragedy 2 +122481 6568 of maudlin tragedy 2 +122482 6568 maudlin tragedy 2 +122483 6569 Real Women Have Curves does n't offer any easy answers . 2 +122484 6569 does n't offer any easy answers . 3 +122485 6569 does n't offer any easy answers 2 +122486 6569 offer any easy answers 3 +122487 6569 any easy answers 2 +122488 6570 That neither protagonist has a distinguishable condition hardly matters because both are just actory concoctions , defined by childlike dimness and a handful of quirks . 1 +122489 6570 That neither protagonist has a distinguishable condition 2 +122490 6570 neither protagonist has a distinguishable condition 1 +122491 6570 neither protagonist 2 +122492 6570 has a distinguishable condition 2 +122493 6570 a distinguishable condition 2 +122494 6570 distinguishable condition 2 +122495 6570 distinguishable 3 +122496 6570 hardly matters because both are just actory concoctions , defined by childlike dimness and a handful of quirks . 2 +122497 6570 matters because both are just actory concoctions , defined by childlike dimness and a handful of quirks . 1 +122498 6570 matters because both are just actory concoctions , defined by childlike dimness and a handful of quirks 2 +122499 6570 because both are just actory concoctions , defined by childlike dimness and a handful of quirks 1 +122500 6570 both are just actory concoctions , defined by childlike dimness and a handful of quirks 1 +122501 6570 are just actory concoctions , defined by childlike dimness and a handful of quirks 0 +122502 6570 actory concoctions , defined by childlike dimness and a handful of quirks 1 +122503 6570 actory concoctions , 2 +122504 6570 actory concoctions 2 +122505 6570 actory 2 +122506 6570 concoctions 2 +122507 6570 defined by childlike dimness and a handful of quirks 1 +122508 6570 defined 3 +122509 6570 by childlike dimness and a handful of quirks 1 +122510 6570 childlike dimness and a handful of quirks 2 +122511 6570 childlike dimness and 0 +122512 6570 childlike dimness 1 +122513 6570 dimness 1 +122514 6570 a handful of quirks 2 +122515 6570 of quirks 2 +122516 6571 Replacing John Carpenter 's stylish tracking shots is degraded , handheld Blair Witch video-cam footage . 1 +122517 6571 Replacing John Carpenter 's stylish tracking shots 1 +122518 6571 Replacing John Carpenter 's 2 +122519 6571 stylish tracking shots 3 +122520 6571 tracking shots 2 +122521 6571 tracking 2 +122522 6571 is degraded , handheld Blair Witch video-cam footage . 1 +122523 6571 is degraded , handheld Blair Witch video-cam footage 1 +122524 6571 degraded , handheld Blair Witch video-cam footage 1 +122525 6571 , handheld Blair Witch video-cam footage 2 +122526 6571 handheld Blair Witch video-cam footage 2 +122527 6571 handheld 3 +122528 6571 Blair Witch video-cam footage 1 +122529 6571 Witch video-cam footage 2 +122530 6571 video-cam footage 1 +122531 6571 video-cam 2 +122532 6572 Your response to its new sequel , Analyze That , may hinge on what you thought of the first film . 2 +122533 6572 Your response to its new sequel , Analyze That , 2 +122534 6572 Your response to its new sequel , Analyze That 2 +122535 6572 Your response to its new sequel , 2 +122536 6572 Your response to its new sequel 2 +122537 6572 Your response 2 +122538 6572 response 2 +122539 6572 to its new sequel 2 +122540 6572 its new sequel 2 +122541 6572 new sequel 3 +122542 6572 may hinge on what you thought of the first film . 2 +122543 6572 may hinge on what you thought of the first film 2 +122544 6572 hinge on what you thought of the first film 2 +122545 6572 on what you thought of the first film 2 +122546 6572 what you thought of the first film 2 +122547 6572 you thought of the first film 2 +122548 6572 thought of the first film 2 +122549 6573 Smarter than its commercials make it seem . 3 +122550 6573 Smarter than its commercials 2 +122551 6573 than its commercials 2 +122552 6573 its commercials 2 +122553 6573 commercials 2 +122554 6573 make it seem . 2 +122555 6573 make it seem 2 +122556 6574 Missteps take what was otherwise a fascinating , riveting story and send it down the path of the mundane . 2 +122557 6574 Missteps 2 +122558 6574 take what was otherwise a fascinating , riveting story and send it down the path of the mundane . 1 +122559 6574 take what was otherwise a fascinating , riveting story and send it down the path of the mundane 1 +122560 6574 take what was otherwise a fascinating , riveting story and 2 +122561 6574 take what was otherwise a fascinating , riveting story 2 +122562 6574 what was otherwise a fascinating , riveting story 4 +122563 6574 was otherwise a fascinating , riveting story 3 +122564 6574 was otherwise 2 +122565 6574 a fascinating , riveting story 4 +122566 6574 fascinating , riveting story 4 +122567 6574 , riveting story 3 +122568 6574 send it down the path of the mundane 1 +122569 6574 down the path of the mundane 1 +122570 6574 the path of the mundane 1 +122571 6574 of the mundane 2 +122572 6574 the mundane 1 +122573 6575 What 's really sad is to see two Academy Award winning actresses -LRB- and one Academy Award winning actor -RRB- succumb to appearing in this junk that 's TV sitcom material at best . 1 +122574 6575 What 's really sad 2 +122575 6575 's really sad 1 +122576 6575 really sad 2 +122577 6575 is to see two Academy Award winning actresses -LRB- and one Academy Award winning actor -RRB- succumb to appearing in this junk that 's TV sitcom material at best . 0 +122578 6575 is to see two Academy Award winning actresses -LRB- and one Academy Award winning actor -RRB- succumb to appearing in this junk that 's TV sitcom material at best 0 +122579 6575 to see two Academy Award winning actresses -LRB- and one Academy Award winning actor -RRB- succumb to appearing in this junk that 's TV sitcom material at best 1 +122580 6575 see two Academy Award winning actresses -LRB- and one Academy Award winning actor -RRB- succumb to appearing in this junk that 's TV sitcom material at best 1 +122581 6575 two Academy Award winning actresses -LRB- and one Academy Award winning actor -RRB- succumb to appearing in this junk that 's TV sitcom material at best 0 +122582 6575 two Academy Award 2 +122583 6575 Academy Award 3 +122584 6575 winning actresses -LRB- and one Academy Award winning actor -RRB- succumb to appearing in this junk that 's TV sitcom material at best 1 +122585 6575 actresses -LRB- and one Academy Award winning actor -RRB- succumb to appearing in this junk that 's TV sitcom material at best 1 +122586 6575 actresses -LRB- and one Academy Award winning actor -RRB- 2 +122587 6575 -LRB- and one Academy Award winning actor -RRB- 2 +122588 6575 -LRB- and one Academy Award winning actor 2 +122589 6575 one Academy Award winning actor 2 +122590 6575 one Academy Award 2 +122591 6575 winning actor 4 +122592 6575 succumb to appearing in this junk that 's TV sitcom material at best 0 +122593 6575 to appearing in this junk that 's TV sitcom material at best 1 +122594 6575 appearing in this junk that 's TV sitcom material at best 1 +122595 6575 appearing 2 +122596 6575 in this junk that 's TV sitcom material at best 1 +122597 6575 this junk that 's TV sitcom material at best 0 +122598 6575 this junk 1 +122599 6575 that 's TV sitcom material at best 2 +122600 6575 's TV sitcom material at best 3 +122601 6575 TV sitcom material at best 1 +122602 6575 TV sitcom material 1 +122603 6575 sitcom material 1 +122604 6576 Who are ` they ' ? 2 +122605 6576 are ` they ' ? 2 +122606 6576 are ` they ' 2 +122607 6577 At the film 's centre is a precisely layered performance by an actor in his mid-seventies , Michel Piccoli . 2 +122608 6577 the film 's centre is a precisely layered performance by an actor in his mid-seventies , Michel Piccoli . 3 +122609 6577 the film 's centre 2 +122610 6577 is a precisely layered performance by an actor in his mid-seventies , Michel Piccoli . 3 +122611 6577 is a precisely layered performance by an actor in his mid-seventies , Michel Piccoli 4 +122612 6577 a precisely layered performance by an actor in his mid-seventies , Michel Piccoli 4 +122613 6577 a precisely layered performance 3 +122614 6577 precisely layered performance 4 +122615 6577 layered performance 3 +122616 6577 by an actor in his mid-seventies , Michel Piccoli 2 +122617 6577 an actor in his mid-seventies , Michel Piccoli 2 +122618 6577 in his mid-seventies , Michel Piccoli 2 +122619 6577 his mid-seventies , Michel Piccoli 2 +122620 6577 his mid-seventies , 2 +122621 6577 his mid-seventies 2 +122622 6577 mid-seventies 2 +122623 6577 Michel Piccoli 2 +122624 6578 Everything is pegged into the groove of a New York dating comedy with ` issues ' to simplify . 2 +122625 6578 is pegged into the groove of a New York dating comedy with ` issues ' to simplify . 2 +122626 6578 is pegged into the groove of a New York dating comedy with ` issues ' to simplify 2 +122627 6578 pegged into the groove of a New York dating comedy with ` issues ' to simplify 3 +122628 6578 pegged into the groove of a New York 2 +122629 6578 pegged 2 +122630 6578 into the groove of a New York 2 +122631 6578 the groove of a New York 2 +122632 6578 the groove 2 +122633 6578 of a New York 2 +122634 6578 a New York 2 +122635 6578 dating comedy with ` issues ' to simplify 1 +122636 6578 dating comedy with ` issues ' 2 +122637 6578 dating comedy 2 +122638 6578 with ` issues ' 1 +122639 6578 with ` issues 2 +122640 6578 with ` 2 +122641 6578 to simplify 2 +122642 6578 simplify 2 +122643 6579 A weird , arresting little ride . 3 +122644 6579 A weird , arresting little ride 1 +122645 6579 A weird , 2 +122646 6579 A weird 2 +122647 6579 arresting little ride 3 +122648 6579 little ride 2 +122649 6580 One funny popcorn flick . 3 +122650 6580 One funny popcorn 3 +122651 6580 funny popcorn 3 +122652 6581 But as you watch the movie , you 're too interested to care . 4 +122653 6581 as you watch the movie , you 're too interested to care . 3 +122654 6581 as you watch the movie 2 +122655 6581 you watch the movie 2 +122656 6581 watch the movie 3 +122657 6581 , you 're too interested to care . 3 +122658 6581 you 're too interested to care . 3 +122659 6581 're too interested to care . 2 +122660 6581 're too interested to care 2 +122661 6581 too interested to care 2 +122662 6581 interested to care 2 +122663 6582 Short-story quaint , touchingly mending a child 's pain for his dead mother via communication with an old woman straight out of Eudora Welty . 3 +122664 6582 Short-story quaint , touchingly mending a child 's pain for his dead mother via communication with an old woman straight out of Eudora Welty 3 +122665 6582 Short-story quaint , 2 +122666 6582 Short-story quaint 3 +122667 6582 Short-story 2 +122668 6582 touchingly mending a child 's pain for his dead mother via communication with an old woman straight out of Eudora Welty 3 +122669 6582 touchingly 3 +122670 6582 mending a child 's pain for his dead mother via communication with an old woman straight out of Eudora Welty 1 +122671 6582 mending a child 's pain for his dead mother via communication 2 +122672 6582 mending 2 +122673 6582 a child 's pain for his dead mother via communication 2 +122674 6582 a child 's pain 0 +122675 6582 for his dead mother via communication 2 +122676 6582 his dead mother via communication 2 +122677 6582 his dead mother 1 +122678 6582 dead mother 1 +122679 6582 via communication 2 +122680 6582 communication 2 +122681 6582 with an old woman straight out of Eudora Welty 2 +122682 6582 an old woman straight out of Eudora Welty 2 +122683 6582 an old woman 2 +122684 6582 old woman 2 +122685 6582 straight out of Eudora Welty 2 +122686 6582 out of Eudora Welty 3 +122687 6582 of Eudora Welty 2 +122688 6582 Eudora Welty 2 +122689 6582 Eudora 2 +122690 6582 Welty 2 +122691 6583 It 's difficult to discern if this is a crazy work of disturbed genius or merely 90 minutes of post-adolescent Electra rebellion . 2 +122692 6583 's difficult to discern if this is a crazy work of disturbed genius or merely 90 minutes of post-adolescent Electra rebellion . 1 +122693 6583 's difficult to discern if this is a crazy work of disturbed genius or merely 90 minutes of post-adolescent Electra rebellion 1 +122694 6583 difficult to discern if this is a crazy work of disturbed genius or merely 90 minutes of post-adolescent Electra rebellion 0 +122695 6583 to discern if this is a crazy work of disturbed genius or merely 90 minutes of post-adolescent Electra rebellion 1 +122696 6583 discern if this is a crazy work of disturbed genius or merely 90 minutes of post-adolescent Electra rebellion 2 +122697 6583 discern 2 +122698 6583 if this is a crazy work of disturbed genius or merely 90 minutes of post-adolescent Electra rebellion 1 +122699 6583 this is a crazy work of disturbed genius or merely 90 minutes of post-adolescent Electra rebellion 2 +122700 6583 is a crazy work of disturbed genius or merely 90 minutes of post-adolescent Electra rebellion 2 +122701 6583 a crazy work of disturbed genius or merely 90 minutes of post-adolescent Electra rebellion 3 +122702 6583 a crazy work of disturbed genius or 3 +122703 6583 a crazy work of disturbed genius 3 +122704 6583 a crazy work 2 +122705 6583 crazy work 1 +122706 6583 of disturbed genius 3 +122707 6583 disturbed genius 2 +122708 6583 merely 90 minutes of post-adolescent Electra rebellion 1 +122709 6583 merely 90 minutes 2 +122710 6583 of post-adolescent Electra rebellion 2 +122711 6583 post-adolescent Electra rebellion 2 +122712 6583 post-adolescent 2 +122713 6583 Electra rebellion 2 +122714 6583 Electra 2 +122715 6584 An unremarkable , modern action\/comedy buddy movie whose only nod to nostalgia is in the title . 2 +122716 6584 An unremarkable , modern action\/comedy buddy movie whose only nod to nostalgia is in the title 1 +122717 6584 An unremarkable , 1 +122718 6584 An unremarkable 2 +122719 6584 modern action\/comedy buddy movie whose only nod to nostalgia is in the title 1 +122720 6584 modern action\/comedy buddy movie 2 +122721 6584 action\/comedy buddy movie 3 +122722 6584 action\/comedy 2 +122723 6584 whose only nod to nostalgia is in the title 2 +122724 6584 whose only nod to nostalgia 2 +122725 6584 whose only nod 2 +122726 6584 only nod 2 +122727 6584 nod 2 +122728 6584 to nostalgia 2 +122729 6584 is in the title 2 +122730 6585 Helmer Hudlin tries to make a hip comedy , but his dependence on slapstick defeats the possibility of creating a more darkly edged tome . 1 +122731 6585 Helmer Hudlin tries to make a hip comedy , but his dependence on slapstick defeats the possibility of creating a more darkly edged tome 0 +122732 6585 Helmer Hudlin tries to make a hip comedy , but 2 +122733 6585 Helmer Hudlin tries to make a hip comedy , 1 +122734 6585 Helmer Hudlin tries to make a hip comedy 2 +122735 6585 Helmer Hudlin 2 +122736 6585 tries to make a hip comedy 2 +122737 6585 to make a hip comedy 2 +122738 6585 make a hip comedy 3 +122739 6585 a hip comedy 4 +122740 6585 hip comedy 3 +122741 6585 his dependence on slapstick defeats the possibility of creating a more darkly edged tome 2 +122742 6585 his dependence on slapstick 1 +122743 6585 his dependence 2 +122744 6585 dependence 2 +122745 6585 on slapstick 2 +122746 6585 defeats the possibility of creating a more darkly edged tome 1 +122747 6585 the possibility of creating a more darkly edged tome 2 +122748 6585 the possibility of creating a more darkly 2 +122749 6585 of creating a more darkly 2 +122750 6585 creating a more darkly 2 +122751 6585 a more darkly 2 +122752 6585 more darkly 2 +122753 6585 edged tome 2 +122754 6585 edged 2 +122755 6585 tome 2 +122756 6586 I am highly amused by the idea that we have come to a point in society where it has been deemed important enough to make a film in which someone has to be hired to portray Richard Dawson . 4 +122757 6586 am highly amused by the idea that we have come to a point in society where it has been deemed important enough to make a film in which someone has to be hired to portray Richard Dawson . 1 +122758 6586 am highly amused by the idea that we have come to a point in society where it has been deemed important enough to make a film in which someone has to be hired to portray Richard Dawson 2 +122759 6586 am highly amused by the idea that we have come to a point in society 2 +122760 6586 highly amused by the idea that we have come to a point in society 2 +122761 6586 amused by the idea that we have come to a point in society 2 +122762 6586 amused by the idea 3 +122763 6586 by the idea 2 +122764 6586 that we have come to a point in society 2 +122765 6586 we have come to a point in society 2 +122766 6586 have come to a point in society 2 +122767 6586 come to a point in society 2 +122768 6586 to a point in society 2 +122769 6586 a point in society 2 +122770 6586 in society 2 +122771 6586 where it has been deemed important enough to make a film in which someone has to be hired to portray Richard Dawson 2 +122772 6586 it has been deemed important enough to make a film in which someone has to be hired to portray Richard Dawson 3 +122773 6586 has been deemed important enough to make a film in which someone has to be hired to portray Richard Dawson 2 +122774 6586 been deemed important enough to make a film in which someone has to be hired to portray Richard Dawson 3 +122775 6586 deemed important enough to make a film in which someone has to be hired to portray Richard Dawson 3 +122776 6586 deemed 2 +122777 6586 important enough to make a film in which someone has to be hired to portray Richard Dawson 2 +122778 6586 important enough 2 +122779 6586 to make a film in which someone has to be hired to portray Richard Dawson 1 +122780 6586 make a film in which someone has to be hired to portray Richard Dawson 1 +122781 6586 a film in which someone has to be hired to portray Richard Dawson 2 +122782 6586 in which someone has to be hired to portray Richard Dawson 2 +122783 6586 someone has to be hired to portray Richard Dawson 2 +122784 6586 has to be hired to portray Richard Dawson 2 +122785 6586 to be hired to portray Richard Dawson 2 +122786 6586 be hired to portray Richard Dawson 2 +122787 6586 hired to portray Richard Dawson 2 +122788 6586 hired 2 +122789 6586 to portray Richard Dawson 2 +122790 6586 portray Richard Dawson 2 +122791 6586 Richard Dawson 2 +122792 6587 Earnest , unsubtle and Hollywood-predictable , Green Dragon is still a deeply moving effort to put a human face on the travail of thousands of Vietnamese . 3 +122793 6587 Earnest , unsubtle and Hollywood-predictable 1 +122794 6587 , unsubtle and Hollywood-predictable 0 +122795 6587 unsubtle and Hollywood-predictable 2 +122796 6587 unsubtle and 1 +122797 6587 Hollywood-predictable 1 +122798 6587 , Green Dragon is still a deeply moving effort to put a human face on the travail of thousands of Vietnamese . 4 +122799 6587 Green Dragon is still a deeply moving effort to put a human face on the travail of thousands of Vietnamese . 3 +122800 6587 is still a deeply moving effort to put a human face on the travail of thousands of Vietnamese . 3 +122801 6587 is still a deeply moving effort to put a human face on the travail of thousands of Vietnamese 3 +122802 6587 a deeply moving effort to put a human face on the travail of thousands of Vietnamese 4 +122803 6587 deeply moving effort to put a human face on the travail of thousands of Vietnamese 3 +122804 6587 effort to put a human face on the travail of thousands of Vietnamese 3 +122805 6587 to put a human face on the travail of thousands of Vietnamese 3 +122806 6587 put a human face on the travail of thousands of Vietnamese 3 +122807 6587 put a human face 2 +122808 6587 on the travail of thousands of Vietnamese 2 +122809 6587 the travail of thousands of Vietnamese 2 +122810 6587 the travail 2 +122811 6587 travail 2 +122812 6587 of thousands of Vietnamese 2 +122813 6587 thousands of Vietnamese 2 +122814 6587 of Vietnamese 2 +122815 6588 An average coming-of-age tale elevated by the wholesome twist of a pesky mother interfering during her son 's discovery of his homosexuality . 2 +122816 6588 An average coming-of-age tale 2 +122817 6588 average coming-of-age tale 3 +122818 6588 elevated by the wholesome twist of a pesky mother interfering during her son 's discovery of his homosexuality . 3 +122819 6588 elevated by the wholesome twist of a pesky mother interfering during her son 's discovery of his homosexuality 2 +122820 6588 elevated by the wholesome twist of a pesky mother 3 +122821 6588 by the wholesome twist of a pesky mother 2 +122822 6588 the wholesome twist of a pesky mother 2 +122823 6588 the wholesome twist 3 +122824 6588 wholesome twist 4 +122825 6588 of a pesky mother 1 +122826 6588 a pesky mother 1 +122827 6588 pesky mother 1 +122828 6588 interfering during her son 's discovery of his homosexuality 2 +122829 6588 interfering 1 +122830 6588 during her son 's discovery of his homosexuality 2 +122831 6588 her son 's discovery of his homosexuality 2 +122832 6588 her son 's discovery 2 +122833 6588 her son 's 2 +122834 6588 of his homosexuality 2 +122835 6588 his homosexuality 2 +122836 6589 Consider this review life-affirming . 2 +122837 6589 Consider this review life-affirming 3 +122838 6589 this review life-affirming 3 +122839 6589 review life-affirming 2 +122840 6590 The film 's heady yet far from impenetrable theory suggests that Russians take comfort in their closed-off nationalist reality . 2 +122841 6590 The film 's heady yet far from impenetrable theory 2 +122842 6590 heady yet far from impenetrable theory 3 +122843 6590 yet far from impenetrable theory 2 +122844 6590 yet far from 2 +122845 6590 far from 2 +122846 6590 impenetrable theory 2 +122847 6590 suggests that Russians take comfort in their closed-off nationalist reality . 2 +122848 6590 suggests that Russians take comfort in their closed-off nationalist reality 2 +122849 6590 that Russians take comfort in their closed-off nationalist reality 2 +122850 6590 Russians take comfort in their closed-off nationalist reality 2 +122851 6590 Russians 2 +122852 6590 take comfort in their closed-off nationalist reality 2 +122853 6590 comfort in their closed-off nationalist reality 2 +122854 6590 in their closed-off nationalist reality 2 +122855 6590 their closed-off nationalist reality 1 +122856 6590 closed-off nationalist reality 3 +122857 6590 closed-off 2 +122858 6590 nationalist reality 2 +122859 6590 nationalist 2 +122860 6591 Freundlich 's made -LRB- Crudup -RRB- a suburban architect , and a cipher . 2 +122861 6591 made -LRB- Crudup -RRB- a suburban architect , and a cipher . 2 +122862 6591 made -LRB- Crudup -RRB- a suburban architect , and a cipher 2 +122863 6591 -LRB- Crudup -RRB- a suburban architect , and a cipher 2 +122864 6591 -LRB- Crudup -RRB- a suburban architect , and 2 +122865 6591 -LRB- Crudup -RRB- a suburban architect , 3 +122866 6591 -LRB- Crudup -RRB- a suburban architect 2 +122867 6591 -LRB- Crudup -RRB- 2 +122868 6591 Crudup -RRB- 2 +122869 6591 a suburban architect 3 +122870 6591 suburban architect 2 +122871 6592 There 's something poignant about an artist of 90-plus years taking the effort to share his impressions of life and loss and time and art with us . 3 +122872 6592 's something poignant about an artist of 90-plus years taking the effort to share his impressions of life and loss and time and art with us . 3 +122873 6592 's something poignant about an artist of 90-plus years taking the effort to share his impressions of life and loss and time and art with us 4 +122874 6592 something poignant about an artist of 90-plus years taking the effort to share his impressions of life and loss and time and art with us 3 +122875 6592 something poignant 2 +122876 6592 about an artist of 90-plus years taking the effort to share his impressions of life and loss and time and art with us 3 +122877 6592 an artist of 90-plus years taking the effort to share his impressions of life and loss and time and art with us 3 +122878 6592 of 90-plus years taking the effort to share his impressions of life and loss and time and art with us 2 +122879 6592 90-plus years taking the effort to share his impressions of life and loss and time and art with us 3 +122880 6592 90-plus years 2 +122881 6592 90-plus 3 +122882 6592 taking the effort to share his impressions of life and loss and time and art with us 3 +122883 6592 the effort to share his impressions of life and loss and time and art with us 2 +122884 6592 effort to share his impressions of life and loss and time and art with us 3 +122885 6592 to share his impressions of life and loss and time and art with us 3 +122886 6592 share his impressions of life and loss and time and art with us 3 +122887 6592 his impressions of life and loss and time and art with us 3 +122888 6592 his impressions of life and loss and 3 +122889 6592 his impressions of life and loss 2 +122890 6592 his impressions 2 +122891 6592 of life and loss 2 +122892 6592 life and loss 2 +122893 6592 time and art with us 2 +122894 6592 time and art 3 +122895 6592 with us 3 +122896 6593 Stay for the credits and see a devastating comic impersonation by Dustin Hoffman that is revelatory . 4 +122897 6593 Stay for the credits and see a devastating comic impersonation by Dustin Hoffman that is revelatory 3 +122898 6593 Stay for the credits and 2 +122899 6593 Stay for the credits 3 +122900 6593 for the credits 2 +122901 6593 see a devastating comic impersonation by Dustin Hoffman that is revelatory 2 +122902 6593 see a devastating comic impersonation 1 +122903 6593 a devastating comic impersonation 1 +122904 6593 devastating comic impersonation 2 +122905 6593 comic impersonation 2 +122906 6593 by Dustin Hoffman that is revelatory 2 +122907 6593 Dustin Hoffman that is revelatory 2 +122908 6593 Dustin Hoffman 2 +122909 6593 Dustin 2 +122910 6593 that is revelatory 3 +122911 6593 is revelatory 2 +122912 6594 The sentimental script has problems , but the actors pick up the slack . 3 +122913 6594 The sentimental script has problems , but the actors pick up the slack 3 +122914 6594 The sentimental script has problems , but 2 +122915 6594 The sentimental script has problems , 2 +122916 6594 The sentimental script has problems 1 +122917 6594 The sentimental script 2 +122918 6594 sentimental script 3 +122919 6594 has problems 2 +122920 6594 the actors pick up the slack 3 +122921 6594 pick up the slack 1 +122922 6594 the slack 2 +122923 6595 Opera on film is never satisfactory . 1 +122924 6595 Opera on film 2 +122925 6595 is never satisfactory . 1 +122926 6595 is never satisfactory 1 +122927 6596 I am more offended by his lack of faith in his audience than by anything on display here . 1 +122928 6596 am more offended by his lack of faith in his audience than by anything on display here . 2 +122929 6596 am more offended by his lack of faith in his audience than by anything on display here 0 +122930 6596 am more offended by his lack of faith in his audience than by anything on display 0 +122931 6596 more offended by his lack of faith in his audience than by anything on display 1 +122932 6596 more offended by his lack of faith in his audience 1 +122933 6596 offended by his lack of faith in his audience 0 +122934 6596 offended 1 +122935 6596 by his lack of faith in his audience 2 +122936 6596 his lack of faith in his audience 1 +122937 6596 of faith in his audience 2 +122938 6596 faith in his audience 2 +122939 6596 in his audience 2 +122940 6596 than by anything on display 2 +122941 6596 by anything on display 1 +122942 6596 anything on display 2 +122943 6597 Humor in I Spy is so anemic . 1 +122944 6597 Humor in I Spy 2 +122945 6597 is so anemic . 2 +122946 6597 is so anemic 1 +122947 6597 so anemic 2 +122948 6598 A fairly harmless but ultimately lifeless feature-length afterschool special . 1 +122949 6598 A fairly harmless but ultimately lifeless feature-length afterschool special 1 +122950 6598 A fairly harmless but ultimately lifeless feature-length 1 +122951 6598 fairly harmless but ultimately lifeless feature-length 2 +122952 6598 fairly harmless but ultimately lifeless 1 +122953 6598 fairly harmless but 2 +122954 6598 fairly harmless 3 +122955 6598 ultimately lifeless 0 +122956 6599 You can tell almost immediately that Welcome to Collinwood is n't going to jell . 1 +122957 6599 can tell almost immediately that Welcome to Collinwood is n't going to jell . 1 +122958 6599 can tell almost immediately that Welcome to Collinwood is n't going to jell 1 +122959 6599 tell almost immediately that Welcome to Collinwood is n't going to jell 1 +122960 6599 almost immediately that Welcome to Collinwood is n't going to jell 1 +122961 6599 almost immediately 2 +122962 6599 that Welcome to Collinwood is n't going to jell 1 +122963 6599 Welcome to Collinwood is n't going to jell 2 +122964 6599 is n't going to jell 1 +122965 6599 going to jell 3 +122966 6599 to jell 2 +122967 6600 Grown-up quibbles are beside the point here . 2 +122968 6600 Grown-up quibbles 2 +122969 6600 quibbles 2 +122970 6600 are beside the point here . 2 +122971 6600 are beside the point here 2 +122972 6600 are beside the point 2 +122973 6601 Although purportedly a study in modern alienation , it 's really little more than a particularly slanted , gay s\/m fantasy , enervating and deadeningly drawn-out . 1 +122974 6601 Although purportedly a study in modern alienation 1 +122975 6601 purportedly a study in modern alienation 2 +122976 6601 a study in modern alienation 2 +122977 6601 in modern alienation 1 +122978 6601 modern alienation 2 +122979 6601 , it 's really little more than a particularly slanted , gay s\/m fantasy , enervating and deadeningly drawn-out . 0 +122980 6601 it 's really little more than a particularly slanted , gay s\/m fantasy , enervating and deadeningly drawn-out . 0 +122981 6601 's really little more than a particularly slanted , gay s\/m fantasy , enervating and deadeningly drawn-out . 1 +122982 6601 's really little more than a particularly slanted , gay s\/m fantasy , enervating and deadeningly drawn-out 0 +122983 6601 little more than a particularly slanted , gay s\/m fantasy , enervating and deadeningly drawn-out 0 +122984 6601 little more than a particularly slanted , gay s\/m fantasy , enervating and 1 +122985 6601 little more than a particularly slanted , gay s\/m fantasy , enervating 1 +122986 6601 little more than a particularly slanted , gay s\/m fantasy , 1 +122987 6601 little more than a particularly slanted , gay s\/m fantasy 1 +122988 6601 more than a particularly slanted , gay s\/m fantasy 2 +122989 6601 than a particularly slanted , gay s\/m fantasy 1 +122990 6601 a particularly slanted , gay s\/m fantasy 1 +122991 6601 a particularly slanted , 2 +122992 6601 a particularly slanted 2 +122993 6601 particularly slanted 2 +122994 6601 slanted 2 +122995 6601 gay s\/m fantasy 1 +122996 6601 s\/m fantasy 2 +122997 6601 s\/m 2 +122998 6601 enervating 1 +122999 6601 deadeningly drawn-out 1 +123000 6601 deadeningly 1 +123001 6601 drawn-out 1 +123002 6602 A piece of mildly entertaining , inoffensive fluff that drifts aimlessly for 90 minutes before lodging in the cracks of that ever-growing category : unembarrassing but unmemorable . 1 +123003 6602 A piece of mildly entertaining , inoffensive fluff that drifts aimlessly for 90 minutes before lodging in the cracks of that ever-growing category : unembarrassing but unmemorable 3 +123004 6602 A piece of mildly entertaining , inoffensive fluff that drifts aimlessly for 90 minutes before lodging in the cracks of that ever-growing category : 1 +123005 6602 A piece of mildly entertaining , inoffensive fluff that drifts aimlessly for 90 minutes before lodging in the cracks of that ever-growing category 2 +123006 6602 A piece of mildly entertaining , inoffensive fluff 2 +123007 6602 of mildly entertaining , inoffensive fluff 2 +123008 6602 mildly entertaining , inoffensive fluff 2 +123009 6602 , inoffensive fluff 2 +123010 6602 inoffensive fluff 2 +123011 6602 that drifts aimlessly for 90 minutes before lodging in the cracks of that ever-growing category 1 +123012 6602 drifts aimlessly for 90 minutes before lodging in the cracks of that ever-growing category 1 +123013 6602 drifts aimlessly for 90 minutes 0 +123014 6602 drifts aimlessly 1 +123015 6602 drifts 2 +123016 6602 for 90 minutes 2 +123017 6602 before lodging in the cracks of that ever-growing category 2 +123018 6602 lodging in the cracks of that ever-growing category 2 +123019 6602 in the cracks of that ever-growing category 2 +123020 6602 the cracks of that ever-growing category 2 +123021 6602 the cracks 2 +123022 6602 cracks 2 +123023 6602 of that ever-growing category 2 +123024 6602 that ever-growing category 2 +123025 6602 ever-growing category 3 +123026 6602 ever-growing 2 +123027 6602 unembarrassing but unmemorable 0 +123028 6602 unembarrassing 2 +123029 6602 but unmemorable 1 +123030 6603 Its vision of that awkward age when sex threatens to overwhelm everything else is acute enough to make everyone who has been there squirm with recognition . 2 +123031 6603 Its vision of that awkward age when sex threatens to overwhelm everything else 2 +123032 6603 Its vision 2 +123033 6603 of that awkward age when sex threatens to overwhelm everything else 2 +123034 6603 that awkward age when sex threatens to overwhelm everything else 2 +123035 6603 that awkward age 2 +123036 6603 awkward age 2 +123037 6603 when sex threatens to overwhelm everything else 2 +123038 6603 sex threatens to overwhelm everything else 1 +123039 6603 threatens to overwhelm everything else 2 +123040 6603 to overwhelm everything else 1 +123041 6603 overwhelm everything else 1 +123042 6603 is acute enough to make everyone who has been there squirm with recognition . 2 +123043 6603 is acute enough to make everyone who has been there squirm with recognition 2 +123044 6603 acute enough to make everyone who has been there squirm with recognition 3 +123045 6603 acute enough 3 +123046 6603 to make everyone who has been there squirm with recognition 3 +123047 6603 make everyone who has been there squirm with recognition 2 +123048 6603 everyone who has been there squirm with recognition 2 +123049 6603 who has been there squirm with recognition 2 +123050 6603 has been there squirm with recognition 2 +123051 6603 been there squirm with recognition 2 +123052 6603 there squirm with recognition 2 +123053 6603 squirm with recognition 2 +123054 6603 squirm 2 +123055 6603 with recognition 2 +123056 6603 recognition 2 +123057 6604 Remarkable for its intelligence and intensity . 4 +123058 6604 Remarkable for its intelligence and intensity 3 +123059 6604 for its intelligence and intensity 3 +123060 6604 its intelligence and intensity 3 +123061 6604 intelligence and intensity 3 +123062 6605 An opportunity missed . 1 +123063 6605 An opportunity 2 +123064 6605 missed . 2 +123065 6606 It 's sobering , particularly if anyone still thinks this conflict can be resolved easily , or soon . 2 +123066 6606 's sobering , particularly if anyone still thinks this conflict can be resolved easily , or soon . 2 +123067 6606 's sobering , particularly if anyone still thinks this conflict can be resolved easily , or soon 2 +123068 6606 's sobering , 2 +123069 6606 's sobering 2 +123070 6606 particularly if anyone still thinks this conflict can be resolved easily , or soon 2 +123071 6606 if anyone still thinks this conflict can be resolved easily , or soon 2 +123072 6606 anyone still thinks this conflict can be resolved easily , or soon 2 +123073 6606 still thinks this conflict can be resolved easily , or soon 2 +123074 6606 thinks this conflict can be resolved easily , or soon 2 +123075 6606 this conflict can be resolved easily , or soon 2 +123076 6606 this conflict 3 +123077 6606 can be resolved easily , or soon 2 +123078 6606 be resolved easily , or soon 2 +123079 6606 resolved easily , or soon 1 +123080 6606 resolved easily 2 +123081 6606 resolved 2 +123082 6606 , or soon 2 +123083 6607 UB equally spoofs and celebrates the more outre aspects of ` black culture ' and the dorkier aspects of ` white culture , ' even as it points out how inseparable the two are . 3 +123084 6607 UB 2 +123085 6607 equally spoofs and celebrates the more outre aspects of ` black culture ' and the dorkier aspects of ` white culture , ' even as it points out how inseparable the two are . 3 +123086 6607 spoofs and celebrates the more outre aspects of ` black culture ' and the dorkier aspects of ` white culture , ' even as it points out how inseparable the two are . 3 +123087 6607 spoofs and celebrates the more outre aspects of ` black culture ' and the dorkier aspects of ` white culture , ' even as it points out how inseparable the two are 2 +123088 6607 spoofs and celebrates 3 +123089 6607 spoofs and 2 +123090 6607 spoofs 3 +123091 6607 the more outre aspects of ` black culture ' and the dorkier aspects of ` white culture , ' even as it points out how inseparable the two are 3 +123092 6607 the more outre aspects of ` black culture ' and the dorkier aspects 1 +123093 6607 the more outre aspects 2 +123094 6607 more outre aspects 3 +123095 6607 more outre 2 +123096 6607 outre 2 +123097 6607 of ` black culture ' and the dorkier aspects 1 +123098 6607 ` black culture ' and the dorkier aspects 2 +123099 6607 ` black culture ' and 2 +123100 6607 ` black culture ' 2 +123101 6607 black culture ' 2 +123102 6607 culture ' 2 +123103 6607 the dorkier aspects 1 +123104 6607 dorkier aspects 2 +123105 6607 dorkier 2 +123106 6607 of ` white culture , ' even as it points out how inseparable the two are 2 +123107 6607 ` white culture , ' even as it points out how inseparable the two are 2 +123108 6607 white culture , ' even as it points out how inseparable the two are 2 +123109 6607 white culture , ' 2 +123110 6607 white culture , 2 +123111 6607 white culture 2 +123112 6607 even as it points out how inseparable the two are 3 +123113 6607 as it points out how inseparable the two are 2 +123114 6607 it points out how inseparable the two are 3 +123115 6607 points out how inseparable the two are 2 +123116 6607 points out 2 +123117 6607 how inseparable the two are 3 +123118 6607 how inseparable 2 +123119 6607 inseparable 2 +123120 6607 the two are 2 +123121 6608 It excels because , unlike so many other Hollywood movies of its ilk , it offers hope . 3 +123122 6608 excels because , unlike so many other Hollywood movies of its ilk , it offers hope . 4 +123123 6608 excels because , unlike so many other Hollywood movies of its ilk , it offers hope 3 +123124 6608 because , unlike so many other Hollywood movies of its ilk , it offers hope 3 +123125 6608 , unlike so many other Hollywood movies of its ilk , it offers hope 3 +123126 6608 unlike so many other Hollywood movies of its ilk , it offers hope 4 +123127 6608 unlike so many other Hollywood movies of its ilk 3 +123128 6608 so many other Hollywood movies of its ilk 2 +123129 6608 so many other Hollywood movies 2 +123130 6608 other Hollywood movies 2 +123131 6608 Hollywood movies 2 +123132 6608 , it offers hope 3 +123133 6608 it offers hope 3 +123134 6608 offers hope 3 +123135 6609 The most amazing super-sized dosage of goofball stunts any `` Jackass '' fan could want . 4 +123136 6609 The most amazing super-sized dosage of goofball stunts any `` Jackass '' fan 3 +123137 6609 The most amazing super-sized dosage 4 +123138 6609 most amazing super-sized dosage 3 +123139 6609 most amazing 4 +123140 6609 super-sized dosage 2 +123141 6609 super-sized 2 +123142 6609 dosage 2 +123143 6609 of goofball stunts any `` Jackass '' fan 1 +123144 6609 goofball stunts any `` Jackass '' fan 1 +123145 6609 goofball stunts 2 +123146 6609 any `` Jackass '' fan 2 +123147 6609 `` Jackass '' fan 2 +123148 6609 Jackass '' fan 3 +123149 6609 '' fan 2 +123150 6610 This director 's cut -- which adds 51 minutes -- takes a great film and turns it into a mundane soap opera . 1 +123151 6610 This director 's cut -- which adds 51 minutes -- 2 +123152 6610 This director 's cut -- which adds 51 minutes 2 +123153 6610 This director 's cut -- 2 +123154 6610 This director 's cut 2 +123155 6610 This director 's 2 +123156 6610 which adds 51 minutes 2 +123157 6610 adds 51 minutes 2 +123158 6610 51 minutes 2 +123159 6610 takes a great film and turns it into a mundane soap opera . 2 +123160 6610 takes a great film and turns it into a mundane soap opera 1 +123161 6610 takes a great film and 2 +123162 6610 takes a great film 2 +123163 6610 turns it into a mundane soap opera 2 +123164 6610 into a mundane soap opera 2 +123165 6610 a mundane soap opera 2 +123166 6610 mundane soap opera 1 +123167 6611 Consummate actor Barry has done excellent work here . 4 +123168 6611 Consummate actor Barry 2 +123169 6611 actor Barry 2 +123170 6611 has done excellent work here . 4 +123171 6611 has done excellent work here 4 +123172 6611 done excellent work here 4 +123173 6611 done excellent work 4 +123174 6611 excellent work 4 +123175 6612 Majidi 's direction has never been smoother or more confident . 4 +123176 6612 Majidi 's direction 2 +123177 6612 Majidi 's 2 +123178 6612 Majidi 2 +123179 6612 has never been smoother or more confident . 3 +123180 6612 has never been smoother or more confident 3 +123181 6612 been smoother or more confident 3 +123182 6612 smoother or more confident 3 +123183 6612 smoother or 2 +123184 6612 smoother 3 +123185 6612 more confident 3 +123186 6613 Trapped presents a frightening and compelling ` What if ? ' 3 +123187 6613 presents a frightening and compelling ` What if ? ' 3 +123188 6613 presents a frightening and compelling ` What if ? 3 +123189 6613 presents a frightening and compelling ` What if 3 +123190 6613 a frightening and compelling ` What if 3 +123191 6613 a frightening and compelling ` 3 +123192 6613 a frightening and compelling 3 +123193 6613 frightening and compelling 3 +123194 6613 frightening and 2 +123195 6614 None of his actors stand out , but that 's less of a problem here than it would be in another film : Characterization matters less than atmosphere . 2 +123196 6614 None of his actors stand out , but that 's less of a problem here than it would be in another film : Characterization matters less than atmosphere 2 +123197 6614 None of his actors stand out , but that 's less of a problem here than it would be in another film : 1 +123198 6614 None of his actors stand out , but that 's less of a problem here than it would be in another film 2 +123199 6614 None of his actors stand out , but 1 +123200 6614 None of his actors stand out , 0 +123201 6614 None of his actors stand out 0 +123202 6614 None of his actors 2 +123203 6614 that 's less of a problem here than it would be in another film 2 +123204 6614 's less of a problem here than it would be in another film 2 +123205 6614 's less of a problem here 2 +123206 6614 's less of a problem 2 +123207 6614 less of a problem 2 +123208 6614 of a problem 2 +123209 6614 than it would be in another film 2 +123210 6614 it would be in another film 2 +123211 6614 would be in another film 2 +123212 6614 be in another film 2 +123213 6614 in another film 2 +123214 6614 Characterization matters less than atmosphere 2 +123215 6614 matters less than atmosphere 2 +123216 6614 less than atmosphere 2 +123217 6614 than atmosphere 2 +123218 6615 You have once again entered the bizarre realm where director Adrian Lyne holds sway , where all relationships are simultaneously broadly metaphorical , oddly abstract , and excruciatingly literal . 2 +123219 6615 have once again entered the bizarre realm where director Adrian Lyne holds sway , where all relationships are simultaneously broadly metaphorical , oddly abstract , and excruciatingly literal . 1 +123220 6615 have once again entered the bizarre realm where director Adrian Lyne holds sway , where all relationships are simultaneously broadly metaphorical , oddly abstract , and excruciatingly literal 2 +123221 6615 have once again 2 +123222 6615 entered the bizarre realm where director Adrian Lyne holds sway , where all relationships are simultaneously broadly metaphorical , oddly abstract , and excruciatingly literal 2 +123223 6615 entered the bizarre realm 1 +123224 6615 the bizarre realm 2 +123225 6615 bizarre realm 1 +123226 6615 where director Adrian Lyne holds sway , where all relationships are simultaneously broadly metaphorical , oddly abstract , and excruciatingly literal 1 +123227 6615 director Adrian Lyne holds sway , where all relationships are simultaneously broadly metaphorical , oddly abstract , and excruciatingly literal 1 +123228 6615 director Adrian Lyne 2 +123229 6615 Adrian Lyne 2 +123230 6615 holds sway , where all relationships are simultaneously broadly metaphorical , oddly abstract , and excruciatingly literal 2 +123231 6615 sway , where all relationships are simultaneously broadly metaphorical , oddly abstract , and excruciatingly literal 1 +123232 6615 sway , 2 +123233 6615 where all relationships are simultaneously broadly metaphorical , oddly abstract , and excruciatingly literal 2 +123234 6615 all relationships are simultaneously broadly metaphorical , oddly abstract , and excruciatingly literal 1 +123235 6615 all relationships 2 +123236 6615 are simultaneously broadly metaphorical , oddly abstract , and excruciatingly literal 2 +123237 6615 are simultaneously 2 +123238 6615 broadly metaphorical , oddly abstract , and excruciatingly literal 2 +123239 6615 broadly metaphorical , oddly abstract , and 2 +123240 6615 broadly metaphorical , oddly abstract , 2 +123241 6615 broadly metaphorical , oddly abstract 1 +123242 6615 broadly metaphorical , 2 +123243 6615 broadly metaphorical 3 +123244 6615 broadly 2 +123245 6615 oddly abstract 2 +123246 6615 excruciatingly literal 2 +123247 6615 excruciatingly 3 +123248 6616 E.T. works because its flabbergasting principals , 14-year-old Robert MacNaughton , 6-year-old Drew Barrymore and 10-year-old Henry Thomas , convince us of the existence of the wise , wizened visitor from a faraway planet . 4 +123249 6616 works because its flabbergasting principals , 14-year-old Robert MacNaughton , 6-year-old Drew Barrymore and 10-year-old Henry Thomas , convince us of the existence of the wise , wizened visitor from a faraway planet . 2 +123250 6616 works because its flabbergasting principals , 14-year-old Robert MacNaughton , 6-year-old Drew Barrymore and 10-year-old Henry Thomas , convince us of the existence of the wise , wizened visitor from a faraway planet 3 +123251 6616 because its flabbergasting principals , 14-year-old Robert MacNaughton , 6-year-old Drew Barrymore and 10-year-old Henry Thomas , convince us of the existence of the wise , wizened visitor from a faraway planet 3 +123252 6616 its flabbergasting principals , 14-year-old Robert MacNaughton , 6-year-old Drew Barrymore and 10-year-old Henry Thomas , convince us of the existence of the wise , wizened visitor from a faraway planet 3 +123253 6616 its flabbergasting principals , 14-year-old Robert MacNaughton , 6-year-old Drew Barrymore and 10-year-old Henry Thomas , 2 +123254 6616 its flabbergasting principals , 14-year-old Robert MacNaughton , 6-year-old Drew Barrymore and 10-year-old Henry Thomas 2 +123255 6616 its flabbergasting principals , 2 +123256 6616 its flabbergasting principals 2 +123257 6616 flabbergasting principals 1 +123258 6616 flabbergasting 2 +123259 6616 principals 2 +123260 6616 14-year-old Robert MacNaughton , 6-year-old Drew Barrymore and 10-year-old Henry Thomas 2 +123261 6616 14-year-old Robert MacNaughton , 6-year-old Drew Barrymore and 2 +123262 6616 14-year-old Robert MacNaughton , 6-year-old Drew Barrymore 2 +123263 6616 14-year-old Robert MacNaughton , 2 +123264 6616 14-year-old Robert MacNaughton 2 +123265 6616 14-year-old 2 +123266 6616 Robert MacNaughton 2 +123267 6616 MacNaughton 2 +123268 6616 6-year-old Drew Barrymore 2 +123269 6616 10-year-old Henry Thomas 2 +123270 6616 10-year-old 2 +123271 6616 Henry Thomas 2 +123272 6616 convince us of the existence of the wise , wizened visitor from a faraway planet 2 +123273 6616 convince us 2 +123274 6616 of the existence of the wise , wizened visitor from a faraway planet 2 +123275 6616 the existence of the wise , wizened visitor from a faraway planet 2 +123276 6616 of the wise , wizened visitor from a faraway planet 3 +123277 6616 the wise , wizened visitor from a faraway planet 2 +123278 6616 the wise , wizened visitor 3 +123279 6616 wise , wizened visitor 2 +123280 6616 wise , wizened 3 +123281 6616 , wizened 2 +123282 6616 wizened 3 +123283 6616 visitor 2 +123284 6616 from a faraway planet 3 +123285 6616 a faraway planet 2 +123286 6616 faraway planet 2 +123287 6616 faraway 2 +123288 6617 A film of quiet power . 3 +123289 6617 A film of quiet power 3 +123290 6618 Changing Lanes is an anomaly for a Hollywood movie ; it 's a well-written and occasionally challenging social drama that actually has something interesting to say . 4 +123291 6618 Changing Lanes is an anomaly for a Hollywood movie ; it 's a well-written and occasionally challenging social drama that actually has something interesting to say 4 +123292 6618 Changing Lanes is an anomaly for a Hollywood movie ; 2 +123293 6618 Changing Lanes is an anomaly for a Hollywood movie 2 +123294 6618 is an anomaly for a Hollywood movie 2 +123295 6618 an anomaly for a Hollywood movie 2 +123296 6618 an anomaly 2 +123297 6618 anomaly 2 +123298 6618 for a Hollywood movie 2 +123299 6618 a Hollywood movie 2 +123300 6618 Hollywood movie 3 +123301 6618 it 's a well-written and occasionally challenging social drama that actually has something interesting to say 3 +123302 6618 's a well-written and occasionally challenging social drama that actually has something interesting to say 4 +123303 6618 a well-written and occasionally challenging social drama that actually has something interesting to say 3 +123304 6618 a well-written and occasionally challenging social drama 3 +123305 6618 well-written and occasionally challenging social drama 4 +123306 6618 well-written and occasionally challenging 4 +123307 6618 well-written and 3 +123308 6618 occasionally challenging 2 +123309 6618 social drama 2 +123310 6618 that actually has something interesting to say 4 +123311 6618 actually has something interesting to say 3 +123312 6618 has something interesting to say 3 +123313 6618 something interesting to say 2 +123314 6618 interesting to say 2 +123315 6619 If any of them list this ` credit ' on their resumes in the future , that 'll be much funnier than anything in the film ... 1 +123316 6619 If any of them list this ` credit ' on their resumes in the future 1 +123317 6619 any of them list this ` credit ' on their resumes in the future 1 +123318 6619 list this ` credit ' on their resumes in the future 2 +123319 6619 list this ` credit ' on their resumes 2 +123320 6619 this ` credit ' on their resumes 2 +123321 6619 this ` credit ' 2 +123322 6619 ` credit ' 2 +123323 6619 credit ' 2 +123324 6619 on their resumes 2 +123325 6619 their resumes 2 +123326 6619 resumes 2 +123327 6619 , that 'll be much funnier than anything in the film ... 1 +123328 6619 that 'll be much funnier than anything in the film ... 1 +123329 6619 'll be much funnier than anything in the film ... 2 +123330 6619 'll be much funnier than anything in the film 2 +123331 6619 be much funnier than anything in the film 1 +123332 6619 be much funnier than anything 3 +123333 6619 much funnier than anything 3 +123334 6619 funnier than anything 4 +123335 6620 An enthralling , entertaining feature . 4 +123336 6620 An enthralling , entertaining feature 4 +123337 6620 An enthralling , 3 +123338 6620 An enthralling 3 +123339 6620 entertaining feature 3 +123340 6621 A film neither bitter nor sweet , neither romantic nor comedic , neither warm nor fuzzy . 3 +123341 6621 A film neither bitter nor sweet , neither romantic nor comedic , neither warm nor fuzzy 1 +123342 6621 A film neither bitter nor sweet , neither romantic nor comedic , 2 +123343 6621 A film neither bitter nor sweet , neither romantic nor comedic 1 +123344 6621 A film neither bitter nor sweet , 2 +123345 6621 A film neither bitter nor sweet 1 +123346 6621 neither bitter nor sweet 2 +123347 6621 bitter nor sweet 3 +123348 6621 bitter nor 2 +123349 6621 neither romantic nor comedic 1 +123350 6621 romantic nor comedic 2 +123351 6621 romantic nor 2 +123352 6621 neither warm nor fuzzy 2 +123353 6621 warm nor fuzzy 1 +123354 6621 warm nor 2 +123355 6622 Painfully padded . 1 +123356 6622 padded . 1 +123357 6623 It 's worth taking the kids to . 4 +123358 6623 's worth taking the kids to . 4 +123359 6623 's worth taking the kids to 3 +123360 6623 taking the kids to 2 +123361 6623 taking the kids 2 +123362 6624 I 'm not sure which half of Dragonfly is worse : The part where nothing 's happening , or the part where something 's happening , but it 's stupid . 0 +123363 6624 I 'm not sure which half of Dragonfly is worse : The part where nothing 's happening , or the part where something 's happening , but it 's stupid 1 +123364 6624 I 'm not sure which half of Dragonfly is worse : The part where nothing 's happening , or the part where something 's happening , but 1 +123365 6624 I 'm not sure which half of Dragonfly is worse : The part where nothing 's happening , or the part where something 's happening , 0 +123366 6624 I 'm not sure which half of Dragonfly is worse : The part where nothing 's happening , or the part where something 's happening 0 +123367 6624 'm not sure which half of Dragonfly is worse : The part where nothing 's happening , or the part where something 's happening 1 +123368 6624 sure which half of Dragonfly is worse : The part where nothing 's happening , or the part where something 's happening 0 +123369 6624 which half of Dragonfly is worse : The part where nothing 's happening , or the part where something 's happening 0 +123370 6624 half of Dragonfly is worse : The part where nothing 's happening , or the part where something 's happening 1 +123371 6624 half of Dragonfly 2 +123372 6624 of Dragonfly 2 +123373 6624 is worse : The part where nothing 's happening , or the part where something 's happening 0 +123374 6624 is worse : 1 +123375 6624 is worse 1 +123376 6624 The part where nothing 's happening , or the part where something 's happening 1 +123377 6624 The part where nothing 's happening , or 2 +123378 6624 The part where nothing 's happening , 1 +123379 6624 The part where nothing 's happening 2 +123380 6624 The part 2 +123381 6624 where nothing 's happening 1 +123382 6624 nothing 's happening 0 +123383 6624 's happening 2 +123384 6624 the part where something 's happening 2 +123385 6624 where something 's happening 3 +123386 6624 something 's happening 2 +123387 6624 it 's stupid 1 +123388 6624 's stupid 1 +123389 6625 This movie has a strong message about never giving up on a loved one , but it 's not an easy movie to watch and will probably disturb many who see it . 2 +123390 6625 This movie has a strong message about never giving up on a loved one , but it 's not an easy movie to watch and will probably disturb many who see it 2 +123391 6625 This movie has a strong message about never giving up on a loved one , but 3 +123392 6625 This movie has a strong message about never giving up on a loved one , 2 +123393 6625 This movie has a strong message about never giving up on a loved one 3 +123394 6625 has a strong message about never giving up on a loved one 4 +123395 6625 a strong message about never giving up on a loved one 3 +123396 6625 a strong message 3 +123397 6625 strong message 3 +123398 6625 about never giving up on a loved one 3 +123399 6625 never giving up on a loved one 2 +123400 6625 giving up on a loved one 2 +123401 6625 giving up 1 +123402 6625 on a loved one 2 +123403 6625 a loved one 3 +123404 6625 loved one 3 +123405 6625 it 's not an easy movie to watch and will probably disturb many who see it 1 +123406 6625 's not an easy movie to watch and will probably disturb many who see it 1 +123407 6625 's not an easy movie to watch and 1 +123408 6625 's not an easy movie to watch 2 +123409 6625 an easy movie to watch 3 +123410 6625 an easy movie 2 +123411 6625 easy movie 2 +123412 6625 will probably disturb many who see it 1 +123413 6625 disturb many who see it 1 +123414 6625 many who see it 2 +123415 6625 who see it 2 +123416 6626 The characters are never more than sketches ... which leaves any true emotional connection or identification frustratingly out of reach . 0 +123417 6626 are never more than sketches ... which leaves any true emotional connection or identification frustratingly out of reach . 1 +123418 6626 are never more than sketches ... which leaves any true emotional connection or identification frustratingly out of reach 1 +123419 6626 are never 2 +123420 6626 more than sketches ... which leaves any true emotional connection or identification frustratingly out of reach 1 +123421 6626 than sketches ... which leaves any true emotional connection or identification frustratingly out of reach 1 +123422 6626 sketches ... which leaves any true emotional connection or identification frustratingly out of reach 1 +123423 6626 sketches ... 3 +123424 6626 sketches 3 +123425 6626 which leaves any true emotional connection or identification frustratingly out of reach 1 +123426 6626 leaves any true emotional connection or identification frustratingly out of reach 1 +123427 6626 any true emotional connection or identification frustratingly out of reach 2 +123428 6626 any true emotional connection or identification frustratingly 1 +123429 6626 true emotional connection or identification frustratingly 4 +123430 6626 emotional connection or identification frustratingly 2 +123431 6626 connection or identification frustratingly 1 +123432 6626 or identification frustratingly 2 +123433 6626 identification frustratingly 2 +123434 6626 identification 2 +123435 6626 out of reach 1 +123436 6626 of reach 2 +123437 6627 Drug abuse , infidelity and death are n't usually comedy fare , but Turpin 's film allows us to chuckle through the angst . 3 +123438 6627 Drug abuse , infidelity and death are n't usually comedy fare , but Turpin 's film allows us to chuckle through the angst 3 +123439 6627 Drug abuse , infidelity and death are n't usually comedy fare , but 2 +123440 6627 Drug abuse , infidelity and death are n't usually comedy fare , 2 +123441 6627 Drug abuse , infidelity and death are n't usually comedy fare 2 +123442 6627 Drug abuse , infidelity and death 2 +123443 6627 Drug abuse , infidelity and 1 +123444 6627 Drug abuse , infidelity 2 +123445 6627 Drug abuse , 2 +123446 6627 Drug abuse 1 +123447 6627 are n't usually comedy fare 2 +123448 6627 are n't usually 2 +123449 6627 comedy fare 3 +123450 6627 Turpin 's film allows us to chuckle through the angst 2 +123451 6627 Turpin 's film 2 +123452 6627 Turpin 's 2 +123453 6627 allows us to chuckle through the angst 3 +123454 6627 us to chuckle through the angst 2 +123455 6627 to chuckle through the angst 2 +123456 6627 chuckle through the angst 2 +123457 6627 through the angst 2 +123458 6627 the angst 2 +123459 6628 Muddled , melodramatic paranormal romance is an all-time low for Kevin Costner . 0 +123460 6628 , melodramatic paranormal romance is an all-time low for Kevin Costner . 2 +123461 6628 melodramatic paranormal romance is an all-time low for Kevin Costner . 1 +123462 6628 melodramatic paranormal romance 1 +123463 6628 paranormal romance 2 +123464 6628 paranormal 2 +123465 6628 is an all-time low for Kevin Costner . 0 +123466 6628 is an all-time low for Kevin Costner 1 +123467 6628 an all-time low for Kevin Costner 0 +123468 6628 an all-time low 1 +123469 6628 all-time low 0 +123470 6628 all-time 2 +123471 6628 for Kevin Costner 2 +123472 6628 Kevin Costner 2 +123473 6629 The rest of the film ... is dudsville . 0 +123474 6629 ... is dudsville . 0 +123475 6629 is dudsville . 1 +123476 6629 is dudsville 1 +123477 6629 dudsville 1 +123478 6630 Do n't say you were n't warned . 1 +123479 6630 Do n't say you were n't warned 1 +123480 6630 say you were n't warned 1 +123481 6630 you were n't warned 2 +123482 6630 were n't warned 2 +123483 6631 It 's fitting that a movie as artificial and soulless as The Country Bears owes its genesis to an animatronic display at Disneyland . 0 +123484 6631 's fitting that a movie as artificial and soulless as The Country Bears owes its genesis to an animatronic display at Disneyland . 1 +123485 6631 's fitting that a movie as artificial and soulless as The Country Bears owes its genesis to an animatronic display at Disneyland 1 +123486 6631 's fitting 2 +123487 6631 that a movie as artificial and soulless as The Country Bears owes its genesis to an animatronic display at Disneyland 1 +123488 6631 a movie as artificial and soulless as The Country Bears owes its genesis to an animatronic display at Disneyland 0 +123489 6631 a movie as artificial and soulless as The Country Bears 0 +123490 6631 a movie as artificial and soulless 0 +123491 6631 as artificial and soulless 0 +123492 6631 artificial and soulless 1 +123493 6631 as The Country Bears 2 +123494 6631 owes its genesis to an animatronic display at Disneyland 2 +123495 6631 owes its genesis 2 +123496 6631 its genesis 2 +123497 6631 genesis 2 +123498 6631 to an animatronic display at Disneyland 2 +123499 6631 an animatronic display at Disneyland 2 +123500 6631 an animatronic display 2 +123501 6631 animatronic display 2 +123502 6631 at Disneyland 2 +123503 6631 Disneyland 2 +123504 6632 less on forced air 2 +123505 6632 on forced air 2 +123506 6632 forced air 2 +123507 6632 Petter 2 +123508 6632 delicate , clever direction 3 +123509 6632 delicate , clever 4 +123510 6632 , clever 3 +123511 6632 a wonderful , imaginative script 4 +123512 6632 wonderful , imaginative script 4 +123513 6632 wonderful , imaginative 4 +123514 6632 , imaginative 3 +123515 6632 by Axel Hellstenius 2 +123516 6632 Axel Hellstenius 2 +123517 6632 Axel 2 +123518 6632 Hellstenius 2 +123519 6633 Reeboir varies between a sweet smile and an angry bark , while Said attempts to wear down possible pupils through repetition . 2 +123520 6633 Reeboir 2 +123521 6633 varies between a sweet smile and an angry bark , while Said attempts to wear down possible pupils through repetition . 2 +123522 6633 varies between a sweet smile and an angry bark , while Said attempts to wear down possible pupils through repetition 2 +123523 6633 varies between a sweet smile and an angry bark , 2 +123524 6633 varies between a sweet smile and an angry bark 2 +123525 6633 varies 2 +123526 6633 between a sweet smile and an angry bark 2 +123527 6633 a sweet smile and an angry bark 2 +123528 6633 a sweet smile and 2 +123529 6633 a sweet smile 2 +123530 6633 sweet smile 3 +123531 6633 an angry bark 1 +123532 6633 angry bark 2 +123533 6633 bark 2 +123534 6633 while Said attempts to wear down possible pupils through repetition 1 +123535 6633 Said attempts to wear down possible pupils through repetition 1 +123536 6633 attempts to wear down possible pupils through repetition 1 +123537 6633 to wear down possible pupils through repetition 1 +123538 6633 wear down possible pupils through repetition 1 +123539 6633 wear down possible pupils 1 +123540 6633 wear down 1 +123541 6633 possible pupils 2 +123542 6633 pupils 2 +123543 6633 through repetition 2 +123544 6634 Strictly a ` guy 's film ' in the worst sense of the expression . 1 +123545 6634 a ` guy 's film ' in the worst sense of the expression . 0 +123546 6634 a ` guy 2 +123547 6634 ` guy 2 +123548 6634 's film ' in the worst sense of the expression . 0 +123549 6634 's film ' in the worst sense of the expression 1 +123550 6634 film ' in the worst sense of the expression 0 +123551 6634 film ' 2 +123552 6634 in the worst sense of the expression 1 +123553 6634 the worst sense of the expression 0 +123554 6634 the worst sense 1 +123555 6634 worst sense 1 +123556 6634 of the expression 2 +123557 6634 the expression 2 +123558 6635 Reno himself can take credit for most of the movie 's success . 3 +123559 6635 himself can take credit for most of the movie 's success . 3 +123560 6635 can take credit for most of the movie 's success . 3 +123561 6635 can take credit for most of the movie 's success 3 +123562 6635 take credit for most of the movie 's success 3 +123563 6635 take credit 2 +123564 6635 for most of the movie 's success 3 +123565 6635 most of the movie 's success 3 +123566 6635 of the movie 's success 3 +123567 6635 the movie 's success 3 +123568 6636 Almost everyone growing up believes their family must look like `` The Addams Family '' to everyone looking in ... `` My Big Fat Greek Wedding '' comes from the heart ... 3 +123569 6636 Almost everyone growing up believes their family must look like `` The Addams Family '' to everyone looking in ... `` My Big Fat Greek Wedding '' comes from the heart 3 +123570 6636 Almost everyone growing up believes their family must look like `` The Addams Family '' to everyone looking in ... `` 2 +123571 6636 Almost everyone growing up believes their family must look like `` The Addams Family '' to everyone looking in ... 2 +123572 6636 Almost everyone growing up believes their family must look like `` The Addams Family '' to everyone looking in 3 +123573 6636 Almost everyone growing up 2 +123574 6636 believes their family must look like `` The Addams Family '' to everyone looking in 2 +123575 6636 their family must look like `` The Addams Family '' to everyone looking in 2 +123576 6636 their family 2 +123577 6636 must look like `` The Addams Family '' to everyone looking in 2 +123578 6636 look like `` The Addams Family '' to everyone looking in 2 +123579 6636 look like `` The Addams Family '' 2 +123580 6636 like `` The Addams Family '' 2 +123581 6636 like `` The Addams Family 2 +123582 6636 The Addams Family 2 +123583 6636 Addams Family 2 +123584 6636 Addams 2 +123585 6636 to everyone looking in 2 +123586 6636 everyone looking in 2 +123587 6636 looking in 2 +123588 6636 My Big Fat Greek Wedding '' comes from the heart 3 +123589 6636 '' comes from the heart 3 +123590 6637 An amalgam of The Fugitive , Blade Runner , and Total Recall , only without much energy or tension . 2 +123591 6637 An amalgam of The Fugitive , Blade Runner , and Total Recall , only without much energy or tension 1 +123592 6637 An amalgam 2 +123593 6637 amalgam 2 +123594 6637 of The Fugitive , Blade Runner , and Total Recall , only without much energy or tension 1 +123595 6637 The Fugitive , Blade Runner , and Total Recall , only without much energy or tension 1 +123596 6637 The Fugitive , 2 +123597 6637 The Fugitive 2 +123598 6637 Fugitive 2 +123599 6637 Blade Runner , and Total Recall , only without much energy or tension 2 +123600 6637 Blade Runner , and Total Recall , 2 +123601 6637 Blade Runner , and Total Recall 2 +123602 6637 Blade Runner , and 2 +123603 6637 Blade Runner , 2 +123604 6637 only without much energy or tension 1 +123605 6637 without much energy or tension 1 +123606 6637 much energy or tension 2 +123607 6637 energy or tension 2 +123608 6637 energy or 2 +123609 6638 A portrait of alienation so perfect , it will certainly succeed in alienating most viewers . 1 +123610 6638 A portrait of alienation so perfect , it will certainly succeed in alienating most viewers 2 +123611 6638 A portrait of alienation so perfect , 3 +123612 6638 A portrait of alienation so perfect 4 +123613 6638 A portrait of alienation 3 +123614 6638 of alienation 2 +123615 6638 so perfect 4 +123616 6638 it will certainly succeed in alienating most viewers 0 +123617 6638 will certainly succeed in alienating most viewers 1 +123618 6638 succeed in alienating most viewers 1 +123619 6638 in alienating most viewers 2 +123620 6638 alienating most viewers 1 +123621 6638 alienating most 1 +123622 6638 alienating 1 +123623 6639 Dong shows how intolerance has the power to deform families , then tear them apart . 2 +123624 6639 shows how intolerance has the power to deform families , then tear them apart . 3 +123625 6639 shows how intolerance has the power to deform families , then tear them apart 2 +123626 6639 how intolerance has the power to deform families , then tear them apart 2 +123627 6639 intolerance has the power to deform families , then tear them apart 1 +123628 6639 intolerance 2 +123629 6639 has the power to deform families , then tear them apart 1 +123630 6639 the power to deform families , then tear them apart 2 +123631 6639 power to deform families , then tear them apart 1 +123632 6639 to deform families , then tear them apart 1 +123633 6639 deform families , then tear them apart 1 +123634 6639 deform families , then 1 +123635 6639 deform families , 1 +123636 6639 deform families 1 +123637 6639 deform 2 +123638 6639 tear them apart 2 +123639 6639 tear them 2 +123640 6640 Boasting some of the most poorly staged and lit action in memory , Impostor is as close as you can get to an imitation movie . 1 +123641 6640 Boasting some of the most poorly staged and lit action in memory 0 +123642 6640 some of the most poorly staged and lit action in memory 0 +123643 6640 of the most poorly staged and lit action in memory 1 +123644 6640 the most poorly staged and lit action in memory 0 +123645 6640 the most poorly staged and lit action 1 +123646 6640 most poorly staged and lit action 1 +123647 6640 most poorly staged and lit 1 +123648 6640 most poorly staged and 0 +123649 6640 most poorly staged 1 +123650 6640 poorly staged 1 +123651 6640 , Impostor is as close as you can get to an imitation movie . 1 +123652 6640 Impostor is as close as you can get to an imitation movie . 2 +123653 6640 is as close as you can get to an imitation movie . 2 +123654 6640 is as close as you can get to an imitation movie 0 +123655 6640 is as close 2 +123656 6640 as close 2 +123657 6640 as you can get to an imitation movie 2 +123658 6640 you can get to an imitation movie 2 +123659 6640 can get to an imitation movie 2 +123660 6640 get to an imitation movie 1 +123661 6640 to an imitation movie 3 +123662 6640 an imitation movie 0 +123663 6640 imitation movie 1 +123664 6641 Nothing about the film -- with the possible exception of Elizabeth Hurley 's breasts -- is authentic . 0 +123665 6641 Nothing about the film -- with the possible exception of Elizabeth Hurley 's breasts -- 1 +123666 6641 about the film -- with the possible exception of Elizabeth Hurley 's breasts -- 2 +123667 6641 the film -- with the possible exception of Elizabeth Hurley 's breasts -- 2 +123668 6641 -- with the possible exception of Elizabeth Hurley 's breasts -- 2 +123669 6641 with the possible exception of Elizabeth Hurley 's breasts -- 2 +123670 6641 with the possible exception of Elizabeth Hurley 's breasts 2 +123671 6641 the possible exception of Elizabeth Hurley 's breasts 3 +123672 6641 the possible exception 2 +123673 6641 possible exception 2 +123674 6641 of Elizabeth Hurley 's breasts 2 +123675 6641 Elizabeth Hurley 's breasts 2 +123676 6641 Elizabeth Hurley 's 3 +123677 6641 Hurley 's 2 +123678 6641 breasts 2 +123679 6641 is authentic . 3 +123680 6641 is authentic 4 +123681 6642 ... passable enough for a shoot-out in the o.k. court house of life type of flick . 2 +123682 6642 passable enough for a shoot-out in the o.k. court house of life type of flick . 2 +123683 6642 passable enough for a shoot-out in the o.k. court house of life type of flick 2 +123684 6642 passable enough for a shoot-out in the o.k. court house of life type 2 +123685 6642 passable enough for a shoot-out in the o.k. court house 2 +123686 6642 passable enough for a shoot-out in the o.k. court 2 +123687 6642 passable enough for a shoot-out 2 +123688 6642 passable enough 2 +123689 6642 for a shoot-out 2 +123690 6642 a shoot-out 2 +123691 6642 shoot-out 2 +123692 6642 in the o.k. court 2 +123693 6642 the o.k. court 2 +123694 6642 o.k. court 2 +123695 6642 court 2 +123696 6642 of life type 2 +123697 6642 life type 2 +123698 6642 of flick 2 +123699 6643 A highly spirited , imaginative kid 's movie that broaches neo-Augustinian theology : Is God stuck in Heaven because He 's afraid of His best-known creation ? 4 +123700 6643 A highly spirited , imaginative kid 's movie that broaches neo-Augustinian theology : Is God 3 +123701 6643 A highly spirited , imaginative kid 's movie 4 +123702 6643 highly spirited , imaginative kid 's movie 4 +123703 6643 highly spirited 3 +123704 6643 , imaginative kid 's movie 3 +123705 6643 imaginative kid 's movie 3 +123706 6643 kid 's movie 2 +123707 6643 that broaches neo-Augustinian theology : Is God 2 +123708 6643 broaches neo-Augustinian theology : Is God 2 +123709 6643 broaches 2 +123710 6643 neo-Augustinian theology : Is God 3 +123711 6643 neo-Augustinian theology : 2 +123712 6643 neo-Augustinian theology 2 +123713 6643 neo-Augustinian 2 +123714 6643 theology 2 +123715 6643 Is God 3 +123716 6643 stuck in Heaven because He 's afraid of His best-known creation ? 1 +123717 6643 stuck in Heaven because He 's afraid of His best-known creation 2 +123718 6643 stuck in Heaven 2 +123719 6643 in Heaven 3 +123720 6643 because He 's afraid of His best-known creation 2 +123721 6643 He 's afraid of His best-known creation 1 +123722 6643 's afraid of His best-known creation 2 +123723 6643 afraid of His best-known creation 2 +123724 6643 of His best-known creation 3 +123725 6643 His best-known creation 4 +123726 6643 best-known creation 3 +123727 6643 best-known 2 +123728 6644 For all the charm of Kevin Kline and a story that puts old-fashioned values under the microscope , there 's something creepy about this movie . 3 +123729 6644 For all the charm of Kevin Kline and a story that puts old-fashioned values under the microscope 2 +123730 6644 all the charm of Kevin Kline and a story that puts old-fashioned values under the microscope 3 +123731 6644 the charm of Kevin Kline and a story that puts old-fashioned values under the microscope 3 +123732 6644 the charm of Kevin Kline and 3 +123733 6644 the charm of Kevin Kline 3 +123734 6644 of Kevin Kline 2 +123735 6644 Kevin Kline 2 +123736 6644 a story that puts old-fashioned values under the microscope 3 +123737 6644 that puts old-fashioned values under the microscope 2 +123738 6644 puts old-fashioned values under the microscope 2 +123739 6644 puts old-fashioned values 2 +123740 6644 old-fashioned values 3 +123741 6644 under the microscope 2 +123742 6644 the microscope 2 +123743 6644 microscope 2 +123744 6644 , there 's something creepy about this movie . 1 +123745 6644 there 's something creepy about this movie . 2 +123746 6644 's something creepy about this movie . 2 +123747 6644 's something creepy about this movie 2 +123748 6644 something creepy about this movie 1 +123749 6644 something creepy 2 +123750 6645 McKay shows crushingly little curiosity about , or is ill-equipped to examine , the interior lives of the characters in his film , much less incorporate them into his narrative . 0 +123751 6645 shows crushingly little curiosity about , or is ill-equipped to examine , the interior lives of the characters in his film , much less incorporate them into his narrative . 0 +123752 6645 shows crushingly little curiosity about , or is ill-equipped to examine , the interior lives of the characters in his film , much less incorporate them into his narrative 1 +123753 6645 shows crushingly little curiosity about , or 2 +123754 6645 shows crushingly little curiosity about , 1 +123755 6645 shows crushingly little curiosity about 1 +123756 6645 crushingly little curiosity about 2 +123757 6645 crushingly 2 +123758 6645 little curiosity about 2 +123759 6645 is ill-equipped to examine , the interior lives of the characters in his film , much less incorporate them into his narrative 2 +123760 6645 ill-equipped to examine , the interior lives of the characters in his film , much less incorporate them into his narrative 1 +123761 6645 ill-equipped 1 +123762 6645 to examine , the interior lives of the characters in his film , much less incorporate them into his narrative 0 +123763 6645 examine , the interior lives of the characters in his film , much less incorporate them into his narrative 2 +123764 6645 examine , the interior lives of the characters in his film , much less 1 +123765 6645 examine , the interior lives of the characters in his film , 2 +123766 6645 examine , the interior lives of the characters in his film 2 +123767 6645 examine , 2 +123768 6645 the interior lives of the characters in his film 3 +123769 6645 the interior lives of the characters 2 +123770 6645 the interior lives 2 +123771 6645 interior lives 2 +123772 6645 interior 2 +123773 6645 in his film 2 +123774 6645 much less 2 +123775 6645 incorporate them into his narrative 2 +123776 6645 incorporate them 2 +123777 6645 into his narrative 2 +123778 6646 It 's like Rocky and Bullwinkle on Speed , but that 's neither completely enlightening , nor does it catch the intensity of the movie 's strangeness . 1 +123779 6646 It 's like Rocky and Bullwinkle on Speed , but that 's neither completely enlightening , nor does it catch the intensity of the movie 's strangeness 1 +123780 6646 It 's like Rocky and Bullwinkle on Speed , but 2 +123781 6646 It 's like Rocky and Bullwinkle on Speed , 2 +123782 6646 It 's like Rocky and Bullwinkle on Speed 2 +123783 6646 's like Rocky and Bullwinkle on Speed 3 +123784 6646 's like Rocky and Bullwinkle 2 +123785 6646 like Rocky and Bullwinkle 2 +123786 6646 Rocky and Bullwinkle 2 +123787 6646 Rocky and 3 +123788 6646 Bullwinkle 2 +123789 6646 on Speed 2 +123790 6646 Speed 2 +123791 6646 that 's neither completely enlightening , nor does it catch the intensity of the movie 's strangeness 2 +123792 6646 that 's neither completely enlightening , nor 1 +123793 6646 that 's neither completely enlightening , 1 +123794 6646 that 's neither completely enlightening 1 +123795 6646 's neither completely enlightening 2 +123796 6646 completely enlightening 4 +123797 6646 does it catch the intensity of the movie 's strangeness 2 +123798 6646 catch the intensity of the movie 's strangeness 3 +123799 6646 the intensity of the movie 's strangeness 2 +123800 6646 of the movie 's strangeness 2 +123801 6646 the movie 's strangeness 2 +123802 6647 I do n't think this movie loves women at all . 1 +123803 6647 do n't think this movie loves women at all . 2 +123804 6647 do n't think this movie loves women at all 1 +123805 6647 think this movie loves women at all 1 +123806 6647 this movie loves women at all 3 +123807 6647 loves women at all 2 +123808 6647 loves women 2 +123809 6648 If you are willing to do this , then you so crazy ! 1 +123810 6648 If you are willing to do this 2 +123811 6648 you are willing to do this 2 +123812 6648 are willing to do this 2 +123813 6648 willing to do this 2 +123814 6648 to do this 2 +123815 6648 do this 2 +123816 6648 , then you so crazy ! 2 +123817 6648 then you so crazy ! 2 +123818 6648 you so crazy ! 2 +123819 6648 so crazy ! 3 +123820 6648 crazy ! 2 +123821 6649 A bodice-ripper for intellectuals . 3 +123822 6649 A bodice-ripper for intellectuals 3 +123823 6649 A bodice-ripper 2 +123824 6649 for intellectuals 2 +123825 6649 intellectuals 2 +123826 6650 The Master of Disguise is funny -- not `` ha ha '' funny , `` dead circus performer '' funny . 2 +123827 6650 The Master of Disguise is funny -- not `` ha ha '' funny , `` dead circus performer '' funny 1 +123828 6650 The Master of Disguise is funny -- not 0 +123829 6650 The Master of Disguise is funny -- 3 +123830 6650 The Master of Disguise is funny 4 +123831 6650 `` ha ha '' funny , `` dead circus performer '' funny 2 +123832 6650 `` ha ha '' 2 +123833 6650 ha ha '' 2 +123834 6650 ha 3 +123835 6650 ha '' 2 +123836 6650 funny , `` dead circus performer '' funny 3 +123837 6650 , `` dead circus performer '' funny 1 +123838 6650 `` dead circus performer '' funny 2 +123839 6650 dead circus performer '' funny 2 +123840 6650 circus performer '' funny 2 +123841 6650 performer '' funny 3 +123842 6650 '' funny 4 +123843 6651 Made to be Jaglomized is the Cannes Film Festival , the annual Riviera spree of flesh , buzz , blab and money . 1 +123844 6651 Made to be Jaglomized is the Cannes Film Festival , the annual Riviera spree of flesh , buzz , blab and money 2 +123845 6651 Made to be Jaglomized is 2 +123846 6651 Made to be Jaglomized 2 +123847 6651 to be Jaglomized 2 +123848 6651 be Jaglomized 2 +123849 6651 Jaglomized 2 +123850 6651 the Cannes Film Festival , the annual Riviera spree of flesh , buzz , blab and money 2 +123851 6651 the Cannes Film Festival , 2 +123852 6651 the annual Riviera spree of flesh , buzz , blab and money 2 +123853 6651 the annual Riviera spree 2 +123854 6651 annual Riviera spree 2 +123855 6651 annual 2 +123856 6651 Riviera spree 2 +123857 6651 Riviera 2 +123858 6651 spree 2 +123859 6651 of flesh , buzz , blab and money 2 +123860 6651 flesh , buzz , blab and money 2 +123861 6651 flesh 2 +123862 6651 , buzz , blab and money 2 +123863 6651 buzz , blab and money 1 +123864 6651 , blab and money 2 +123865 6651 blab and money 2 +123866 6651 blab and 1 +123867 6652 At once a testament to the divine calling of education and a demonstration of the painstaking process of imparting knowledge . 3 +123868 6652 a testament to the divine calling of education and a demonstration of the painstaking process of imparting knowledge . 3 +123869 6652 a testament to the divine calling of education and a demonstration of the painstaking 3 +123870 6652 to the divine calling of education and a demonstration of the painstaking 3 +123871 6652 the divine calling of education and a demonstration of the painstaking 2 +123872 6652 the divine calling of education and 2 +123873 6652 the divine calling of education 2 +123874 6652 the divine calling 3 +123875 6652 divine calling 2 +123876 6652 calling 2 +123877 6652 of education 3 +123878 6652 a demonstration of the painstaking 2 +123879 6652 a demonstration 2 +123880 6652 of the painstaking 1 +123881 6652 the painstaking 1 +123882 6652 painstaking 3 +123883 6652 process of imparting knowledge . 3 +123884 6652 process of imparting knowledge 2 +123885 6652 of imparting knowledge 2 +123886 6652 imparting knowledge 2 +123887 6652 imparting 2 +123888 6653 Plays like one long , meandering sketch inspired by the works of John Waters and Todd Solondz , rather than a fully developed story . 1 +123889 6653 like one long , meandering sketch inspired by the works of John Waters and Todd Solondz , rather than a fully developed story . 2 +123890 6653 like one long , meandering sketch inspired by the works of John Waters and Todd Solondz , rather than a fully developed story 1 +123891 6653 like one long , 2 +123892 6653 like one long 1 +123893 6653 like one 2 +123894 6653 meandering sketch inspired by the works of John Waters and Todd Solondz , rather than a fully developed story 1 +123895 6653 sketch inspired by the works of John Waters and Todd Solondz , rather than a fully developed story 1 +123896 6653 sketch inspired by the works of John Waters and Todd Solondz , rather than 2 +123897 6653 sketch inspired by the works of John Waters and Todd Solondz , 2 +123898 6653 sketch inspired by the works of John Waters and Todd Solondz 2 +123899 6653 inspired by the works of John Waters and Todd Solondz 2 +123900 6653 by the works of John Waters and Todd Solondz 2 +123901 6653 the works of John Waters and Todd Solondz 2 +123902 6653 the works 2 +123903 6653 of John Waters and Todd Solondz 2 +123904 6653 John Waters and Todd Solondz 2 +123905 6653 John Waters and 2 +123906 6653 John Waters 2 +123907 6653 a fully developed story 3 +123908 6653 fully developed story 3 +123909 6653 fully developed 2 +123910 6654 An unholy mess , driven by the pathetic idea that if you shoot something on crummy-looking videotape , it must be labelled ` hip ' , ` innovative ' and ` realistic ' . 0 +123911 6654 An unholy mess , driven by the pathetic idea that if you shoot something on crummy-looking videotape , it must be labelled ` hip ' , ` innovative ' and ` realistic ' 0 +123912 6654 An unholy mess , 1 +123913 6654 An unholy mess 0 +123914 6654 unholy mess 1 +123915 6654 unholy 1 +123916 6654 driven by the pathetic idea that if you shoot something on crummy-looking videotape , it must be labelled ` hip ' , ` innovative ' and ` realistic ' 0 +123917 6654 driven by the pathetic idea 1 +123918 6654 by the pathetic idea 1 +123919 6654 the pathetic idea 1 +123920 6654 pathetic idea 0 +123921 6654 that if you shoot something on crummy-looking videotape , it must be labelled ` hip ' , ` innovative ' and ` realistic ' 1 +123922 6654 if you shoot something on crummy-looking videotape , it must be labelled ` hip ' , ` innovative ' and ` realistic ' 1 +123923 6654 if you shoot something on crummy-looking videotape 2 +123924 6654 you shoot something on crummy-looking videotape 1 +123925 6654 shoot something on crummy-looking videotape 1 +123926 6654 something on crummy-looking videotape 1 +123927 6654 on crummy-looking videotape 1 +123928 6654 crummy-looking videotape 0 +123929 6654 crummy-looking 2 +123930 6654 , it must be labelled ` hip ' , ` innovative ' and ` realistic ' 3 +123931 6654 it must be labelled ` hip ' , ` innovative ' and ` realistic ' 3 +123932 6654 must be labelled ` hip ' , ` innovative ' and ` realistic ' 2 +123933 6654 be labelled ` hip ' , ` innovative ' and ` realistic ' 3 +123934 6654 labelled ` hip ' , ` innovative ' and ` realistic ' 3 +123935 6654 labelled 2 +123936 6654 ` hip ' , ` innovative ' and ` realistic ' 4 +123937 6654 ` hip ' , 2 +123938 6654 ` hip ' 3 +123939 6654 hip ' 3 +123940 6654 ` innovative ' and ` realistic ' 3 +123941 6654 innovative ' and ` realistic ' 4 +123942 6654 ' and ` realistic ' 3 +123943 6654 and ` realistic ' 2 +123944 6654 ` realistic ' 3 +123945 6654 realistic ' 3 +123946 6655 wo n't be placed in the pantheon of the best of the swashbucklers but it is a whole lot of fun and you get to see the one of the world 's best actors , Daniel Auteuil , have a whale of a good time . 4 +123947 6655 wo n't be placed in the pantheon of the best of the swashbucklers but it is a whole lot of fun and you get to see the one of the world 's best actors , Daniel Auteuil , 4 +123948 6655 be placed in the pantheon of the best of the swashbucklers but it is a whole lot of fun and you get to see the one of the world 's best actors , Daniel Auteuil , 3 +123949 6655 placed in the pantheon of the best of the swashbucklers but it is a whole lot of fun and you get to see the one of the world 's best actors , Daniel Auteuil , 3 +123950 6655 placed in the pantheon of the best of the swashbucklers 3 +123951 6655 in the pantheon of the best of the swashbucklers 4 +123952 6655 the pantheon of the best of the swashbucklers 4 +123953 6655 of the best of the swashbucklers 3 +123954 6655 the best of the swashbucklers 3 +123955 6655 of the swashbucklers 2 +123956 6655 the swashbucklers 2 +123957 6655 swashbucklers 2 +123958 6655 but it is a whole lot of fun and you get to see the one of the world 's best actors , Daniel Auteuil , 4 +123959 6655 it is a whole lot of fun and you get to see the one of the world 's best actors , Daniel Auteuil , 4 +123960 6655 it is a whole lot of fun and 4 +123961 6655 it is a whole lot of fun 4 +123962 6655 is a whole lot of fun 4 +123963 6655 a whole lot of fun 4 +123964 6655 you get to see the one of the world 's best actors , Daniel Auteuil , 4 +123965 6655 get to see the one of the world 's best actors , Daniel Auteuil , 3 +123966 6655 to see the one of the world 's best actors , Daniel Auteuil , 4 +123967 6655 see the one of the world 's best actors , Daniel Auteuil , 2 +123968 6655 the one of the world 's best actors , Daniel Auteuil , 4 +123969 6655 of the world 's best actors , Daniel Auteuil , 3 +123970 6655 the world 's best actors , Daniel Auteuil , 3 +123971 6655 the world 's best actors , Daniel Auteuil 4 +123972 6655 the world 's best actors , 4 +123973 6655 the world 's best actors 4 +123974 6655 best actors 3 +123975 6655 Daniel Auteuil 2 +123976 6655 have a whale of a good time . 3 +123977 6655 have a whale of a good time 3 +123978 6655 a whale of a good time 3 +123979 6656 The video work is so grainy and rough , so dependent on being ` naturalistic ' rather than carefully lit and set up , that it 's exhausting to watch . 2 +123980 6656 The video work 2 +123981 6656 video work 2 +123982 6656 is so grainy and rough , so dependent on being ` naturalistic ' rather than carefully lit and set up , that it 's exhausting to watch . 1 +123983 6656 is so grainy and rough , so dependent on being ` naturalistic ' rather than carefully lit and set up , that it 's exhausting to watch 1 +123984 6656 is so grainy and rough , so dependent on being ` naturalistic ' rather than carefully lit and set up , 1 +123985 6656 is so grainy and rough , so dependent on being ` naturalistic ' rather than carefully lit and set up 1 +123986 6656 so grainy and rough , so dependent on being ` naturalistic ' rather than carefully lit and set up 1 +123987 6656 so grainy and rough , so 3 +123988 6656 so grainy and rough , 1 +123989 6656 so grainy and rough 1 +123990 6656 grainy and rough 2 +123991 6656 grainy and 2 +123992 6656 dependent on being ` naturalistic ' rather than carefully lit and set up 2 +123993 6656 on being ` naturalistic ' rather than carefully lit and set up 2 +123994 6656 being ` naturalistic ' rather than carefully lit and set up 2 +123995 6656 ` naturalistic ' rather than carefully lit and set up 3 +123996 6656 ` naturalistic ' rather than 3 +123997 6656 ` naturalistic ' 2 +123998 6656 naturalistic ' 3 +123999 6656 carefully lit and set up 3 +124000 6656 carefully lit and 2 +124001 6656 carefully lit 3 +124002 6656 that it 's exhausting to watch 1 +124003 6656 it 's exhausting to watch 1 +124004 6656 's exhausting to watch 1 +124005 6656 exhausting to watch 1 +124006 6657 Cold , pretentious , thoroughly dislikable study in sociopathy . 1 +124007 6657 Cold , pretentious , 1 +124008 6657 Cold , pretentious 1 +124009 6657 thoroughly dislikable study in sociopathy . 2 +124010 6657 dislikable study in sociopathy . 1 +124011 6657 dislikable study in sociopathy 1 +124012 6657 dislikable 1 +124013 6657 study in sociopathy 2 +124014 6657 in sociopathy 2 +124015 6657 sociopathy 2 +124016 6658 Puts a refreshing and comical spin on the all-too-familiar saga of the contemporary single woman . 3 +124017 6658 Puts a refreshing and comical spin on the all-too-familiar saga of the contemporary single woman 4 +124018 6658 a refreshing and comical spin on the all-too-familiar saga of the contemporary single woman 3 +124019 6658 a refreshing and comical spin 3 +124020 6658 refreshing and comical spin 4 +124021 6658 refreshing and comical 3 +124022 6658 refreshing and 3 +124023 6658 comical 3 +124024 6658 on the all-too-familiar saga of the contemporary single woman 2 +124025 6658 the all-too-familiar saga of the contemporary single woman 1 +124026 6658 the all-too-familiar saga 2 +124027 6658 all-too-familiar saga 2 +124028 6658 of the contemporary single woman 2 +124029 6658 the contemporary single woman 2 +124030 6658 contemporary single woman 2 +124031 6658 single woman 2 +124032 6659 The cast is top-notch and I predict there will be plenty of female audience members drooling over Michael Idemoto as Michael . 4 +124033 6659 The cast is top-notch and I predict there will be plenty of female audience members drooling over Michael Idemoto as Michael 4 +124034 6659 The cast is top-notch and 4 +124035 6659 The cast is top-notch 4 +124036 6659 is top-notch 4 +124037 6659 I predict there will be plenty of female audience members drooling over Michael Idemoto as Michael 3 +124038 6659 predict there will be plenty of female audience members drooling over Michael Idemoto as Michael 3 +124039 6659 there will be plenty of female audience members drooling over Michael Idemoto as Michael 3 +124040 6659 will be plenty of female audience members drooling over Michael Idemoto as Michael 3 +124041 6659 be plenty of female audience members drooling over Michael Idemoto as Michael 3 +124042 6659 plenty of female audience members drooling over Michael Idemoto as Michael 3 +124043 6659 of female audience members drooling over Michael Idemoto as Michael 3 +124044 6659 female audience members drooling over Michael Idemoto as Michael 3 +124045 6659 female audience members 2 +124046 6659 drooling over Michael Idemoto as Michael 3 +124047 6659 over Michael Idemoto as Michael 2 +124048 6659 Michael Idemoto as Michael 2 +124049 6659 Michael Idemoto 2 +124050 6659 Idemoto 2 +124051 6659 as Michael 2 +124052 6660 A romance ? 2 +124053 6660 romance ? 2 +124054 6661 Might be one of those vanity projects in which a renowned filmmaker attempts to show off his talent by surrounding himself with untalented people . 2 +124055 6661 Might be one of those vanity projects in which a renowned filmmaker attempts to show off his talent by surrounding himself with untalented people 2 +124056 6661 be one of those vanity projects in which a renowned filmmaker attempts to show off his talent by surrounding himself with untalented people 1 +124057 6661 one of those vanity projects in which a renowned filmmaker attempts to show off his talent by surrounding himself with untalented people 1 +124058 6661 one of those vanity projects 2 +124059 6661 of those vanity projects 2 +124060 6661 those vanity projects 2 +124061 6661 vanity projects 2 +124062 6661 in which a renowned filmmaker attempts to show off his talent by surrounding himself with untalented people 1 +124063 6661 a renowned filmmaker attempts to show off his talent by surrounding himself with untalented people 1 +124064 6661 a renowned filmmaker 3 +124065 6661 renowned filmmaker 3 +124066 6661 attempts to show off his talent by surrounding himself with untalented people 1 +124067 6661 to show off his talent by surrounding himself with untalented people 2 +124068 6661 show off his talent by surrounding himself with untalented people 1 +124069 6661 show off his talent 2 +124070 6661 show off 2 +124071 6661 by surrounding himself with untalented people 0 +124072 6661 surrounding himself with untalented people 1 +124073 6661 surrounding himself 2 +124074 6661 with untalented people 1 +124075 6661 untalented people 1 +124076 6662 The biggest problem I have -LRB- other than the very sluggish pace -RRB- is we never really see her Esther blossom as an actress , even though her talent is supposed to be growing . 1 +124077 6662 The biggest problem I have -LRB- other than the very sluggish pace -RRB- 2 +124078 6662 The biggest problem I have 1 +124079 6662 I have 2 +124080 6662 -LRB- other than the very sluggish pace -RRB- 1 +124081 6662 other than the very sluggish pace -RRB- 1 +124082 6662 other than the very sluggish pace 2 +124083 6662 than the very sluggish pace 1 +124084 6662 the very sluggish pace 2 +124085 6662 very sluggish pace 1 +124086 6662 very sluggish 1 +124087 6662 is we never really see her Esther blossom as an actress , even though her talent is supposed to be growing . 1 +124088 6662 is we never really see her Esther blossom as an actress , even though her talent is supposed to be growing 1 +124089 6662 is we never 2 +124090 6662 is we 2 +124091 6662 really see her Esther blossom as an actress , even though her talent is supposed to be growing 2 +124092 6662 see her Esther blossom as an actress , even though her talent is supposed to be growing 2 +124093 6662 see her Esther blossom as an actress , 3 +124094 6662 see her Esther blossom as an actress 3 +124095 6662 see her Esther blossom 2 +124096 6662 her Esther blossom 2 +124097 6662 Esther blossom 2 +124098 6662 blossom 2 +124099 6662 even though her talent is supposed to be growing 2 +124100 6662 though her talent is supposed to be growing 2 +124101 6662 her talent is supposed to be growing 2 +124102 6662 her talent 2 +124103 6662 is supposed to be growing 2 +124104 6662 supposed to be growing 2 +124105 6662 to be growing 2 +124106 6662 be growing 3 +124107 6663 Has the marks of a septuagenarian ; it 's a crusty treatment of a clever gimmick . 2 +124108 6663 Has the marks of a septuagenarian ; it 's a crusty treatment of a clever gimmick 1 +124109 6663 Has the marks of a septuagenarian ; 1 +124110 6663 Has the marks of a septuagenarian 2 +124111 6663 the marks of a septuagenarian 2 +124112 6663 the marks 2 +124113 6663 of a septuagenarian 2 +124114 6663 a septuagenarian 3 +124115 6663 septuagenarian 2 +124116 6663 it 's a crusty treatment of a clever gimmick 2 +124117 6663 's a crusty treatment of a clever gimmick 2 +124118 6663 a crusty treatment of a clever gimmick 1 +124119 6663 a crusty treatment 1 +124120 6663 crusty treatment 2 +124121 6663 crusty 1 +124122 6663 of a clever gimmick 2 +124123 6663 a clever gimmick 3 +124124 6663 clever gimmick 2 +124125 6664 The problems of the people in Love in the Time of Money are hardly specific to their era . 2 +124126 6664 The problems of the people in Love in the Time of Money 2 +124127 6664 of the people in Love in the Time of Money 2 +124128 6664 the people in Love in the Time of Money 2 +124129 6664 in Love in the Time of Money 2 +124130 6664 are hardly specific to their era . 2 +124131 6664 are hardly specific to their era 3 +124132 6664 hardly specific to their era 2 +124133 6664 specific to their era 2 +124134 6664 to their era 2 +124135 6665 ... fuses the events of her life with the imagery in her paintings so vividly that the artist 's work may take on a striking new significance for anyone who sees the film . 4 +124136 6665 fuses the events of her life with the imagery in her paintings so vividly that the artist 's work may take on a striking new significance for anyone who sees the film . 4 +124137 6665 fuses the events of her life with the imagery in her paintings so vividly that the artist 's work may take on a striking new significance for anyone who sees the film 4 +124138 6665 fuses the events of her life with the imagery in her paintings 2 +124139 6665 fuses 2 +124140 6665 the events of her life with the imagery in her paintings 2 +124141 6665 of her life with the imagery in her paintings 3 +124142 6665 her life with the imagery in her paintings 2 +124143 6665 with the imagery in her paintings 2 +124144 6665 the imagery in her paintings 2 +124145 6665 in her paintings 2 +124146 6665 her paintings 2 +124147 6665 so vividly that the artist 's work may take on a striking new significance for anyone who sees the film 3 +124148 6665 that the artist 's work may take on a striking new significance for anyone who sees the film 3 +124149 6665 the artist 's work may take on a striking new significance for anyone who sees the film 4 +124150 6665 the artist 's work 2 +124151 6665 the artist 's 2 +124152 6665 artist 's 2 +124153 6665 may take on a striking new significance for anyone who sees the film 3 +124154 6665 take on a striking new significance for anyone who sees the film 3 +124155 6665 on a striking new significance for anyone who sees the film 3 +124156 6665 a striking new significance for anyone who sees the film 3 +124157 6665 a striking new significance for anyone 3 +124158 6665 a striking new significance 2 +124159 6665 striking new significance 3 +124160 6665 new significance 2 +124161 6665 for anyone 3 +124162 6665 who sees the film 2 +124163 6665 sees the film 2 +124164 6666 It 's a good film , but it falls short of its aspiration to be a true ` epic ' . 2 +124165 6666 It 's a good film , but it falls short of its aspiration to be a true ` epic ' 3 +124166 6666 It 's a good film , but 2 +124167 6666 It 's a good film , 3 +124168 6666 It 's a good film 3 +124169 6666 's a good film 3 +124170 6666 it falls short of its aspiration to be a true ` epic ' 1 +124171 6666 falls short of its aspiration to be a true ` epic ' 2 +124172 6666 short of its aspiration to be a true ` epic ' 1 +124173 6666 of its aspiration to be a true ` epic ' 3 +124174 6666 its aspiration to be a true ` epic ' 3 +124175 6666 aspiration to be a true ` epic ' 3 +124176 6666 aspiration 3 +124177 6666 to be a true ` epic ' 2 +124178 6666 be a true ` epic ' 3 +124179 6666 a true ` epic ' 3 +124180 6666 true ` epic ' 3 +124181 6666 ` epic ' 2 +124182 6666 epic ' 3 +124183 6667 Quite simply , a joy to watch and -- especially -- to listen to . 4 +124184 6667 Quite simply , a joy to watch and -- especially -- to listen to 3 +124185 6667 Quite simply , 2 +124186 6667 a joy to watch and -- especially -- to listen to 4 +124187 6667 joy to watch and -- especially -- to listen to 4 +124188 6667 to watch and -- especially -- to listen to 2 +124189 6667 watch and -- especially -- to listen to 3 +124190 6667 watch and -- especially -- 2 +124191 6667 watch and 2 +124192 6667 -- especially -- 2 +124193 6667 especially -- 2 +124194 6667 to listen to 2 +124195 6667 listen to 2 +124196 6668 As an actor 's showcase , Hart 's War has much to recommend it , even if the top-billed Willis is not the most impressive player . 3 +124197 6668 As an actor 's showcase 3 +124198 6668 an actor 's showcase 2 +124199 6668 , Hart 's War has much to recommend it , even if the top-billed Willis is not the most impressive player . 3 +124200 6668 Hart 's War has much to recommend it , even if the top-billed Willis is not the most impressive player . 2 +124201 6668 has much to recommend it , even if the top-billed Willis is not the most impressive player . 3 +124202 6668 has much to recommend it , even if the top-billed Willis is not the most impressive player 3 +124203 6668 has much to recommend it , 3 +124204 6668 has much to recommend it 3 +124205 6668 even if the top-billed Willis is not the most impressive player 3 +124206 6668 if the top-billed Willis is not the most impressive player 2 +124207 6668 the top-billed Willis is not the most impressive player 2 +124208 6668 the top-billed Willis 2 +124209 6668 top-billed Willis 2 +124210 6668 is not the most impressive player 1 +124211 6668 the most impressive player 3 +124212 6668 most impressive player 3 +124213 6668 most impressive 4 +124214 6669 It 's too bad nothing else is . 2 +124215 6669 's too bad nothing else is . 1 +124216 6669 's too bad nothing else is 1 +124217 6669 too bad nothing else is 1 +124218 6669 bad nothing else is 1 +124219 6669 nothing else is 2 +124220 6670 The crap continues . 0 +124221 6670 The crap 1 +124222 6670 continues . 3 +124223 6671 Something has been lost in the translation ... another routine Hollywood frightfest in which the slack execution italicizes the absurdity of the premise . 1 +124224 6671 has been lost in the translation ... another routine Hollywood frightfest in which the slack execution italicizes the absurdity of the premise . 0 +124225 6671 has been lost in the translation ... another routine Hollywood frightfest in which the slack execution italicizes the absurdity of the premise 1 +124226 6671 been lost in the translation ... another routine Hollywood frightfest in which the slack execution italicizes the absurdity of the premise 1 +124227 6671 lost in the translation ... another routine Hollywood frightfest in which the slack execution italicizes the absurdity of the premise 0 +124228 6671 in the translation ... another routine Hollywood frightfest in which the slack execution italicizes the absurdity of the premise 1 +124229 6671 the translation ... another routine Hollywood frightfest in which the slack execution italicizes the absurdity of the premise 0 +124230 6671 the translation ... 2 +124231 6671 another routine Hollywood frightfest in which the slack execution italicizes the absurdity of the premise 1 +124232 6671 another routine Hollywood frightfest 1 +124233 6671 routine Hollywood frightfest 2 +124234 6671 Hollywood frightfest 1 +124235 6671 frightfest 3 +124236 6671 in which the slack execution italicizes the absurdity of the premise 1 +124237 6671 the slack execution italicizes the absurdity of the premise 1 +124238 6671 the slack execution 2 +124239 6671 slack execution 1 +124240 6671 italicizes the absurdity of the premise 2 +124241 6671 italicizes 2 +124242 6671 the absurdity of the premise 1 +124243 6672 When the casting call for this movie went out , it must have read ` seeking anyone with acting ambition but no sense of pride or shame . ' 1 +124244 6672 When the casting call for this movie went out 2 +124245 6672 the casting call for this movie went out 2 +124246 6672 the casting call for this movie 2 +124247 6672 the casting call 2 +124248 6672 casting call 1 +124249 6672 for this movie 2 +124250 6672 went out 2 +124251 6672 , it must have read ` seeking anyone with acting ambition but no sense of pride or shame . ' 1 +124252 6672 it must have read ` seeking anyone with acting ambition but no sense of pride or shame . ' 1 +124253 6672 must have read ` seeking anyone with acting ambition but no sense of pride or shame . ' 0 +124254 6672 must have read ` seeking anyone with acting ambition but no sense of pride or shame . 0 +124255 6672 must have read ` seeking anyone with acting ambition but no sense of pride or shame 2 +124256 6672 have read ` seeking anyone with acting ambition but no sense of pride or shame 1 +124257 6672 read ` seeking anyone with acting ambition but no sense of pride or shame 1 +124258 6672 read ` 2 +124259 6672 seeking anyone with acting ambition but no sense of pride or shame 1 +124260 6672 seeking anyone 2 +124261 6672 with acting ambition but no sense of pride or shame 1 +124262 6672 acting ambition but no sense of pride or shame 2 +124263 6672 ambition but no sense of pride or shame 1 +124264 6672 but no sense of pride or shame 1 +124265 6672 no sense of pride or shame 1 +124266 6672 of pride or shame 2 +124267 6672 pride or shame 2 +124268 6672 pride or 2 +124269 6674 Though her fans will assuredly have their funny bones tickled , others will find their humor-seeking dollars best spent elsewhere . 1 +124270 6674 Though her fans will assuredly have their funny bones tickled 4 +124271 6674 her fans will assuredly have their funny bones tickled 3 +124272 6674 will assuredly have their funny bones tickled 4 +124273 6674 will assuredly 3 +124274 6674 assuredly 3 +124275 6674 have their funny bones tickled 3 +124276 6674 their funny bones tickled 3 +124277 6674 funny bones tickled 3 +124278 6674 bones tickled 3 +124279 6674 tickled 3 +124280 6674 , others will find their humor-seeking dollars best spent elsewhere . 0 +124281 6674 others will find their humor-seeking dollars best spent elsewhere . 1 +124282 6674 will find their humor-seeking dollars best spent elsewhere . 2 +124283 6674 will find their humor-seeking dollars best spent elsewhere 0 +124284 6674 find their humor-seeking dollars best spent elsewhere 1 +124285 6674 find their humor-seeking dollars 2 +124286 6674 their humor-seeking dollars 2 +124287 6674 humor-seeking dollars 2 +124288 6674 humor-seeking 2 +124289 6674 best spent elsewhere 1 +124290 6674 spent elsewhere 1 +124291 6675 The movie is almost completely lacking in suspense , surprise and consistent emotional conviction . 0 +124292 6675 is almost completely lacking in suspense , surprise and consistent emotional conviction . 0 +124293 6675 is almost completely lacking in suspense , surprise and consistent emotional conviction 0 +124294 6675 is almost completely 2 +124295 6675 almost completely 2 +124296 6675 lacking in suspense , surprise and consistent emotional conviction 1 +124297 6675 in suspense , surprise and consistent emotional conviction 3 +124298 6675 suspense , surprise and consistent emotional conviction 3 +124299 6675 suspense , surprise and 3 +124300 6675 suspense , surprise 3 +124301 6675 consistent emotional conviction 3 +124302 6675 emotional conviction 3 +124303 6676 Wickedly funny , visually engrossing , never boring , this movie challenges us to think about the ways we consume pop culture . 4 +124304 6676 Wickedly funny , visually engrossing , never boring , this movie 4 +124305 6676 Wickedly funny , visually engrossing , never boring , 4 +124306 6676 Wickedly funny , visually engrossing , never boring 3 +124307 6676 Wickedly funny , visually engrossing , 4 +124308 6676 Wickedly funny , visually engrossing 3 +124309 6676 Wickedly funny , 4 +124310 6676 visually engrossing 4 +124311 6676 never boring 2 +124312 6676 challenges us to think about the ways we consume pop culture . 3 +124313 6676 challenges us to think about the ways we consume pop culture 2 +124314 6676 us to think about the ways we consume pop culture 2 +124315 6676 to think about the ways we consume pop culture 3 +124316 6676 think about the ways we consume pop culture 2 +124317 6676 about the ways we consume pop culture 2 +124318 6676 the ways we consume pop culture 2 +124319 6676 we consume pop culture 2 +124320 6676 consume pop culture 2 +124321 6676 consume 2 +124322 6677 The Piano Teacher , like its title character , is repellantly out of control . 1 +124323 6677 , like its title character , is repellantly out of control . 1 +124324 6677 like its title character , is repellantly out of control . 1 +124325 6677 , is repellantly out of control . 0 +124326 6677 is repellantly out of control . 1 +124327 6677 is repellantly out of control 1 +124328 6677 repellantly out of control 1 +124329 6677 repellantly 2 +124330 6677 out of control 1 +124331 6677 of control 2 +124332 6678 Director-chef Gabriele Muccino keeps it fast -- zippy , comin ' at ya -- as if fearing that his film is molto superficiale . 2 +124333 6678 Director-chef Gabriele Muccino 2 +124334 6678 Director-chef 2 +124335 6678 Gabriele Muccino 2 +124336 6678 Gabriele 2 +124337 6678 keeps it fast -- zippy , comin ' at ya -- as if fearing that his film is molto superficiale . 2 +124338 6678 keeps it fast -- zippy , comin ' at ya -- as if fearing that his film is molto superficiale 2 +124339 6678 keeps it fast -- zippy , 3 +124340 6678 keeps it fast -- zippy 3 +124341 6678 keeps it fast -- 2 +124342 6678 keeps it fast 2 +124343 6678 comin ' at ya -- as if fearing that his film is molto superficiale 1 +124344 6678 comin ' at ya -- as if 2 +124345 6678 comin ' at ya -- 2 +124346 6678 comin ' at ya 2 +124347 6678 comin ' 2 +124348 6678 comin 2 +124349 6678 at ya 2 +124350 6678 ya 2 +124351 6678 fearing that his film is molto superficiale 1 +124352 6678 fearing 2 +124353 6678 that his film is molto superficiale 2 +124354 6678 his film is molto superficiale 2 +124355 6678 is molto superficiale 1 +124356 6678 molto superficiale 1 +124357 6678 molto 2 +124358 6678 superficiale 2 +124359 6679 Veers uncomfortably close to pro-Serb propaganda . 2 +124360 6679 uncomfortably close to pro-Serb propaganda . 1 +124361 6679 close to pro-Serb propaganda . 1 +124362 6679 close to pro-Serb propaganda 2 +124363 6679 to pro-Serb propaganda 2 +124364 6679 pro-Serb propaganda 3 +124365 6679 pro-Serb 2 +124366 6680 It 's makes a better travelogue than movie . 1 +124367 6680 makes a better travelogue than movie . 1 +124368 6680 makes a better travelogue than movie 2 +124369 6680 makes a better travelogue 2 +124370 6680 a better travelogue 2 +124371 6680 better travelogue 2 +124372 6680 travelogue 2 +124373 6680 than movie 2 +124374 6681 Bravo for history rewritten , and for the uncompromising knowledge that the highest power of all is the power of love . 3 +124375 6681 Bravo for history 3 +124376 6681 for history 2 +124377 6681 rewritten , and for the uncompromising knowledge that the highest power of all is the power of love . 3 +124378 6681 rewritten , and for the uncompromising knowledge that the highest power of all is the power of love 4 +124379 6681 rewritten , and 1 +124380 6681 rewritten , 2 +124381 6681 for the uncompromising knowledge that the highest power of all is the power of love 3 +124382 6681 for the uncompromising knowledge 2 +124383 6681 the uncompromising knowledge 3 +124384 6681 uncompromising knowledge 3 +124385 6681 that the highest power of all is the power of love 4 +124386 6681 the highest power of all is the power of love 3 +124387 6681 the highest power of all 2 +124388 6681 the highest power 3 +124389 6681 highest power 3 +124390 6681 is the power of love 3 +124391 6681 the power of love 3 +124392 6682 It 's also built on a faulty premise , one it follows into melodrama and silliness . 1 +124393 6682 's also built on a faulty premise , one it follows into melodrama and silliness . 0 +124394 6682 's also built on a faulty premise , one it follows into melodrama and silliness 1 +124395 6682 built on a faulty premise , one it follows into melodrama and silliness 1 +124396 6682 on a faulty premise , one it follows into melodrama and silliness 1 +124397 6682 a faulty premise , one it follows into melodrama and silliness 0 +124398 6682 a faulty premise , 1 +124399 6682 a faulty premise 1 +124400 6682 faulty premise 2 +124401 6682 faulty 1 +124402 6682 one it follows into melodrama and silliness 1 +124403 6682 it follows into melodrama and silliness 2 +124404 6682 follows into melodrama and silliness 0 +124405 6682 into melodrama and silliness 2 +124406 6682 melodrama and silliness 2 +124407 6682 melodrama and 1 +124408 6683 This is the stuff that Disney movies are made of . 3 +124409 6683 is the stuff that Disney movies are made of . 3 +124410 6683 is the stuff that Disney movies are made of 3 +124411 6683 is the stuff 2 +124412 6683 that Disney movies are made of 2 +124413 6683 Disney movies are made of 2 +124414 6683 Disney movies 2 +124415 6683 are made of 2 +124416 6683 made of 2 +124417 6684 For those who like quirky , slightly strange French films , this is a must ! 3 +124418 6684 For those who like quirky , slightly strange French films 3 +124419 6684 those who like quirky , slightly strange French films 3 +124420 6684 who like quirky , slightly strange French films 2 +124421 6684 like quirky , slightly strange French films 3 +124422 6684 quirky , slightly strange French films 3 +124423 6684 , slightly strange French films 2 +124424 6684 slightly strange French films 2 +124425 6684 slightly strange 2 +124426 6684 French films 2 +124427 6684 , this is a must ! 4 +124428 6684 this is a must ! 4 +124429 6684 is a must ! 3 +124430 6685 This is one of the rarest kinds of films : a family-oriented non-Disney film that is actually funny without hitting below the belt . 3 +124431 6685 is one of the rarest kinds of films : a family-oriented non-Disney film that is actually funny without hitting below the belt . 4 +124432 6685 is one of the rarest kinds of films : a family-oriented non-Disney film that is actually funny without hitting below the belt 4 +124433 6685 one of the rarest kinds of films : a family-oriented non-Disney film that is actually funny without hitting below the belt 4 +124434 6685 one of the rarest kinds of films : 3 +124435 6685 one of the rarest kinds of films 3 +124436 6685 of the rarest kinds of films 4 +124437 6685 the rarest kinds of films 4 +124438 6685 the rarest kinds 3 +124439 6685 rarest kinds 2 +124440 6685 rarest 2 +124441 6685 kinds 2 +124442 6685 a family-oriented non-Disney film that is actually funny without hitting below the belt 4 +124443 6685 a family-oriented non-Disney film 3 +124444 6685 family-oriented non-Disney film 2 +124445 6685 family-oriented 3 +124446 6685 non-Disney film 2 +124447 6685 non-Disney 2 +124448 6685 that is actually funny without hitting below the belt 3 +124449 6685 is actually funny without hitting below the belt 4 +124450 6685 funny without hitting below the belt 4 +124451 6685 without hitting below the belt 2 +124452 6685 hitting below the belt 1 +124453 6685 below the belt 2 +124454 6686 Horrible . 0 +124455 6687 A strong first act and absolutely , inescapably gorgeous , skyscraper-trapeze motion of the amazing Spider-Man . 4 +124456 6687 A strong first act and absolutely , inescapably gorgeous , skyscraper-trapeze motion of the amazing Spider-Man 4 +124457 6687 A strong first act and 3 +124458 6687 A strong first act 3 +124459 6687 strong first act 3 +124460 6687 absolutely , inescapably gorgeous , skyscraper-trapeze motion of the amazing Spider-Man 4 +124461 6687 absolutely , inescapably gorgeous , skyscraper-trapeze motion 4 +124462 6687 absolutely , inescapably gorgeous , 4 +124463 6687 , inescapably gorgeous , 4 +124464 6687 inescapably gorgeous , 4 +124465 6687 inescapably 2 +124466 6687 gorgeous , 3 +124467 6687 skyscraper-trapeze motion 2 +124468 6687 skyscraper-trapeze 2 +124469 6687 of the amazing Spider-Man 4 +124470 6687 the amazing Spider-Man 3 +124471 6687 amazing Spider-Man 2 +124472 6688 Moves in such odd plot directions and descends into such message-mongering moralism that its good qualities are obscured . 1 +124473 6688 Moves in such odd plot 2 +124474 6688 in such odd plot 1 +124475 6688 such odd plot 2 +124476 6688 odd plot 2 +124477 6688 directions and descends into such message-mongering moralism that its good qualities are obscured . 1 +124478 6688 directions and descends into such message-mongering moralism that its good qualities are obscured 1 +124479 6688 directions and 2 +124480 6688 descends into such message-mongering moralism that its good qualities are obscured 1 +124481 6688 descends into such message-mongering moralism 1 +124482 6688 into such message-mongering moralism 2 +124483 6688 such message-mongering moralism 1 +124484 6688 message-mongering moralism 1 +124485 6688 message-mongering 2 +124486 6688 moralism 2 +124487 6688 that its good qualities are obscured 2 +124488 6688 its good qualities are obscured 1 +124489 6688 its good qualities 3 +124490 6688 good qualities 3 +124491 6688 are obscured 2 +124492 6688 obscured 2 +124493 6689 An energetic , violent movie with a momentum that never lets up . 3 +124494 6689 An energetic , violent movie with a momentum that never lets up 3 +124495 6689 An energetic , violent movie 3 +124496 6689 energetic , violent movie 3 +124497 6689 , violent movie 1 +124498 6689 violent movie 2 +124499 6689 with a momentum that never lets up 4 +124500 6689 a momentum that never lets up 3 +124501 6689 a momentum 2 +124502 6689 that never lets up 2 +124503 6689 never lets up 2 +124504 6690 He allows his cast members to make creative contributions to the story and dialogue . 3 +124505 6690 allows his cast members to make creative contributions to the story and dialogue . 3 +124506 6690 allows his cast members to make creative contributions to the story and dialogue 3 +124507 6690 allows his cast members 2 +124508 6690 his cast members 2 +124509 6690 to make creative contributions to the story and dialogue 3 +124510 6690 make creative contributions to the story and dialogue 3 +124511 6690 make creative contributions 2 +124512 6690 creative contributions 3 +124513 6690 contributions 3 +124514 6690 to the story and dialogue 2 +124515 6690 the story and dialogue 2 +124516 6690 story and dialogue 2 +124517 6691 Will undoubtedly play well in European markets , where Mr. Besson is a brand name , and in Asia , where Ms. Shu is an institution , but American audiences will probably find it familiar and insufficiently cathartic . 1 +124518 6691 Will undoubtedly play well in European markets , where Mr. Besson is a brand name , and in Asia , where Ms. Shu is an institution , but American audiences will probably find it familiar and insufficiently cathartic 1 +124519 6691 Will undoubtedly play well in European markets , where Mr. Besson is a brand name , and in Asia , where Ms. Shu is an institution , but 3 +124520 6691 Will undoubtedly play well in European markets , where Mr. Besson is a brand name , and in Asia , where Ms. Shu is an institution , 3 +124521 6691 Will undoubtedly play well in European markets , where Mr. Besson is a brand name , and in Asia , where Ms. Shu is an institution 3 +124522 6691 undoubtedly play well in European markets , where Mr. Besson is a brand name , and in Asia , where Ms. Shu is an institution 3 +124523 6691 play well in European markets , where Mr. Besson is a brand name , and in Asia , where Ms. Shu is an institution 3 +124524 6691 well in European markets , where Mr. Besson is a brand name , and in Asia , where Ms. Shu is an institution 2 +124525 6691 in European markets , where Mr. Besson is a brand name , and in Asia , where Ms. Shu is an institution 3 +124526 6691 in European markets , where Mr. Besson is a brand name 2 +124527 6691 European markets , where Mr. Besson is a brand name 2 +124528 6691 European markets , 2 +124529 6691 European markets 2 +124530 6691 markets 2 +124531 6691 where Mr. Besson is a brand name 2 +124532 6691 Mr. Besson is a brand name 2 +124533 6691 Mr. Besson 2 +124534 6691 is a brand name 2 +124535 6691 a brand name 2 +124536 6691 brand name 3 +124537 6691 , and in Asia , where Ms. Shu is an institution 2 +124538 6691 in Asia , where Ms. Shu is an institution 3 +124539 6691 Asia , where Ms. Shu is an institution 3 +124540 6691 Asia , 2 +124541 6691 Asia 2 +124542 6691 where Ms. Shu is an institution 2 +124543 6691 Ms. Shu is an institution 2 +124544 6691 Ms. Shu 2 +124545 6691 Shu 2 +124546 6691 is an institution 2 +124547 6691 American audiences will probably find it familiar and insufficiently cathartic 2 +124548 6691 will probably find it familiar and insufficiently cathartic 1 +124549 6691 find it familiar and insufficiently cathartic 2 +124550 6691 it familiar and insufficiently cathartic 1 +124551 6691 familiar and insufficiently cathartic 1 +124552 6691 insufficiently cathartic 1 +124553 6691 insufficiently 1 +124554 6692 Simultaneously heartbreakingly beautiful and exquisitely sad . 2 +124555 6692 Simultaneously heartbreakingly beautiful and exquisitely sad 4 +124556 6692 Simultaneously heartbreakingly beautiful and 4 +124557 6692 Simultaneously heartbreakingly beautiful 3 +124558 6692 heartbreakingly beautiful 4 +124559 6692 exquisitely sad 2 +124560 6693 The exclamation point seems to be the only bit of glee you 'll find in this dreary mess . 0 +124561 6693 The exclamation point seems to be the only bit of glee 1 +124562 6693 The exclamation point 2 +124563 6693 exclamation point 2 +124564 6693 exclamation 2 +124565 6693 seems to be the only bit of glee 2 +124566 6693 to be the only bit of glee 2 +124567 6693 be the only bit of glee 2 +124568 6693 the only bit of glee 2 +124569 6693 the only bit 2 +124570 6693 only bit 2 +124571 6693 of glee 2 +124572 6693 you 'll find in this dreary mess . 1 +124573 6693 'll find in this dreary mess . 1 +124574 6693 'll find in this dreary mess 1 +124575 6693 find in this dreary mess 1 +124576 6693 in this dreary mess 0 +124577 6693 this dreary mess 1 +124578 6693 dreary mess 1 +124579 6694 So verbally flatfooted and so emotionally predictable or bland that it plays like the standard made-for-TV movie . 2 +124580 6694 So verbally flatfooted and so emotionally predictable or bland 1 +124581 6694 So verbally flatfooted and 1 +124582 6694 So verbally flatfooted 1 +124583 6694 verbally flatfooted 1 +124584 6694 verbally 2 +124585 6694 flatfooted 1 +124586 6694 so emotionally predictable or bland 1 +124587 6694 emotionally predictable or bland 1 +124588 6694 predictable or bland 1 +124589 6694 predictable or 1 +124590 6694 that it plays like the standard made-for-TV movie . 1 +124591 6694 that it plays like the standard made-for-TV movie 2 +124592 6694 it plays like the standard made-for-TV movie 1 +124593 6694 plays like the standard made-for-TV movie 1 +124594 6694 like the standard made-for-TV movie 1 +124595 6694 the standard made-for-TV movie 1 +124596 6694 standard made-for-TV movie 2 +124597 6694 made-for-TV movie 1 +124598 6695 Wow , a jump cut ! 2 +124599 6695 , a jump cut ! 2 +124600 6695 a jump cut ! 2 +124601 6695 a jump 2 +124602 6695 cut ! 2 +124603 6696 It has a way of seeping into your consciousness , with lingering questions about what the film is really getting at . 3 +124604 6696 has a way of seeping into your consciousness , with lingering questions about what the film is really getting at . 2 +124605 6696 has a way of seeping into your consciousness , with lingering questions about what the film is really getting at 3 +124606 6696 has a way of seeping into your consciousness , 3 +124607 6696 has a way of seeping into your consciousness 3 +124608 6696 a way of seeping into your consciousness 3 +124609 6696 of seeping into your consciousness 2 +124610 6696 seeping into your consciousness 2 +124611 6696 seeping 2 +124612 6696 into your consciousness 2 +124613 6696 your consciousness 2 +124614 6696 with lingering questions about what the film is really getting at 1 +124615 6696 lingering questions about what the film is really getting at 1 +124616 6696 lingering questions 2 +124617 6696 about what the film is really getting at 2 +124618 6696 what the film is really getting at 2 +124619 6696 the film is really getting at 2 +124620 6696 is really getting at 2 +124621 6696 getting at 2 +124622 6697 Apparently writer-director Attal thought he need only cast himself and his movie-star wife sitting around in their drawers to justify a film . 2 +124623 6697 Apparently writer-director Attal thought he need only cast himself and his movie-star wife sitting around in their drawers to justify a film 0 +124624 6697 Apparently writer-director Attal thought he need only cast himself and 1 +124625 6697 Apparently writer-director Attal thought he need only cast himself 1 +124626 6697 writer-director Attal thought he need only cast himself 1 +124627 6697 writer-director Attal 2 +124628 6697 thought he need only cast himself 2 +124629 6697 he need only cast himself 2 +124630 6697 need only cast himself 2 +124631 6697 need only 2 +124632 6697 cast himself 2 +124633 6697 his movie-star wife sitting around in their drawers to justify a film 2 +124634 6697 his movie-star wife 2 +124635 6697 movie-star wife 2 +124636 6697 sitting around in their drawers to justify a film 1 +124637 6697 in their drawers to justify a film 2 +124638 6697 their drawers to justify a film 2 +124639 6697 drawers to justify a film 2 +124640 6697 drawers 2 +124641 6697 to justify a film 3 +124642 6697 justify a film 2 +124643 6698 A jumbled fantasy comedy that did not figure out a coherent game plan at scripting , shooting or post-production stages . 1 +124644 6698 A jumbled fantasy comedy that did not figure out a coherent game 1 +124645 6698 A jumbled fantasy comedy 2 +124646 6698 jumbled fantasy comedy 2 +124647 6698 fantasy comedy 2 +124648 6698 that did not figure out a coherent game 1 +124649 6698 did not figure out a coherent game 1 +124650 6698 did not 2 +124651 6698 figure out a coherent game 2 +124652 6698 a coherent game 2 +124653 6698 coherent game 2 +124654 6698 plan at scripting , shooting or post-production stages . 2 +124655 6698 plan at scripting , shooting or post-production stages 2 +124656 6698 plan 2 +124657 6698 at scripting , shooting or post-production stages 2 +124658 6698 scripting , shooting or post-production stages 2 +124659 6698 , shooting or post-production stages 2 +124660 6698 shooting or post-production stages 2 +124661 6698 or post-production stages 2 +124662 6698 post-production stages 2 +124663 6699 Neither as scary-funny as Tremors nor demented-funny as Starship Troopers , the movie is n't tough to take as long as you 've paid a matinee price . 1 +124664 6699 Neither as scary-funny as Tremors nor demented-funny as Starship Troopers 2 +124665 6699 Neither as scary-funny as Tremors nor 1 +124666 6699 Neither as scary-funny as Tremors 1 +124667 6699 as scary-funny as Tremors 3 +124668 6699 scary-funny as Tremors 2 +124669 6699 scary-funny 3 +124670 6699 as Tremors 2 +124671 6699 demented-funny as Starship Troopers 2 +124672 6699 demented-funny 2 +124673 6699 as Starship Troopers 2 +124674 6699 Starship Troopers 2 +124675 6699 Starship 2 +124676 6699 , the movie is n't tough to take as long as you 've paid a matinee price . 2 +124677 6699 the movie is n't tough to take as long as you 've paid a matinee price . 2 +124678 6699 is n't tough to take as long as you 've paid a matinee price . 2 +124679 6699 is n't tough to take as long as you 've paid a matinee price 1 +124680 6699 tough to take as long as you 've paid a matinee price 1 +124681 6699 to take as long as you 've paid a matinee price 2 +124682 6699 take as long as you 've paid a matinee price 1 +124683 6699 as long as you 've paid a matinee price 2 +124684 6699 as you 've paid a matinee price 2 +124685 6699 you 've paid a matinee price 2 +124686 6700 -LRB- Barry -RRB- gives Assassin a disquieting authority . 3 +124687 6700 -LRB- Barry -RRB- 2 +124688 6700 Barry -RRB- 2 +124689 6700 gives Assassin a disquieting authority . 2 +124690 6700 gives Assassin a disquieting authority 2 +124691 6700 gives Assassin 2 +124692 6700 a disquieting authority 2 +124693 6700 disquieting authority 2 +124694 6701 Without Shakespeare 's eloquent language , the update is dreary and sluggish . 0 +124695 6701 Without Shakespeare 's eloquent language 2 +124696 6701 Shakespeare 's eloquent language 3 +124697 6701 eloquent language 3 +124698 6701 , the update is dreary and sluggish . 0 +124699 6701 the update is dreary and sluggish . 0 +124700 6701 the update 2 +124701 6701 is dreary and sluggish . 1 +124702 6701 is dreary and sluggish 0 +124703 6701 dreary and sluggish 1 +124704 6701 dreary and 1 +124705 6702 It wo n't hold up over the long haul , but in the moment , Finch 's tale provides the forgettable pleasures of a Saturday matinee . 3 +124706 6702 It wo n't hold up over the long haul , but in the moment , Finch 's tale provides the forgettable pleasures of a Saturday matinee 2 +124707 6702 It wo n't hold up over the long haul , but 1 +124708 6702 It wo n't hold up over the long haul , 1 +124709 6702 It wo n't hold up over the long haul 1 +124710 6702 wo n't hold up over the long haul 1 +124711 6702 hold up over the long haul 2 +124712 6702 hold up 2 +124713 6702 over the long haul 2 +124714 6702 the long haul 2 +124715 6702 long haul 2 +124716 6702 in the moment , Finch 's tale provides the forgettable pleasures of a Saturday matinee 2 +124717 6702 in the moment 2 +124718 6702 , Finch 's tale provides the forgettable pleasures of a Saturday matinee 3 +124719 6702 Finch 's tale provides the forgettable pleasures of a Saturday matinee 3 +124720 6702 Finch 's tale 2 +124721 6702 Finch 's 2 +124722 6702 Finch 2 +124723 6702 provides the forgettable pleasures of a Saturday matinee 1 +124724 6702 the forgettable pleasures of a Saturday matinee 2 +124725 6702 the forgettable pleasures 2 +124726 6702 forgettable pleasures 2 +124727 6702 of a Saturday matinee 2 +124728 6702 a Saturday matinee 2 +124729 6702 Saturday matinee 2 +124730 6703 It 's the type of stunt the Academy loves : a powerful political message stuffed into an otherwise mediocre film . 2 +124731 6703 It 's the type of stunt the Academy loves : a powerful political message stuffed into an otherwise mediocre film 1 +124732 6703 It 's the type of stunt the Academy loves : 2 +124733 6703 It 's the type of stunt the Academy loves 3 +124734 6703 's the type of stunt the Academy loves 2 +124735 6703 the type of stunt the Academy loves 2 +124736 6703 the type of stunt 2 +124737 6703 of stunt 2 +124738 6703 the Academy loves 3 +124739 6703 a powerful political message stuffed into an otherwise mediocre film 2 +124740 6703 a powerful political message 3 +124741 6703 powerful political message 3 +124742 6703 political message 2 +124743 6703 stuffed into an otherwise mediocre film 1 +124744 6703 into an otherwise mediocre film 1 +124745 6703 an otherwise mediocre film 2 +124746 6703 otherwise mediocre film 1 +124747 6703 otherwise mediocre 1 +124748 6704 Much of the movie 's charm lies in the utter cuteness of Stuart and Margolo . 3 +124749 6704 Much of the movie 's charm 4 +124750 6704 of the movie 's charm 3 +124751 6704 the movie 's charm 3 +124752 6704 lies in the utter cuteness of Stuart and Margolo . 3 +124753 6704 lies in the utter cuteness of Stuart and Margolo 3 +124754 6704 in the utter cuteness of Stuart and Margolo 3 +124755 6704 the utter cuteness of Stuart and Margolo 3 +124756 6704 the utter cuteness 4 +124757 6704 utter cuteness 3 +124758 6704 of Stuart and Margolo 2 +124759 6704 Stuart and Margolo 2 +124760 6704 Stuart and 2 +124761 6704 Margolo 2 +124762 6705 Both Garcia and Jagger turn in perfectly executed and wonderfully sympathetic characters , who are alternately touching and funny . 3 +124763 6705 Both Garcia and Jagger 2 +124764 6705 Garcia and Jagger 2 +124765 6705 turn in perfectly executed and wonderfully sympathetic characters , who are alternately touching and funny . 4 +124766 6705 turn in perfectly executed and wonderfully sympathetic characters , who are alternately touching and funny 3 +124767 6705 in perfectly executed and wonderfully sympathetic characters , who are alternately touching and funny 4 +124768 6705 perfectly executed and wonderfully sympathetic characters , who are alternately touching and funny 4 +124769 6705 perfectly executed and wonderfully sympathetic characters , 4 +124770 6705 perfectly executed and wonderfully sympathetic characters 4 +124771 6705 perfectly executed and wonderfully sympathetic 4 +124772 6705 perfectly executed and 3 +124773 6705 perfectly executed 3 +124774 6705 wonderfully sympathetic 4 +124775 6705 who are alternately touching and funny 3 +124776 6705 are alternately touching and funny 3 +124777 6705 alternately touching and funny 3 +124778 6705 touching and funny 4 +124779 6705 touching and 3 +124780 6706 Watching junk like this induces a kind of abstract guilt , as if you were paying dues for good books unread , fine music never heard . 1 +124781 6706 Watching junk like this 0 +124782 6706 Watching junk 0 +124783 6706 induces a kind of abstract guilt , as if you were paying dues for good books unread , fine music never heard . 2 +124784 6706 induces a kind of abstract guilt , as if you were paying dues for good books unread , fine music never heard 2 +124785 6706 induces a kind of abstract guilt , 1 +124786 6706 induces a kind of abstract guilt 2 +124787 6706 a kind of abstract guilt 1 +124788 6706 of abstract guilt 2 +124789 6706 abstract guilt 2 +124790 6706 as if you were paying dues for good books unread , fine music never heard 2 +124791 6706 if you were paying dues for good books unread , fine music never heard 2 +124792 6706 if you were paying dues for good books unread 2 +124793 6706 you were paying dues for good books unread 2 +124794 6706 were paying dues for good books unread 1 +124795 6706 paying dues for good books unread 2 +124796 6706 dues for good books unread 2 +124797 6706 dues 2 +124798 6706 for good books unread 2 +124799 6706 good books unread 2 +124800 6706 books unread 2 +124801 6706 unread 2 +124802 6706 , fine music never heard 3 +124803 6706 fine music never heard 1 +124804 6706 fine music 4 +124805 6706 never heard 2 +124806 6707 The film just might turn on many people to opera , in general , an art form at once visceral and spiritual , wonderfully vulgar and sublimely lofty -- and as emotionally grand as life . 4 +124807 6707 The film just might turn on many people to opera , in general 4 +124808 6707 just might turn on many people to opera , in general 3 +124809 6707 might turn on many people to opera , in general 3 +124810 6707 turn on many people to opera , in general 3 +124811 6707 turn on many people to opera , 3 +124812 6707 turn on many people to opera 3 +124813 6707 turn on many people 3 +124814 6707 on many people 2 +124815 6707 to opera 2 +124816 6707 , an art form at once visceral and spiritual , wonderfully vulgar and sublimely lofty -- and as emotionally grand as life . 4 +124817 6707 an art form at once visceral and spiritual , wonderfully vulgar and sublimely lofty -- and as emotionally grand as life . 4 +124818 6707 an art 3 +124819 6707 form at once visceral and spiritual , wonderfully vulgar and sublimely lofty -- and as emotionally grand as life . 4 +124820 6707 form at once visceral and spiritual , wonderfully vulgar and sublimely lofty -- and as emotionally grand as life 3 +124821 6707 form at once visceral and spiritual , wonderfully vulgar and sublimely lofty -- and as emotionally grand 3 +124822 6707 at once visceral and spiritual , wonderfully vulgar and sublimely lofty -- and as emotionally grand 4 +124823 6707 at once visceral and spiritual , wonderfully vulgar and sublimely lofty -- and 4 +124824 6707 at once visceral and spiritual , wonderfully vulgar and sublimely lofty -- 4 +124825 6707 at once visceral and spiritual , wonderfully vulgar and sublimely lofty 4 +124826 6707 at once visceral and spiritual , wonderfully vulgar and 4 +124827 6707 at once visceral and spiritual , wonderfully vulgar 4 +124828 6707 at once visceral and spiritual , 3 +124829 6707 at once visceral and spiritual 3 +124830 6707 visceral and spiritual 3 +124831 6707 visceral and 3 +124832 6707 wonderfully vulgar 3 +124833 6707 sublimely lofty 3 +124834 6707 as emotionally grand 3 +124835 6707 emotionally grand 3 +124836 6708 Payne has created a beautiful canvas , and Nicholson proves once again that he 's the best brush in the business . 4 +124837 6708 Payne has created a beautiful canvas , and Nicholson proves once again that he 's the best brush in the business 4 +124838 6708 Payne has created a beautiful canvas , and 3 +124839 6708 Payne has created a beautiful canvas , 3 +124840 6708 Payne has created a beautiful canvas 4 +124841 6708 has created a beautiful canvas 4 +124842 6708 created a beautiful canvas 3 +124843 6708 a beautiful canvas 4 +124844 6708 beautiful canvas 3 +124845 6708 Nicholson proves once again that he 's the best brush in the business 3 +124846 6708 proves once again that he 's the best brush in the business 4 +124847 6708 once again that he 's the best brush in the business 4 +124848 6708 that he 's the best brush in the business 3 +124849 6708 he 's the best brush in the business 4 +124850 6708 's the best brush in the business 2 +124851 6708 the best brush in the business 3 +124852 6708 the best brush 3 +124853 6708 best brush 3 +124854 6708 in the business 3 +124855 6709 I did n't find much fascination in the swinging . 1 +124856 6709 did n't find much fascination in the swinging . 1 +124857 6709 did n't find much fascination in the swinging 1 +124858 6709 find much fascination in the swinging 3 +124859 6709 find much fascination 3 +124860 6709 much fascination 2 +124861 6709 in the swinging 2 +124862 6709 the swinging 2 +124863 6710 Insomnia loses points when it surrenders to a formulaic bang-bang , shoot-em-up scene at the conclusion . 1 +124864 6710 loses points when it surrenders to a formulaic bang-bang , shoot-em-up scene at the conclusion . 1 +124865 6710 loses points when it surrenders to a formulaic bang-bang , shoot-em-up scene at the conclusion 1 +124866 6710 points when it surrenders to a formulaic bang-bang , shoot-em-up scene at the conclusion 2 +124867 6710 when it surrenders to a formulaic bang-bang , shoot-em-up scene at the conclusion 2 +124868 6710 it surrenders to a formulaic bang-bang , shoot-em-up scene at the conclusion 1 +124869 6710 surrenders to a formulaic bang-bang , shoot-em-up scene at the conclusion 2 +124870 6710 to a formulaic bang-bang , shoot-em-up scene at the conclusion 2 +124871 6710 a formulaic bang-bang , shoot-em-up scene at the conclusion 2 +124872 6710 a formulaic bang-bang , shoot-em-up scene 2 +124873 6710 formulaic bang-bang , shoot-em-up scene 2 +124874 6710 bang-bang , shoot-em-up scene 3 +124875 6710 bang-bang 2 +124876 6710 , shoot-em-up scene 3 +124877 6710 shoot-em-up scene 2 +124878 6710 shoot-em-up 2 +124879 6710 at the conclusion 2 +124880 6710 the conclusion 2 +124881 6711 Affleck merely creates an outline for a role he still needs to grow into , a role that Ford effortlessly filled with authority . 2 +124882 6711 merely creates an outline for a role he still needs to grow into , a role that Ford effortlessly filled with authority . 3 +124883 6711 creates an outline for a role he still needs to grow into , a role that Ford effortlessly filled with authority . 0 +124884 6711 creates an outline for a role he still needs to grow into , a role that Ford effortlessly filled with authority 2 +124885 6711 an outline for a role he still needs to grow into , a role that Ford effortlessly filled with authority 3 +124886 6711 an outline for a role he still needs to grow into , 2 +124887 6711 an outline for a role he still needs to grow into 1 +124888 6711 for a role he still needs to grow into 1 +124889 6711 a role he still needs to grow into 2 +124890 6711 he still needs to grow into 2 +124891 6711 still needs to grow into 2 +124892 6711 needs to grow into 2 +124893 6711 to grow into 2 +124894 6711 grow into 2 +124895 6711 a role that Ford effortlessly filled with authority 3 +124896 6711 that Ford effortlessly filled with authority 2 +124897 6711 Ford effortlessly filled with authority 4 +124898 6711 effortlessly filled with authority 2 +124899 6711 filled with authority 3 +124900 6711 with authority 2 +124901 6712 Reign of Fire has the disadvantage of also looking cheap . 0 +124902 6712 has the disadvantage of also looking cheap . 0 +124903 6712 has the disadvantage of also looking cheap 0 +124904 6712 the disadvantage of also looking cheap 1 +124905 6712 the disadvantage 2 +124906 6712 disadvantage 2 +124907 6712 of also looking cheap 2 +124908 6712 also looking cheap 1 +124909 6712 looking cheap 2 +124910 6713 It 's another retelling of Alexandre Dumas ' classic . 2 +124911 6713 's another retelling of Alexandre Dumas ' classic . 2 +124912 6713 's another retelling of Alexandre Dumas ' classic 2 +124913 6713 another retelling of Alexandre Dumas ' classic 2 +124914 6713 another retelling 2 +124915 6713 of Alexandre Dumas ' classic 2 +124916 6713 Alexandre Dumas ' classic 2 +124917 6713 Alexandre Dumas ' 2 +124918 6713 Dumas ' 2 +124919 6714 The first shocking thing about Sorority Boys is that it 's actually watchable . 3 +124920 6714 The first shocking thing about Sorority Boys 2 +124921 6714 The first shocking thing 2 +124922 6714 first shocking thing 1 +124923 6714 shocking thing 2 +124924 6714 about Sorority Boys 1 +124925 6714 is that it 's actually watchable . 3 +124926 6714 is that it 's actually watchable 3 +124927 6714 that it 's actually watchable 3 +124928 6714 it 's actually watchable 3 +124929 6714 's actually watchable 3 +124930 6715 A fantastically vital movie that manages to invest real humor , sensuality , and sympathy into a story about two adolescent boys . 4 +124931 6715 A fantastically vital movie that manages to invest real humor , 4 +124932 6715 A fantastically vital movie that manages to invest real humor 3 +124933 6715 A fantastically vital movie 4 +124934 6715 fantastically vital movie 4 +124935 6715 fantastically vital 4 +124936 6715 fantastically 3 +124937 6715 that manages to invest real humor 3 +124938 6715 manages to invest real humor 3 +124939 6715 to invest real humor 2 +124940 6715 invest real humor 2 +124941 6715 real humor 3 +124942 6715 sensuality , and sympathy into a story about two adolescent boys . 3 +124943 6715 sensuality , and sympathy into a story about two adolescent boys 3 +124944 6715 sensuality , and 3 +124945 6715 sensuality , 2 +124946 6715 sympathy into a story about two adolescent boys 2 +124947 6715 into a story about two adolescent boys 2 +124948 6715 a story about two adolescent boys 2 +124949 6715 about two adolescent boys 2 +124950 6715 two adolescent boys 2 +124951 6715 adolescent boys 2 +124952 6716 Even though the film does n't manage to hit all of its marks , it 's still entertaining to watch the target practice . 3 +124953 6716 Even though the film does n't manage to hit all of its marks 1 +124954 6716 though the film does n't manage to hit all of its marks 2 +124955 6716 the film does n't manage to hit all of its marks 1 +124956 6716 does n't manage to hit all of its marks 1 +124957 6716 manage to hit all of its marks 4 +124958 6716 to hit all of its marks 3 +124959 6716 hit all of its marks 2 +124960 6716 all of its marks 2 +124961 6716 of its marks 3 +124962 6716 its marks 2 +124963 6716 , it 's still entertaining to watch the target practice . 3 +124964 6716 it 's still entertaining to watch the target practice . 3 +124965 6716 's still entertaining to watch the target practice . 3 +124966 6716 's still entertaining to watch the target practice 3 +124967 6716 entertaining to watch the target practice 3 +124968 6716 to watch the target practice 2 +124969 6716 watch the target practice 2 +124970 6716 the target practice 2 +124971 6716 target practice 3 +124972 6717 A film that will be best appreciated by those willing to endure its extremely languorous rhythms , Waiting for Happiness is ultimately thoughtful without having much dramatic impact . 3 +124973 6717 A film that will be best appreciated by those willing to endure its extremely languorous rhythms , Waiting for Happiness 1 +124974 6717 that will be best appreciated by those willing to endure its extremely languorous rhythms , Waiting for Happiness 0 +124975 6717 will be best appreciated by those willing to endure its extremely languorous rhythms , Waiting for Happiness 1 +124976 6717 be best appreciated by those willing to endure its extremely languorous rhythms , Waiting for Happiness 1 +124977 6717 best appreciated by those willing to endure its extremely languorous rhythms , Waiting for Happiness 2 +124978 6717 appreciated by those willing to endure its extremely languorous rhythms , Waiting for Happiness 2 +124979 6717 by those willing to endure its extremely languorous rhythms , Waiting for Happiness 1 +124980 6717 those willing to endure its extremely languorous rhythms , Waiting for Happiness 1 +124981 6717 willing to endure its extremely languorous rhythms , Waiting for Happiness 2 +124982 6717 to endure its extremely languorous rhythms , Waiting for Happiness 1 +124983 6717 endure its extremely languorous rhythms , Waiting for Happiness 2 +124984 6717 its extremely languorous rhythms , Waiting for Happiness 2 +124985 6717 its extremely languorous rhythms , 1 +124986 6717 its extremely languorous rhythms 2 +124987 6717 extremely languorous rhythms 1 +124988 6717 languorous rhythms 2 +124989 6717 is ultimately thoughtful without having much dramatic impact . 2 +124990 6717 is ultimately thoughtful without having much dramatic impact 3 +124991 6717 ultimately thoughtful without having much dramatic impact 2 +124992 6717 thoughtful without having much dramatic impact 1 +124993 6717 without having much dramatic impact 1 +124994 6717 having much dramatic impact 2 +124995 6717 much dramatic impact 4 +124996 6718 This rather unfocused , all-over-the-map movie would be a lot better if it pared down its plots and characters to a few rather than dozens ... or if it were subtler ... or if it had a sense of humor . 1 +124997 6718 This rather unfocused 1 +124998 6718 rather unfocused 1 +124999 6718 , all-over-the-map movie would be a lot better if it pared down its plots and characters to a few rather than dozens ... or if it were subtler ... or if it had a sense of humor . 1 +125000 6718 all-over-the-map movie would be a lot better if it pared down its plots and characters to a few rather than dozens ... or if it were subtler ... or if it had a sense of humor . 1 +125001 6718 all-over-the-map movie 2 +125002 6718 all-over-the-map 1 +125003 6718 would be a lot better if it pared down its plots and characters to a few rather than dozens ... or if it were subtler ... or if it had a sense of humor . 1 +125004 6718 would be a lot better if it pared down its plots and characters to a few rather than dozens ... or if it were subtler ... or if it had a sense of humor 1 +125005 6718 be a lot better if it pared down its plots and characters to a few rather than dozens ... or if it were subtler ... or if it had a sense of humor 1 +125006 6718 be a lot better 2 +125007 6718 if it pared down its plots and characters to a few rather than dozens ... or if it were subtler ... or if it had a sense of humor 0 +125008 6718 if it pared down its plots and characters to a few rather than dozens ... or 1 +125009 6718 if it pared down its plots and characters to a few rather than dozens ... 2 +125010 6718 if it pared down its plots and characters to a few rather than dozens 2 +125011 6718 it pared down its plots and characters to a few rather than dozens 2 +125012 6718 pared down its plots and characters to a few rather than dozens 1 +125013 6718 pared down its plots and characters 2 +125014 6718 pared down 2 +125015 6718 pared 2 +125016 6718 its plots and characters 2 +125017 6718 plots and characters 2 +125018 6718 plots and 2 +125019 6718 to a few rather than dozens 1 +125020 6718 a few rather than dozens 2 +125021 6718 a few rather than 2 +125022 6718 if it were subtler ... or if it had a sense of humor 1 +125023 6718 if it were subtler ... or 2 +125024 6718 if it were subtler ... 2 +125025 6718 if it were subtler 2 +125026 6718 it were subtler 2 +125027 6718 were subtler 2 +125028 6718 if it had a sense of humor 2 +125029 6718 it had a sense of humor 3 +125030 6718 had a sense of humor 3 +125031 6719 A creaky staircase gothic . 2 +125032 6719 A creaky 2 +125033 6719 staircase gothic . 2 +125034 6719 staircase gothic 2 +125035 6719 staircase 2 +125036 6720 `` White Oleander , '' the movie , is akin to a Reader 's Digest condensed version of the source material . 1 +125037 6720 `` White Oleander , '' the movie , 2 +125038 6720 White Oleander , '' the movie , 2 +125039 6720 White Oleander , '' the movie 2 +125040 6720 White Oleander , '' 2 +125041 6720 White Oleander , 2 +125042 6720 is akin to a Reader 's Digest condensed version of the source material . 1 +125043 6720 is akin to a Reader 's Digest condensed version of the source material 1 +125044 6720 akin to a Reader 's Digest condensed version of the source material 1 +125045 6720 to a Reader 's Digest condensed version of the source material 2 +125046 6720 a Reader 's Digest condensed version of the source material 2 +125047 6720 a Reader 's Digest condensed version 1 +125048 6720 a Reader 's 2 +125049 6720 Reader 's 2 +125050 6720 Reader 2 +125051 6720 Digest condensed version 2 +125052 6720 condensed version 2 +125053 6720 of the source material 2 +125054 6721 This dreadfully earnest inversion of the Concubine love triangle eschews the previous film 's historical panorama and roiling pathos for bug-eyed mugging and gay-niche condescension . 1 +125055 6721 This dreadfully earnest inversion of the Concubine love triangle 2 +125056 6721 This dreadfully earnest inversion 2 +125057 6721 dreadfully earnest inversion 1 +125058 6721 earnest inversion 2 +125059 6721 inversion 2 +125060 6721 of the Concubine love triangle 2 +125061 6721 the Concubine love triangle 2 +125062 6721 Concubine love triangle 2 +125063 6721 Concubine 2 +125064 6721 eschews the previous film 's historical panorama and roiling pathos for bug-eyed mugging and gay-niche condescension . 2 +125065 6721 eschews the previous film 's historical panorama and roiling pathos for bug-eyed mugging and gay-niche condescension 0 +125066 6721 eschews the previous film 's historical panorama and roiling pathos 2 +125067 6721 eschews 2 +125068 6721 the previous film 's historical panorama and roiling pathos 2 +125069 6721 the previous film 's 2 +125070 6721 previous film 's 2 +125071 6721 historical panorama and roiling pathos 2 +125072 6721 panorama and roiling pathos 2 +125073 6721 panorama 2 +125074 6721 and roiling pathos 2 +125075 6721 roiling pathos 2 +125076 6721 for bug-eyed mugging and gay-niche condescension 1 +125077 6721 bug-eyed mugging and gay-niche condescension 1 +125078 6721 bug-eyed mugging and 2 +125079 6721 bug-eyed mugging 1 +125080 6721 gay-niche condescension 1 +125081 6721 gay-niche 2 +125082 6722 The direction , by George Hickenlooper , has no snap to it , no wiseacre crackle or hard-bitten cynicism . 1 +125083 6722 The direction , by George Hickenlooper , 2 +125084 6722 The direction , by George Hickenlooper 2 +125085 6722 The direction , 2 +125086 6722 by George Hickenlooper 2 +125087 6722 George Hickenlooper 2 +125088 6722 has no snap to it , no wiseacre crackle or hard-bitten cynicism . 1 +125089 6722 has no snap to it , no wiseacre crackle or hard-bitten cynicism 2 +125090 6722 has no snap 1 +125091 6722 no snap 2 +125092 6722 to it , no wiseacre crackle or hard-bitten cynicism 2 +125093 6722 it , no wiseacre crackle or hard-bitten cynicism 2 +125094 6722 it , no wiseacre crackle or 2 +125095 6722 it , no wiseacre crackle 2 +125096 6722 no wiseacre crackle 2 +125097 6722 wiseacre crackle 2 +125098 6722 wiseacre 2 +125099 6722 hard-bitten cynicism 2 +125100 6723 Beautifully directed and convincingly acted . 3 +125101 6723 directed and convincingly acted . 4 +125102 6723 directed and convincingly acted 3 +125103 6723 directed and convincingly 2 +125104 6723 directed and 2 +125105 6724 The movie is a lumbering load of hokum but ... it 's at least watchable . 1 +125106 6724 The movie is a lumbering load of hokum but ... it 's at least watchable 3 +125107 6724 The movie is a lumbering load of hokum but ... 1 +125108 6724 The movie is a lumbering load of hokum but 1 +125109 6724 is a lumbering load of hokum but 0 +125110 6724 a lumbering load of hokum but 1 +125111 6724 a lumbering load 1 +125112 6724 lumbering load 1 +125113 6724 of hokum but 2 +125114 6724 hokum but 1 +125115 6724 hokum 2 +125116 6724 it 's at least watchable 1 +125117 6724 's at least watchable 2 +125118 6724 at least watchable 2 +125119 6725 While Cherish does n't completely survive its tonal transformation from dark comedy to suspense thriller , it 's got just enough charm and appealing character quirks to forgive that still serious problem . 3 +125120 6725 While Cherish does n't completely survive its tonal transformation from dark comedy to suspense thriller 1 +125121 6725 Cherish does n't completely survive its tonal transformation from dark comedy to suspense thriller 2 +125122 6725 does n't completely survive its tonal transformation from dark comedy to suspense thriller 1 +125123 6725 does n't completely 1 +125124 6725 survive its tonal transformation from dark comedy to suspense thriller 3 +125125 6725 survive its tonal transformation from dark comedy 2 +125126 6725 survive its tonal transformation 2 +125127 6725 its tonal transformation 2 +125128 6725 tonal transformation 2 +125129 6725 tonal 2 +125130 6725 from dark comedy 2 +125131 6725 to suspense thriller 3 +125132 6725 suspense thriller 2 +125133 6725 , it 's got just enough charm and appealing character quirks to forgive that still serious problem . 2 +125134 6725 it 's got just enough charm and appealing character quirks to forgive that still serious problem . 2 +125135 6725 's got just enough charm and appealing character quirks to forgive that still serious problem . 2 +125136 6725 's got just enough charm and appealing character quirks to forgive that still serious problem 3 +125137 6725 got just enough charm and appealing character quirks to forgive that still serious problem 3 +125138 6725 got just 2 +125139 6725 enough charm and appealing character quirks to forgive that still serious problem 3 +125140 6725 enough charm and 2 +125141 6725 enough charm 2 +125142 6725 appealing character quirks to forgive that still serious problem 3 +125143 6725 appealing character quirks 3 +125144 6725 character quirks 2 +125145 6725 to forgive that still serious problem 1 +125146 6725 forgive that still serious problem 2 +125147 6725 that still serious problem 2 +125148 6725 still serious problem 1 +125149 6725 still serious 2 +125150 6726 It would be churlish to begrudge anyone for receiving whatever consolation that can be found in Dragonfly , yet it is impossible to find the film anything but appalling , shamelessly manipulative and contrived , and totally lacking in conviction . 0 +125151 6726 It would be churlish to begrudge anyone for receiving whatever consolation that can be found in Dragonfly , yet it is impossible to find the film anything but appalling , shamelessly manipulative and contrived , and totally lacking in conviction 1 +125152 6726 It would be churlish to begrudge anyone for receiving whatever consolation that can be found in Dragonfly , yet 1 +125153 6726 It would be churlish to begrudge anyone for receiving whatever consolation that can be found in Dragonfly , 2 +125154 6726 It would be churlish to begrudge anyone for receiving whatever consolation that can be found in Dragonfly 2 +125155 6726 would be churlish to begrudge anyone for receiving whatever consolation that can be found in Dragonfly 2 +125156 6726 be churlish to begrudge anyone for receiving whatever consolation that can be found in Dragonfly 1 +125157 6726 be churlish to begrudge anyone for receiving whatever consolation 1 +125158 6726 churlish to begrudge anyone for receiving whatever consolation 2 +125159 6726 churlish 1 +125160 6726 to begrudge anyone for receiving whatever consolation 1 +125161 6726 begrudge anyone for receiving whatever consolation 2 +125162 6726 begrudge anyone 2 +125163 6726 begrudge 2 +125164 6726 for receiving whatever consolation 2 +125165 6726 receiving whatever consolation 2 +125166 6726 whatever consolation 2 +125167 6726 that can be found in Dragonfly 2 +125168 6726 can be found in Dragonfly 2 +125169 6726 be found in Dragonfly 2 +125170 6726 found in Dragonfly 2 +125171 6726 in Dragonfly 2 +125172 6726 it is impossible to find the film anything but appalling , shamelessly manipulative and contrived , and totally lacking in conviction 0 +125173 6726 is impossible to find the film anything but appalling , shamelessly manipulative and contrived , and totally lacking in conviction 0 +125174 6726 is impossible to find the film anything but 1 +125175 6726 is impossible to find the film anything 2 +125176 6726 impossible to find the film anything 2 +125177 6726 to find the film anything 2 +125178 6726 find the film anything 2 +125179 6726 the film anything 2 +125180 6726 film anything 2 +125181 6726 appalling , shamelessly manipulative and contrived , and totally lacking in conviction 0 +125182 6726 appalling , shamelessly manipulative and contrived , and totally lacking 0 +125183 6726 appalling , shamelessly manipulative and contrived , and 0 +125184 6726 appalling , shamelessly manipulative and contrived , 1 +125185 6726 appalling , shamelessly manipulative and contrived 1 +125186 6726 shamelessly manipulative and contrived 0 +125187 6726 manipulative and contrived 1 +125188 6726 manipulative and 1 +125189 6726 totally lacking 1 +125190 6726 in conviction 2 +125191 6727 It 's not the least of Afghan tragedies that this noble warlord would be consigned to the dustbin of history . 1 +125192 6727 's not the least of Afghan tragedies that this noble warlord would be consigned to the dustbin of history . 2 +125193 6727 's not the least of Afghan tragedies that this noble warlord would be consigned to the dustbin of history 2 +125194 6727 's not the least of Afghan tragedies 2 +125195 6727 the least of Afghan tragedies 2 +125196 6727 of Afghan tragedies 1 +125197 6727 Afghan tragedies 1 +125198 6727 that this noble warlord would be consigned to the dustbin of history 1 +125199 6727 this noble warlord would be consigned to the dustbin of history 1 +125200 6727 this noble warlord 2 +125201 6727 noble warlord 2 +125202 6727 warlord 2 +125203 6727 would be consigned to the dustbin of history 1 +125204 6727 be consigned to the dustbin of history 1 +125205 6727 consigned to the dustbin of history 1 +125206 6727 to the dustbin of history 1 +125207 6727 the dustbin of history 2 +125208 6727 the dustbin 2 +125209 6727 dustbin 2 +125210 6728 Hawke 's film , a boring , pretentious waste of nearly two hours , does n't tell you anything except that the Chelsea Hotel today is populated by whiny , pathetic , starving and untalented artistes . 1 +125211 6728 Hawke 's film , a boring , pretentious waste of nearly two hours , 1 +125212 6728 Hawke 's film , a boring , pretentious waste of nearly two hours 2 +125213 6728 Hawke 's film , 2 +125214 6728 Hawke 's film 2 +125215 6728 a boring , pretentious waste of nearly two hours 0 +125216 6728 a boring , pretentious waste 0 +125217 6728 boring , pretentious waste 0 +125218 6728 of nearly two hours 2 +125219 6728 does n't tell you anything except that the Chelsea Hotel today is populated by whiny , pathetic , starving and untalented artistes . 0 +125220 6728 does n't tell you anything except that the Chelsea Hotel today is populated by whiny , pathetic , starving and untalented artistes 0 +125221 6728 tell you anything except that the Chelsea Hotel today is populated by whiny , pathetic , starving and untalented artistes 0 +125222 6728 anything except that the Chelsea Hotel today is populated by whiny , pathetic , starving and untalented artistes 0 +125223 6728 except that the Chelsea Hotel today is populated by whiny , pathetic , starving and untalented artistes 1 +125224 6728 that the Chelsea Hotel today is populated by whiny , pathetic , starving and untalented artistes 2 +125225 6728 the Chelsea Hotel today is populated by whiny , pathetic , starving and untalented artistes 1 +125226 6728 the Chelsea Hotel today 2 +125227 6728 Chelsea Hotel today 2 +125228 6728 Hotel today 2 +125229 6728 is populated by whiny , pathetic , starving and untalented artistes 0 +125230 6728 populated by whiny , pathetic , starving and untalented artistes 0 +125231 6728 by whiny , pathetic , starving and untalented artistes 1 +125232 6728 whiny , pathetic , starving and untalented artistes 0 +125233 6728 whiny , pathetic , starving and untalented 0 +125234 6728 , pathetic , starving and untalented 1 +125235 6728 pathetic , starving and untalented 0 +125236 6728 , starving and untalented 1 +125237 6728 starving and untalented 1 +125238 6728 starving and 1 +125239 6728 starving 2 +125240 6729 This romantic\/comedy asks the question how much souvlaki can you take before indigestion sets in . 1 +125241 6729 romantic\/comedy asks the question how much souvlaki can you take before indigestion sets in . 1 +125242 6729 romantic\/comedy 2 +125243 6729 asks the question how much souvlaki can you take before indigestion sets in . 1 +125244 6729 asks the question how much souvlaki can you take before indigestion sets in 1 +125245 6729 the question how much souvlaki can you take before indigestion sets in 2 +125246 6729 how much souvlaki can you take before indigestion sets in 1 +125247 6729 souvlaki can you take before indigestion sets in 1 +125248 6729 souvlaki 2 +125249 6729 can you take before indigestion sets in 1 +125250 6729 take before indigestion sets in 1 +125251 6729 take before indigestion sets 1 +125252 6729 before indigestion sets 1 +125253 6729 indigestion sets 1 +125254 6729 indigestion 2 +125255 6730 A. . . 2 +125256 6730 A. . 2 +125257 6731 Jae-eun Jeong 's Take Care of My Cat brings a beguiling freshness to a coming-of-age story with such a buoyant , expressive flow of images that it emerges as another key contribution to the flowering of the South Korean cinema . 3 +125258 6731 Jae-eun Jeong 's Take Care of My Cat 2 +125259 6731 Jae-eun Jeong 's Take Care 2 +125260 6731 Jae-eun Jeong 's 2 +125261 6731 Jae-eun 2 +125262 6731 Jeong 's 2 +125263 6731 Jeong 2 +125264 6731 brings a beguiling freshness to a coming-of-age story with such a buoyant , expressive flow of images that it emerges as another key contribution to the flowering of the South Korean cinema . 3 +125265 6731 brings a beguiling freshness to a coming-of-age story with such a buoyant , expressive flow of images that it emerges as another key contribution to the flowering of the South Korean cinema 4 +125266 6731 brings a beguiling freshness to a coming-of-age story with such a buoyant , expressive flow of images 4 +125267 6731 brings a beguiling freshness 3 +125268 6731 a beguiling freshness 3 +125269 6731 beguiling freshness 3 +125270 6731 to a coming-of-age story with such a buoyant , expressive flow of images 4 +125271 6731 a coming-of-age story with such a buoyant , expressive flow of images 3 +125272 6731 with such a buoyant , expressive flow of images 3 +125273 6731 such a buoyant , expressive flow of images 3 +125274 6731 a buoyant , expressive flow of images 3 +125275 6731 a buoyant , expressive flow 3 +125276 6731 buoyant , expressive flow 3 +125277 6731 buoyant , expressive 3 +125278 6731 , expressive 2 +125279 6731 expressive 3 +125280 6731 that it emerges as another key contribution to the flowering of the South Korean cinema 3 +125281 6731 it emerges as another key contribution to the flowering of the South Korean cinema 3 +125282 6731 emerges as another key contribution to the flowering of the South Korean cinema 4 +125283 6731 emerges as another key contribution 3 +125284 6731 as another key contribution 3 +125285 6731 another key contribution 3 +125286 6731 key contribution 2 +125287 6731 contribution 2 +125288 6731 to the flowering of the South Korean cinema 3 +125289 6731 the flowering of the South Korean cinema 3 +125290 6731 the flowering 2 +125291 6731 flowering 3 +125292 6731 of the South Korean cinema 2 +125293 6731 the South Korean cinema 2 +125294 6731 South Korean cinema 2 +125295 6732 Depicts the sorriest and most sordid of human behavior on the screen , then laughs at how clever it 's being . 0 +125296 6732 Depicts the sorriest and most sordid of human behavior on the screen , then 2 +125297 6732 Depicts 2 +125298 6732 the sorriest and most sordid of human behavior on the screen , then 1 +125299 6732 the sorriest and most 1 +125300 6732 the sorriest and 1 +125301 6732 the sorriest 1 +125302 6732 sorriest 1 +125303 6732 sordid of human behavior on the screen , then 2 +125304 6732 sordid of human behavior on the screen , 1 +125305 6732 sordid of human behavior on the screen 0 +125306 6732 of human behavior on the screen 2 +125307 6732 human behavior on the screen 2 +125308 6732 laughs at how clever it 's being . 3 +125309 6732 laughs at how clever it 's being 2 +125310 6732 at how clever it 's being 3 +125311 6732 how clever it 's being 2 +125312 6732 how clever 3 +125313 6732 it 's being 2 +125314 6732 's being 2 +125315 6733 Wow . 3 +125316 6734 Whenever you think you 've figured out Late Marriage , it throws you for a loop . 3 +125317 6734 Whenever you think you 've figured out Late Marriage 3 +125318 6734 you think you 've figured out Late Marriage 2 +125319 6734 think you 've figured out Late Marriage 2 +125320 6734 you 've figured out Late Marriage 3 +125321 6734 've figured out Late Marriage 2 +125322 6734 figured out Late Marriage 2 +125323 6734 out Late Marriage 2 +125324 6734 , it throws you for a loop . 3 +125325 6734 it throws you for a loop . 3 +125326 6734 throws you for a loop . 2 +125327 6734 throws you for a loop 1 +125328 6734 throws you 2 +125329 6734 for a loop 2 +125330 6734 a loop 2 +125331 6734 loop 2 +125332 6735 Anyone who ever fantasized about space travel but ca n't afford the $ 20 million ticket to ride a Russian rocket should catch this IMAX offering . 3 +125333 6735 Anyone who ever fantasized about space travel but ca n't afford the $ 20 million ticket to ride a Russian rocket 3 +125334 6735 who ever fantasized about space travel but ca n't afford the $ 20 million ticket to ride a Russian rocket 2 +125335 6735 ever fantasized about space travel but ca n't afford the $ 20 million ticket to ride a Russian rocket 2 +125336 6735 fantasized about space travel but ca n't afford the $ 20 million ticket to ride a Russian rocket 2 +125337 6735 fantasized about space travel but 2 +125338 6735 fantasized about space travel 2 +125339 6735 fantasized 3 +125340 6735 about space travel 2 +125341 6735 space travel 2 +125342 6735 ca n't afford the $ 20 million ticket to ride a Russian rocket 2 +125343 6735 afford the $ 20 million ticket to ride a Russian rocket 3 +125344 6735 the $ 20 million ticket to ride a Russian rocket 2 +125345 6735 $ 20 million ticket to ride a Russian rocket 2 +125346 6735 $ 20 million 2 +125347 6735 $ 20 2 +125348 6735 ticket to ride a Russian rocket 2 +125349 6735 to ride a Russian rocket 2 +125350 6735 ride a Russian rocket 2 +125351 6735 a Russian rocket 2 +125352 6735 Russian rocket 2 +125353 6735 should catch this IMAX offering . 3 +125354 6735 should catch this IMAX offering 3 +125355 6735 catch this IMAX offering 3 +125356 6735 this IMAX offering 2 +125357 6735 IMAX offering 2 +125358 6736 The only thing I laughed at were the people who paid to see it . 1 +125359 6736 The only thing I laughed at 1 +125360 6736 I laughed at 3 +125361 6736 laughed at 3 +125362 6736 were the people who paid to see it . 1 +125363 6736 were the people who paid to see it 2 +125364 6736 the people who paid to see it 2 +125365 6736 who paid to see it 1 +125366 6736 paid to see it 2 +125367 6737 This engrossing , characteristically complex Tom Clancy thriller is shifty in the manner in which it addresses current terrorism anxieties and sidesteps them at the same time . 2 +125368 6737 This engrossing , characteristically complex Tom Clancy thriller 3 +125369 6737 engrossing , characteristically complex Tom Clancy thriller 2 +125370 6737 , characteristically complex Tom Clancy thriller 2 +125371 6737 characteristically complex Tom Clancy thriller 3 +125372 6737 characteristically complex 4 +125373 6737 Tom Clancy thriller 2 +125374 6737 Clancy thriller 2 +125375 6737 is shifty in the manner in which it addresses current terrorism anxieties and sidesteps them at the same time . 1 +125376 6737 is shifty in the manner in which it addresses current terrorism anxieties and sidesteps them at the same time 1 +125377 6737 shifty in the manner in which it addresses current terrorism anxieties and sidesteps them at the same time 2 +125378 6737 shifty 2 +125379 6737 in the manner in which it addresses current terrorism anxieties and sidesteps them at the same time 3 +125380 6737 the manner in which it addresses current terrorism anxieties and sidesteps them at the same time 3 +125381 6737 in which it addresses current terrorism anxieties and sidesteps them at the same time 2 +125382 6737 it addresses current terrorism anxieties and sidesteps them at the same time 2 +125383 6737 addresses current terrorism anxieties and sidesteps them at the same time 2 +125384 6737 addresses current terrorism anxieties and 2 +125385 6737 addresses current terrorism anxieties 2 +125386 6737 current terrorism anxieties 2 +125387 6737 terrorism anxieties 1 +125388 6737 anxieties 2 +125389 6737 sidesteps them at the same time 2 +125390 6737 sidesteps them 2 +125391 6737 sidesteps 2 +125392 6738 A suffocating rape-payback horror show that hinges on the subgenre 's most enabling victim ... and an ebullient affection for industrial-model meat freezers . 3 +125393 6738 A suffocating rape-payback horror 2 +125394 6738 suffocating rape-payback horror 1 +125395 6738 rape-payback horror 2 +125396 6738 rape-payback 1 +125397 6738 show that hinges on the subgenre 's most enabling victim ... and an ebullient affection for industrial-model meat freezers . 2 +125398 6738 show that hinges on the subgenre 's most enabling victim ... and an ebullient affection for industrial-model meat freezers 1 +125399 6738 that hinges on the subgenre 's most enabling victim ... and an ebullient affection for industrial-model meat freezers 1 +125400 6738 hinges on the subgenre 's most enabling victim ... and an ebullient affection for industrial-model meat freezers 1 +125401 6738 hinges on the subgenre 2 +125402 6738 hinges 2 +125403 6738 on the subgenre 3 +125404 6738 the subgenre 2 +125405 6738 subgenre 2 +125406 6738 's most enabling victim ... and an ebullient affection for industrial-model meat freezers 2 +125407 6738 enabling victim ... and an ebullient affection for industrial-model meat freezers 2 +125408 6738 enabling 2 +125409 6738 victim ... and an ebullient affection for industrial-model meat freezers 1 +125410 6738 victim ... and 2 +125411 6738 victim ... 2 +125412 6738 an ebullient affection for industrial-model meat freezers 0 +125413 6738 an ebullient affection 3 +125414 6738 ebullient affection 3 +125415 6738 for industrial-model meat freezers 1 +125416 6738 industrial-model meat freezers 2 +125417 6738 industrial-model 2 +125418 6738 meat freezers 2 +125419 6738 freezers 2 +125420 6739 With ` Bowling for Columbine , ' Michael Moore gives us the perfect starting point for a national conversation about guns , violence , and fear . 4 +125421 6739 With ` Bowling for Columbine 2 +125422 6739 ` Bowling for Columbine 2 +125423 6739 ` Bowling 2 +125424 6739 , ' Michael Moore gives us the perfect starting point for a national conversation about guns , violence , and fear . 3 +125425 6739 ' Michael Moore gives us the perfect starting point for a national conversation about guns , violence , and fear . 3 +125426 6739 Michael Moore gives us the perfect starting point for a national conversation about guns , violence , and fear . 3 +125427 6739 gives us the perfect starting point for a national conversation about guns , violence , and fear . 2 +125428 6739 gives us the perfect starting point for a national conversation about guns , violence , and fear 3 +125429 6739 the perfect starting point for a national conversation about guns , violence , and fear 3 +125430 6739 the perfect starting point 4 +125431 6739 perfect starting point 3 +125432 6739 starting point 2 +125433 6739 for a national conversation about guns , violence , and fear 2 +125434 6739 a national conversation about guns , violence , and fear 2 +125435 6739 a national conversation 2 +125436 6739 national conversation 2 +125437 6739 about guns , violence , and fear 2 +125438 6739 guns , violence , and fear 2 +125439 6739 guns , violence , and 2 +125440 6739 guns , violence , 2 +125441 6739 guns , violence 1 +125442 6740 The script feels as if it started to explore the obvious voyeuristic potential of ` hypertime ' but then backed off when the producers saw the grosses for Spy Kids . 2 +125443 6740 feels as if it started to explore the obvious voyeuristic potential of ` hypertime ' but then backed off when the producers saw the grosses for Spy Kids . 2 +125444 6740 feels as if it started to explore the obvious voyeuristic potential of ` hypertime ' but then backed off when the producers saw the grosses for Spy Kids 2 +125445 6740 feels as if it started to explore the obvious voyeuristic potential of ` hypertime ' 2 +125446 6740 as if it started to explore the obvious voyeuristic potential of ` hypertime ' 1 +125447 6740 if it started to explore the obvious voyeuristic potential of ` hypertime ' 2 +125448 6740 it started to explore the obvious voyeuristic potential of ` hypertime ' 2 +125449 6740 started to explore the obvious voyeuristic potential of ` hypertime ' 2 +125450 6740 to explore the obvious voyeuristic potential of ` hypertime ' 2 +125451 6740 explore the obvious voyeuristic potential of ` hypertime ' 2 +125452 6740 the obvious voyeuristic potential of ` hypertime ' 2 +125453 6740 the obvious voyeuristic potential 2 +125454 6740 obvious voyeuristic potential 2 +125455 6740 voyeuristic potential 2 +125456 6740 of ` hypertime ' 2 +125457 6740 ` hypertime ' 3 +125458 6740 hypertime ' 2 +125459 6740 but then backed off when the producers saw the grosses for Spy Kids 3 +125460 6740 then backed off when the producers saw the grosses for Spy Kids 1 +125461 6740 backed off when the producers saw the grosses for Spy Kids 2 +125462 6740 backed off 1 +125463 6740 backed 2 +125464 6740 when the producers saw the grosses for Spy Kids 2 +125465 6740 the producers saw the grosses for Spy Kids 1 +125466 6740 the producers 2 +125467 6740 saw the grosses for Spy Kids 2 +125468 6740 saw the grosses 2 +125469 6740 the grosses 3 +125470 6740 grosses 1 +125471 6740 for Spy Kids 2 +125472 6741 The name says it all . 2 +125473 6741 says it all . 2 +125474 6741 says it all 2 +125475 6742 Fails to satisfactorily exploit its gender politics , genre thrills or inherent humor . 1 +125476 6742 Fails to satisfactorily exploit its gender politics , genre thrills or inherent humor 1 +125477 6742 to satisfactorily exploit its gender politics , genre thrills or inherent humor 2 +125478 6742 satisfactorily exploit its gender politics , genre thrills or inherent humor 1 +125479 6742 satisfactorily 3 +125480 6742 exploit its gender politics , genre thrills or inherent humor 3 +125481 6742 its gender politics , genre thrills or inherent humor 2 +125482 6742 its gender politics , genre thrills or 2 +125483 6742 its gender politics , genre thrills 3 +125484 6742 its gender politics , 2 +125485 6742 its gender politics 2 +125486 6742 gender politics 1 +125487 6742 genre thrills 3 +125488 6742 inherent humor 2 +125489 6743 The pace and the visuals are so hyped up that a curious sense of menace informs everything . 2 +125490 6743 The pace and the visuals 2 +125491 6743 The pace and 2 +125492 6743 are so hyped up that a curious sense of menace informs everything . 2 +125493 6743 are so hyped up that a curious sense of menace informs everything 2 +125494 6743 so hyped up that a curious sense of menace informs everything 0 +125495 6743 hyped up that a curious sense of menace informs everything 2 +125496 6743 hyped up 2 +125497 6743 hyped 2 +125498 6743 that a curious sense of menace informs everything 2 +125499 6743 a curious sense of menace informs everything 2 +125500 6743 a curious sense of menace 2 +125501 6743 a curious sense 2 +125502 6743 curious sense 2 +125503 6743 of menace 2 +125504 6743 informs everything 2 +125505 6743 informs 3 +125506 6744 I 'm giving it thumbs down due to the endlessly repetitive scenes of embarrassment . 1 +125507 6744 'm giving it thumbs down due to the endlessly repetitive scenes of embarrassment . 0 +125508 6744 'm giving it thumbs down due to the endlessly repetitive scenes of embarrassment 1 +125509 6744 giving it thumbs down due to the endlessly repetitive scenes of embarrassment 0 +125510 6744 it thumbs down due to the endlessly repetitive scenes of embarrassment 0 +125511 6744 thumbs down due to the endlessly repetitive scenes of embarrassment 0 +125512 6744 due to the endlessly repetitive scenes of embarrassment 0 +125513 6744 to the endlessly repetitive scenes of embarrassment 1 +125514 6744 the endlessly repetitive scenes of embarrassment 1 +125515 6744 the endlessly repetitive scenes 0 +125516 6744 endlessly repetitive scenes 2 +125517 6744 endlessly repetitive 1 +125518 6744 of embarrassment 1 +125519 6745 shows Holmes has the screen presence to become a major-league leading lady , -LRB- but -RRB- the movie itself is an underachiever , a psychological mystery that takes its sweet time building to a climax that 's scarcely a surprise by the time it arrives . 1 +125520 6745 shows Holmes has the screen presence to become a major-league leading lady , -LRB- but -RRB- the movie itself is an underachiever , a psychological mystery that takes its sweet time building to a climax that 's scarcely a surprise by the time it arrives 3 +125521 6745 shows Holmes has the screen presence to become a major-league leading lady , -LRB- but -RRB- the movie itself is an underachiever , a psychological mystery that takes its sweet time building to a climax that 's scarcely a surprise by the time 1 +125522 6745 shows Holmes has the screen presence to become a major-league leading lady , -LRB- but -RRB- 3 +125523 6745 Holmes has the screen presence to become a major-league leading lady , -LRB- but -RRB- 4 +125524 6745 Holmes 2 +125525 6745 has the screen presence to become a major-league leading lady , -LRB- but -RRB- 4 +125526 6745 the screen presence to become a major-league leading lady , -LRB- but -RRB- 2 +125527 6745 screen presence to become a major-league leading lady , -LRB- but -RRB- 2 +125528 6745 presence to become a major-league leading lady , -LRB- but -RRB- 3 +125529 6745 to become a major-league leading lady , -LRB- but -RRB- 3 +125530 6745 become a major-league leading lady , -LRB- but -RRB- 3 +125531 6745 become a major-league leading lady , 2 +125532 6745 become a major-league leading lady 3 +125533 6745 a major-league leading lady 3 +125534 6745 major-league leading lady 2 +125535 6745 major-league 3 +125536 6745 leading lady 2 +125537 6745 the movie itself is an underachiever , a psychological mystery that takes its sweet time building to a climax that 's scarcely a surprise by the time 2 +125538 6745 itself is an underachiever , a psychological mystery that takes its sweet time building to a climax that 's scarcely a surprise by the time 2 +125539 6745 is an underachiever , a psychological mystery that takes its sweet time building to a climax that 's scarcely a surprise by the time 2 +125540 6745 an underachiever , a psychological mystery that takes its sweet time building to a climax that 's scarcely a surprise by the time 2 +125541 6745 an underachiever , 1 +125542 6745 an underachiever 1 +125543 6745 underachiever 1 +125544 6745 a psychological mystery that takes its sweet time building to a climax that 's scarcely a surprise by the time 2 +125545 6745 a psychological mystery 3 +125546 6745 psychological mystery 2 +125547 6745 that takes its sweet time building to a climax that 's scarcely a surprise by the time 1 +125548 6745 takes its sweet time building to a climax that 's scarcely a surprise by the time 1 +125549 6745 takes its sweet time building 2 +125550 6745 its sweet time building 2 +125551 6745 sweet time building 3 +125552 6745 time building 2 +125553 6745 to a climax that 's scarcely a surprise by the time 1 +125554 6745 a climax that 's scarcely a surprise by the time 2 +125555 6745 a climax 3 +125556 6745 that 's scarcely a surprise by the time 2 +125557 6745 's scarcely a surprise by the time 2 +125558 6745 's scarcely 2 +125559 6745 a surprise by the time 2 +125560 6745 a surprise 2 +125561 6745 it arrives 3 +125562 6746 Time literally stops on a dime in the tries-so-hard-to-be-cool `` Clockstoppers , '' but that does n't mean it still wo n't feel like the longest 90 minutes of your movie-going life . 0 +125563 6746 Time literally stops on a dime in the tries-so-hard-to-be-cool `` Clockstoppers , '' but that does n't mean it still wo n't feel like the longest 90 minutes of your movie-going life 0 +125564 6746 Time literally stops on a dime in the tries-so-hard-to-be-cool `` Clockstoppers , '' but 2 +125565 6746 Time literally stops on a dime in the tries-so-hard-to-be-cool `` Clockstoppers , '' 1 +125566 6746 Time literally stops on a dime in the tries-so-hard-to-be-cool `` Clockstoppers , 1 +125567 6746 Time literally stops on a dime in the tries-so-hard-to-be-cool `` Clockstoppers 2 +125568 6746 literally stops on a dime in the tries-so-hard-to-be-cool `` Clockstoppers 2 +125569 6746 stops on a dime in the tries-so-hard-to-be-cool `` Clockstoppers 2 +125570 6746 on a dime in the tries-so-hard-to-be-cool `` Clockstoppers 0 +125571 6746 a dime in the tries-so-hard-to-be-cool `` Clockstoppers 1 +125572 6746 in the tries-so-hard-to-be-cool `` Clockstoppers 1 +125573 6746 the tries-so-hard-to-be-cool `` Clockstoppers 1 +125574 6746 tries-so-hard-to-be-cool `` Clockstoppers 1 +125575 6746 tries-so-hard-to-be-cool 1 +125576 6746 `` Clockstoppers 2 +125577 6746 that does n't mean it still wo n't feel like the longest 90 minutes of your movie-going life 1 +125578 6746 does n't mean it still wo n't feel like the longest 90 minutes of your movie-going life 2 +125579 6746 mean it still wo n't feel like the longest 90 minutes of your movie-going life 1 +125580 6746 it still wo n't feel like the longest 90 minutes of your movie-going life 2 +125581 6746 still wo n't feel like the longest 90 minutes of your movie-going life 2 +125582 6746 wo n't feel like the longest 90 minutes of your movie-going life 2 +125583 6746 feel like the longest 90 minutes of your movie-going life 0 +125584 6746 like the longest 90 minutes of your movie-going life 0 +125585 6746 the longest 90 minutes of your movie-going life 0 +125586 6746 the longest 90 minutes 0 +125587 6746 the longest 2 +125588 6746 of your movie-going life 2 +125589 6746 your movie-going life 2 +125590 6746 movie-going life 2 +125591 6747 Collateral Damage offers formula payback and the Big Payoff , but the explosions tend to simply hit their marks , pyro-correctly . 2 +125592 6747 Collateral Damage offers formula payback and the Big Payoff , but the explosions tend to simply hit their marks , pyro-correctly 3 +125593 6747 Collateral Damage offers formula payback and the Big Payoff , but 2 +125594 6747 Collateral Damage offers formula payback and the Big Payoff , 2 +125595 6747 Collateral Damage offers formula payback and the Big Payoff 3 +125596 6747 offers formula payback and the Big Payoff 2 +125597 6747 formula payback and the Big Payoff 2 +125598 6747 formula payback and 1 +125599 6747 formula payback 2 +125600 6747 the Big Payoff 2 +125601 6747 Big Payoff 3 +125602 6747 the explosions tend to simply hit their marks , pyro-correctly 1 +125603 6747 tend to simply hit their marks , pyro-correctly 2 +125604 6747 to simply hit their marks , pyro-correctly 2 +125605 6747 to simply 2 +125606 6747 hit their marks , pyro-correctly 3 +125607 6747 hit their marks , 3 +125608 6747 hit their marks 3 +125609 6747 pyro-correctly 2 +125610 6748 K-19 : The Widowmaker is a great yarn . 3 +125611 6748 : The Widowmaker is a great yarn . 3 +125612 6748 The Widowmaker is a great yarn . 3 +125613 6748 The Widowmaker is a great yarn 4 +125614 6748 is a great yarn 3 +125615 6748 a great yarn 3 +125616 6748 great yarn 3 +125617 6749 It 's funny , as the old saying goes , because it 's true . 3 +125618 6749 's funny , as the old saying goes , because it 's true . 3 +125619 6749 's funny , as the old saying goes , because it 's true 2 +125620 6749 's funny , 3 +125621 6749 as the old saying goes , because it 's true 3 +125622 6749 the old saying goes , because it 's true 3 +125623 6749 the old saying 2 +125624 6749 old saying 2 +125625 6749 goes , because it 's true 2 +125626 6749 goes , 2 +125627 6749 because it 's true 2 +125628 6749 it 's true 3 +125629 6750 A sexy , surprising romance ... Idemoto and Kim make a gorgeous pair ... their scenes brim with sexual possibility and emotional danger . 4 +125630 6750 A sexy , surprising romance ... Idemoto and Kim make a gorgeous pair ... their scenes brim with sexual possibility and emotional danger 4 +125631 6750 A sexy , surprising romance ... 4 +125632 6750 A sexy , surprising romance 4 +125633 6750 sexy , surprising romance 4 +125634 6750 , surprising romance 3 +125635 6750 surprising romance 3 +125636 6750 Idemoto and Kim make a gorgeous pair ... their scenes brim with sexual possibility and emotional danger 4 +125637 6750 Idemoto and Kim 2 +125638 6750 Idemoto and 2 +125639 6750 make a gorgeous pair ... their scenes brim with sexual possibility and emotional danger 3 +125640 6750 make a gorgeous pair ... 3 +125641 6750 make a gorgeous pair 4 +125642 6750 a gorgeous pair 3 +125643 6750 gorgeous pair 3 +125644 6750 their scenes brim with sexual possibility and emotional danger 3 +125645 6750 their scenes brim 2 +125646 6750 scenes brim 3 +125647 6750 with sexual possibility and emotional danger 2 +125648 6750 sexual possibility and emotional danger 2 +125649 6750 sexual possibility and 2 +125650 6750 sexual possibility 2 +125651 6750 emotional danger 2 +125652 6751 A psychic journey deep into the very fabric of Iranian ... life . 3 +125653 6751 A psychic journey deep into the very fabric of Iranian ... life 2 +125654 6751 A psychic journey deep into the very fabric of Iranian ... 3 +125655 6751 A psychic journey deep into the very fabric of Iranian 2 +125656 6751 A psychic journey 2 +125657 6751 psychic journey 2 +125658 6751 deep into the very fabric of Iranian 2 +125659 6751 into the very fabric of Iranian 2 +125660 6751 the very fabric of Iranian 2 +125661 6751 the very fabric 2 +125662 6751 very fabric 2 +125663 6751 of Iranian 2 +125664 6752 See it now , before the inevitable Hollywood remake flattens out all its odd , intriguing wrinkles . 2 +125665 6752 See it now , before the inevitable Hollywood remake flattens out all its odd , intriguing wrinkles 2 +125666 6752 See it now , 4 +125667 6752 See it now 3 +125668 6752 before the inevitable Hollywood remake flattens out all its odd , intriguing wrinkles 2 +125669 6752 the inevitable Hollywood remake flattens out all its odd , intriguing wrinkles 3 +125670 6752 the inevitable Hollywood remake 1 +125671 6752 inevitable Hollywood remake 2 +125672 6752 Hollywood remake 1 +125673 6752 flattens out all its odd , intriguing wrinkles 2 +125674 6752 flattens 2 +125675 6752 out all its odd , intriguing wrinkles 2 +125676 6752 all its odd , intriguing wrinkles 2 +125677 6752 its odd , intriguing wrinkles 2 +125678 6752 odd , intriguing wrinkles 2 +125679 6752 odd , intriguing 3 +125680 6752 , intriguing 3 +125681 6752 wrinkles 2 +125682 6753 A distinctly minor effort that will be seen to better advantage on cable , especially considering its barely feature-length running time of one hour . 1 +125683 6753 A distinctly minor effort that will be seen to better advantage on cable , especially considering its barely feature-length running time of one hour 2 +125684 6753 A distinctly minor effort that will be seen to better advantage on cable , especially considering its barely 1 +125685 6753 A distinctly minor effort 1 +125686 6753 distinctly minor effort 1 +125687 6753 distinctly minor 1 +125688 6753 that will be seen to better advantage on cable , especially considering its barely 1 +125689 6753 will be seen to better advantage on cable , especially considering its barely 2 +125690 6753 be seen to better advantage on cable , especially considering its barely 2 +125691 6753 seen to better advantage on cable , especially considering its barely 1 +125692 6753 seen to better advantage on cable , 2 +125693 6753 seen to better advantage on cable 1 +125694 6753 to better advantage on cable 2 +125695 6753 better advantage on cable 2 +125696 6753 better advantage 2 +125697 6753 especially considering its barely 2 +125698 6753 considering its barely 2 +125699 6753 considering its 2 +125700 6753 feature-length running time of one hour 2 +125701 6753 feature-length running time 3 +125702 6753 of one hour 2 +125703 6754 Rosenthal -LRB- Halloween II -RRB- seems to have forgotten everything he ever knew about generating suspense . 1 +125704 6754 Rosenthal -LRB- Halloween II -RRB- 1 +125705 6754 Rosenthal 2 +125706 6754 -LRB- Halloween II -RRB- 2 +125707 6754 Halloween II -RRB- 2 +125708 6754 Halloween II 2 +125709 6754 seems to have forgotten everything he ever knew about generating suspense . 0 +125710 6754 seems to have forgotten everything he ever knew about generating suspense 1 +125711 6754 to have forgotten everything he ever knew about generating suspense 0 +125712 6754 have forgotten everything he ever knew about generating suspense 1 +125713 6754 forgotten everything he ever knew about generating suspense 1 +125714 6754 everything he ever knew about generating suspense 2 +125715 6754 he ever knew about generating suspense 2 +125716 6754 ever knew about generating suspense 3 +125717 6754 knew about generating suspense 3 +125718 6754 about generating suspense 2 +125719 6754 generating suspense 3 +125720 6755 The acting is fine but the script is about as interesting as a recording of conversations at the Wal-Mart checkout line . 1 +125721 6755 The acting is fine but the script is about as interesting as a recording of conversations at the Wal-Mart checkout line 1 +125722 6755 The acting is fine but 3 +125723 6755 The acting is fine 3 +125724 6755 is fine 3 +125725 6755 the script is about as interesting as a recording of conversations at the Wal-Mart checkout line 0 +125726 6755 is about as interesting as a recording of conversations at the Wal-Mart checkout line 0 +125727 6755 is about as interesting 1 +125728 6755 about as interesting 1 +125729 6755 as interesting 2 +125730 6755 as a recording of conversations at the Wal-Mart checkout line 1 +125731 6755 a recording of conversations at the Wal-Mart checkout line 2 +125732 6755 a recording 2 +125733 6755 of conversations at the Wal-Mart checkout line 2 +125734 6755 conversations at the Wal-Mart checkout line 2 +125735 6755 at the Wal-Mart checkout line 2 +125736 6755 the Wal-Mart checkout line 1 +125737 6755 Wal-Mart checkout line 1 +125738 6755 checkout line 2 +125739 6755 checkout 3 +125740 6756 Fresh and raw like a blown-out vein , Narc takes a walking-dead , cop-flick subgenre and beats new life into it . 4 +125741 6756 Fresh and raw like a blown-out vein 1 +125742 6756 Fresh and raw 3 +125743 6756 like a blown-out vein 1 +125744 6756 a blown-out vein 1 +125745 6756 blown-out vein 2 +125746 6756 blown-out 2 +125747 6756 , Narc takes a walking-dead , cop-flick subgenre and beats new life into it . 3 +125748 6756 Narc takes a walking-dead , cop-flick subgenre and beats new life into it . 3 +125749 6756 takes a walking-dead , cop-flick subgenre and beats new life into it . 3 +125750 6756 takes a walking-dead , cop-flick subgenre and beats new life into it 3 +125751 6756 takes a walking-dead , cop-flick subgenre and 2 +125752 6756 takes a walking-dead , cop-flick subgenre 2 +125753 6756 a walking-dead , cop-flick subgenre 2 +125754 6756 walking-dead , cop-flick subgenre 2 +125755 6756 walking-dead 2 +125756 6756 , cop-flick subgenre 2 +125757 6756 cop-flick subgenre 2 +125758 6756 cop-flick 2 +125759 6756 beats new life into it 3 +125760 6756 beats new life 3 +125761 6756 new life 2 +125762 6757 Once Ice-T sticks his mug in the window of the couple 's BMW and begins haranguing the wife in bad stage dialogue , all credibility flies out the window . 0 +125763 6757 Once Ice-T sticks his mug in the window of the couple 's BMW and begins haranguing the wife in bad stage dialogue 1 +125764 6757 Ice-T sticks his mug in the window of the couple 's BMW and begins haranguing the wife in bad stage dialogue 1 +125765 6757 sticks his mug in the window of the couple 's BMW and begins haranguing the wife in bad stage dialogue 1 +125766 6757 sticks his mug in the window of the couple 's BMW and 2 +125767 6757 sticks his mug in the window of the couple 's BMW 2 +125768 6757 sticks his mug 2 +125769 6757 his mug 2 +125770 6757 in the window of the couple 's BMW 2 +125771 6757 the window of the couple 's BMW 2 +125772 6757 of the couple 's BMW 2 +125773 6757 the couple 's BMW 2 +125774 6757 the couple 's 2 +125775 6757 couple 's 2 +125776 6757 BMW 2 +125777 6757 begins haranguing the wife in bad stage dialogue 1 +125778 6757 haranguing the wife in bad stage dialogue 1 +125779 6757 haranguing the wife 2 +125780 6757 haranguing 2 +125781 6757 in bad stage dialogue 1 +125782 6757 bad stage dialogue 1 +125783 6757 stage dialogue 2 +125784 6757 , all credibility flies out the window . 1 +125785 6757 all credibility flies out the window . 1 +125786 6757 all credibility 2 +125787 6757 flies out the window . 2 +125788 6757 flies out the window 1 +125789 6757 flies out 2 +125790 6758 There 's no question that Epps scores once or twice , but it 's telling that his funniest moment comes when he falls about ten feet onto his head . 2 +125791 6758 There 's no question that Epps scores once or twice , but it 's telling that his funniest moment comes when he falls about ten feet onto his head 2 +125792 6758 There 's no question that Epps scores once or twice , but 2 +125793 6758 There 's no question that Epps scores once or twice , 3 +125794 6758 There 's no question that Epps scores once or twice 3 +125795 6758 's no question that Epps scores once or twice 3 +125796 6758 no question that Epps scores once or twice 2 +125797 6758 no question 2 +125798 6758 that Epps scores once or twice 2 +125799 6758 Epps scores once or twice 3 +125800 6758 Epps scores 3 +125801 6758 once or twice 2 +125802 6758 once or 2 +125803 6758 it 's telling that his funniest moment comes when he falls about ten feet onto his head 2 +125804 6758 's telling that his funniest moment comes when he falls about ten feet onto his head 3 +125805 6758 telling that his funniest moment comes when he falls about ten feet onto his head 3 +125806 6758 that his funniest moment comes when he falls about ten feet onto his head 3 +125807 6758 his funniest moment comes when he falls about ten feet onto his head 3 +125808 6758 his funniest moment 2 +125809 6758 funniest moment 3 +125810 6758 comes when he falls about ten feet onto his head 2 +125811 6758 when he falls about ten feet onto his head 2 +125812 6758 he falls about ten feet onto his head 1 +125813 6758 falls about ten feet onto his head 1 +125814 6758 about ten feet onto his head 2 +125815 6758 about ten feet 2 +125816 6758 onto his head 2 +125817 6759 Ear-splitting exercise in formula crash-and-bash action . 1 +125818 6759 Ear-splitting 1 +125819 6759 exercise in formula crash-and-bash action . 2 +125820 6759 exercise in formula crash-and-bash action 1 +125821 6759 in formula crash-and-bash action 1 +125822 6759 formula crash-and-bash action 2 +125823 6759 crash-and-bash action 3 +125824 6759 crash-and-bash 1 +125825 6760 A strangely stirring experience that finds warmth in the coldest environment and makes each crumb of emotional comfort feel like a 10-course banquet . 4 +125826 6760 A strangely stirring experience that finds warmth in the coldest environment and makes each crumb of emotional comfort 3 +125827 6760 A strangely 1 +125828 6760 stirring experience that finds warmth in the coldest environment and makes each crumb of emotional comfort 3 +125829 6760 experience that finds warmth in the coldest environment and makes each crumb of emotional comfort 4 +125830 6760 that finds warmth in the coldest environment and makes each crumb of emotional comfort 3 +125831 6760 finds warmth in the coldest environment and makes each crumb of emotional comfort 4 +125832 6760 finds warmth in the coldest environment and 4 +125833 6760 finds warmth in the coldest environment 3 +125834 6760 finds warmth 3 +125835 6760 in the coldest environment 2 +125836 6760 the coldest environment 2 +125837 6760 coldest environment 2 +125838 6760 coldest 2 +125839 6760 makes each crumb of emotional comfort 3 +125840 6760 each crumb of emotional comfort 2 +125841 6760 each crumb 2 +125842 6760 crumb 2 +125843 6760 of emotional comfort 3 +125844 6760 emotional comfort 3 +125845 6760 feel like a 10-course banquet . 3 +125846 6760 feel like a 10-course banquet 3 +125847 6760 like a 10-course banquet 3 +125848 6760 a 10-course banquet 3 +125849 6760 10-course banquet 3 +125850 6760 10-course 2 +125851 6760 banquet 2 +125852 6761 One feels the dimming of a certain ambition , but in its place a sweetness , clarity and emotional openness that recalls the classics of early Italian neorealism . 3 +125853 6761 feels the dimming of a certain ambition , but in its place a sweetness , clarity and emotional openness that recalls the classics of early Italian neorealism . 3 +125854 6761 feels the dimming of a certain ambition , but in its place a sweetness , clarity and emotional openness that recalls the classics of early Italian neorealism 3 +125855 6761 feels the dimming of a certain ambition , but 2 +125856 6761 feels the dimming of a certain ambition , 2 +125857 6761 feels the dimming of a certain ambition 1 +125858 6761 the dimming of a certain ambition 1 +125859 6761 the dimming 1 +125860 6761 dimming 1 +125861 6761 of a certain ambition 3 +125862 6761 a certain ambition 3 +125863 6761 certain ambition 3 +125864 6761 in its place a sweetness , clarity and emotional openness that recalls the classics of early Italian neorealism 3 +125865 6761 in its place 2 +125866 6761 its place 2 +125867 6761 a sweetness , clarity and emotional openness that recalls the classics of early Italian neorealism 4 +125868 6761 a sweetness , clarity and emotional openness 4 +125869 6761 sweetness , clarity and emotional openness 4 +125870 6761 sweetness , clarity and emotional 3 +125871 6761 , clarity and emotional 3 +125872 6761 clarity and emotional 3 +125873 6761 that recalls the classics of early Italian neorealism 3 +125874 6761 recalls the classics of early Italian neorealism 3 +125875 6761 the classics of early Italian neorealism 2 +125876 6761 of early Italian neorealism 2 +125877 6761 early Italian neorealism 2 +125878 6761 Italian neorealism 2 +125879 6762 The Grey Zone gives voice to a story that needs to be heard in the sea of Holocaust movies ... but the film suffers from its own difficulties . 2 +125880 6762 The Grey Zone gives voice to a story that needs to be heard in the sea of Holocaust movies ... but the film suffers from its own difficulties 2 +125881 6762 The Grey Zone gives voice to a story that needs to be heard in the sea of Holocaust movies ... but 2 +125882 6762 The Grey Zone gives voice to a story that needs to be heard in the sea of Holocaust movies ... 3 +125883 6762 The Grey Zone gives voice to a story that needs to be heard in the sea of Holocaust movies 4 +125884 6762 gives voice to a story that needs to be heard in the sea of Holocaust movies 3 +125885 6762 gives voice 2 +125886 6762 to a story that needs to be heard in the sea of Holocaust movies 3 +125887 6762 a story that needs to be heard in the sea of Holocaust movies 3 +125888 6762 that needs to be heard in the sea of Holocaust movies 3 +125889 6762 needs to be heard in the sea of Holocaust movies 3 +125890 6762 to be heard in the sea of Holocaust movies 2 +125891 6762 be heard in the sea of Holocaust movies 2 +125892 6762 heard in the sea of Holocaust movies 2 +125893 6762 in the sea of Holocaust movies 2 +125894 6762 the sea of Holocaust movies 2 +125895 6762 of Holocaust movies 1 +125896 6762 Holocaust movies 2 +125897 6762 the film suffers from its own difficulties 1 +125898 6762 suffers from its own difficulties 1 +125899 6762 from its own difficulties 2 +125900 6762 its own difficulties 2 +125901 6762 own difficulties 2 +125902 6762 difficulties 1 +125903 6763 It 's leaden and predictable , and laughs are lacking . 1 +125904 6763 It 's leaden and predictable , and laughs are lacking 1 +125905 6763 It 's leaden and predictable , and 1 +125906 6763 It 's leaden and predictable , 0 +125907 6763 It 's leaden and predictable 2 +125908 6763 's leaden and predictable 1 +125909 6763 leaden and predictable 0 +125910 6763 laughs are lacking 1 +125911 6764 Fincher takes no apparent joy in making movies , and he gives none to the audience . 1 +125912 6764 Fincher takes no apparent joy in making movies , and he gives none to the audience 1 +125913 6764 Fincher takes no apparent joy in making movies , and 1 +125914 6764 Fincher takes no apparent joy in making movies , 1 +125915 6764 Fincher takes no apparent joy in making movies 1 +125916 6764 takes no apparent joy in making movies 0 +125917 6764 takes no apparent joy 1 +125918 6764 no apparent joy 1 +125919 6764 apparent joy 3 +125920 6764 in making movies 2 +125921 6764 he gives none to the audience 1 +125922 6764 gives none to the audience 1 +125923 6764 gives none 2 +125924 6765 If you want to see a train wreck that you ca n't look away from , then look no further , because here it is . 2 +125925 6765 If you want to see a train wreck that you ca n't look away from 2 +125926 6765 you want to see a train wreck that you ca n't look away from 2 +125927 6765 want to see a train wreck that you ca n't look away from 2 +125928 6765 to see a train wreck that you ca n't look away from 2 +125929 6765 see a train wreck that you ca n't look away from 0 +125930 6765 see a train wreck 1 +125931 6765 a train wreck 0 +125932 6765 train wreck 1 +125933 6765 that you ca n't look away from 3 +125934 6765 you ca n't look away from 3 +125935 6765 ca n't look away from 3 +125936 6765 look away from 2 +125937 6765 , then look no further , because here it is . 3 +125938 6765 then look no further , because here it is . 3 +125939 6765 look no further , because here it is . 3 +125940 6765 look no further , because here it is 2 +125941 6765 look no further , 3 +125942 6765 because here it is 2 +125943 6765 here it is 2 +125944 6766 Like its title character , Esther Kahn is unusual but unfortunately also irritating . 1 +125945 6766 , Esther Kahn is unusual but unfortunately also irritating . 1 +125946 6766 Esther Kahn is unusual but unfortunately also irritating . 1 +125947 6766 is unusual but unfortunately also irritating . 1 +125948 6766 is unusual but unfortunately also irritating 1 +125949 6766 unusual but unfortunately also irritating 1 +125950 6766 unusual but unfortunately also 1 +125951 6766 but unfortunately also 1 +125952 6766 unfortunately also 1 +125953 6767 The message of such reflections -- intentional or not -- is that while no art grows from a vacuum , many artists exist in one . 2 +125954 6767 The message of such reflections -- intentional or not -- 2 +125955 6767 The message of such reflections 2 +125956 6767 of such reflections 2 +125957 6767 such reflections 2 +125958 6767 reflections 2 +125959 6767 -- intentional or not -- 2 +125960 6767 intentional or not -- 2 +125961 6767 intentional or not 2 +125962 6767 intentional or 2 +125963 6767 intentional 2 +125964 6767 is that while no art grows from a vacuum , many artists exist in one . 2 +125965 6767 is that while no art grows from a vacuum , many artists exist in one 2 +125966 6767 that while no art grows from a vacuum , many artists exist in one 2 +125967 6767 while no art grows from a vacuum , many artists exist in one 2 +125968 6767 while no art grows from a vacuum 2 +125969 6767 no art grows from a vacuum 1 +125970 6767 grows from a vacuum 2 +125971 6767 from a vacuum 2 +125972 6767 a vacuum 2 +125973 6767 , many artists exist in one 2 +125974 6767 many artists exist in one 2 +125975 6767 many artists 3 +125976 6767 exist in one 2 +125977 6768 Viveka Seldahl and Sven Wollter will touch you to the core in a film you will never forget -- that you should never forget . 4 +125978 6768 Viveka Seldahl and Sven Wollter 2 +125979 6768 Seldahl and Sven Wollter 2 +125980 6768 and Sven Wollter 2 +125981 6768 will touch you to the core in a film you will never forget -- that you should never forget . 4 +125982 6768 will touch you to the core in a film you will never forget -- that you should never forget 4 +125983 6768 touch you to the core in a film you will never forget -- that you should never forget 4 +125984 6768 to the core in a film you will never forget -- that you should never forget 4 +125985 6768 the core in a film you will never forget -- that you should never forget 3 +125986 6768 in a film you will never forget -- that you should never forget 4 +125987 6768 a film you will never forget -- that you should never forget 4 +125988 6768 a film you will never forget 4 +125989 6768 you will never forget 3 +125990 6768 will never forget 2 +125991 6768 will never 2 +125992 6768 -- that you should never forget 3 +125993 6768 that you should never forget 2 +125994 6768 you should never forget 2 +125995 6768 should never forget 3 +125996 6769 Solondz is without doubt an artist of uncompromising vision , but that vision is beginning to feel , if not morally bankrupt , at least terribly monotonous . 1 +125997 6769 is without doubt an artist of uncompromising vision , but that vision is beginning to feel , if not morally bankrupt , at least terribly monotonous . 1 +125998 6769 is without doubt an artist of uncompromising vision , but that vision is beginning to feel , if not morally bankrupt , at least terribly monotonous 1 +125999 6769 is without doubt an artist of uncompromising vision , but that vision is beginning to feel , 1 +126000 6769 is without doubt an artist of uncompromising vision , but that vision is beginning to feel 2 +126001 6769 without doubt an artist of uncompromising vision , but that vision is beginning to feel 2 +126002 6769 without doubt an artist of uncompromising vision 3 +126003 6769 doubt an artist of uncompromising vision 2 +126004 6769 doubt an artist 2 +126005 6769 of uncompromising vision 2 +126006 6769 uncompromising vision 2 +126007 6769 , but that vision is beginning to feel 2 +126008 6769 that vision is beginning to feel 2 +126009 6769 vision is beginning to feel 3 +126010 6769 is beginning to feel 3 +126011 6769 beginning to feel 2 +126012 6769 to feel 2 +126013 6769 if not morally bankrupt , at least terribly monotonous 0 +126014 6769 not morally bankrupt , at least terribly monotonous 1 +126015 6769 not morally bankrupt 2 +126016 6769 , at least terribly monotonous 1 +126017 6769 at least terribly monotonous 1 +126018 6769 terribly monotonous 0 +126019 6770 A `` black Austin Powers ? '' 2 +126020 6770 A `` black Austin 2 +126021 6770 `` black Austin 2 +126022 6770 black Austin 1 +126023 6770 Powers ? '' 2 +126024 6770 Powers ? 2 +126025 6771 A burst of color , music , and dance that only the most practiced curmudgeon could fail to crack a smile at . 4 +126026 6771 A burst of color , music , and dance that only the most practiced curmudgeon could fail to crack a smile at 3 +126027 6771 A burst 2 +126028 6771 of color , music , and dance that only the most practiced curmudgeon could fail to crack a smile at 3 +126029 6771 color , music , and dance that only the most practiced curmudgeon could fail to crack a smile at 4 +126030 6771 color , music , and dance 2 +126031 6771 , music , and dance 2 +126032 6771 music , and dance 2 +126033 6771 , and dance 2 +126034 6771 that only the most practiced curmudgeon could fail to crack a smile at 2 +126035 6771 only the most practiced curmudgeon could fail to crack a smile at 4 +126036 6771 only the most practiced curmudgeon 2 +126037 6771 the most practiced curmudgeon 3 +126038 6771 most practiced curmudgeon 2 +126039 6771 most practiced 3 +126040 6771 practiced 2 +126041 6771 could fail to crack a smile at 1 +126042 6771 fail to crack a smile at 1 +126043 6771 to crack a smile at 3 +126044 6771 crack a smile at 3 +126045 6771 crack a smile 3 +126046 6772 Demme gets a lot of flavor and spice into his Charade remake , but he ca n't disguise that he 's spiffing up leftovers that are n't so substantial or fresh . 1 +126047 6772 Demme gets a lot of flavor and spice into his Charade remake , but he ca n't disguise that he 's spiffing up leftovers that are n't so substantial or fresh 1 +126048 6772 Demme gets a lot of flavor and spice into his Charade remake , but 3 +126049 6772 Demme gets a lot of flavor and spice into his Charade remake , 4 +126050 6772 Demme gets a lot of flavor and spice into his Charade remake 3 +126051 6772 gets a lot of flavor and spice into his Charade remake 4 +126052 6772 gets a lot of flavor and spice 4 +126053 6772 a lot of flavor and spice 3 +126054 6772 of flavor and spice 2 +126055 6772 flavor and spice 3 +126056 6772 flavor and 2 +126057 6772 into his Charade remake 2 +126058 6772 his Charade remake 2 +126059 6772 Charade remake 2 +126060 6772 he ca n't disguise that he 's spiffing up leftovers that are n't so substantial or fresh 1 +126061 6772 ca n't disguise that he 's spiffing up leftovers that are n't so substantial or fresh 1 +126062 6772 disguise that he 's spiffing up leftovers that are n't so substantial or fresh 1 +126063 6772 that he 's spiffing up leftovers that are n't so substantial or fresh 0 +126064 6772 he 's spiffing up leftovers that are n't so substantial or fresh 1 +126065 6772 's spiffing up leftovers that are n't so substantial or fresh 1 +126066 6772 spiffing up leftovers that are n't so substantial or fresh 1 +126067 6772 spiffing up 2 +126068 6772 spiffing 2 +126069 6772 leftovers that are n't so substantial or fresh 1 +126070 6772 leftovers 3 +126071 6772 that are n't so substantial or fresh 1 +126072 6772 are n't so substantial or fresh 1 +126073 6772 so substantial or fresh 3 +126074 6772 substantial or fresh 3 +126075 6772 substantial or 2 +126076 6773 Nicolas Cage is n't the first actor to lead a group of talented friends astray , and this movie wo n't create a ruffle in what is already an erratic career . 1 +126077 6773 Nicolas Cage is n't the first actor to lead a group of talented friends astray , and this movie wo n't create a ruffle in what is already an erratic career 1 +126078 6773 Nicolas Cage is n't the first actor to lead a group of talented friends astray , and 1 +126079 6773 Nicolas Cage is n't the first actor to lead a group of talented friends astray , 1 +126080 6773 Nicolas Cage is n't the first actor to lead a group of talented friends astray 1 +126081 6773 is n't the first actor to lead a group of talented friends astray 2 +126082 6773 the first actor to lead a group of talented friends astray 1 +126083 6773 first actor to lead a group of talented friends astray 2 +126084 6773 actor to lead a group of talented friends astray 1 +126085 6773 to lead a group of talented friends astray 1 +126086 6773 lead a group of talented friends astray 3 +126087 6773 lead a group of talented friends 3 +126088 6773 a group of talented friends 3 +126089 6773 of talented friends 2 +126090 6773 talented friends 3 +126091 6773 this movie wo n't create a ruffle in what is already an erratic career 2 +126092 6773 wo n't create a ruffle in what is already an erratic career 2 +126093 6773 create a ruffle in what is already an erratic career 1 +126094 6773 a ruffle in what is already an erratic career 1 +126095 6773 a ruffle 2 +126096 6773 ruffle 2 +126097 6773 in what is already an erratic career 2 +126098 6773 what is already an erratic career 2 +126099 6773 is already an erratic career 2 +126100 6773 is already 2 +126101 6773 an erratic career 1 +126102 6773 erratic career 1 +126103 6774 Stale and 0 +126104 6775 Moving and vibrant . 4 +126105 6775 Moving and vibrant 4 +126106 6776 A penetrating , potent exploration of sanctimony , self-awareness , self-hatred and self-determination . 3 +126107 6776 A penetrating , potent exploration of sanctimony , self-awareness , self-hatred and self-determination 3 +126108 6776 A penetrating , potent exploration 4 +126109 6776 penetrating , potent exploration 3 +126110 6776 , potent exploration 3 +126111 6776 potent exploration 3 +126112 6776 of sanctimony , self-awareness , self-hatred and self-determination 3 +126113 6776 sanctimony , self-awareness , self-hatred and self-determination 2 +126114 6776 , self-awareness , self-hatred and self-determination 2 +126115 6776 self-awareness , self-hatred and self-determination 2 +126116 6776 , self-hatred and self-determination 2 +126117 6776 self-hatred and self-determination 2 +126118 6776 self-hatred and 1 +126119 6776 self-hatred 2 +126120 6776 self-determination 3 +126121 6777 `` Sum '' is Jack Ryan 's `` do-over . '' 2 +126122 6777 Sum '' is Jack Ryan 's `` do-over . '' 2 +126123 6777 '' is Jack Ryan 's `` do-over . '' 2 +126124 6777 is Jack Ryan 's `` do-over . '' 2 +126125 6777 is Jack Ryan 's `` do-over . 2 +126126 6777 is Jack Ryan 's `` do-over 2 +126127 6777 Jack Ryan 's `` do-over 2 +126128 6777 Jack Ryan 's 2 +126129 6777 `` do-over 2 +126130 6777 do-over 1 +126131 6778 An allegory concerning the chronically mixed signals African American professionals get about overachieving could be intriguing , but the supernatural trappings only obscure the message . 1 +126132 6778 An allegory concerning the chronically mixed signals African American professionals get about overachieving could be intriguing , but the supernatural trappings only obscure the message 2 +126133 6778 An allegory concerning the chronically mixed signals African American professionals get about overachieving could be intriguing , but 2 +126134 6778 An allegory concerning the chronically mixed signals African American professionals get about overachieving could be intriguing , 3 +126135 6778 An allegory concerning the chronically mixed signals African American professionals get about overachieving could be intriguing 3 +126136 6778 An allegory concerning the chronically mixed signals African American professionals get about overachieving 3 +126137 6778 An allegory 2 +126138 6778 concerning the chronically mixed signals African American professionals get about overachieving 2 +126139 6778 concerning 2 +126140 6778 the chronically mixed signals African American professionals get about overachieving 2 +126141 6778 the chronically mixed signals 2 +126142 6778 chronically mixed signals 1 +126143 6778 chronically mixed 2 +126144 6778 chronically 1 +126145 6778 African American professionals get about overachieving 2 +126146 6778 African American professionals 3 +126147 6778 American professionals 2 +126148 6778 get about overachieving 2 +126149 6778 about overachieving 2 +126150 6778 overachieving 1 +126151 6778 could be intriguing 3 +126152 6778 be intriguing 3 +126153 6778 the supernatural trappings only obscure the message 1 +126154 6778 the supernatural trappings 2 +126155 6778 supernatural trappings 2 +126156 6778 only obscure the message 0 +126157 6778 obscure the message 1 +126158 6779 The Pianist is Polanski 's best film . 4 +126159 6779 is Polanski 's best film . 3 +126160 6779 is Polanski 's best film 4 +126161 6779 Polanski 's best film 4 +126162 6780 A compelling , gut-clutching piece of advocacy cinema that carries you along in a torrent of emotion as it explores the awful complications of one terrifying day . 4 +126163 6780 A compelling , gut-clutching piece of advocacy cinema that carries you along in a torrent of emotion as it explores the awful complications of one terrifying day 3 +126164 6780 A compelling , gut-clutching piece 4 +126165 6780 compelling , gut-clutching piece 3 +126166 6780 , gut-clutching piece 3 +126167 6780 gut-clutching piece 3 +126168 6780 gut-clutching 2 +126169 6780 of advocacy cinema that carries you along in a torrent of emotion as it explores the awful complications of one terrifying day 3 +126170 6780 advocacy cinema that carries you along in a torrent of emotion as it explores the awful complications of one terrifying day 3 +126171 6780 advocacy cinema 2 +126172 6780 advocacy 2 +126173 6780 that carries you along in a torrent of emotion as it explores the awful complications of one terrifying day 3 +126174 6780 carries you along in a torrent of emotion as it explores the awful complications of one terrifying day 2 +126175 6780 carries you along in a torrent of emotion 3 +126176 6780 carries you along 3 +126177 6780 carries you 3 +126178 6780 in a torrent of emotion 2 +126179 6780 a torrent of emotion 4 +126180 6780 a torrent 3 +126181 6780 torrent 2 +126182 6780 as it explores the awful complications of one terrifying day 1 +126183 6780 it explores the awful complications of one terrifying day 3 +126184 6780 explores the awful complications of one terrifying day 3 +126185 6780 explores the awful complications of one 2 +126186 6780 the awful complications of one 2 +126187 6780 the awful complications 1 +126188 6780 awful complications 0 +126189 6780 terrifying day 2 +126190 6781 It 's a stale , overused cocktail using the same olives since 1962 as garnish . 0 +126191 6781 's a stale , overused cocktail using the same olives since 1962 as garnish . 1 +126192 6781 's a stale , overused cocktail using the same olives since 1962 as garnish 0 +126193 6781 a stale , overused cocktail using the same olives since 1962 as garnish 1 +126194 6781 a stale , overused cocktail 1 +126195 6781 stale , overused cocktail 2 +126196 6781 , overused cocktail 1 +126197 6781 overused cocktail 1 +126198 6781 using the same olives since 1962 as garnish 2 +126199 6781 using the same olives since 1962 2 +126200 6781 the same olives since 1962 2 +126201 6781 the same olives 2 +126202 6781 same olives 2 +126203 6781 olives 2 +126204 6781 since 1962 2 +126205 6781 1962 2 +126206 6781 as garnish 2 +126207 6781 garnish 2 +126208 6782 Enormously enjoyable , high-adrenaline documentary . 4 +126209 6782 Enormously enjoyable 4 +126210 6782 , high-adrenaline documentary . 3 +126211 6782 high-adrenaline documentary . 3 +126212 6782 high-adrenaline documentary 4 +126213 6782 high-adrenaline 2 +126214 6783 the past via surrealist flourishes 3 +126215 6783 via surrealist flourishes 2 +126216 6783 surrealist flourishes 3 +126217 6783 surrealist 1 +126218 6783 stepped out 2 +126219 6783 stepped 2 +126220 6783 retrospective 2 +126221 6784 A different movie -- sometimes tedious -- by a director many viewers would like to skip but film buffs should get to know . 3 +126222 6784 A different movie -- sometimes tedious -- by a director many viewers 2 +126223 6784 A different movie -- sometimes tedious -- 1 +126224 6784 A different movie 2 +126225 6784 different movie 2 +126226 6784 -- sometimes tedious -- 1 +126227 6784 sometimes tedious -- 1 +126228 6784 by a director many viewers 2 +126229 6784 a director many viewers 2 +126230 6784 director many viewers 2 +126231 6784 many viewers 2 +126232 6784 would like to skip but film buffs should get to know . 2 +126233 6784 would like to skip but film buffs should get to know 2 +126234 6784 like to skip but film buffs should get to know 3 +126235 6784 to skip but film buffs should get to know 2 +126236 6784 skip but film buffs should get to know 1 +126237 6784 but film buffs should get to know 3 +126238 6784 film buffs should get to know 2 +126239 6784 should get to know 2 +126240 6784 get to know 2 +126241 6785 An absurdist spider web . 1 +126242 6785 absurdist spider web . 1 +126243 6785 spider web . 1 +126244 6785 web . 2 +126245 6786 Twenty years later , E.T. is still a cinematic touchstone . 4 +126246 6786 , E.T. is still a cinematic touchstone . 4 +126247 6786 E.T. is still a cinematic touchstone . 3 +126248 6786 is still a cinematic touchstone . 3 +126249 6786 is still a cinematic touchstone 3 +126250 6786 a cinematic touchstone 3 +126251 6786 cinematic touchstone 3 +126252 6786 touchstone 2 +126253 6787 If legendary shlockmeister Ed Wood had ever made a movie about a vampire , it probably would look a lot like this alarming production , adapted from Anne Rice 's novel The Vampire Chronicles . 2 +126254 6787 If legendary shlockmeister Ed Wood had ever made a movie about a vampire 3 +126255 6787 legendary shlockmeister Ed Wood had ever made a movie about a vampire 2 +126256 6787 legendary shlockmeister Ed Wood 2 +126257 6787 shlockmeister Ed Wood 2 +126258 6787 shlockmeister 1 +126259 6787 Ed Wood 2 +126260 6787 had ever made a movie about a vampire 2 +126261 6787 had ever 2 +126262 6787 made a movie about a vampire 2 +126263 6787 a movie about a vampire 2 +126264 6787 about a vampire 2 +126265 6787 a vampire 3 +126266 6787 , it probably would look a lot like this alarming production , adapted from Anne Rice 's novel The Vampire Chronicles . 1 +126267 6787 it probably would look a lot like this alarming production , adapted from Anne Rice 's novel The Vampire Chronicles . 2 +126268 6787 probably would look a lot like this alarming production , adapted from Anne Rice 's novel The Vampire Chronicles . 1 +126269 6787 would look a lot like this alarming production , adapted from Anne Rice 's novel The Vampire Chronicles . 2 +126270 6787 would look a lot like this alarming production , adapted from Anne Rice 's novel The Vampire Chronicles 3 +126271 6787 look a lot like this alarming production , adapted from Anne Rice 's novel The Vampire Chronicles 1 +126272 6787 look a lot 2 +126273 6787 like this alarming production , adapted from Anne Rice 's novel The Vampire Chronicles 1 +126274 6787 this alarming production , adapted from Anne Rice 's novel The Vampire Chronicles 2 +126275 6787 this alarming production , 1 +126276 6787 this alarming production 1 +126277 6787 alarming production 2 +126278 6787 alarming 1 +126279 6787 adapted from Anne Rice 's novel The Vampire Chronicles 2 +126280 6787 from Anne Rice 's novel The Vampire Chronicles 2 +126281 6787 Anne Rice 's novel The Vampire Chronicles 2 +126282 6787 Anne Rice 's 2 +126283 6787 novel The Vampire Chronicles 2 +126284 6787 The Vampire Chronicles 2 +126285 6788 Red Dragon is less baroque and showy than Hannibal , and less emotionally affecting than Silence . 2 +126286 6788 is less baroque and showy than Hannibal , and less emotionally affecting than Silence . 2 +126287 6788 is less baroque and showy than Hannibal , and less emotionally affecting than Silence 2 +126288 6788 is less baroque and showy than Hannibal , and less emotionally 2 +126289 6788 less baroque and showy than Hannibal , and less emotionally 2 +126290 6788 less baroque and showy than Hannibal , and 2 +126291 6788 less baroque and showy than Hannibal , 2 +126292 6788 less baroque and showy than Hannibal 2 +126293 6788 less baroque and 2 +126294 6788 less baroque 2 +126295 6788 showy than Hannibal 1 +126296 6788 showy 1 +126297 6788 than Hannibal 2 +126298 6788 less emotionally 2 +126299 6788 affecting than Silence 2 +126300 6788 than Silence 2 +126301 6789 It 's affecting , amusing , sad and reflective . 3 +126302 6789 's affecting , amusing , sad and reflective . 3 +126303 6789 's affecting , amusing , sad and reflective 3 +126304 6789 affecting , amusing , sad and reflective 3 +126305 6789 , amusing , sad and reflective 3 +126306 6789 amusing , sad and reflective 3 +126307 6789 , sad and reflective 2 +126308 6789 sad and reflective 2 +126309 6789 sad and 2 +126310 6789 reflective 2 +126311 6790 By turns gripping , amusing , tender and heart-wrenching , Laissez-passer has all the earmarks of French cinema at its best . 3 +126312 6790 By turns gripping , amusing , tender and heart-wrenching 3 +126313 6790 turns gripping , amusing , tender and heart-wrenching 2 +126314 6790 gripping , amusing , tender and heart-wrenching 4 +126315 6790 , amusing , tender and heart-wrenching 4 +126316 6790 amusing , tender and heart-wrenching 4 +126317 6790 , tender and heart-wrenching 3 +126318 6790 tender and heart-wrenching 3 +126319 6790 , Laissez-passer has all the earmarks of French cinema at its best . 4 +126320 6790 Laissez-passer has all the earmarks of French cinema at its best . 3 +126321 6790 has all the earmarks of French cinema at its best . 3 +126322 6790 has all the earmarks of French cinema at its best 4 +126323 6790 all the earmarks of French cinema at its best 3 +126324 6790 all the earmarks 2 +126325 6790 the earmarks 3 +126326 6790 earmarks 2 +126327 6790 of French cinema at its best 4 +126328 6790 French cinema at its best 4 +126329 6791 The dialogue is very choppy and monosyllabic despite the fact that it is being dubbed . 1 +126330 6791 is very choppy and monosyllabic despite the fact that it is being dubbed . 1 +126331 6791 is very choppy and monosyllabic despite the fact that it is being dubbed 0 +126332 6791 is very choppy and monosyllabic despite the fact 0 +126333 6791 very choppy and monosyllabic despite the fact 1 +126334 6791 very choppy and monosyllabic 1 +126335 6791 choppy and monosyllabic 2 +126336 6791 monosyllabic 2 +126337 6791 despite the fact 2 +126338 6791 that it is being dubbed 2 +126339 6791 it is being dubbed 2 +126340 6791 is being dubbed 2 +126341 6791 being dubbed 2 +126342 6792 ... hokey art house pretension . 1 +126343 6792 hokey art house pretension . 2 +126344 6792 art house pretension . 1 +126345 6792 house pretension . 2 +126346 6792 pretension . 2 +126347 6793 Khouri manages , with terrific flair , to keep the extremes of screwball farce and blood-curdling family intensity on one continuum . 3 +126348 6793 Khouri 2 +126349 6793 manages , with terrific flair , to keep the extremes of screwball farce and blood-curdling family intensity on one continuum . 3 +126350 6793 manages , with terrific flair , to keep the extremes of screwball farce and blood-curdling family intensity on one continuum 4 +126351 6793 manages , with terrific flair , 4 +126352 6793 manages , with terrific flair 4 +126353 6793 manages , 2 +126354 6793 with terrific flair 3 +126355 6793 terrific flair 3 +126356 6793 to keep the extremes of screwball farce and blood-curdling family intensity on one continuum 1 +126357 6793 keep the extremes of screwball farce and blood-curdling family intensity on one continuum 3 +126358 6793 the extremes of screwball farce and blood-curdling family intensity on one continuum 2 +126359 6793 the extremes 2 +126360 6793 of screwball farce and blood-curdling family intensity on one continuum 3 +126361 6793 screwball farce and blood-curdling family intensity on one continuum 3 +126362 6793 screwball farce and blood-curdling family intensity 2 +126363 6793 farce and blood-curdling family intensity 3 +126364 6793 and blood-curdling family intensity 2 +126365 6793 blood-curdling family intensity 3 +126366 6793 family intensity 2 +126367 6793 on one continuum 2 +126368 6793 one continuum 2 +126369 6793 continuum 2 +126370 6794 Then Nadia 's birthday might not have been such a bad day after all . 2 +126371 6794 Nadia 's birthday might not have been such a bad day after all . 3 +126372 6794 Nadia 's birthday 2 +126373 6794 Nadia 's 2 +126374 6794 might not have been such a bad day after all . 2 +126375 6794 might not have been such a bad day after all 3 +126376 6794 have been such a bad day after all 2 +126377 6794 been such a bad day after all 2 +126378 6794 been such a bad day 1 +126379 6794 such a bad day 1 +126380 6795 A film centering on a traditional Indian wedding in contemporary New Delhi may not sound like specialized fare , but Mira Nair 's film is an absolute delight for all audiences . 4 +126381 6795 A film centering on a traditional Indian wedding in contemporary New Delhi may not sound like specialized fare , but Mira Nair 's film is an absolute delight for all audiences 4 +126382 6795 A film centering on a traditional Indian wedding in contemporary New Delhi may not sound like specialized fare , but 2 +126383 6795 A film centering on a traditional Indian wedding in contemporary New Delhi may not sound like specialized fare , 2 +126384 6795 A film centering on a traditional Indian wedding in contemporary New Delhi may not sound like specialized fare 1 +126385 6795 A film centering on a traditional Indian wedding in contemporary New Delhi 2 +126386 6795 centering on a traditional Indian wedding in contemporary New Delhi 2 +126387 6795 on a traditional Indian wedding in contemporary New Delhi 3 +126388 6795 a traditional Indian wedding in contemporary New Delhi 2 +126389 6795 a traditional Indian wedding 2 +126390 6795 traditional Indian wedding 2 +126391 6795 Indian wedding 2 +126392 6795 in contemporary New Delhi 2 +126393 6795 contemporary New Delhi 2 +126394 6795 New Delhi 2 +126395 6795 Delhi 2 +126396 6795 may not sound like specialized fare 2 +126397 6795 sound like specialized fare 2 +126398 6795 like specialized fare 2 +126399 6795 specialized fare 2 +126400 6795 specialized 2 +126401 6795 Mira Nair 's film is an absolute delight for all audiences 4 +126402 6795 Mira Nair 's film 2 +126403 6795 Mira Nair 's 2 +126404 6795 is an absolute delight for all audiences 4 +126405 6795 an absolute delight for all audiences 4 +126406 6795 an absolute delight 4 +126407 6795 absolute delight 3 +126408 6795 for all audiences 3 +126409 6795 all audiences 2 +126410 6796 It 's a frightful vanity film that , no doubt , pays off what debt Miramax felt they owed to Benigni . 0 +126411 6796 's a frightful vanity film that , no doubt , pays off what debt Miramax felt they owed to Benigni . 3 +126412 6796 's a frightful vanity film that , no doubt , pays off what debt Miramax felt they owed to Benigni 0 +126413 6796 a frightful vanity film that , no doubt , pays off what debt Miramax felt they owed to Benigni 3 +126414 6796 a frightful vanity film 1 +126415 6796 frightful vanity film 1 +126416 6796 frightful 2 +126417 6796 vanity film 1 +126418 6796 that , no doubt , pays off what debt Miramax felt they owed to Benigni 2 +126419 6796 , no doubt , pays off what debt Miramax felt they owed to Benigni 2 +126420 6796 no doubt , pays off what debt Miramax felt they owed to Benigni 2 +126421 6796 , pays off what debt Miramax felt they owed to Benigni 2 +126422 6796 pays off what debt Miramax felt they owed to Benigni 2 +126423 6796 what debt Miramax felt they owed to Benigni 1 +126424 6796 debt Miramax felt they owed to Benigni 3 +126425 6796 debt Miramax 2 +126426 6796 felt they owed to Benigni 2 +126427 6796 they owed to Benigni 2 +126428 6796 owed to Benigni 1 +126429 6796 owed 2 +126430 6796 to Benigni 2 +126431 6797 An excellent sequel . 4 +126432 6797 excellent sequel . 4 +126433 6797 sequel . 2 +126434 6798 Never comes together as a coherent whole . 1 +126435 6798 comes together as a coherent whole . 3 +126436 6798 comes together as a coherent whole 3 +126437 6798 as a coherent whole 2 +126438 6798 a coherent whole 3 +126439 6798 coherent whole 2 +126440 6799 Its simplicity puts an exclamation point on the fact that this is n't something to be taken seriously , but it also wrecks any chance of the movie rising above similar fare . 1 +126441 6799 Its simplicity puts an exclamation point on the fact that this is n't something to be taken seriously , but it also wrecks any chance of the movie rising above similar fare 2 +126442 6799 Its simplicity puts an exclamation point on the fact that this is n't something to be taken seriously , but 2 +126443 6799 Its simplicity puts an exclamation point on the fact that this is n't something to be taken seriously , 2 +126444 6799 Its simplicity puts an exclamation point on the fact that this is n't something to be taken seriously 1 +126445 6799 Its simplicity 2 +126446 6799 puts an exclamation point on the fact that this is n't something to be taken seriously 1 +126447 6799 puts an exclamation point on the fact 3 +126448 6799 puts an exclamation point 3 +126449 6799 an exclamation point 4 +126450 6799 on the fact 2 +126451 6799 that this is n't something to be taken seriously 1 +126452 6799 this is n't something to be taken seriously 2 +126453 6799 is n't something to be taken seriously 1 +126454 6799 something to be taken seriously 3 +126455 6799 it also wrecks any chance of the movie rising above similar fare 0 +126456 6799 also wrecks any chance of the movie rising above similar fare 1 +126457 6799 wrecks any chance of the movie rising above similar fare 1 +126458 6799 wrecks 2 +126459 6799 any chance of the movie rising above similar fare 2 +126460 6799 any chance 2 +126461 6799 of the movie rising above similar fare 2 +126462 6799 the movie rising above similar fare 3 +126463 6799 rising above similar fare 3 +126464 6799 above similar fare 2 +126465 6799 similar fare 2 +126466 6800 prechewed 1 +126467 6800 that have already been through the corporate stand-up-comedy mill 1 +126468 6800 have already been through the corporate stand-up-comedy mill 1 +126469 6800 have already 2 +126470 6800 been through the corporate stand-up-comedy mill 1 +126471 6800 through the corporate stand-up-comedy mill 1 +126472 6800 the corporate stand-up-comedy mill 2 +126473 6800 corporate stand-up-comedy mill 2 +126474 6800 stand-up-comedy mill 2 +126475 6800 stand-up-comedy 2 +126476 6801 The first five minutes will have you talking 'til the end of the year ! 3 +126477 6801 The first five minutes 2 +126478 6801 will have you talking 'til the end of the year ! 4 +126479 6801 will have you talking 'til the end of the year 4 +126480 6801 have you talking 'til the end of the year 4 +126481 6801 you talking 'til the end of the year 2 +126482 6801 talking 'til the end of the year 2 +126483 6801 'til the end of the year 2 +126484 6801 'til 2 +126485 6801 the end of the year 2 +126486 6802 A loud , ugly , irritating movie without any of its satirical salvos hitting a discernible target . 0 +126487 6802 A loud , ugly , irritating movie without any of its satirical 0 +126488 6802 A loud , ugly , irritating movie 0 +126489 6802 loud , ugly , irritating movie 0 +126490 6802 loud , ugly , irritating 0 +126491 6802 , ugly , irritating 0 +126492 6802 ugly , irritating 0 +126493 6802 , irritating 2 +126494 6802 without any of its satirical 1 +126495 6802 any of its satirical 2 +126496 6802 of its satirical 2 +126497 6802 its satirical 2 +126498 6802 salvos hitting a discernible target . 3 +126499 6802 salvos hitting a discernible target 2 +126500 6802 salvos 2 +126501 6802 hitting a discernible target 2 +126502 6802 a discernible target 2 +126503 6802 discernible target 2 +126504 6802 discernible 2 +126505 6803 Last Orders nurtures the multi-layers of its characters , allowing us to remember that life 's ultimately a gamble and last orders are to be embraced . 4 +126506 6803 nurtures the multi-layers of its characters , allowing us to remember that life 's ultimately a gamble and last orders are to be embraced . 3 +126507 6803 nurtures the multi-layers of its characters , allowing us to remember that life 's ultimately a gamble and last orders are to be embraced 3 +126508 6803 nurtures the multi-layers of its characters , 4 +126509 6803 nurtures the multi-layers of its characters 3 +126510 6803 nurtures 2 +126511 6803 the multi-layers of its characters 3 +126512 6803 the multi-layers 3 +126513 6803 multi-layers 3 +126514 6803 allowing us to remember that life 's ultimately a gamble and last orders are to be embraced 3 +126515 6803 us to remember that life 's ultimately a gamble and last orders are to be embraced 3 +126516 6803 to remember that life 's ultimately a gamble and last orders are to be embraced 2 +126517 6803 remember that life 's ultimately a gamble and last orders are to be embraced 3 +126518 6803 that life 's ultimately a gamble and last orders are to be embraced 2 +126519 6803 that life 's ultimately 2 +126520 6803 that life 's 2 +126521 6803 that life 2 +126522 6803 a gamble and last orders are to be embraced 3 +126523 6803 a gamble and last orders 2 +126524 6803 a gamble and 2 +126525 6803 a gamble 2 +126526 6803 gamble 2 +126527 6803 are to be embraced 2 +126528 6803 to be embraced 3 +126529 6803 be embraced 3 +126530 6804 The Sweetest Thing is expressly for idiots who do n't care what kind of sewage they shovel into their mental gullets to simulate sustenance . 0 +126531 6804 is expressly for idiots who do n't care what kind of sewage they shovel into their mental gullets to simulate sustenance . 1 +126532 6804 is expressly for idiots who do n't care what kind of sewage they shovel into their mental gullets to simulate sustenance 0 +126533 6804 is expressly 2 +126534 6804 expressly 2 +126535 6804 for idiots who do n't care what kind of sewage they shovel into their mental gullets to simulate sustenance 0 +126536 6804 idiots who do n't care what kind of sewage they shovel into their mental gullets to simulate sustenance 0 +126537 6804 who do n't care what kind of sewage they shovel into their mental gullets to simulate sustenance 1 +126538 6804 do n't care what kind of sewage they shovel into their mental gullets to simulate sustenance 0 +126539 6804 care what kind of sewage they shovel into their mental gullets to simulate sustenance 0 +126540 6804 what kind of sewage they shovel into their mental gullets to simulate sustenance 1 +126541 6804 what kind of sewage 1 +126542 6804 of sewage 2 +126543 6804 sewage 1 +126544 6804 they shovel into their mental gullets to simulate sustenance 1 +126545 6804 shovel into their mental gullets to simulate sustenance 2 +126546 6804 shovel into their mental gullets 2 +126547 6804 shovel 2 +126548 6804 into their mental gullets 2 +126549 6804 their mental gullets 2 +126550 6804 mental gullets 2 +126551 6804 gullets 2 +126552 6804 to simulate sustenance 2 +126553 6804 simulate sustenance 2 +126554 6804 simulate 2 +126555 6804 sustenance 2 +126556 6805 Ultimately the , yes , snail-like pacing and lack of thematic resonance make the film more silly than scary , like some sort of Martha Stewart decorating program run amok . 0 +126557 6805 the , yes , snail-like pacing and lack of thematic resonance make the film more silly than scary , like some sort of Martha Stewart decorating program run amok . 0 +126558 6805 the , yes , snail-like pacing and lack of thematic resonance 1 +126559 6805 the , yes , snail-like pacing and 1 +126560 6805 the , yes , snail-like pacing 0 +126561 6805 the , yes , 2 +126562 6805 snail-like pacing 0 +126563 6805 snail-like 1 +126564 6805 lack of thematic resonance 1 +126565 6805 of thematic resonance 2 +126566 6805 thematic resonance 3 +126567 6805 make the film more silly than scary , like some sort of Martha Stewart decorating program run amok . 1 +126568 6805 make the film more silly than scary , like some sort of Martha Stewart decorating program run amok 1 +126569 6805 make the film more silly than scary , 1 +126570 6805 make the film more silly than scary 1 +126571 6805 the film more silly than scary 1 +126572 6805 like some sort of Martha Stewart decorating program run amok 1 +126573 6805 some sort of Martha Stewart decorating program run amok 1 +126574 6805 of Martha Stewart decorating program run amok 1 +126575 6805 Martha Stewart decorating program run amok 1 +126576 6805 Martha Stewart 2 +126577 6805 decorating program run amok 2 +126578 6805 decorating program run 2 +126579 6805 decorating 2 +126580 6805 program run 2 +126581 6805 amok 2 +126582 6806 Seems based on ugly ideas instead of ugly behavior , as Happiness was ... Hence , Storytelling is far more appealing . 4 +126583 6806 Seems based on ugly ideas instead of ugly behavior , as Happiness was ... Hence , Storytelling is far more appealing 2 +126584 6806 Seems based on ugly ideas instead of ugly behavior , as Happiness was ... 1 +126585 6806 Seems based on ugly ideas instead of ugly behavior , as Happiness was 1 +126586 6806 based on ugly ideas instead of ugly behavior , as Happiness was 2 +126587 6806 based on ugly ideas instead of ugly behavior , 1 +126588 6806 based on ugly ideas instead of ugly behavior 0 +126589 6806 on ugly ideas instead of ugly behavior 1 +126590 6806 ugly ideas instead of ugly behavior 1 +126591 6806 ugly ideas 1 +126592 6806 instead of ugly behavior 2 +126593 6806 of ugly behavior 2 +126594 6806 ugly behavior 0 +126595 6806 as Happiness was 2 +126596 6806 Happiness was 2 +126597 6806 Hence , Storytelling is far more appealing 3 +126598 6806 , Storytelling is far more appealing 3 +126599 6806 Storytelling is far more appealing 4 +126600 6806 is far more appealing 4 +126601 6806 far more appealing 3 +126602 6807 Weird , vulgar comedy that 's definitely an acquired taste . 2 +126603 6807 Weird , vulgar comedy that 's definitely an acquired taste 1 +126604 6807 Weird , 1 +126605 6807 vulgar comedy that 's definitely an acquired taste 3 +126606 6807 vulgar comedy 2 +126607 6807 that 's definitely an acquired taste 2 +126608 6807 's definitely an acquired taste 2 +126609 6808 Director-writer Bille August ... depicts this relationship with economical grace , letting his superb actors convey Martin 's deterioration and Barbara 's sadness -- and , occasionally , anger . 2 +126610 6808 Director-writer Bille August ... depicts this relationship with economical grace , letting his superb actors convey Martin 's deterioration and Barbara 's sadness -- and , occasionally , 3 +126611 6808 Director-writer Bille August ... depicts this relationship with economical grace , letting his superb actors convey Martin 's deterioration and Barbara 's sadness -- and , occasionally 4 +126612 6808 Director-writer Bille August ... 2 +126613 6808 Director-writer Bille August 2 +126614 6808 Director-writer 2 +126615 6808 Bille August 2 +126616 6808 Bille 2 +126617 6808 August 2 +126618 6808 depicts this relationship with economical grace , letting his superb actors convey Martin 's deterioration and Barbara 's sadness -- and , occasionally 3 +126619 6808 depicts this relationship with economical grace , 4 +126620 6808 depicts this relationship with economical grace 2 +126621 6808 depicts this relationship 2 +126622 6808 this relationship 2 +126623 6808 with economical grace 3 +126624 6808 economical grace 3 +126625 6808 letting his superb actors convey Martin 's deterioration and Barbara 's sadness -- and , occasionally 2 +126626 6808 his superb actors convey Martin 's deterioration and Barbara 's sadness -- and , occasionally 4 +126627 6808 his superb actors 4 +126628 6808 superb actors 4 +126629 6808 convey Martin 's deterioration and Barbara 's sadness -- and , occasionally 2 +126630 6808 Martin 's deterioration and Barbara 's sadness -- and , occasionally 3 +126631 6808 Martin 's deterioration and Barbara 's sadness -- and , 2 +126632 6808 Martin 's deterioration and Barbara 's sadness -- and 2 +126633 6808 Martin 's deterioration and Barbara 's sadness -- 2 +126634 6808 Martin 's deterioration and Barbara 's sadness 2 +126635 6808 Martin 's deterioration and 2 +126636 6808 Martin 's deterioration 2 +126637 6808 Martin 's 2 +126638 6808 deterioration 2 +126639 6808 Barbara 's sadness 2 +126640 6808 Barbara 's 2 +126641 6808 Barbara 2 +126642 6808 anger . 1 +126643 6809 Unlike most anime , whose most ardent fans outside Japan seem to be introverted young men with fantasy fetishes , Metropolis never seems hopelessly juvenile . 3 +126644 6809 Unlike most anime , whose most ardent fans outside Japan seem to be introverted young men with fantasy fetishes 2 +126645 6809 most anime , whose most ardent fans outside Japan seem to be introverted young men with fantasy fetishes 1 +126646 6809 most anime , 2 +126647 6809 most anime 2 +126648 6809 whose most ardent fans outside Japan seem to be introverted young men with fantasy fetishes 2 +126649 6809 most ardent fans outside Japan seem to be introverted young men with fantasy fetishes 2 +126650 6809 most ardent fans outside Japan 2 +126651 6809 outside Japan 2 +126652 6809 seem to be introverted young men with fantasy fetishes 3 +126653 6809 to be introverted young men with fantasy fetishes 2 +126654 6809 be introverted young men with fantasy fetishes 2 +126655 6809 introverted young men with fantasy fetishes 1 +126656 6809 introverted young men 2 +126657 6809 introverted young 2 +126658 6809 introverted 2 +126659 6809 with fantasy fetishes 2 +126660 6809 fantasy fetishes 2 +126661 6809 fetishes 2 +126662 6809 , Metropolis never seems hopelessly juvenile . 3 +126663 6809 Metropolis never seems hopelessly juvenile . 2 +126664 6809 never seems hopelessly juvenile . 1 +126665 6809 seems hopelessly juvenile . 1 +126666 6809 seems hopelessly juvenile 1 +126667 6809 hopelessly juvenile 1 +126668 6810 ... wise and elegiac ... 4 +126669 6810 wise and elegiac ... 4 +126670 6810 and elegiac ... 2 +126671 6810 elegiac ... 2 +126672 6811 It certainly wo n't win any awards in the plot department but it sets out with no pretensions and delivers big time . 3 +126673 6811 It certainly wo n't win any awards in the plot department but it sets out with no pretensions and delivers big time 3 +126674 6811 It certainly wo n't win any awards in the plot department but 1 +126675 6811 It certainly wo n't win any awards in the plot department 2 +126676 6811 certainly wo n't win any awards in the plot department 0 +126677 6811 wo n't win any awards in the plot department 2 +126678 6811 win any awards in the plot department 2 +126679 6811 win any awards 2 +126680 6811 any awards 3 +126681 6811 in the plot department 2 +126682 6811 the plot department 2 +126683 6811 plot department 2 +126684 6811 it sets out with no pretensions and delivers big time 3 +126685 6811 sets out with no pretensions and delivers big time 3 +126686 6811 sets out with no pretensions and 2 +126687 6811 sets out with no pretensions 2 +126688 6811 with no pretensions 2 +126689 6811 no pretensions 2 +126690 6811 delivers big time 4 +126691 6812 Very much a home video , and so devoid of artifice and purpose that it appears not to have been edited at all . 0 +126692 6812 much a home video , and so devoid of artifice and purpose that it appears not to have been edited at all . 1 +126693 6812 much a home 2 +126694 6812 video , and so devoid of artifice and purpose that it appears not to have been edited at all . 1 +126695 6812 video , and so devoid of artifice and purpose that it appears not to have been edited at all 0 +126696 6812 video , and so devoid of artifice and purpose 1 +126697 6812 video , and 3 +126698 6812 video , 2 +126699 6812 so devoid of artifice and purpose 0 +126700 6812 so devoid 1 +126701 6812 of artifice and purpose 3 +126702 6812 artifice and purpose 2 +126703 6812 that it appears not to have been edited at all 1 +126704 6812 it appears not to have been edited at all 1 +126705 6812 appears not to have been edited at all 0 +126706 6812 not to have been edited at all 1 +126707 6812 to have been edited at all 2 +126708 6812 have been edited at all 2 +126709 6812 been edited at all 1 +126710 6812 edited at all 2 +126711 6813 The story gives ample opportunity for large-scale action and suspense , which director Shekhar Kapur supplies with tremendous skill . 4 +126712 6813 gives ample opportunity for large-scale action and suspense , which director Shekhar Kapur supplies with tremendous skill . 3 +126713 6813 gives ample opportunity for large-scale action and suspense , which director Shekhar Kapur supplies with tremendous skill 4 +126714 6813 gives ample opportunity for large-scale action and suspense , 3 +126715 6813 gives ample opportunity for large-scale action and suspense 3 +126716 6813 gives ample opportunity 3 +126717 6813 ample opportunity 2 +126718 6813 for large-scale action and suspense 3 +126719 6813 large-scale action and suspense 3 +126720 6813 large-scale 3 +126721 6813 action and suspense 2 +126722 6813 action and 3 +126723 6813 which director Shekhar Kapur supplies with tremendous skill 3 +126724 6813 director Shekhar Kapur supplies with tremendous skill 4 +126725 6813 director Shekhar Kapur 2 +126726 6813 Shekhar Kapur 3 +126727 6813 supplies with tremendous skill 3 +126728 6813 supplies 2 +126729 6813 with tremendous skill 4 +126730 6813 tremendous skill 3 +126731 6814 What makes How I Killed My Father compelling , besides its terrific performances , is Fontaine 's willingness to wander into the dark areas of parent-child relationships without flinching . 4 +126732 6814 What makes How I Killed My Father compelling 2 +126733 6814 makes How I Killed My Father compelling 2 +126734 6814 How I Killed My Father compelling 3 +126735 6814 I Killed My Father compelling 3 +126736 6814 Killed My Father compelling 2 +126737 6814 My Father compelling 2 +126738 6814 , besides its terrific performances , is Fontaine 's willingness to wander into the dark areas of parent-child relationships without flinching . 3 +126739 6814 besides its terrific performances , is Fontaine 's willingness to wander into the dark areas of parent-child relationships without flinching . 4 +126740 6814 besides its terrific performances 4 +126741 6814 its terrific performances 4 +126742 6814 terrific performances 3 +126743 6814 , is Fontaine 's willingness to wander into the dark areas of parent-child relationships without flinching . 2 +126744 6814 is Fontaine 's willingness to wander into the dark areas of parent-child relationships without flinching . 3 +126745 6814 is Fontaine 's willingness to wander into the dark areas of parent-child relationships without flinching 3 +126746 6814 Fontaine 's willingness to wander into the dark areas of parent-child relationships without flinching 3 +126747 6814 willingness to wander into the dark areas of parent-child relationships without flinching 3 +126748 6814 to wander into the dark areas of parent-child relationships without flinching 3 +126749 6814 wander into the dark areas of parent-child relationships without flinching 1 +126750 6814 wander into the dark areas of parent-child relationships 1 +126751 6814 wander 2 +126752 6814 into the dark areas of parent-child relationships 2 +126753 6814 the dark areas of parent-child relationships 1 +126754 6814 the dark areas 2 +126755 6814 dark areas 1 +126756 6814 areas 2 +126757 6814 of parent-child relationships 2 +126758 6814 parent-child relationships 2 +126759 6814 without flinching 2 +126760 6814 flinching 1 +126761 6815 Without -LRB- De Niro -RRB- , City By The Sea would slip under the waves . 1 +126762 6815 Without -LRB- De Niro -RRB- 2 +126763 6815 -LRB- De Niro -RRB- 2 +126764 6815 De Niro -RRB- 1 +126765 6815 , City By The Sea would slip under the waves . 2 +126766 6815 City By The Sea would slip under the waves . 1 +126767 6815 By The Sea would slip under the waves . 1 +126768 6815 would slip under the waves . 2 +126769 6815 would slip under the waves 2 +126770 6815 slip under the waves 2 +126771 6815 under the waves 2 +126772 6815 the waves 2 +126773 6816 It made me realize that we really have n't had a good cheesy B-movie playing in theaters since ... well ... since last week 's Reign of Fire . 1 +126774 6816 made me realize that we really have n't had a good cheesy B-movie playing in theaters since ... well ... since last week 's Reign of Fire . 1 +126775 6816 made me realize that we really have n't had a good cheesy B-movie playing in theaters since ... well ... since last week 's Reign of Fire 1 +126776 6816 me realize that we really have n't had a good cheesy B-movie playing in theaters since ... well ... since last week 's Reign of Fire 1 +126777 6816 realize that we really have n't had a good cheesy B-movie playing in theaters since ... well ... since last week 's Reign of Fire 1 +126778 6816 that we really have n't had a good cheesy B-movie playing in theaters since ... well ... since last week 's Reign of Fire 0 +126779 6816 we really have n't had a good cheesy B-movie playing in theaters since ... well ... since last week 's Reign of Fire 1 +126780 6816 really have n't had a good cheesy B-movie playing in theaters since ... well ... since last week 's Reign of Fire 2 +126781 6816 have n't had a good cheesy B-movie playing in theaters since ... well ... since last week 's Reign of Fire 2 +126782 6816 had a good cheesy B-movie playing in theaters since ... well ... since last week 's Reign of Fire 2 +126783 6816 had a good cheesy B-movie playing in theaters since ... well ... 2 +126784 6816 had a good cheesy B-movie playing in theaters since ... well 2 +126785 6816 a good cheesy B-movie playing in theaters since ... well 2 +126786 6816 a good cheesy B-movie playing 2 +126787 6816 good cheesy B-movie playing 2 +126788 6816 cheesy B-movie playing 1 +126789 6816 cheesy B-movie 1 +126790 6816 in theaters since ... well 2 +126791 6816 theaters since ... well 2 +126792 6816 theaters since ... 2 +126793 6816 theaters since 2 +126794 6816 since last week 's Reign of Fire 2 +126795 6816 last week 's Reign of Fire 2 +126796 6816 last week 2 +126797 6816 's Reign of Fire 2 +126798 6817 A movie of riveting power and sadness . 4 +126799 6817 A movie of riveting power and sadness 3 +126800 6817 of riveting power and sadness 3 +126801 6817 riveting power and sadness 3 +126802 6817 power and sadness 2 +126803 6818 More of an intriguing curiosity than a gripping thriller . 2 +126804 6818 More of an intriguing curiosity than a gripping thriller 2 +126805 6818 More of an intriguing curiosity 2 +126806 6818 of an intriguing curiosity 3 +126807 6818 an intriguing curiosity 4 +126808 6818 intriguing curiosity 3 +126809 6818 than a gripping thriller 2 +126810 6818 a gripping thriller 3 +126811 6818 gripping thriller 3 +126812 6819 A worthwhile documentary , whether you 're into rap or not , even if it may still leave you wanting more answers as the credits roll . 3 +126813 6819 A worthwhile documentary , whether you 're into rap or not , even if it may still leave you wanting more answers as the credits 3 +126814 6819 A worthwhile documentary , 3 +126815 6819 A worthwhile documentary 3 +126816 6819 worthwhile documentary 3 +126817 6819 whether you 're into rap or not , even if it may still leave you wanting more answers as the credits 2 +126818 6819 whether you 're into rap or not , 2 +126819 6819 whether you 're into rap or not 2 +126820 6819 whether you 're into rap or 2 +126821 6819 whether you 're into rap 2 +126822 6819 you 're into rap 2 +126823 6819 're into rap 2 +126824 6819 into rap 2 +126825 6819 even if it may still leave you wanting more answers as the credits 1 +126826 6819 if it may still leave you wanting more answers as the credits 1 +126827 6819 it may still leave you wanting more answers as the credits 2 +126828 6819 may still leave you wanting more answers as the credits 2 +126829 6819 leave you wanting more answers as the credits 2 +126830 6819 you wanting more answers as the credits 2 +126831 6819 wanting more answers as the credits 1 +126832 6819 wanting more answers 2 +126833 6819 more answers 2 +126834 6819 as the credits 2 +126835 6819 roll . 2 +126836 6820 ... instead go rent `` Shakes The Clown '' , a much funnier film with a similar theme and an equally great Robin Williams performance . 1 +126837 6820 instead go rent `` Shakes The Clown '' , a much funnier film with a similar theme and an equally great Robin Williams performance . 2 +126838 6820 instead go rent `` Shakes The Clown '' , a much funnier film with a similar theme and an equally great Robin Williams performance 1 +126839 6820 go rent `` Shakes The Clown '' , a much funnier film with a similar theme and an equally great Robin Williams performance 3 +126840 6820 rent `` Shakes The Clown '' , a much funnier film with a similar theme and an equally great Robin Williams performance 1 +126841 6820 `` Shakes The Clown '' , a much funnier film with a similar theme and an equally great Robin Williams performance 4 +126842 6820 `` Shakes The Clown '' , a much funnier film with a similar theme and 3 +126843 6820 `` Shakes The Clown '' , a much funnier film with a similar theme 3 +126844 6820 `` Shakes The Clown '' , 2 +126845 6820 `` Shakes The Clown '' 2 +126846 6820 Shakes The Clown '' 2 +126847 6820 The Clown '' 2 +126848 6820 Clown '' 2 +126849 6820 a much funnier film with a similar theme 3 +126850 6820 a much funnier film 3 +126851 6820 much funnier film 3 +126852 6820 funnier film 3 +126853 6820 with a similar theme 2 +126854 6820 a similar theme 2 +126855 6820 similar theme 2 +126856 6820 an equally great Robin Williams performance 4 +126857 6820 equally great Robin Williams performance 4 +126858 6820 equally great 3 +126859 6820 Robin Williams performance 2 +126860 6820 Williams performance 2 +126861 6821 While we no longer possess the lack-of-attention span that we did at seventeen , we had no trouble sitting for Blade II . 3 +126862 6821 While we no longer possess the lack-of-attention span that we did at seventeen 2 +126863 6821 we no longer possess the lack-of-attention span that we did at seventeen 2 +126864 6821 no longer possess the lack-of-attention span that we did at seventeen 2 +126865 6821 possess the lack-of-attention span that we did at seventeen 1 +126866 6821 possess the lack-of-attention span 1 +126867 6821 the lack-of-attention span 0 +126868 6821 lack-of-attention span 1 +126869 6821 lack-of-attention 1 +126870 6821 that we did at seventeen 2 +126871 6821 we did at seventeen 2 +126872 6821 did at seventeen 2 +126873 6821 at seventeen 2 +126874 6821 seventeen 2 +126875 6821 , we had no trouble sitting for Blade II . 3 +126876 6821 we had no trouble sitting for Blade II . 3 +126877 6821 had no trouble sitting for Blade II . 3 +126878 6821 had no trouble sitting for Blade II 2 +126879 6821 no trouble sitting for Blade II 3 +126880 6821 no trouble 2 +126881 6821 sitting for Blade II 2 +126882 6821 for Blade II 3 +126883 6822 This action-thriller\/dark comedy is one of the most repellent things to pop up in a cinematic year already littered with celluloid garbage . 1 +126884 6822 This action-thriller\/dark comedy 2 +126885 6822 action-thriller\/dark comedy 2 +126886 6822 action-thriller\/dark 2 +126887 6822 is one of the most repellent things to pop up in a cinematic year already littered with celluloid garbage . 1 +126888 6822 is one of the most repellent things to pop up in a cinematic year already littered with celluloid garbage 0 +126889 6822 one of the most repellent things to pop up in a cinematic year already littered with celluloid garbage 0 +126890 6822 one of the most repellent things 1 +126891 6822 of the most repellent things 1 +126892 6822 the most repellent things 2 +126893 6822 most repellent things 1 +126894 6822 most repellent 0 +126895 6822 to pop up in a cinematic year already littered with celluloid garbage 1 +126896 6822 pop up in a cinematic year already littered with celluloid garbage 0 +126897 6822 in a cinematic year already littered with celluloid garbage 1 +126898 6822 a cinematic year already littered with celluloid garbage 1 +126899 6822 a cinematic year 2 +126900 6822 cinematic year 2 +126901 6822 already littered with celluloid garbage 1 +126902 6822 littered with celluloid garbage 1 +126903 6822 with celluloid garbage 0 +126904 6822 celluloid garbage 0 +126905 6823 Brown Sugar signals director Rick Famuyiwa 's emergence as an articulate , grown-up voice in African-American cinema . 3 +126906 6823 signals director Rick Famuyiwa 's emergence as an articulate , grown-up voice in African-American cinema . 3 +126907 6823 signals director Rick Famuyiwa 's emergence as an articulate , grown-up voice in African-American cinema 4 +126908 6823 director Rick Famuyiwa 's emergence as an articulate , grown-up voice in African-American cinema 3 +126909 6823 director Rick Famuyiwa 's emergence 2 +126910 6823 director Rick Famuyiwa 's 2 +126911 6823 Rick Famuyiwa 's 2 +126912 6823 Rick 3 +126913 6823 as an articulate , grown-up voice in African-American cinema 3 +126914 6823 an articulate , grown-up voice in African-American cinema 3 +126915 6823 an articulate , grown-up voice 3 +126916 6823 articulate , grown-up voice 3 +126917 6823 , grown-up voice 2 +126918 6823 grown-up voice 3 +126919 6823 in African-American cinema 2 +126920 6823 African-American cinema 2 +126921 6823 African-American 2 +126922 6824 Almodovar is an imaginative teacher of emotional intelligence in this engaging film about two men who discover what William James once called ` the gift of tears . ' 4 +126923 6824 is an imaginative teacher of emotional intelligence in this engaging film about two men who discover what William James once called ` the gift of tears . ' 3 +126924 6824 is an imaginative teacher of emotional intelligence in this engaging film about two men who discover what William James once called ` the gift of tears . 3 +126925 6824 is an imaginative teacher of emotional intelligence in this engaging film about two men who discover what William James once called ` the gift of tears 3 +126926 6824 an imaginative teacher of emotional intelligence in this engaging film about two men who discover what William James once called ` the gift of tears 4 +126927 6824 an imaginative teacher 3 +126928 6824 imaginative teacher 3 +126929 6824 of emotional intelligence in this engaging film about two men who discover what William James once called ` the gift of tears 4 +126930 6824 emotional intelligence in this engaging film about two men who discover what William James once called ` the gift of tears 4 +126931 6824 emotional intelligence 3 +126932 6824 in this engaging film about two men who discover what William James once called ` the gift of tears 4 +126933 6824 this engaging film about two men who discover what William James once called ` the gift of tears 4 +126934 6824 this engaging film 4 +126935 6824 about two men who discover what William James once called ` the gift of tears 2 +126936 6824 two men who discover what William James once called ` the gift of tears 3 +126937 6824 two men 2 +126938 6824 who discover what William James once called ` the gift of tears 2 +126939 6824 discover what William James once called ` the gift of tears 2 +126940 6824 what William James once called ` the gift of tears 2 +126941 6824 William James once called ` the gift of tears 3 +126942 6824 William James 2 +126943 6824 once called ` the gift of tears 3 +126944 6824 called ` the gift of tears 2 +126945 6824 the gift of tears 3 +126946 6824 the gift 2 +126947 6824 of tears 2 +126948 6825 Such a fine idea for a film , and such a stultifying , lifeless execution . 1 +126949 6825 Such a fine idea for a film , and such a stultifying , 2 +126950 6825 Such a fine idea 4 +126951 6825 a fine idea 3 +126952 6825 fine idea 3 +126953 6825 for a film , and such a stultifying , 2 +126954 6825 a film , and such a stultifying , 1 +126955 6825 a film , and such a stultifying 2 +126956 6825 a film , and 2 +126957 6825 such a stultifying 1 +126958 6825 a stultifying 2 +126959 6825 stultifying 1 +126960 6825 lifeless execution . 1 +126961 6825 lifeless execution 1 +126962 6826 Avary 's film never quite emerges from the shadow of Ellis ' book . 2 +126963 6826 Avary 's film 2 +126964 6826 never quite emerges from the shadow of Ellis ' book . 1 +126965 6826 emerges from the shadow of Ellis ' book . 2 +126966 6826 emerges from the shadow of Ellis ' book 2 +126967 6826 from the shadow of Ellis ' book 3 +126968 6826 the shadow of Ellis ' book 2 +126969 6826 the shadow 2 +126970 6826 of Ellis ' book 3 +126971 6826 Ellis ' book 2 +126972 6826 Ellis ' 2 +126973 6826 Ellis 2 +126974 6827 What should have been a painless time-killer becomes instead a grating endurance test . 1 +126975 6827 What should have been a painless time-killer 1 +126976 6827 should have been a painless time-killer 1 +126977 6827 have been a painless time-killer 3 +126978 6827 been a painless time-killer 2 +126979 6827 a painless time-killer 1 +126980 6827 painless time-killer 2 +126981 6827 painless 3 +126982 6827 time-killer 2 +126983 6827 becomes instead a grating endurance test . 1 +126984 6827 becomes instead a grating endurance test 0 +126985 6827 instead a grating endurance test 2 +126986 6827 a grating endurance test 1 +126987 6827 grating endurance test 2 +126988 6828 It 's endlessly inventive , consistently intelligent and sickeningly savage . 4 +126989 6828 's endlessly inventive , consistently intelligent and sickeningly savage . 2 +126990 6828 's endlessly inventive , consistently intelligent and sickeningly savage 4 +126991 6828 's endlessly 2 +126992 6828 inventive , consistently intelligent and sickeningly savage 3 +126993 6828 inventive , consistently intelligent and 3 +126994 6828 inventive , consistently intelligent 4 +126995 6828 consistently intelligent 3 +126996 6828 sickeningly savage 1 +126997 6828 sickeningly 1 +126998 6829 The journey is worth your time , especially if you have Ellen Pompeo sitting next to you for the ride . 3 +126999 6829 is worth your time , especially if you have Ellen Pompeo sitting next to you for the ride . 3 +127000 6829 is worth your time , especially if you have Ellen Pompeo sitting next to you for the ride 3 +127001 6829 is worth your time , especially 3 +127002 6829 is worth your time , 3 +127003 6829 is worth your time 3 +127004 6829 if you have Ellen Pompeo sitting next to you for the ride 2 +127005 6829 you have Ellen Pompeo sitting next to you for the ride 3 +127006 6829 have Ellen Pompeo sitting next to you for the ride 2 +127007 6829 Ellen Pompeo sitting next to you for the ride 3 +127008 6829 Ellen Pompeo 2 +127009 6829 Ellen 2 +127010 6829 Pompeo 2 +127011 6829 sitting next to you for the ride 2 +127012 6829 sitting next to you 2 +127013 6829 next to you 2 +127014 6830 While the performances are often engaging , this loose collection of largely improvised numbers would probably have worked better as a one-hour TV documentary . 1 +127015 6830 While the performances are often engaging 3 +127016 6830 the performances are often engaging 4 +127017 6830 are often engaging 3 +127018 6830 , this loose collection of largely improvised numbers would probably have worked better as a one-hour TV documentary . 1 +127019 6830 this loose collection of largely improvised numbers would probably have worked better as a one-hour TV documentary . 1 +127020 6830 this loose collection of largely improvised numbers 1 +127021 6830 this loose collection 2 +127022 6830 of largely improvised numbers 2 +127023 6830 largely improvised numbers 2 +127024 6830 largely improvised 1 +127025 6830 would probably have worked better as a one-hour TV documentary . 1 +127026 6830 would probably have worked better as a one-hour TV documentary 1 +127027 6830 have worked better as a one-hour TV documentary 2 +127028 6830 worked better as a one-hour TV documentary 1 +127029 6830 worked better 2 +127030 6831 Leaves viewers out in the cold and undermines some phenomenal performances . 1 +127031 6831 viewers out in the cold and undermines some phenomenal performances . 1 +127032 6831 viewers out in the cold and undermines some phenomenal performances 1 +127033 6831 viewers out in the cold and 1 +127034 6831 viewers out in the cold 1 +127035 6831 viewers out 2 +127036 6831 in the cold 2 +127037 6831 the cold 1 +127038 6831 undermines some phenomenal performances 2 +127039 6831 some phenomenal performances 3 +127040 6831 phenomenal performances 4 +127041 6832 A tired , unimaginative and derivative variation of that already-shallow genre . 1 +127042 6832 A tired , unimaginative and derivative variation of that already-shallow 1 +127043 6832 A tired , unimaginative and derivative variation 0 +127044 6832 tired , unimaginative and derivative variation 2 +127045 6832 tired , unimaginative and derivative 0 +127046 6832 , unimaginative and derivative 0 +127047 6832 unimaginative and derivative 0 +127048 6832 unimaginative and 1 +127049 6832 of that already-shallow 1 +127050 6832 that already-shallow 1 +127051 6832 already-shallow 1 +127052 6833 Yes , MIBII is rote work and predictable , but with a philosophical visual coming right at the end that extravagantly redeems it . 3 +127053 6833 , MIBII is rote work and predictable , but with a philosophical visual coming right at the end that extravagantly redeems it . 3 +127054 6833 MIBII is rote work and predictable , but with a philosophical visual coming right at the end that extravagantly redeems it . 2 +127055 6833 MIBII 2 +127056 6833 is rote work and predictable , but with a philosophical visual coming right at the end that extravagantly redeems it . 2 +127057 6833 is rote work and predictable , but with a philosophical visual coming right at the end that extravagantly redeems it 3 +127058 6833 is rote work and predictable , but with a philosophical visual coming right 2 +127059 6833 is rote work and predictable , but 2 +127060 6833 is rote work and predictable , 1 +127061 6833 is rote work and predictable 1 +127062 6833 rote work and predictable 1 +127063 6833 rote work and 2 +127064 6833 rote work 2 +127065 6833 with a philosophical visual coming right 3 +127066 6833 a philosophical visual coming right 3 +127067 6833 philosophical visual coming right 3 +127068 6833 visual coming right 3 +127069 6833 coming right 2 +127070 6833 at the end that extravagantly redeems it 3 +127071 6833 the end that extravagantly redeems it 3 +127072 6833 that extravagantly redeems it 3 +127073 6833 extravagantly redeems it 3 +127074 6833 extravagantly 3 +127075 6833 redeems it 3 +127076 6834 A bit too eager to please . 1 +127077 6834 A bit too eager to please 1 +127078 6834 too eager to please 1 +127079 6834 eager to please 3 +127080 6834 to please 2 +127081 6835 The only thing that distinguishes a Randall Wallace film from any other is the fact that there is nothing distinguishing in a Randall Wallace film . 0 +127082 6835 The only thing that distinguishes a Randall Wallace film from any other 2 +127083 6835 that distinguishes a Randall Wallace film from any other 2 +127084 6835 distinguishes a Randall Wallace film from any other 2 +127085 6835 distinguishes 3 +127086 6835 a Randall Wallace film from any other 2 +127087 6835 a Randall Wallace film 2 +127088 6835 Randall Wallace film 2 +127089 6835 Wallace film 2 +127090 6835 from any other 2 +127091 6835 any other 2 +127092 6835 is the fact that there is nothing distinguishing in a Randall Wallace film . 1 +127093 6835 is the fact that there is nothing distinguishing in a Randall Wallace film 0 +127094 6835 is the fact 2 +127095 6835 that there is nothing distinguishing in a Randall Wallace film 1 +127096 6835 there is nothing distinguishing in a Randall Wallace film 1 +127097 6835 is nothing distinguishing in a Randall Wallace film 1 +127098 6835 nothing distinguishing in a Randall Wallace film 1 +127099 6835 nothing distinguishing 1 +127100 6835 distinguishing 2 +127101 6835 in a Randall Wallace film 2 +127102 6836 10 minutes into the film you 'll be white-knuckled and unable to look away . 4 +127103 6836 10 minutes into the film you 2 +127104 6836 into the film you 2 +127105 6836 the film you 2 +127106 6836 film you 2 +127107 6836 'll be white-knuckled and unable to look away . 3 +127108 6836 'll be white-knuckled and unable to look away 4 +127109 6836 be white-knuckled and unable to look away 4 +127110 6836 white-knuckled and unable to look away 3 +127111 6836 white-knuckled and unable 2 +127112 6836 white-knuckled and 2 +127113 6836 white-knuckled 3 +127114 6836 to look away 2 +127115 6837 The determination of Pinochet 's victims to seek justice , and their often heartbreaking testimony , spoken directly into director Patricio Guzman 's camera , pack a powerful emotional wallop . 4 +127116 6837 The determination of Pinochet 's victims to seek justice , and their often heartbreaking testimony , spoken directly into director Patricio Guzman 's camera , pack a powerful emotional wallop 4 +127117 6837 The determination of Pinochet 's victims to seek justice , and 2 +127118 6837 The determination of Pinochet 's victims to seek justice , 2 +127119 6837 The determination of Pinochet 's victims to seek justice 2 +127120 6837 The determination of Pinochet 's victims 2 +127121 6837 The determination 2 +127122 6837 of Pinochet 's victims 2 +127123 6837 Pinochet 's victims 1 +127124 6837 to seek justice 2 +127125 6837 seek justice 2 +127126 6837 their often heartbreaking testimony , spoken directly into director Patricio Guzman 's camera , pack a powerful emotional wallop 4 +127127 6837 their often heartbreaking testimony , spoken directly into director Patricio Guzman 's camera , 3 +127128 6837 their often heartbreaking testimony , spoken directly into director Patricio Guzman 's camera 3 +127129 6837 their often heartbreaking testimony , 2 +127130 6837 their often heartbreaking testimony 2 +127131 6837 often heartbreaking testimony 2 +127132 6837 often heartbreaking 1 +127133 6837 spoken directly into director Patricio Guzman 's camera 2 +127134 6837 spoken directly 2 +127135 6837 spoken 2 +127136 6837 into director Patricio Guzman 's camera 2 +127137 6837 director Patricio Guzman 's camera 2 +127138 6837 director Patricio Guzman 's 2 +127139 6837 Patricio Guzman 's 2 +127140 6837 Patricio 2 +127141 6837 Guzman 's 2 +127142 6837 Guzman 2 +127143 6837 pack a powerful emotional wallop 4 +127144 6837 a powerful emotional wallop 3 +127145 6837 powerful emotional wallop 4 +127146 6838 Writer\/director Alexander Payne -LRB- Election -RRB- and his co-writer Jim Taylor brilliantly employ their quirky and fearless ability to look American angst in the eye and end up laughing . 3 +127147 6838 Writer\/director Alexander Payne -LRB- Election -RRB- and his co-writer Jim Taylor 2 +127148 6838 Writer\/director Alexander Payne -LRB- Election -RRB- and 2 +127149 6838 Writer\/director Alexander Payne -LRB- Election -RRB- 2 +127150 6838 Writer\/director Alexander Payne 2 +127151 6838 Alexander Payne 2 +127152 6838 -LRB- Election -RRB- 2 +127153 6838 Election -RRB- 2 +127154 6838 his co-writer Jim Taylor 2 +127155 6838 co-writer Jim Taylor 2 +127156 6838 Jim Taylor 2 +127157 6838 brilliantly employ their quirky and fearless ability to look American angst in the eye and end up laughing . 4 +127158 6838 brilliantly employ their quirky and fearless ability to look American angst in the eye and end up laughing 3 +127159 6838 employ their quirky and fearless ability to look American angst in the eye and end up laughing 3 +127160 6838 employ their quirky and fearless ability 3 +127161 6838 their quirky and fearless ability 3 +127162 6838 quirky and fearless ability 3 +127163 6838 quirky and fearless 3 +127164 6838 to look American angst in the eye and end up laughing 3 +127165 6838 look American angst in the eye and end up laughing 3 +127166 6838 look American angst in the eye and 2 +127167 6838 look American angst in the eye 2 +127168 6838 look American angst 2 +127169 6838 American angst 2 +127170 6838 in the eye 2 +127171 6838 end up laughing 3 +127172 6839 The Movie is clever , offbeat and even gritty enough to overcome my resistance . 3 +127173 6839 is clever , offbeat and even gritty enough to overcome my resistance . 4 +127174 6839 is clever , offbeat and even gritty enough to overcome my resistance 3 +127175 6839 is clever , offbeat and even gritty enough 4 +127176 6839 clever , offbeat and even gritty enough 3 +127177 6839 clever , offbeat and 3 +127178 6839 clever , offbeat 3 +127179 6839 clever , 4 +127180 6839 even gritty enough 3 +127181 6839 gritty enough 3 +127182 6839 to overcome my resistance 3 +127183 6839 overcome my resistance 2 +127184 6839 my resistance 2 +127185 6840 The film presents visceral and dangerously honest revelations about the men and machines behind the curtains of our planet . 3 +127186 6840 presents visceral and dangerously honest revelations about the men and machines behind the curtains of our planet . 3 +127187 6840 presents visceral and dangerously honest revelations about the men and machines behind the curtains of our planet 4 +127188 6840 visceral and dangerously honest revelations about the men and machines behind the curtains of our planet 3 +127189 6840 visceral and dangerously honest revelations 2 +127190 6840 visceral and dangerously honest 2 +127191 6840 dangerously honest 3 +127192 6840 dangerously 2 +127193 6840 about the men and machines behind the curtains of our planet 2 +127194 6840 the men and machines behind the curtains of our planet 3 +127195 6840 the men and machines 2 +127196 6840 men and machines 2 +127197 6840 machines 2 +127198 6840 behind the curtains of our planet 2 +127199 6840 the curtains of our planet 2 +127200 6840 the curtains 2 +127201 6840 curtains 2 +127202 6840 of our planet 2 +127203 6840 our planet 2 +127204 6841 It manages to squeeze by on Angelina Jolie 's surprising flair for self-deprecating comedy . 3 +127205 6841 manages to squeeze by on Angelina Jolie 's surprising flair for self-deprecating comedy . 3 +127206 6841 manages to squeeze by on Angelina Jolie 's surprising flair for self-deprecating comedy 2 +127207 6841 to squeeze by on Angelina Jolie 's surprising flair for self-deprecating comedy 2 +127208 6841 squeeze by on Angelina Jolie 's surprising flair for self-deprecating comedy 2 +127209 6841 by on Angelina Jolie 's surprising flair for self-deprecating comedy 3 +127210 6841 on Angelina Jolie 's surprising flair for self-deprecating comedy 3 +127211 6841 Angelina Jolie 's surprising flair for self-deprecating comedy 3 +127212 6841 Angelina Jolie 's surprising flair 3 +127213 6841 Angelina Jolie 's 2 +127214 6841 Angelina 2 +127215 6841 surprising flair 3 +127216 6841 for self-deprecating comedy 3 +127217 6841 self-deprecating comedy 3 +127218 6842 A delicious and delicately funny look at the residents of a Copenhagen neighborhood coping with the befuddling complications life tosses at them . 4 +127219 6842 A delicious and delicately funny look at the residents of a Copenhagen neighborhood coping with the befuddling complications life 3 +127220 6842 A delicious and delicately funny look 4 +127221 6842 delicious and delicately funny look 3 +127222 6842 delicious and delicately 3 +127223 6842 delicious and 3 +127224 6842 at the residents of a Copenhagen neighborhood coping with the befuddling complications life 3 +127225 6842 the residents of a Copenhagen neighborhood coping with the befuddling complications life 2 +127226 6842 the residents 2 +127227 6842 residents 2 +127228 6842 of a Copenhagen neighborhood coping with the befuddling complications life 1 +127229 6842 a Copenhagen neighborhood coping with the befuddling complications life 3 +127230 6842 a Copenhagen neighborhood 2 +127231 6842 Copenhagen neighborhood 2 +127232 6842 Copenhagen 2 +127233 6842 coping with the befuddling complications life 2 +127234 6842 with the befuddling complications life 2 +127235 6842 the befuddling complications life 2 +127236 6842 befuddling complications life 2 +127237 6842 befuddling 1 +127238 6842 complications life 2 +127239 6842 tosses at them . 2 +127240 6842 tosses at them 2 +127241 6843 Will no doubt delight Plympton 's legion of fans ; others may find 80 minutes of these shenanigans exhausting . 2 +127242 6843 Will no doubt delight Plympton 's legion of fans ; others may find 80 minutes of these shenanigans exhausting 1 +127243 6843 Will no doubt delight Plympton 's legion of fans ; 3 +127244 6843 Will no doubt delight Plympton 's legion of fans 3 +127245 6843 no doubt delight Plympton 's legion of fans 3 +127246 6843 delight Plympton 's legion of fans 3 +127247 6843 Plympton 's legion of fans 2 +127248 6843 Plympton 's legion 2 +127249 6843 legion 2 +127250 6843 of fans 2 +127251 6843 others may find 80 minutes of these shenanigans exhausting 1 +127252 6843 may find 80 minutes of these shenanigans exhausting 1 +127253 6843 find 80 minutes of these shenanigans exhausting 0 +127254 6843 80 minutes of these shenanigans exhausting 1 +127255 6843 of these shenanigans exhausting 1 +127256 6843 these shenanigans exhausting 1 +127257 6843 these shenanigans 2 +127258 6844 Behind the glitz , Hollywood is sordid and disgusting . 0 +127259 6844 Behind the glitz 2 +127260 6844 the glitz 2 +127261 6844 glitz 3 +127262 6844 , Hollywood is sordid and disgusting . 0 +127263 6844 Hollywood is sordid and disgusting . 0 +127264 6844 is sordid and disgusting . 0 +127265 6844 is sordid and disgusting 0 +127266 6844 sordid and disgusting 0 +127267 6844 sordid and 1 +127268 6845 Once folks started hanging out at the barbershop , they never wanted to leave . 3 +127269 6845 Once folks started hanging out at the barbershop 2 +127270 6845 folks started hanging out at the barbershop 2 +127271 6845 started hanging out at the barbershop 2 +127272 6845 hanging out at the barbershop 2 +127273 6845 hanging out 2 +127274 6845 at the barbershop 2 +127275 6845 the barbershop 2 +127276 6845 , they never wanted to leave . 2 +127277 6845 they never wanted to leave . 2 +127278 6845 never wanted to leave . 4 +127279 6845 wanted to leave . 1 +127280 6845 wanted to leave 1 +127281 6845 to leave 2 +127282 6846 -LRB- Has -RRB- an immediacy and an intimacy that sucks you in and dares you not to believe it 's all true . 3 +127283 6846 -LRB- Has -RRB- an immediacy and an intimacy that sucks you in and dares you not to believe it 4 +127284 6846 -LRB- Has -RRB- an immediacy and 2 +127285 6846 -LRB- Has -RRB- an immediacy 3 +127286 6846 -LRB- Has -RRB- 2 +127287 6846 an immediacy 2 +127288 6846 an intimacy that sucks you in and dares you not to believe it 4 +127289 6846 an intimacy 3 +127290 6846 that sucks you in and dares you not to believe it 4 +127291 6846 sucks you in and dares you not to believe it 3 +127292 6846 sucks you in and 3 +127293 6846 sucks you in 3 +127294 6846 sucks you 3 +127295 6846 dares you not to believe it 2 +127296 6846 you not to believe it 2 +127297 6846 not to believe it 1 +127298 6846 to believe it 2 +127299 6846 's all true . 2 +127300 6846 's all true 2 +127301 6847 The characters are so generic and the plot so bland that even as rogue CIA assassins working for Chris Cooper 's agency boss close in on the resourceful amnesiac , we do n't feel much for Damon\/Bourne or his predicament . 0 +127302 6847 The characters are so generic and the plot so bland that even as rogue CIA assassins working for Chris Cooper 's agency boss close in on the resourceful amnesiac , we do n't feel much for Damon\/Bourne or his predicament 0 +127303 6847 The characters are so generic and 0 +127304 6847 The characters are so generic 1 +127305 6847 are so generic 1 +127306 6847 so generic 2 +127307 6847 the plot so bland that even as rogue CIA assassins working for Chris Cooper 's agency boss close in on the resourceful amnesiac , we do n't feel much for Damon\/Bourne or his predicament 1 +127308 6847 so bland that even as rogue CIA assassins working for Chris Cooper 's agency boss close in on the resourceful amnesiac , we do n't feel much for Damon\/Bourne or his predicament 1 +127309 6847 that even as rogue CIA assassins working for Chris Cooper 's agency boss close in on the resourceful amnesiac , we do n't feel much for Damon\/Bourne or his predicament 2 +127310 6847 even as rogue CIA assassins working for Chris Cooper 's agency boss close in on the resourceful amnesiac , we do n't feel much for Damon\/Bourne or his predicament 1 +127311 6847 even as rogue CIA assassins working for Chris Cooper 's agency boss close in on the resourceful amnesiac 2 +127312 6847 as rogue CIA assassins working for Chris Cooper 's agency boss close in on the resourceful amnesiac 3 +127313 6847 rogue CIA assassins working for Chris Cooper 's agency boss close in on the resourceful amnesiac 2 +127314 6847 rogue CIA 2 +127315 6847 rogue 2 +127316 6847 assassins working for Chris Cooper 's agency boss close in on the resourceful amnesiac 2 +127317 6847 assassins 2 +127318 6847 working for Chris Cooper 's agency boss close in on the resourceful amnesiac 2 +127319 6847 working for Chris Cooper 's agency boss close 2 +127320 6847 for Chris Cooper 's agency boss close 2 +127321 6847 Chris Cooper 's agency boss close 2 +127322 6847 Chris Cooper 's 2 +127323 6847 Cooper 's 2 +127324 6847 agency boss close 2 +127325 6847 agency 2 +127326 6847 boss close 2 +127327 6847 in on the resourceful amnesiac 3 +127328 6847 on the resourceful amnesiac 2 +127329 6847 the resourceful amnesiac 1 +127330 6847 resourceful amnesiac 3 +127331 6847 amnesiac 1 +127332 6847 , we do n't feel much for Damon\/Bourne or his predicament 1 +127333 6847 we do n't feel much for Damon\/Bourne or his predicament 2 +127334 6847 do n't feel much for Damon\/Bourne or his predicament 1 +127335 6847 feel much for Damon\/Bourne or his predicament 2 +127336 6847 feel much 2 +127337 6847 for Damon\/Bourne or his predicament 3 +127338 6847 Damon\/Bourne or his predicament 3 +127339 6847 Damon\/Bourne or 3 +127340 6847 Damon\/Bourne 2 +127341 6847 his predicament 2 +127342 6848 Malone does have a gift for generating nightmarish images that will be hard to burn out of your brain . 2 +127343 6848 Malone 3 +127344 6848 does have a gift for generating nightmarish images that will be hard to burn out of your brain . 2 +127345 6848 does have a gift for generating nightmarish images that will be hard to burn out of your brain 2 +127346 6848 have a gift for generating nightmarish images that will be hard to burn out of your brain 2 +127347 6848 a gift for generating nightmarish images that will be hard to burn out of your brain 2 +127348 6848 a gift for generating nightmarish images 3 +127349 6848 for generating nightmarish images 2 +127350 6848 generating nightmarish images 1 +127351 6848 nightmarish images 2 +127352 6848 that will be hard to burn out of your brain 1 +127353 6848 will be hard to burn out of your brain 1 +127354 6848 be hard to burn out of your brain 1 +127355 6848 hard to burn out of your brain 1 +127356 6848 to burn out of your brain 0 +127357 6848 burn out of your brain 1 +127358 6848 burn out 3 +127359 6848 of your brain 2 +127360 6849 Arty gay film . 2 +127361 6849 gay film . 1 +127362 6849 gay film 2 +127363 6850 There 's a part of us that can not help be entertained by the sight of someone getting away with something . 3 +127364 6850 's a part of us that can not help be entertained by the sight of someone getting away with something . 3 +127365 6850 's a part of us that can not help be entertained by the sight of someone getting away with something 3 +127366 6850 a part of us that can not help be entertained by the sight of someone getting away with something 3 +127367 6850 a part of us 2 +127368 6850 that can not help be entertained by the sight of someone getting away with something 3 +127369 6850 can not help be entertained by the sight of someone getting away with something 3 +127370 6850 help be entertained by the sight of someone getting away with something 3 +127371 6850 be entertained by the sight of someone getting away with something 3 +127372 6850 entertained by the sight of someone getting away with something 2 +127373 6850 entertained by the sight of someone 3 +127374 6850 by the sight of someone 2 +127375 6850 the sight of someone 2 +127376 6850 of someone 2 +127377 6850 getting away with something 2 +127378 6850 getting away 2 +127379 6850 with something 2 +127380 6851 Mention `` Solaris '' five years from now and I 'm sure those who saw it will have an opinion to share . 3 +127381 6851 Mention `` Solaris '' five years from now and I 'm sure those who saw it will have an opinion to share 2 +127382 6851 Mention `` Solaris '' five years from now and 1 +127383 6851 Mention `` Solaris '' five years from now 2 +127384 6851 Mention `` Solaris '' 2 +127385 6851 `` Solaris '' 2 +127386 6851 Solaris '' 2 +127387 6851 five years from now 2 +127388 6851 from now 2 +127389 6851 I 'm sure those who saw it will have an opinion to share 2 +127390 6851 'm sure those who saw it will have an opinion to share 2 +127391 6851 'm sure 2 +127392 6851 those who saw it will have an opinion to share 2 +127393 6851 who saw it will have an opinion to share 2 +127394 6851 saw it will have an opinion to share 2 +127395 6851 it will have an opinion to share 2 +127396 6851 will have an opinion to share 2 +127397 6851 have an opinion to share 2 +127398 6851 an opinion to share 2 +127399 6851 an opinion 2 +127400 6851 to share 2 +127401 6852 Provides a very moving and revelatory footnote to the Holocaust . 4 +127402 6852 Provides a very moving and revelatory footnote to the Holocaust 4 +127403 6852 a very moving and revelatory footnote to the Holocaust 3 +127404 6852 a very moving and revelatory footnote 3 +127405 6852 very moving and revelatory footnote 3 +127406 6852 very moving and revelatory 3 +127407 6852 moving and revelatory 4 +127408 6852 to the Holocaust 2 +127409 6853 Mastering its formidable arithmetic of cameras and souls , Group articulates a flood of emotion . 3 +127410 6853 Mastering its formidable arithmetic of cameras and souls 4 +127411 6853 Mastering 2 +127412 6853 its formidable arithmetic of cameras and souls 3 +127413 6853 its formidable arithmetic 2 +127414 6853 formidable arithmetic 1 +127415 6853 formidable 3 +127416 6853 arithmetic 2 +127417 6853 of cameras and souls 2 +127418 6853 cameras and souls 2 +127419 6853 cameras and 2 +127420 6853 cameras 2 +127421 6853 , Group articulates a flood of emotion . 2 +127422 6853 Group articulates a flood of emotion . 3 +127423 6853 articulates a flood of emotion . 3 +127424 6853 articulates a flood of emotion 2 +127425 6853 a flood of emotion 3 +127426 6853 a flood 2 +127427 6853 flood 2 +127428 6854 A movie where story is almost an afterthought amidst a swirl of colors and inexplicable events . 1 +127429 6854 A movie where story is almost an afterthought 1 +127430 6854 where story is almost an afterthought 1 +127431 6854 story is almost an afterthought 1 +127432 6854 is almost an afterthought 1 +127433 6854 amidst a swirl of colors and inexplicable events . 2 +127434 6854 amidst a swirl of colors and inexplicable events 2 +127435 6854 a swirl of colors and inexplicable events 2 +127436 6854 a swirl 2 +127437 6854 swirl 2 +127438 6854 of colors and inexplicable events 2 +127439 6854 colors and inexplicable events 2 +127440 6854 colors and 2 +127441 6854 inexplicable events 2 +127442 6855 Manages to accomplish what few sequels can -- it equals the original and in some ways even betters it . 3 +127443 6855 Manages to accomplish what few sequels can -- it equals the original and in some ways even betters it 3 +127444 6855 Manages to accomplish what few sequels can -- 3 +127445 6855 Manages to accomplish what few sequels can 3 +127446 6855 to accomplish what few sequels can 3 +127447 6855 accomplish what few sequels can 4 +127448 6855 what few sequels can 2 +127449 6855 few sequels can 2 +127450 6855 few sequels 1 +127451 6855 it equals the original and in some ways even betters it 3 +127452 6855 equals the original and in some ways even betters it 3 +127453 6855 equals the original and 2 +127454 6855 equals the original 3 +127455 6855 in some ways even betters it 2 +127456 6855 even betters it 3 +127457 6855 betters it 3 +127458 6855 betters 2 +127459 6856 The leads are natural and lovely , the pace is serene , the humor wry and sprightly . 4 +127460 6856 The leads are natural and lovely 3 +127461 6856 are natural and lovely 3 +127462 6856 natural and lovely 3 +127463 6856 natural and 3 +127464 6856 , the pace is serene , the humor wry and sprightly . 2 +127465 6856 the pace is serene , the humor wry and sprightly . 2 +127466 6856 is serene , the humor wry and sprightly . 3 +127467 6856 is serene , the humor wry and sprightly 3 +127468 6856 serene , the humor wry and sprightly 4 +127469 6856 serene 3 +127470 6856 , the humor wry and sprightly 3 +127471 6856 the humor wry and sprightly 3 +127472 6856 the humor wry and 3 +127473 6856 the humor wry 3 +127474 6856 humor wry 3 +127475 6857 Cantet beautifully illuminates what it means sometimes to be inside looking out , and at other times outside looking in . 3 +127476 6857 Cantet 2 +127477 6857 beautifully illuminates what it means sometimes to be inside looking out , and at other times outside looking in . 3 +127478 6857 illuminates what it means sometimes to be inside looking out , and at other times outside looking in . 3 +127479 6857 illuminates what it means sometimes to be inside looking out , and at other times outside looking in 3 +127480 6857 illuminates 3 +127481 6857 what it means sometimes to be inside looking out , and at other times outside looking in 3 +127482 6857 it means sometimes to be inside looking out , and at other times outside looking in 2 +127483 6857 means sometimes to be inside looking out , and at other times outside looking in 2 +127484 6857 means sometimes 2 +127485 6857 to be inside looking out , and at other times outside looking in 2 +127486 6857 be inside looking out , and at other times outside looking in 3 +127487 6857 be inside looking out , and 2 +127488 6857 be inside looking out , 2 +127489 6857 be inside looking out 2 +127490 6857 inside looking out 2 +127491 6857 looking out 2 +127492 6857 at other times outside looking in 2 +127493 6857 at other times 2 +127494 6857 outside looking in 2 +127495 6858 journalism of the 1960s . 2 +127496 6858 journalism of the 1960s 2 +127497 6858 journalism 2 +127498 6858 of the 1960s 2 +127499 6858 the 1960s 2 +127500 6859 Pretty much sucks , but has a funny moment or two . 1 +127501 6859 much sucks , but has a funny moment or two . 1 +127502 6859 sucks , but has a funny moment or two . 1 +127503 6859 sucks , but has a funny moment or two 1 +127504 6859 sucks , but 1 +127505 6859 sucks , 2 +127506 6859 has a funny moment or two 3 +127507 6859 a funny moment or two 3 +127508 6859 a funny moment or 3 +127509 6859 a funny moment 3 +127510 6859 funny moment 3 +127511 6860 It 's not like having a real film of Nijinsky , but at least it 's better than that eponymous 1980 biopic that used soap in the places where the mysteries lingered . 3 +127512 6860 It 's not like having a real film of Nijinsky , but at least it 's better than that eponymous 1980 biopic that used soap in the places where the mysteries lingered 2 +127513 6860 It 's not like having a real film of Nijinsky , but 2 +127514 6860 It 's not like having a real film of Nijinsky , 1 +127515 6860 It 's not like having a real film of Nijinsky 1 +127516 6860 's not like having a real film of Nijinsky 1 +127517 6860 like having a real film of Nijinsky 3 +127518 6860 having a real film of Nijinsky 2 +127519 6860 a real film of Nijinsky 2 +127520 6860 a real film 3 +127521 6860 real film 3 +127522 6860 of Nijinsky 3 +127523 6860 at least it 's better than that eponymous 1980 biopic that used soap in the places where the mysteries lingered 3 +127524 6860 it 's better than that eponymous 1980 biopic that used soap in the places where the mysteries lingered 3 +127525 6860 's better than that eponymous 1980 biopic that used soap in the places where the mysteries lingered 2 +127526 6860 than that eponymous 1980 biopic that used soap in the places where the mysteries lingered 2 +127527 6860 that eponymous 1980 biopic that used soap in the places where the mysteries lingered 2 +127528 6860 eponymous 1980 biopic that used soap in the places where the mysteries lingered 2 +127529 6860 eponymous 2 +127530 6860 1980 biopic that used soap in the places where the mysteries lingered 2 +127531 6860 1980 biopic 2 +127532 6860 1980 2 +127533 6860 that used soap in the places where the mysteries lingered 2 +127534 6860 used soap in the places where the mysteries lingered 2 +127535 6860 used soap in the places 2 +127536 6860 used soap 1 +127537 6860 in the places 2 +127538 6860 where the mysteries lingered 2 +127539 6860 the mysteries lingered 2 +127540 6860 the mysteries 2 +127541 6860 lingered 2 +127542 6861 A shoddy male hip hop fantasy filled with guns , expensive cars , lots of naked women and Rocawear clothing . 1 +127543 6861 A shoddy male hip hop fantasy 0 +127544 6861 shoddy male hip hop fantasy 1 +127545 6861 male hip hop fantasy 3 +127546 6861 hip hop fantasy 3 +127547 6861 hop fantasy 2 +127548 6861 hop 2 +127549 6861 filled with guns , expensive cars , lots of naked women and Rocawear clothing . 2 +127550 6861 filled with guns , expensive cars , lots of naked women and Rocawear clothing 2 +127551 6861 with guns , expensive cars , lots of naked women and Rocawear clothing 3 +127552 6861 guns , expensive cars , lots of naked women and Rocawear clothing 2 +127553 6861 guns , expensive cars , lots of naked women and 2 +127554 6861 guns , expensive cars , lots of naked women 2 +127555 6861 guns , expensive cars , 2 +127556 6861 guns , expensive cars 2 +127557 6861 expensive cars 2 +127558 6861 lots of naked women 2 +127559 6861 of naked women 2 +127560 6861 naked women 2 +127561 6861 Rocawear clothing 2 +127562 6861 Rocawear 2 +127563 6862 What Madonna does here ca n't properly be called acting -- more accurately , it 's moving and it 's talking and it 's occasionally gesturing , sometimes all at once . 1 +127564 6862 What Madonna does here ca n't properly be called acting -- more accurately , it 's moving and it 's talking and it 's occasionally gesturing , sometimes all at once 1 +127565 6862 What Madonna does here ca n't properly be called acting -- more accurately , it 's moving and 1 +127566 6862 What Madonna does here ca n't properly be called acting -- more accurately , it 's moving 2 +127567 6862 What Madonna does 2 +127568 6862 Madonna does 2 +127569 6862 here ca n't properly be called acting -- more accurately , it 's moving 2 +127570 6862 ca n't properly be called acting -- more accurately , it 's moving 0 +127571 6862 ca n't properly 2 +127572 6862 be called acting -- more accurately , it 's moving 2 +127573 6862 called acting -- more accurately , it 's moving 2 +127574 6862 acting -- more accurately , it 's moving 3 +127575 6862 -- more accurately , it 's moving 3 +127576 6862 more accurately , it 's moving 3 +127577 6862 more accurately , 2 +127578 6862 it 's moving 3 +127579 6862 's moving 3 +127580 6862 it 's talking and it 's occasionally gesturing , sometimes all at once 2 +127581 6862 it 's talking and 2 +127582 6862 it 's talking 2 +127583 6862 's talking 2 +127584 6862 it 's occasionally gesturing , sometimes all at once 2 +127585 6862 's occasionally gesturing , sometimes all at once 2 +127586 6862 gesturing , sometimes all at once 2 +127587 6862 gesturing , 2 +127588 6862 gesturing 3 +127589 6862 sometimes all at once 2 +127590 6863 Baby-faced Renner is eerily convincing as this bland blank of a man with unimaginable demons within . 3 +127591 6863 Baby-faced Renner 2 +127592 6863 Baby-faced 2 +127593 6863 is eerily convincing as this bland blank of a man with unimaginable demons within . 2 +127594 6863 is eerily convincing as this bland blank of a man with unimaginable demons within 3 +127595 6863 is eerily convincing as this bland blank of a man with unimaginable demons 2 +127596 6863 eerily convincing as this bland blank of a man with unimaginable demons 1 +127597 6863 convincing as this bland blank of a man with unimaginable demons 1 +127598 6863 as this bland blank of a man with unimaginable demons 2 +127599 6863 this bland blank of a man with unimaginable demons 2 +127600 6863 this bland blank 2 +127601 6863 bland blank 2 +127602 6863 of a man with unimaginable demons 4 +127603 6863 a man with unimaginable demons 2 +127604 6863 with unimaginable demons 3 +127605 6863 unimaginable demons 1 +127606 6864 A different kind of love story - one that is dark , disturbing , painful to watch , yet compelling . 2 +127607 6864 A different kind of love story - one that is dark , disturbing , painful to watch , yet compelling 3 +127608 6864 A different kind of love story - 2 +127609 6864 A different kind of love story 2 +127610 6864 one that is dark , disturbing , painful to watch , yet compelling 3 +127611 6864 that is dark , disturbing , painful to watch , yet compelling 3 +127612 6864 is dark , disturbing , painful to watch , yet compelling 2 +127613 6864 dark , disturbing , painful to watch , yet compelling 2 +127614 6864 dark , disturbing , painful to watch , yet 1 +127615 6864 dark , disturbing , painful to watch , 1 +127616 6864 dark , disturbing , painful to watch 1 +127617 6864 dark , disturbing , 2 +127618 6864 dark , disturbing 2 +127619 6864 dark , 2 +127620 6865 Even if you do n't understand what on earth is going on , this is a movie that will stimulate hours of post viewing discussion , if only to be reminded of who did what to whom and why . 3 +127621 6865 Even if you do n't understand what on earth is going on 2 +127622 6865 if you do n't understand what on earth is going on 1 +127623 6865 you do n't understand what on earth is going on 1 +127624 6865 do n't understand what on earth is going on 0 +127625 6865 understand what on earth is going on 2 +127626 6865 what on earth is going on 1 +127627 6865 on earth is going on 2 +127628 6865 , this is a movie that will stimulate hours of post viewing discussion , if only to be reminded of who did what to whom and why . 2 +127629 6865 this is a movie that will stimulate hours of post viewing discussion , if only to be reminded of who did what to whom and why . 4 +127630 6865 is a movie that will stimulate hours of post viewing discussion , if only to be reminded of who did what to whom and why . 4 +127631 6865 is a movie that will stimulate hours of post viewing discussion , if only to be reminded of who did what to whom and why 3 +127632 6865 a movie that will stimulate hours of post viewing discussion , if only to be reminded of who did what to whom and why 3 +127633 6865 that will stimulate hours of post viewing discussion , if only to be reminded of who did what to whom and why 3 +127634 6865 will stimulate hours of post viewing discussion , if only to be reminded of who did what to whom and why 2 +127635 6865 stimulate hours of post viewing discussion , if only to be reminded of who did what to whom and why 3 +127636 6865 stimulate 3 +127637 6865 hours of post viewing discussion , if only to be reminded of who did what to whom and why 2 +127638 6865 of post viewing discussion , if only to be reminded of who did what to whom and why 2 +127639 6865 post viewing discussion , if only to be reminded of who did what to whom and why 2 +127640 6865 post viewing discussion , 2 +127641 6865 post viewing discussion 2 +127642 6865 viewing discussion 2 +127643 6865 if only to be reminded of who did what to whom and why 2 +127644 6865 only to be reminded of who did what to whom and why 2 +127645 6865 to be reminded of who did what to whom and why 2 +127646 6865 be reminded of who did what to whom and why 2 +127647 6865 reminded of who did what to whom and why 2 +127648 6865 of who did what to whom and why 2 +127649 6865 who did what to whom and why 2 +127650 6865 did what to whom and why 2 +127651 6865 what to whom and why 2 +127652 6865 what to whom and 2 +127653 6865 what to whom 2 +127654 6866 Funny , somber , absurd , and , finally , achingly sad , Bartleby is a fine , understated piece of filmmaking . 4 +127655 6866 Funny , somber , absurd , and , finally , achingly sad , 4 +127656 6866 Funny , somber , absurd , and , finally , achingly sad 3 +127657 6866 somber , absurd , and , finally , achingly sad 2 +127658 6866 somber , absurd , and , finally , 1 +127659 6866 somber , absurd , and 1 +127660 6866 somber , absurd , 1 +127661 6866 , absurd , 1 +127662 6866 absurd , 1 +127663 6866 achingly sad 1 +127664 6866 Bartleby is a fine , understated piece of filmmaking . 3 +127665 6866 is a fine , understated piece of filmmaking . 3 +127666 6866 is a fine , understated piece of filmmaking 2 +127667 6866 a fine , understated piece of filmmaking 4 +127668 6866 understated piece of filmmaking 3 +127669 6866 understated piece 3 +127670 6867 -LRB- T -RRB- his slop does n't even have potential as a cult film , as it 's too loud to shout insults at the screen . 0 +127671 6867 -LRB- T -RRB- his slop 1 +127672 6867 his slop 1 +127673 6867 slop 2 +127674 6867 does n't even have potential as a cult film , as it 's too loud to shout insults at the screen . 1 +127675 6867 does n't even have potential as a cult film , as it 's too loud to shout insults at the screen 0 +127676 6867 have potential as a cult film , as it 's too loud to shout insults at the screen 2 +127677 6867 have potential as a cult film , 3 +127678 6867 have potential as a cult film 3 +127679 6867 have potential 3 +127680 6867 as a cult film 3 +127681 6867 a cult film 2 +127682 6867 cult film 3 +127683 6867 as it 's too loud to shout insults at the screen 1 +127684 6867 it 's too loud to shout insults at the screen 1 +127685 6867 's too loud to shout insults at the screen 0 +127686 6867 's too loud 1 +127687 6867 to shout insults at the screen 1 +127688 6867 shout insults at the screen 1 +127689 6867 shout insults 2 +127690 6867 at the screen 2 +127691 6868 In the telling of a story largely untold , Bui chooses to produce something that is ultimately suspiciously familiar . 2 +127692 6868 In the telling of a story largely untold 3 +127693 6868 the telling of a story largely untold 2 +127694 6868 of a story largely untold 2 +127695 6868 a story largely untold 3 +127696 6868 largely untold 2 +127697 6868 untold 2 +127698 6868 , Bui chooses to produce something that is ultimately suspiciously familiar . 1 +127699 6868 Bui chooses to produce something that is ultimately suspiciously familiar . 1 +127700 6868 Bui 3 +127701 6868 chooses to produce something that is ultimately suspiciously familiar . 1 +127702 6868 chooses to produce something that is ultimately suspiciously familiar 2 +127703 6868 to produce something that is ultimately suspiciously familiar 1 +127704 6868 produce something that is ultimately suspiciously familiar 2 +127705 6868 something that is ultimately suspiciously familiar 1 +127706 6868 that is ultimately suspiciously familiar 1 +127707 6868 is ultimately suspiciously familiar 2 +127708 6868 suspiciously familiar 1 +127709 6868 suspiciously 1 +127710 6869 My Big Fat Greek Wedding is not only the best date movie of the year , it 's also a -- dare I say it twice -- delightfully charming -- and totally American , I might add -- slice of comedic bliss . 4 +127711 6869 My Big Fat Greek Wedding is not only the best date movie of the year 4 +127712 6869 is not only the best date movie of the year 4 +127713 6869 the best date movie of the year 4 +127714 6869 the best date movie 4 +127715 6869 best date movie 4 +127716 6869 , it 's also a -- dare I say it twice -- delightfully charming -- and totally American , I might add -- slice of comedic bliss . 3 +127717 6869 it 's also a -- dare I say it twice -- delightfully charming -- and totally American , I might add -- slice of comedic bliss . 4 +127718 6869 's also a -- dare I say it twice -- delightfully charming -- and totally American , I might add -- slice of comedic bliss . 4 +127719 6869 's also a -- dare I say it twice -- delightfully charming -- and totally American , I might add -- slice of comedic bliss 3 +127720 6869 also a -- dare I say it twice -- delightfully charming -- and totally American , I might add -- slice of comedic bliss 4 +127721 6869 also a -- dare I say it twice -- delightfully charming -- and totally American , 4 +127722 6869 also a -- dare I say it twice -- delightfully charming -- and totally American 4 +127723 6869 also a -- dare I say it twice -- 1 +127724 6869 also a 2 +127725 6869 -- dare I say it twice -- 2 +127726 6869 dare I say it twice -- 2 +127727 6869 dare I say it twice 2 +127728 6869 I say it twice 2 +127729 6869 say it twice 2 +127730 6869 say it 2 +127731 6869 delightfully charming -- and totally American 3 +127732 6869 delightfully charming -- and 4 +127733 6869 delightfully charming -- 4 +127734 6869 delightfully charming 4 +127735 6869 totally American 2 +127736 6869 I might add -- slice of comedic bliss 4 +127737 6869 might add -- slice of comedic bliss 4 +127738 6869 might add -- 2 +127739 6869 might add 2 +127740 6869 slice of comedic bliss 3 +127741 6869 of comedic bliss 4 +127742 6869 comedic bliss 4 +127743 6869 bliss 3 +127744 6870 Provides a satisfactory overview of the bizarre world of extreme athletes as several daredevils express their own views . 3 +127745 6870 a satisfactory overview of the bizarre world of extreme athletes as several daredevils express their own views . 3 +127746 6870 a satisfactory overview of the bizarre world of extreme athletes as several daredevils 3 +127747 6870 a satisfactory overview 3 +127748 6870 satisfactory overview 3 +127749 6870 overview 2 +127750 6870 of the bizarre world of extreme athletes as several daredevils 2 +127751 6870 the bizarre world of extreme athletes as several daredevils 2 +127752 6870 the bizarre world 2 +127753 6870 bizarre world 2 +127754 6870 of extreme athletes as several daredevils 2 +127755 6870 extreme athletes as several daredevils 2 +127756 6870 as several daredevils 2 +127757 6870 several daredevils 2 +127758 6870 daredevils 2 +127759 6870 express their own views . 2 +127760 6870 express their own views 2 +127761 6870 their own views 2 +127762 6870 own views 2 +127763 6870 views 2 +127764 6871 Not exaggerated enough to be a parody of gross-out flicks , college flicks , or even flicks in general . 1 +127765 6871 Not exaggerated enough to be a parody of gross-out flicks , college flicks , or even flicks in general 1 +127766 6871 Not exaggerated enough 1 +127767 6871 Not exaggerated 2 +127768 6871 to be a parody of gross-out flicks , college flicks , or even flicks in general 1 +127769 6871 be a parody of gross-out flicks , college flicks , or even flicks in general 1 +127770 6871 a parody of gross-out flicks , college flicks , or even flicks in general 2 +127771 6871 of gross-out flicks , college flicks , or even flicks in general 2 +127772 6871 gross-out flicks , college flicks , or even flicks in general 1 +127773 6871 gross-out flicks , college flicks , or 1 +127774 6871 gross-out flicks , college flicks , 2 +127775 6871 gross-out flicks , college flicks 2 +127776 6871 gross-out flicks , 1 +127777 6871 gross-out flicks 2 +127778 6871 college flicks 2 +127779 6871 even flicks in general 2 +127780 6871 even flicks 2 +127781 6872 Looks and feels like a low-budget hybrid of Scarface or Carlito 's Way . 1 +127782 6872 Looks and feels like a low-budget hybrid of Scarface or Carlito 's Way 2 +127783 6872 like a low-budget hybrid of Scarface or Carlito 's Way 1 +127784 6872 a low-budget hybrid of Scarface or Carlito 's Way 1 +127785 6872 a low-budget hybrid of Scarface or 1 +127786 6872 a low-budget hybrid of Scarface 1 +127787 6872 a low-budget hybrid 1 +127788 6872 low-budget hybrid 1 +127789 6872 of Scarface 2 +127790 6872 Scarface 2 +127791 6872 Carlito 's Way 2 +127792 6872 Carlito 's 2 +127793 6872 Carlito 2 +127794 6873 and your reward will be a thoughtful , emotional movie experience . 4 +127795 6873 your reward will be a thoughtful , emotional movie experience . 4 +127796 6873 your reward 3 +127797 6873 reward 3 +127798 6873 will be a thoughtful , emotional movie experience . 4 +127799 6873 will be a thoughtful , emotional movie experience 4 +127800 6873 be a thoughtful , emotional movie experience 4 +127801 6873 a thoughtful , emotional movie experience 4 +127802 6873 thoughtful , emotional movie experience 4 +127803 6873 thoughtful , emotional 3 +127804 6874 Kwan is a master of shadow , quietude , and room noise , and Lan Yu is a disarmingly lived-in movie . 3 +127805 6874 Kwan is a master of shadow , quietude , and room noise , and Lan Yu is a disarmingly lived-in movie 3 +127806 6874 Kwan is a master of shadow , quietude , and room noise , and 4 +127807 6874 Kwan is a master of shadow , quietude , and room noise , 3 +127808 6874 Kwan is a master of shadow , quietude , and room noise 3 +127809 6874 is a master of shadow , quietude , and room noise 3 +127810 6874 a master of shadow , quietude , and room noise 3 +127811 6874 of shadow , quietude , and room noise 2 +127812 6874 shadow , quietude , and room noise 2 +127813 6874 , quietude , and room noise 2 +127814 6874 quietude , and room noise 2 +127815 6874 quietude 2 +127816 6874 , and room noise 3 +127817 6874 and room noise 2 +127818 6874 room noise 2 +127819 6874 Lan Yu is a disarmingly lived-in movie 2 +127820 6874 is a disarmingly lived-in movie 3 +127821 6874 a disarmingly lived-in movie 2 +127822 6874 disarmingly lived-in movie 2 +127823 6874 disarmingly lived-in 2 +127824 6874 lived-in 2 +127825 6875 Neil Burger here succeeded in ... making the mystery of four decades back the springboard for a more immediate mystery in the present . 4 +127826 6875 Neil Burger here succeeded in ... making the mystery of four decades back the springboard for a more immediate mystery in the present 3 +127827 6875 Neil Burger here succeeded in ... 2 +127828 6875 Neil Burger here succeeded in 3 +127829 6875 here succeeded in 2 +127830 6875 succeeded in 4 +127831 6875 making the mystery of four decades back the springboard for a more immediate mystery in the present 2 +127832 6875 the mystery of four decades back the springboard for a more immediate mystery in the present 3 +127833 6875 of four decades back the springboard for a more immediate mystery in the present 2 +127834 6875 four decades back the springboard for a more immediate mystery in the present 2 +127835 6875 four decades 2 +127836 6875 back the springboard for a more immediate mystery in the present 3 +127837 6875 back the springboard 2 +127838 6875 the springboard 2 +127839 6875 springboard 2 +127840 6875 for a more immediate mystery in the present 2 +127841 6875 a more immediate mystery in the present 2 +127842 6875 a more immediate mystery 2 +127843 6875 more immediate mystery 2 +127844 6875 more immediate 2 +127845 6876 The Komediant is a tale worth catching . 3 +127846 6876 The Komediant 2 +127847 6876 Komediant 2 +127848 6876 is a tale worth catching . 4 +127849 6876 is a tale worth catching 4 +127850 6876 a tale worth catching 3 +127851 6876 worth catching 3 +127852 6877 Even when it drags , we are forced to reflect that its visual imagination is breathtaking 3 +127853 6877 Even when it drags 2 +127854 6877 when it drags 1 +127855 6877 , we are forced to reflect that its visual imagination is breathtaking 4 +127856 6877 we are forced to reflect that its visual imagination is breathtaking 3 +127857 6877 are forced to reflect that its visual imagination is breathtaking 4 +127858 6877 forced to reflect that its visual imagination is breathtaking 4 +127859 6877 to reflect that its visual imagination is breathtaking 3 +127860 6877 reflect that its visual imagination is breathtaking 3 +127861 6877 that its visual imagination is breathtaking 4 +127862 6877 its visual imagination is breathtaking 4 +127863 6877 its visual imagination 3 +127864 6877 is breathtaking 4 +127865 6878 Feeling like a dope has rarely been more fun than it is in Nine Queens . 2 +127866 6878 Feeling like a dope 2 +127867 6878 like a dope 2 +127868 6878 a dope 2 +127869 6878 has rarely been more fun than it is in Nine Queens . 2 +127870 6878 has rarely been more fun than it is in Nine Queens 3 +127871 6878 has rarely 2 +127872 6878 been more fun than it is in Nine Queens 3 +127873 6878 been more fun 2 +127874 6878 than it is in Nine Queens 2 +127875 6878 it is in Nine Queens 2 +127876 6878 is in Nine Queens 2 +127877 6878 in Nine Queens 2 +127878 6878 Nine Queens 3 +127879 6878 Queens 2 +127880 6879 Of all the Halloween 's , this is the most visually unappealing . 0 +127881 6879 Of all the Halloween 's 2 +127882 6879 all the Halloween 's 2 +127883 6879 the Halloween 's 2 +127884 6879 Halloween 's 2 +127885 6879 , this is the most visually unappealing . 0 +127886 6879 this is the most visually unappealing . 0 +127887 6879 is the most visually unappealing . 0 +127888 6879 is the most visually unappealing 1 +127889 6879 is the most 2 +127890 6879 visually unappealing 0 +127891 6880 Funny , sexy , devastating and incurably romantic . 4 +127892 6880 Funny , sexy , devastating and incurably romantic 4 +127893 6880 Funny , sexy , 3 +127894 6880 Funny , sexy 3 +127895 6880 devastating and incurably romantic 2 +127896 6880 devastating and 2 +127897 6880 incurably romantic 3 +127898 6880 incurably 1 +127899 6881 Directors Brett Morgen and Nanette Burstein have put together a bold biographical fantasia . 4 +127900 6881 Directors Brett Morgen and Nanette Burstein 2 +127901 6881 Brett Morgen and Nanette Burstein 2 +127902 6881 Brett 2 +127903 6881 Morgen and Nanette Burstein 3 +127904 6881 Morgen 2 +127905 6881 and Nanette Burstein 2 +127906 6881 Nanette Burstein 2 +127907 6881 Nanette 2 +127908 6881 have put together a bold biographical fantasia . 4 +127909 6881 have put together a bold biographical fantasia 3 +127910 6881 put together a bold biographical fantasia 3 +127911 6881 a bold biographical fantasia 3 +127912 6881 bold biographical fantasia 3 +127913 6881 biographical fantasia 3 +127914 6881 biographical 2 +127915 6882 As if trying to grab a lump of Play-Doh , the harder that Liman tries to squeeze his story , the more details slip out between his fingers . 1 +127916 6882 As if trying to grab a lump of Play-Doh , the harder that Liman tries to squeeze his story 0 +127917 6882 if trying to grab a lump of Play-Doh , the harder that Liman tries to squeeze his story 2 +127918 6882 if trying to grab a lump of Play-Doh 2 +127919 6882 trying to grab a lump of Play-Doh 2 +127920 6882 to grab a lump of Play-Doh 2 +127921 6882 grab a lump of Play-Doh 2 +127922 6882 a lump of Play-Doh 3 +127923 6882 of Play-Doh 2 +127924 6882 Play-Doh 2 +127925 6882 , the harder that Liman tries to squeeze his story 2 +127926 6882 the harder that Liman tries to squeeze his story 2 +127927 6882 the harder 2 +127928 6882 that Liman tries to squeeze his story 2 +127929 6882 that Liman 2 +127930 6882 tries to squeeze his story 2 +127931 6882 to squeeze his story 2 +127932 6882 squeeze his story 2 +127933 6882 , the more details slip out between his fingers . 1 +127934 6882 the more details slip out between his fingers . 2 +127935 6882 the more details 2 +127936 6882 more details 2 +127937 6882 slip out between his fingers . 2 +127938 6882 slip out between his fingers 2 +127939 6882 slip out 2 +127940 6882 between his fingers 2 +127941 6882 his fingers 2 +127942 6882 fingers 2 +127943 6883 It 's consistently funny , in an irresistible junior-high way , and consistently free of any gag that would force you to give it a millisecond of thought . 3 +127944 6883 's consistently funny , in an irresistible junior-high way , and consistently free of any gag that would force you to give it a millisecond of thought . 3 +127945 6883 's consistently funny , in an irresistible junior-high way , and consistently free of any gag that would force you to give it a millisecond of thought 2 +127946 6883 's consistently funny , in an irresistible junior-high way , and consistently free 4 +127947 6883 consistently funny , in an irresistible junior-high way , and consistently free 4 +127948 6883 consistently funny , in an irresistible junior-high way , and 3 +127949 6883 consistently funny , in an irresistible junior-high way , 3 +127950 6883 , in an irresistible junior-high way , 3 +127951 6883 in an irresistible junior-high way , 3 +127952 6883 in an irresistible junior-high way 2 +127953 6883 an irresistible junior-high way 2 +127954 6883 irresistible junior-high way 2 +127955 6883 junior-high way 2 +127956 6883 junior-high 3 +127957 6883 consistently free 2 +127958 6883 of any gag that would force you to give it a millisecond of thought 2 +127959 6883 any gag that would force you to give it a millisecond of thought 1 +127960 6883 any gag 2 +127961 6883 that would force you to give it a millisecond of thought 2 +127962 6883 would force you to give it a millisecond of thought 3 +127963 6883 force you to give it a millisecond of thought 2 +127964 6883 you to give it a millisecond of thought 3 +127965 6883 to give it a millisecond of thought 2 +127966 6883 give it a millisecond of thought 2 +127967 6883 a millisecond of thought 2 +127968 6883 a millisecond 2 +127969 6883 millisecond 2 +127970 6884 I did go back and check out the last 10 minutes , but these were more repulsive than the first 30 or 40 minutes . 0 +127971 6884 I did go back and check out the last 10 minutes , but these were more repulsive than the first 30 or 40 minutes 0 +127972 6884 I did go back and check out the last 10 minutes , but 1 +127973 6884 I did go back and check out the last 10 minutes , 2 +127974 6884 I did go back and check out the last 10 minutes 2 +127975 6884 did go back and check out the last 10 minutes 2 +127976 6884 go back and check out the last 10 minutes 2 +127977 6884 check out the last 10 minutes 2 +127978 6884 out the last 10 minutes 2 +127979 6884 the last 10 minutes 2 +127980 6884 last 10 minutes 2 +127981 6884 these were more repulsive than the first 30 or 40 minutes 1 +127982 6884 were more repulsive than the first 30 or 40 minutes 0 +127983 6884 were more repulsive 1 +127984 6884 more repulsive 0 +127985 6884 than the first 30 or 40 minutes 3 +127986 6884 the first 30 or 40 minutes 2 +127987 6884 first 30 or 40 minutes 2 +127988 6884 30 or 40 minutes 2 +127989 6884 30 or 40 2 +127990 6884 30 or 2 +127991 6885 You can drive right by it without noticing anything special , save for a few comic turns , intended and otherwise . 1 +127992 6885 can drive right by it without noticing anything special , save for a few comic turns , intended and otherwise . 1 +127993 6885 can drive right by it without noticing anything special , save for a few comic turns , intended and otherwise 1 +127994 6885 drive right by it without noticing anything special , save for a few comic turns , intended and otherwise 2 +127995 6885 drive right by it 2 +127996 6885 right by it 2 +127997 6885 without noticing anything special , save for a few comic turns , intended and otherwise 2 +127998 6885 noticing anything special , save for a few comic turns , intended and otherwise 2 +127999 6885 anything special , save for a few comic turns , intended and otherwise 2 +128000 6885 anything special , save for a few comic turns , 1 +128001 6885 anything special , save for a few comic turns 2 +128002 6885 anything special , 2 +128003 6885 anything special 2 +128004 6885 save for a few comic turns 2 +128005 6885 for a few comic turns 3 +128006 6885 a few comic turns 2 +128007 6885 few comic turns 2 +128008 6885 comic turns 2 +128009 6885 intended and otherwise 2 +128010 6885 intended and 2 +128011 6886 -LRB- MacDowell -RRB- ventures beyond her abilities several times here and reveals how bad an actress she is . 0 +128012 6886 -LRB- MacDowell -RRB- ventures beyond her abilities 3 +128013 6886 -LRB- MacDowell -RRB- ventures 2 +128014 6886 -LRB- MacDowell -RRB- 2 +128015 6886 MacDowell -RRB- 2 +128016 6886 ventures 2 +128017 6886 beyond her abilities 2 +128018 6886 her abilities 2 +128019 6886 abilities 2 +128020 6886 several times here and reveals how bad an actress she is . 0 +128021 6886 several times here and reveals how bad an actress she is 0 +128022 6886 several times here and 2 +128023 6886 several times here 2 +128024 6886 several times 2 +128025 6886 reveals how bad an actress she is 0 +128026 6886 how bad an actress she is 0 +128027 6886 an actress she is 3 +128028 6886 an actress she 2 +128029 6887 The question hanging over The Time Machine is not , as the main character suggests , ` what if ? ' 2 +128030 6887 The question hanging over The Time Machine 2 +128031 6887 hanging over The Time Machine 2 +128032 6887 over The Time Machine 2 +128033 6887 The Time Machine 2 +128034 6887 is not , as the main character suggests , ` what if ? ' 2 +128035 6887 is not , as the main character suggests , ` what if ? 2 +128036 6887 is not , as the main character suggests , ` what if 2 +128037 6887 , as the main character suggests , ` what if 2 +128038 6887 as the main character suggests , ` what if 3 +128039 6887 the main character suggests , ` what if 2 +128040 6887 the main character 2 +128041 6887 suggests , ` what if 2 +128042 6887 suggests , ` 2 +128043 6887 suggests , 2 +128044 6888 More good than great but Freeman and Judd make it work . 3 +128045 6888 More good than great 3 +128046 6888 good than great 3 +128047 6888 than great 2 +128048 6888 but Freeman and Judd make it work . 2 +128049 6888 but Freeman and Judd make it work 2 +128050 6888 Freeman and Judd make it work 3 +128051 6888 make it work 2 +128052 6888 it work 2 +128053 6889 This is a story that zings all the way through with originality , humour and pathos . 4 +128054 6889 is a story that zings all the way through with originality , humour and pathos . 3 +128055 6889 is a story that zings all the way through with originality , humour and pathos 4 +128056 6889 a story that zings all the way through with originality , humour and pathos 4 +128057 6889 that zings all the way through with originality , humour and pathos 4 +128058 6889 zings all the way through with originality , humour and pathos 4 +128059 6889 zings all the way 4 +128060 6889 through with originality , humour and pathos 3 +128061 6889 with originality , humour and pathos 3 +128062 6889 originality , humour and pathos 3 +128063 6889 , humour and pathos 2 +128064 6889 humour and pathos 3 +128065 6890 When in doubt , the film ratchets up the stirring soundtrack , throws in a fish-out-of-water gag and lets the cliched dialogue rip . 2 +128066 6890 When in doubt 2 +128067 6890 in doubt 3 +128068 6890 , the film ratchets up the stirring soundtrack , throws in a fish-out-of-water gag and lets the cliched dialogue rip . 0 +128069 6890 the film ratchets up the stirring soundtrack , throws in a fish-out-of-water gag and lets the cliched dialogue rip . 2 +128070 6890 ratchets up the stirring soundtrack , throws in a fish-out-of-water gag and lets the cliched dialogue rip . 2 +128071 6890 ratchets up the stirring soundtrack , throws in a fish-out-of-water gag and lets the cliched dialogue rip 1 +128072 6890 ratchets up the stirring soundtrack , throws in a fish-out-of-water gag and 2 +128073 6890 ratchets up the stirring soundtrack , throws in a fish-out-of-water gag 3 +128074 6890 ratchets up the stirring soundtrack , 3 +128075 6890 ratchets up the stirring soundtrack 2 +128076 6890 ratchets up 2 +128077 6890 ratchets 3 +128078 6890 the stirring soundtrack 3 +128079 6890 stirring soundtrack 2 +128080 6890 throws in a fish-out-of-water gag 1 +128081 6890 in a fish-out-of-water gag 2 +128082 6890 a fish-out-of-water gag 1 +128083 6890 fish-out-of-water gag 1 +128084 6890 lets the cliched dialogue rip 1 +128085 6890 the cliched dialogue rip 1 +128086 6890 cliched dialogue rip 1 +128087 6890 dialogue rip 2 +128088 6890 rip 2 +128089 6891 A movie that 's about as overbearing and over-the-top as the family it depicts . 1 +128090 6891 A movie that 's about as overbearing and over-the-top as the family it 1 +128091 6891 that 's about as overbearing and over-the-top as the family it 0 +128092 6891 's about as overbearing and over-the-top as the family it 1 +128093 6891 's about as overbearing and over-the-top as the family 1 +128094 6891 about as overbearing and over-the-top as the family 0 +128095 6891 as overbearing and over-the-top as the family 1 +128096 6891 overbearing and over-the-top as the family 1 +128097 6891 overbearing and over-the-top 1 +128098 6891 overbearing and 1 +128099 6891 as the family 2 +128100 6891 the family 2 +128101 6891 depicts . 2 +128102 6892 I liked it because it was so endlessly , grotesquely , inventive . 3 +128103 6892 liked it because it was so endlessly , grotesquely , inventive . 3 +128104 6892 liked it because it was so endlessly , grotesquely , inventive 3 +128105 6892 because it was so endlessly , grotesquely , inventive 3 +128106 6892 it was so endlessly , grotesquely , inventive 3 +128107 6892 was so endlessly , grotesquely , inventive 3 +128108 6892 was so endlessly , grotesquely , 1 +128109 6892 was so endlessly , grotesquely 0 +128110 6892 was so endlessly , 2 +128111 6892 was so endlessly 1 +128112 6892 so endlessly 2 +128113 6892 grotesquely 0 +128114 6893 This story of unrequited love does n't sustain interest beyond the first half-hour . 1 +128115 6893 This story of unrequited love 2 +128116 6893 of unrequited love 2 +128117 6893 unrequited love 2 +128118 6893 unrequited 2 +128119 6893 does n't sustain interest beyond the first half-hour . 0 +128120 6893 does n't sustain interest beyond the first half-hour 1 +128121 6893 sustain interest beyond the first half-hour 2 +128122 6893 beyond the first half-hour 2 +128123 6893 the first half-hour 2 +128124 6893 first half-hour 2 +128125 6894 The smash 'em - up , crash 'em - up , shoot 'em - up ending comes out of nowhere substituting mayhem for suspense . 2 +128126 6894 The smash 'em - up , crash 'em - up , shoot 'em - up ending 2 +128127 6894 smash 'em - up , crash 'em - up , shoot 'em - up ending 2 +128128 6894 smash 'em - up , crash 'em - up , shoot 'em - 2 +128129 6894 smash 'em - up , crash 'em - up , shoot 'em 2 +128130 6894 smash 'em - up , crash 'em - up , 2 +128131 6894 smash 'em - up , crash 'em - up 2 +128132 6894 smash 'em - up , 1 +128133 6894 smash 'em - up 2 +128134 6894 smash 'em - 3 +128135 6894 smash 'em 2 +128136 6894 crash 'em - up 2 +128137 6894 crash 'em - 3 +128138 6894 crash 'em 1 +128139 6894 shoot 'em 2 +128140 6894 up ending 2 +128141 6894 comes out of nowhere substituting mayhem for suspense . 2 +128142 6894 comes out of nowhere substituting mayhem for suspense 2 +128143 6894 of nowhere substituting mayhem for suspense 2 +128144 6894 nowhere substituting mayhem for suspense 2 +128145 6894 substituting mayhem for suspense 2 +128146 6894 substituting mayhem 2 +128147 6894 substituting 3 +128148 6895 Suffers from unlikable characters and a self-conscious sense of its own quirky hipness . 0 +128149 6895 Suffers from unlikable characters and a self-conscious sense of its own quirky hipness 1 +128150 6895 Suffers from unlikable characters and a self-conscious sense 1 +128151 6895 from unlikable characters and a self-conscious sense 1 +128152 6895 unlikable characters and a self-conscious sense 1 +128153 6895 unlikable characters and 1 +128154 6895 a self-conscious sense 2 +128155 6895 self-conscious sense 2 +128156 6895 of its own quirky hipness 2 +128157 6895 its own quirky hipness 3 +128158 6895 own quirky hipness 3 +128159 6895 quirky hipness 2 +128160 6896 A fragile framework upon which to hang broad , mildly fleshed-out characters that seem to have been conjured up only 10 minutes prior to filming . 1 +128161 6896 A fragile framework upon which to hang broad , mildly fleshed-out characters that seem to have been conjured up only 10 minutes prior to filming 1 +128162 6896 A fragile framework 1 +128163 6896 fragile framework 2 +128164 6896 upon which to hang broad , mildly fleshed-out characters that seem to have been conjured up only 10 minutes prior to filming 1 +128165 6896 which to hang broad , mildly fleshed-out characters that seem to have been conjured up only 10 minutes prior to filming 1 +128166 6896 to hang broad , mildly fleshed-out characters that seem to have been conjured up only 10 minutes prior to filming 1 +128167 6896 hang broad , mildly fleshed-out characters that seem to have been conjured up only 10 minutes prior to filming 1 +128168 6896 broad , mildly fleshed-out characters that seem to have been conjured up only 10 minutes prior to filming 1 +128169 6896 broad , mildly fleshed-out characters 2 +128170 6896 , mildly fleshed-out characters 2 +128171 6896 mildly fleshed-out characters 2 +128172 6896 mildly fleshed-out 2 +128173 6896 that seem to have been conjured up only 10 minutes prior to filming 1 +128174 6896 seem to have been conjured up only 10 minutes prior to filming 1 +128175 6896 to have been conjured up only 10 minutes prior to filming 1 +128176 6896 have been conjured up only 10 minutes prior to filming 1 +128177 6896 been conjured up only 10 minutes prior to filming 1 +128178 6896 conjured up only 10 minutes prior to filming 1 +128179 6896 only 10 minutes prior to filming 2 +128180 6896 only 10 minutes 2 +128181 6896 prior to filming 2 +128182 6896 prior 2 +128183 6896 to filming 2 +128184 6897 Offers a guilt-free trip into feel-good territory . 4 +128185 6897 Offers a guilt-free trip into feel-good territory 4 +128186 6897 Offers a guilt-free trip 3 +128187 6897 a guilt-free trip 3 +128188 6897 guilt-free trip 3 +128189 6897 guilt-free 3 +128190 6897 into feel-good territory 3 +128191 6897 feel-good territory 3 +128192 6898 One of the most important and exhilarating forms of animated filmmaking since old Walt doodled Steamboat Willie . 4 +128193 6898 One of the most important and exhilarating forms of animated filmmaking since old Walt 2 +128194 6898 of the most important and exhilarating forms of animated filmmaking since old Walt 3 +128195 6898 the most important and exhilarating forms of animated filmmaking since old Walt 3 +128196 6898 the most important and exhilarating forms 3 +128197 6898 most important and exhilarating forms 3 +128198 6898 most important and exhilarating 4 +128199 6898 important and exhilarating 4 +128200 6898 important and 2 +128201 6898 of animated filmmaking since old Walt 3 +128202 6898 animated filmmaking since old Walt 3 +128203 6898 animated filmmaking 2 +128204 6898 since old Walt 2 +128205 6898 old Walt 2 +128206 6898 doodled Steamboat Willie . 2 +128207 6898 doodled Steamboat Willie 2 +128208 6898 doodled 2 +128209 6898 Steamboat Willie 2 +128210 6898 Steamboat 2 +128211 6899 While not quite `` Shrek '' or `` Monsters , Inc. '' , it 's not too bad . 3 +128212 6899 While not quite `` Shrek '' or `` Monsters , Inc. '' 2 +128213 6899 not quite `` Shrek '' or `` Monsters , Inc. '' 2 +128214 6899 `` Shrek '' or `` Monsters , Inc. '' 2 +128215 6899 Shrek '' or `` Monsters , Inc. '' 2 +128216 6899 Shrek '' or `` Monsters , Inc. 2 +128217 6899 Shrek '' or `` 2 +128218 6899 Shrek '' or 2 +128219 6899 Shrek '' 2 +128220 6899 Monsters , Inc. 2 +128221 6899 , Inc. 2 +128222 6899 , it 's not too bad . 3 +128223 6899 it 's not too bad . 2 +128224 6899 's not too bad . 2 +128225 6899 's not too bad 3 +128226 6900 In all fairness , I must report that the children of varying ages in my audience never coughed , fidgeted or romped up and down the aisles for bathroom breaks . 3 +128227 6900 In all fairness 3 +128228 6900 all fairness 2 +128229 6900 fairness 2 +128230 6900 , I must report that the children of varying ages in my audience never coughed , fidgeted or romped up and down the aisles for bathroom breaks . 3 +128231 6900 I must report that the children of varying ages in my audience never coughed , fidgeted or romped up and down the aisles for bathroom breaks . 3 +128232 6900 must report that the children of varying ages in my audience never coughed , fidgeted or romped up and down the aisles for bathroom breaks . 2 +128233 6900 must report that the children of varying ages in my audience never coughed , fidgeted or romped up and down the aisles for bathroom breaks 3 +128234 6900 report that the children of varying ages in my audience never coughed , fidgeted or romped up and down the aisles for bathroom breaks 4 +128235 6900 that the children of varying ages in my audience never coughed , fidgeted or romped up and down the aisles for bathroom breaks 3 +128236 6900 the children of varying ages in my audience never coughed , fidgeted or romped up and down the aisles for bathroom breaks 3 +128237 6900 the children of varying ages in my audience 2 +128238 6900 of varying ages in my audience 2 +128239 6900 varying ages in my audience 2 +128240 6900 varying ages 2 +128241 6900 varying 2 +128242 6900 in my audience 2 +128243 6900 my audience 2 +128244 6900 never coughed , fidgeted or romped up and down the aisles for bathroom breaks 3 +128245 6900 coughed , fidgeted or romped up and down the aisles for bathroom breaks 2 +128246 6900 coughed , fidgeted or 2 +128247 6900 coughed , fidgeted 2 +128248 6900 coughed , 2 +128249 6900 coughed 2 +128250 6900 fidgeted 2 +128251 6900 romped up and down the aisles for bathroom breaks 0 +128252 6900 romped up and down 2 +128253 6900 romped 2 +128254 6900 up and down 2 +128255 6900 up and 2 +128256 6900 the aisles for bathroom breaks 2 +128257 6900 the aisles 2 +128258 6900 aisles 2 +128259 6900 for bathroom breaks 1 +128260 6900 bathroom breaks 2 +128261 6900 bathroom 2 +128262 6901 ou 've got to love a Disney pic with as little cleavage as this one has , and a heroine as feisty and principled as Jane . 3 +128263 6901 ou 2 +128264 6901 've got to love a Disney pic with as little cleavage as this one has , and a heroine as feisty and principled as Jane . 4 +128265 6901 've got to love a Disney pic with as little cleavage as this one has , and a heroine as feisty and principled as Jane 3 +128266 6901 got to love a Disney pic with as little cleavage as this one has , and a heroine as feisty and principled as Jane 4 +128267 6901 to love a Disney pic with as little cleavage as this one has , and a heroine as feisty and principled as Jane 2 +128268 6901 love a Disney pic with as little cleavage as this one has , and a heroine as feisty and principled as Jane 4 +128269 6901 love a Disney pic with as little cleavage as this one has , and 3 +128270 6901 love a Disney pic with as little cleavage as this one has , 3 +128271 6901 love a Disney pic with as little cleavage as this one has 3 +128272 6901 love a Disney pic with as little cleavage 2 +128273 6901 love a Disney pic 3 +128274 6901 a Disney pic 3 +128275 6901 Disney pic 2 +128276 6901 with as little cleavage 2 +128277 6901 as little cleavage 3 +128278 6901 little cleavage 1 +128279 6901 cleavage 2 +128280 6901 as this one has 2 +128281 6901 this one has 2 +128282 6901 a heroine as feisty and principled as Jane 3 +128283 6901 a heroine as feisty and 3 +128284 6901 a heroine as feisty 2 +128285 6901 as feisty 2 +128286 6901 principled as Jane 2 +128287 6901 principled 3 +128288 6901 as Jane 2 +128289 6902 As simple and innocent a movie as you can imagine . 3 +128290 6902 As simple and innocent 2 +128291 6902 simple and innocent 3 +128292 6902 a movie as you can imagine . 2 +128293 6902 a movie as you 2 +128294 6902 as you 2 +128295 6902 can imagine . 2 +128296 6903 I have a confession to make : I did n't particularly like E.T. the first time I saw it as a young boy . 1 +128297 6903 I have a confession to make : I did n't particularly like E.T. the first time I saw it as a young boy 1 +128298 6903 I have a confession to make : 2 +128299 6903 I have a confession to make 2 +128300 6903 have a confession to make 2 +128301 6903 a confession to make 2 +128302 6903 confession to make 2 +128303 6903 confession 2 +128304 6903 I did n't particularly like E.T. the first time I saw it as a young boy 1 +128305 6903 did n't particularly like E.T. the first time I saw it as a young boy 1 +128306 6903 did n't particularly 2 +128307 6903 like E.T. the first time I saw it as a young boy 4 +128308 6903 like E.T. 2 +128309 6903 the first time I saw it as a young boy 2 +128310 6903 I saw it as a young boy 3 +128311 6903 saw it as a young boy 2 +128312 6903 as a young boy 2 +128313 6903 a young boy 3 +128314 6903 young boy 2 +128315 6904 Put it somewhere between Sling Blade and South of Heaven , West of Hell in the pantheon of Billy Bob 's body of work . 2 +128316 6904 Put it somewhere between Sling Blade and South of Heaven , West of Hell in the pantheon of Billy Bob 's body of work 2 +128317 6904 Put it somewhere between Sling Blade and South of Heaven , West of Hell 2 +128318 6904 somewhere between Sling Blade and South of Heaven , West of Hell 2 +128319 6904 between Sling Blade and South of Heaven , West of Hell 2 +128320 6904 Sling Blade and South of Heaven , West of Hell 3 +128321 6904 Sling Blade and South 2 +128322 6904 Sling 2 +128323 6904 Blade and South 2 +128324 6904 Blade and 3 +128325 6904 of Heaven , West of Hell 2 +128326 6904 Heaven , West of Hell 2 +128327 6904 Heaven , West 2 +128328 6904 , West 2 +128329 6904 in the pantheon of Billy Bob 's body of work 2 +128330 6904 the pantheon of Billy Bob 's body of work 2 +128331 6904 of Billy Bob 's body of work 2 +128332 6904 Billy Bob 's body of work 2 +128333 6904 Billy Bob 's body 2 +128334 6904 Billy Bob 's 2 +128335 6904 Bob 's 2 +128336 6904 Bob 2 +128337 6905 The Hanukkah spirit seems fried in pork . 1 +128338 6905 The Hanukkah spirit 2 +128339 6905 Hanukkah spirit 2 +128340 6905 Hanukkah 3 +128341 6905 seems fried in pork . 2 +128342 6905 seems fried in pork 2 +128343 6905 fried in pork 3 +128344 6905 fried 2 +128345 6905 in pork 2 +128346 6906 Eventually , they will have a showdown , but , by then , your senses are as mushy as peas and you do n't care who fires the winning shot . 0 +128347 6906 , they will have a showdown , but , by then , your senses are as mushy as peas and you do n't care who fires the winning shot . 2 +128348 6906 they will have a showdown , but , by then , your senses are as mushy as peas and you do n't care who fires the winning shot . 1 +128349 6906 they will have a showdown , but , by then , your senses are as mushy as peas and you do n't care who fires the winning shot 1 +128350 6906 they will have a showdown , but , by then , your senses are as mushy as peas and 1 +128351 6906 they will have a showdown , but , by then , your senses are as mushy as peas 1 +128352 6906 they will have a showdown , but , 3 +128353 6906 they will have a showdown , but 2 +128354 6906 they will have a showdown , 2 +128355 6906 they will have a showdown 3 +128356 6906 will have a showdown 3 +128357 6906 have a showdown 2 +128358 6906 a showdown 3 +128359 6906 by then , your senses are as mushy as peas 3 +128360 6906 by then 3 +128361 6906 , your senses are as mushy as peas 1 +128362 6906 your senses are as mushy as peas 1 +128363 6906 are as mushy as peas 1 +128364 6906 as mushy as peas 1 +128365 6906 mushy as peas 1 +128366 6906 as peas 2 +128367 6906 peas 2 +128368 6906 you do n't care who fires the winning shot 1 +128369 6906 do n't care who fires the winning shot 2 +128370 6906 care who fires the winning shot 2 +128371 6906 who fires the winning shot 2 +128372 6906 fires the winning shot 3 +128373 6906 the winning shot 2 +128374 6906 winning shot 4 +128375 6907 Witty dialog between realistic characters showing honest emotions . 3 +128376 6907 Witty dialog between realistic characters 3 +128377 6907 dialog between realistic characters 3 +128378 6907 between realistic characters 3 +128379 6907 realistic characters 3 +128380 6907 showing honest emotions . 3 +128381 6907 showing honest emotions 3 +128382 6907 honest emotions 3 +128383 6908 13 Conversations may be a bit too enigmatic and overly ambitious to be fully successful , but Sprecher and her screenwriting partner and sister , Karen Sprecher , do n't seem ever to run out of ideas . 2 +128384 6908 13 Conversations may be a bit too enigmatic and overly ambitious to be fully successful , but Sprecher and her screenwriting partner and sister , Karen Sprecher , do n't seem ever to run out of ideas 3 +128385 6908 13 Conversations may be a bit too enigmatic and overly ambitious to be fully successful , but 1 +128386 6908 13 Conversations may be a bit too enigmatic and overly ambitious to be fully successful , 1 +128387 6908 13 Conversations may be a bit too enigmatic and overly ambitious to be fully successful 1 +128388 6908 13 Conversations 2 +128389 6908 may be a bit too enigmatic and overly ambitious to be fully successful 2 +128390 6908 be a bit too enigmatic and overly ambitious to be fully successful 1 +128391 6908 a bit too enigmatic and overly ambitious to be fully successful 1 +128392 6908 a bit too enigmatic and 1 +128393 6908 a bit too enigmatic 1 +128394 6908 too enigmatic 1 +128395 6908 overly ambitious to be fully successful 1 +128396 6908 ambitious to be fully successful 3 +128397 6908 to be fully successful 2 +128398 6908 be fully successful 2 +128399 6908 fully successful 4 +128400 6908 Sprecher and her screenwriting partner and sister , Karen Sprecher , do n't seem ever to run out of ideas 3 +128401 6908 Sprecher and her screenwriting partner and sister , Karen Sprecher , 2 +128402 6908 Sprecher and her screenwriting partner and sister , Karen Sprecher 2 +128403 6908 Sprecher and her screenwriting partner and sister , 2 +128404 6908 Sprecher and her screenwriting partner and sister 2 +128405 6908 Sprecher and 2 +128406 6908 Sprecher 2 +128407 6908 her screenwriting partner and sister 2 +128408 6908 screenwriting partner and sister 2 +128409 6908 partner and sister 2 +128410 6908 partner and 2 +128411 6908 Karen Sprecher 2 +128412 6908 do n't seem ever to run out of ideas 3 +128413 6908 seem ever to run out of ideas 2 +128414 6908 seem ever 2 +128415 6908 to run out of ideas 2 +128416 6908 run out of ideas 1 +128417 6909 The film is so busy making reference to other films and trying to be other films that it fails to have a heart , mind or humor of its own . 0 +128418 6909 is so busy making reference to other films and trying to be other films that it fails to have a heart , mind or humor of its own . 0 +128419 6909 is so busy making reference to other films and trying to be other films that it fails to have a heart , mind or humor of its own 0 +128420 6909 is so busy making reference to other films and trying to be other films 1 +128421 6909 is so busy 2 +128422 6909 so busy 2 +128423 6909 making reference to other films and trying to be other films 1 +128424 6909 making reference to other films and 2 +128425 6909 making reference to other films 2 +128426 6909 making reference 2 +128427 6909 reference 2 +128428 6909 trying to be other films 1 +128429 6909 to be other films 2 +128430 6909 be other films 2 +128431 6909 that it fails to have a heart , mind or humor of its own 1 +128432 6909 it fails to have a heart , mind or humor of its own 0 +128433 6909 fails to have a heart , mind or humor of its own 3 +128434 6909 to have a heart , mind or humor of its own 2 +128435 6909 have a heart , mind or humor of its own 2 +128436 6909 a heart , mind or humor of its own 3 +128437 6909 a heart , mind or humor 3 +128438 6909 heart , mind or humor 2 +128439 6909 , mind or humor 2 +128440 6909 mind or humor 2 +128441 6909 mind or 2 +128442 6910 Viewers of Barney 's crushingly self-indulgent spectacle will see nothing in it to match the ordeal of sitting through it . 1 +128443 6910 Viewers of Barney 's crushingly self-indulgent spectacle 1 +128444 6910 of Barney 's crushingly self-indulgent spectacle 3 +128445 6910 Barney 's crushingly self-indulgent spectacle 1 +128446 6910 crushingly self-indulgent spectacle 1 +128447 6910 crushingly self-indulgent 2 +128448 6910 will see nothing in it to match the ordeal of sitting through it . 0 +128449 6910 will see nothing in it to match the ordeal of sitting through it 0 +128450 6910 see nothing in it to match the ordeal of sitting through it 0 +128451 6910 see nothing in it 1 +128452 6910 to match the ordeal of sitting through it 1 +128453 6910 match the ordeal of sitting through it 1 +128454 6910 the ordeal of sitting through it 1 +128455 6910 the ordeal 2 +128456 6911 In many ways , reminiscent of 1992 's Unforgiven which also utilized the scintillating force of its actors to draw out the menace of its sparse dialogue . 2 +128457 6911 In many ways 2 +128458 6911 , reminiscent of 1992 's Unforgiven which also utilized the scintillating force of its actors to draw out the menace of its sparse dialogue . 3 +128459 6911 reminiscent of 1992 's Unforgiven which also utilized the scintillating force of its actors to draw out the menace of its sparse dialogue . 3 +128460 6911 reminiscent of 1992 2 +128461 6911 of 1992 2 +128462 6911 1992 2 +128463 6911 's Unforgiven which also utilized the scintillating force of its actors to draw out the menace of its sparse dialogue . 3 +128464 6911 's Unforgiven which also utilized the scintillating force of its actors to draw out the menace of its sparse dialogue 3 +128465 6911 Unforgiven which also utilized the scintillating force of its actors to draw out the menace of its sparse dialogue 2 +128466 6911 Unforgiven 1 +128467 6911 which also utilized the scintillating force of its actors to draw out the menace of its sparse dialogue 2 +128468 6911 also utilized the scintillating force of its actors to draw out the menace of its sparse dialogue 4 +128469 6911 utilized the scintillating force of its actors to draw out the menace of its sparse dialogue 3 +128470 6911 utilized 2 +128471 6911 the scintillating force of its actors to draw out the menace of its sparse dialogue 2 +128472 6911 the scintillating force 3 +128473 6911 scintillating force 3 +128474 6911 scintillating 4 +128475 6911 of its actors to draw out the menace of its sparse dialogue 2 +128476 6911 its actors to draw out the menace of its sparse dialogue 1 +128477 6911 actors to draw out the menace of its sparse dialogue 1 +128478 6911 to draw out the menace of its sparse dialogue 2 +128479 6911 draw out the menace of its sparse dialogue 1 +128480 6911 draw out 2 +128481 6911 the menace of its sparse dialogue 1 +128482 6911 the menace 2 +128483 6911 of its sparse dialogue 2 +128484 6911 its sparse dialogue 1 +128485 6911 sparse dialogue 2 +128486 6912 I admire the closing scenes of the film , which seem to ask whether our civilization offers a cure for Vincent 's complaint . 3 +128487 6912 admire the closing scenes of the film , which seem to ask whether our civilization offers a cure for Vincent 's complaint . 4 +128488 6912 admire the closing scenes of the film , which seem to ask whether our civilization offers a cure for Vincent 's complaint 3 +128489 6912 the closing scenes of the film , which seem to ask whether our civilization offers a cure for Vincent 's complaint 2 +128490 6912 the closing scenes 2 +128491 6912 closing scenes 2 +128492 6912 of the film , which seem to ask whether our civilization offers a cure for Vincent 's complaint 2 +128493 6912 the film , which seem to ask whether our civilization offers a cure for Vincent 's complaint 2 +128494 6912 which seem to ask whether our civilization offers a cure for Vincent 's complaint 2 +128495 6912 seem to ask whether our civilization offers a cure for Vincent 's complaint 2 +128496 6912 to ask whether our civilization offers a cure for Vincent 's complaint 2 +128497 6912 ask whether our civilization offers a cure for Vincent 's complaint 2 +128498 6912 whether our civilization offers a cure for Vincent 's complaint 2 +128499 6912 our civilization offers a cure for Vincent 's complaint 2 +128500 6912 our civilization 2 +128501 6912 civilization 2 +128502 6912 offers a cure for Vincent 's complaint 2 +128503 6912 a cure for Vincent 's complaint 2 +128504 6912 a cure 2 +128505 6912 cure 2 +128506 6912 for Vincent 's complaint 2 +128507 6912 Vincent 's complaint 2 +128508 6912 Vincent 's 2 +128509 6913 Berry 's saucy , full-bodied performance gives this aging series a much needed kick , making `` Die Another Day '' one of the most entertaining Bonds in years 4 +128510 6913 Berry 's saucy , full-bodied performance 3 +128511 6913 Berry 's saucy , 3 +128512 6913 Berry 's saucy 3 +128513 6913 Berry 's 2 +128514 6913 full-bodied performance 3 +128515 6913 gives this aging series a much needed kick , making `` Die Another Day '' one of the most entertaining Bonds in years 3 +128516 6913 gives this aging series 2 +128517 6913 this aging series 1 +128518 6913 aging series 1 +128519 6913 a much needed kick , making `` Die Another Day '' one of the most entertaining Bonds in years 4 +128520 6913 a much needed kick , 2 +128521 6913 a much needed kick 2 +128522 6913 much needed kick 2 +128523 6913 making `` Die Another Day '' one of the most entertaining Bonds in years 3 +128524 6913 `` Die Another Day '' one of the most entertaining Bonds in years 4 +128525 6913 `` Die Another Day '' 2 +128526 6913 Die Another Day '' 2 +128527 6913 one of the most entertaining Bonds in years 4 +128528 6913 of the most entertaining Bonds in years 4 +128529 6913 the most entertaining Bonds in years 4 +128530 6913 the most entertaining Bonds 3 +128531 6913 most entertaining Bonds 3 +128532 6914 The film 's needlessly opaque intro takes its doe-eyed Crudup out of pre-9 \/ 11 New York and onto a cross-country road trip of the Homeric kind . 1 +128533 6914 The film 's needlessly opaque intro 1 +128534 6914 needlessly opaque intro 1 +128535 6914 opaque intro 2 +128536 6914 takes its doe-eyed Crudup out of pre-9 \/ 11 New York and onto a cross-country road trip of the Homeric kind . 2 +128537 6914 takes its doe-eyed Crudup out of pre-9 \/ 11 New York and onto a cross-country road trip of the Homeric kind 2 +128538 6914 takes its doe-eyed Crudup out 2 +128539 6914 takes its doe-eyed Crudup 2 +128540 6914 its doe-eyed Crudup 2 +128541 6914 doe-eyed Crudup 2 +128542 6914 doe-eyed 2 +128543 6914 of pre-9 \/ 11 New York and onto a cross-country road trip of the Homeric kind 3 +128544 6914 of pre-9 \/ 11 New York and 3 +128545 6914 of pre-9 \/ 11 New York 2 +128546 6914 pre-9 \/ 11 New York 2 +128547 6914 pre-9 2 +128548 6914 \/ 11 New York 2 +128549 6914 11 New York 2 +128550 6914 onto a cross-country road trip of the Homeric kind 3 +128551 6914 a cross-country road trip of the Homeric kind 2 +128552 6914 a cross-country road trip 2 +128553 6914 cross-country road trip 3 +128554 6914 of the Homeric kind 2 +128555 6914 the Homeric kind 2 +128556 6914 Homeric kind 2 +128557 6914 Homeric 2 +128558 6915 Boomers and their kids will have a Barrie good time . 3 +128559 6915 Boomers and their kids 2 +128560 6915 Boomers and 2 +128561 6915 will have a Barrie good time . 2 +128562 6915 will have a Barrie good time 3 +128563 6915 have a Barrie good time 4 +128564 6915 a Barrie good time 3 +128565 6915 Barrie good time 3 +128566 6915 Barrie 2 +128567 6916 Flamboyant in some movies and artfully restrained in others , 65-year-old Jack Nicholson could be looking at his 12th Oscar nomination by proving that he 's now , more than ever , choosing his roles with the precision of the insurance actuary . 4 +128568 6916 Flamboyant in some movies and artfully restrained in others , 65-year-old Jack Nicholson 3 +128569 6916 in some movies and artfully restrained in others , 65-year-old Jack Nicholson 2 +128570 6916 some movies and artfully restrained in others , 65-year-old Jack Nicholson 3 +128571 6916 some movies and 2 +128572 6916 artfully restrained in others , 65-year-old Jack Nicholson 3 +128573 6916 artfully restrained in others 2 +128574 6916 restrained in others 2 +128575 6916 restrained 2 +128576 6916 , 65-year-old Jack Nicholson 2 +128577 6916 65-year-old Jack Nicholson 2 +128578 6916 65-year-old 2 +128579 6916 could be looking at his 12th Oscar nomination by proving that he 's now , more than ever , choosing his roles with the precision of the insurance actuary . 3 +128580 6916 could be looking at his 12th Oscar nomination by proving that he 's now , more than ever , choosing his roles with the precision of the insurance actuary 4 +128581 6916 be looking at his 12th Oscar nomination by proving that he 's now , more than ever , choosing his roles with the precision of the insurance actuary 4 +128582 6916 looking at his 12th Oscar nomination by proving that he 's now , more than ever , choosing his roles with the precision of the insurance actuary 3 +128583 6916 looking at his 12th Oscar nomination 3 +128584 6916 at his 12th Oscar nomination 3 +128585 6916 his 12th Oscar nomination 2 +128586 6916 12th Oscar nomination 4 +128587 6916 12th 2 +128588 6916 by proving that he 's now , more than ever , choosing his roles with the precision of the insurance actuary 3 +128589 6916 proving that he 's now , more than ever , choosing his roles with the precision of the insurance actuary 3 +128590 6916 that he 's now , more than ever , choosing his roles with the precision of the insurance actuary 3 +128591 6916 he 's now , more than ever , choosing his roles with the precision of the insurance actuary 3 +128592 6916 's now , more than ever , choosing his roles with the precision of the insurance actuary 3 +128593 6916 's now , more than ever , 2 +128594 6916 's now , more than ever 2 +128595 6916 's now , 2 +128596 6916 's now 2 +128597 6916 more than ever 2 +128598 6916 choosing his roles with the precision of the insurance actuary 3 +128599 6916 choosing his roles 2 +128600 6916 choosing 2 +128601 6916 his roles 2 +128602 6916 with the precision of the insurance actuary 3 +128603 6916 the precision of the insurance actuary 3 +128604 6916 the precision 2 +128605 6916 of the insurance actuary 3 +128606 6916 the insurance actuary 2 +128607 6916 insurance actuary 2 +128608 6916 actuary 2 +128609 6917 Billy Crystal and Robert De Niro sleepwalk through vulgarities in a sequel you can refuse . 1 +128610 6917 Billy Crystal and Robert De Niro 2 +128611 6917 Billy Crystal and 2 +128612 6917 Billy Crystal 2 +128613 6917 sleepwalk through vulgarities in a sequel you can refuse . 0 +128614 6917 sleepwalk through vulgarities in a sequel you can refuse 1 +128615 6917 sleepwalk 2 +128616 6917 through vulgarities in a sequel you can refuse 1 +128617 6917 vulgarities in a sequel you can refuse 1 +128618 6917 vulgarities 1 +128619 6917 in a sequel you can refuse 2 +128620 6917 a sequel you can refuse 1 +128621 6917 you can refuse 2 +128622 6917 can refuse 2 +128623 6918 Its rawness and vitality give it considerable punch . 3 +128624 6918 Its rawness and vitality 3 +128625 6918 Its rawness and 2 +128626 6918 Its rawness 2 +128627 6918 rawness 2 +128628 6918 give it considerable punch . 4 +128629 6918 give it considerable punch 3 +128630 6918 considerable punch 3 +128631 6919 It 's the kind of under-inspired , overblown enterprise that gives Hollywood sequels a bad name . 0 +128632 6919 's the kind of under-inspired , overblown enterprise that gives Hollywood sequels a bad name . 0 +128633 6919 's the kind of under-inspired , overblown enterprise that gives Hollywood sequels a bad name 0 +128634 6919 the kind of under-inspired , overblown enterprise that gives Hollywood sequels a bad name 1 +128635 6919 of under-inspired , overblown enterprise that gives Hollywood sequels a bad name 1 +128636 6919 under-inspired , overblown enterprise that gives Hollywood sequels a bad name 0 +128637 6919 under-inspired , overblown enterprise 0 +128638 6919 , overblown enterprise 1 +128639 6919 overblown enterprise 1 +128640 6919 that gives Hollywood sequels a bad name 0 +128641 6919 gives Hollywood sequels a bad name 0 +128642 6919 gives Hollywood sequels 3 +128643 6919 Hollywood sequels 2 +128644 6920 Whatever complaints I might have , I 'd take -LRB- its -RRB- earnest errors and hard-won rewards over the bombastic self-glorification of other feel-good fiascos like Antwone Fisher or The Emperor 's Club any time . 3 +128645 6920 Whatever complaints I might have 1 +128646 6920 complaints I might have 1 +128647 6920 complaints 2 +128648 6920 I might have 2 +128649 6920 might have 2 +128650 6920 , I 'd take -LRB- its -RRB- earnest errors and hard-won rewards over the bombastic self-glorification of other feel-good fiascos like Antwone Fisher or The Emperor 's Club any time . 3 +128651 6920 I 'd take -LRB- its -RRB- earnest errors and hard-won rewards over the bombastic self-glorification of other feel-good fiascos like Antwone Fisher or The Emperor 's Club any time . 3 +128652 6920 'd take -LRB- its -RRB- earnest errors and hard-won rewards over the bombastic self-glorification of other feel-good fiascos like Antwone Fisher or The Emperor 's Club any time . 3 +128653 6920 'd take -LRB- its -RRB- earnest errors and hard-won rewards over the bombastic self-glorification of other feel-good fiascos like Antwone Fisher or The Emperor 's Club any time 3 +128654 6920 take -LRB- its -RRB- earnest errors and hard-won rewards over the bombastic self-glorification of other feel-good fiascos like Antwone Fisher or The Emperor 's Club any time 3 +128655 6920 take -LRB- its -RRB- earnest errors and 2 +128656 6920 take -LRB- its -RRB- earnest errors 2 +128657 6920 -LRB- its -RRB- earnest errors 2 +128658 6920 earnest errors 2 +128659 6920 hard-won rewards over the bombastic self-glorification of other feel-good fiascos like Antwone Fisher or The Emperor 's Club any time 3 +128660 6920 hard-won rewards 3 +128661 6920 hard-won 3 +128662 6920 over the bombastic self-glorification of other feel-good fiascos like Antwone Fisher or The Emperor 's Club any time 3 +128663 6920 the bombastic self-glorification of other feel-good fiascos like Antwone Fisher or The Emperor 's Club any time 3 +128664 6920 the bombastic self-glorification 2 +128665 6920 bombastic self-glorification 1 +128666 6920 of other feel-good fiascos like Antwone Fisher or The Emperor 's Club any time 2 +128667 6920 other feel-good fiascos like Antwone Fisher or The Emperor 's Club any time 3 +128668 6920 other feel-good fiascos like Antwone Fisher or 3 +128669 6920 other feel-good fiascos like Antwone Fisher 2 +128670 6920 other feel-good fiascos 2 +128671 6920 feel-good fiascos 2 +128672 6920 fiascos 1 +128673 6920 like Antwone Fisher 2 +128674 6920 The Emperor 's Club any time 3 +128675 6920 any time 2 +128676 6921 It 's not so much a movie as a joint promotion for the National Basketball Association and teenaged rap and adolescent poster-boy Lil ' Bow Wow . 1 +128677 6921 's not so much a movie as a joint promotion for the National Basketball Association and teenaged rap and adolescent poster-boy Lil ' Bow Wow . 0 +128678 6921 's not so much a movie as a joint promotion for the National Basketball Association and teenaged rap and adolescent poster-boy Lil ' Bow Wow 0 +128679 6921 's not so much 2 +128680 6921 a movie as a joint promotion for the National Basketball Association and teenaged rap and adolescent poster-boy Lil ' Bow Wow 2 +128681 6921 as a joint promotion for the National Basketball Association and teenaged rap and adolescent poster-boy Lil ' Bow Wow 1 +128682 6921 a joint promotion for the National Basketball Association and teenaged rap and adolescent poster-boy Lil ' Bow Wow 2 +128683 6921 a joint promotion for the National Basketball Association and 3 +128684 6921 a joint promotion for the National Basketball Association 2 +128685 6921 a joint promotion 3 +128686 6921 joint promotion 2 +128687 6921 joint 2 +128688 6921 promotion 2 +128689 6921 for the National Basketball Association 2 +128690 6921 the National Basketball Association 2 +128691 6921 National Basketball Association 2 +128692 6921 Basketball Association 2 +128693 6921 Association 2 +128694 6921 teenaged rap and adolescent poster-boy Lil ' Bow Wow 2 +128695 6921 teenaged rap and adolescent poster-boy 2 +128696 6921 teenaged 2 +128697 6921 rap and adolescent poster-boy 2 +128698 6921 and adolescent poster-boy 2 +128699 6921 adolescent poster-boy 2 +128700 6921 poster-boy 2 +128701 6921 Lil ' Bow Wow 2 +128702 6921 Lil ' 2 +128703 6921 Lil 2 +128704 6921 Bow Wow 2 +128705 6923 Ryan Gosling ... is at 22 a powerful young actor . 4 +128706 6923 ... is at 22 a powerful young actor . 3 +128707 6923 is at 22 a powerful young actor . 3 +128708 6923 is at 22 a powerful young actor 3 +128709 6923 is at 22 2 +128710 6923 at 22 2 +128711 6923 22 2 +128712 6923 a powerful young actor 4 +128713 6923 powerful young actor 3 +128714 6923 young actor 2 +128715 6924 A bonanza of wacky sight gags , outlandish color schemes , and corny visual puns that can be appreciated equally as an abstract Frank Tashlin comedy and as a playful recapitulation of the artist 's career . 2 +128716 6924 A bonanza of wacky sight gags , outlandish color schemes , and corny visual puns that can be appreciated equally as an abstract Frank Tashlin comedy and as a playful recapitulation of the artist 's career 3 +128717 6924 A bonanza of wacky sight gags , outlandish color schemes , and corny visual puns 2 +128718 6924 A bonanza 2 +128719 6924 bonanza 2 +128720 6924 of wacky sight gags , outlandish color schemes , and corny visual puns 2 +128721 6924 wacky sight gags , outlandish color schemes , and corny visual puns 1 +128722 6924 wacky sight gags , outlandish color schemes , and 2 +128723 6924 wacky sight gags , outlandish color schemes , 3 +128724 6924 wacky sight gags , outlandish color schemes 1 +128725 6924 wacky sight gags , 2 +128726 6924 wacky sight gags 2 +128727 6924 outlandish color schemes 2 +128728 6924 outlandish 1 +128729 6924 color schemes 2 +128730 6924 schemes 2 +128731 6924 corny visual puns 1 +128732 6924 visual puns 2 +128733 6924 puns 1 +128734 6924 that can be appreciated equally as an abstract Frank Tashlin comedy and as a playful recapitulation of the artist 's career 4 +128735 6924 can be appreciated equally as an abstract Frank Tashlin comedy and as a playful recapitulation of the artist 's career 4 +128736 6924 be appreciated equally as an abstract Frank Tashlin comedy and as a playful recapitulation of the artist 's career 3 +128737 6924 appreciated equally as an abstract Frank Tashlin comedy and as a playful recapitulation of the artist 's career 3 +128738 6924 appreciated equally 3 +128739 6924 as an abstract Frank Tashlin comedy and as a playful recapitulation of the artist 's career 3 +128740 6924 as an abstract Frank Tashlin comedy and 2 +128741 6924 as an abstract Frank Tashlin comedy 2 +128742 6924 an abstract Frank Tashlin comedy 2 +128743 6924 abstract Frank Tashlin comedy 2 +128744 6924 Frank Tashlin comedy 2 +128745 6924 Tashlin comedy 1 +128746 6924 Tashlin 2 +128747 6924 as a playful recapitulation of the artist 's career 3 +128748 6924 a playful recapitulation of the artist 's career 3 +128749 6924 a playful recapitulation 4 +128750 6924 playful recapitulation 3 +128751 6924 recapitulation 3 +128752 6924 of the artist 's career 2 +128753 6924 the artist 's career 2 +128754 6925 Every joke is repeated at least -- annoying , is n't it ? 1 +128755 6925 Every joke is repeated at least -- annoying , is n't it 1 +128756 6925 Every joke is repeated at least -- 1 +128757 6925 Every joke is repeated at least 1 +128758 6925 is repeated at least 2 +128759 6925 repeated at least 2 +128760 6925 annoying , is n't it 1 +128761 6925 annoying , 1 +128762 6925 is n't it 2 +128763 6926 Made-Up lampoons the moviemaking process itself , while shining a not particularly flattering spotlight on America 's skin-deep notions of pulchritude . 2 +128764 6926 Made-Up 2 +128765 6926 lampoons the moviemaking process itself , while shining a not particularly flattering spotlight on America 's skin-deep notions of pulchritude . 2 +128766 6926 lampoons the moviemaking process itself , while shining a not particularly flattering spotlight on America 's skin-deep notions of pulchritude 3 +128767 6926 lampoons the moviemaking process itself , 1 +128768 6926 lampoons the moviemaking process itself 2 +128769 6926 lampoons 2 +128770 6926 the moviemaking process itself 2 +128771 6926 the moviemaking process 3 +128772 6926 moviemaking process 2 +128773 6926 while shining a not particularly flattering spotlight on America 's skin-deep notions of pulchritude 2 +128774 6926 shining a not particularly flattering spotlight on America 's skin-deep notions of pulchritude 1 +128775 6926 shining a not particularly flattering spotlight 1 +128776 6926 a not particularly flattering spotlight 1 +128777 6926 not particularly flattering spotlight 1 +128778 6926 not particularly 1 +128779 6926 flattering spotlight 3 +128780 6926 flattering 3 +128781 6926 on America 's skin-deep notions of pulchritude 2 +128782 6926 America 's skin-deep notions of pulchritude 3 +128783 6926 America 's skin-deep notions 3 +128784 6926 skin-deep notions 2 +128785 6926 skin-deep 3 +128786 6926 notions 2 +128787 6926 of pulchritude 2 +128788 6927 It 's a strange film , one that was hard for me to warm up to . 1 +128789 6927 's a strange film , one that was hard for me to warm up to . 2 +128790 6927 's a strange film , one that was hard for me to warm up to 2 +128791 6927 a strange film , one that was hard for me to warm up to 0 +128792 6927 a strange film , 2 +128793 6927 a strange film 2 +128794 6927 strange film 1 +128795 6927 one that was hard for me to warm up to 1 +128796 6927 that was hard for me to warm up to 1 +128797 6927 was hard for me to warm up to 2 +128798 6927 was hard for me 1 +128799 6927 hard for me 1 +128800 6927 to warm up to 2 +128801 6927 warm up to 3 +128802 6927 warm up 2 +128803 6928 A haunting tale of murder and mayhem . 3 +128804 6928 A haunting tale of murder and mayhem 2 +128805 6928 A haunting tale 3 +128806 6928 haunting tale 3 +128807 6928 of murder and mayhem 2 +128808 6928 murder and mayhem 1 +128809 6928 murder and 2 +128810 6929 If you 're part of her targeted audience , you 'll cheer . 3 +128811 6929 If you 're part of her targeted audience 2 +128812 6929 you 're part of her targeted audience 2 +128813 6929 're part of her targeted audience 2 +128814 6929 part of her targeted audience 2 +128815 6929 of her targeted audience 2 +128816 6929 her targeted audience 2 +128817 6929 targeted audience 2 +128818 6929 , you 'll cheer . 4 +128819 6929 you 'll cheer . 3 +128820 6929 'll cheer . 3 +128821 6929 'll cheer 3 +128822 6930 Director Kevin Bray excels in breaking glass and marking off the `` Miami Vice '' checklist of power boats , Latin music and dog tracks . 2 +128823 6930 Director Kevin Bray 2 +128824 6930 excels in breaking glass and marking off the `` Miami Vice '' checklist of power boats , Latin music and dog tracks . 2 +128825 6930 excels in breaking glass and marking off the `` Miami Vice '' checklist of power boats , Latin music and dog tracks 3 +128826 6930 in breaking glass and marking off the `` Miami Vice '' checklist of power boats , Latin music and dog tracks 2 +128827 6930 breaking glass and marking off the `` Miami Vice '' checklist of power boats , Latin music and dog tracks 1 +128828 6930 breaking glass and 2 +128829 6930 breaking glass 2 +128830 6930 marking off the `` Miami Vice '' checklist of power boats , Latin music and dog tracks 2 +128831 6930 marking off 2 +128832 6930 the `` Miami Vice '' checklist of power boats , Latin music and dog tracks 2 +128833 6930 the `` Miami Vice '' checklist 1 +128834 6930 `` Miami Vice '' checklist 2 +128835 6930 Miami Vice '' checklist 2 +128836 6930 Vice '' checklist 2 +128837 6930 '' checklist 2 +128838 6930 of power boats , Latin music and dog tracks 2 +128839 6930 power boats , Latin music and dog tracks 2 +128840 6930 power boats , Latin music and 2 +128841 6930 power boats , Latin music 2 +128842 6930 power boats , 2 +128843 6930 power boats 2 +128844 6930 boats 2 +128845 6930 Latin music 2 +128846 6930 dog tracks 2 +128847 6930 tracks 2 +128848 6931 A brilliant , absurd collection of vignettes that , in their own idiosyncratic way , sum up the strange horror of life in the new millennium . 3 +128849 6931 A brilliant , absurd collection of vignettes that , in their own idiosyncratic way , sum up the strange horror of life in the new millennium 4 +128850 6931 A brilliant , absurd collection 4 +128851 6931 brilliant , absurd collection 2 +128852 6931 , absurd collection 1 +128853 6931 absurd collection 1 +128854 6931 of vignettes that , in their own idiosyncratic way , sum up the strange horror of life in the new millennium 2 +128855 6931 vignettes that , in their own idiosyncratic way , sum up the strange horror of life in the new millennium 2 +128856 6931 that , in their own idiosyncratic way , sum up the strange horror of life in the new millennium 3 +128857 6931 , in their own idiosyncratic way , sum up the strange horror of life in the new millennium 2 +128858 6931 in their own idiosyncratic way , sum up the strange horror of life in the new millennium 3 +128859 6931 in their own idiosyncratic way 2 +128860 6931 their own idiosyncratic way 2 +128861 6931 own idiosyncratic way 3 +128862 6931 idiosyncratic way 2 +128863 6931 , sum up the strange horror of life in the new millennium 3 +128864 6931 sum up the strange horror of life in the new millennium 2 +128865 6931 sum up the strange horror of life 2 +128866 6931 sum up 2 +128867 6931 the strange horror of life 0 +128868 6931 the strange horror 1 +128869 6931 strange horror 2 +128870 6931 in the new millennium 2 +128871 6931 the new millennium 2 +128872 6931 new millennium 2 +128873 6931 millennium 2 +128874 6932 Ong chooses to present Ah Na 's life as a slight , weightless fairy tale , whose most unpleasant details seem to melt away in the face of the character 's blank-faced optimism . 2 +128875 6932 Ong 2 +128876 6932 chooses to present Ah Na 's life as a slight , weightless fairy tale , whose most unpleasant details seem to melt away in the face of the character 's blank-faced optimism . 2 +128877 6932 chooses to present Ah Na 's life as a slight , weightless fairy tale , whose most unpleasant details seem to melt away in the face of the character 's blank-faced optimism 2 +128878 6932 to present Ah Na 's life as a slight , weightless fairy tale , whose most unpleasant details seem to melt away in the face of the character 's blank-faced optimism 2 +128879 6932 present Ah Na 's life as a slight , weightless fairy tale , whose most unpleasant details seem to melt away in the face of the character 's blank-faced optimism 1 +128880 6932 present Ah Na 's life 3 +128881 6932 Ah Na 's life 2 +128882 6932 Ah Na 's 2 +128883 6932 Na 's 2 +128884 6932 as a slight , weightless fairy tale , whose most unpleasant details seem to melt away in the face of the character 's blank-faced optimism 1 +128885 6932 a slight , weightless fairy tale , whose most unpleasant details seem to melt away in the face of the character 's blank-faced optimism 2 +128886 6932 a slight , weightless fairy tale , 2 +128887 6932 a slight , weightless fairy tale 1 +128888 6932 slight , weightless fairy tale 0 +128889 6932 , weightless fairy tale 1 +128890 6932 weightless fairy tale 1 +128891 6932 whose most unpleasant details seem to melt away in the face of the character 's blank-faced optimism 2 +128892 6932 most unpleasant details seem to melt away in the face of the character 's blank-faced optimism 2 +128893 6932 most unpleasant details 1 +128894 6932 unpleasant details 1 +128895 6932 seem to melt away in the face of the character 's blank-faced optimism 3 +128896 6932 to melt away in the face of the character 's blank-faced optimism 2 +128897 6932 melt away in the face of the character 's blank-faced optimism 2 +128898 6932 melt away 2 +128899 6932 in the face of the character 's blank-faced optimism 3 +128900 6932 the face of the character 's blank-faced optimism 2 +128901 6932 of the character 's blank-faced optimism 2 +128902 6932 the character 's blank-faced optimism 1 +128903 6932 blank-faced optimism 2 +128904 6932 blank-faced 2 +128905 6933 In the end , the film is less the cheap thriller you 'd expect than it is a fairly revealing study of its two main characters -- damaged-goods people whose orbits will inevitably and dangerously collide . 3 +128906 6933 , the film is less the cheap thriller you 'd expect than it is a fairly revealing study of its two main characters -- damaged-goods people whose orbits will inevitably and dangerously collide . 3 +128907 6933 the film is less the cheap thriller you 'd expect than it is a fairly revealing study of its two main characters -- damaged-goods people whose orbits will inevitably and dangerously collide . 3 +128908 6933 is less the cheap thriller you 'd expect than it is a fairly revealing study of its two main characters -- damaged-goods people whose orbits will inevitably and dangerously collide . 2 +128909 6933 is less the cheap thriller you 'd expect than it is a fairly revealing study of its two main characters -- damaged-goods people whose orbits will inevitably and dangerously collide 3 +128910 6933 less the cheap thriller you 'd expect than it is a fairly revealing study of its two main characters -- damaged-goods people whose orbits will inevitably and dangerously collide 2 +128911 6933 less the cheap thriller you 'd expect than it is a fairly revealing study of its two main characters -- damaged-goods people whose orbits will inevitably and 3 +128912 6933 less the cheap thriller you 'd expect than it is a fairly revealing study of its two main characters -- damaged-goods people whose orbits will inevitably 3 +128913 6933 the cheap thriller you 'd expect than it is a fairly revealing study of its two main characters -- damaged-goods people whose orbits will inevitably 2 +128914 6933 thriller you 'd expect than it is a fairly revealing study of its two main characters -- damaged-goods people whose orbits will inevitably 2 +128915 6933 you 'd expect than it is a fairly revealing study of its two main characters -- damaged-goods people whose orbits will inevitably 2 +128916 6933 'd expect than it is a fairly revealing study of its two main characters -- damaged-goods people whose orbits will inevitably 2 +128917 6933 expect than it is a fairly revealing study of its two main characters -- damaged-goods people whose orbits will inevitably 2 +128918 6933 than it is a fairly revealing study of its two main characters -- damaged-goods people whose orbits will inevitably 2 +128919 6933 it is a fairly revealing study of its two main characters -- damaged-goods people whose orbits will inevitably 3 +128920 6933 is a fairly revealing study of its two main characters -- damaged-goods people whose orbits will inevitably 2 +128921 6933 a fairly revealing study of its two main characters -- damaged-goods people whose orbits will inevitably 3 +128922 6933 a fairly revealing study of its two main characters -- 3 +128923 6933 a fairly revealing study of its two main characters 3 +128924 6933 a fairly revealing study 3 +128925 6933 fairly revealing study 2 +128926 6933 fairly revealing 3 +128927 6933 of its two main characters 2 +128928 6933 its two main characters 2 +128929 6933 damaged-goods people whose orbits will inevitably 2 +128930 6933 damaged-goods people 1 +128931 6933 damaged-goods 0 +128932 6933 whose orbits will inevitably 2 +128933 6933 orbits will inevitably 2 +128934 6933 orbits 2 +128935 6933 will inevitably 2 +128936 6933 dangerously collide 1 +128937 6934 If you 're not deeply touched by this movie , check your pulse . 4 +128938 6934 If you 're not deeply touched by this movie 3 +128939 6934 you 're not deeply touched by this movie 1 +128940 6934 're not deeply touched by this movie 2 +128941 6934 deeply touched by this movie 4 +128942 6934 touched by this movie 3 +128943 6934 by this movie 2 +128944 6934 , check your pulse . 2 +128945 6934 check your pulse . 1 +128946 6934 check your pulse 2 +128947 6935 The film 's strength is n't in its details , but in the larger picture it paints - of a culture in conflict with itself , with the thin veneer of nationalism that covers our deepest , media-soaked fears . 3 +128948 6935 The film 's strength is n't in its details , but in the larger picture it paints - of a culture in conflict with itself , with the thin veneer of nationalism that covers our deepest , media-soaked fears 2 +128949 6935 The film 's strength is n't in its details , but 2 +128950 6935 The film 's strength is n't in its details , 2 +128951 6935 The film 's strength is n't in its details 2 +128952 6935 The film 's strength 2 +128953 6935 is n't in its details 2 +128954 6935 in the larger picture it paints - of a culture in conflict with itself , with the thin veneer of nationalism that covers our deepest , media-soaked fears 3 +128955 6935 in the larger picture 2 +128956 6935 the larger picture 2 +128957 6935 larger picture 2 +128958 6935 it paints - of a culture in conflict with itself , with the thin veneer of nationalism that covers our deepest , media-soaked fears 2 +128959 6935 paints - of a culture in conflict with itself , with the thin veneer of nationalism that covers our deepest , media-soaked fears 2 +128960 6935 paints - of a culture in conflict with itself , 3 +128961 6935 paints - of a culture in conflict with itself 1 +128962 6935 paints - of a culture in conflict 2 +128963 6935 paints - 2 +128964 6935 of a culture in conflict 1 +128965 6935 a culture in conflict 2 +128966 6935 with itself 2 +128967 6935 with the thin veneer of nationalism that covers our deepest , media-soaked fears 2 +128968 6935 the thin veneer of nationalism that covers our deepest , media-soaked fears 2 +128969 6935 the thin veneer of nationalism 1 +128970 6935 the thin veneer 1 +128971 6935 thin veneer 2 +128972 6935 of nationalism 2 +128973 6935 nationalism 2 +128974 6935 that covers our deepest , media-soaked fears 1 +128975 6935 covers our deepest , media-soaked fears 2 +128976 6935 our deepest , media-soaked fears 1 +128977 6935 our deepest , 2 +128978 6935 our deepest 2 +128979 6935 media-soaked fears 2 +128980 6935 media-soaked 1 +128981 6936 I 'm guessing the director is a magician . 3 +128982 6936 'm guessing the director is a magician . 3 +128983 6936 'm guessing the director is a magician 2 +128984 6936 guessing the director is a magician 2 +128985 6936 the director is a magician 3 +128986 6936 is a magician 3 +128987 6936 a magician 2 +128988 6936 magician 2 +128989 6937 For the most part , it works beautifully as a movie without sacrificing the integrity of the opera . 3 +128990 6937 , it works beautifully as a movie without sacrificing the integrity of the opera . 3 +128991 6937 it works beautifully as a movie without sacrificing the integrity of the opera . 4 +128992 6937 works beautifully as a movie without sacrificing the integrity of the opera . 3 +128993 6937 works beautifully as a movie without sacrificing the integrity of the opera 3 +128994 6937 works beautifully as a movie 4 +128995 6937 works beautifully 4 +128996 6937 without sacrificing the integrity of the opera 3 +128997 6937 sacrificing the integrity of the opera 1 +128998 6937 the integrity of the opera 2 +128999 6937 the integrity 3 +129000 6938 Both a detective story and a romance spiced with the intrigue of academic skullduggery and politics . 3 +129001 6938 Both a detective story and a romance 2 +129002 6938 a detective story and a romance 2 +129003 6938 a detective story and 2 +129004 6938 a detective story 2 +129005 6938 detective story 3 +129006 6938 detective 2 +129007 6938 spiced with the intrigue of academic skullduggery and politics . 3 +129008 6938 spiced with the intrigue of academic skullduggery and politics 3 +129009 6938 with the intrigue of academic skullduggery and politics 2 +129010 6938 the intrigue of academic skullduggery and politics 3 +129011 6938 of academic skullduggery and politics 1 +129012 6938 academic skullduggery and politics 2 +129013 6938 skullduggery and politics 2 +129014 6938 skullduggery and 1 +129015 6938 skullduggery 2 +129016 6939 It 's touching and tender and proves that even in sorrow you can find humor . 3 +129017 6939 's touching and tender and proves that even in sorrow you can find humor . 4 +129018 6939 's touching and tender and proves that even in sorrow you can find humor 3 +129019 6939 's touching and tender and 3 +129020 6939 's touching and tender 2 +129021 6939 touching and tender 4 +129022 6939 proves that even in sorrow you can find humor 3 +129023 6939 that even in sorrow you can find humor 3 +129024 6939 in sorrow you can find humor 2 +129025 6939 in sorrow 1 +129026 6939 you can find humor 3 +129027 6939 can find humor 3 +129028 6939 find humor 2 +129029 6940 Oddly , the film is n't nearly as downbeat as it sounds , but strikes a tone that 's alternately melancholic , hopeful and strangely funny . 3 +129030 6940 , the film is n't nearly as downbeat as it sounds , but strikes a tone that 's alternately melancholic , hopeful and strangely funny . 3 +129031 6940 the film is n't nearly as downbeat as it sounds , but strikes a tone that 's alternately melancholic , hopeful and strangely funny . 3 +129032 6940 is n't nearly as downbeat as it sounds , but strikes a tone that 's alternately melancholic , hopeful and strangely funny . 3 +129033 6940 is n't nearly as downbeat as it sounds , but strikes a tone that 's alternately melancholic , hopeful and strangely funny 3 +129034 6940 is n't nearly as downbeat 2 +129035 6940 nearly as downbeat 2 +129036 6940 as downbeat 2 +129037 6940 as it sounds , but strikes a tone that 's alternately melancholic , hopeful and strangely funny 3 +129038 6940 it sounds , but strikes a tone that 's alternately melancholic , hopeful and strangely funny 3 +129039 6940 sounds , but strikes a tone that 's alternately melancholic , hopeful and strangely funny 3 +129040 6940 sounds , but 2 +129041 6940 sounds , 2 +129042 6940 strikes a tone that 's alternately melancholic , hopeful and strangely funny 3 +129043 6940 a tone that 's alternately melancholic , hopeful and strangely funny 3 +129044 6940 that 's alternately melancholic , hopeful and strangely funny 3 +129045 6940 's alternately melancholic , hopeful and strangely funny 2 +129046 6940 alternately melancholic , hopeful and strangely funny 4 +129047 6940 alternately melancholic , hopeful and 2 +129048 6940 alternately melancholic , hopeful 3 +129049 6940 alternately melancholic , 2 +129050 6940 alternately melancholic 2 +129051 6940 strangely funny 3 +129052 6941 The film is really closer to porn than a serious critique of what 's wrong with this increasingly pervasive aspect of gay culture . 1 +129053 6941 is really closer to porn than a serious critique of what 's wrong with this increasingly pervasive aspect of gay culture . 1 +129054 6941 is really closer to porn than a serious critique of what 's wrong with this increasingly pervasive aspect of gay culture 1 +129055 6941 is really closer 2 +129056 6941 really closer 2 +129057 6941 to porn than a serious critique of what 's wrong with this increasingly pervasive aspect of gay culture 2 +129058 6941 porn than a serious critique of what 's wrong with this increasingly pervasive aspect of gay culture 2 +129059 6941 than a serious critique of what 's wrong with this increasingly pervasive aspect of gay culture 2 +129060 6941 a serious critique of what 's wrong with this increasingly pervasive aspect of gay culture 2 +129061 6941 a serious critique 2 +129062 6941 serious critique 1 +129063 6941 of what 's wrong with this increasingly pervasive aspect of gay culture 1 +129064 6941 what 's wrong with this increasingly pervasive aspect of gay culture 2 +129065 6941 's wrong with this increasingly pervasive aspect of gay culture 1 +129066 6941 wrong with this increasingly pervasive aspect of gay culture 1 +129067 6941 with this increasingly pervasive aspect of gay culture 2 +129068 6941 this increasingly pervasive aspect of gay culture 2 +129069 6941 this increasingly pervasive aspect 2 +129070 6941 increasingly pervasive aspect 2 +129071 6941 increasingly pervasive 2 +129072 6941 of gay culture 2 +129073 6941 gay culture 2 +129074 6942 Occasionally loud and offensive , but more often , it simply lulls you into a gentle waking coma . 1 +129075 6942 Occasionally loud and offensive , but more often 1 +129076 6942 loud and offensive , but more often 1 +129077 6942 loud and offensive 2 +129078 6942 , but more often 2 +129079 6942 , it simply lulls you into a gentle waking coma . 0 +129080 6942 it simply lulls you into a gentle waking coma . 1 +129081 6942 simply lulls you into a gentle waking coma . 2 +129082 6942 lulls you into a gentle waking coma . 0 +129083 6942 lulls you into a gentle waking coma 1 +129084 6942 lulls you 1 +129085 6942 into a gentle waking coma 1 +129086 6942 a gentle waking coma 1 +129087 6942 gentle waking coma 2 +129088 6942 waking coma 1 +129089 6942 coma 0 +129090 6943 ... Tara Reid plays a college journalist , but she looks like the six-time winner of the Miss Hawaiian Tropic Pageant , so I do n't know what she 's doing in here ... 1 +129091 6943 Tara Reid plays a college journalist , but she looks like the six-time winner of the Miss Hawaiian Tropic Pageant , so I do n't know what she 's doing in here ... 2 +129092 6943 Tara Reid plays a college journalist , but she looks like the six-time winner of the Miss Hawaiian Tropic Pageant , so I do n't know what she 's doing in here 1 +129093 6943 Tara Reid plays a college journalist , but 2 +129094 6943 Tara Reid plays a college journalist , 1 +129095 6943 Tara Reid plays a college journalist 2 +129096 6943 Tara Reid 2 +129097 6943 Tara 2 +129098 6943 Reid 2 +129099 6943 plays a college journalist 2 +129100 6943 a college journalist 2 +129101 6943 college journalist 2 +129102 6943 journalist 2 +129103 6943 she looks like the six-time winner of the Miss Hawaiian Tropic Pageant , so I do n't know what she 's doing in here 3 +129104 6943 looks like the six-time winner of the Miss Hawaiian Tropic Pageant , so I do n't know what she 's doing in here 1 +129105 6943 looks like the six-time winner of the Miss Hawaiian Tropic Pageant , 2 +129106 6943 looks like the six-time winner of the Miss Hawaiian Tropic Pageant 2 +129107 6943 like the six-time winner of the Miss Hawaiian Tropic Pageant 2 +129108 6943 the six-time winner of the Miss Hawaiian Tropic Pageant 2 +129109 6943 the six-time winner 3 +129110 6943 six-time winner 2 +129111 6943 six-time 2 +129112 6943 of the Miss Hawaiian Tropic Pageant 2 +129113 6943 the Miss Hawaiian Tropic Pageant 2 +129114 6943 Miss Hawaiian Tropic Pageant 2 +129115 6943 Hawaiian Tropic Pageant 2 +129116 6943 Tropic Pageant 2 +129117 6943 Tropic 2 +129118 6943 Pageant 2 +129119 6943 so I do n't know what she 's doing in here 1 +129120 6943 I do n't know what she 's doing in here 1 +129121 6943 do n't know what she 's doing in here 1 +129122 6943 know what she 's doing in here 2 +129123 6943 what she 's doing in here 2 +129124 6943 she 's doing in here 2 +129125 6943 's doing in here 2 +129126 6943 doing in here 2 +129127 6943 in here 2 +129128 6944 It all starts to smack of a Hallmark Hall of Fame , with a few four letter words thrown in that are generally not heard on television . 1 +129129 6944 all starts to smack of a Hallmark Hall of Fame , with a few four letter words thrown in that are generally not heard on television . 1 +129130 6944 starts to smack of a Hallmark Hall of Fame , with a few four letter words thrown in that are generally not heard on television . 1 +129131 6944 starts to smack of a Hallmark Hall of Fame , with a few four letter words thrown in that are generally not heard on television 1 +129132 6944 to smack of a Hallmark Hall of Fame , with a few four letter words thrown in that are generally not heard on television 1 +129133 6944 smack of a Hallmark Hall of Fame , with a few four letter words thrown in that are generally not heard on television 2 +129134 6944 smack of a Hallmark Hall of Fame , 2 +129135 6944 smack of a Hallmark Hall of Fame 1 +129136 6944 of a Hallmark Hall of Fame 2 +129137 6944 a Hallmark Hall of Fame 3 +129138 6944 a Hallmark Hall 2 +129139 6944 Hallmark Hall 2 +129140 6944 with a few four letter words thrown in that are generally not heard on television 1 +129141 6944 a few four letter words thrown in that are generally not heard on television 1 +129142 6944 a few four letter words 2 +129143 6944 few four letter words 2 +129144 6944 four letter words 2 +129145 6944 letter words 2 +129146 6944 thrown in that are generally not heard on television 2 +129147 6944 in that are generally not heard on television 3 +129148 6944 that are generally not heard on television 2 +129149 6944 are generally not heard on television 2 +129150 6944 are generally 2 +129151 6944 not heard on television 2 +129152 6944 heard on television 2 +129153 6945 Any reasonably creative eighth-grader could have written a more credible script , though with the same number of continuity errors . 0 +129154 6945 Any reasonably creative eighth-grader 1 +129155 6945 reasonably creative eighth-grader 1 +129156 6945 reasonably creative 3 +129157 6945 eighth-grader 3 +129158 6945 could have written a more credible script , though with the same number of continuity errors . 1 +129159 6945 could have written a more credible script , though with the same number of continuity errors 1 +129160 6945 have written a more credible script , though with the same number of continuity errors 1 +129161 6945 written a more credible script , though with the same number of continuity errors 1 +129162 6945 written a more credible script , though 2 +129163 6945 a more credible script , though 3 +129164 6945 a more credible script , 3 +129165 6945 a more credible script 3 +129166 6945 more credible script 2 +129167 6945 more credible 2 +129168 6945 with the same number of continuity errors 1 +129169 6945 the same number of continuity errors 1 +129170 6945 the same number 2 +129171 6945 same number 2 +129172 6945 of continuity errors 1 +129173 6945 continuity errors 1 +129174 6946 Little more than a super-sized infomercial for the cable-sports channel and its Summer X Games . 2 +129175 6946 Little more than a super-sized infomercial for the cable-sports channel and its Summer X Games 1 +129176 6946 than a super-sized infomercial for the cable-sports channel and its Summer X Games 1 +129177 6946 a super-sized infomercial for the cable-sports channel and its Summer X Games 2 +129178 6946 a super-sized infomercial 2 +129179 6946 super-sized infomercial 0 +129180 6946 for the cable-sports channel and its Summer X Games 2 +129181 6946 the cable-sports channel and its Summer X Games 2 +129182 6946 the cable-sports channel and 2 +129183 6946 the cable-sports channel 2 +129184 6946 cable-sports channel 2 +129185 6946 cable-sports 2 +129186 6946 its Summer X Games 2 +129187 6946 Summer X Games 3 +129188 6947 As original and insightful as last week 's episode of Behind the Music . 1 +129189 6947 As original and insightful 3 +129190 6947 original and insightful 4 +129191 6947 as last week 's episode of Behind the Music . 2 +129192 6947 as last week 2 +129193 6947 's episode of Behind the Music . 2 +129194 6947 's episode of Behind the Music 3 +129195 6947 episode of Behind the Music 2 +129196 6947 of Behind the Music 2 +129197 6947 Behind the Music 2 +129198 6948 A dull , simple-minded and stereotypical tale of drugs , death and mind-numbing indifference on the inner-city streets . 0 +129199 6948 A dull , simple-minded and stereotypical tale of drugs , death and mind-numbing indifference on the inner-city streets 0 +129200 6948 A dull , simple-minded and stereotypical tale of drugs , 0 +129201 6948 A dull , simple-minded and stereotypical tale of drugs 0 +129202 6948 A dull , simple-minded and stereotypical tale 0 +129203 6948 dull , simple-minded and stereotypical tale 0 +129204 6948 dull , simple-minded and stereotypical 0 +129205 6948 , simple-minded and stereotypical 0 +129206 6948 simple-minded and stereotypical 1 +129207 6948 of drugs 2 +129208 6948 death and mind-numbing indifference on the inner-city streets 1 +129209 6948 death and mind-numbing indifference 0 +129210 6948 and mind-numbing indifference 1 +129211 6948 mind-numbing indifference 1 +129212 6948 mind-numbing 1 +129213 6948 on the inner-city streets 2 +129214 6948 the inner-city streets 2 +129215 6948 inner-city streets 3 +129216 6949 mired in a shabby script 1 +129217 6949 in a shabby script 0 +129218 6949 a shabby script 0 +129219 6949 shabby script 1 +129220 6949 piles 2 +129221 6949 atop wooden dialogue 1 +129222 6949 wooden dialogue 1 +129223 6949 a shifting tone that falls far short of the peculiarly moral amorality of -LRB- Woo 's -RRB- best work 0 +129224 6949 a shifting tone 2 +129225 6949 shifting tone 2 +129226 6949 that falls far short of the peculiarly moral amorality of -LRB- Woo 's -RRB- best work 1 +129227 6949 falls far short of the peculiarly moral amorality of -LRB- Woo 's -RRB- best work 1 +129228 6949 falls far short 0 +129229 6949 far short 1 +129230 6949 of the peculiarly moral amorality of -LRB- Woo 's -RRB- best work 3 +129231 6949 the peculiarly moral amorality of -LRB- Woo 's -RRB- best work 4 +129232 6949 the peculiarly moral amorality 2 +129233 6949 peculiarly moral amorality 1 +129234 6949 peculiarly moral 2 +129235 6949 peculiarly 1 +129236 6949 amorality 2 +129237 6949 of -LRB- Woo 's -RRB- best work 3 +129238 6949 of -LRB- Woo 's -RRB- 2 +129239 6950 What 's hard to understand is why anybody picked it up . 0 +129240 6950 What 's hard to understand 2 +129241 6950 's hard to understand 2 +129242 6950 hard to understand 1 +129243 6950 is why anybody picked it up . 1 +129244 6950 is why anybody picked it up 2 +129245 6950 why anybody picked it up 2 +129246 6950 anybody picked it up 2 +129247 6950 picked it up 2 +129248 6950 picked it 2 +129249 6951 Some of the characters die and others do n't , and the film pretends that those living have learned some sort of lesson , and , really , nobody in the viewing audience cares . 0 +129250 6951 Some of the characters die and others do n't , and the film pretends that those living have learned some sort of lesson , and , really , nobody in the viewing audience cares 0 +129251 6951 Some of the characters die and others do n't , and the film pretends that those living have learned some sort of lesson , and , really , 0 +129252 6951 Some of the characters die and others do n't , and the film pretends that those living have learned some sort of lesson , and 1 +129253 6951 Some of the characters die and others do n't , and the film pretends that those living have learned some sort of lesson , 1 +129254 6951 Some of the characters die and others do n't , and the film pretends that those living have learned some sort of lesson 1 +129255 6951 Some of the characters die and 2 +129256 6951 Some of the characters die 2 +129257 6951 Some of the characters 2 +129258 6951 others do n't , and the film pretends that those living have learned some sort of lesson 2 +129259 6951 others do n't , and 2 +129260 6951 others do n't , 3 +129261 6951 others do n't 2 +129262 6951 the film pretends that those living have learned some sort of lesson 2 +129263 6951 pretends that those living have learned some sort of lesson 2 +129264 6951 that those living have learned some sort of lesson 2 +129265 6951 those living have learned some sort of lesson 2 +129266 6951 those living 2 +129267 6951 have learned some sort of lesson 2 +129268 6951 learned some sort of lesson 2 +129269 6951 some sort of lesson 2 +129270 6951 of lesson 2 +129271 6951 nobody in the viewing audience cares 1 +129272 6951 nobody in the viewing audience 2 +129273 6951 in the viewing audience 2 +129274 6951 the viewing audience 2 +129275 6951 viewing audience 2 +129276 6952 Its juxtaposition of overwrought existentialism and stomach-churning gore will have you forever on the verge of either cracking up or throwing up . 2 +129277 6952 Its juxtaposition of overwrought existentialism and stomach-churning gore 1 +129278 6952 Its juxtaposition 2 +129279 6952 of overwrought existentialism and stomach-churning gore 1 +129280 6952 overwrought existentialism and stomach-churning gore 1 +129281 6952 overwrought existentialism and 0 +129282 6952 overwrought existentialism 1 +129283 6952 stomach-churning gore 2 +129284 6952 stomach-churning 1 +129285 6952 will have you forever on the verge of either cracking up or throwing up . 2 +129286 6952 will have you forever on the verge of either cracking up or throwing up 2 +129287 6952 have you forever on the verge of either cracking up or throwing up 0 +129288 6952 forever on the verge of either cracking up or throwing up 1 +129289 6952 forever 2 +129290 6952 on the verge of either cracking up or throwing up 1 +129291 6952 the verge of either cracking up or throwing up 2 +129292 6952 the verge 2 +129293 6952 of either cracking up or throwing up 0 +129294 6952 either cracking up or throwing up 2 +129295 6952 cracking up or throwing up 2 +129296 6952 cracking up or 2 +129297 6952 cracking up 3 +129298 6952 cracking 2 +129299 6952 throwing up 1 +129300 6953 The film 's gamble to occasionally break up the live-action scenes with animated sequences pays off , as does its sensitive handling of some delicate subject matter . 3 +129301 6953 The film 's gamble to occasionally break up the live-action scenes with animated sequences 2 +129302 6953 gamble to occasionally break up the live-action scenes with animated sequences 2 +129303 6953 to occasionally break up the live-action scenes with animated sequences 3 +129304 6953 occasionally break up the live-action scenes with animated sequences 2 +129305 6953 break up the live-action scenes with animated sequences 2 +129306 6953 break up 1 +129307 6953 the live-action scenes with animated sequences 2 +129308 6953 the live-action scenes 2 +129309 6953 live-action scenes 2 +129310 6953 live-action 2 +129311 6953 with animated sequences 2 +129312 6953 pays off , as does its sensitive handling of some delicate subject matter . 3 +129313 6953 pays off , as does its sensitive handling of some delicate subject matter 3 +129314 6953 pays off , 3 +129315 6953 as does its sensitive handling of some delicate subject matter 3 +129316 6953 does its sensitive handling of some delicate subject matter 3 +129317 6953 its sensitive handling of some delicate subject matter 3 +129318 6953 its sensitive handling 3 +129319 6953 sensitive handling 2 +129320 6953 handling 2 +129321 6953 of some delicate subject matter 2 +129322 6953 some delicate subject matter 2 +129323 6953 delicate subject matter 2 +129324 6954 It 's like an old Warner Bros. costumer jived with sex -- this could be the movie Errol Flynn always wanted to make , though Bette Davis , cast as Joan , would have killed him . 2 +129325 6954 It 's like an old Warner Bros. costumer jived with sex -- this could be the movie Errol Flynn always wanted to make , though Bette Davis , cast as Joan , would have killed him 2 +129326 6954 It 's like an old Warner Bros. costumer jived with sex -- 3 +129327 6954 It 's like an old Warner Bros. costumer jived with sex 2 +129328 6954 's like an old Warner Bros. costumer jived with sex 1 +129329 6954 like an old Warner Bros. costumer jived with sex 1 +129330 6954 an old Warner Bros. costumer jived with sex 2 +129331 6954 an old Warner Bros. costumer 2 +129332 6954 old Warner Bros. costumer 2 +129333 6954 Warner Bros. costumer 2 +129334 6954 Bros. costumer 2 +129335 6954 costumer 2 +129336 6954 jived with sex 2 +129337 6954 jived 2 +129338 6954 with sex 2 +129339 6954 this could be the movie Errol Flynn always wanted to make , though Bette Davis , cast as Joan , would have killed him 2 +129340 6954 could be the movie Errol Flynn always wanted to make , though Bette Davis , cast as Joan , would have killed him 2 +129341 6954 be the movie Errol Flynn always wanted to make , though Bette Davis , cast as Joan , would have killed him 2 +129342 6954 the movie Errol Flynn always wanted to make , though Bette Davis , cast as Joan , would have killed him 2 +129343 6954 Errol Flynn always wanted to make , though Bette Davis , cast as Joan , would have killed him 2 +129344 6954 Errol Flynn 2 +129345 6954 Flynn 2 +129346 6954 always wanted to make , though Bette Davis , cast as Joan , would have killed him 2 +129347 6954 wanted to make , though Bette Davis , cast as Joan , would have killed him 1 +129348 6954 wanted to make , 2 +129349 6954 wanted to make 2 +129350 6954 though Bette Davis , cast as Joan , would have killed him 1 +129351 6954 Bette Davis , cast as Joan , would have killed him 3 +129352 6954 Bette Davis , cast as Joan , 3 +129353 6954 Bette Davis , cast as Joan 2 +129354 6954 Bette Davis , 2 +129355 6954 cast as Joan 2 +129356 6954 as Joan 2 +129357 6954 would have killed him 2 +129358 6954 have killed him 2 +129359 6954 killed him 2 +129360 6955 The problematic characters and overly convenient plot twists foul up Shum 's good intentions . 1 +129361 6955 The problematic characters and overly convenient plot twists 0 +129362 6955 The problematic characters and 1 +129363 6955 The problematic characters 1 +129364 6955 problematic characters 1 +129365 6955 overly convenient plot twists 1 +129366 6955 overly convenient 1 +129367 6955 foul up Shum 's good intentions . 1 +129368 6955 foul up Shum 's good intentions 1 +129369 6955 foul up 1 +129370 6955 foul 1 +129371 6955 Shum 's good intentions 2 +129372 6955 Shum 's 2 +129373 6955 Shum 2 +129374 6956 The film desperately sinks further and further into comedy futility . 0 +129375 6956 desperately sinks further and further into comedy futility . 2 +129376 6956 sinks further and further into comedy futility . 1 +129377 6956 sinks further and further into comedy futility 1 +129378 6956 sinks further and further 1 +129379 6956 further and further 2 +129380 6956 into comedy futility 1 +129381 6956 comedy futility 2 +129382 6956 futility 1 +129383 6957 The story 's scope and pageantry are mesmerizing , and Mr. Day-Lewis roars with leonine power . 4 +129384 6957 The story 's scope and pageantry are mesmerizing , and Mr. Day-Lewis roars with leonine power 3 +129385 6957 The story 's scope and pageantry are mesmerizing , and 4 +129386 6957 The story 's scope and pageantry are mesmerizing , 4 +129387 6957 The story 's scope and pageantry are mesmerizing 3 +129388 6957 The story 's scope and pageantry 3 +129389 6957 scope and pageantry 2 +129390 6957 pageantry 2 +129391 6957 are mesmerizing 3 +129392 6957 Mr. Day-Lewis roars with leonine power 3 +129393 6957 Mr. Day-Lewis 2 +129394 6957 roars with leonine power 3 +129395 6957 roars 2 +129396 6957 with leonine power 3 +129397 6957 leonine power 4 +129398 6958 What ensues are much blood-splattering , mass drug-induced bowel evacuations , and none-too-funny commentary on the cultural distinctions between Americans and Brits . 0 +129399 6958 What ensues are much blood-splattering 2 +129400 6958 ensues are much blood-splattering 1 +129401 6958 are much blood-splattering 2 +129402 6958 much blood-splattering 2 +129403 6958 blood-splattering 2 +129404 6958 , mass drug-induced bowel evacuations , and none-too-funny commentary on the cultural distinctions between Americans and Brits . 1 +129405 6958 mass drug-induced bowel evacuations , and none-too-funny commentary on the cultural distinctions between Americans and Brits . 0 +129406 6958 mass drug-induced bowel 0 +129407 6958 mass 2 +129408 6958 drug-induced bowel 1 +129409 6958 drug-induced 2 +129410 6958 evacuations , and none-too-funny commentary on the cultural distinctions between Americans and Brits . 1 +129411 6958 evacuations , and none-too-funny commentary on the cultural distinctions between Americans and Brits 1 +129412 6958 evacuations , and 2 +129413 6958 evacuations , 2 +129414 6958 evacuations 2 +129415 6958 none-too-funny commentary on the cultural distinctions between Americans and Brits 1 +129416 6958 none-too-funny commentary 1 +129417 6958 none-too-funny 1 +129418 6958 on the cultural distinctions between Americans and Brits 2 +129419 6958 the cultural distinctions between Americans and Brits 2 +129420 6958 the cultural distinctions 3 +129421 6958 cultural distinctions 2 +129422 6958 distinctions 2 +129423 6958 between Americans and Brits 2 +129424 6958 Americans and Brits 2 +129425 6958 Americans and 2 +129426 6959 With a romantic comedy plotline straight from the ages , this Cinderella story does n't have a single surprise up its sleeve . 1 +129427 6959 With a romantic comedy plotline straight from the ages 3 +129428 6959 a romantic comedy plotline straight from the ages 3 +129429 6959 a romantic comedy plotline 3 +129430 6959 romantic comedy plotline 2 +129431 6959 comedy plotline 2 +129432 6959 straight from the ages 3 +129433 6959 from the ages 3 +129434 6959 the ages 2 +129435 6959 , this Cinderella story does n't have a single surprise up its sleeve . 1 +129436 6959 this Cinderella story does n't have a single surprise up its sleeve . 1 +129437 6959 this Cinderella story 3 +129438 6959 does n't have a single surprise up its sleeve . 1 +129439 6959 does n't have a single surprise up its sleeve 1 +129440 6959 have a single surprise up its sleeve 2 +129441 6959 have a single surprise 2 +129442 6959 a single surprise 3 +129443 6959 single surprise 2 +129444 6959 up its sleeve 2 +129445 6960 Director Oliver Parker labors so hard to whip life into The Importance of Being Earnest that he probably pulled a muscle or two . 2 +129446 6960 Director Oliver Parker 2 +129447 6960 Oliver Parker 2 +129448 6960 labors so hard to whip life into The Importance of Being Earnest that he probably pulled a muscle or two . 1 +129449 6960 labors so hard to whip life into The Importance of Being Earnest that he probably pulled a muscle or two 1 +129450 6960 labors 1 +129451 6960 so hard to whip life into The Importance of Being Earnest that he probably pulled a muscle or two 2 +129452 6960 hard to whip life into The Importance of Being Earnest that he probably pulled a muscle or two 1 +129453 6960 to whip life into The Importance of Being Earnest that he probably pulled a muscle or two 1 +129454 6960 whip life into The Importance of Being Earnest that he probably pulled a muscle or two 2 +129455 6960 whip life into The Importance of Being Earnest 3 +129456 6960 whip life 2 +129457 6960 whip 2 +129458 6960 into The Importance of Being Earnest 2 +129459 6960 that he probably pulled a muscle or two 2 +129460 6960 he probably pulled a muscle or two 2 +129461 6960 probably pulled a muscle or two 2 +129462 6960 pulled a muscle or two 2 +129463 6960 a muscle or two 2 +129464 6960 a muscle or 2 +129465 6960 a muscle 2 +129466 6960 muscle 2 +129467 6961 `` Extreme Ops '' exceeds expectations . 3 +129468 6961 Extreme Ops '' exceeds expectations . 3 +129469 6961 '' exceeds expectations . 3 +129470 6961 exceeds expectations . 4 +129471 6961 exceeds expectations 4 +129472 6962 I know I should n't have laughed , but hey , those farts got to my inner nine-year-old . 3 +129473 6962 I know I should n't have laughed , but hey , those farts got to my inner nine-year-old 3 +129474 6962 I know I should n't have laughed , but 3 +129475 6962 I know I should n't have laughed , 2 +129476 6962 I know I should n't have laughed 2 +129477 6962 know I should n't have laughed 2 +129478 6962 I should n't have laughed 2 +129479 6962 should n't have laughed 2 +129480 6962 have laughed 2 +129481 6962 hey , those farts got to my inner nine-year-old 3 +129482 6962 , those farts got to my inner nine-year-old 3 +129483 6962 those farts got to my inner nine-year-old 3 +129484 6962 those farts 2 +129485 6962 farts 1 +129486 6962 got to my inner nine-year-old 3 +129487 6962 to my inner nine-year-old 2 +129488 6962 my inner nine-year-old 2 +129489 6962 inner nine-year-old 2 +129490 6962 nine-year-old 2 +129491 6963 Uzumaki 's interesting social parallel and defiant aesthetic seems a prostituted muse ... 1 +129492 6963 Uzumaki 's interesting social parallel and defiant aesthetic 2 +129493 6963 Uzumaki 's 2 +129494 6963 Uzumaki 2 +129495 6963 interesting social parallel and defiant aesthetic 3 +129496 6963 interesting social 3 +129497 6963 parallel and defiant aesthetic 2 +129498 6963 and defiant aesthetic 2 +129499 6963 defiant aesthetic 2 +129500 6963 seems a prostituted muse ... 1 +129501 6963 seems a prostituted muse 1 +129502 6963 a prostituted muse 2 +129503 6963 prostituted muse 1 +129504 6963 prostituted 2 +129505 6964 The film 's stagecrafts are intimate and therefore bolder than the otherwise calculated artifice that defines and overwhelms the film 's production design . 2 +129506 6964 The film 's stagecrafts 2 +129507 6964 stagecrafts 2 +129508 6964 are intimate and therefore bolder than the otherwise calculated artifice that defines and overwhelms the film 's production design . 2 +129509 6964 are intimate and therefore bolder than the otherwise calculated artifice that defines and overwhelms the film 's production design 1 +129510 6964 are intimate and therefore bolder 3 +129511 6964 intimate and therefore bolder 4 +129512 6964 intimate and therefore 2 +129513 6964 bolder 3 +129514 6964 than the otherwise calculated artifice that defines and overwhelms the film 's production design 2 +129515 6964 the otherwise calculated artifice that defines and overwhelms the film 's production design 1 +129516 6964 the otherwise calculated artifice 2 +129517 6964 otherwise calculated artifice 2 +129518 6964 otherwise calculated 3 +129519 6964 that defines and overwhelms the film 's production design 2 +129520 6964 defines and overwhelms the film 's production design 2 +129521 6964 defines and overwhelms 2 +129522 6964 defines and 2 +129523 6964 the film 's production design 2 +129524 6965 A real audience-pleaser that will strike a chord with anyone who 's ever waited in a doctor 's office , emergency room , hospital bed or insurance company office . 3 +129525 6965 A real audience-pleaser that will strike a chord with anyone who 's ever 3 +129526 6965 A real audience-pleaser 4 +129527 6965 real audience-pleaser 3 +129528 6965 audience-pleaser 3 +129529 6965 that will strike a chord with anyone who 's ever 3 +129530 6965 will strike a chord with anyone who 's ever 3 +129531 6965 strike a chord with anyone who 's ever 3 +129532 6965 strike a chord 3 +129533 6965 with anyone who 's ever 2 +129534 6965 anyone who 's ever 2 +129535 6965 who 's ever 2 +129536 6965 waited in a doctor 's office , emergency room , hospital bed or insurance company office . 2 +129537 6965 waited in a doctor 's office , emergency room , hospital bed or insurance company office 2 +129538 6965 waited 2 +129539 6965 in a doctor 's office , emergency room , hospital bed or insurance company office 1 +129540 6965 a doctor 's office , emergency room , hospital bed or insurance company office 3 +129541 6965 a doctor 's 2 +129542 6965 doctor 's 2 +129543 6965 doctor 2 +129544 6965 office , emergency room , hospital bed or insurance company office 2 +129545 6965 , emergency room , hospital bed or insurance company office 2 +129546 6965 emergency room , hospital bed or insurance company office 2 +129547 6965 emergency 2 +129548 6965 room , hospital bed or insurance company office 2 +129549 6965 , hospital bed or insurance company office 2 +129550 6965 hospital bed or insurance company office 2 +129551 6965 bed or insurance company office 2 +129552 6965 or insurance company office 2 +129553 6965 insurance company office 3 +129554 6965 company office 2 +129555 6966 Huppert and Girardot give performances of exceptional honesty . 4 +129556 6966 Huppert and Girardot 2 +129557 6966 Huppert and 2 +129558 6966 Girardot 2 +129559 6966 give performances of exceptional honesty . 3 +129560 6966 give performances of exceptional honesty 3 +129561 6966 performances of exceptional honesty 4 +129562 6966 of exceptional honesty 3 +129563 6966 exceptional honesty 3 +129564 6967 Tense , terrific , sweaty-palmed fun . 3 +129565 6967 Tense , terrific , sweaty-palmed fun 4 +129566 6967 Tense , 2 +129567 6967 terrific , sweaty-palmed fun 3 +129568 6967 , sweaty-palmed fun 4 +129569 6967 sweaty-palmed fun 4 +129570 6967 sweaty-palmed 2 +129571 6968 It 's refreshing that someone understands the need for the bad boy ; Diesel , with his brawny frame and cool , composed delivery , fits the bill perfectly . 4 +129572 6968 It 's refreshing that someone understands the need for the bad boy ; Diesel , with his brawny frame and cool , composed delivery , fits the bill perfectly 4 +129573 6968 It 's refreshing that someone understands the need for the bad boy ; 4 +129574 6968 It 's refreshing that someone understands the need for the bad boy 3 +129575 6968 's refreshing that someone understands the need for the bad boy 3 +129576 6968 's refreshing 3 +129577 6968 that someone understands the need for the bad boy 2 +129578 6968 someone understands the need for the bad boy 3 +129579 6968 understands the need for the bad boy 2 +129580 6968 the need for the bad boy 2 +129581 6968 for the bad boy 2 +129582 6968 the bad boy 2 +129583 6968 bad boy 2 +129584 6968 Diesel , with his brawny frame and cool , composed delivery , fits the bill perfectly 3 +129585 6968 , with his brawny frame and cool , composed delivery , fits the bill perfectly 3 +129586 6968 with his brawny frame and cool , composed delivery , fits the bill perfectly 2 +129587 6968 with his brawny frame and cool , composed delivery 3 +129588 6968 his brawny frame and cool , composed delivery 3 +129589 6968 his brawny frame and 2 +129590 6968 his brawny frame 2 +129591 6968 brawny frame 2 +129592 6968 cool , composed delivery 3 +129593 6968 , composed delivery 3 +129594 6968 composed delivery 3 +129595 6968 , fits the bill perfectly 4 +129596 6968 fits the bill perfectly 4 +129597 6968 fits the bill 3 +129598 6968 the bill 2 +129599 6969 A lovely film for the holiday season . 3 +129600 6969 A lovely film for the holiday season 3 +129601 6969 for the holiday season 2 +129602 6969 the holiday season 2 +129603 6970 Though Jones and Snipes are enthralling 3 +129604 6970 Jones and Snipes are enthralling 3 +129605 6970 Jones and Snipes 2 +129606 6970 Jones and 2 +129607 6970 are enthralling 3 +129608 6970 rhetoric and 2 +129609 6971 Devoid of any of the qualities that made the first film so special . 0 +129610 6971 Devoid of any of the qualities that made the first film so special 2 +129611 6971 of any of the qualities that made the first film so special 2 +129612 6971 any of the qualities that made the first film so special 2 +129613 6971 of the qualities that made the first film so special 3 +129614 6971 the qualities that made the first film so special 3 +129615 6971 the qualities 3 +129616 6971 that made the first film so special 3 +129617 6971 made the first film so special 3 +129618 6971 the first film so special 3 +129619 6971 so special 3 +129620 6972 This is the kind of movie where the big scene is a man shot out of a cannon into a vat of ice cream . 1 +129621 6972 is the kind of movie where the big scene is a man shot out of a cannon into a vat of ice cream . 2 +129622 6972 is the kind of movie where the big scene is a man shot out of a cannon into a vat of ice cream 1 +129623 6972 the kind of movie where the big scene is a man shot out of a cannon into a vat of ice cream 2 +129624 6972 where the big scene is a man shot out of a cannon into a vat of ice cream 1 +129625 6972 the big scene is a man shot out of a cannon into a vat of ice cream 2 +129626 6972 the big scene 2 +129627 6972 big scene 2 +129628 6972 is a man shot out of a cannon into a vat of ice cream 2 +129629 6972 a man shot out of a cannon into a vat of ice cream 2 +129630 6972 shot out of a cannon into a vat of ice cream 1 +129631 6972 shot out of a cannon 2 +129632 6972 shot out 2 +129633 6972 of a cannon 2 +129634 6972 a cannon 2 +129635 6972 cannon 2 +129636 6972 into a vat of ice cream 2 +129637 6972 a vat of ice cream 2 +129638 6972 of ice cream 2 +129639 6972 ice cream 2 +129640 6972 cream 2 +129641 6973 A thoroughly awful movie -- dumb , narratively chaotic , visually sloppy ... a weird amalgam of ` The Thing ' and a geriatric ` Scream . ' 0 +129642 6973 A thoroughly awful movie -- dumb , narratively chaotic , visually sloppy ... a weird amalgam of ` The Thing ' and a geriatric 0 +129643 6973 A thoroughly awful movie -- 0 +129644 6973 A thoroughly awful movie 0 +129645 6973 thoroughly awful movie 0 +129646 6973 dumb , narratively chaotic , visually sloppy ... a weird amalgam of ` The Thing ' and a geriatric 0 +129647 6973 dumb , narratively chaotic , visually sloppy ... a weird amalgam 0 +129648 6973 dumb , narratively chaotic , visually sloppy ... 0 +129649 6973 dumb , narratively chaotic , visually sloppy 0 +129650 6973 dumb , narratively chaotic , 0 +129651 6973 dumb , narratively chaotic 0 +129652 6973 dumb , 1 +129653 6973 narratively chaotic 2 +129654 6973 visually sloppy 1 +129655 6973 a weird amalgam 2 +129656 6973 weird amalgam 1 +129657 6973 of ` The Thing ' and a geriatric 2 +129658 6973 ` The Thing ' and a geriatric 2 +129659 6973 The Thing ' and a geriatric 1 +129660 6973 ' and a geriatric 2 +129661 6973 ' and 2 +129662 6973 a geriatric 1 +129663 6973 ` Scream . ' 2 +129664 6973 Scream . ' 2 +129665 6973 Scream . 2 +129666 6974 A film of epic scale with an intimate feeling , a saga of the ups and downs of friendships . 3 +129667 6974 A film of epic scale with an intimate feeling , a saga of the ups and downs of friendships 4 +129668 6974 A film of epic scale 4 +129669 6974 of epic scale 3 +129670 6974 epic scale 3 +129671 6974 with an intimate feeling , a saga of the ups and downs of friendships 3 +129672 6974 an intimate feeling , a saga of the ups and downs of friendships 3 +129673 6974 an intimate feeling , 3 +129674 6974 an intimate feeling 3 +129675 6974 intimate feeling 3 +129676 6974 a saga of the ups and downs of friendships 3 +129677 6974 a saga 3 +129678 6974 of the ups and downs of friendships 2 +129679 6974 the ups and downs of friendships 3 +129680 6974 the ups and downs 2 +129681 6974 ups and downs 2 +129682 6974 ups and 2 +129683 6974 downs 2 +129684 6974 of friendships 2 +129685 6975 A pure participatory event that malnourished intellectuals will gulp down in a frenzy . 2 +129686 6975 A pure participatory event that malnourished intellectuals 1 +129687 6975 A pure participatory event 3 +129688 6975 pure participatory event 2 +129689 6975 participatory event 2 +129690 6975 that malnourished intellectuals 2 +129691 6975 malnourished intellectuals 1 +129692 6975 malnourished 1 +129693 6975 will gulp down in a frenzy . 2 +129694 6975 will gulp down in a frenzy 2 +129695 6975 gulp down in a frenzy 2 +129696 6975 gulp down 2 +129697 6975 gulp 2 +129698 6975 in a frenzy 2 +129699 6975 a frenzy 2 +129700 6976 Ah , what the hell . 2 +129701 6976 , what the hell . 1 +129702 6976 what the hell . 1 +129703 6976 what the hell 1 +129704 6977 Parris ' performance is credible and remarkably mature . 3 +129705 6977 Parris ' performance 2 +129706 6977 Parris ' 2 +129707 6977 Parris 2 +129708 6977 is credible and remarkably mature . 3 +129709 6977 is credible and remarkably mature 3 +129710 6977 credible and remarkably mature 4 +129711 6977 credible and 2 +129712 6977 remarkably mature 4 +129713 6978 God is great , the movie 's not . 2 +129714 6978 , the movie 's not . 2 +129715 6978 the movie 's not . 2 +129716 6979 Great performances , stylish cinematography and a gritty feel help make Gangster No. 1 a worthwhile moviegoing experience . 4 +129717 6979 Great performances , stylish cinematography and a gritty feel help 3 +129718 6979 Great performances , stylish cinematography and 4 +129719 6979 Great performances , stylish cinematography 4 +129720 6979 Great performances , 4 +129721 6979 stylish cinematography 3 +129722 6979 a gritty feel help 2 +129723 6979 gritty feel help 2 +129724 6979 feel help 2 +129725 6979 make Gangster No. 1 a worthwhile moviegoing experience . 3 +129726 6979 make Gangster No. 1 a worthwhile moviegoing experience 4 +129727 6979 Gangster No. 1 a worthwhile moviegoing experience 4 +129728 6979 a worthwhile moviegoing experience 3 +129729 6979 worthwhile moviegoing experience 3 +129730 6979 moviegoing experience 2 +129731 6980 Highly engaging . 4 +129732 6981 Will you go ape over this movie ? 2 +129733 6981 Will you go ape over this movie 2 +129734 6981 go ape over this movie 4 +129735 6981 go ape 3 +129736 6981 ape 2 +129737 6981 over this movie 2 +129738 6982 ... an hour-and-a-half of inoffensive , unmemorable filler . 0 +129739 6982 an hour-and-a-half of inoffensive , unmemorable filler . 0 +129740 6982 an hour-and-a-half of inoffensive 2 +129741 6982 of inoffensive 2 +129742 6982 , unmemorable filler . 0 +129743 6982 unmemorable filler . 1 +129744 6982 unmemorable filler 1 +129745 6982 filler 2 +129746 6983 It 's not a bad premise , just a bad movie . 0 +129747 6983 's not a bad premise , just a bad movie . 0 +129748 6983 's not a bad premise , just a bad movie 0 +129749 6983 a bad premise , just a bad movie 0 +129750 6983 a bad premise , just 0 +129751 6983 a bad premise , 1 +129752 6984 Schnitzler 's film has a great hook , some clever bits and well-drawn , if standard issue , characters , but is still only partly satisfying . 2 +129753 6984 Schnitzler 's film 2 +129754 6984 has a great hook , some clever bits and well-drawn , if standard issue , characters , but is still only partly satisfying . 2 +129755 6984 has a great hook , some clever bits and well-drawn , if standard issue , characters , but is still only partly satisfying 2 +129756 6984 has a great hook , some clever bits and well-drawn , if standard issue , characters , but 3 +129757 6984 has a great hook , some clever bits and well-drawn , if standard issue , characters , 3 +129758 6984 has a great hook , some clever bits and well-drawn , if standard issue , characters 4 +129759 6984 a great hook , some clever bits and well-drawn , if standard issue , characters 2 +129760 6984 a great hook , some clever bits and 4 +129761 6984 a great hook , some clever bits 3 +129762 6984 a great hook , 3 +129763 6984 a great hook 2 +129764 6984 great hook 3 +129765 6984 some clever bits 3 +129766 6984 clever bits 3 +129767 6984 well-drawn , if standard issue , characters 3 +129768 6984 well-drawn , if standard issue , 2 +129769 6984 well-drawn 2 +129770 6984 , if standard issue , 2 +129771 6984 if standard issue , 2 +129772 6984 if standard issue 2 +129773 6984 standard issue 1 +129774 6984 is still only partly satisfying 2 +129775 6984 only partly satisfying 2 +129776 6984 partly satisfying 3 +129777 6985 Unfortunately , Carvey 's rubber-face routine is no match for the insipid script he has crafted with Harris Goldberg . 1 +129778 6985 , Carvey 's rubber-face routine is no match for the insipid script he has crafted with Harris Goldberg . 2 +129779 6985 Carvey 's rubber-face routine is no match for the insipid script he has crafted with Harris Goldberg . 0 +129780 6985 Carvey 's rubber-face routine 2 +129781 6985 rubber-face routine 1 +129782 6985 rubber-face 2 +129783 6985 is no match for the insipid script he has crafted with Harris Goldberg . 2 +129784 6985 is no match for the insipid script he has crafted with Harris Goldberg 1 +129785 6985 no match for the insipid script he has crafted with Harris Goldberg 1 +129786 6985 no match 2 +129787 6985 for the insipid script he has crafted with Harris Goldberg 1 +129788 6985 the insipid script he has crafted with Harris Goldberg 2 +129789 6985 the insipid script 0 +129790 6985 insipid script 0 +129791 6985 he has crafted with Harris Goldberg 2 +129792 6985 has crafted with Harris Goldberg 2 +129793 6985 crafted with Harris Goldberg 2 +129794 6985 with Harris Goldberg 2 +129795 6985 Harris Goldberg 2 +129796 6985 Goldberg 2 +129797 6986 ... begins with promise , but runs aground after being snared in its own tangled plot . 1 +129798 6986 begins with promise , but runs aground after being snared in its own tangled plot . 1 +129799 6986 begins with promise , but runs aground after being snared in its own tangled plot 1 +129800 6986 begins with promise , but runs 1 +129801 6986 begins with promise , but 2 +129802 6986 begins with promise , 3 +129803 6986 begins with promise 2 +129804 6986 with promise 3 +129805 6986 aground after being snared in its own tangled plot 1 +129806 6986 aground 1 +129807 6986 after being snared in its own tangled plot 1 +129808 6986 being snared in its own tangled plot 1 +129809 6986 snared in its own tangled plot 1 +129810 6986 snared 2 +129811 6986 in its own tangled plot 2 +129812 6986 its own tangled plot 2 +129813 6986 own tangled plot 2 +129814 6986 tangled plot 2 +129815 6987 insightfully written , delicately performed 4 +129816 6987 insightfully written 4 +129817 6987 , delicately performed 3 +129818 6987 delicately performed 3 +129819 6988 There 's nothing remotely topical or sexy here . 1 +129820 6988 's nothing remotely topical or sexy here . 1 +129821 6988 's nothing remotely topical or sexy here 2 +129822 6988 's nothing remotely topical or sexy 2 +129823 6988 nothing remotely topical or sexy 2 +129824 6988 remotely topical or sexy 1 +129825 6988 topical or sexy 2 +129826 6988 topical or 2 +129827 6989 The movie 's messages are quite admirable , but 2 +129828 6989 The movie 's messages are quite admirable , 3 +129829 6989 The movie 's messages are quite admirable 4 +129830 6989 The movie 's messages 2 +129831 6989 are quite admirable 3 +129832 6989 quite admirable 4 +129833 6989 too often strains 1 +129834 6989 often strains 1 +129835 6989 credulity 2 +129836 6990 In a 102-minute film , Aaliyah gets at most 20 minutes of screen time . 2 +129837 6990 In a 102-minute film 2 +129838 6990 a 102-minute film 2 +129839 6990 102-minute film 2 +129840 6990 , Aaliyah gets at most 20 minutes of screen time . 2 +129841 6990 Aaliyah gets at most 20 minutes of screen time . 2 +129842 6990 gets at most 20 minutes of screen time . 2 +129843 6990 gets at most 20 minutes of screen time 2 +129844 6990 at most 20 minutes of screen time 2 +129845 6990 at most 20 minutes 2 +129846 6990 at most 20 2 +129847 6990 at most 3 +129848 6990 of screen time 2 +129849 6990 screen time 2 +129850 6991 The results are far more alienating than involving . 1 +129851 6991 are far more alienating than involving . 1 +129852 6991 are far more alienating than involving 1 +129853 6991 far more alienating than involving 1 +129854 6991 alienating than involving 2 +129855 6992 It forces you to watch people doing unpleasant things to each other and themselves , and it maintains a cool distance from its material that is deliberately unsettling . 1 +129856 6992 It forces you to watch people doing unpleasant things to each other and themselves , and it maintains a cool distance from its material that is deliberately unsettling 1 +129857 6992 It forces you to watch people doing unpleasant things to each other and themselves , and 1 +129858 6992 It forces you to watch people doing unpleasant things to each other and themselves , 1 +129859 6992 It forces you to watch people doing unpleasant things to each other and themselves 3 +129860 6992 forces you to watch people doing unpleasant things to each other and themselves 1 +129861 6992 you to watch people doing unpleasant things to each other and themselves 1 +129862 6992 to watch people doing unpleasant things to each other and themselves 2 +129863 6992 watch people doing unpleasant things to each other and themselves 1 +129864 6992 watch people 3 +129865 6992 doing unpleasant things to each other and themselves 1 +129866 6992 doing unpleasant things 2 +129867 6992 unpleasant things 2 +129868 6992 to each other and themselves 2 +129869 6992 each other and themselves 2 +129870 6992 each other and 2 +129871 6992 it maintains a cool distance from its material that is deliberately unsettling 2 +129872 6992 maintains a cool distance from its material that is deliberately unsettling 2 +129873 6992 maintains a cool distance 3 +129874 6992 a cool distance 2 +129875 6992 cool distance 2 +129876 6992 from its material that is deliberately unsettling 1 +129877 6992 its material that is deliberately unsettling 1 +129878 6992 its material 2 +129879 6992 that is deliberately unsettling 2 +129880 6992 is deliberately unsettling 1 +129881 6992 deliberately unsettling 2 +129882 6993 Neither quite a comedy nor a romance , more of an impish divertissement of themes that interest Attal and Gainsbourg -- they live together -- the film has a lot of charm . 3 +129883 6993 Neither quite a comedy nor a romance 2 +129884 6993 quite a comedy nor a romance 2 +129885 6993 quite a comedy nor 3 +129886 6993 , more of an impish divertissement of themes that interest Attal and Gainsbourg -- they live together -- the film has a lot of charm . 3 +129887 6993 more of an impish divertissement of themes that interest Attal and Gainsbourg -- they live together -- the film has a lot of charm . 3 +129888 6993 more of an impish divertissement of themes that interest Attal and Gainsbourg 2 +129889 6993 of an impish divertissement of themes that interest Attal and Gainsbourg 2 +129890 6993 an impish divertissement of themes that interest Attal and Gainsbourg 2 +129891 6993 an impish divertissement 2 +129892 6993 impish divertissement 1 +129893 6993 impish 1 +129894 6993 divertissement 2 +129895 6993 of themes that interest Attal and Gainsbourg 2 +129896 6993 themes that interest Attal and Gainsbourg 3 +129897 6993 that interest Attal and Gainsbourg 3 +129898 6993 interest Attal and Gainsbourg 2 +129899 6993 Attal and Gainsbourg 2 +129900 6993 Attal and 2 +129901 6993 Gainsbourg 2 +129902 6993 -- they live together -- the film has a lot of charm . 3 +129903 6993 -- they live together -- 2 +129904 6993 they live together -- 2 +129905 6993 they live together 2 +129906 6993 live together 3 +129907 6993 the film has a lot of charm . 3 +129908 6993 has a lot of charm . 4 +129909 6993 has a lot of charm 3 +129910 6993 a lot of charm 3 +129911 6994 Graham Greene 's novel of colonialism and empire is elevated by Michael Caine 's performance as a weary journalist in a changing world . 3 +129912 6994 Graham Greene 's novel of colonialism and empire 2 +129913 6994 Graham Greene 's novel 3 +129914 6994 Graham Greene 's 2 +129915 6994 of colonialism and empire 2 +129916 6994 colonialism and empire 2 +129917 6994 colonialism and 2 +129918 6994 colonialism 2 +129919 6994 is elevated by Michael Caine 's performance as a weary journalist in a changing world . 3 +129920 6994 is elevated by Michael Caine 's performance as a weary journalist in a changing world 3 +129921 6994 elevated by Michael Caine 's performance as a weary journalist in a changing world 4 +129922 6994 elevated by Michael Caine 's performance 3 +129923 6994 by Michael Caine 's performance 2 +129924 6994 Michael Caine 's performance 2 +129925 6994 Michael Caine 's 2 +129926 6994 Caine 's 2 +129927 6994 as a weary journalist in a changing world 2 +129928 6994 a weary journalist in a changing world 2 +129929 6994 a weary journalist 1 +129930 6994 weary journalist 2 +129931 6994 in a changing world 2 +129932 6994 a changing world 3 +129933 6994 changing world 2 +129934 6995 If that does n't clue you in that something 's horribly wrong , nothing will . 0 +129935 6995 If that does n't clue you in that something 's horribly wrong 1 +129936 6995 that does n't clue you in that something 's horribly wrong 1 +129937 6995 does n't clue you in that something 's horribly wrong 1 +129938 6995 clue you in that something 's horribly wrong 1 +129939 6995 clue you 2 +129940 6995 in that something 's horribly wrong 0 +129941 6995 that something 's horribly wrong 2 +129942 6995 something 's horribly wrong 1 +129943 6995 's horribly wrong 1 +129944 6995 horribly wrong 0 +129945 6995 , nothing will . 2 +129946 6995 nothing will . 2 +129947 6995 will . 2 +129948 6996 Has all the right elements but completely fails to gel together . 2 +129949 6996 Has all the right elements 3 +129950 6996 all the right elements 4 +129951 6996 the right elements 2 +129952 6996 right elements 3 +129953 6996 but completely fails to gel together . 1 +129954 6996 but completely 3 +129955 6996 fails to gel together . 1 +129956 6996 fails to gel together 1 +129957 6996 to gel together 2 +129958 6996 gel together 2 +129959 6997 Never Again , while nothing special , is pleasant , diverting and modest -- definitely a step in the right direction . 3 +129960 6997 , while nothing special , is pleasant , diverting and modest -- definitely a step in the right direction . 3 +129961 6997 while nothing special , is pleasant , diverting and modest -- definitely a step in the right direction . 3 +129962 6997 while nothing special 2 +129963 6997 , is pleasant , diverting and modest -- definitely a step in the right direction . 3 +129964 6997 is pleasant , diverting and modest -- definitely a step in the right direction . 4 +129965 6997 is pleasant , diverting and modest -- definitely a step in the right direction 3 +129966 6997 is pleasant , diverting and modest 3 +129967 6997 pleasant , diverting and modest 3 +129968 6997 , diverting and modest 2 +129969 6997 diverting and modest 3 +129970 6997 diverting and 2 +129971 6997 -- definitely a step in the right direction 4 +129972 6997 definitely a step in the right direction 3 +129973 6998 The magic -LRB- and original running time -RRB- of ace Japanimator Hayao Miyazaki 's Spirited Away survives intact in BV 's re-voiced version . 3 +129974 6998 The magic -LRB- and original running time -RRB- of ace Japanimator Hayao Miyazaki 's Spirited Away 3 +129975 6998 The magic -LRB- and original running time -RRB- 2 +129976 6998 -LRB- and original running time -RRB- 2 +129977 6998 -LRB- and original running time 2 +129978 6998 original running time 2 +129979 6998 of ace Japanimator Hayao Miyazaki 's Spirited Away 3 +129980 6998 ace Japanimator Hayao Miyazaki 's Spirited Away 3 +129981 6998 ace Japanimator Hayao Miyazaki 's 2 +129982 6998 Japanimator Hayao Miyazaki 's 2 +129983 6998 Japanimator 2 +129984 6998 Hayao Miyazaki 's 2 +129985 6998 Hayao 2 +129986 6998 survives intact in BV 's re-voiced version . 3 +129987 6998 survives intact in BV 's re-voiced version 2 +129988 6998 survives 2 +129989 6998 intact in BV 's re-voiced version 2 +129990 6998 in BV 's re-voiced version 2 +129991 6998 BV 's re-voiced version 2 +129992 6998 BV 's 2 +129993 6998 BV 2 +129994 6998 re-voiced version 1 +129995 6998 re-voiced 2 +129996 6999 A tasty masala . 3 +129997 6999 tasty masala . 2 +129998 6999 masala . 2 +129999 6999 masala 2 +130000 7000 Cherish would 've worked a lot better had it been a short film . 1 +130001 7000 would 've worked a lot better had it been a short film . 1 +130002 7000 would 've worked a lot better had it been a short film 1 +130003 7000 've worked a lot better had it been a short film 2 +130004 7000 worked a lot better had it been a short film 2 +130005 7000 a lot better had it been a short film 2 +130006 7000 had it been a short film 2 +130007 7000 had it 2 +130008 7000 been a short film 2 +130009 7000 a short film 2 +130010 7000 short film 2 +130011 7001 You 'll end up moved . 3 +130012 7001 'll end up moved . 2 +130013 7001 'll end up moved 3 +130014 7001 end up moved 2 +130015 7002 A sweet , tender sermon about a 12-year-old Welsh boy more curious about God than girls , who learns that believing in something does matter . 3 +130016 7002 A sweet , tender sermon about a 12-year-old Welsh boy more curious about God than girls , who learns that believing in something does matter 3 +130017 7002 A sweet , tender sermon about a 12-year-old Welsh boy more curious about God 3 +130018 7002 A sweet , tender sermon about a 12-year-old Welsh boy more curious 3 +130019 7002 A sweet , tender sermon 3 +130020 7002 sweet , tender sermon 4 +130021 7002 , tender sermon 2 +130022 7002 tender sermon 3 +130023 7002 about a 12-year-old Welsh boy more curious 2 +130024 7002 a 12-year-old Welsh boy more curious 2 +130025 7002 a 12-year-old Welsh boy 2 +130026 7002 12-year-old Welsh boy 2 +130027 7002 Welsh boy 2 +130028 7002 more curious 3 +130029 7002 than girls , who learns that believing in something does matter 3 +130030 7002 girls , who learns that believing in something does matter 3 +130031 7002 who learns that believing in something does matter 4 +130032 7002 learns that believing in something does matter 3 +130033 7002 that believing in something does matter 3 +130034 7002 believing in something does matter 3 +130035 7002 believing in something 2 +130036 7002 in something 2 +130037 7002 does matter 2 +130038 7003 What it lacks in substance it makes up for in heart . 3 +130039 7003 What it lacks in substance 2 +130040 7003 it lacks in substance 1 +130041 7003 lacks in substance 0 +130042 7003 it makes up for in heart . 3 +130043 7003 makes up for in heart . 3 +130044 7003 makes up for in heart 3 +130045 7003 for in heart 2 +130046 7003 in heart 2 +130047 7004 Distinctly sub-par ... more likely to drown a viewer in boredom than to send any shivers down his spine . 0 +130048 7004 Distinctly sub-par ... more likely to drown a viewer in boredom than to send any shivers down his spine 1 +130049 7004 Distinctly sub-par ... 1 +130050 7004 Distinctly sub-par 0 +130051 7004 sub-par 1 +130052 7004 more likely to drown a viewer in boredom than to send any shivers down his spine 1 +130053 7004 likely to drown a viewer in boredom than to send any shivers down his spine 0 +130054 7004 to drown a viewer in boredom than to send any shivers down his spine 0 +130055 7004 drown a viewer in boredom than to send any shivers down his spine 1 +130056 7004 drown a viewer in boredom 1 +130057 7004 drown a viewer 2 +130058 7004 than to send any shivers down his spine 2 +130059 7004 to send any shivers down his spine 2 +130060 7004 send any shivers down his spine 2 +130061 7004 send any shivers 2 +130062 7004 any shivers 2 +130063 7004 shivers 2 +130064 7004 down his spine 2 +130065 7004 his spine 2 +130066 7005 Reyes ' directorial debut has good things to offer , but ultimately it 's undone by a sloppy script 1 +130067 7005 Reyes ' directorial debut has good things to offer , but 2 +130068 7005 Reyes ' directorial debut has good things to offer , 3 +130069 7005 Reyes ' directorial debut has good things to offer 3 +130070 7005 Reyes ' directorial debut 2 +130071 7005 has good things to offer 2 +130072 7005 good things to offer 3 +130073 7005 things to offer 2 +130074 7005 ultimately it 's undone by a sloppy script 1 +130075 7005 it 's undone by a sloppy script 1 +130076 7005 's undone by a sloppy script 1 +130077 7005 undone by a sloppy script 1 +130078 7005 by a sloppy script 1 +130079 7005 a sloppy script 1 +130080 7005 sloppy script 1 +130081 7006 The trashy teen-sleaze equivalent of Showgirls . 1 +130082 7006 The trashy teen-sleaze equivalent of Showgirls 2 +130083 7006 The trashy teen-sleaze equivalent 0 +130084 7006 trashy teen-sleaze equivalent 1 +130085 7006 teen-sleaze equivalent 1 +130086 7006 teen-sleaze 1 +130087 7006 of Showgirls 2 +130088 7007 Snoots will no doubt rally to its cause , trotting out threadbare standbys like ` masterpiece ' and ` triumph ' and all that malarkey , but rarely does an established filmmaker so ardently waste viewers ' time with a gobbler like this . 1 +130089 7007 Snoots 2 +130090 7007 will no doubt rally to its cause , trotting out threadbare standbys like ` masterpiece ' and ` triumph ' and all that malarkey , but rarely does an established filmmaker so ardently waste viewers ' time with a gobbler like this . 1 +130091 7007 will no doubt rally to its cause , trotting out threadbare standbys like ` masterpiece ' and ` triumph ' and all that malarkey , but rarely does an established filmmaker so ardently waste viewers ' time with a gobbler like this 0 +130092 7007 will no doubt rally to its cause , trotting out threadbare standbys like ` masterpiece ' and ` triumph ' and all that malarkey , but rarely 1 +130093 7007 will no doubt rally to its cause , trotting out threadbare standbys like ` masterpiece ' and ` triumph ' and all that malarkey , but 1 +130094 7007 will no doubt rally to its cause , trotting out threadbare standbys like ` masterpiece ' and ` triumph ' and all that malarkey , 3 +130095 7007 will no doubt rally to its cause , trotting out threadbare standbys like ` masterpiece ' and ` triumph ' and all that malarkey 2 +130096 7007 will no doubt 3 +130097 7007 rally to its cause , trotting out threadbare standbys like ` masterpiece ' and ` triumph ' and all that malarkey 2 +130098 7007 rally to its cause , 3 +130099 7007 rally to its cause 2 +130100 7007 to its cause 2 +130101 7007 its cause 2 +130102 7007 trotting out threadbare standbys like ` masterpiece ' and ` triumph ' and all that malarkey 2 +130103 7007 trotting out threadbare standbys 1 +130104 7007 threadbare standbys 1 +130105 7007 standbys 2 +130106 7007 like ` masterpiece ' and ` triumph ' and all that malarkey 2 +130107 7007 ` masterpiece ' and ` triumph ' and all that malarkey 1 +130108 7007 ` masterpiece ' and ` triumph ' and 4 +130109 7007 ` masterpiece ' and ` triumph ' 4 +130110 7007 masterpiece ' and ` triumph ' 4 +130111 7007 ' and ` triumph ' 2 +130112 7007 and ` triumph ' 2 +130113 7007 ` triumph ' 3 +130114 7007 triumph ' 3 +130115 7007 all that malarkey 2 +130116 7007 that malarkey 1 +130117 7007 malarkey 1 +130118 7007 does an established filmmaker so ardently waste viewers ' time with a gobbler like this 1 +130119 7007 does an established filmmaker so 2 +130120 7007 does an established filmmaker 3 +130121 7007 an established filmmaker 3 +130122 7007 established filmmaker 3 +130123 7007 ardently waste viewers ' time with a gobbler like this 0 +130124 7007 waste viewers ' time with a gobbler like this 1 +130125 7007 waste viewers ' time 0 +130126 7007 viewers ' time 2 +130127 7007 with a gobbler like this 2 +130128 7007 a gobbler like this 3 +130129 7007 a gobbler 2 +130130 7007 gobbler 2 +130131 7008 It 's better suited for the history or biography channel , but there 's no arguing the tone of the movie - it leaves a bad taste in your mouth and questions on your mind . 1 +130132 7008 It 's better suited for the history or biography channel , but there 's no arguing the tone of the movie - it leaves a bad taste in your mouth and questions on your mind 2 +130133 7008 It 's better suited for the history or biography channel , but there 's no arguing the tone of the movie - 2 +130134 7008 It 's better suited for the history or biography channel , but there 's no arguing the tone of the movie 2 +130135 7008 It 's better suited for the history or biography channel , but 2 +130136 7008 It 's better suited for the history or biography channel , 1 +130137 7008 It 's better suited for the history or biography channel 2 +130138 7008 's better suited for the history or biography channel 2 +130139 7008 suited for the history or biography channel 3 +130140 7008 for the history or biography channel 2 +130141 7008 the history or biography channel 2 +130142 7008 history or biography channel 2 +130143 7008 or biography channel 2 +130144 7008 biography channel 3 +130145 7008 there 's no arguing the tone of the movie 2 +130146 7008 's no arguing the tone of the movie 2 +130147 7008 no arguing the tone of the movie 2 +130148 7008 arguing the tone of the movie 2 +130149 7008 the tone of the movie 2 +130150 7008 it leaves a bad taste in your mouth and questions on your mind 0 +130151 7008 leaves a bad taste in your mouth and questions on your mind 2 +130152 7008 leaves a bad taste in your mouth and questions 0 +130153 7008 a bad taste in your mouth and questions 1 +130154 7008 a bad taste 1 +130155 7008 bad taste 1 +130156 7008 in your mouth and questions 2 +130157 7008 your mouth and questions 2 +130158 7008 mouth and questions 2 +130159 7008 mouth and 2 +130160 7008 on your mind 2 +130161 7009 Buries an interesting storyline 2 +130162 7009 Buries 2 +130163 7009 an interesting storyline 3 +130164 7009 interesting storyline 3 +130165 7009 morality and 2 +130166 7009 such a mountain 2 +130167 7009 a mountain 2 +130168 7009 borrowed images 1 +130169 7009 borrowed 2 +130170 7009 that it might more accurately be titled Mr. Chips off the Old Block 2 +130171 7009 it might more accurately be titled Mr. Chips off the Old Block 2 +130172 7009 might more accurately be titled Mr. Chips off the Old Block 1 +130173 7009 might more accurately 2 +130174 7009 be titled Mr. Chips off the Old Block 2 +130175 7009 titled Mr. Chips off the Old Block 2 +130176 7009 Mr. Chips off the Old Block 2 +130177 7009 Mr. Chips 2 +130178 7009 off the Old Block 2 +130179 7009 the Old Block 2 +130180 7009 Old Block 2 +130181 7010 This one is a few bits funnier than Malle 's dud , if only because the cast is so engagingly messing around like Slob City reductions of Damon Runyon crooks . 3 +130182 7010 is a few bits funnier than Malle 's dud , if only because the cast is so engagingly messing around like Slob City reductions of Damon Runyon crooks . 2 +130183 7010 is a few bits funnier than Malle 's dud , if only because the cast is so engagingly messing around like Slob City reductions of Damon Runyon crooks 3 +130184 7010 is a few bits funnier than Malle 's dud , 2 +130185 7010 is a few bits funnier than Malle 's dud 2 +130186 7010 a few bits funnier than Malle 's dud 2 +130187 7010 a few bits funnier 2 +130188 7010 few bits funnier 2 +130189 7010 bits funnier 3 +130190 7010 than Malle 's dud 3 +130191 7010 Malle 's dud 2 +130192 7010 Malle 's 2 +130193 7010 Malle 2 +130194 7010 if only because the cast is so engagingly messing around like Slob City reductions of Damon Runyon crooks 1 +130195 7010 only because the cast is so engagingly messing around like Slob City reductions of Damon Runyon crooks 1 +130196 7010 because the cast is so engagingly messing around like Slob City reductions of Damon Runyon crooks 1 +130197 7010 the cast is so engagingly messing around like Slob City reductions of Damon Runyon crooks 1 +130198 7010 is so engagingly messing around like Slob City reductions of Damon Runyon crooks 3 +130199 7010 is so engagingly 3 +130200 7010 so engagingly 3 +130201 7010 messing around like Slob City reductions of Damon Runyon crooks 2 +130202 7010 messing around 2 +130203 7010 like Slob City reductions of Damon Runyon crooks 1 +130204 7010 Slob City reductions of Damon Runyon crooks 1 +130205 7010 Slob City reductions 2 +130206 7010 Slob 1 +130207 7010 City reductions 2 +130208 7010 reductions 2 +130209 7010 of Damon Runyon crooks 2 +130210 7010 Damon Runyon crooks 2 +130211 7010 Runyon crooks 2 +130212 7010 Runyon 2 +130213 7010 crooks 2 +130214 7011 The film has several strong performances . 3 +130215 7011 has several strong performances . 3 +130216 7011 has several strong performances 3 +130217 7011 several strong performances 3 +130218 7012 I have a new favorite musical -- and I 'm not even a fan of the genre 3 +130219 7012 I have a new favorite musical -- 4 +130220 7012 I have a new favorite musical 4 +130221 7012 have a new favorite musical 3 +130222 7012 a new favorite musical 3 +130223 7012 new favorite musical 3 +130224 7012 favorite musical 4 +130225 7012 and I 'm not even a fan of the genre 2 +130226 7012 I 'm not even a fan of the genre 1 +130227 7012 'm not even a fan of the genre 2 +130228 7012 'm not even 2 +130229 7012 a fan of the genre 3 +130230 7013 This movie plays like an extended dialogue exercise in Retard 101 . 0 +130231 7013 plays like an extended dialogue exercise in Retard 101 . 0 +130232 7013 plays like an extended dialogue exercise in Retard 101 0 +130233 7013 like an extended dialogue exercise in Retard 101 0 +130234 7013 an extended dialogue exercise in Retard 101 0 +130235 7013 an extended dialogue exercise 2 +130236 7013 extended dialogue exercise 1 +130237 7013 dialogue exercise 2 +130238 7013 in Retard 101 2 +130239 7013 Retard 101 1 +130240 7013 Retard 1 +130241 7014 Ninety minutes of Viva Castro ! 2 +130242 7014 Ninety minutes of Viva Castro 2 +130243 7014 Ninety minutes 2 +130244 7014 of Viva Castro 2 +130245 7014 Viva Castro 2 +130246 7015 An indispensable peek at the art and the agony of making people laugh . 3 +130247 7015 An indispensable peek at the art and the agony of making people 3 +130248 7015 An indispensable peek 2 +130249 7015 indispensable peek 2 +130250 7015 indispensable 3 +130251 7015 at the art and the agony of making people 2 +130252 7015 the art and the agony of making people 2 +130253 7015 the art and 2 +130254 7015 the agony of making people 2 +130255 7015 the agony 2 +130256 7015 of making people 2 +130257 7015 making people 2 +130258 7015 laugh . 2 +130259 7016 Judging by those standards , ` Scratch ' is a pretty decent little documentary . 3 +130260 7016 Judging by those standards 2 +130261 7016 Judging 2 +130262 7016 by those standards 2 +130263 7016 , ` Scratch ' is a pretty decent little documentary . 4 +130264 7016 ` Scratch ' is a pretty decent little documentary . 3 +130265 7016 ` Scratch ' 2 +130266 7016 Scratch ' 2 +130267 7016 is a pretty decent little documentary . 3 +130268 7016 is a pretty decent little documentary 3 +130269 7016 a pretty decent little documentary 3 +130270 7016 pretty decent little documentary 3 +130271 7016 pretty decent 3 +130272 7016 little documentary 2 +130273 7017 Does point the way for adventurous Indian filmmakers toward a crossover into nonethnic markets . 3 +130274 7017 point the way for adventurous Indian filmmakers toward a crossover into nonethnic markets . 4 +130275 7017 point the way for adventurous Indian filmmakers toward a crossover into nonethnic markets 3 +130276 7017 point the way for adventurous Indian filmmakers toward a crossover 3 +130277 7017 the way for adventurous Indian filmmakers toward a crossover 3 +130278 7017 for adventurous Indian filmmakers toward a crossover 3 +130279 7017 adventurous Indian filmmakers toward a crossover 3 +130280 7017 adventurous Indian filmmakers 3 +130281 7017 Indian filmmakers 2 +130282 7017 toward a crossover 2 +130283 7017 a crossover 2 +130284 7017 into nonethnic markets 2 +130285 7017 nonethnic markets 2 +130286 7017 nonethnic 2 +130287 7018 A direct-to-void release , heading nowhere . 2 +130288 7018 A direct-to-void release , heading nowhere 0 +130289 7018 A direct-to-void release , 1 +130290 7018 direct-to-void release , 1 +130291 7018 direct-to-void 1 +130292 7018 release , 2 +130293 7018 heading nowhere 2 +130294 7018 heading 3 +130295 7019 Whether Jason X is this bad on purpose is never clear . 0 +130296 7019 Whether Jason X is this bad on purpose 1 +130297 7019 Jason X is this bad on purpose 0 +130298 7019 is this bad on purpose 0 +130299 7019 this bad on purpose 0 +130300 7019 bad on purpose 2 +130301 7019 on purpose 2 +130302 7019 is never clear . 1 +130303 7019 is never clear 1 +130304 7020 Davis has energy , but she does n't bother to make her heroine 's book sound convincing , the gender-war ideas original , or the comic scenes fly . 2 +130305 7020 Davis has energy , but she does n't bother to make her heroine 's book sound convincing , the gender-war ideas original , or the comic scenes fly 1 +130306 7020 Davis has energy , but 2 +130307 7020 Davis has energy , 2 +130308 7020 Davis has energy 2 +130309 7020 has energy 3 +130310 7020 she does n't bother to make her heroine 's book sound convincing , the gender-war ideas original , or the comic scenes fly 0 +130311 7020 does n't bother to make her heroine 's book sound convincing , the gender-war ideas original , or the comic scenes fly 1 +130312 7020 bother to make her heroine 's book sound convincing , the gender-war ideas original , or the comic scenes fly 1 +130313 7020 to make her heroine 's book sound convincing , the gender-war ideas original , or the comic scenes fly 3 +130314 7020 make her heroine 's book sound convincing , the gender-war ideas original , or the comic scenes fly 3 +130315 7020 her heroine 's book sound convincing , the gender-war ideas original , or the comic scenes fly 3 +130316 7020 her heroine 's book sound convincing , the gender-war ideas original , or 3 +130317 7020 her heroine 's book sound convincing , the gender-war ideas original , 3 +130318 7020 her heroine 's book sound convincing , the gender-war ideas original 3 +130319 7020 her heroine 's book sound convincing , 2 +130320 7020 her heroine 's book sound convincing 3 +130321 7020 her heroine 's 2 +130322 7020 heroine 's 2 +130323 7020 book sound convincing 2 +130324 7020 sound convincing 2 +130325 7020 the gender-war ideas original 2 +130326 7020 gender-war ideas original 3 +130327 7020 gender-war 2 +130328 7020 ideas original 3 +130329 7020 the comic scenes fly 3 +130330 7020 comic scenes fly 3 +130331 7020 scenes fly 2 +130332 7021 Soderbergh , like Kubrick before him , may not touch the planet 's skin , but understands the workings of its spirit . 4 +130333 7021 , like Kubrick before him , may not touch the planet 's skin , but understands the workings of its spirit . 3 +130334 7021 like Kubrick before him , may not touch the planet 's skin , but understands the workings of its spirit . 3 +130335 7021 like Kubrick before him 2 +130336 7021 Kubrick before him 2 +130337 7021 before him 2 +130338 7021 , may not touch the planet 's skin , but understands the workings of its spirit . 3 +130339 7021 may not touch the planet 's skin , but understands the workings of its spirit . 3 +130340 7021 may not touch the planet 's skin , but understands the workings of its spirit 3 +130341 7021 may not touch the planet 's skin , but 2 +130342 7021 may not touch the planet 's skin , 2 +130343 7021 may not touch the planet 's skin 2 +130344 7021 touch the planet 's skin 2 +130345 7021 the planet 's skin 2 +130346 7021 the planet 's 2 +130347 7021 planet 's 2 +130348 7021 understands the workings of its spirit 3 +130349 7021 the workings of its spirit 2 +130350 7021 the workings 2 +130351 7021 workings 2 +130352 7021 of its spirit 3 +130353 7022 ... an incredibly heavy-handed , manipulative dud that feels all too familiar . 0 +130354 7022 an incredibly heavy-handed , manipulative dud that feels all too familiar . 0 +130355 7022 an incredibly heavy-handed , manipulative dud that feels all too familiar 0 +130356 7022 an incredibly heavy-handed , manipulative dud 0 +130357 7022 incredibly heavy-handed , manipulative dud 0 +130358 7022 incredibly heavy-handed , manipulative 2 +130359 7022 heavy-handed , manipulative 1 +130360 7022 that feels all too familiar 2 +130361 7022 feels all too familiar 1 +130362 7023 Unlike Trey Parker , Sandler does n't understand that the idea of exploiting molestation for laughs is funny , not actually exploiting it yourself . 1 +130363 7023 Unlike Trey Parker 2 +130364 7023 Trey Parker 2 +130365 7023 Trey 2 +130366 7023 , Sandler does n't understand that the idea of exploiting molestation for laughs is funny , not actually exploiting it yourself . 1 +130367 7023 Sandler does n't understand that the idea of exploiting molestation for laughs is funny , not actually exploiting it yourself . 1 +130368 7023 does n't understand that the idea of exploiting molestation for laughs is funny , not actually exploiting it yourself . 0 +130369 7023 does n't understand that the idea of exploiting molestation for laughs is funny , not actually exploiting it yourself 1 +130370 7023 understand that the idea of exploiting molestation for laughs is funny , not actually exploiting it yourself 0 +130371 7023 that the idea of exploiting molestation for laughs is funny , not actually exploiting it yourself 1 +130372 7023 the idea of exploiting molestation for laughs is funny , not actually exploiting it yourself 1 +130373 7023 the idea of exploiting molestation for laughs 1 +130374 7023 of exploiting molestation for laughs 1 +130375 7023 exploiting molestation for laughs 0 +130376 7023 exploiting molestation 2 +130377 7023 molestation 1 +130378 7023 for laughs 3 +130379 7023 is funny , not actually exploiting it yourself 3 +130380 7023 is funny , 3 +130381 7023 not actually exploiting it yourself 2 +130382 7023 actually exploiting it yourself 1 +130383 7023 exploiting it yourself 1 +130384 7023 it yourself 2 +130385 7024 Visually engrossing , seldom hammy , honorably Mexican and burns its Kahlories with conviction . 3 +130386 7024 Visually engrossing , seldom hammy , 4 +130387 7024 , seldom hammy , 2 +130388 7024 seldom hammy , 3 +130389 7024 seldom hammy 3 +130390 7024 seldom 2 +130391 7024 honorably Mexican and burns its Kahlories with conviction . 3 +130392 7024 honorably 2 +130393 7024 Mexican and burns its Kahlories with conviction . 2 +130394 7024 Mexican and burns its Kahlories with conviction 2 +130395 7024 Mexican and burns its Kahlories 2 +130396 7024 Mexican and burns 2 +130397 7024 Mexican and 2 +130398 7024 its Kahlories 2 +130399 7024 Kahlories 2 +130400 7024 with conviction 2 +130401 7025 A Sha-Na-Na sketch punctuated with graphic violence . 2 +130402 7025 A Sha-Na-Na sketch 2 +130403 7025 Sha-Na-Na sketch 2 +130404 7025 Sha-Na-Na 2 +130405 7025 punctuated with graphic violence . 1 +130406 7025 punctuated with graphic violence 2 +130407 7025 with graphic violence 2 +130408 7025 graphic violence 1 +130409 7026 It 's a technically superb film , shining with all the usual Spielberg flair , expertly utilizing the talents of his top-notch creative team . 4 +130410 7026 's a technically superb film , shining with all the usual Spielberg flair , expertly utilizing the talents of his top-notch creative team . 4 +130411 7026 's a technically superb film , shining with all the usual Spielberg flair , expertly utilizing the talents of his top-notch creative team 4 +130412 7026 a technically superb film , shining with all the usual Spielberg flair , expertly utilizing the talents of his top-notch creative team 4 +130413 7026 a technically superb film , 4 +130414 7026 a technically superb film 4 +130415 7026 technically superb film 3 +130416 7026 technically superb 4 +130417 7026 shining with all the usual Spielberg flair , expertly utilizing the talents of his top-notch creative team 3 +130418 7026 shining with all the usual Spielberg flair , expertly 4 +130419 7026 shining with all the usual Spielberg flair , 4 +130420 7026 shining with all the usual Spielberg flair 3 +130421 7026 with all the usual Spielberg flair 4 +130422 7026 all the usual Spielberg flair 3 +130423 7026 the usual Spielberg flair 2 +130424 7026 usual Spielberg flair 3 +130425 7026 Spielberg flair 3 +130426 7026 utilizing the talents of his top-notch creative team 3 +130427 7026 utilizing 3 +130428 7026 the talents of his top-notch creative team 4 +130429 7026 of his top-notch creative team 4 +130430 7026 his top-notch creative team 3 +130431 7026 top-notch creative team 4 +130432 7026 creative team 3 +130433 7027 Everything is off . 1 +130434 7027 is off . 1 +130435 7027 is off 2 +130436 7028 Here 's yet another cool crime movie that actually manages to bring something new into the mix . 3 +130437 7028 's yet another cool crime movie that actually manages to bring something new into the mix . 4 +130438 7028 's yet another cool crime movie that actually manages to bring something new into the mix 4 +130439 7028 's yet 2 +130440 7028 another cool crime movie that actually manages to bring something new into the mix 3 +130441 7028 another cool crime movie 3 +130442 7028 cool crime movie 3 +130443 7028 that actually manages to bring something new into the mix 3 +130444 7028 actually manages to bring something new into the mix 3 +130445 7028 manages to bring something new into the mix 3 +130446 7028 to bring something new into the mix 3 +130447 7028 bring something new into the mix 3 +130448 7028 bring something new 3 +130449 7028 into the mix 2 +130450 7029 What a stiflingly unfunny and unoriginal mess this is ! 0 +130451 7029 What a stiflingly unfunny and unoriginal mess this 1 +130452 7029 a stiflingly unfunny and unoriginal mess this 0 +130453 7029 a stiflingly unfunny and unoriginal mess 0 +130454 7029 stiflingly unfunny and unoriginal mess 0 +130455 7029 stiflingly 1 +130456 7029 unfunny and unoriginal mess 1 +130457 7029 and unoriginal mess 1 +130458 7029 unoriginal mess 1 +130459 7029 is ! 2 +130460 7030 Its inescapable absurdities are tantamount to insulting the intelligence of anyone who has n't been living under a rock -LRB- since Sept. 11 -RRB- . 1 +130461 7030 Its inescapable absurdities 0 +130462 7030 inescapable absurdities 1 +130463 7030 are tantamount to insulting the intelligence of anyone who has n't been living under a rock -LRB- since Sept. 11 -RRB- . 1 +130464 7030 are tantamount to insulting the intelligence of anyone who has n't been living under a rock -LRB- since Sept. 11 -RRB- 1 +130465 7030 are tantamount to insulting the intelligence of anyone who has n't been living under a rock 0 +130466 7030 tantamount to insulting the intelligence of anyone who has n't been living under a rock 0 +130467 7030 tantamount 2 +130468 7030 to insulting the intelligence of anyone who has n't been living under a rock 1 +130469 7030 insulting the intelligence of anyone who has n't been living under a rock 2 +130470 7030 the intelligence of anyone who has n't been living under a rock 2 +130471 7030 the intelligence of anyone 2 +130472 7030 of anyone 2 +130473 7030 who has n't been living under a rock 2 +130474 7030 has n't been living under a rock 2 +130475 7030 been living under a rock 2 +130476 7030 living under a rock 1 +130477 7030 under a rock 1 +130478 7030 a rock 2 +130479 7030 -LRB- since Sept. 11 -RRB- 2 +130480 7030 since Sept. 11 -RRB- 2 +130481 7030 since Sept. 11 2 +130482 7030 Sept. 11 2 +130483 7030 Sept. 2 +130484 7031 -LRB- Jackson and Bledel -RRB- seem to have been picked not for their acting chops , but for their looks and appeal to the pre-teen crowd . 1 +130485 7031 -LRB- Jackson and Bledel -RRB- 2 +130486 7031 Jackson and Bledel -RRB- 2 +130487 7031 Jackson and Bledel 2 +130488 7031 Jackson and 2 +130489 7031 Bledel 3 +130490 7031 seem to have been picked not for their acting chops , but for their looks and appeal to the pre-teen crowd . 1 +130491 7031 seem to have been picked not for their acting chops , but for their looks and appeal to the pre-teen crowd 2 +130492 7031 to have been picked not for their acting chops , but for their looks and appeal to the pre-teen crowd 1 +130493 7031 have been picked not for their acting chops , but for their looks and appeal to the pre-teen crowd 2 +130494 7031 have been picked not for their acting chops , but for their looks and 3 +130495 7031 have been picked not for their acting chops , but for their looks 1 +130496 7031 been picked not for their acting chops , but for their looks 1 +130497 7031 picked not for their acting chops , but for their looks 1 +130498 7031 not for their acting chops , but for their looks 1 +130499 7031 for their acting chops , but for their looks 1 +130500 7031 for their acting chops 2 +130501 7031 their acting chops 2 +130502 7031 acting chops 2 +130503 7031 , but for their looks 2 +130504 7031 for their looks 2 +130505 7031 their looks 2 +130506 7031 appeal to the pre-teen crowd 2 +130507 7031 to the pre-teen crowd 2 +130508 7031 the pre-teen crowd 3 +130509 7031 pre-teen crowd 2 +130510 7031 pre-teen 2 +130511 7032 A lovely and beautifully photographed romance . 3 +130512 7032 A lovely and beautifully 3 +130513 7032 lovely and beautifully 4 +130514 7032 photographed romance . 2 +130515 7032 photographed romance 2 +130516 7033 Feels like the work of someone who may indeed have finally aged past his prime ... and , perhaps more than he realizes , just wants to be liked by the people who can still give him work . 1 +130517 7033 Feels like the work of someone who may indeed have finally aged past his prime ... and , perhaps more than he realizes , 1 +130518 7033 Feels like the work of someone who may indeed have finally aged past his prime ... and , perhaps more than he realizes 2 +130519 7033 Feels like the work of someone 2 +130520 7033 like the work of someone 3 +130521 7033 the work of someone 2 +130522 7033 who may indeed have finally aged past his prime ... and , perhaps more than he realizes 2 +130523 7033 may indeed have finally aged past his prime ... and , perhaps more than he realizes 1 +130524 7033 may indeed 2 +130525 7033 have finally aged past his prime ... and , perhaps more than he realizes 1 +130526 7033 have finally aged past his prime ... and , 1 +130527 7033 have finally aged past his prime ... and 2 +130528 7033 have finally aged past his prime ... 3 +130529 7033 have finally aged past his prime 2 +130530 7033 finally aged past his prime 2 +130531 7033 aged past his prime 1 +130532 7033 past his prime 1 +130533 7033 perhaps more than he realizes 2 +130534 7033 perhaps more 2 +130535 7033 than he realizes 2 +130536 7033 he realizes 2 +130537 7033 just wants to be liked by the people who can still give him work . 3 +130538 7033 wants to be liked by the people who can still give him work . 1 +130539 7033 wants to be liked by the people who can still give him work 2 +130540 7033 to be liked by the people who can still give him work 2 +130541 7033 be liked by the people who can still give him work 2 +130542 7033 liked by the people who can still give him work 3 +130543 7033 by the people who can still give him work 2 +130544 7033 the people who can still give him work 2 +130545 7033 who can still give him work 2 +130546 7033 can still give him work 2 +130547 7033 give him work 2 +130548 7033 give him 2 +130549 7034 Serviceable at best , slightly less than serviceable at worst . 2 +130550 7034 Serviceable at best , slightly less than serviceable at worst 1 +130551 7034 Serviceable at best , slightly less 1 +130552 7034 at best , slightly less 2 +130553 7034 at best , slightly 2 +130554 7034 at best , 2 +130555 7034 than serviceable at worst 2 +130556 7034 serviceable at worst 0 +130557 7035 It 's sort of a 21st century morality play with a Latino hip hop beat . 3 +130558 7035 's sort of a 21st century morality play with a Latino hip hop beat . 2 +130559 7035 's sort of a 21st century morality play with a Latino hip hop beat 2 +130560 7035 sort of a 21st century morality play with a Latino hip hop beat 2 +130561 7035 of a 21st century morality play with a Latino hip hop beat 2 +130562 7035 a 21st century morality play with a Latino hip hop beat 2 +130563 7035 a 21st century morality play 2 +130564 7035 21st century morality play 2 +130565 7035 century morality play 2 +130566 7035 morality play 2 +130567 7035 with a Latino hip hop beat 2 +130568 7035 a Latino hip hop beat 2 +130569 7035 Latino hip hop beat 2 +130570 7035 Latino 2 +130571 7035 hip hop beat 3 +130572 7035 hop beat 3 +130573 7036 An inelegant combination of two unrelated shorts that falls far short of the director 's previous work in terms of both thematic content and narrative strength . 1 +130574 7036 An inelegant combination of two unrelated shorts that falls far short of the director 's previous work in terms of both thematic content and narrative strength 1 +130575 7036 An inelegant combination of two unrelated shorts that falls far short of the director 's previous work in terms 1 +130576 7036 An inelegant combination of two unrelated shorts that falls far short of the director 's previous work 0 +130577 7036 An inelegant combination of two unrelated shorts that falls far short 1 +130578 7036 An inelegant combination 1 +130579 7036 inelegant combination 2 +130580 7036 of two unrelated shorts that falls far short 0 +130581 7036 two unrelated shorts that falls far short 1 +130582 7036 two unrelated shorts 2 +130583 7036 unrelated shorts 1 +130584 7036 unrelated 1 +130585 7036 that falls far short 1 +130586 7036 of the director 's previous work 2 +130587 7036 the director 's previous work 2 +130588 7036 previous work 2 +130589 7036 in terms 2 +130590 7036 of both thematic content and narrative strength 4 +130591 7036 both thematic content and narrative strength 3 +130592 7036 thematic content and narrative strength 3 +130593 7036 content and narrative strength 3 +130594 7036 and narrative strength 3 +130595 7036 narrative strength 2 +130596 7037 In its dry and forceful way , it delivers the same message as Jiri Menzel 's Closely Watched Trains and Danis Tanovic 's No Man 's Land . 3 +130597 7037 In its dry and forceful way 2 +130598 7037 its dry and forceful way 2 +130599 7037 dry and forceful way 2 +130600 7037 dry and forceful 2 +130601 7037 dry and 1 +130602 7037 , it delivers the same message as Jiri Menzel 's Closely Watched Trains and Danis Tanovic 's No Man 's Land . 3 +130603 7037 it delivers the same message as Jiri Menzel 's Closely Watched Trains and Danis Tanovic 's No Man 's Land . 2 +130604 7037 delivers the same message as Jiri Menzel 's Closely Watched Trains and Danis Tanovic 's No Man 's Land . 2 +130605 7037 delivers the same message as Jiri Menzel 's Closely Watched Trains and Danis Tanovic 's No Man 's Land 2 +130606 7037 delivers the same message 2 +130607 7037 the same message 2 +130608 7037 same message 2 +130609 7037 as Jiri Menzel 's Closely Watched Trains and Danis Tanovic 's No Man 's Land 2 +130610 7037 Jiri Menzel 's Closely Watched Trains and Danis Tanovic 's No Man 's Land 2 +130611 7037 Jiri Menzel 's Closely Watched Trains and 2 +130612 7037 Jiri Menzel 's Closely Watched Trains 2 +130613 7037 Jiri Menzel 's 2 +130614 7037 Jiri 2 +130615 7037 Menzel 's 2 +130616 7037 Menzel 2 +130617 7037 Closely Watched Trains 2 +130618 7037 Closely Watched 2 +130619 7037 Trains 2 +130620 7037 Danis Tanovic 's No Man 's Land 2 +130621 7037 Danis Tanovic 's 2 +130622 7037 Danis 3 +130623 7037 Tanovic 's 2 +130624 7037 Tanovic 2 +130625 7037 No Man 's Land 2 +130626 7037 No Man 's 2 +130627 7038 But the performances of Pacino , Williams , and Swank keep the viewer wide-awake all the way through . 4 +130628 7038 the performances of Pacino , Williams , and Swank keep the viewer wide-awake all the way through . 4 +130629 7038 the performances of Pacino , Williams , and Swank 2 +130630 7038 of Pacino , Williams , and Swank 2 +130631 7038 Pacino , Williams , and Swank 2 +130632 7038 , Williams , and Swank 2 +130633 7038 Williams , and Swank 2 +130634 7038 , and Swank 2 +130635 7038 keep the viewer wide-awake all the way through . 4 +130636 7038 keep the viewer wide-awake all the way through 2 +130637 7038 the viewer wide-awake all the way through 3 +130638 7038 wide-awake all the way through 3 +130639 7038 wide-awake all the way 3 +130640 7038 wide-awake 2 +130641 7039 The gags that fly at such a furiously funny pace that the only rip off that we were aware of was the one we felt when the movie ended so damned soon . 4 +130642 7039 The gags that fly at such a furiously funny pace that the only rip off that we were aware of 2 +130643 7039 that fly at such a furiously funny pace that the only rip off that we were aware of 3 +130644 7039 fly at such a furiously funny pace that the only rip off that we were aware of 3 +130645 7039 fly at such a furiously funny pace 3 +130646 7039 at such a furiously funny pace 3 +130647 7039 such a furiously funny pace 2 +130648 7039 a furiously funny pace 2 +130649 7039 furiously funny pace 3 +130650 7039 funny pace 3 +130651 7039 that the only rip off that we were aware of 1 +130652 7039 the only rip off that we were aware of 2 +130653 7039 the only 2 +130654 7039 rip off that we were aware of 1 +130655 7039 rip off 1 +130656 7039 that we were aware of 2 +130657 7039 we were aware of 2 +130658 7039 were aware of 2 +130659 7039 aware of 2 +130660 7039 was the one we felt when the movie ended so damned soon . 2 +130661 7039 was the one we felt when the movie ended so damned soon 2 +130662 7039 the one we felt when the movie ended so damned soon 2 +130663 7039 we felt when the movie ended so damned soon 2 +130664 7039 felt when the movie ended so damned soon 2 +130665 7039 when the movie ended so damned soon 1 +130666 7039 the movie ended so damned soon 2 +130667 7039 ended so damned soon 1 +130668 7039 ended so damned 1 +130669 7039 so damned 2 +130670 7040 There are enough throwaway references to faith and rainbows to plant smile-button faces on that segment of the populace that made A Walk to Remember a niche hit . 3 +130671 7040 are enough throwaway references to faith and rainbows to plant smile-button faces on that segment of the populace that made A Walk to Remember a niche hit . 2 +130672 7040 are enough throwaway references to faith and rainbows to plant smile-button faces on that segment of the populace that made A Walk to Remember a niche hit 2 +130673 7040 enough throwaway references to faith and rainbows to plant smile-button faces on that segment of the populace that made A Walk to Remember a niche hit 3 +130674 7040 throwaway references to faith and rainbows to plant smile-button faces on that segment of the populace that made A Walk to Remember a niche hit 3 +130675 7040 references to faith and rainbows to plant smile-button faces on that segment of the populace that made A Walk to Remember a niche hit 3 +130676 7040 references to faith and rainbows 2 +130677 7040 to faith and rainbows 3 +130678 7040 faith and rainbows 2 +130679 7040 rainbows 2 +130680 7040 to plant smile-button faces on that segment of the populace that made A Walk to Remember a niche hit 3 +130681 7040 plant smile-button faces on that segment of the populace that made A Walk to Remember a niche hit 3 +130682 7040 plant smile-button faces 3 +130683 7040 plant 2 +130684 7040 smile-button faces 3 +130685 7040 smile-button 3 +130686 7040 on that segment of the populace that made A Walk to Remember a niche hit 2 +130687 7040 that segment of the populace that made A Walk to Remember a niche hit 3 +130688 7040 that segment 2 +130689 7040 of the populace that made A Walk to Remember a niche hit 3 +130690 7040 the populace that made A Walk to Remember a niche hit 3 +130691 7040 the populace 2 +130692 7040 populace 2 +130693 7040 that made A Walk to Remember a niche hit 3 +130694 7040 made A Walk to Remember a niche hit 3 +130695 7040 A Walk to Remember a niche hit 3 +130696 7040 Walk to Remember a niche hit 3 +130697 7040 to Remember a niche hit 2 +130698 7040 Remember a niche hit 2 +130699 7040 a niche hit 3 +130700 7040 niche hit 2 +130701 7041 Rife with nutty cliches and far too much dialogue . 1 +130702 7041 Rife with nutty cliches and far too much dialogue 0 +130703 7041 with nutty cliches and far too much dialogue 1 +130704 7041 nutty cliches and far too much dialogue 1 +130705 7041 nutty cliches and far too much 1 +130706 7041 nutty cliches and 2 +130707 7041 nutty cliches 1 +130708 7042 It has the requisite faux-urban vibe and hotter-two-years-ago rap and R&B names and references . 1 +130709 7042 has the requisite faux-urban vibe and hotter-two-years-ago rap and R&B names and references . 1 +130710 7042 has the requisite faux-urban vibe and hotter-two-years-ago rap and R&B names and references 0 +130711 7042 the requisite faux-urban vibe and hotter-two-years-ago rap and R&B names and references 2 +130712 7042 the requisite faux-urban vibe and 1 +130713 7042 the requisite faux-urban vibe 2 +130714 7042 requisite faux-urban vibe 1 +130715 7042 faux-urban vibe 2 +130716 7042 faux-urban 1 +130717 7042 hotter-two-years-ago rap and R&B names and references 1 +130718 7042 hotter-two-years-ago rap and R&B names and 2 +130719 7042 hotter-two-years-ago rap and R&B names 2 +130720 7042 hotter-two-years-ago 2 +130721 7042 rap and R&B names 3 +130722 7042 and R&B names 2 +130723 7042 R&B names 2 +130724 7042 R&B 2 +130725 7043 If it 's unnerving suspense you 're after -- you 'll find it with Ring , an indisputably spooky film ; with a screenplay to die for . 3 +130726 7043 If it 's unnerving suspense you 're after -- you 'll find it with Ring , an indisputably spooky film ; with a screenplay to die for 4 +130727 7043 If it 's unnerving suspense you 're after -- 2 +130728 7043 If it 's unnerving suspense you 're after 2 +130729 7043 If it 's unnerving suspense 2 +130730 7043 it 's unnerving suspense 3 +130731 7043 's unnerving suspense 2 +130732 7043 unnerving suspense 3 +130733 7043 you 're after 2 +130734 7043 're after 2 +130735 7043 you 'll find it with Ring , an indisputably spooky film ; with a screenplay to die for 4 +130736 7043 'll find it with Ring , an indisputably spooky film ; with a screenplay to die for 3 +130737 7043 find it with Ring , an indisputably spooky film ; with a screenplay to die for 4 +130738 7043 find it with Ring , an indisputably spooky film ; 3 +130739 7043 it with Ring , an indisputably spooky film ; 3 +130740 7043 it with Ring , an indisputably spooky film 3 +130741 7043 it with Ring , 3 +130742 7043 it with Ring 2 +130743 7043 with Ring 2 +130744 7043 an indisputably spooky film 3 +130745 7043 indisputably spooky film 2 +130746 7043 indisputably spooky 2 +130747 7043 indisputably 2 +130748 7043 with a screenplay to die for 4 +130749 7043 a screenplay to die for 4 +130750 7043 screenplay to die for 3 +130751 7043 to die for 3 +130752 7043 die for 3 +130753 7044 Leaks treacle from every pore . 1 +130754 7044 treacle from every pore . 2 +130755 7044 treacle from every pore 2 +130756 7044 treacle 2 +130757 7044 from every pore 2 +130758 7044 every pore 2 +130759 7044 pore 2 +130760 7045 The best thing that can be said of the picture is that it does have a few cute moments . 2 +130761 7045 The best thing that can be said of the picture 3 +130762 7045 that can be said of the picture 2 +130763 7045 can be said of the picture 2 +130764 7045 be said of the picture 1 +130765 7045 said of the picture 2 +130766 7045 of the picture 2 +130767 7045 is that it does have a few cute moments . 3 +130768 7045 is that it does have a few cute moments 3 +130769 7045 that it does have a few cute moments 3 +130770 7045 it does have a few cute moments 2 +130771 7045 does have a few cute moments 3 +130772 7045 have a few cute moments 3 +130773 7045 a few cute moments 3 +130774 7045 few cute moments 2 +130775 7045 few cute 2 +130776 7046 One lousy movie . 1 +130777 7046 One lousy movie 0 +130778 7046 lousy movie 0 +130779 7047 A rather tired exercise in nostalgia . 1 +130780 7047 A rather tired 1 +130781 7047 rather tired 1 +130782 7047 exercise in nostalgia . 2 +130783 7047 exercise in nostalgia 2 +130784 7047 in nostalgia 2 +130785 7048 Vividly conveys the passion , creativity , and fearlessness of one of Mexico 's most colorful and controversial artists -- a captivating drama that will speak to the nonconformist in us all . 4 +130786 7048 conveys the passion , creativity , and fearlessness of one of Mexico 's most colorful and controversial artists -- a captivating drama that will speak to the nonconformist in us all . 4 +130787 7048 conveys the passion , creativity , and fearlessness of one of Mexico 's most colorful and controversial artists -- a captivating drama that will speak to the nonconformist in us all 3 +130788 7048 the passion , creativity , and fearlessness of one of Mexico 's most colorful and controversial artists -- a captivating drama that will speak to the nonconformist in us all 4 +130789 7048 the passion , creativity , and fearlessness of one of Mexico 's most colorful and controversial artists -- 3 +130790 7048 the passion , creativity , and fearlessness of one of Mexico 's most colorful and controversial artists 4 +130791 7048 the passion , creativity , and fearlessness of one 3 +130792 7048 the passion , creativity , and fearlessness 3 +130793 7048 passion , creativity , and fearlessness 4 +130794 7048 , creativity , and fearlessness 4 +130795 7048 creativity , and fearlessness 4 +130796 7048 , and fearlessness 3 +130797 7048 of Mexico 's most colorful and controversial artists 3 +130798 7048 Mexico 's most colorful and controversial artists 3 +130799 7048 Mexico 's 2 +130800 7048 Mexico 2 +130801 7048 most colorful and controversial artists 3 +130802 7048 most colorful and controversial 3 +130803 7048 colorful and controversial 3 +130804 7048 colorful and 3 +130805 7048 controversial 1 +130806 7048 a captivating drama that will speak to the nonconformist in us all 3 +130807 7048 a captivating drama 4 +130808 7048 captivating drama 4 +130809 7048 that will speak to the nonconformist in us all 2 +130810 7048 will speak to the nonconformist in us all 2 +130811 7048 speak to the nonconformist in us all 2 +130812 7048 to the nonconformist in us all 3 +130813 7048 the nonconformist in us all 2 +130814 7048 the nonconformist in us 3 +130815 7048 the nonconformist 2 +130816 7048 in us 2 +130817 7049 One-of-a-kind near-masterpiece . 4 +130818 7049 near-masterpiece . 4 +130819 7050 MIB II is a movie that makes it possible for the viewer to doze off for a few minutes or make several runs to the concession stand and\/or restroom and not feel as if he or she has missed anything . 0 +130820 7050 is a movie that makes it possible for the viewer to doze off for a few minutes or make several runs to the concession stand and\/or restroom and not feel as if he or she has missed anything . 1 +130821 7050 is a movie that makes it possible for the viewer to doze off for a few minutes or make several runs to the concession stand and\/or restroom and not feel as if he or she has missed anything 0 +130822 7050 a movie that makes it possible for the viewer to doze off for a few minutes or make several runs to the concession stand and\/or restroom and not feel as if he or she has missed anything 0 +130823 7050 that makes it possible for the viewer to doze off for a few minutes or make several runs to the concession stand and\/or restroom and not feel as if he or she has missed anything 1 +130824 7050 makes it possible for the viewer to doze off for a few minutes or make several runs to the concession stand and\/or restroom and not feel as if he or she has missed anything 1 +130825 7050 it possible for the viewer to doze off for a few minutes or make several runs to the concession stand and\/or restroom and not feel as if he or she has missed anything 0 +130826 7050 possible for the viewer to doze off for a few minutes or make several runs to the concession stand and\/or restroom and not feel as if he or she has missed anything 1 +130827 7050 for the viewer to doze off for a few minutes or make several runs to the concession stand and\/or restroom and not feel as if he or she has missed anything 0 +130828 7050 the viewer to doze off for a few minutes or make several runs to the concession stand and\/or restroom and not feel as if he or she has missed anything 0 +130829 7050 viewer to doze off for a few minutes or make several runs to the concession stand and\/or restroom and not feel as if he or she has missed anything 0 +130830 7050 to doze off for a few minutes or make several runs to the concession stand and\/or restroom and not feel as if he or she has missed anything 0 +130831 7050 doze off for a few minutes or make several runs to the concession stand and\/or restroom and not feel as if he or she has missed anything 1 +130832 7050 doze off for a few minutes or 1 +130833 7050 doze off for a few minutes 1 +130834 7050 for a few minutes 2 +130835 7050 make several runs to the concession stand and\/or restroom and not feel as if he or she has missed anything 2 +130836 7050 make several runs to the concession stand and\/or restroom and not 1 +130837 7050 make several runs to the concession stand and\/or restroom and 1 +130838 7050 make several runs to the concession stand and\/or restroom 0 +130839 7050 make several runs 2 +130840 7050 several runs 2 +130841 7050 to the concession stand and\/or restroom 1 +130842 7050 the concession stand and\/or restroom 2 +130843 7050 concession stand and\/or restroom 1 +130844 7050 stand and\/or restroom 2 +130845 7050 and\/or restroom 2 +130846 7050 feel as if he or she has missed anything 2 +130847 7050 as if he or she has missed anything 1 +130848 7050 if he or she has missed anything 2 +130849 7050 he or she has missed anything 2 +130850 7050 he or she 2 +130851 7050 has missed anything 2 +130852 7050 missed anything 2 +130853 7051 Alas , the black-and-white archival footage of their act showcases pretty mediocre shtick . 2 +130854 7051 , the black-and-white archival footage of their act showcases pretty mediocre shtick . 1 +130855 7051 the black-and-white archival footage of their act showcases pretty mediocre shtick . 1 +130856 7051 the black-and-white archival footage of their act 3 +130857 7051 the black-and-white archival footage 2 +130858 7051 black-and-white archival footage 3 +130859 7051 archival footage 2 +130860 7051 of their act 2 +130861 7051 their act 2 +130862 7051 showcases pretty mediocre shtick . 1 +130863 7051 showcases pretty mediocre shtick 1 +130864 7051 pretty mediocre shtick 1 +130865 7052 Remember it . 3 +130866 7052 Remember it 2 +130867 7053 Skip the film and buy the Philip Glass soundtrack CD . 0 +130868 7053 Skip the film and buy the Philip Glass soundtrack CD 0 +130869 7053 buy the Philip Glass soundtrack CD 2 +130870 7053 the Philip Glass soundtrack CD 2 +130871 7053 Philip Glass soundtrack CD 2 +130872 7053 Glass soundtrack CD 2 +130873 7053 soundtrack CD 2 +130874 7053 CD 2 +130875 7054 essentially `` Fatal Attraction '' remade for viewers who were in diapers when the original was released in 1987 . 1 +130876 7054 `` Fatal Attraction '' remade for viewers who were in diapers when the original was released in 1987 . 2 +130877 7054 Fatal Attraction '' remade for viewers who were in diapers when the original was released in 1987 . 2 +130878 7054 '' remade for viewers who were in diapers when the original was released in 1987 . 2 +130879 7054 remade for viewers who were in diapers when the original was released in 1987 . 2 +130880 7054 remade for viewers who were in diapers when the original was released in 1987 2 +130881 7054 remade 2 +130882 7054 for viewers who were in diapers when the original was released in 1987 2 +130883 7054 viewers who were in diapers when the original was released in 1987 2 +130884 7054 who were in diapers when the original was released in 1987 2 +130885 7054 were in diapers when the original was released in 1987 2 +130886 7054 were in diapers 2 +130887 7054 in diapers 2 +130888 7054 diapers 2 +130889 7054 when the original was released in 1987 2 +130890 7054 the original was released in 1987 2 +130891 7054 was released in 1987 2 +130892 7054 released in 1987 2 +130893 7054 in 1987 2 +130894 7054 1987 3 +130895 7055 Does n't do more than expand a TV show to movie length . 1 +130896 7055 Does n't do more than expand a TV show to movie length 1 +130897 7055 do more than expand a TV show to movie length 2 +130898 7055 more than expand a TV show to movie length 2 +130899 7055 than expand a TV show to movie length 2 +130900 7055 expand a TV show to movie length 2 +130901 7055 expand a TV show 3 +130902 7055 expand 2 +130903 7055 a TV show 2 +130904 7055 to movie length 2 +130905 7055 movie length 2 +130906 7056 Mushes the college-friends genre -LRB- The Big Chill -RRB- together with the contrivances and overwrought emotion of soap operas . 2 +130907 7056 Mushes the college-friends genre -LRB- The Big Chill -RRB- together with the contrivances and overwrought emotion of soap 1 +130908 7056 Mushes 2 +130909 7056 the college-friends genre -LRB- The Big Chill -RRB- together with the contrivances and overwrought emotion of soap 1 +130910 7056 the college-friends genre -LRB- The Big Chill -RRB- 2 +130911 7056 the college-friends genre 2 +130912 7056 college-friends genre 2 +130913 7056 college-friends 2 +130914 7056 -LRB- The Big Chill -RRB- 2 +130915 7056 The Big Chill -RRB- 2 +130916 7056 The Big Chill 2 +130917 7056 Big Chill 1 +130918 7056 together with the contrivances and overwrought emotion of soap 0 +130919 7056 with the contrivances and overwrought emotion of soap 1 +130920 7056 the contrivances and overwrought emotion of soap 1 +130921 7056 the contrivances and overwrought emotion 1 +130922 7056 contrivances and overwrought emotion 1 +130923 7056 and overwrought emotion 2 +130924 7056 overwrought emotion 1 +130925 7056 of soap 2 +130926 7056 operas . 2 +130927 7057 Meyjes focuses too much on Max when he should be filling the screen with this tortured , dull artist and monster-in-the - making . 2 +130928 7057 focuses too much on Max when he should be filling the screen with this tortured , dull artist and monster-in-the - making . 1 +130929 7057 focuses too much on Max when he should be filling the screen with this tortured , dull artist and monster-in-the - making 1 +130930 7057 focuses too much on Max when he should be filling the screen with this tortured , dull artist and monster-in-the - 1 +130931 7057 focuses too much on Max when he should be filling the screen with this tortured , dull artist and monster-in-the 1 +130932 7057 too much on Max when he should be filling the screen with this tortured , dull artist and monster-in-the 2 +130933 7057 much on Max when he should be filling the screen with this tortured , dull artist and monster-in-the 1 +130934 7057 on Max when he should be filling the screen with this tortured , dull artist and monster-in-the 1 +130935 7057 Max when he should be filling the screen with this tortured , dull artist and monster-in-the 2 +130936 7057 when he should be filling the screen with this tortured , dull artist and monster-in-the 1 +130937 7057 he should be filling the screen with this tortured , dull artist and monster-in-the 1 +130938 7057 should be filling the screen with this tortured , dull artist and monster-in-the 1 +130939 7057 be filling the screen with this tortured , dull artist and monster-in-the 1 +130940 7057 filling the screen with this tortured , dull artist and monster-in-the 1 +130941 7057 filling the screen 3 +130942 7057 with this tortured , dull artist and monster-in-the 0 +130943 7057 this tortured , dull artist and monster-in-the 2 +130944 7057 this tortured , dull artist and 2 +130945 7057 this tortured , dull artist 0 +130946 7057 tortured , dull artist 1 +130947 7057 tortured , dull 1 +130948 7057 monster-in-the 1 +130949 7058 The Tuxedo miscalculates badly by forcing the star to play second fiddle to the dull effects that allow the suit to come to life . 0 +130950 7058 miscalculates badly by forcing the star to play second fiddle to the dull effects that allow the suit to come to life . 1 +130951 7058 miscalculates badly by forcing the star to play second fiddle to the dull effects that allow the suit to come to life 0 +130952 7058 miscalculates badly 0 +130953 7058 miscalculates 2 +130954 7058 by forcing the star to play second fiddle to the dull effects that allow the suit to come to life 1 +130955 7058 forcing the star to play second fiddle to the dull effects that allow the suit to come to life 2 +130956 7058 the star to play second fiddle to the dull effects that allow the suit to come to life 2 +130957 7058 star to play second fiddle to the dull effects that allow the suit to come to life 1 +130958 7058 to play second fiddle to the dull effects that allow the suit to come to life 1 +130959 7058 play second fiddle to the dull effects that allow the suit to come to life 1 +130960 7058 play second fiddle 2 +130961 7058 second fiddle 1 +130962 7058 fiddle 2 +130963 7058 to the dull effects that allow the suit to come to life 1 +130964 7058 the dull effects that allow the suit to come to life 2 +130965 7058 the dull effects 1 +130966 7058 dull effects 1 +130967 7058 that allow the suit to come to life 2 +130968 7058 allow the suit to come to life 3 +130969 7058 the suit to come to life 2 +130970 7058 the suit 2 +130971 7058 to come to life 2 +130972 7058 come to life 3 +130973 7059 Fubar is very funny , but not always in a laugh-out-loud way . 2 +130974 7059 Fubar 2 +130975 7059 is very funny , but not always in a laugh-out-loud way . 3 +130976 7059 is very funny , but not always in a laugh-out-loud way 3 +130977 7059 is very funny , but not always 3 +130978 7059 very funny , but not always 3 +130979 7059 very funny , but 3 +130980 7059 very funny , 4 +130981 7059 not always 2 +130982 7059 in a laugh-out-loud way 3 +130983 7059 a laugh-out-loud way 3 +130984 7059 laugh-out-loud way 3 +130985 7060 As aimless as an old pickup skidding completely out of control on a long patch of black ice , the movie makes two hours feel like four . 0 +130986 7060 As aimless as an old pickup skidding completely out of control on a long patch of black ice 0 +130987 7060 aimless as an old pickup skidding completely out of control on a long patch of black ice 0 +130988 7060 as an old pickup skidding completely out of control on a long patch of black ice 1 +130989 7060 an old pickup skidding completely out of control on a long patch of black ice 2 +130990 7060 an old pickup skidding 2 +130991 7060 old pickup skidding 1 +130992 7060 pickup skidding 2 +130993 7060 skidding 1 +130994 7060 completely out of control on a long patch of black ice 2 +130995 7060 out of control on a long patch of black ice 2 +130996 7060 of control on a long patch of black ice 1 +130997 7060 control on a long patch of black ice 2 +130998 7060 on a long patch of black ice 2 +130999 7060 a long patch of black ice 1 +131000 7060 a long patch 2 +131001 7060 long patch 2 +131002 7060 of black ice 2 +131003 7060 black ice 2 +131004 7060 , the movie makes two hours feel like four . 0 +131005 7060 the movie makes two hours feel like four . 1 +131006 7060 makes two hours feel like four . 1 +131007 7060 makes two hours feel like four 0 +131008 7060 two hours feel like four 0 +131009 7060 feel like four 2 +131010 7060 like four 2 +131011 7061 If you saw Benigni 's Pinocchio at a public park , you 'd grab your kids and run and then probably call the police . 1 +131012 7061 If you saw Benigni 's Pinocchio at a public park 2 +131013 7061 you saw Benigni 's Pinocchio at a public park 2 +131014 7061 saw Benigni 's Pinocchio at a public park 2 +131015 7061 Benigni 's Pinocchio at a public park 2 +131016 7061 at a public park 2 +131017 7061 a public park 2 +131018 7061 public park 2 +131019 7061 , you 'd grab your kids and run and then probably call the police . 1 +131020 7061 you 'd grab your kids and run and then probably call the police . 0 +131021 7061 'd grab your kids and run and then probably call the police . 0 +131022 7061 'd grab your kids and run and then probably call the police 1 +131023 7061 grab your kids and run and then probably call the police 1 +131024 7061 grab your kids and run and then 1 +131025 7061 grab your kids and run and 2 +131026 7061 grab your kids and run 0 +131027 7061 grab your kids and 2 +131028 7061 grab your kids 2 +131029 7061 probably call the police 2 +131030 7061 call the police 2 +131031 7061 the police 2 +131032 7062 The characters are paper thin and the plot is so cliched and contrived that it makes your least favorite James Bond movie seem as cleverly plotted as The Usual Suspects . 0 +131033 7062 The characters are paper thin and the plot is so cliched and contrived that it makes your least favorite James Bond movie seem as cleverly plotted as The Usual Suspects 0 +131034 7062 The characters are paper thin and 1 +131035 7062 The characters are paper thin 1 +131036 7062 are paper thin 1 +131037 7062 paper thin 1 +131038 7062 the plot is so cliched and contrived that it makes your least favorite James Bond movie seem as cleverly plotted as The Usual Suspects 2 +131039 7062 is so cliched and contrived that it makes your least favorite James Bond movie seem as cleverly plotted as The Usual Suspects 0 +131040 7062 so cliched and contrived that it makes your least favorite James Bond movie seem as cleverly plotted as The Usual Suspects 0 +131041 7062 cliched and contrived that it makes your least favorite James Bond movie seem as cleverly plotted as The Usual Suspects 1 +131042 7062 cliched and contrived 1 +131043 7062 that it makes your least favorite James Bond movie seem as cleverly plotted as The Usual Suspects 1 +131044 7062 it makes your least favorite James Bond movie seem as cleverly plotted as The Usual Suspects 1 +131045 7062 makes your least favorite James Bond movie seem as cleverly plotted as The Usual Suspects 1 +131046 7062 your least favorite James Bond movie seem as cleverly plotted as The Usual Suspects 1 +131047 7062 your least favorite 1 +131048 7062 least favorite 1 +131049 7062 James Bond movie seem as cleverly plotted as The Usual Suspects 2 +131050 7062 James Bond movie 2 +131051 7062 Bond movie 2 +131052 7062 seem as cleverly plotted as The Usual Suspects 3 +131053 7062 as cleverly plotted as The Usual Suspects 3 +131054 7062 cleverly plotted as The Usual Suspects 2 +131055 7062 plotted as The Usual Suspects 2 +131056 7062 as The Usual Suspects 2 +131057 7062 The Usual Suspects 2 +131058 7062 Usual Suspects 2 +131059 7063 Harris is supposed to be the star of the story , but comes across as pretty dull and wooden . 2 +131060 7063 is supposed to be the star of the story , but comes across as pretty dull and wooden . 1 +131061 7063 is supposed to be the star of the story , but comes across as pretty dull and wooden 1 +131062 7063 is supposed to be the star of the story , but 2 +131063 7063 is supposed to be the star of the story , 2 +131064 7063 is supposed to be the star of the story 2 +131065 7063 supposed to be the star of the story 2 +131066 7063 to be the star of the story 2 +131067 7063 be the star of the story 2 +131068 7063 the star of the story 2 +131069 7063 comes across as pretty dull and wooden 0 +131070 7063 as pretty dull and wooden 1 +131071 7063 pretty dull and wooden 1 +131072 7063 dull and wooden 0 +131073 7064 It celebrates the group 's playful spark of nonconformity , glancing vividly back at what Hibiscus grandly called his ` angels of light . ' 3 +131074 7064 celebrates the group 's playful spark of nonconformity , glancing vividly back at what Hibiscus grandly called his ` angels of light . ' 3 +131075 7064 celebrates the group 's playful spark of nonconformity , glancing vividly back at what Hibiscus grandly called his ` angels of light . 3 +131076 7064 celebrates the group 's playful spark of nonconformity , glancing vividly back at what Hibiscus grandly called his ` angels of light 3 +131077 7064 celebrates the group 's playful spark of nonconformity , 3 +131078 7064 celebrates the group 's playful spark of nonconformity 3 +131079 7064 the group 's playful spark of nonconformity 3 +131080 7064 the group 's playful spark 3 +131081 7064 the group 's 2 +131082 7064 group 's 2 +131083 7064 playful spark 3 +131084 7064 of nonconformity 2 +131085 7064 nonconformity 2 +131086 7064 glancing vividly back at what Hibiscus grandly called his ` angels of light 2 +131087 7064 glancing vividly back 3 +131088 7064 glancing 2 +131089 7064 vividly back 3 +131090 7064 at what Hibiscus grandly called his ` angels of light 2 +131091 7064 what Hibiscus grandly called his ` angels of light 3 +131092 7064 Hibiscus grandly called his ` angels of light 2 +131093 7064 Hibiscus 2 +131094 7064 grandly called his ` angels of light 2 +131095 7064 grandly 3 +131096 7064 called his ` angels of light 2 +131097 7064 his ` angels of light 3 +131098 7064 his ` angels 2 +131099 7064 ` angels 2 +131100 7064 of light 2 +131101 7065 And I expect much more from a talent as outstanding as director Bruce McCulloch . 2 +131102 7065 I expect much more from a talent as outstanding as director Bruce McCulloch . 1 +131103 7065 expect much more from a talent as outstanding as director Bruce McCulloch . 2 +131104 7065 expect much more from a talent as outstanding as director Bruce McCulloch 1 +131105 7065 expect much more 1 +131106 7065 from a talent as outstanding as director Bruce McCulloch 3 +131107 7065 a talent as outstanding as director Bruce McCulloch 3 +131108 7065 as outstanding as director Bruce McCulloch 4 +131109 7065 outstanding as director Bruce McCulloch 4 +131110 7065 outstanding as director 4 +131111 7065 as director 2 +131112 7065 Bruce McCulloch 2 +131113 7065 McCulloch 2 +131114 7066 A harrowing account of a psychological breakdown . 3 +131115 7066 A harrowing account of a psychological breakdown 2 +131116 7066 A harrowing account 3 +131117 7066 harrowing account 3 +131118 7066 of a psychological breakdown 2 +131119 7066 a psychological breakdown 2 +131120 7066 psychological breakdown 2 +131121 7067 There 's absolutely no reason why Blue Crush , a late-summer surfer girl entry , should be as entertaining as it is 3 +131122 7067 's absolutely no reason why Blue Crush , a late-summer surfer girl entry , should be as entertaining as it is 2 +131123 7067 's absolutely 2 +131124 7067 no reason why Blue Crush , a late-summer surfer girl entry , should be as entertaining as it is 2 +131125 7067 no reason 2 +131126 7067 why Blue Crush , a late-summer surfer girl entry , should be as entertaining as it is 3 +131127 7067 Blue Crush , a late-summer surfer girl entry , should be as entertaining as it is 3 +131128 7067 Blue Crush , a late-summer surfer girl entry , 2 +131129 7067 Blue Crush , a late-summer surfer girl entry 2 +131130 7067 Blue Crush , 2 +131131 7067 a late-summer surfer girl entry 2 +131132 7067 late-summer surfer girl entry 2 +131133 7067 late-summer 3 +131134 7067 surfer girl entry 2 +131135 7067 surfer 2 +131136 7067 girl entry 3 +131137 7067 should be as entertaining as it is 3 +131138 7067 be as entertaining as it is 2 +131139 7067 be as entertaining 3 +131140 7068 Overall , it 's a wacky and inspired little film that works effortlessly at delivering genuine , acerbic laughs . 2 +131141 7068 , it 's a wacky and inspired little film that works effortlessly at delivering genuine , acerbic laughs . 3 +131142 7068 it 's a wacky and inspired little film that works effortlessly at delivering genuine , acerbic laughs . 4 +131143 7068 's a wacky and inspired little film that works effortlessly at delivering genuine , acerbic laughs . 3 +131144 7068 's a wacky and inspired little film that works effortlessly at delivering genuine , acerbic laughs 4 +131145 7068 a wacky and inspired little film that works effortlessly at delivering genuine , acerbic laughs 3 +131146 7068 a wacky and inspired little film 3 +131147 7068 wacky and inspired little film 3 +131148 7068 wacky and inspired 3 +131149 7068 wacky and 3 +131150 7068 that works effortlessly at delivering genuine , acerbic laughs 4 +131151 7068 works effortlessly at delivering genuine , acerbic laughs 3 +131152 7068 works effortlessly 3 +131153 7068 at delivering genuine , acerbic laughs 3 +131154 7068 delivering genuine , acerbic laughs 3 +131155 7068 genuine , acerbic laughs 4 +131156 7068 , acerbic laughs 3 +131157 7068 acerbic laughs 2 +131158 7069 Oscar caliber cast does n't live up to material 1 +131159 7069 Oscar caliber cast 4 +131160 7069 caliber cast 3 +131161 7069 caliber 3 +131162 7069 does n't live up to material 1 +131163 7069 live up to material 3 +131164 7069 to material 2 +131165 7070 ... the kind of movie you see because the theater has air conditioning . 1 +131166 7070 the kind of movie you see because the theater has air conditioning . 2 +131167 7070 the kind of movie you see because the theater 2 +131168 7070 of movie you see because the theater 2 +131169 7070 movie you see because the theater 2 +131170 7070 you see because the theater 2 +131171 7070 see because the theater 3 +131172 7070 because the theater 2 +131173 7070 has air conditioning . 2 +131174 7070 has air conditioning 2 +131175 7071 When the screenwriter responsible for one of the worst movies of one year directs an equally miserable film the following year , you 'd have a hard time believing it was just coincidence . 1 +131176 7071 When the screenwriter responsible for one of the worst movies of one year directs an equally miserable film the following year 0 +131177 7071 the screenwriter responsible for one of the worst movies of one year directs an equally miserable film the following year 1 +131178 7071 the screenwriter responsible for one of the worst movies of one year 0 +131179 7071 responsible for one of the worst movies of one year 0 +131180 7071 for one of the worst movies of one year 0 +131181 7071 one of the worst movies of one year 0 +131182 7071 of the worst movies of one year 0 +131183 7071 the worst movies of one year 0 +131184 7071 of one year 2 +131185 7071 one year 2 +131186 7071 directs an equally miserable film the following year 0 +131187 7071 an equally miserable film the following year 1 +131188 7071 an equally miserable film 1 +131189 7071 equally miserable film 0 +131190 7071 equally miserable 1 +131191 7071 the following year 2 +131192 7071 following year 2 +131193 7071 , you 'd have a hard time believing it was just coincidence . 1 +131194 7071 you 'd have a hard time believing it was just coincidence . 1 +131195 7071 'd have a hard time believing it was just coincidence . 2 +131196 7071 'd have a hard time believing it was just coincidence 1 +131197 7071 have a hard time believing it was just coincidence 1 +131198 7071 have a hard time 1 +131199 7071 believing it was just coincidence 3 +131200 7071 it was just coincidence 2 +131201 7071 was just coincidence 2 +131202 7071 coincidence 2 +131203 7072 Although made on a shoestring and unevenly acted , conjures a Lynch-like vision of the rotting underbelly of Middle America . 1 +131204 7072 Although made on a shoestring and unevenly acted 2 +131205 7072 Although made on a shoestring and unevenly 1 +131206 7072 made on a shoestring and unevenly 2 +131207 7072 on a shoestring and unevenly 2 +131208 7072 a shoestring and unevenly 2 +131209 7072 shoestring and unevenly 1 +131210 7072 shoestring and 2 +131211 7072 shoestring 2 +131212 7072 unevenly 2 +131213 7072 , conjures a Lynch-like vision of the rotting underbelly of Middle America . 2 +131214 7072 conjures a Lynch-like vision of the rotting underbelly of Middle America . 2 +131215 7072 conjures a Lynch-like vision of the rotting underbelly of Middle America 1 +131216 7072 a Lynch-like vision of the rotting underbelly of Middle America 2 +131217 7072 a Lynch-like vision 3 +131218 7072 Lynch-like vision 2 +131219 7072 Lynch-like 2 +131220 7072 of the rotting underbelly of Middle America 1 +131221 7072 the rotting underbelly of Middle America 1 +131222 7072 the rotting underbelly 1 +131223 7072 rotting underbelly 1 +131224 7072 rotting 1 +131225 7072 of Middle America 2 +131226 7073 ` It 's painful to watch Witherspoon 's talents wasting away inside unnecessary films like Legally Blonde and Sweet Home Abomination , I mean , Alabama . ' 0 +131227 7073 It 's painful to watch Witherspoon 's talents wasting away inside unnecessary films like Legally Blonde and Sweet Home Abomination , I mean , Alabama . ' 1 +131228 7073 's painful to watch Witherspoon 's talents wasting away inside unnecessary films like Legally Blonde and Sweet Home Abomination , I mean , Alabama . ' 2 +131229 7073 's painful to watch Witherspoon 's talents wasting away inside unnecessary films like Legally Blonde and Sweet Home Abomination , I mean , Alabama . 1 +131230 7073 's painful to watch Witherspoon 's talents wasting away inside unnecessary films like Legally Blonde and Sweet Home Abomination , I mean , Alabama 1 +131231 7073 painful to watch Witherspoon 's talents wasting away inside unnecessary films like Legally Blonde and Sweet Home Abomination , I mean , Alabama 1 +131232 7073 to watch Witherspoon 's talents wasting away inside unnecessary films like Legally Blonde and Sweet Home Abomination , I mean , Alabama 1 +131233 7073 watch Witherspoon 's talents wasting away inside unnecessary films like Legally Blonde and Sweet Home Abomination , I mean , Alabama 1 +131234 7073 watch Witherspoon 's talents wasting away inside unnecessary films like Legally Blonde and Sweet Home Abomination , I mean , 1 +131235 7073 watch Witherspoon 's talents wasting away inside unnecessary films like Legally Blonde and Sweet Home Abomination 1 +131236 7073 watch Witherspoon 's talents 3 +131237 7073 Witherspoon 's talents 3 +131238 7073 wasting away inside unnecessary films like Legally Blonde and Sweet Home Abomination 0 +131239 7073 wasting away inside unnecessary films 0 +131240 7073 wasting away 1 +131241 7073 wasting 1 +131242 7073 inside unnecessary films 1 +131243 7073 unnecessary films 1 +131244 7073 like Legally Blonde and Sweet Home Abomination 1 +131245 7073 Legally Blonde and Sweet Home Abomination 1 +131246 7073 Legally Blonde and 2 +131247 7073 Legally Blonde 2 +131248 7073 Legally 2 +131249 7073 Blonde 2 +131250 7073 Sweet Home Abomination 1 +131251 7073 Home Abomination 2 +131252 7073 Abomination 0 +131253 7073 , I mean , 2 +131254 7073 I mean , 2 +131255 7073 I mean 2 +131256 7074 A family-friendly fantasy that ends up doing very little with its imaginative premise . 2 +131257 7074 A family-friendly fantasy that 3 +131258 7074 A family-friendly fantasy 3 +131259 7074 family-friendly fantasy 3 +131260 7074 ends up doing very little with its imaginative premise . 1 +131261 7074 ends up doing very little with its imaginative premise 1 +131262 7074 doing very little with its imaginative premise 1 +131263 7074 doing very little 1 +131264 7074 with its imaginative premise 3 +131265 7074 its imaginative premise 3 +131266 7074 imaginative premise 3 +131267 7075 It 's hard to imagine anybody ever being `` in the mood '' to view a movie as harrowing and painful as The Grey Zone , but it 's equally hard to imagine anybody being able to tear their eyes away from the screen once it 's started . 3 +131268 7075 It 's hard to imagine anybody ever being `` in the mood '' to view a movie as harrowing and painful as The Grey Zone , but it 's equally hard to imagine anybody being able to tear their eyes away from the screen once it 's started 1 +131269 7075 It 's hard to imagine anybody ever being `` in the mood '' to view a movie as harrowing and painful as The Grey Zone , but 1 +131270 7075 It 's hard to imagine anybody ever being `` in the mood '' to view a movie as harrowing and painful as The Grey Zone , 1 +131271 7075 It 's hard to imagine anybody ever being `` in the mood '' to view a movie as harrowing and painful as The Grey Zone 1 +131272 7075 's hard to imagine anybody ever being `` in the mood '' to view a movie as harrowing and painful as The Grey Zone 0 +131273 7075 hard to imagine anybody ever being `` in the mood '' to view a movie as harrowing and painful as The Grey Zone 1 +131274 7075 to imagine anybody ever being `` in the mood '' to view a movie as harrowing and painful as The Grey Zone 0 +131275 7075 imagine anybody ever being `` in the mood '' to view a movie as harrowing and painful as The Grey Zone 0 +131276 7075 imagine anybody ever 2 +131277 7075 imagine anybody 2 +131278 7075 being `` in the mood '' to view a movie as harrowing and painful as The Grey Zone 1 +131279 7075 being `` in the mood '' to view a movie as harrowing and 1 +131280 7075 being `` in the mood '' to view a movie as harrowing 2 +131281 7075 being `` in the mood '' 2 +131282 7075 being `` in the mood 2 +131283 7075 being `` 2 +131284 7075 in the mood 2 +131285 7075 to view a movie as harrowing 2 +131286 7075 view a movie as harrowing 2 +131287 7075 view a movie 2 +131288 7075 as harrowing 2 +131289 7075 painful as The Grey Zone 1 +131290 7075 as The Grey Zone 2 +131291 7075 it 's equally hard to imagine anybody being able to tear their eyes away from the screen once it 's started 4 +131292 7075 's equally hard to imagine anybody being able to tear their eyes away from the screen once it 's started 4 +131293 7075 's equally hard to imagine anybody being able to tear their eyes away from the screen 4 +131294 7075 's equally hard 2 +131295 7075 equally hard 2 +131296 7075 to imagine anybody being able to tear their eyes away from the screen 2 +131297 7075 imagine anybody being able to tear their eyes away from the screen 3 +131298 7075 being able to tear their eyes away from the screen 3 +131299 7075 able to tear their eyes away from the screen 3 +131300 7075 to tear their eyes away from the screen 2 +131301 7075 tear their eyes away from the screen 3 +131302 7075 tear their eyes away 3 +131303 7075 tear their eyes 2 +131304 7075 their eyes 2 +131305 7075 from the screen 2 +131306 7075 once it 's started 2 +131307 7075 it 's started 2 +131308 7075 's started 2 +131309 7076 Chicago offers much colorful eye candy , including the spectacle of Gere in his dancing shoes , hoofing and crooning with the best of them . 3 +131310 7076 offers much colorful eye candy , including the spectacle of Gere in his dancing shoes , hoofing and crooning with the best of them . 4 +131311 7076 offers much colorful eye candy , including the spectacle of Gere in his dancing shoes , hoofing and crooning with the best of them 3 +131312 7076 much colorful eye candy , including the spectacle of Gere in his dancing shoes , hoofing and crooning with the best of them 3 +131313 7076 much colorful eye candy , including the spectacle of Gere in his dancing shoes , 3 +131314 7076 much colorful eye candy , including the spectacle of Gere in his dancing shoes 4 +131315 7076 much colorful eye candy , 2 +131316 7076 much colorful eye candy 3 +131317 7076 much colorful 3 +131318 7076 including the spectacle of Gere in his dancing shoes 2 +131319 7076 the spectacle of Gere in his dancing shoes 3 +131320 7076 of Gere in his dancing shoes 2 +131321 7076 Gere in his dancing shoes 2 +131322 7076 in his dancing shoes 2 +131323 7076 his dancing shoes 2 +131324 7076 dancing shoes 2 +131325 7076 shoes 2 +131326 7076 hoofing and crooning with the best of them 2 +131327 7076 hoofing and crooning 2 +131328 7076 hoofing and 2 +131329 7076 hoofing 2 +131330 7076 crooning 2 +131331 7076 with the best of them 4 +131332 7076 the best of them 3 +131333 7077 No new plot conceptions or environmental changes , just different bodies for sharp objects to rip through . 1 +131334 7077 No new plot conceptions or environmental changes , just different bodies for sharp objects to rip through 2 +131335 7077 No new plot conceptions or environmental changes , 2 +131336 7077 No new plot conceptions or environmental changes 1 +131337 7077 No new plot conceptions or 1 +131338 7077 No new plot conceptions 1 +131339 7077 new plot conceptions 2 +131340 7077 plot conceptions 2 +131341 7077 conceptions 2 +131342 7077 environmental changes 2 +131343 7077 just different bodies for sharp objects to rip through 1 +131344 7077 just different bodies for sharp objects 2 +131345 7077 just different bodies 2 +131346 7077 different bodies 2 +131347 7077 for sharp objects 2 +131348 7077 sharp objects 3 +131349 7077 to rip through 2 +131350 7077 rip through 2 +131351 7078 The inevitable double - and triple-crosses arise , but the only drama is in waiting to hear how John Malkovich 's reedy consigliere will pronounce his next line . 2 +131352 7078 The inevitable double - and triple-crosses arise , but the only drama is in waiting to hear how John Malkovich 's reedy consigliere will pronounce his next line 1 +131353 7078 The inevitable double - and triple-crosses arise , but 2 +131354 7078 The inevitable double - and triple-crosses arise , 2 +131355 7078 The inevitable double - and triple-crosses arise 2 +131356 7078 The inevitable double - and triple-crosses 2 +131357 7078 The inevitable 2 +131358 7078 double - and triple-crosses 2 +131359 7078 - and triple-crosses 2 +131360 7078 - and 2 +131361 7078 triple-crosses 2 +131362 7078 arise 2 +131363 7078 the only drama is in waiting to hear how John Malkovich 's reedy consigliere will pronounce his next line 0 +131364 7078 the only drama 2 +131365 7078 only drama 1 +131366 7078 is in waiting to hear how John Malkovich 's reedy consigliere will pronounce his next line 2 +131367 7078 in waiting to hear how John Malkovich 's reedy consigliere will pronounce his next line 3 +131368 7078 waiting to hear how John Malkovich 's reedy consigliere will pronounce his next line 2 +131369 7078 to hear how John Malkovich 's reedy consigliere will pronounce his next line 3 +131370 7078 hear how John Malkovich 's reedy consigliere will pronounce his next line 2 +131371 7078 how John Malkovich 's reedy consigliere will pronounce his next line 2 +131372 7078 John Malkovich 's reedy consigliere will pronounce his next line 3 +131373 7078 John Malkovich 's reedy consigliere 3 +131374 7078 John Malkovich 's 2 +131375 7078 Malkovich 's 2 +131376 7078 reedy consigliere 2 +131377 7078 reedy 2 +131378 7078 consigliere 2 +131379 7078 will pronounce his next line 2 +131380 7078 pronounce his next line 2 +131381 7078 his next line 2 +131382 7078 next line 2 +131383 7079 You come away thinking not only that Kate is n't very bright , but that she has n't been worth caring about and that maybe she , Janine and Molly -- an all-woman dysfunctional family -- deserve one another . 1 +131384 7079 come away thinking not only that Kate is n't very bright , but that she has n't been worth caring about and that maybe she , Janine and Molly -- an all-woman dysfunctional family -- deserve one another . 1 +131385 7079 come away thinking not only that Kate is n't very bright , but that she has n't been worth caring about and that maybe she , Janine and Molly -- an all-woman dysfunctional family -- deserve one another 1 +131386 7079 thinking not only that Kate is n't very bright , but that she has n't been worth caring about and that maybe she , Janine and Molly -- an all-woman dysfunctional family -- deserve one another 1 +131387 7079 thinking not only 2 +131388 7079 that Kate is n't very bright , but that she has n't been worth caring about and that maybe she , Janine and Molly -- an all-woman dysfunctional family -- deserve one another 1 +131389 7079 that Kate is n't very bright , but that she has n't been worth caring about and 1 +131390 7079 that Kate is n't very bright , but that she has n't been worth caring about 1 +131391 7079 that Kate is n't very bright , but 1 +131392 7079 that Kate is n't very bright , 2 +131393 7079 that Kate is n't very bright 2 +131394 7079 Kate is n't very bright 1 +131395 7079 Kate 2 +131396 7079 is n't very bright 1 +131397 7079 very bright 4 +131398 7079 that she has n't been worth caring about 2 +131399 7079 she has n't been worth caring about 1 +131400 7079 has n't been worth caring about 0 +131401 7079 been worth caring about 3 +131402 7079 worth caring about 2 +131403 7079 that maybe she , Janine and Molly -- an all-woman dysfunctional family -- deserve one another 1 +131404 7079 maybe she , Janine and Molly -- an all-woman dysfunctional family -- deserve one another 1 +131405 7079 she , Janine and Molly -- an all-woman dysfunctional family -- deserve one another 1 +131406 7079 she , Janine and Molly -- an all-woman dysfunctional family -- 2 +131407 7079 she , Janine and Molly -- an all-woman dysfunctional family 2 +131408 7079 she , Janine and Molly -- 2 +131409 7079 she , Janine and Molly 2 +131410 7079 she , Janine and 2 +131411 7079 she , Janine 2 +131412 7079 she , 2 +131413 7079 Janine 2 +131414 7079 an all-woman dysfunctional family 2 +131415 7079 all-woman dysfunctional family 2 +131416 7079 all-woman 3 +131417 7079 deserve one another 2 +131418 7080 The result is so tame that even slightly wised-up kids would quickly change the channel . 1 +131419 7080 is so tame that even slightly wised-up kids would quickly change the channel . 0 +131420 7080 is so tame that even slightly wised-up kids would quickly change the channel 0 +131421 7080 tame that even slightly wised-up kids would quickly change the channel 1 +131422 7080 tame 3 +131423 7080 that even slightly wised-up kids would quickly change the channel 0 +131424 7080 even slightly wised-up kids would quickly change the channel 0 +131425 7080 even slightly wised-up kids 2 +131426 7080 slightly wised-up kids 3 +131427 7080 wised-up kids 2 +131428 7080 wised-up 2 +131429 7080 would quickly change the channel 1 +131430 7080 would quickly 2 +131431 7080 change the channel 1 +131432 7080 the channel 2 +131433 7081 One of the oddest and most inexplicable sequels in movie history . 2 +131434 7081 One of the oddest and most inexplicable sequels in movie history 2 +131435 7081 One of the oddest and most inexplicable sequels 1 +131436 7081 of the oddest and most inexplicable sequels 2 +131437 7081 the oddest and most inexplicable sequels 1 +131438 7081 the oddest and 2 +131439 7081 most inexplicable sequels 1 +131440 7081 inexplicable sequels 2 +131441 7081 in movie history 2 +131442 7081 movie history 2 +131443 7082 A mostly believable , refreshingly low-key and quietly inspirational little sports drama . 3 +131444 7082 A mostly believable , refreshingly low-key and quietly inspirational little sports 4 +131445 7082 mostly believable , refreshingly low-key and quietly inspirational little sports 3 +131446 7082 mostly believable , refreshingly low-key and quietly inspirational 3 +131447 7082 mostly believable , refreshingly low-key and 3 +131448 7082 mostly believable , refreshingly low-key 3 +131449 7082 mostly believable , 3 +131450 7082 mostly believable 3 +131451 7082 refreshingly low-key 2 +131452 7082 quietly inspirational 3 +131453 7082 little sports 2 +131454 7082 drama . 3 +131455 7083 Ana 's journey is not a stereotypical one of self-discovery , as she 's already comfortable enough in her own skin to be proud of her Rubenesque physique ... 2 +131456 7083 is not a stereotypical one of self-discovery , as she 's already comfortable enough in her own skin to be proud of her Rubenesque physique ... 2 +131457 7083 is not a stereotypical one of self-discovery , as she 's already comfortable enough in her own skin to be proud of her Rubenesque physique 3 +131458 7083 is not a stereotypical one of self-discovery , 3 +131459 7083 is not a stereotypical one of self-discovery 2 +131460 7083 a stereotypical one of self-discovery 1 +131461 7083 a stereotypical one 1 +131462 7083 stereotypical one 1 +131463 7083 of self-discovery 2 +131464 7083 as she 's already comfortable enough in her own skin to be proud of her Rubenesque physique 3 +131465 7083 she 's already comfortable enough in her own skin to be proud of her Rubenesque physique 3 +131466 7083 's already comfortable enough in her own skin to be proud of her Rubenesque physique 3 +131467 7083 comfortable enough in her own skin to be proud of her Rubenesque physique 3 +131468 7083 comfortable enough 3 +131469 7083 in her own skin to be proud of her Rubenesque physique 2 +131470 7083 her own skin to be proud of her Rubenesque physique 2 +131471 7083 own skin to be proud of her Rubenesque physique 3 +131472 7083 skin to be proud of her Rubenesque physique 3 +131473 7083 to be proud of her Rubenesque physique 3 +131474 7083 be proud of her Rubenesque physique 2 +131475 7083 proud of her Rubenesque physique 2 +131476 7083 of her Rubenesque physique 3 +131477 7083 her Rubenesque physique 3 +131478 7083 Rubenesque physique 2 +131479 7083 Rubenesque 2 +131480 7084 Falls short in explaining the music and its roots . 2 +131481 7084 Falls short in explaining the music and its roots 1 +131482 7084 short in explaining the music and its roots 2 +131483 7084 in explaining the music and its roots 2 +131484 7084 explaining the music and its roots 2 +131485 7084 the music and its roots 2 +131486 7084 the music and 2 +131487 7084 its roots 2 +131488 7085 Boy oh boy , it 's a howler . 2 +131489 7085 oh boy , it 's a howler . 2 +131490 7085 oh boy 2 +131491 7085 , it 's a howler . 3 +131492 7085 it 's a howler . 2 +131493 7085 's a howler . 2 +131494 7085 's a howler 3 +131495 7085 a howler 2 +131496 7086 Niccol the filmmaker merges his collaborators ' symbolic images with his words , insinuating , for example , that in Hollywood , only God speaks to the press 3 +131497 7086 Niccol the filmmaker 2 +131498 7086 Niccol 2 +131499 7086 merges his collaborators ' symbolic images with his words , insinuating , for example , that in Hollywood , only God speaks to the press 3 +131500 7086 his collaborators ' symbolic images with his words , insinuating , for example , that in Hollywood , only God speaks to the press 2 +131501 7086 his collaborators ' symbolic images with his words , 3 +131502 7086 his collaborators ' symbolic images with his words 2 +131503 7086 his collaborators ' symbolic images 2 +131504 7086 his collaborators ' 2 +131505 7086 collaborators ' 2 +131506 7086 symbolic images 2 +131507 7086 with his words 2 +131508 7086 insinuating , for example , that in Hollywood , only God speaks to the press 2 +131509 7086 insinuating , for example , 2 +131510 7086 insinuating , for example 2 +131511 7086 insinuating , 2 +131512 7086 insinuating 2 +131513 7086 for example 2 +131514 7086 that in Hollywood , only God speaks to the press 2 +131515 7086 in Hollywood , only God speaks to the press 2 +131516 7086 , only God speaks to the press 2 +131517 7086 only God speaks to the press 2 +131518 7086 only God 2 +131519 7086 speaks to the press 2 +131520 7086 to the press 2 +131521 7086 the press 2 +131522 7087 One of the most genuinely sweet films to come along in quite some time . 4 +131523 7087 One of the most genuinely sweet films to come along in quite some time 4 +131524 7087 One of the most genuinely sweet films 4 +131525 7087 of the most genuinely sweet films 3 +131526 7087 the most genuinely sweet films 4 +131527 7087 most genuinely sweet films 4 +131528 7087 most genuinely sweet 4 +131529 7087 genuinely sweet 4 +131530 7087 to come along in quite some time 2 +131531 7087 come along in quite some time 2 +131532 7088 The movie starts with a legend and ends with a story that is so far-fetched it would be impossible to believe if it were n't true . 1 +131533 7088 starts with a legend and ends with a story that is so far-fetched it would be impossible to believe if it were n't true . 2 +131534 7088 starts with a legend and ends with a story that is so far-fetched it would be impossible to believe if it were n't true 3 +131535 7088 starts with a legend and 2 +131536 7088 starts with a legend 3 +131537 7088 with a legend 2 +131538 7088 a legend 3 +131539 7088 ends with a story that is so far-fetched it would be impossible to believe if it were n't true 1 +131540 7088 with a story that is so far-fetched it would be impossible to believe if it were n't true 2 +131541 7088 a story that is so far-fetched it would be impossible to believe if it were n't true 0 +131542 7088 that is so far-fetched it would be impossible to believe if it were n't true 2 +131543 7088 is so far-fetched it would be impossible to believe if it were n't true 1 +131544 7088 so far-fetched it would be impossible to believe if it were n't true 1 +131545 7088 far-fetched it would be impossible to believe if it were n't true 2 +131546 7088 it would be impossible to believe if it were n't true 2 +131547 7088 would be impossible to believe if it were n't true 2 +131548 7088 be impossible to believe if it were n't true 2 +131549 7088 impossible to believe if it were n't true 2 +131550 7088 to believe if it were n't true 2 +131551 7088 believe if it were n't true 2 +131552 7088 if it were n't true 2 +131553 7088 it were n't true 2 +131554 7088 were n't true 2 +131555 7089 Works because Reno does n't become smug or sanctimonious towards the audience . 4 +131556 7089 Works because Reno 3 +131557 7089 because Reno 2 +131558 7089 does n't become smug or sanctimonious towards the audience . 2 +131559 7089 does n't become smug or sanctimonious towards the audience 3 +131560 7089 become smug or sanctimonious towards the audience 2 +131561 7089 become smug or sanctimonious 1 +131562 7089 smug or sanctimonious 1 +131563 7089 smug or 2 +131564 7089 towards the audience 2 +131565 7090 A few nonbelievers may rethink their attitudes when they see the joy the characters take in this creed , but skeptics are n't likely to enter the theater . 3 +131566 7090 A few nonbelievers may rethink their attitudes when they see the joy the characters take in this creed , but skeptics are n't likely to enter the theater 2 +131567 7090 A few nonbelievers may rethink their attitudes when they see the joy the characters take in this creed , but 2 +131568 7090 A few nonbelievers may rethink their attitudes when they see the joy the characters take in this creed , 3 +131569 7090 A few nonbelievers may rethink their attitudes when they see the joy the characters take in this creed 2 +131570 7090 A few nonbelievers 2 +131571 7090 few nonbelievers 3 +131572 7090 nonbelievers 2 +131573 7090 may rethink their attitudes when they see the joy the characters take in this creed 3 +131574 7090 rethink their attitudes when they see the joy the characters take in this creed 3 +131575 7090 rethink their attitudes 2 +131576 7090 rethink 2 +131577 7090 their attitudes 2 +131578 7090 attitudes 2 +131579 7090 when they see the joy the characters take in this creed 3 +131580 7090 they see the joy the characters take in this creed 3 +131581 7090 see the joy the characters take in this creed 2 +131582 7090 the joy the characters take in this creed 3 +131583 7090 the joy 2 +131584 7090 the characters take in this creed 2 +131585 7090 take in this creed 2 +131586 7090 in this creed 2 +131587 7090 this creed 2 +131588 7090 creed 2 +131589 7090 skeptics are n't likely to enter the theater 2 +131590 7090 skeptics 1 +131591 7090 are n't likely to enter the theater 2 +131592 7090 likely to enter the theater 2 +131593 7090 to enter the theater 2 +131594 7090 enter the theater 2 +131595 7091 Fred Schepisi 's film is paced at a speed that is slow to those of us in middle age and deathly slow to any teen . 0 +131596 7091 Fred Schepisi 's film 2 +131597 7091 Fred Schepisi 's 2 +131598 7091 Fred 2 +131599 7091 Schepisi 's 2 +131600 7091 Schepisi 2 +131601 7091 is paced at a speed that is slow to those of us in middle age and deathly slow to any teen . 0 +131602 7091 is paced at a speed that is slow to those of us in middle age and deathly slow to any teen 1 +131603 7091 paced at a speed that is slow to those of us in middle age and deathly slow to any teen 0 +131604 7091 paced at a speed that is slow to those of us in middle age and 1 +131605 7091 paced at a speed that is slow to those of us in middle age 1 +131606 7091 at a speed that is slow to those of us in middle age 1 +131607 7091 a speed that is slow to those of us in middle age 1 +131608 7091 a speed 2 +131609 7091 that is slow to those of us in middle age 1 +131610 7091 is slow to those of us in middle age 1 +131611 7091 is slow to those of us 2 +131612 7091 slow to those of us 2 +131613 7091 to those of us 2 +131614 7091 in middle age 2 +131615 7091 deathly slow to any teen 0 +131616 7091 deathly 1 +131617 7091 slow to any teen 2 +131618 7091 to any teen 2 +131619 7091 any teen 2 +131620 7092 Yes , I have given this movie a rating of zero . 0 +131621 7092 , I have given this movie a rating of zero . 0 +131622 7092 I have given this movie a rating of zero . 0 +131623 7092 have given this movie a rating of zero . 1 +131624 7092 have given this movie a rating of zero 0 +131625 7092 given this movie a rating of zero 0 +131626 7092 given this movie 2 +131627 7092 a rating of zero 0 +131628 7092 a rating 2 +131629 7092 of zero 2 +131630 7093 A film of delicate interpersonal dances . 3 +131631 7093 A film of delicate interpersonal 2 +131632 7093 of delicate interpersonal 2 +131633 7093 delicate interpersonal 2 +131634 7093 dances . 2 +131635 7094 The film is full of charm . 3 +131636 7094 is full of charm . 3 +131637 7094 is full of charm 4 +131638 7094 full of charm 4 +131639 7095 In both the writing and cutting , it does not achieve the kind of dramatic unity that transports you . 2 +131640 7095 In both the writing and cutting 2 +131641 7095 both the writing and cutting 2 +131642 7095 the writing and cutting 2 +131643 7095 writing and cutting 2 +131644 7095 writing and 2 +131645 7095 , it does not achieve the kind of dramatic unity that transports you . 1 +131646 7095 it does not achieve the kind of dramatic unity that transports you . 1 +131647 7095 does not achieve the kind of dramatic unity that transports you . 1 +131648 7095 does not achieve the kind of dramatic unity that transports you 1 +131649 7095 achieve the kind of dramatic unity that transports you 3 +131650 7095 the kind of dramatic unity that transports you 3 +131651 7095 the kind of dramatic unity 3 +131652 7095 of dramatic unity 3 +131653 7095 dramatic unity 3 +131654 7095 unity 2 +131655 7095 that transports you 2 +131656 7095 transports you 3 +131657 7096 To be influenced chiefly by humanity 's greatest shame , reality shows -- reality shows for God 's sake ! 0 +131658 7096 To be influenced chiefly by humanity 's greatest shame 1 +131659 7096 be influenced chiefly by humanity 's greatest shame 1 +131660 7096 influenced chiefly by humanity 's greatest shame 2 +131661 7096 influenced chiefly 2 +131662 7096 by humanity 's greatest shame 1 +131663 7096 humanity 's greatest shame 1 +131664 7096 humanity 's 2 +131665 7096 greatest shame 2 +131666 7096 , reality shows -- reality shows for God 's sake ! 1 +131667 7096 reality shows -- reality shows for God 's sake ! 1 +131668 7096 shows -- reality shows for God 's sake ! 2 +131669 7096 shows -- reality shows for God 's sake 1 +131670 7096 shows -- 2 +131671 7096 reality shows for God 's sake 1 +131672 7096 reality shows 2 +131673 7096 for God 's sake 2 +131674 7096 God 's sake 2 +131675 7096 God 's 2 +131676 7097 When Mr. Hundert tells us in his narration that ` this is a story without surprises , ' we nod in agreement . 2 +131677 7097 When Mr. Hundert tells us in his narration that ` this is a story without surprises 2 +131678 7097 Mr. Hundert tells us in his narration that ` this is a story without surprises 2 +131679 7097 Mr. Hundert 2 +131680 7097 Hundert 2 +131681 7097 tells us in his narration that ` this is a story without surprises 2 +131682 7097 tells us in his narration 2 +131683 7097 tells us 2 +131684 7097 in his narration 2 +131685 7097 his narration 2 +131686 7097 that ` this is a story without surprises 1 +131687 7097 ` this is a story without surprises 1 +131688 7097 this is a story without surprises 1 +131689 7097 is a story without surprises 2 +131690 7097 a story without surprises 1 +131691 7097 without surprises 2 +131692 7097 , ' we nod in agreement . 2 +131693 7097 ' we nod in agreement . 2 +131694 7097 we nod in agreement . 2 +131695 7097 nod in agreement . 2 +131696 7097 nod in agreement 3 +131697 7097 in agreement 2 +131698 7097 agreement 2 +131699 7098 Time Out is as serious as a pink slip . 1 +131700 7098 is as serious as a pink slip . 1 +131701 7098 is as serious as a pink slip 2 +131702 7098 as serious as a pink slip 2 +131703 7098 serious as a pink slip 2 +131704 7098 as a pink slip 1 +131705 7099 Spy-vs . 2 +131706 7099 Spy-vs 2 +131707 7100 A listless and desultory affair . 1 +131708 7100 A listless and desultory affair 1 +131709 7100 listless and desultory affair 1 +131710 7100 listless and desultory 0 +131711 7100 listless and 1 +131712 7100 desultory 1 +131713 7101 By the final whistle you 're convinced that this Mean Machine was a decent TV outing that just does n't have big screen magic . 1 +131714 7101 By the final whistle 2 +131715 7101 the final whistle 2 +131716 7101 final whistle 1 +131717 7101 whistle 2 +131718 7101 you 're convinced that this Mean Machine was a decent TV outing that just does n't have big screen magic . 1 +131719 7101 're convinced that this Mean Machine was a decent TV outing that just does n't have big screen magic . 1 +131720 7101 're convinced that this Mean Machine was a decent TV outing that just does n't have big screen magic 1 +131721 7101 convinced that this Mean Machine was a decent TV outing that just does n't have big screen magic 1 +131722 7101 that this Mean Machine was a decent TV outing that just does n't have big screen magic 1 +131723 7101 this Mean Machine was a decent TV outing that just does n't have big screen magic 2 +131724 7101 this Mean Machine 2 +131725 7101 Mean Machine 2 +131726 7101 was a decent TV outing that just does n't have big screen magic 2 +131727 7101 a decent TV outing that just does n't have big screen magic 2 +131728 7101 a decent TV outing 3 +131729 7101 decent TV outing 3 +131730 7101 TV outing 2 +131731 7101 that just does n't have big screen magic 1 +131732 7101 just does n't have big screen magic 1 +131733 7101 does n't have big screen magic 1 +131734 7101 have big screen magic 2 +131735 7101 big screen magic 4 +131736 7101 screen magic 4 +131737 7102 This time , the hype is quieter , and while the movie is slightly less successful than the first , it 's still a rollicking good time for the most part . 3 +131738 7102 This time , the hype is quieter , and while the movie is slightly less successful than the first , it 's still a rollicking good time for the most part 3 +131739 7102 This time , the hype is quieter , and 1 +131740 7102 This time , the hype is quieter , 2 +131741 7102 This time , the hype is quieter 2 +131742 7102 , the hype is quieter 2 +131743 7102 the hype is quieter 2 +131744 7102 is quieter 2 +131745 7102 while the movie is slightly less successful than the first , it 's still a rollicking good time for the most part 3 +131746 7102 while the movie is slightly less successful than the first 1 +131747 7102 the movie is slightly less successful than the first 2 +131748 7102 is slightly less successful than the first 1 +131749 7102 slightly less successful than the first 1 +131750 7102 slightly less successful 1 +131751 7102 less successful 1 +131752 7102 , it 's still a rollicking good time for the most part 3 +131753 7102 it 's still a rollicking good time for the most part 4 +131754 7102 's still a rollicking good time for the most part 4 +131755 7102 a rollicking good time for the most part 3 +131756 7102 a rollicking good time 3 +131757 7102 rollicking good time 3 +131758 7103 Often likable , but just as often it 's meandering , low on energy , and too eager to be quirky at moments when a little old-fashioned storytelling would come in handy . 3 +131759 7103 likable , but just as often it 's meandering , low on energy , and too eager to be quirky at moments when a little old-fashioned storytelling would come in handy . 1 +131760 7103 likable , but just as often it 's meandering , low on energy , and too eager to be quirky at moments when a little old-fashioned storytelling would come in handy 2 +131761 7103 likable , but just 2 +131762 7103 , but just 2 +131763 7103 as often it 's meandering , low on energy , and too eager to be quirky at moments when a little old-fashioned storytelling would come in handy 1 +131764 7103 often it 's meandering , low on energy , and too eager to be quirky at moments when a little old-fashioned storytelling would come in handy 1 +131765 7103 it 's meandering , low on energy , and too eager to be quirky at moments when a little old-fashioned storytelling would come in handy 1 +131766 7103 's meandering , low on energy , and too eager to be quirky at moments when a little old-fashioned storytelling would come in handy 0 +131767 7103 's meandering , low on energy , and too eager to be quirky at moments 1 +131768 7103 's meandering , low on energy , and too eager 1 +131769 7103 meandering , low on energy , and too eager 1 +131770 7103 meandering , low on energy , and 1 +131771 7103 meandering , low on energy , 1 +131772 7103 meandering , low on energy 1 +131773 7103 meandering , 2 +131774 7103 low on energy 1 +131775 7103 on energy 2 +131776 7103 too eager 2 +131777 7103 to be quirky at moments 2 +131778 7103 be quirky at moments 2 +131779 7103 quirky at moments 3 +131780 7103 at moments 2 +131781 7103 when a little old-fashioned storytelling would come in handy 2 +131782 7103 a little old-fashioned storytelling would come in handy 2 +131783 7103 a little old-fashioned storytelling 3 +131784 7103 little old-fashioned storytelling 2 +131785 7103 old-fashioned storytelling 3 +131786 7103 would come in handy 2 +131787 7103 come in handy 2 +131788 7103 in handy 2 +131789 7103 handy 2 +131790 7104 We could have expected a little more human being , and a little less product . 2 +131791 7104 could have expected a little more human being , and a little less product . 1 +131792 7104 could have expected a little more human being , and a little less product 2 +131793 7104 have expected a little more human being , and a little less product 1 +131794 7104 expected a little more human being , and a little less product 2 +131795 7104 a little more human being , and a little less product 1 +131796 7104 a little more human being , and 1 +131797 7104 a little more human being , 2 +131798 7104 a little more human being 2 +131799 7104 little more human being 2 +131800 7104 little more human 2 +131801 7104 more human 2 +131802 7104 a little less product 1 +131803 7104 little less product 2 +131804 7105 Wonder of wonders -- a teen movie with a humanistic message . 3 +131805 7105 Wonder of wonders -- a teen movie with a humanistic message 3 +131806 7105 Wonder of wonders -- 3 +131807 7105 Wonder of wonders 3 +131808 7105 of wonders 2 +131809 7105 a teen movie with a humanistic message 3 +131810 7105 with a humanistic message 3 +131811 7105 a humanistic message 3 +131812 7105 humanistic message 2 +131813 7105 humanistic 3 +131814 7106 Whether it 's the worst movie of 2002 , I ca n't say for sure : Memories of Rollerball have faded , and I skipped Country Bears . 1 +131815 7106 Whether it 's the worst movie of 2002 , I ca n't say for sure : Memories of Rollerball have faded , and I skipped Country Bears 0 +131816 7106 Whether it 's the worst movie of 2002 , I ca n't say for sure : 0 +131817 7106 Whether it 's the worst movie of 2002 , I ca n't say for sure 0 +131818 7106 Whether it 's the worst movie of 2002 2 +131819 7106 it 's the worst movie of 2002 1 +131820 7106 's the worst movie of 2002 0 +131821 7106 the worst movie of 2002 0 +131822 7106 , I ca n't say for sure 2 +131823 7106 I ca n't say for sure 2 +131824 7106 ca n't say for sure 2 +131825 7106 say for sure 2 +131826 7106 Memories of Rollerball have faded , and I skipped Country Bears 2 +131827 7106 Memories of Rollerball have faded , and 2 +131828 7106 Memories of Rollerball have faded , 2 +131829 7106 Memories of Rollerball have faded 2 +131830 7106 Memories of Rollerball 3 +131831 7106 of Rollerball 2 +131832 7106 have faded 2 +131833 7106 faded 2 +131834 7106 I skipped Country Bears 1 +131835 7106 skipped Country Bears 2 +131836 7106 skipped 2 +131837 7107 Proof of this is Ballistic : Ecks vs. Sever . 2 +131838 7107 Proof of this 2 +131839 7107 is Ballistic : Ecks vs. Sever . 2 +131840 7107 is Ballistic : Ecks vs. Sever 2 +131841 7108 Michele is a such a brainless flibbertigibbet that it 's hard to take her spiritual quest at all seriously . 1 +131842 7108 is a such a brainless flibbertigibbet that it 's hard to take her spiritual quest at all seriously . 1 +131843 7108 is a such a brainless flibbertigibbet that it 's hard to take her spiritual quest at all seriously 1 +131844 7108 is a such a brainless flibbertigibbet 1 +131845 7108 a such a brainless flibbertigibbet 1 +131846 7108 such a brainless flibbertigibbet 2 +131847 7108 a brainless flibbertigibbet 0 +131848 7108 brainless flibbertigibbet 1 +131849 7108 flibbertigibbet 2 +131850 7108 that it 's hard to take her spiritual quest at all seriously 1 +131851 7108 it 's hard to take her spiritual quest at all seriously 1 +131852 7108 's hard to take her spiritual quest at all seriously 1 +131853 7108 hard to take her spiritual quest at all seriously 1 +131854 7108 to take her spiritual quest at all seriously 2 +131855 7108 take her spiritual quest at all seriously 2 +131856 7108 take her spiritual quest at all 2 +131857 7108 take her spiritual quest 2 +131858 7108 her spiritual quest 2 +131859 7109 Though this saga would be terrific to read about , it is dicey screen material that only a genius should touch . 3 +131860 7109 Though this saga would be terrific to read about 2 +131861 7109 this saga would be terrific to read about 3 +131862 7109 this saga 2 +131863 7109 would be terrific to read about 3 +131864 7109 be terrific to read about 2 +131865 7109 terrific to read about 3 +131866 7109 , it is dicey screen material that only a genius should touch . 2 +131867 7109 it is dicey screen material that only a genius should touch . 2 +131868 7109 is dicey screen material that only a genius should touch . 2 +131869 7109 is dicey screen material that only a genius should touch 2 +131870 7109 is dicey screen material 2 +131871 7109 dicey screen material 1 +131872 7109 dicey 1 +131873 7109 screen material 2 +131874 7109 that only a genius should touch 2 +131875 7109 only a genius should touch 2 +131876 7109 only a genius 1 +131877 7109 a genius 3 +131878 7109 should touch 2 +131879 7110 There 's got to be a more graceful way of portraying the devastation of this disease . 1 +131880 7110 's got to be a more graceful way of portraying the devastation of this disease . 1 +131881 7110 's got to be a more graceful way of portraying the devastation of this disease 1 +131882 7110 got to be a more graceful way of portraying the devastation of this disease 1 +131883 7110 to be a more graceful way of portraying the devastation of this disease 2 +131884 7110 be a more graceful way of portraying the devastation of this disease 2 +131885 7110 a more graceful way of portraying the devastation of this disease 3 +131886 7110 a more graceful way 3 +131887 7110 more graceful way 3 +131888 7110 more graceful 3 +131889 7110 of portraying the devastation of this disease 1 +131890 7110 portraying the devastation of this disease 2 +131891 7110 the devastation of this disease 1 +131892 7110 the devastation 1 +131893 7110 devastation 1 +131894 7110 of this disease 2 +131895 7110 this disease 2 +131896 7110 disease 1 +131897 7111 Drawing on an irresistible , languid romanticism , Byler reveals the ways in which a sultry evening or a beer-fueled afternoon in the sun can inspire even the most retiring heart to venture forth . 4 +131898 7111 Drawing on an irresistible , languid romanticism 3 +131899 7111 on an irresistible , languid romanticism 3 +131900 7111 an irresistible , languid romanticism 3 +131901 7111 irresistible , languid romanticism 4 +131902 7111 , languid romanticism 2 +131903 7111 languid romanticism 2 +131904 7111 romanticism 2 +131905 7111 , Byler reveals the ways in which a sultry evening or a beer-fueled afternoon in the sun can inspire even the most retiring heart to venture forth . 3 +131906 7111 Byler reveals the ways in which a sultry evening or a beer-fueled afternoon in the sun can inspire even the most retiring heart to venture forth . 3 +131907 7111 reveals the ways in which a sultry evening or a beer-fueled afternoon in the sun can inspire even the most retiring heart to venture forth . 3 +131908 7111 reveals the ways in which a sultry evening or a beer-fueled afternoon in the sun can inspire even the most retiring heart to venture forth 3 +131909 7111 the ways in which a sultry evening or a beer-fueled afternoon in the sun can inspire even the most retiring heart to venture forth 2 +131910 7111 in which a sultry evening or a beer-fueled afternoon in the sun can inspire even the most retiring heart to venture forth 3 +131911 7111 a sultry evening or a beer-fueled afternoon in the sun can inspire even the most retiring heart to venture forth 3 +131912 7111 a sultry evening or a beer-fueled afternoon in the sun 2 +131913 7111 a sultry evening or 2 +131914 7111 a sultry evening 3 +131915 7111 sultry evening 2 +131916 7111 sultry 3 +131917 7111 a beer-fueled afternoon in the sun 2 +131918 7111 a beer-fueled afternoon 2 +131919 7111 beer-fueled afternoon 2 +131920 7111 beer-fueled 3 +131921 7111 in the sun 3 +131922 7111 the sun 2 +131923 7111 can inspire even the most retiring heart to venture forth 2 +131924 7111 inspire even the most retiring heart to venture forth 4 +131925 7111 even the most retiring heart to venture forth 2 +131926 7111 even the most 2 +131927 7111 retiring heart to venture forth 2 +131928 7111 retiring heart 2 +131929 7111 retiring 2 +131930 7111 to venture forth 2 +131931 7111 venture forth 3 +131932 7112 A moving tale of love and destruction in unexpected places , unexamined lives . 3 +131933 7112 A moving tale of love and destruction in unexpected places 3 +131934 7112 A moving tale of love and destruction 3 +131935 7112 A moving tale 3 +131936 7112 moving tale 3 +131937 7112 of love and destruction 2 +131938 7112 love and destruction 2 +131939 7112 in unexpected places 2 +131940 7112 unexpected places 2 +131941 7112 , unexamined lives . 2 +131942 7112 unexamined lives . 2 +131943 7112 unexamined lives 2 +131944 7112 unexamined 2 +131945 7113 Much of the digitally altered footage 2 +131946 7113 of the digitally altered footage 2 +131947 7113 the digitally altered footage 2 +131948 7113 digitally altered footage 1 +131949 7113 digitally 2 +131950 7113 altered footage 2 +131951 7113 altered 3 +131952 7113 jagged , as if filmed directly from a television monitor , 1 +131953 7113 jagged , as if filmed directly from a television monitor 1 +131954 7113 jagged , as if 2 +131955 7113 jagged , 1 +131956 7113 filmed directly from a television monitor 1 +131957 7113 filmed directly 3 +131958 7113 from a television monitor 3 +131959 7113 a television monitor 2 +131960 7113 television monitor 2 +131961 7113 monitor 2 +131962 7113 the extensive use of stock footage 1 +131963 7113 the extensive use 2 +131964 7113 extensive use 2 +131965 7113 of stock footage 2 +131966 7114 If you can keep your eyes open amid all the blood and gore , you 'll see Del Toro has brought unexpected gravity to Blade II . 2 +131967 7114 If you can keep your eyes open amid all the blood and gore 2 +131968 7114 you can keep your eyes open amid all the blood and gore 2 +131969 7114 can keep your eyes open amid all the blood and gore 1 +131970 7114 keep your eyes open amid all the blood and gore 2 +131971 7114 keep your eyes open amid all the blood and 2 +131972 7114 keep your eyes open amid all the blood 2 +131973 7114 keep your eyes open 3 +131974 7114 keep your eyes 2 +131975 7114 amid all the blood 2 +131976 7114 all the blood 2 +131977 7114 the blood 2 +131978 7114 , you 'll see Del Toro has brought unexpected gravity to Blade II . 3 +131979 7114 you 'll see Del Toro has brought unexpected gravity to Blade II . 2 +131980 7114 'll see Del Toro has brought unexpected gravity to Blade II . 2 +131981 7114 'll see Del Toro has brought unexpected gravity to Blade II 3 +131982 7114 see Del Toro has brought unexpected gravity to Blade II 3 +131983 7114 Del Toro has brought unexpected gravity to Blade II 3 +131984 7114 has brought unexpected gravity to Blade II 3 +131985 7114 brought unexpected gravity to Blade II 3 +131986 7114 brought unexpected gravity 3 +131987 7114 unexpected gravity 2 +131988 7114 to Blade II 2 +131989 7115 Nothing but one relentlessly depressing situation after another for its entire running time , something that you could easily be dealing with right now in your lives . 1 +131990 7115 Nothing but one relentlessly depressing situation after another for its entire running time , something that you could easily be dealing with right now in your lives 1 +131991 7115 Nothing but one relentlessly depressing situation after another for its entire running time , 1 +131992 7115 Nothing but one relentlessly depressing situation after another for its entire running time 0 +131993 7115 but one relentlessly depressing situation after another for its entire running time 0 +131994 7115 one relentlessly depressing situation after another for its entire running time 0 +131995 7115 one relentlessly depressing situation 1 +131996 7115 relentlessly depressing situation 2 +131997 7115 relentlessly depressing 0 +131998 7115 after another for its entire running time 2 +131999 7115 another for its entire running time 2 +132000 7115 for its entire running time 2 +132001 7115 its entire running time 2 +132002 7115 entire running time 2 +132003 7115 something that you could easily be dealing with right now in your lives 2 +132004 7115 that you could easily be dealing with right now in your lives 2 +132005 7115 you could easily be dealing with right now in your lives 2 +132006 7115 could easily be dealing with right now in your lives 3 +132007 7115 be dealing with right now in your lives 2 +132008 7115 dealing with right now in your lives 2 +132009 7115 dealing with right now 2 +132010 7115 dealing with right 2 +132011 7115 with right 2 +132012 7115 in your lives 2 +132013 7116 Gosling creates a staggeringly compelling character , a young man whose sharp intellect is at the very root of his contradictory , self-hating , self-destructive ways . 4 +132014 7116 Gosling creates a staggeringly compelling character , a young man whose sharp intellect is at the very root of his contradictory , self-hating , self-destructive ways 3 +132015 7116 Gosling creates 2 +132016 7116 a staggeringly compelling character , a young man whose sharp intellect is at the very root of his contradictory , self-hating , self-destructive ways 3 +132017 7116 a staggeringly compelling character , 4 +132018 7116 a staggeringly compelling character 4 +132019 7116 staggeringly compelling character 3 +132020 7116 compelling character 4 +132021 7116 a young man whose sharp intellect is at the very root of his contradictory , self-hating , self-destructive ways 2 +132022 7116 a young man 2 +132023 7116 young man 2 +132024 7116 whose sharp intellect is at the very root of his contradictory , self-hating , self-destructive ways 2 +132025 7116 whose sharp intellect 3 +132026 7116 whose sharp 3 +132027 7116 is at the very root of his contradictory , self-hating , self-destructive ways 2 +132028 7116 at the very root of his contradictory , self-hating , self-destructive ways 1 +132029 7116 the very root of his contradictory , self-hating , self-destructive ways 2 +132030 7116 the very root 2 +132031 7116 very root 2 +132032 7116 of his contradictory , self-hating , self-destructive ways 0 +132033 7116 his contradictory , self-hating , self-destructive ways 1 +132034 7116 contradictory , self-hating , self-destructive ways 1 +132035 7116 , self-hating , self-destructive ways 1 +132036 7116 self-hating , self-destructive ways 1 +132037 7116 self-hating 2 +132038 7116 , self-destructive ways 2 +132039 7116 self-destructive ways 2 +132040 7117 It 's all pretty tame . 2 +132041 7117 's all pretty tame . 2 +132042 7117 's all pretty tame 2 +132043 7117 's all pretty 3 +132044 7117 all pretty 3 +132045 7118 A less-than-thrilling thriller . 0 +132046 7118 less-than-thrilling thriller . 1 +132047 7118 less-than-thrilling 0 +132048 7119 The plot meanders from gripping to plodding and back . 2 +132049 7119 meanders from gripping to plodding and back . 1 +132050 7119 meanders from gripping to plodding and back 1 +132051 7119 from gripping to plodding and back 2 +132052 7119 gripping to plodding and back 2 +132053 7119 to plodding and back 1 +132054 7119 plodding and back 2 +132055 7119 plodding and 1 +132056 7120 Parts of the film feel a bit too much like an infomercial for Ram Dass 's latest book aimed at the boomer demographic . 1 +132057 7120 Parts of the film 2 +132058 7120 feel a bit too much like an infomercial for Ram Dass 's latest book aimed at the boomer demographic . 2 +132059 7120 feel a bit too much like an infomercial for Ram Dass 's latest book aimed at the boomer demographic 1 +132060 7120 a bit too much like an infomercial for Ram Dass 's latest book aimed at the boomer demographic 0 +132061 7120 a bit too much like an infomercial for Ram Dass 's latest book aimed at the boomer 1 +132062 7120 too much like an infomercial for Ram Dass 's latest book aimed at the boomer 1 +132063 7120 too much like an infomercial for Ram Dass 's latest book 1 +132064 7120 like an infomercial for Ram Dass 's latest book 1 +132065 7120 an infomercial for Ram Dass 's latest book 1 +132066 7120 an infomercial 2 +132067 7120 for Ram Dass 's latest book 2 +132068 7120 Ram Dass 's latest book 2 +132069 7120 Ram Dass 's 2 +132070 7120 Dass 's 2 +132071 7120 latest book 2 +132072 7120 aimed at the boomer 2 +132073 7120 at the boomer 2 +132074 7120 the boomer 2 +132075 7120 boomer 2 +132076 7121 A prolonged extrusion of psychopathic pulp . 1 +132077 7121 A prolonged extrusion of psychopathic pulp 0 +132078 7121 A prolonged extrusion 2 +132079 7121 prolonged extrusion 1 +132080 7121 extrusion 2 +132081 7121 of psychopathic pulp 1 +132082 7121 psychopathic pulp 2 +132083 7122 The film 's sense of imagery gives it a terrible strength , but it 's propelled by the acting . 3 +132084 7122 The film 's sense of imagery gives it a terrible strength , but it 's propelled by the acting 3 +132085 7122 The film 's sense of imagery gives it a terrible strength , but 3 +132086 7122 The film 's sense of imagery gives it a terrible strength , 2 +132087 7122 The film 's sense of imagery gives it a terrible strength 4 +132088 7122 The film 's sense of imagery 2 +132089 7122 The film 's sense 2 +132090 7122 of imagery 2 +132091 7122 gives it a terrible strength 2 +132092 7122 a terrible strength 3 +132093 7122 terrible strength 2 +132094 7122 it 's propelled by the acting 3 +132095 7122 's propelled by the acting 3 +132096 7122 propelled by the acting 3 +132097 7122 propelled 2 +132098 7122 by the acting 2 +132099 7123 Schepisi , aided by a cast that seems to include every top-notch British actor who did not appear in Gosford Park -LRB- as well as one , Ms. Mirren , who did -RRB- , has succeeded beyond all expectation . 4 +132100 7123 Schepisi , aided by a cast that seems to include every top-notch British actor who did not appear in Gosford Park -LRB- as well as one , Ms. Mirren , who did -RRB- , 3 +132101 7123 Schepisi , aided by a cast that seems to include every top-notch British actor who did not appear in Gosford Park -LRB- as well as one , Ms. Mirren , who did -RRB- 2 +132102 7123 Schepisi , 2 +132103 7123 aided by a cast that seems to include every top-notch British actor who did not appear in Gosford Park -LRB- as well as one , Ms. Mirren , who did -RRB- 3 +132104 7123 aided 2 +132105 7123 by a cast that seems to include every top-notch British actor who did not appear in Gosford Park -LRB- as well as one , Ms. Mirren , who did -RRB- 3 +132106 7123 a cast that seems to include every top-notch British actor who did not appear in Gosford Park -LRB- as well as one , Ms. Mirren , who did -RRB- 4 +132107 7123 that seems to include every top-notch British actor who did not appear in Gosford Park -LRB- as well as one , Ms. Mirren , who did -RRB- 2 +132108 7123 seems to include every top-notch British actor who did not appear in Gosford Park -LRB- as well as one , Ms. Mirren , who did -RRB- 3 +132109 7123 to include every top-notch British actor who did not appear in Gosford Park -LRB- as well as one , Ms. Mirren , who did -RRB- 1 +132110 7123 include every top-notch British actor who did not appear in Gosford Park -LRB- as well as one , Ms. Mirren , who did -RRB- 3 +132111 7123 every top-notch British actor who did not appear in Gosford Park -LRB- as well as one , Ms. Mirren , who did -RRB- 2 +132112 7123 every top-notch British actor 4 +132113 7123 top-notch British actor 4 +132114 7123 British actor 2 +132115 7123 who did not appear in Gosford Park -LRB- as well as one , Ms. Mirren , who did -RRB- 2 +132116 7123 did not appear in Gosford Park -LRB- as well as one , Ms. Mirren , who did -RRB- 2 +132117 7123 appear in Gosford Park -LRB- as well as one , Ms. Mirren , who did -RRB- 2 +132118 7123 in Gosford Park -LRB- as well as one , Ms. Mirren , who did -RRB- 2 +132119 7123 Gosford Park -LRB- as well as one , Ms. Mirren , who did -RRB- 2 +132120 7123 -LRB- as well as one , Ms. Mirren , who did -RRB- 2 +132121 7123 as well as one , Ms. Mirren , who did -RRB- 2 +132122 7123 as well as one , Ms. Mirren , who did 2 +132123 7123 as one , Ms. Mirren , who did 2 +132124 7123 one , Ms. Mirren , who did 2 +132125 7123 one , Ms. Mirren , 2 +132126 7123 one , Ms. Mirren 2 +132127 7123 one , 2 +132128 7123 Ms. Mirren 2 +132129 7123 Mirren 2 +132130 7123 who did 2 +132131 7123 has succeeded beyond all expectation . 4 +132132 7123 has succeeded beyond all expectation 4 +132133 7123 succeeded beyond all expectation 4 +132134 7123 beyond all expectation 3 +132135 7123 all expectation 2 +132136 7124 The plan to make Enough into ` an inspiring tale of survival wrapped in the heart-pounding suspense of a stylish psychological thriller ' 2 +132137 7124 plan to make Enough into ` an inspiring tale of survival wrapped in the heart-pounding suspense of a stylish psychological thriller ' 3 +132138 7124 to make Enough into ` an inspiring tale of survival wrapped in the heart-pounding suspense of a stylish psychological thriller ' 4 +132139 7124 make Enough into ` an inspiring tale of survival wrapped in the heart-pounding suspense of a stylish psychological thriller ' 3 +132140 7124 make Enough 2 +132141 7124 into ` an inspiring tale of survival wrapped in the heart-pounding suspense of a stylish psychological thriller ' 4 +132142 7124 into ` an inspiring tale of survival wrapped in the heart-pounding suspense of a stylish psychological thriller 3 +132143 7124 into ` 2 +132144 7124 an inspiring tale of survival wrapped in the heart-pounding suspense of a stylish psychological thriller 4 +132145 7124 an inspiring tale 4 +132146 7124 inspiring tale 4 +132147 7124 of survival wrapped in the heart-pounding suspense of a stylish psychological thriller 4 +132148 7124 survival wrapped in the heart-pounding suspense of a stylish psychological thriller 4 +132149 7124 wrapped in the heart-pounding suspense of a stylish psychological thriller 4 +132150 7124 in the heart-pounding suspense of a stylish psychological thriller 4 +132151 7124 the heart-pounding suspense of a stylish psychological thriller 4 +132152 7124 the heart-pounding suspense 3 +132153 7124 heart-pounding suspense 3 +132154 7124 heart-pounding 3 +132155 7124 of a stylish psychological thriller 3 +132156 7124 a stylish psychological thriller 4 +132157 7124 stylish psychological thriller 3 +132158 7124 stylish psychological 3 +132159 7124 flopped as surely 0 +132160 7124 flopped 0 +132161 7124 as surely 2 +132162 7124 gone wrong 1 +132163 7125 A lovably old-school Hollywood confection . 3 +132164 7125 A lovably old-school Hollywood confection 3 +132165 7125 A lovably 3 +132166 7125 lovably 3 +132167 7125 old-school Hollywood confection 2 +132168 7125 Hollywood confection 1 +132169 7126 The characters seem one-dimensional , and the film is superficial and will probably be of interest primarily to its target audience . 1 +132170 7126 The characters seem one-dimensional , and the film is superficial and will probably be of interest primarily to its target audience 2 +132171 7126 The characters seem one-dimensional , and 1 +132172 7126 The characters seem one-dimensional , 1 +132173 7126 The characters seem one-dimensional 1 +132174 7126 seem one-dimensional 1 +132175 7126 the film is superficial and will probably be of interest primarily to its target audience 1 +132176 7126 is superficial and will probably be of interest primarily to its target audience 2 +132177 7126 is superficial and 1 +132178 7126 is superficial 1 +132179 7126 will probably be of interest primarily to its target audience 2 +132180 7126 be of interest primarily to its target audience 3 +132181 7126 be of interest primarily 2 +132182 7126 be of interest 2 +132183 7126 to its target audience 2 +132184 7127 For once , a movie does not proclaim the truth about two love-struck somebodies , but permits them time and space to convince us of that all on their own . 3 +132185 7127 , a movie does not proclaim the truth about two love-struck somebodies , but permits them time and space to convince us of that all on their own . 3 +132186 7127 a movie does not proclaim the truth about two love-struck somebodies , but permits them time and space to convince us of that all on their own . 3 +132187 7127 does not proclaim the truth about two love-struck somebodies , but permits them time and space to convince us of that all on their own . 3 +132188 7127 does not proclaim the truth about two love-struck somebodies , but permits them time and space to convince us of that all on their own 2 +132189 7127 does not proclaim the truth about two love-struck somebodies , but 1 +132190 7127 does not proclaim the truth about two love-struck somebodies , 2 +132191 7127 does not proclaim the truth about two love-struck somebodies 1 +132192 7127 proclaim the truth about two love-struck somebodies 2 +132193 7127 proclaim 2 +132194 7127 the truth about two love-struck somebodies 2 +132195 7127 about two love-struck somebodies 2 +132196 7127 two love-struck somebodies 2 +132197 7127 love-struck somebodies 2 +132198 7127 love-struck 3 +132199 7127 somebodies 2 +132200 7127 permits them time and space to convince us of that all on their own 2 +132201 7127 them time and space to convince us of that all on their own 2 +132202 7127 time and space to convince us of that all on their own 2 +132203 7127 to convince us of that all on their own 3 +132204 7127 convince us of that all on their own 3 +132205 7127 convince us of that 2 +132206 7127 us of that 2 +132207 7127 all on their own 2 +132208 7128 A dull , somnambulant exercise in pretension whose pervasive quiet is broken by frequent outbursts of violence and noise . 0 +132209 7128 A dull , somnambulant exercise in pretension whose pervasive quiet 1 +132210 7128 A dull , somnambulant exercise 0 +132211 7128 dull , somnambulant exercise 1 +132212 7128 , somnambulant exercise 2 +132213 7128 somnambulant exercise 0 +132214 7128 somnambulant 2 +132215 7128 in pretension whose pervasive quiet 2 +132216 7128 pretension whose pervasive quiet 2 +132217 7128 whose pervasive quiet 3 +132218 7128 whose pervasive 2 +132219 7128 is broken by frequent outbursts of violence and noise . 1 +132220 7128 is broken by frequent outbursts of violence and noise 1 +132221 7128 broken by frequent outbursts of violence and noise 2 +132222 7128 by frequent outbursts of violence and noise 2 +132223 7128 frequent outbursts of violence and noise 2 +132224 7128 frequent outbursts 2 +132225 7128 of violence and noise 2 +132226 7128 violence and noise 2 +132227 7128 violence and 2 +132228 7129 Paxton 's uneven directorial debut fails to unlock the full potential of what is in many ways a fresh and dramatically substantial spin on the genre . 2 +132229 7129 Paxton 's uneven directorial debut 2 +132230 7129 Paxton 's 2 +132231 7129 uneven directorial debut 1 +132232 7129 fails to unlock the full potential of what is in many ways a fresh and dramatically substantial spin on the genre . 2 +132233 7129 fails to unlock the full potential of what is in many ways a fresh and dramatically substantial spin on the genre 1 +132234 7129 to unlock the full potential of what is in many ways a fresh and dramatically substantial spin on the genre 3 +132235 7129 unlock the full potential of what is in many ways a fresh and dramatically substantial spin on the genre 3 +132236 7129 unlock 2 +132237 7129 the full potential of what is in many ways a fresh and dramatically substantial spin on the genre 2 +132238 7129 the full potential 2 +132239 7129 of what is in many ways a fresh and dramatically substantial spin on the genre 4 +132240 7129 what is in many ways a fresh and dramatically substantial spin on the genre 3 +132241 7129 is in many ways a fresh and dramatically substantial spin on the genre 4 +132242 7129 is in many ways 2 +132243 7129 a fresh and dramatically substantial spin on the genre 4 +132244 7129 a fresh and dramatically substantial spin 3 +132245 7129 fresh and dramatically substantial spin 3 +132246 7129 fresh and dramatically substantial 4 +132247 7129 dramatically substantial 3 +132248 7129 on the genre 2 +132249 7130 Watching the chemistry between Freeman and Judd , however , almost makes this movie worth seeing . 3 +132250 7130 Watching the chemistry between Freeman and Judd 2 +132251 7130 the chemistry between Freeman and Judd 2 +132252 7130 the chemistry 2 +132253 7130 between Freeman and Judd 2 +132254 7130 , however , almost makes this movie worth seeing . 2 +132255 7130 however , almost makes this movie worth seeing . 3 +132256 7130 , almost makes this movie worth seeing . 2 +132257 7130 almost makes this movie worth seeing . 2 +132258 7130 almost makes this movie worth seeing 2 +132259 7130 makes this movie worth seeing 3 +132260 7130 this movie worth seeing 3 +132261 7131 The attempt to build up a pressure cooker of horrified awe emerges from the simple fact that the movie has virtually nothing to show . 0 +132262 7131 The attempt to build up a pressure cooker of horrified awe 1 +132263 7131 attempt to build up a pressure cooker of horrified awe 1 +132264 7131 to build up a pressure cooker of horrified awe 1 +132265 7131 build up a pressure cooker of horrified awe 2 +132266 7131 build up 2 +132267 7131 a pressure cooker of horrified awe 1 +132268 7131 a pressure cooker 2 +132269 7131 pressure cooker 2 +132270 7131 pressure 2 +132271 7131 cooker 2 +132272 7131 of horrified awe 2 +132273 7131 horrified awe 2 +132274 7131 horrified 1 +132275 7131 emerges from the simple fact that the movie has virtually nothing to show . 0 +132276 7131 emerges from the simple fact that the movie has virtually nothing to show 1 +132277 7131 emerges from the simple fact 2 +132278 7131 from the simple fact 2 +132279 7131 the simple fact 3 +132280 7131 simple fact 2 +132281 7131 that the movie has virtually nothing to show 0 +132282 7131 the movie has virtually nothing to show 2 +132283 7131 has virtually nothing to show 1 +132284 7131 virtually nothing to show 1 +132285 7131 nothing to show 1 +132286 7132 There 's something about a marching band that gets me where I live . 2 +132287 7132 's something about a marching band that gets me where I live . 3 +132288 7132 's something about a marching band that gets me where I live 2 +132289 7132 something about a marching band that gets me where I live 2 +132290 7132 about a marching band that gets me where I live 2 +132291 7132 a marching band that gets me where I live 3 +132292 7132 that gets me where I live 2 +132293 7132 gets me where I live 2 +132294 7132 gets me 2 +132295 7132 where I live 2 +132296 7132 I live 2 +132297 7133 Serious movie-goers embarking upon this journey will find that The Road to Perdition leads to a satisfying destination . 4 +132298 7133 Serious movie-goers embarking upon this journey 3 +132299 7133 Serious movie-goers 2 +132300 7133 movie-goers 2 +132301 7133 embarking upon this journey 2 +132302 7133 embarking 2 +132303 7133 upon this journey 2 +132304 7133 this journey 2 +132305 7133 will find that The Road to Perdition leads to a satisfying destination . 4 +132306 7133 will find that The Road to Perdition leads to a satisfying destination 3 +132307 7133 find that The Road to Perdition leads to a satisfying destination 3 +132308 7133 that The Road to Perdition leads to a satisfying destination 3 +132309 7133 The Road to Perdition leads to a satisfying destination 3 +132310 7133 The Road to Perdition 3 +132311 7133 leads to a satisfying destination 3 +132312 7133 to a satisfying destination 3 +132313 7133 a satisfying destination 4 +132314 7134 It 's mildly sentimental , unabashedly consumerist ... studiously inoffensive and completely disposable . 1 +132315 7134 's mildly sentimental , unabashedly consumerist ... studiously inoffensive and completely disposable . 0 +132316 7134 's mildly sentimental , unabashedly consumerist ... studiously inoffensive and completely disposable 0 +132317 7134 's mildly sentimental , unabashedly 2 +132318 7134 's mildly sentimental , 2 +132319 7134 's mildly sentimental 3 +132320 7134 mildly sentimental 2 +132321 7134 consumerist ... studiously inoffensive and completely disposable 0 +132322 7134 consumerist ... studiously inoffensive and 2 +132323 7134 consumerist ... studiously inoffensive 2 +132324 7134 consumerist ... 2 +132325 7134 consumerist 2 +132326 7134 studiously inoffensive 1 +132327 7134 studiously 2 +132328 7134 completely disposable 2 +132329 7135 Serving Sara is little more than a mall movie designed to kill time . 1 +132330 7135 is little more than a mall movie designed to kill time . 1 +132331 7135 is little more than a mall movie designed to kill time 0 +132332 7135 little more than a mall movie designed to kill time 1 +132333 7135 than a mall movie designed to kill time 0 +132334 7135 a mall movie designed to kill time 1 +132335 7135 a mall movie 2 +132336 7135 mall movie 1 +132337 7135 designed to kill time 2 +132338 7135 to kill time 2 +132339 7135 kill time 2 +132340 7136 A dull , dumb and derivative horror film . 0 +132341 7136 A dull , dumb and derivative horror film 0 +132342 7136 A dull , dumb and derivative horror 1 +132343 7136 dull , dumb and derivative horror 0 +132344 7136 , dumb and derivative horror 1 +132345 7136 dumb and derivative horror 0 +132346 7136 and derivative horror 2 +132347 7136 derivative horror 2 +132348 7137 Wimps out by going for that PG-13 rating , so the more graphic violence is mostly off-screen and the sexuality is muted . 1 +132349 7137 Wimps out by going for that PG-13 rating , so the more graphic violence is mostly off-screen and the sexuality is muted 2 +132350 7137 Wimps out by going for that PG-13 rating , so the more graphic violence is mostly off-screen and 0 +132351 7137 Wimps out by going for that PG-13 rating , so the more graphic violence is mostly off-screen 1 +132352 7137 Wimps out by going for that PG-13 rating , so 1 +132353 7137 Wimps out by going for that PG-13 rating , 2 +132354 7137 Wimps out by going for that PG-13 rating 1 +132355 7137 Wimps 1 +132356 7137 out by going for that PG-13 rating 2 +132357 7137 by going for that PG-13 rating 2 +132358 7137 going for that PG-13 rating 3 +132359 7137 for that PG-13 rating 2 +132360 7137 that PG-13 rating 2 +132361 7137 the more graphic violence is mostly off-screen 2 +132362 7137 the more graphic violence 2 +132363 7137 more graphic violence 2 +132364 7137 is mostly off-screen 2 +132365 7137 mostly off-screen 2 +132366 7137 off-screen 2 +132367 7137 the sexuality is muted 2 +132368 7137 the sexuality 3 +132369 7137 is muted 1 +132370 7138 While this movie , by necessity , lacks Fellowship 's heart , Two Towers outdoes its spectacle . 3 +132371 7138 While this movie , by necessity , lacks Fellowship 's heart 1 +132372 7138 this movie , by necessity , lacks Fellowship 's heart 1 +132373 7138 , by necessity , lacks Fellowship 's heart 2 +132374 7138 by necessity , lacks Fellowship 's heart 2 +132375 7138 by necessity 2 +132376 7138 necessity 2 +132377 7138 , lacks Fellowship 's heart 1 +132378 7138 lacks Fellowship 's heart 1 +132379 7138 Fellowship 's heart 2 +132380 7138 Fellowship 's 2 +132381 7138 , Two Towers outdoes its spectacle . 3 +132382 7138 Two Towers outdoes its spectacle . 4 +132383 7138 Two Towers 2 +132384 7138 Towers 2 +132385 7138 outdoes its spectacle . 3 +132386 7138 outdoes its spectacle 3 +132387 7138 outdoes 2 +132388 7138 its spectacle 2 +132389 7139 The performers are so spot on , it is hard to conceive anyone else in their roles . 4 +132390 7139 The performers are so spot on 4 +132391 7139 The performers 2 +132392 7139 are so spot on 3 +132393 7139 so spot on 3 +132394 7139 spot on 3 +132395 7139 , it is hard to conceive anyone else in their roles . 2 +132396 7139 it is hard to conceive anyone else in their roles . 4 +132397 7139 is hard to conceive anyone else in their roles . 3 +132398 7139 is hard to conceive anyone else in their roles 4 +132399 7139 hard to conceive anyone else in their roles 4 +132400 7139 to conceive anyone else in their roles 3 +132401 7139 conceive anyone else in their roles 2 +132402 7139 anyone else in their roles 2 +132403 7140 Asks what truth can be discerned from non-firsthand experience , and specifically questions cinema 's capability for recording truth . 3 +132404 7140 Asks what truth can be discerned from non-firsthand experience , and specifically 2 +132405 7140 what truth can be discerned from non-firsthand experience , and specifically 2 +132406 7140 truth can be discerned from non-firsthand experience , and specifically 2 +132407 7140 can be discerned from non-firsthand experience , and specifically 2 +132408 7140 be discerned from non-firsthand experience , and specifically 2 +132409 7140 discerned from non-firsthand experience , and specifically 2 +132410 7140 discerned from non-firsthand experience , and 2 +132411 7140 discerned from non-firsthand experience , 2 +132412 7140 discerned from non-firsthand experience 2 +132413 7140 from non-firsthand experience 2 +132414 7140 non-firsthand experience 1 +132415 7140 non-firsthand 2 +132416 7140 questions cinema 's capability for recording truth . 1 +132417 7140 questions cinema 's capability for recording truth 1 +132418 7140 cinema 's capability for recording truth 2 +132419 7140 cinema 's capability 2 +132420 7140 for recording truth 2 +132421 7140 recording truth 2 +132422 7141 It 's a mystery how the movie could be released in this condition . 1 +132423 7141 's a mystery how the movie could be released in this condition . 1 +132424 7141 's a mystery how the movie could be released in this condition 1 +132425 7141 a mystery how the movie could be released in this condition 0 +132426 7141 how the movie could be released in this condition 0 +132427 7141 the movie could be released in this condition 3 +132428 7141 could be released in this condition 2 +132429 7141 be released in this condition 2 +132430 7141 released in this condition 2 +132431 7141 in this condition 2 +132432 7141 this condition 2 +132433 7142 Extremely well acted by the four primary actors , this is a seriously intended movie that is not easily forgotten . 4 +132434 7142 Extremely well acted by the four primary actors 3 +132435 7142 well acted by the four primary actors 4 +132436 7142 acted by the four primary actors 2 +132437 7142 by the four primary actors 2 +132438 7142 the four primary actors 3 +132439 7142 four primary actors 2 +132440 7142 primary actors 2 +132441 7142 , this is a seriously intended movie that is not easily forgotten . 4 +132442 7142 this is a seriously intended movie that is not easily forgotten . 4 +132443 7142 is a seriously intended movie that is not easily forgotten . 4 +132444 7142 is a seriously intended movie that is not easily forgotten 3 +132445 7142 a seriously intended movie that is not easily forgotten 3 +132446 7142 a seriously intended movie 3 +132447 7142 seriously intended movie 3 +132448 7142 seriously intended 3 +132449 7142 that is not easily forgotten 2 +132450 7142 is not easily forgotten 3 +132451 7142 easily forgotten 1 +132452 7143 A formula family tearjerker told with a heavy Irish brogue ... accentuating , rather than muting , the plot 's saccharine thrust . 3 +132453 7143 A formula family tearjerker told with a heavy Irish brogue ... accentuating , rather than muting , the plot 's saccharine thrust 2 +132454 7143 A formula family tearjerker told with a heavy Irish brogue ... 2 +132455 7143 A formula family tearjerker told with a heavy Irish brogue 2 +132456 7143 A formula family tearjerker 2 +132457 7143 formula family tearjerker 3 +132458 7143 family tearjerker 2 +132459 7143 told with a heavy Irish brogue 2 +132460 7143 with a heavy Irish brogue 2 +132461 7143 a heavy Irish brogue 2 +132462 7143 heavy Irish brogue 2 +132463 7143 Irish brogue 2 +132464 7143 accentuating , rather than muting , the plot 's saccharine thrust 2 +132465 7143 accentuating , rather than muting 2 +132466 7143 accentuating , rather than 2 +132467 7143 accentuating , 3 +132468 7143 accentuating 3 +132469 7143 muting 1 +132470 7143 , the plot 's saccharine thrust 1 +132471 7143 the plot 's saccharine thrust 2 +132472 7143 's saccharine thrust 2 +132473 7143 saccharine thrust 2 +132474 7144 The stunt work is top-notch ; the dialogue and drama often food-spittingly funny . 3 +132475 7144 The stunt work is top-notch ; the dialogue and drama often food-spittingly funny 4 +132476 7144 The stunt work is top-notch ; 4 +132477 7144 The stunt work is top-notch 4 +132478 7144 The stunt work 2 +132479 7144 stunt work 2 +132480 7144 the dialogue and drama often food-spittingly funny 4 +132481 7144 the dialogue and drama often food-spittingly 1 +132482 7144 the dialogue and drama 2 +132483 7144 dialogue and drama 2 +132484 7144 often food-spittingly 3 +132485 7144 food-spittingly 3 +132486 7145 A mischievous visual style and oodles of charm make ` Cherish ' a very good -LRB- but not great -RRB- movie . 3 +132487 7145 A mischievous visual style and oodles of charm 3 +132488 7145 A mischievous visual style and 2 +132489 7145 A mischievous visual style 3 +132490 7145 mischievous visual style 2 +132491 7145 mischievous 2 +132492 7145 oodles of charm 3 +132493 7145 oodles 2 +132494 7145 make ` Cherish ' a very good -LRB- but not great -RRB- movie . 3 +132495 7145 make ` Cherish ' a very good -LRB- but not great -RRB- movie 3 +132496 7145 make ` Cherish ' 2 +132497 7145 ` Cherish ' 3 +132498 7145 Cherish ' 3 +132499 7145 a very good -LRB- but not great -RRB- movie 3 +132500 7145 very good -LRB- but not great -RRB- movie 2 +132501 7145 very good -LRB- but not great -RRB- 3 +132502 7145 -LRB- but not great -RRB- 2 +132503 7145 but not great -RRB- 1 +132504 7145 but not great 2 +132505 7145 not great 1 +132506 7146 Ends up being mostly about ravishing costumes , eye-filling , wide-screen production design and Joan 's wacky decision to stand by her man , no matter how many times he demonstrates that he 's a disloyal satyr . 2 +132507 7146 Ends up being mostly about ravishing costumes , eye-filling , wide-screen production design and Joan 's wacky decision to stand by her man , no matter how many times he demonstrates that he 's a disloyal satyr 2 +132508 7146 up being mostly about ravishing costumes , eye-filling , wide-screen production design and Joan 's wacky decision to stand by her man , no matter how many times he demonstrates that he 's a disloyal satyr 2 +132509 7146 being mostly about ravishing costumes , eye-filling , wide-screen production design and Joan 's wacky decision to stand by her man , no matter how many times he demonstrates that he 's a disloyal satyr 2 +132510 7146 mostly about ravishing costumes , eye-filling , wide-screen production design and Joan 's wacky decision to stand by her man , no matter how many times he demonstrates that he 's a disloyal satyr 2 +132511 7146 about ravishing costumes , eye-filling , wide-screen production design and Joan 's wacky decision to stand by her man , no matter how many times he demonstrates that he 's a disloyal satyr 2 +132512 7146 ravishing costumes , eye-filling , wide-screen production design and Joan 's wacky decision to stand by her man , no matter how many times he demonstrates that he 's a disloyal satyr 3 +132513 7146 ravishing costumes , eye-filling , wide-screen production design and 4 +132514 7146 ravishing costumes , eye-filling , wide-screen production design 3 +132515 7146 ravishing costumes , eye-filling , 3 +132516 7146 ravishing costumes , eye-filling 3 +132517 7146 ravishing costumes , 3 +132518 7146 ravishing costumes 3 +132519 7146 eye-filling 3 +132520 7146 wide-screen production design 2 +132521 7146 wide-screen 2 +132522 7146 Joan 's wacky decision to stand by her man , no matter how many times he demonstrates that he 's a disloyal satyr 2 +132523 7146 wacky decision to stand by her man , no matter how many times he demonstrates that he 's a disloyal satyr 2 +132524 7146 decision to stand by her man , no matter how many times he demonstrates that he 's a disloyal satyr 2 +132525 7146 to stand by her man , no matter how many times he demonstrates that he 's a disloyal satyr 1 +132526 7146 stand by her man , no matter how many times he demonstrates that he 's a disloyal satyr 2 +132527 7146 stand by her man , 2 +132528 7146 stand by her man 2 +132529 7146 by her man 2 +132530 7146 her man 2 +132531 7146 no matter how many times he demonstrates that he 's a disloyal satyr 2 +132532 7146 matter how many times he demonstrates that he 's a disloyal satyr 1 +132533 7146 how many times he demonstrates that he 's a disloyal satyr 2 +132534 7146 how many times 2 +132535 7146 he demonstrates that he 's a disloyal satyr 1 +132536 7146 demonstrates that he 's a disloyal satyr 2 +132537 7146 that he 's a disloyal satyr 1 +132538 7146 he 's a disloyal satyr 2 +132539 7146 's a disloyal satyr 2 +132540 7146 a disloyal satyr 2 +132541 7146 disloyal satyr 2 +132542 7146 disloyal 1 +132543 7146 satyr 2 +132544 7147 A four star performance from Kevin Kline who unfortunately works with a two star script . 3 +132545 7147 A four star performance from Kevin Kline who unfortunately works with a two star script 4 +132546 7147 A four star performance 3 +132547 7147 four star performance 4 +132548 7147 star performance 4 +132549 7147 from Kevin Kline who unfortunately works with a two star script 1 +132550 7147 Kevin Kline who unfortunately works with a two star script 1 +132551 7147 who unfortunately works with a two star script 1 +132552 7147 unfortunately works with a two star script 2 +132553 7147 works with a two star script 2 +132554 7147 with a two star script 2 +132555 7147 a two star script 1 +132556 7147 two star script 1 +132557 7147 star script 3 +132558 7148 Talk To Her is not the perfect movie many have made it out to be , but it 's still quite worth seeing . 3 +132559 7148 Talk To Her is not the perfect movie many have made it out to be , but it 's still quite worth seeing 4 +132560 7148 Talk To Her is not the perfect movie many have made it out to be , but 2 +132561 7148 Talk To Her is not the perfect movie many have made it out to be , 1 +132562 7148 Talk To Her is not the perfect movie many have made it out to be 1 +132563 7148 is not the perfect movie many have made it out to be 2 +132564 7148 the perfect movie many have made it out to be 4 +132565 7148 the perfect movie 4 +132566 7148 perfect movie 4 +132567 7148 many have made it out to be 3 +132568 7148 have made it out to be 2 +132569 7148 made it out to be 2 +132570 7148 made it 2 +132571 7148 out to be 3 +132572 7148 it 's still quite worth seeing 3 +132573 7148 's still quite worth seeing 3 +132574 7148 's still quite worth 3 +132575 7148 quite worth 3 +132576 7149 Wilco is a phenomenal band with such an engrossing story that will capture the minds and hearts of many . 4 +132577 7149 is a phenomenal band with such an engrossing story that will capture the minds and hearts of many . 4 +132578 7149 is a phenomenal band with such an engrossing story that will capture the minds and hearts of many 4 +132579 7149 a phenomenal band with such an engrossing story that will capture the minds and hearts of many 4 +132580 7149 a phenomenal band 2 +132581 7149 phenomenal band 3 +132582 7149 with such an engrossing story that will capture the minds and hearts of many 4 +132583 7149 such an engrossing story that will capture the minds and hearts of many 4 +132584 7149 such an engrossing story 4 +132585 7149 that will capture the minds and hearts of many 3 +132586 7149 will capture the minds and hearts of many 3 +132587 7149 capture the minds and hearts of many 4 +132588 7149 the minds and hearts of many 3 +132589 7149 the minds and hearts 3 +132590 7149 minds and hearts 2 +132591 7149 minds and 2 +132592 7150 It may not be a huge cut of above the rest , but I enjoyed Barbershop . 3 +132593 7150 It may not be a huge cut of above the rest , but I enjoyed Barbershop 3 +132594 7150 It may not be a huge cut of above the rest , but 2 +132595 7150 It may not be a huge cut of above the rest , 2 +132596 7150 It may not be a huge cut of above the rest 2 +132597 7150 may not be a huge cut of above the rest 2 +132598 7150 be a huge cut of above the rest 3 +132599 7150 a huge cut of above the rest 4 +132600 7150 a huge cut 2 +132601 7150 huge cut 2 +132602 7150 of above the rest 3 +132603 7150 I enjoyed Barbershop 3 +132604 7150 enjoyed Barbershop 3 +132605 7151 A gripping documentary that reveals how deep the antagonism lies in war-torn Jerusalem . 3 +132606 7151 A gripping documentary that 4 +132607 7151 A gripping documentary 4 +132608 7151 gripping documentary 4 +132609 7151 reveals how deep the antagonism lies in war-torn Jerusalem . 2 +132610 7151 reveals how deep the antagonism lies in war-torn Jerusalem 2 +132611 7151 how deep the antagonism lies in war-torn Jerusalem 2 +132612 7151 how deep 2 +132613 7151 the antagonism lies in war-torn Jerusalem 2 +132614 7151 the antagonism 2 +132615 7151 antagonism 2 +132616 7151 lies in war-torn Jerusalem 2 +132617 7151 in war-torn Jerusalem 2 +132618 7151 war-torn Jerusalem 2 +132619 7151 Jerusalem 2 +132620 7152 All movie long , City by the Sea swings from one approach to the other , but in the end , it stays in formula -- which is a waste of De Niro , McDormand and the other good actors in the cast . 1 +132621 7152 All movie long 2 +132622 7152 All movie 3 +132623 7152 , City by the Sea swings from one approach to the other , but in the end , it stays in formula -- which is a waste of De Niro , McDormand and the other good actors in the cast . 1 +132624 7152 City by the Sea swings from one approach to the other , but in the end , it stays in formula -- which is a waste of De Niro , McDormand and the other good actors in the cast . 1 +132625 7152 City by the Sea swings from one approach to the other , but in the end , it stays in formula -- which is a waste of De Niro , McDormand and the other good actors in the cast 0 +132626 7152 City by the Sea swings from one approach to the other , but 2 +132627 7152 City by the Sea swings from one approach to the other , 2 +132628 7152 City by the Sea swings from one approach to the other 2 +132629 7152 City by the Sea swings from one 3 +132630 7152 by the Sea swings from one 2 +132631 7152 the Sea swings from one 2 +132632 7152 the Sea swings 2 +132633 7152 Sea swings 2 +132634 7152 approach to the other 2 +132635 7152 to the other 2 +132636 7152 in the end , it stays in formula -- which is a waste of De Niro , McDormand and the other good actors in the cast 1 +132637 7152 , it stays in formula -- which is a waste of De Niro , McDormand and the other good actors in the cast 1 +132638 7152 it stays in formula -- which is a waste of De Niro , McDormand and the other good actors in the cast 1 +132639 7152 stays in formula -- which is a waste of De Niro , McDormand and the other good actors in the cast 1 +132640 7152 in formula -- which is a waste of De Niro , McDormand and the other good actors in the cast 1 +132641 7152 formula -- which is a waste of De Niro , McDormand and the other good actors in the cast 1 +132642 7152 formula -- 2 +132643 7152 which is a waste of De Niro , McDormand and the other good actors in the cast 2 +132644 7152 is a waste of De Niro , McDormand and the other good actors in the cast 0 +132645 7152 a waste of De Niro , McDormand and the other good actors in the cast 1 +132646 7152 a waste of De Niro , McDormand and the other good actors 1 +132647 7152 of De Niro , McDormand and the other good actors 3 +132648 7152 De Niro , McDormand and the other good actors 3 +132649 7152 De Niro , McDormand and 2 +132650 7152 De Niro , McDormand 2 +132651 7152 De Niro , 2 +132652 7152 McDormand 2 +132653 7152 the other good actors 2 +132654 7152 other good actors 2 +132655 7152 in the cast 2 +132656 7153 Miyazaki 's nonstop images are so stunning , and his imagination so vivid , that the only possible complaint you could have about Spirited Away is that there is no rest period , no timeout . 4 +132657 7153 Miyazaki 's nonstop images are so stunning , and his imagination so vivid , that the only possible complaint you could have about Spirited Away is that there is no rest period , no timeout 3 +132658 7153 Miyazaki 's nonstop images are so stunning , and his imagination so vivid , 4 +132659 7153 Miyazaki 's nonstop images are so stunning , and his imagination so vivid 4 +132660 7153 Miyazaki 's nonstop images are so stunning , and 3 +132661 7153 Miyazaki 's nonstop images are so stunning , 3 +132662 7153 Miyazaki 's nonstop images are so stunning 4 +132663 7153 Miyazaki 's nonstop images 2 +132664 7153 nonstop images 2 +132665 7153 are so stunning 3 +132666 7153 so stunning 3 +132667 7153 his imagination so vivid 4 +132668 7153 his imagination 2 +132669 7153 that the only possible complaint you could have about Spirited Away is that there is no rest period , no timeout 2 +132670 7153 the only possible complaint you could have about Spirited Away is that there is no rest period , no timeout 4 +132671 7153 the only possible complaint you could have about Spirited Away 2 +132672 7153 the only possible complaint 2 +132673 7153 only possible complaint 2 +132674 7153 possible complaint 2 +132675 7153 you could have about Spirited Away 2 +132676 7153 could have about Spirited Away 2 +132677 7153 have about Spirited Away 2 +132678 7153 about Spirited Away 2 +132679 7153 is that there is no rest period , no timeout 2 +132680 7153 that there is no rest period , no timeout 1 +132681 7153 there is no rest period , no timeout 2 +132682 7153 is no rest period , no timeout 3 +132683 7153 no rest period , no timeout 1 +132684 7153 no rest period , 1 +132685 7153 no rest period 2 +132686 7153 rest period 2 +132687 7153 no timeout 1 +132688 7153 timeout 1 +132689 7154 No French people were harmed during the making of this movie , but they were insulted and the audience was put through torture for an hour and a half . 0 +132690 7154 No French people were harmed during the making of this movie , but they were insulted and the audience was put through torture for an hour and a half 0 +132691 7154 No French people were harmed during the making of this movie , but 2 +132692 7154 No French people were harmed during the making of this movie , 2 +132693 7154 No French people were harmed during the making of this movie 2 +132694 7154 No French people 2 +132695 7154 French people 2 +132696 7154 were harmed during the making of this movie 2 +132697 7154 harmed during the making of this movie 2 +132698 7154 harmed 1 +132699 7154 during the making of this movie 2 +132700 7154 the making of this movie 2 +132701 7154 they were insulted and the audience was put through torture for an hour and a half 1 +132702 7154 they were insulted and 1 +132703 7154 they were insulted 2 +132704 7154 were insulted 3 +132705 7154 insulted 1 +132706 7154 the audience was put through torture for an hour and a half 1 +132707 7154 was put through torture for an hour and a half 1 +132708 7154 put through torture for an hour and a half 0 +132709 7154 put through torture 0 +132710 7154 through torture 1 +132711 7154 torture 1 +132712 7154 for an hour and a half 2 +132713 7155 Instead of making his own style , director Marcus Adams just copies from various sources -- good sources , bad mixture 0 +132714 7155 Instead of making his own style 2 +132715 7155 of making his own style 2 +132716 7155 making his own style 2 +132717 7155 his own style 2 +132718 7155 , director Marcus Adams just copies from various sources -- good sources , bad mixture 2 +132719 7155 director Marcus Adams just copies from various sources -- good sources , bad mixture 1 +132720 7155 Marcus Adams just copies from various sources -- good sources , bad mixture 1 +132721 7155 Marcus 2 +132722 7155 Adams just copies from various sources -- good sources , bad mixture 1 +132723 7155 Adams just copies from various sources -- 1 +132724 7155 Adams just copies from various sources 1 +132725 7155 Adams just copies 1 +132726 7155 just copies 1 +132727 7155 copies 2 +132728 7155 from various sources 2 +132729 7155 various sources 3 +132730 7155 good sources , bad mixture 2 +132731 7155 good sources , 3 +132732 7155 good sources 2 +132733 7155 bad mixture 1 +132734 7156 After seeing ` Analyze That , ' I feel better already . 3 +132735 7156 After seeing ` Analyze That 2 +132736 7156 seeing ` Analyze That 2 +132737 7156 ` Analyze That 2 +132738 7156 ` Analyze 2 +132739 7156 , ' I feel better already . 3 +132740 7156 ' I feel better already . 3 +132741 7156 I feel better already . 3 +132742 7156 feel better already . 3 +132743 7156 feel better already 2 +132744 7156 feel better 2 +132745 7157 Very predictable but still entertaining 3 +132746 7157 Very predictable 1 +132747 7157 but still entertaining 3 +132748 7158 Do n't wait to see this terrific film with your kids -- if you do n't have kids borrow some . 3 +132749 7158 Do n't wait to see this terrific film with your kids -- if you do n't have kids borrow some 3 +132750 7158 wait to see this terrific film with your kids -- if you do n't have kids borrow some 3 +132751 7158 to see this terrific film with your kids -- if you do n't have kids borrow some 4 +132752 7158 see this terrific film with your kids -- if you do n't have kids borrow some 4 +132753 7158 see this terrific film with your kids -- 4 +132754 7158 see this terrific film with your kids 4 +132755 7158 see this terrific film 4 +132756 7158 this terrific film 3 +132757 7158 terrific film 4 +132758 7158 with your kids 2 +132759 7158 if you do n't have kids borrow some 2 +132760 7158 you do n't have kids borrow some 2 +132761 7158 do n't have kids borrow some 2 +132762 7158 have kids borrow some 2 +132763 7158 kids borrow some 2 +132764 7158 borrow some 2 +132765 7158 borrow 2 +132766 7159 It thankfully goes easy on the reel\/real world dichotomy that -LRB- Jaglom -RRB- pursued with such enervating determination in Venice\/Venice . 3 +132767 7159 thankfully goes easy on the reel\/real world dichotomy that -LRB- Jaglom -RRB- pursued with such enervating determination in Venice\/Venice . 3 +132768 7159 goes easy on the reel\/real world dichotomy that -LRB- Jaglom -RRB- pursued with such enervating determination in Venice\/Venice . 3 +132769 7159 goes easy on the reel\/real world dichotomy that -LRB- Jaglom -RRB- pursued with such enervating determination in Venice\/Venice 2 +132770 7159 goes easy on the reel\/real world dichotomy 2 +132771 7159 easy on the reel\/real world dichotomy 2 +132772 7159 on the reel\/real world dichotomy 2 +132773 7159 the reel\/real world dichotomy 2 +132774 7159 reel\/real world dichotomy 2 +132775 7159 reel\/real 2 +132776 7159 world dichotomy 2 +132777 7159 dichotomy 2 +132778 7159 that -LRB- Jaglom -RRB- pursued with such enervating determination in Venice\/Venice 3 +132779 7159 -LRB- Jaglom -RRB- pursued with such enervating determination in Venice\/Venice 2 +132780 7159 Jaglom -RRB- pursued with such enervating determination in Venice\/Venice 2 +132781 7159 -RRB- pursued with such enervating determination in Venice\/Venice 2 +132782 7159 pursued with such enervating determination in Venice\/Venice 2 +132783 7159 pursued 2 +132784 7159 with such enervating determination in Venice\/Venice 2 +132785 7159 such enervating determination in Venice\/Venice 2 +132786 7159 such enervating determination 3 +132787 7159 enervating determination 3 +132788 7159 in Venice\/Venice 2 +132789 7159 Venice\/Venice 2 +132790 7160 A subtle , humorous , illuminating study of politics , power and social mobility . 3 +132791 7160 A subtle , humorous , illuminating study of politics , power and social mobility 4 +132792 7160 A subtle , humorous , illuminating study 4 +132793 7160 subtle , humorous , illuminating study 4 +132794 7160 , humorous , illuminating study 4 +132795 7160 humorous , illuminating study 4 +132796 7160 , illuminating study 3 +132797 7160 illuminating study 3 +132798 7160 of politics , power and social mobility 2 +132799 7160 politics , power and social mobility 2 +132800 7160 politics , power and 3 +132801 7160 politics , power 2 +132802 7160 politics , 2 +132803 7160 social mobility 2 +132804 7160 mobility 2 +132805 7161 For all its visual panache and compelling supporting characters , the heart of the film rests in the relationship between Sullivan and his son . 4 +132806 7161 For all its visual panache and compelling supporting characters 3 +132807 7161 all its visual panache and compelling supporting characters 3 +132808 7161 its visual panache and compelling supporting characters 3 +132809 7161 its visual panache and 2 +132810 7161 its visual panache 3 +132811 7161 compelling supporting characters 4 +132812 7161 , the heart of the film rests in the relationship between Sullivan and his son . 3 +132813 7161 the heart of the film rests in the relationship between Sullivan and his son . 2 +132814 7161 rests in the relationship between Sullivan and his son . 2 +132815 7161 rests in the relationship between Sullivan and his son 2 +132816 7161 in the relationship between Sullivan and his son 2 +132817 7161 the relationship between Sullivan and his son 2 +132818 7161 between Sullivan and his son 3 +132819 7161 Sullivan and his son 3 +132820 7161 Sullivan and 2 +132821 7161 Sullivan 2 +132822 7161 his son 2 +132823 7162 There 's a delightfully quirky movie to be made from curling , but Brooms is n't it . 1 +132824 7162 There 's a delightfully quirky movie to be made from curling , but Brooms is n't it 2 +132825 7162 There 's a delightfully quirky movie to be made from curling , but 3 +132826 7162 There 's a delightfully quirky movie to be made from curling , 3 +132827 7162 There 's a delightfully quirky movie to be made from curling 3 +132828 7162 's a delightfully quirky movie to be made from curling 3 +132829 7162 a delightfully quirky movie to be made from curling 3 +132830 7162 delightfully quirky movie to be made from curling 4 +132831 7162 quirky movie to be made from curling 3 +132832 7162 movie to be made from curling 2 +132833 7162 to be made from curling 2 +132834 7162 be made from curling 2 +132835 7162 made from curling 2 +132836 7162 from curling 2 +132837 7162 Brooms is n't it 2 +132838 7163 The animation is competent , and some of the gags are quite funny , but Jonah ... never shakes the oppressive , morally superior good-for-you quality that almost automatically accompanies didactic entertainment . 2 +132839 7163 The animation is competent , and some of the gags are quite funny , but Jonah ... never shakes the oppressive , morally superior good-for-you quality that almost automatically accompanies didactic entertainment 3 +132840 7163 The animation is competent , and 3 +132841 7163 The animation is competent , 3 +132842 7163 The animation is competent 3 +132843 7163 is competent 3 +132844 7163 some of the gags are quite funny , but Jonah ... never shakes the oppressive , morally superior good-for-you quality that almost automatically accompanies didactic entertainment 2 +132845 7163 some of the gags 2 +132846 7163 of the gags 2 +132847 7163 are quite funny , but Jonah ... never shakes the oppressive , morally superior good-for-you quality that almost automatically accompanies didactic entertainment 2 +132848 7163 are quite funny , but Jonah ... 3 +132849 7163 are quite funny , but Jonah 3 +132850 7163 are quite funny , but 2 +132851 7163 are quite funny , 3 +132852 7163 are quite funny 3 +132853 7163 never shakes the oppressive , morally superior good-for-you quality that almost automatically accompanies didactic entertainment 1 +132854 7163 shakes the oppressive , morally superior good-for-you quality that almost automatically accompanies didactic entertainment 3 +132855 7163 the oppressive , morally superior good-for-you quality that almost automatically accompanies didactic entertainment 3 +132856 7163 the oppressive , morally superior good-for-you quality 1 +132857 7163 oppressive , morally superior good-for-you quality 3 +132858 7163 oppressive , morally superior 2 +132859 7163 , morally superior 2 +132860 7163 morally superior 2 +132861 7163 good-for-you quality 3 +132862 7163 good-for-you 3 +132863 7163 that almost automatically accompanies didactic entertainment 2 +132864 7163 almost automatically accompanies didactic entertainment 2 +132865 7163 automatically accompanies didactic entertainment 2 +132866 7163 accompanies didactic entertainment 2 +132867 7163 didactic entertainment 1 +132868 7164 A venturesome , beautifully realized psychological mood piece that reveals its first-time feature director 's understanding of the expressive power of the camera . 4 +132869 7164 A venturesome , beautifully realized psychological mood piece that reveals its first-time feature director 4 +132870 7164 A venturesome , beautifully realized psychological mood piece 4 +132871 7164 venturesome , beautifully realized psychological mood piece 3 +132872 7164 venturesome , beautifully realized 4 +132873 7164 venturesome 3 +132874 7164 , beautifully realized 3 +132875 7164 beautifully realized 4 +132876 7164 psychological mood piece 2 +132877 7164 mood piece 2 +132878 7164 that reveals its first-time feature director 2 +132879 7164 reveals its first-time feature director 2 +132880 7164 its first-time feature director 3 +132881 7164 first-time feature director 2 +132882 7164 feature director 2 +132883 7164 's understanding of the expressive power of the camera . 4 +132884 7164 's understanding of the expressive power of the camera 2 +132885 7164 understanding of the expressive power of the camera 3 +132886 7164 of the expressive power of the camera 3 +132887 7164 the expressive power of the camera 3 +132888 7164 the expressive power 3 +132889 7164 expressive power 4 +132890 7165 A film with contemporary political resonance illustrated by a winning family story . 3 +132891 7165 A film with contemporary political resonance 3 +132892 7165 with contemporary political resonance 2 +132893 7165 contemporary political resonance 2 +132894 7165 political resonance 2 +132895 7165 illustrated by a winning family story . 3 +132896 7165 illustrated by a winning family story 3 +132897 7165 by a winning family story 3 +132898 7165 a winning family story 3 +132899 7165 winning family story 3 +132900 7165 family story 2 +132901 7166 It 's not too much of anything . 1 +132902 7166 's not too much of anything . 1 +132903 7166 's not too much of anything 1 +132904 7166 too much of anything 2 +132905 7166 much of anything 2 +132906 7167 It dabbles all around , never gaining much momentum . 1 +132907 7167 dabbles all around , never gaining much momentum . 1 +132908 7167 dabbles all around , never gaining much momentum 1 +132909 7167 dabbles all around , 2 +132910 7167 dabbles all around 1 +132911 7167 dabbles 2 +132912 7167 never gaining much momentum 1 +132913 7167 gaining much momentum 3 +132914 7167 gaining 2 +132915 7167 much momentum 2 +132916 7168 An enjoyable experience . 4 +132917 7168 An enjoyable 3 +132918 7169 With the dog days of August upon us , think of this dog of a movie as the cinematic equivalent of high humidity . 1 +132919 7169 With the dog days of August upon us 2 +132920 7169 the dog days of August upon us 2 +132921 7169 the dog days 2 +132922 7169 dog days 2 +132923 7169 of August upon us 2 +132924 7169 August upon us 2 +132925 7169 upon us 2 +132926 7169 , think of this dog of a movie as the cinematic equivalent of high humidity . 2 +132927 7169 think of this dog of a movie as the cinematic equivalent of high humidity . 1 +132928 7169 think of this dog of a movie as the cinematic equivalent of high humidity 1 +132929 7169 think of this dog of a movie 0 +132930 7169 of this dog of a movie 1 +132931 7169 this dog of a movie 1 +132932 7169 this dog 2 +132933 7169 as the cinematic equivalent of high humidity 1 +132934 7169 the cinematic equivalent of high humidity 1 +132935 7169 of high humidity 3 +132936 7169 high humidity 1 +132937 7169 humidity 2 +132938 7170 ... the story is far-flung , illogical , and plain stupid . 0 +132939 7170 the story is far-flung , illogical , and plain stupid . 0 +132940 7170 is far-flung , illogical , and plain stupid . 0 +132941 7170 is far-flung , illogical , and plain stupid 0 +132942 7170 far-flung , illogical , and plain stupid 0 +132943 7170 far-flung , illogical , and 1 +132944 7170 far-flung , illogical , 1 +132945 7170 far-flung , illogical 1 +132946 7170 far-flung , 1 +132947 7170 far-flung 1 +132948 7170 plain stupid 2 +132949 7171 If they broke out into elaborate choreography , singing and finger snapping it might have held my attention , but as it stands I kept looking for the last exit from Brooklyn . 1 +132950 7171 If they broke out into elaborate choreography 2 +132951 7171 they broke out into elaborate choreography 2 +132952 7171 broke out into elaborate choreography 3 +132953 7171 broke out 2 +132954 7171 into elaborate choreography 3 +132955 7171 elaborate choreography 3 +132956 7171 , singing and finger snapping it might have held my attention , but as it stands I kept looking for the last exit from Brooklyn . 1 +132957 7171 singing and finger snapping it might have held my attention , but as it stands I kept looking for the last exit from Brooklyn . 0 +132958 7171 singing and finger snapping it might have held my attention , but as it stands I 2 +132959 7171 singing and finger 3 +132960 7171 snapping it might have held my attention , but as it stands I 1 +132961 7171 snapping 2 +132962 7171 it might have held my attention , but as it stands I 2 +132963 7171 it might have held my attention , but 1 +132964 7171 it might have held my attention , 1 +132965 7171 it might have held my attention 2 +132966 7171 might have held my attention 2 +132967 7171 have held my attention 2 +132968 7171 held my attention 3 +132969 7171 my attention 2 +132970 7171 as it stands I 3 +132971 7171 it stands I 2 +132972 7171 stands I 2 +132973 7171 kept looking for the last exit from Brooklyn . 2 +132974 7171 kept looking for the last exit from Brooklyn 2 +132975 7171 looking for the last exit from Brooklyn 2 +132976 7171 for the last exit from Brooklyn 2 +132977 7171 the last exit from Brooklyn 2 +132978 7171 the last exit 2 +132979 7171 last exit 2 +132980 7171 from Brooklyn 2 +132981 7172 I loved the look of this film . 3 +132982 7172 loved the look of this film . 4 +132983 7172 loved the look of this film 3 +132984 7172 the look of this film 2 +132985 7173 Elmo touts his drug as being 51 times stronger than coke . 2 +132986 7173 Elmo 3 +132987 7173 touts his drug as being 51 times stronger than coke . 2 +132988 7173 touts his drug as being 51 times stronger than coke 2 +132989 7173 touts his drug 2 +132990 7173 touts 2 +132991 7173 his drug 1 +132992 7173 as being 51 times stronger than coke 1 +132993 7173 being 51 times stronger than coke 2 +132994 7173 51 times stronger than coke 2 +132995 7173 stronger than coke 2 +132996 7173 than coke 2 +132997 7173 coke 2 +132998 7174 A brutally honest documentary about a much anticipated family reunion that goes wrong thanks to culture shock and a refusal to empathize with others . 2 +132999 7174 A brutally honest documentary about a much anticipated family reunion that goes wrong thanks to culture shock and a refusal to empathize with others 3 +133000 7174 A brutally honest documentary 3 +133001 7174 brutally honest documentary 3 +133002 7174 about a much anticipated family reunion that goes wrong thanks to culture shock and a refusal to empathize with others 2 +133003 7174 about a much anticipated family reunion 2 +133004 7174 about a much 2 +133005 7174 a much 2 +133006 7174 anticipated family reunion 2 +133007 7174 family reunion 2 +133008 7174 that goes wrong thanks to culture shock and a refusal to empathize with others 1 +133009 7174 goes wrong thanks to culture shock and a refusal to empathize with others 2 +133010 7174 goes wrong thanks to culture shock and a refusal 1 +133011 7174 goes wrong thanks 1 +133012 7174 wrong thanks 1 +133013 7174 to culture shock and a refusal 2 +133014 7174 culture shock and a refusal 1 +133015 7174 culture shock and 2 +133016 7174 culture shock 2 +133017 7174 a refusal 1 +133018 7174 to empathize with others 3 +133019 7174 empathize with others 3 +133020 7174 empathize 3 +133021 7174 with others 2 +133022 7175 And adults will at least have a dream image of the West to savor whenever the film 's lamer instincts are in the saddle . 1 +133023 7175 adults will at least have a dream image of the West to savor whenever the film 's lamer instincts are in the saddle . 2 +133024 7175 will at least have a dream image of the West to savor whenever the film 's lamer instincts are in the saddle . 1 +133025 7175 will at least have a dream image of the West to savor whenever the film 's lamer instincts are in the saddle 3 +133026 7175 will at least 2 +133027 7175 have a dream image of the West to savor whenever the film 's lamer instincts are in the saddle 2 +133028 7175 a dream image of the West to savor whenever the film 's lamer instincts are in the saddle 3 +133029 7175 a dream image 3 +133030 7175 dream image 2 +133031 7175 of the West to savor whenever the film 's lamer instincts are in the saddle 2 +133032 7175 the West to savor whenever the film 's lamer instincts are in the saddle 2 +133033 7175 West to savor whenever the film 's lamer instincts are in the saddle 2 +133034 7175 to savor whenever the film 's lamer instincts are in the saddle 2 +133035 7175 savor whenever the film 's lamer instincts are in the saddle 1 +133036 7175 whenever the film 's lamer instincts are in the saddle 1 +133037 7175 the film 's lamer instincts are in the saddle 1 +133038 7175 the film 's lamer instincts 1 +133039 7175 lamer instincts 3 +133040 7175 lamer 1 +133041 7175 are in the saddle 2 +133042 7175 in the saddle 2 +133043 7175 the saddle 2 +133044 7175 saddle 2 +133045 7176 The lousy lead performances ... keep the movie from ever reaching the comic heights it obviously desired . 1 +133046 7176 The lousy lead performances 1 +133047 7176 lousy lead performances 2 +133048 7176 ... keep the movie from ever reaching the comic heights it obviously desired . 1 +133049 7176 keep the movie from ever reaching the comic heights it obviously desired . 1 +133050 7176 keep the movie from ever reaching the comic heights it obviously desired 1 +133051 7176 keep the movie 2 +133052 7176 from ever reaching the comic heights it obviously desired 1 +133053 7176 ever reaching the comic heights it obviously desired 1 +133054 7176 reaching the comic heights it obviously desired 3 +133055 7176 the comic heights it obviously desired 2 +133056 7176 the comic heights 2 +133057 7176 comic heights 2 +133058 7176 it obviously desired 2 +133059 7176 obviously desired 3 +133060 7177 The lack of naturalness makes everything seem self-consciously poetic and forced ... It 's a pity that -LRB- Nelson 's -RRB- achievement does n't match his ambition . 0 +133061 7177 The lack of naturalness makes everything seem self-consciously poetic and forced ... It 's a pity that -LRB- Nelson 's -RRB- achievement does n't match his ambition 1 +133062 7177 The lack of naturalness makes everything seem self-consciously poetic and forced ... 1 +133063 7177 The lack of naturalness makes everything seem self-consciously poetic and forced 1 +133064 7177 The lack of naturalness 2 +133065 7177 of naturalness 2 +133066 7177 naturalness 2 +133067 7177 makes everything seem self-consciously poetic and forced 2 +133068 7177 everything seem self-consciously poetic and forced 1 +133069 7177 seem self-consciously poetic and forced 1 +133070 7177 seem self-consciously poetic and 3 +133071 7177 seem self-consciously poetic 2 +133072 7177 self-consciously poetic 3 +133073 7177 It 's a pity that -LRB- Nelson 's -RRB- achievement does n't match his ambition 0 +133074 7177 's a pity that -LRB- Nelson 's -RRB- achievement does n't match his ambition 1 +133075 7177 a pity that -LRB- Nelson 's -RRB- achievement does n't match his ambition 2 +133076 7177 that -LRB- Nelson 's -RRB- achievement does n't match his ambition 1 +133077 7177 that -LRB- Nelson 's -RRB- achievement 2 +133078 7177 -LRB- Nelson 's -RRB- achievement 2 +133079 7177 does n't match his ambition 1 +133080 7177 match his ambition 3 +133081 7177 his ambition 2 +133082 7178 Coral Reef Adventure is a heavyweight film that fights a good fight on behalf of the world 's endangered reefs -- and it lets the pictures do the punching . 3 +133083 7178 Coral Reef Adventure is a heavyweight film that fights a good fight on behalf of the world 's endangered reefs -- and it lets the pictures do the punching 4 +133084 7178 Coral Reef Adventure is a heavyweight film that fights a good fight on behalf of the world 's endangered reefs -- and 3 +133085 7178 Coral Reef Adventure is a heavyweight film that fights a good fight on behalf of the world 's endangered reefs -- 3 +133086 7178 Coral Reef Adventure is a heavyweight film that fights a good fight on behalf of the world 's endangered reefs 3 +133087 7178 Coral Reef Adventure 2 +133088 7178 Coral 2 +133089 7178 Reef Adventure 2 +133090 7178 Reef 3 +133091 7178 is a heavyweight film that fights a good fight on behalf of the world 's endangered reefs 3 +133092 7178 a heavyweight film that fights a good fight on behalf of the world 's endangered reefs 4 +133093 7178 a heavyweight film 3 +133094 7178 heavyweight film 3 +133095 7178 heavyweight 2 +133096 7178 that fights a good fight on behalf of the world 's endangered reefs 3 +133097 7178 fights a good fight on behalf of the world 's endangered reefs 3 +133098 7178 fights a good fight 3 +133099 7178 a good fight 3 +133100 7178 on behalf of the world 's endangered reefs 2 +133101 7178 behalf of the world 's endangered reefs 2 +133102 7178 behalf 2 +133103 7178 of the world 's endangered reefs 2 +133104 7178 the world 's endangered reefs 2 +133105 7178 endangered reefs 2 +133106 7178 endangered 2 +133107 7178 it lets the pictures do the punching 2 +133108 7178 lets the pictures do the punching 3 +133109 7178 the pictures do the punching 3 +133110 7178 the pictures 2 +133111 7178 do the punching 2 +133112 7178 the punching 2 +133113 7179 This story of a determined woman 's courage to find her husband in a war zone offers winning performances and some effecting moments . 3 +133114 7179 This story of a determined woman 's courage to find her husband in a war zone 3 +133115 7179 of a determined woman 's courage to find her husband in a war zone 3 +133116 7179 a determined woman 's courage to find her husband in a war zone 3 +133117 7179 a determined woman 's 2 +133118 7179 determined woman 's 2 +133119 7179 courage to find her husband in a war zone 2 +133120 7179 to find her husband in a war zone 2 +133121 7179 find her husband in a war zone 2 +133122 7179 find her husband 2 +133123 7179 in a war zone 2 +133124 7179 offers winning performances and some effecting moments . 3 +133125 7179 offers winning performances and some effecting moments 3 +133126 7179 winning performances and some effecting moments 4 +133127 7179 winning performances and 4 +133128 7179 winning performances 4 +133129 7179 some effecting moments 3 +133130 7179 effecting moments 2 +133131 7180 Feels less like a cousin to Blade Runner than like a bottom-feeder sequel in the Escape From New York series . 1 +133132 7180 less like a cousin to Blade Runner than like a bottom-feeder sequel in the Escape From New York series . 0 +133133 7180 less like a cousin to Blade Runner than like a bottom-feeder sequel in the Escape From New York series 1 +133134 7180 like a cousin to Blade Runner than like a bottom-feeder sequel in the Escape From New York series 2 +133135 7180 like a cousin 2 +133136 7180 a cousin 2 +133137 7180 cousin 2 +133138 7180 to Blade Runner than like a bottom-feeder sequel in the Escape From New York series 2 +133139 7180 to Blade Runner 2 +133140 7180 than like a bottom-feeder sequel in the Escape From New York series 1 +133141 7180 like a bottom-feeder sequel in the Escape From New York series 0 +133142 7180 a bottom-feeder sequel in the Escape From New York series 0 +133143 7180 a bottom-feeder sequel 0 +133144 7180 bottom-feeder sequel 1 +133145 7180 bottom-feeder 1 +133146 7180 in the Escape From New York series 2 +133147 7180 the Escape From New York series 2 +133148 7180 Escape From New York series 2 +133149 7180 From New York series 2 +133150 7180 New York series 2 +133151 7180 York series 2 +133152 7181 Life or Something Like It has its share of high points , but it misses too many opportunities . 2 +133153 7181 Life or Something Like It has its share of high points , but it misses too many opportunities 2 +133154 7181 Life or Something Like It has its share of high points , but 3 +133155 7181 Life or Something Like It has its share of high points , 3 +133156 7181 Life or Something Like It has its share of high points 2 +133157 7181 Life or Something 2 +133158 7181 Like It has its share of high points 3 +133159 7181 has its share of high points 3 +133160 7181 its share of high points 3 +133161 7181 of high points 2 +133162 7181 high points 3 +133163 7181 it misses too many opportunities 1 +133164 7181 misses too many opportunities 1 +133165 7181 too many opportunities 2 +133166 7182 Piercingly affecting ... while clearly a manipulative film , emerges as powerful rather than cloying . 3 +133167 7182 Piercingly affecting ... while clearly a manipulative film , emerges as powerful rather than cloying 3 +133168 7182 Piercingly affecting ... 3 +133169 7182 Piercingly affecting 3 +133170 7182 Piercingly 2 +133171 7182 while clearly a manipulative film , emerges as powerful rather than cloying 3 +133172 7182 while clearly a manipulative film , 2 +133173 7182 while clearly a manipulative film 2 +133174 7182 clearly a manipulative film 3 +133175 7182 a manipulative film 2 +133176 7182 manipulative film 2 +133177 7182 emerges as powerful rather than cloying 3 +133178 7182 as powerful rather than cloying 3 +133179 7182 powerful rather than cloying 3 +133180 7182 rather than cloying 2 +133181 7182 than cloying 2 +133182 7183 The holiday message of the 37-minute Santa vs. the Snowman leaves a lot to be desired . 1 +133183 7183 The holiday message of the 37-minute Santa vs. the Snowman 2 +133184 7183 The holiday message 2 +133185 7183 holiday message 2 +133186 7183 of the 37-minute Santa vs. the Snowman 2 +133187 7183 the 37-minute Santa vs. the Snowman 2 +133188 7183 the 37-minute Santa 2 +133189 7183 37-minute Santa 2 +133190 7183 37-minute 2 +133191 7183 vs. the Snowman 2 +133192 7183 the Snowman 2 +133193 7183 Snowman 2 +133194 7183 leaves a lot to be desired . 0 +133195 7184 A DOA dud from frame one . 0 +133196 7184 A DOA 1 +133197 7184 dud from frame one . 0 +133198 7184 dud from frame one 0 +133199 7184 from frame one 2 +133200 7184 frame one 3 +133201 7185 A vibrant , colorful , semimusical rendition . 4 +133202 7185 A vibrant , colorful , semimusical rendition 3 +133203 7185 vibrant , colorful , semimusical rendition 4 +133204 7185 vibrant , colorful , semimusical 4 +133205 7185 , colorful , semimusical 3 +133206 7185 colorful , semimusical 3 +133207 7185 , semimusical 2 +133208 7185 semimusical 2 +133209 7186 -LRB- A -RRB- strong piece of work . 3 +133210 7186 -LRB- A -RRB- strong piece of work 4 +133211 7186 strong piece of work 3 +133212 7186 strong piece 3 +133213 7187 Visually breathtaking , viscerally exciting , and dramatically moving , it 's the very definition of epic adventure . 4 +133214 7187 Visually breathtaking 3 +133215 7187 , viscerally exciting , and dramatically moving , it 's the very definition of epic adventure . 4 +133216 7187 viscerally exciting , and dramatically moving , it 's the very definition of epic adventure . 4 +133217 7187 viscerally exciting , and dramatically moving 4 +133218 7187 viscerally exciting 4 +133219 7187 , and dramatically moving 4 +133220 7187 dramatically moving 4 +133221 7187 , it 's the very definition of epic adventure . 3 +133222 7187 it 's the very definition of epic adventure . 4 +133223 7187 's the very definition of epic adventure . 3 +133224 7187 's the very definition of epic adventure 3 +133225 7187 the very definition of epic adventure 4 +133226 7187 of epic adventure 3 +133227 7187 epic adventure 4 +133228 7188 The movie is ... very funny as you peek at it through the fingers in front of your eyes . 3 +133229 7188 is ... very funny as you peek at it through the fingers in front of your eyes . 3 +133230 7188 is ... very funny as you peek at it through the fingers in front of your eyes 4 +133231 7188 very funny as you peek at it through the fingers in front of your eyes 3 +133232 7188 as you peek at it through the fingers in front of your eyes 3 +133233 7188 you peek at it through the fingers in front of your eyes 3 +133234 7188 peek at it through the fingers in front of your eyes 3 +133235 7188 peek at it 2 +133236 7188 through the fingers in front of your eyes 2 +133237 7188 the fingers in front of your eyes 2 +133238 7188 the fingers 2 +133239 7188 in front of your eyes 2 +133240 7188 front of your eyes 2 +133241 7188 of your eyes 3 +133242 7189 Instead of simply handling conventional material in a conventional way , Secretary takes the most unexpected material and handles it in the most unexpected way . 3 +133243 7189 Instead of simply handling conventional material in a conventional way 3 +133244 7189 of simply handling conventional material in a conventional way 2 +133245 7189 simply handling conventional material in a conventional way 2 +133246 7189 handling conventional material in a conventional way 2 +133247 7189 handling conventional material 2 +133248 7189 conventional material 2 +133249 7189 in a conventional way 2 +133250 7189 a conventional way 2 +133251 7189 conventional way 2 +133252 7189 , Secretary takes the most unexpected material and handles it in the most unexpected way . 3 +133253 7189 Secretary takes the most unexpected material and handles it in the most unexpected way . 3 +133254 7189 takes the most unexpected material and handles it in the most unexpected way . 2 +133255 7189 takes the most unexpected material and handles it in the most unexpected way 2 +133256 7189 takes the most unexpected material and 2 +133257 7189 takes the most unexpected material 3 +133258 7189 the most unexpected material 2 +133259 7189 most unexpected material 2 +133260 7189 most unexpected 2 +133261 7189 handles it in the most unexpected way 3 +133262 7189 handles it 2 +133263 7189 in the most unexpected way 2 +133264 7189 the most unexpected way 2 +133265 7189 most unexpected way 2 +133266 7190 We get the comedy we settle for . 1 +133267 7190 get the comedy we settle for . 2 +133268 7190 get the comedy we settle for 2 +133269 7190 the comedy we settle for 2 +133270 7190 we settle for 2 +133271 7190 settle for 1 +133272 7191 This is the first full scale WWII flick from Hong Kong 's John Woo . 2 +133273 7191 is the first full scale WWII flick from Hong Kong 's John Woo . 2 +133274 7191 is the first full scale WWII flick from Hong Kong 's John Woo 2 +133275 7191 the first full scale WWII flick from Hong Kong 's John Woo 2 +133276 7191 the first full scale WWII flick 3 +133277 7191 first full scale WWII flick 3 +133278 7191 full scale WWII flick 2 +133279 7191 scale WWII flick 2 +133280 7191 WWII flick 2 +133281 7191 WWII 2 +133282 7191 from Hong Kong 's John Woo 2 +133283 7191 Hong Kong 's John Woo 3 +133284 7192 For all of its insights into the dream world of teen life , and its electronic expression through cyber culture 2 +133285 7192 all of its insights into the dream world of teen life , and its electronic expression through cyber culture 2 +133286 7192 of its insights into the dream world of teen life , and its electronic expression through cyber culture 2 +133287 7192 its insights into the dream world of teen life , and its electronic expression through cyber culture 3 +133288 7192 its insights 2 +133289 7192 into the dream world of teen life , and its electronic expression through cyber culture 2 +133290 7192 the dream world of teen life , and its electronic expression through cyber culture 2 +133291 7192 the dream world of teen life , and 2 +133292 7192 the dream world of teen life , 2 +133293 7192 the dream world of teen life 3 +133294 7192 the dream world 2 +133295 7192 dream world 2 +133296 7192 of teen life 2 +133297 7192 teen life 2 +133298 7192 its electronic expression through cyber culture 3 +133299 7192 its electronic expression 2 +133300 7192 electronic expression 2 +133301 7192 electronic 2 +133302 7192 through cyber culture 2 +133303 7192 cyber culture 2 +133304 7192 no quarter to anyone seeking to pull a cohesive story out 1 +133305 7192 no quarter to anyone 1 +133306 7192 no quarter 1 +133307 7192 seeking to pull a cohesive story out 1 +133308 7192 to pull a cohesive story out 2 +133309 7192 pull a cohesive story out 3 +133310 7192 pull a cohesive story 2 +133311 7192 a cohesive story 3 +133312 7192 cohesive story 3 +133313 7193 This comic gem is as delightful as it is derivative . 4 +133314 7193 This comic gem 4 +133315 7193 comic gem 3 +133316 7193 is as delightful as it is derivative . 3 +133317 7193 is as delightful as it is derivative 4 +133318 7193 is as delightful 3 +133319 7193 as delightful 3 +133320 7193 as it is derivative 2 +133321 7193 it is derivative 1 +133322 7193 is derivative 1 +133323 7194 A must see for all sides of the political spectrum 4 +133324 7194 must see for all sides of the political spectrum 3 +133325 7194 see for all sides of the political spectrum 2 +133326 7194 for all sides of the political spectrum 2 +133327 7194 all sides of the political spectrum 2 +133328 7194 all sides 3 +133329 7194 of the political spectrum 2 +133330 7194 the political spectrum 2 +133331 7194 political spectrum 2 +133332 7194 spectrum 2 +133333 7195 Smaller numbered kidlets will enjoy . 3 +133334 7195 Smaller numbered kidlets 2 +133335 7195 numbered kidlets 2 +133336 7195 numbered 2 +133337 7195 kidlets 2 +133338 7195 will enjoy . 3 +133339 7195 will enjoy 4 +133340 7196 - West Coast rap wars , this modern mob music drama never fails to fascinate . 3 +133341 7196 - West Coast rap wars 2 +133342 7196 West Coast rap wars 2 +133343 7196 Coast rap wars 2 +133344 7196 rap wars 2 +133345 7196 , this modern mob music drama never fails to fascinate . 4 +133346 7196 this modern mob music drama never fails to fascinate . 3 +133347 7196 this modern mob music drama 3 +133348 7196 modern mob music drama 2 +133349 7196 mob music drama 2 +133350 7196 music drama 2 +133351 7196 never fails to fascinate . 3 +133352 7196 fails to fascinate . 0 +133353 7196 fails to fascinate 0 +133354 7196 to fascinate 2 +133355 7197 In the new release of Cinema Paradiso , the tale has turned from sweet to bittersweet , and when the tears come during that final , beautiful scene , they finally feel absolutely earned . 4 +133356 7197 In the new release of Cinema Paradiso 2 +133357 7197 the new release of Cinema Paradiso 2 +133358 7197 the new release 2 +133359 7197 new release 3 +133360 7197 of Cinema Paradiso 2 +133361 7197 , the tale has turned from sweet to bittersweet , and when the tears come during that final , beautiful scene , they finally feel absolutely earned . 4 +133362 7197 the tale has turned from sweet to bittersweet , and when the tears come during that final , beautiful scene , they finally feel absolutely earned . 4 +133363 7197 the tale has turned from sweet to bittersweet , and when the tears come during that final , beautiful scene , they finally feel absolutely earned 3 +133364 7197 the tale has turned from sweet to bittersweet , and 2 +133365 7197 the tale has turned from sweet to bittersweet , 2 +133366 7197 the tale has turned from sweet to bittersweet 2 +133367 7197 has turned from sweet to bittersweet 2 +133368 7197 turned from sweet to bittersweet 2 +133369 7197 turned from sweet 2 +133370 7197 from sweet 2 +133371 7197 to bittersweet 2 +133372 7197 when the tears come during that final , beautiful scene , they finally feel absolutely earned 4 +133373 7197 when the tears come during that final , beautiful scene 3 +133374 7197 the tears come during that final , beautiful scene 3 +133375 7197 the tears 2 +133376 7197 come during that final , beautiful scene 3 +133377 7197 during that final , beautiful scene 3 +133378 7197 that final , beautiful scene 3 +133379 7197 final , beautiful scene 3 +133380 7197 , beautiful scene 3 +133381 7197 beautiful scene 3 +133382 7197 , they finally feel absolutely earned 3 +133383 7197 they finally feel absolutely earned 3 +133384 7197 finally feel absolutely earned 2 +133385 7197 feel absolutely earned 3 +133386 7197 feel absolutely 3 +133387 7198 A worthy addition to the cinematic canon , which , at last count , numbered 52 different versions . 4 +133388 7198 A worthy addition to the cinematic canon , which , at last count , numbered 52 different versions 4 +133389 7198 A worthy addition 2 +133390 7198 worthy addition 3 +133391 7198 to the cinematic canon , which , at last count , numbered 52 different versions 2 +133392 7198 the cinematic canon , which , at last count , numbered 52 different versions 2 +133393 7198 the cinematic canon , 3 +133394 7198 the cinematic canon 3 +133395 7198 cinematic canon 2 +133396 7198 canon 2 +133397 7198 which , at last count , numbered 52 different versions 2 +133398 7198 , at last count , numbered 52 different versions 1 +133399 7198 at last count , numbered 52 different versions 2 +133400 7198 at last count 2 +133401 7198 last count 3 +133402 7198 , numbered 52 different versions 2 +133403 7198 numbered 52 different versions 2 +133404 7198 52 different versions 2 +133405 7198 52 2 +133406 7198 different versions 2 +133407 7199 We do get the distinct impression that this franchise is drawing to a close . 1 +133408 7199 do get the distinct impression that this franchise is drawing to a close . 2 +133409 7199 do get the distinct impression that this franchise is drawing to a close 2 +133410 7199 get the distinct impression that this franchise is drawing to a close 2 +133411 7199 get the distinct impression 2 +133412 7199 the distinct impression 2 +133413 7199 distinct impression 2 +133414 7199 that this franchise is drawing to a close 2 +133415 7199 this franchise is drawing to a close 2 +133416 7199 is drawing to a close 2 +133417 7199 drawing to a close 2 +133418 7200 A sensitive , modest comic tragedy that works as both character study and symbolic examination of the huge economic changes sweeping modern China . 3 +133419 7200 A sensitive , modest comic tragedy that works as both character study and symbolic examination of the huge economic changes sweeping modern China 3 +133420 7200 A sensitive , modest comic tragedy that works as both character study and symbolic examination 3 +133421 7200 A sensitive , modest comic tragedy that works 3 +133422 7200 A sensitive , modest comic tragedy 3 +133423 7200 sensitive , modest comic tragedy 2 +133424 7200 , modest comic tragedy 2 +133425 7200 modest comic tragedy 2 +133426 7200 comic tragedy 2 +133427 7200 as both character study and symbolic examination 2 +133428 7200 both character study and symbolic examination 2 +133429 7200 both character study and 2 +133430 7200 both character study 2 +133431 7200 symbolic examination 3 +133432 7200 of the huge economic changes sweeping modern China 2 +133433 7200 the huge economic changes sweeping modern China 2 +133434 7200 the huge economic changes 2 +133435 7200 huge economic changes 2 +133436 7200 economic changes 2 +133437 7200 sweeping modern China 2 +133438 7200 modern China 2 +133439 7201 Parker should be commended for taking a fresh approach to familiar material , but his determination to remain true to the original text leads him to adopt a somewhat mannered tone ... that ultimately dulls the human tragedy at the story 's core . 2 +133440 7201 Parker should be commended for taking a fresh approach to familiar material , but his determination to remain true to the original text leads him to adopt a somewhat mannered tone ... that ultimately dulls the human tragedy at the story 's core 2 +133441 7201 Parker should be commended for taking a fresh approach to familiar material , but 2 +133442 7201 Parker should be commended for taking a fresh approach to familiar material , 3 +133443 7201 Parker should be commended for taking a fresh approach to familiar material 4 +133444 7201 should be commended for taking a fresh approach to familiar material 3 +133445 7201 be commended for taking a fresh approach to familiar material 3 +133446 7201 commended for taking a fresh approach to familiar material 3 +133447 7201 commended 2 +133448 7201 for taking a fresh approach to familiar material 3 +133449 7201 taking a fresh approach to familiar material 3 +133450 7201 taking a fresh approach 3 +133451 7201 a fresh approach 3 +133452 7201 fresh approach 3 +133453 7201 to familiar material 2 +133454 7201 familiar material 2 +133455 7201 his determination to remain true to the original text leads him to adopt a somewhat mannered tone ... that ultimately dulls the human tragedy at the story 's core 1 +133456 7201 his determination to remain true to the original text 3 +133457 7201 determination to remain true to the original text 2 +133458 7201 to remain true to the original text 3 +133459 7201 remain true to the original text 2 +133460 7201 true to the original text 2 +133461 7201 to the original text 2 +133462 7201 the original text 2 +133463 7201 original text 2 +133464 7201 leads him to adopt a somewhat mannered tone ... that ultimately dulls the human tragedy at the story 's core 1 +133465 7201 him to adopt a somewhat mannered tone ... that ultimately dulls the human tragedy at the story 's core 2 +133466 7201 to adopt a somewhat mannered tone ... that ultimately dulls the human tragedy at the story 's core 1 +133467 7201 adopt a somewhat mannered tone ... that ultimately dulls the human tragedy at the story 's core 1 +133468 7201 a somewhat mannered tone ... that ultimately dulls the human tragedy at the story 's core 2 +133469 7201 a somewhat mannered tone ... 2 +133470 7201 a somewhat mannered tone 2 +133471 7201 somewhat mannered tone 2 +133472 7201 somewhat mannered 3 +133473 7201 that ultimately dulls the human tragedy at the story 's core 0 +133474 7201 ultimately dulls the human tragedy at the story 's core 1 +133475 7201 dulls the human tragedy at the story 's core 2 +133476 7201 dulls 1 +133477 7201 the human tragedy at the story 's core 2 +133478 7201 the human tragedy 2 +133479 7201 human tragedy 2 +133480 7201 at the story 's core 2 +133481 7201 the story 's core 2 +133482 7202 Buy is an accomplished actress , and this is a big , juicy role . 3 +133483 7202 Buy is an accomplished actress , and this is a big , juicy role 3 +133484 7202 Buy is an accomplished actress , and 3 +133485 7202 Buy is an accomplished actress , 3 +133486 7202 Buy is an accomplished actress 3 +133487 7202 is an accomplished actress 3 +133488 7202 an accomplished actress 3 +133489 7202 accomplished actress 4 +133490 7202 this is a big , juicy role 3 +133491 7202 is a big , juicy role 3 +133492 7202 a big , juicy role 3 +133493 7202 big , juicy role 3 +133494 7202 , juicy role 2 +133495 7202 juicy role 3 +133496 7203 For the future , one hopes Mr. Plympton will find room for one more member of his little band , a professional screenwriter . 0 +133497 7203 For the future 2 +133498 7203 , one hopes Mr. Plympton will find room for one more member of his little band , a professional screenwriter . 2 +133499 7203 one hopes Mr. Plympton will find room for one more member of his little band , a professional screenwriter . 1 +133500 7203 hopes Mr. Plympton will find room for one more member of his little band , a professional screenwriter . 2 +133501 7203 hopes Mr. Plympton will find room for one more member of his little band , a professional screenwriter 1 +133502 7203 Mr. Plympton will find room for one more member of his little band , a professional screenwriter 2 +133503 7203 Mr. Plympton 2 +133504 7203 will find room for one more member of his little band , a professional screenwriter 2 +133505 7203 find room for one more member of his little band , a professional screenwriter 1 +133506 7203 find room 2 +133507 7203 for one more member of his little band , a professional screenwriter 2 +133508 7203 one more member of his little band , a professional screenwriter 2 +133509 7203 one more member 2 +133510 7203 more member 2 +133511 7203 of his little band , a professional screenwriter 2 +133512 7203 his little band , a professional screenwriter 2 +133513 7203 his little band , 2 +133514 7203 his little band 2 +133515 7203 little band 2 +133516 7203 a professional screenwriter 2 +133517 7203 professional screenwriter 2 +133518 7204 A clever script and skilled actors bring new energy to the familiar topic of office politics . 3 +133519 7204 A clever script and skilled actors 3 +133520 7204 A clever script and 3 +133521 7204 A clever script 3 +133522 7204 clever script 4 +133523 7204 skilled actors 3 +133524 7204 skilled 3 +133525 7204 bring new energy to the familiar topic of office politics . 3 +133526 7204 bring new energy to the familiar topic of office politics 3 +133527 7204 bring new energy 3 +133528 7204 new energy 3 +133529 7204 to the familiar topic of office politics 3 +133530 7204 the familiar topic of office politics 3 +133531 7204 the familiar topic 2 +133532 7204 familiar topic 2 +133533 7204 of office politics 2 +133534 7204 office politics 2 +133535 7205 The cameo-packed , M : I-2-spoofing title sequence is the funniest 5 minutes to date in this spy comedy franchise ... Then Mike Myers shows up and ruins everything . 2 +133536 7205 The cameo-packed , M : I-2-spoofing title sequence is the funniest 5 minutes to date in this spy comedy franchise ... Then Mike Myers shows up and ruins everything 1 +133537 7205 The cameo-packed , M : I-2-spoofing title sequence is the funniest 5 minutes to date in this spy comedy franchise ... Then 2 +133538 7205 The cameo-packed , M : I-2-spoofing title sequence is the funniest 5 minutes to date in this spy comedy franchise ... 4 +133539 7205 The cameo-packed , M : I-2-spoofing title sequence is the funniest 5 minutes to date in this spy comedy franchise 4 +133540 7205 The cameo-packed , M : I-2-spoofing title sequence 2 +133541 7205 The cameo-packed , 2 +133542 7205 The cameo-packed 2 +133543 7205 cameo-packed 3 +133544 7205 M : I-2-spoofing title sequence 2 +133545 7205 M : 2 +133546 7205 I-2-spoofing title sequence 2 +133547 7205 I-2-spoofing 2 +133548 7205 title sequence 2 +133549 7205 is the funniest 5 minutes to date in this spy comedy franchise 3 +133550 7205 the funniest 5 minutes to date in this spy comedy franchise 3 +133551 7205 the funniest 5 minutes 3 +133552 7205 funniest 5 minutes 3 +133553 7205 5 minutes 2 +133554 7205 to date in this spy comedy franchise 2 +133555 7205 date in this spy comedy franchise 2 +133556 7205 in this spy comedy franchise 2 +133557 7205 this spy comedy franchise 2 +133558 7205 spy comedy franchise 2 +133559 7205 comedy franchise 2 +133560 7205 Mike Myers shows up and ruins everything 0 +133561 7205 Mike Myers 2 +133562 7205 shows up and ruins everything 0 +133563 7205 shows up and 2 +133564 7205 shows up 2 +133565 7205 ruins everything 1 +133566 7206 A photographic marvel of sorts , and it 's certainly an invaluable record of that special fishy community . 3 +133567 7206 A photographic marvel of sorts , and it 4 +133568 7206 A photographic marvel 3 +133569 7206 photographic marvel 3 +133570 7206 photographic 2 +133571 7206 of sorts , and it 2 +133572 7206 sorts , and it 2 +133573 7206 sorts , and 2 +133574 7206 sorts , 2 +133575 7206 sorts 2 +133576 7206 's certainly an invaluable record of that special fishy community . 3 +133577 7206 's certainly an invaluable record of that special fishy community 3 +133578 7206 an invaluable record of that special fishy community 2 +133579 7206 an invaluable record 3 +133580 7206 invaluable record 3 +133581 7206 of that special fishy community 3 +133582 7206 that special fishy community 2 +133583 7206 special fishy community 3 +133584 7206 fishy community 2 +133585 7207 Hashiguchi covers this territory with wit and originality , suggesting that with his fourth feature -- the first to be released in the U.S. -- a major director is emerging in world cinema . 4 +133586 7207 Hashiguchi covers this territory with wit and originality , suggesting that with his fourth feature -- the first to be released in the U.S. -- a major director is emerging in world cinema 3 +133587 7207 Hashiguchi covers this territory with wit and originality , suggesting that with his fourth feature -- the first to be released in the U.S. -- 4 +133588 7207 Hashiguchi covers this territory with wit and originality , suggesting that with his fourth feature -- the first to be released in the U.S. 3 +133589 7207 covers this territory with wit and originality , suggesting that with his fourth feature -- the first to be released in the U.S. 4 +133590 7207 covers this territory with wit and originality , suggesting that with his fourth feature -- 4 +133591 7207 covers this territory with wit and originality , suggesting that with his fourth feature 4 +133592 7207 covers this territory with wit and originality , 3 +133593 7207 covers this territory with wit and originality 4 +133594 7207 covers this territory 2 +133595 7207 this territory 2 +133596 7207 with wit and originality 3 +133597 7207 wit and originality 3 +133598 7207 suggesting that with his fourth feature 2 +133599 7207 suggesting that 2 +133600 7207 suggesting 2 +133601 7207 with his fourth feature 2 +133602 7207 his fourth feature 2 +133603 7207 fourth feature 3 +133604 7207 the first to be released in the U.S. 2 +133605 7207 to be released in the U.S. 2 +133606 7207 be released in the U.S. 2 +133607 7207 released in the U.S. 2 +133608 7207 in the U.S. 2 +133609 7207 the U.S. 3 +133610 7207 U.S. 2 +133611 7207 a major director is emerging in world cinema 3 +133612 7207 a major director 3 +133613 7207 major director 2 +133614 7207 is emerging in world cinema 3 +133615 7207 emerging in world cinema 3 +133616 7207 in world cinema 3 +133617 7207 world cinema 2 +133618 7208 A grittily beautiful film that looks , sounds , and feels more like an extended , open-ended poem than a traditionally structured story . 3 +133619 7208 A grittily beautiful film that looks , 4 +133620 7208 A grittily beautiful film that looks 3 +133621 7208 A grittily beautiful film 4 +133622 7208 grittily beautiful film 3 +133623 7208 grittily beautiful 3 +133624 7208 grittily 2 +133625 7208 that looks 2 +133626 7208 sounds , and feels more like an extended , open-ended poem than a traditionally structured story . 2 +133627 7208 sounds , and feels more like an extended , open-ended poem than a traditionally structured story 3 +133628 7208 sounds , and 2 +133629 7208 feels more like an extended , open-ended poem than a traditionally structured story 3 +133630 7208 like an extended , open-ended poem than a traditionally structured story 3 +133631 7208 an extended , open-ended poem than a traditionally structured story 3 +133632 7208 an extended , open-ended poem 3 +133633 7208 extended , open-ended poem 3 +133634 7208 , open-ended poem 2 +133635 7208 open-ended poem 2 +133636 7208 than a traditionally structured story 2 +133637 7208 a traditionally structured story 2 +133638 7208 traditionally structured story 2 +133639 7208 traditionally structured 3 +133640 7208 traditionally 2 +133641 7209 -LRB- L -RRB- ame and unnecessary . 0 +133642 7209 -LRB- L -RRB- 2 +133643 7209 L -RRB- 2 +133644 7209 L 2 +133645 7209 ame and unnecessary . 1 +133646 7209 ame and unnecessary 1 +133647 7209 ame and 2 +133648 7209 ame 2 +133649 7210 Davis ' candid , archly funny and deeply authentic take on intimate relationships comes to fruition in her sophomore effort . 3 +133650 7210 Davis ' candid , archly funny and deeply authentic take on intimate relationships 4 +133651 7210 Davis ' candid , archly funny and deeply authentic take 4 +133652 7210 Davis ' 2 +133653 7210 candid , archly funny and deeply authentic take 3 +133654 7210 candid , archly funny and deeply authentic 4 +133655 7210 candid , archly funny and 3 +133656 7210 candid , archly funny 3 +133657 7210 candid , 3 +133658 7210 archly funny 3 +133659 7210 archly 2 +133660 7210 deeply authentic 3 +133661 7210 on intimate relationships 3 +133662 7210 intimate relationships 2 +133663 7210 comes to fruition in her sophomore effort . 2 +133664 7210 comes to fruition in her sophomore effort 2 +133665 7210 to fruition in her sophomore effort 3 +133666 7210 fruition in her sophomore effort 2 +133667 7210 fruition 2 +133668 7210 in her sophomore effort 2 +133669 7210 her sophomore effort 2 +133670 7210 sophomore effort 1 +133671 7211 Think of it as Gidget , only with muscles and a lot more smarts , but just as endearing and easy to watch . 4 +133672 7211 Think of it as Gidget , only with muscles and a lot more smarts , but just as endearing and easy to watch 3 +133673 7211 as Gidget , only with muscles and a lot more smarts , but just as endearing and easy to watch 3 +133674 7211 as Gidget 2 +133675 7211 Gidget 2 +133676 7211 , only with muscles and a lot more smarts , but just as endearing and easy to watch 4 +133677 7211 only with muscles and a lot more smarts , but just as endearing and easy to watch 3 +133678 7211 with muscles and a lot more smarts , but just as endearing and easy to watch 3 +133679 7211 muscles and a lot more smarts , but just as endearing and easy to watch 3 +133680 7211 muscles and 2 +133681 7211 muscles 2 +133682 7211 a lot more smarts , but just as endearing and easy to watch 3 +133683 7211 more smarts , but just as endearing and easy to watch 3 +133684 7211 more smarts , but 2 +133685 7211 more smarts , 2 +133686 7211 more smarts 3 +133687 7211 smarts 2 +133688 7211 just as endearing and easy to watch 3 +133689 7211 just as endearing and easy 3 +133690 7211 as endearing and easy 3 +133691 7211 endearing and easy 3 +133692 7212 ... too contrived to be as naturally charming as it needs to be . 1 +133693 7212 too contrived to be as naturally charming as it needs to be . 2 +133694 7212 too contrived to be as naturally charming as it needs to be 2 +133695 7212 contrived to be as naturally charming as it needs to be 3 +133696 7212 to be as naturally charming as it needs to be 3 +133697 7212 be as naturally charming as it needs to be 3 +133698 7212 as naturally charming as it needs to be 3 +133699 7212 as naturally charming 3 +133700 7212 naturally charming 4 +133701 7212 as it needs to be 2 +133702 7213 The Lady and the Duke is a smart , romantic drama that dares to depict the French Revolution from the aristocrats ' perspective . 3 +133703 7213 is a smart , romantic drama that dares to depict the French Revolution from the aristocrats ' perspective . 3 +133704 7213 is a smart , romantic drama that dares to depict the French Revolution from the aristocrats ' perspective 3 +133705 7213 a smart , romantic drama that dares to depict the French Revolution from the aristocrats ' perspective 3 +133706 7213 a smart , romantic drama 3 +133707 7213 smart , romantic drama 3 +133708 7213 , romantic drama 2 +133709 7213 that dares to depict the French Revolution from the aristocrats ' perspective 2 +133710 7213 dares to depict the French Revolution from the aristocrats ' perspective 2 +133711 7213 to depict the French Revolution from the aristocrats ' perspective 2 +133712 7213 depict the French Revolution from the aristocrats ' perspective 2 +133713 7213 depict the French Revolution 3 +133714 7213 from the aristocrats ' perspective 2 +133715 7213 the aristocrats ' perspective 2 +133716 7213 the aristocrats ' 2 +133717 7213 aristocrats ' 2 +133718 7214 The film is strictly routine . 1 +133719 7214 is strictly routine . 1 +133720 7214 is strictly routine 1 +133721 7215 Features one of the most affecting depictions of a love affair ever committed to film . 4 +133722 7215 Features one of the most affecting depictions of a love affair 4 +133723 7215 Features one 2 +133724 7215 of the most affecting depictions of a love affair 3 +133725 7215 the most affecting depictions of a love affair 3 +133726 7215 affecting depictions of a love affair 2 +133727 7215 depictions of a love affair 2 +133728 7215 depictions 2 +133729 7215 of a love affair 3 +133730 7215 a love affair 3 +133731 7215 love affair 3 +133732 7215 ever committed to film . 2 +133733 7215 committed to film . 2 +133734 7215 committed to film 3 +133735 7216 Does n't come close to justifying the hype that surrounded its debut at the Sundance Film Festival two years ago . 0 +133736 7216 Does n't come close to justifying the hype that surrounded its debut at the Sundance Film Festival two years ago 1 +133737 7216 come close to justifying the hype that surrounded its debut at the Sundance Film Festival two years ago 3 +133738 7216 come close to justifying the hype that surrounded its debut at the Sundance Film Festival 2 +133739 7216 close to justifying the hype that surrounded its debut at the Sundance Film Festival 2 +133740 7216 to justifying the hype that surrounded its debut at the Sundance Film Festival 2 +133741 7216 justifying the hype that surrounded its debut at the Sundance Film Festival 4 +133742 7216 justifying 2 +133743 7216 the hype that surrounded its debut at the Sundance Film Festival 2 +133744 7216 that surrounded its debut at the Sundance Film Festival 2 +133745 7216 surrounded its debut at the Sundance Film Festival 2 +133746 7216 surrounded its debut 2 +133747 7216 its debut 2 +133748 7217 The story , touching though it is , does not quite have enough emotional resonance or variety of incident to sustain a feature , and even at 85 minutes it feels a bit long . 2 +133749 7217 The story , touching though it is , does not quite have enough emotional resonance or variety of incident to sustain a feature , and even at 85 minutes it feels a bit long 1 +133750 7217 The story , touching though it is , does not quite have enough emotional resonance or variety of incident to sustain a feature , and 1 +133751 7217 The story , touching though it is , does not quite have enough emotional resonance or variety of incident to sustain a feature , 1 +133752 7217 The story , touching though it is , does not quite have enough emotional resonance or variety of incident to sustain a feature 1 +133753 7217 The story , touching though it is , 2 +133754 7217 The story , touching though it is 3 +133755 7217 touching though it is 2 +133756 7217 though it is 2 +133757 7217 does not quite have enough emotional resonance or variety of incident to sustain a feature 2 +133758 7217 does not quite 2 +133759 7217 have enough emotional resonance or variety of incident to sustain a feature 2 +133760 7217 have enough emotional resonance or variety of incident 2 +133761 7217 enough emotional resonance or variety of incident 1 +133762 7217 enough emotional resonance or 2 +133763 7217 enough emotional resonance 2 +133764 7217 enough emotional 2 +133765 7217 variety of incident 2 +133766 7217 of incident 2 +133767 7217 to sustain a feature 2 +133768 7217 sustain a feature 2 +133769 7217 even at 85 minutes it feels a bit long 1 +133770 7217 at 85 minutes it feels a bit long 2 +133771 7217 at 85 minutes 2 +133772 7217 85 minutes 2 +133773 7217 85 2 +133774 7217 it feels a bit long 1 +133775 7217 feels a bit long 2 +133776 7217 feels a bit 2 +133777 7218 The film is insightful about Kissinger 's background and history . 3 +133778 7218 is insightful about Kissinger 's background and history . 3 +133779 7218 is insightful about Kissinger 's background and history 3 +133780 7218 insightful about Kissinger 's background and history 3 +133781 7218 about Kissinger 's background and history 2 +133782 7218 Kissinger 's background and history 2 +133783 7218 background and history 2 +133784 7218 background and 2 +133785 7219 A rote exercise in both animation and storytelling . 1 +133786 7219 A rote exercise in both animation and storytelling 1 +133787 7219 A rote exercise 2 +133788 7219 in both animation and storytelling 2 +133789 7219 both animation and storytelling 2 +133790 7219 animation and storytelling 2 +133791 7219 animation and 2 +133792 7220 With a `` Spy Kids '' sequel opening next week , why bother with a contemptible imitator starring a `` SNL '' has-been acting like an 8-year-old channeling Roberto Benigni ? 1 +133793 7220 With a `` Spy Kids '' sequel opening 2 +133794 7220 a `` Spy Kids '' sequel opening 2 +133795 7220 `` Spy Kids '' sequel opening 2 +133796 7220 Spy Kids '' sequel opening 2 +133797 7220 Kids '' sequel opening 2 +133798 7220 '' sequel opening 2 +133799 7220 sequel opening 2 +133800 7220 next week , why bother with a contemptible imitator starring a `` SNL '' has-been acting like an 8-year-old channeling Roberto Benigni ? 0 +133801 7220 next week 2 +133802 7220 , why bother with a contemptible imitator starring a `` SNL '' has-been acting like an 8-year-old channeling Roberto Benigni ? 1 +133803 7220 why bother with a contemptible imitator starring a `` SNL '' has-been acting like an 8-year-old channeling Roberto Benigni ? 1 +133804 7220 bother with a contemptible imitator starring a `` SNL '' has-been acting like an 8-year-old channeling Roberto Benigni ? 1 +133805 7220 bother with a contemptible imitator starring a `` SNL '' has-been acting like an 8-year-old channeling Roberto Benigni 1 +133806 7220 with a contemptible imitator starring a `` SNL '' has-been acting like an 8-year-old channeling Roberto Benigni 0 +133807 7220 a contemptible imitator starring a `` SNL '' has-been acting like an 8-year-old channeling Roberto Benigni 1 +133808 7220 a contemptible imitator 2 +133809 7220 contemptible imitator 1 +133810 7220 contemptible 1 +133811 7220 imitator 2 +133812 7220 starring a `` SNL '' has-been acting like an 8-year-old channeling Roberto Benigni 1 +133813 7220 a `` SNL '' has-been acting like an 8-year-old channeling Roberto Benigni 1 +133814 7220 a `` SNL '' has-been 1 +133815 7220 `` SNL '' has-been 1 +133816 7220 SNL '' has-been 1 +133817 7220 SNL 2 +133818 7220 '' has-been 1 +133819 7220 acting like an 8-year-old channeling Roberto Benigni 0 +133820 7220 like an 8-year-old channeling Roberto Benigni 2 +133821 7220 an 8-year-old channeling Roberto Benigni 1 +133822 7220 8-year-old channeling Roberto Benigni 2 +133823 7220 8-year-old 2 +133824 7220 channeling Roberto Benigni 2 +133825 7220 channeling 2 +133826 7220 Roberto Benigni 2 +133827 7221 The movie is n't horrible , but you can see mediocre cresting on the next wave . 2 +133828 7221 The movie is n't horrible , but you can see mediocre cresting on the next wave 2 +133829 7221 The movie is n't horrible , but 1 +133830 7221 The movie is n't horrible , 2 +133831 7221 The movie is n't horrible 2 +133832 7221 is n't horrible 3 +133833 7221 you can see mediocre cresting on the next wave 1 +133834 7221 can see mediocre cresting on the next wave 1 +133835 7221 see mediocre cresting on the next wave 1 +133836 7221 see mediocre cresting 2 +133837 7221 mediocre cresting 1 +133838 7221 cresting 3 +133839 7221 on the next wave 2 +133840 7221 the next wave 2 +133841 7221 next wave 2 +133842 7222 Give credit to everyone from Robinson down to the key grip that this bold move works . 4 +133843 7222 Give credit to everyone from Robinson down to the key grip that this bold move works 4 +133844 7222 Give credit to everyone from Robinson down to the key grip 3 +133845 7222 Give credit to everyone from Robinson 3 +133846 7222 Give credit 2 +133847 7222 to everyone from Robinson 2 +133848 7222 everyone from Robinson 2 +133849 7222 from Robinson 2 +133850 7222 down to the key grip 2 +133851 7222 to the key grip 2 +133852 7222 the key grip 2 +133853 7222 key grip 2 +133854 7222 grip 2 +133855 7222 that this bold move works 3 +133856 7222 this bold move works 3 +133857 7222 this bold move 2 +133858 7222 bold move 2 +133859 7223 Its salient points are simultaneously buried , drowned and smothered in the excesses of writer-director Roger Avary . 1 +133860 7223 Its salient points 2 +133861 7223 salient points 3 +133862 7223 salient 2 +133863 7223 are simultaneously buried , drowned and smothered in the excesses of writer-director Roger Avary . 1 +133864 7223 are simultaneously buried , drowned and smothered in the excesses of writer-director Roger Avary 0 +133865 7223 buried , drowned and smothered in the excesses of writer-director Roger Avary 0 +133866 7223 buried , drowned and 1 +133867 7223 buried , drowned 1 +133868 7223 buried , 2 +133869 7223 smothered in the excesses of writer-director Roger Avary 1 +133870 7223 in the excesses of writer-director Roger Avary 1 +133871 7223 the excesses of writer-director Roger Avary 1 +133872 7223 of writer-director Roger Avary 2 +133873 7223 writer-director Roger Avary 2 +133874 7223 Roger Avary 2 +133875 7224 The movie is too impressed with its own solemn insights to work up much entertainment value . 1 +133876 7224 is too impressed with its own solemn insights to work up much entertainment value . 2 +133877 7224 is too impressed with its own solemn insights to work up much entertainment value 1 +133878 7224 is too impressed with its own solemn insights 1 +133879 7224 too impressed with its own solemn insights 2 +133880 7224 impressed with its own solemn insights 3 +133881 7224 with its own solemn insights 3 +133882 7224 its own solemn insights 2 +133883 7224 own solemn insights 3 +133884 7224 solemn insights 3 +133885 7224 to work up much entertainment value 2 +133886 7224 work up much entertainment value 3 +133887 7224 work up 3 +133888 7224 much entertainment value 3 +133889 7225 There 's a lot of good material here , but there 's also a lot of redundancy and unsuccessful crudeness accompanying it . 2 +133890 7225 There 's a lot of good material here , but there 's also a lot of redundancy and unsuccessful crudeness accompanying it 3 +133891 7225 There 's a lot of good material here , but 2 +133892 7225 There 's a lot of good material here , 3 +133893 7225 There 's a lot of good material here 4 +133894 7225 's a lot of good material here 3 +133895 7225 's a lot of good material 3 +133896 7225 a lot of good material 3 +133897 7225 of good material 3 +133898 7225 there 's also a lot of redundancy and unsuccessful crudeness accompanying it 1 +133899 7225 's also a lot of redundancy and unsuccessful crudeness accompanying it 0 +133900 7225 a lot of redundancy and unsuccessful crudeness accompanying it 0 +133901 7225 of redundancy and unsuccessful crudeness accompanying it 1 +133902 7225 redundancy and unsuccessful crudeness accompanying it 1 +133903 7225 redundancy and unsuccessful crudeness 0 +133904 7225 redundancy and unsuccessful 0 +133905 7225 redundancy and 1 +133906 7225 crudeness 1 +133907 7225 accompanying it 2 +133908 7226 The director 's many dodges and turns add up to little more than a screenful of gamesmanship that 's low on both suspense and payoff . 1 +133909 7226 The director 's many dodges and turns 1 +133910 7226 many dodges and turns 2 +133911 7226 dodges and turns 2 +133912 7226 dodges and 2 +133913 7226 dodges 2 +133914 7226 add up to little more than a screenful of gamesmanship that 's low on both suspense and payoff . 0 +133915 7226 add up to little more than a screenful of gamesmanship that 's low on both suspense and payoff 0 +133916 7226 to little more than a screenful of gamesmanship that 's low on both suspense and payoff 1 +133917 7226 little more than a screenful of gamesmanship that 's low on both suspense and payoff 0 +133918 7226 little more than a screenful of gamesmanship 2 +133919 7226 than a screenful of gamesmanship 2 +133920 7226 a screenful of gamesmanship 2 +133921 7226 a screenful 2 +133922 7226 screenful 2 +133923 7226 of gamesmanship 2 +133924 7226 gamesmanship 2 +133925 7226 that 's low on both suspense and payoff 1 +133926 7226 's low on both suspense and payoff 1 +133927 7226 low on both suspense and payoff 1 +133928 7226 on both suspense and payoff 3 +133929 7226 both suspense and payoff 2 +133930 7226 suspense and payoff 2 +133931 7226 suspense and 2 +133932 7227 A Movie to Forget 1 +133933 7228 Irwin is so earnest that it 's hard to resist his pleas to spare wildlife and respect their environs . 4 +133934 7228 is so earnest that it 's hard to resist his pleas to spare wildlife and respect their environs . 3 +133935 7228 is so earnest that it 's hard to resist his pleas to spare wildlife and respect their environs 3 +133936 7228 that it 's hard to resist his pleas to spare wildlife and respect their environs 3 +133937 7228 it 's hard to resist his pleas to spare wildlife and respect their environs 2 +133938 7228 's hard to resist his pleas to spare wildlife and respect their environs 3 +133939 7228 hard to resist his pleas to spare wildlife and respect their environs 3 +133940 7228 to resist his pleas to spare wildlife and respect their environs 2 +133941 7228 resist his pleas to spare wildlife and respect their environs 3 +133942 7228 resist his pleas to spare wildlife and 1 +133943 7228 resist his pleas to spare wildlife 2 +133944 7228 resist his pleas 1 +133945 7228 his pleas 1 +133946 7228 pleas 2 +133947 7228 to spare wildlife 3 +133948 7228 spare wildlife 3 +133949 7228 wildlife 3 +133950 7228 respect their environs 2 +133951 7228 their environs 2 +133952 7228 environs 2 +133953 7229 The narrator and the other characters try to convince us that acting transfigures Esther , but she 's never seen speaking on stage ; one feels cheated , and Esther seems to remain an unchanged dullard . 1 +133954 7229 The narrator and the other characters try to convince us that acting transfigures Esther , but she 's never seen speaking on stage ; one feels cheated , and Esther seems to remain an unchanged dullard 1 +133955 7229 The narrator and the other characters try to convince us that acting transfigures Esther , but she 's never seen speaking on stage ; one feels cheated , and 1 +133956 7229 The narrator and the other characters try to convince us that acting transfigures Esther , but she 's never seen speaking on stage ; one feels cheated , 1 +133957 7229 The narrator and the other characters try to convince us that acting transfigures Esther , but she 's never seen speaking on stage ; one feels cheated 2 +133958 7229 The narrator and the other characters try to convince us that acting transfigures Esther , but she 's never seen speaking on stage ; 2 +133959 7229 The narrator and the other characters try to convince us that acting transfigures Esther , but she 's never seen speaking on stage 1 +133960 7229 The narrator and the other characters try to convince us that acting transfigures Esther , but 1 +133961 7229 The narrator and the other characters try to convince us that acting transfigures Esther , 1 +133962 7229 The narrator and the other characters try to convince us that acting transfigures Esther 1 +133963 7229 The narrator and the other characters 2 +133964 7229 The narrator and 2 +133965 7229 The narrator 2 +133966 7229 the other characters 2 +133967 7229 other characters 2 +133968 7229 try to convince us that acting transfigures Esther 2 +133969 7229 to convince us that acting transfigures Esther 1 +133970 7229 convince us that acting transfigures Esther 2 +133971 7229 that acting transfigures Esther 3 +133972 7229 acting transfigures Esther 2 +133973 7229 acting transfigures 2 +133974 7229 transfigures 2 +133975 7229 she 's never seen speaking on stage 2 +133976 7229 's never seen speaking on stage 2 +133977 7229 seen speaking on stage 2 +133978 7229 speaking on stage 2 +133979 7229 one feels cheated 1 +133980 7229 feels cheated 1 +133981 7229 cheated 1 +133982 7229 Esther seems to remain an unchanged dullard 1 +133983 7229 seems to remain an unchanged dullard 1 +133984 7229 to remain an unchanged dullard 1 +133985 7229 remain an unchanged dullard 1 +133986 7229 an unchanged dullard 1 +133987 7229 unchanged dullard 1 +133988 7229 unchanged 2 +133989 7230 Worthy of the gong . 1 +133990 7230 Worthy of the gong 2 +133991 7230 of the gong 2 +133992 7231 It 's tough to be startled when you 're almost dozing . 0 +133993 7231 's tough to be startled when you 're almost dozing . 2 +133994 7231 's tough to be startled when you 're almost dozing 1 +133995 7231 tough to be startled when you 're almost dozing 1 +133996 7231 to be startled when you 're almost dozing 1 +133997 7231 be startled when you 're almost dozing 2 +133998 7231 startled when you 're almost dozing 2 +133999 7231 startled 2 +134000 7231 when you 're almost dozing 2 +134001 7231 you 're almost dozing 1 +134002 7231 're almost dozing 2 +134003 7231 almost dozing 2 +134004 7231 dozing 2 +134005 7232 The images lack contrast , are murky and are frequently too dark to be decipherable . 1 +134006 7232 lack contrast , are murky and are frequently too dark to be decipherable . 0 +134007 7232 lack contrast , are murky and are frequently too dark to be decipherable 1 +134008 7232 lack contrast , are murky and 0 +134009 7232 lack contrast , are murky 0 +134010 7232 lack contrast , 1 +134011 7232 lack contrast 1 +134012 7232 are murky 2 +134013 7232 are frequently too dark to be decipherable 1 +134014 7232 are frequently 2 +134015 7232 too dark to be decipherable 0 +134016 7232 dark to be decipherable 1 +134017 7232 to be decipherable 2 +134018 7232 be decipherable 2 +134019 7232 decipherable 2 +134020 7233 One of those exceedingly rare films in which the talk alone is enough to keep us involved . 4 +134021 7233 One of those exceedingly rare films in which the talk alone is enough to keep us 3 +134022 7233 of those exceedingly rare films in which the talk alone is enough to keep us 3 +134023 7233 those exceedingly rare films in which the talk alone is enough to keep us 3 +134024 7233 those exceedingly rare films 3 +134025 7233 exceedingly rare films 4 +134026 7233 exceedingly rare 3 +134027 7233 in which the talk alone is enough to keep us 2 +134028 7233 the talk alone is enough to keep us 3 +134029 7233 the talk 2 +134030 7233 alone is enough to keep us 2 +134031 7233 is enough to keep us 2 +134032 7233 enough to keep us 2 +134033 7233 involved . 3 +134034 7234 a screenplay more ingeniously constructed than `` Memento '' 4 +134035 7234 a screenplay more 2 +134036 7234 screenplay more 2 +134037 7234 ingeniously constructed than `` Memento '' 3 +134038 7234 ingeniously 4 +134039 7234 constructed than `` Memento '' 2 +134040 7234 than `` Memento '' 2 +134041 7234 than `` Memento 2 +134042 7234 than `` 2 +134043 7235 The film never gets over its own investment in conventional arrangements , in terms of love , age , gender , race , and class . 1 +134044 7235 never gets over its own investment in conventional arrangements , in terms of love , age , gender , race , and class . 1 +134045 7235 gets over its own investment in conventional arrangements , in terms of love , age , gender , race , and class . 2 +134046 7235 gets over its own investment in conventional arrangements , in terms of love , age , gender , race , and class 2 +134047 7235 gets over its own investment in conventional arrangements , 3 +134048 7235 gets over its own investment in conventional arrangements 1 +134049 7235 over its own investment in conventional arrangements 2 +134050 7235 its own investment in conventional arrangements 2 +134051 7235 its own investment 2 +134052 7235 own investment 2 +134053 7235 in conventional arrangements 2 +134054 7235 conventional arrangements 2 +134055 7235 arrangements 2 +134056 7235 in terms of love , age , gender , race , and class 2 +134057 7235 terms of love , age , gender , race , and class 2 +134058 7235 of love , age , gender , race , and class 2 +134059 7235 love , age , gender , race , and class 2 +134060 7235 age , gender , race , and class 2 +134061 7235 , gender , race , and class 2 +134062 7235 gender , race , and class 2 +134063 7235 , race , and class 2 +134064 7235 race , and class 2 +134065 7235 , and class 2 +134066 7236 Lucas has in fact come closer than anyone could desire to the cheap , graceless , hackneyed sci-fi serials of the '30s and '40s . 1 +134067 7236 has in fact come closer than anyone could desire to the cheap , graceless , hackneyed sci-fi serials of the '30s and '40s . 0 +134068 7236 has in fact come closer than anyone could desire to the cheap , graceless , hackneyed sci-fi serials of the '30s and '40s 0 +134069 7236 has in fact 2 +134070 7236 come closer than anyone could desire to the cheap , graceless , hackneyed sci-fi serials of the '30s and '40s 0 +134071 7236 closer than anyone could desire to the cheap , graceless , hackneyed sci-fi serials of the '30s and '40s 2 +134072 7236 than anyone could desire to the cheap , graceless , hackneyed sci-fi serials of the '30s and '40s 1 +134073 7236 anyone could desire to the cheap , graceless , hackneyed sci-fi serials of the '30s and '40s 1 +134074 7236 could desire to the cheap , graceless , hackneyed sci-fi serials of the '30s and '40s 1 +134075 7236 desire to the cheap , graceless , hackneyed sci-fi serials of the '30s and '40s 1 +134076 7236 to the cheap , graceless , hackneyed sci-fi serials of the '30s and '40s 1 +134077 7236 the cheap , graceless , hackneyed sci-fi serials of the '30s and '40s 1 +134078 7236 the cheap , graceless , hackneyed sci-fi serials 0 +134079 7236 cheap , graceless , hackneyed sci-fi serials 0 +134080 7236 cheap , graceless , hackneyed 1 +134081 7236 , graceless , hackneyed 0 +134082 7236 graceless , hackneyed 1 +134083 7236 , hackneyed 2 +134084 7236 sci-fi serials 2 +134085 7236 serials 2 +134086 7236 of the '30s and '40s 2 +134087 7236 the '30s and '40s 2 +134088 7236 '30s and '40s 2 +134089 7236 '30s and 2 +134090 7236 '30s 2 +134091 7236 '40s 2 +134092 7237 The film 's intimate camera work and searing performances pull us deep into the girls ' confusion and pain as they struggle tragically to comprehend the chasm of knowledge that 's opened between them . 4 +134093 7237 The film 's intimate camera work and searing performances 4 +134094 7237 The film 's intimate camera work and 3 +134095 7237 The film 's intimate camera work 3 +134096 7237 intimate camera work 2 +134097 7237 searing performances 3 +134098 7237 pull us deep into the girls ' confusion and pain as they struggle tragically to comprehend the chasm of knowledge that 's opened between them . 3 +134099 7237 pull us deep into the girls ' confusion and pain as they struggle tragically to comprehend the chasm of knowledge that 's opened between them 3 +134100 7237 us deep into the girls ' confusion and pain as they struggle tragically to comprehend the chasm of knowledge that 's opened between them 3 +134101 7237 deep into the girls ' confusion and pain as they struggle tragically to comprehend the chasm of knowledge that 's opened between them 1 +134102 7237 deep into the girls ' confusion and pain 2 +134103 7237 into the girls ' confusion and pain 2 +134104 7237 the girls ' confusion and pain 2 +134105 7237 confusion and pain 0 +134106 7237 confusion and 1 +134107 7237 as they struggle tragically to comprehend the chasm of knowledge that 's opened between them 2 +134108 7237 they struggle tragically to comprehend the chasm of knowledge that 's opened between them 2 +134109 7237 struggle tragically to comprehend the chasm of knowledge that 's opened between them 3 +134110 7237 struggle tragically 1 +134111 7237 to comprehend the chasm of knowledge that 's opened between them 2 +134112 7237 comprehend the chasm of knowledge that 's opened between them 3 +134113 7237 the chasm of knowledge that 's opened between them 2 +134114 7237 the chasm of knowledge 2 +134115 7237 the chasm 2 +134116 7237 of knowledge 2 +134117 7237 that 's opened between them 2 +134118 7237 's opened between them 2 +134119 7237 opened between them 2 +134120 7238 Like leafing through an album of photos accompanied by the sketchiest of captions . 1 +134121 7238 Like leafing through an album of photos 1 +134122 7238 leafing through an album of photos 2 +134123 7238 leafing 2 +134124 7238 through an album of photos 2 +134125 7238 an album of photos 2 +134126 7238 an album 2 +134127 7238 of photos 2 +134128 7238 photos 2 +134129 7238 accompanied by the sketchiest of captions . 1 +134130 7238 accompanied by the sketchiest of captions 2 +134131 7238 accompanied 2 +134132 7238 by the sketchiest of captions 1 +134133 7238 the sketchiest of captions 2 +134134 7238 the sketchiest 1 +134135 7238 sketchiest 1 +134136 7238 of captions 2 +134137 7238 captions 2 +134138 7239 -LRB- Sam 's -RRB- self-flagellation is more depressing than entertaining . 0 +134139 7239 -LRB- Sam 's -RRB- 2 +134140 7239 Sam 's -RRB- 2 +134141 7239 Sam 's 2 +134142 7239 self-flagellation is more depressing than entertaining . 1 +134143 7239 self-flagellation is more depressing than entertaining 2 +134144 7239 self-flagellation 1 +134145 7239 is more depressing than entertaining 0 +134146 7239 more depressing than entertaining 0 +134147 7239 depressing than entertaining 0 +134148 7240 Resembles a soft porn Brian De Palma pastiche . 1 +134149 7240 a soft porn Brian De Palma pastiche . 2 +134150 7240 a soft porn Brian De Palma 2 +134151 7240 soft porn Brian De Palma 2 +134152 7240 porn Brian De Palma 2 +134153 7240 Brian De Palma 2 +134154 7240 pastiche . 2 +134155 7241 So mind-numbingly awful that you hope Britney wo n't do it one more time , as far as movies are concerned . 1 +134156 7241 mind-numbingly awful that you hope Britney wo n't do it one more time , as far as movies are concerned . 0 +134157 7241 mind-numbingly awful that you hope Britney wo n't do it one more time , as far as movies 0 +134158 7241 mind-numbingly awful that you hope Britney wo n't do it one more time , as far as 1 +134159 7241 mind-numbingly awful 1 +134160 7241 that you hope Britney wo n't do it one more time , as far as 1 +134161 7241 you hope Britney wo n't do it one more time , as far as 2 +134162 7241 hope Britney wo n't do it one more time , as far as 1 +134163 7241 Britney wo n't do it one more time , as far as 2 +134164 7241 wo n't do it one more time , as far as 2 +134165 7241 do it one more time , as far as 2 +134166 7241 one more time , as far as 2 +134167 7241 one more time 2 +134168 7241 , as far as 2 +134169 7241 as far as 2 +134170 7241 far as 2 +134171 7241 are concerned . 2 +134172 7242 I can imagine this movie as a b & w British comedy , circa 1960 , with Peter Sellers , Kenneth Williams , et al. , but at this time , with this cast , this movie is hopeless . 1 +134173 7242 I can imagine this movie as a b & w British comedy , circa 1960 , with Peter Sellers , Kenneth Williams , et al. , but at this time , with this cast , this movie is hopeless 0 +134174 7242 I can imagine this movie as a b & w British comedy , circa 1960 , with Peter Sellers , Kenneth Williams , et al. , but 2 +134175 7242 I can imagine this movie as a b & w British comedy , circa 1960 , with Peter Sellers , Kenneth Williams , et al. , 2 +134176 7242 I can imagine this movie as a b & w British comedy , circa 1960 , with Peter Sellers , Kenneth Williams , et al. 2 +134177 7242 can imagine this movie as a b & w British comedy , circa 1960 , with Peter Sellers , Kenneth Williams , et al. 2 +134178 7242 imagine this movie as a b & w British comedy , circa 1960 , with Peter Sellers , Kenneth Williams , et al. 2 +134179 7242 imagine this movie 2 +134180 7242 as a b & w British comedy , circa 1960 , with Peter Sellers , Kenneth Williams , et al. 2 +134181 7242 a b & w British comedy , circa 1960 , with Peter Sellers , Kenneth Williams , et al. 2 +134182 7242 a b & w British comedy , circa 1960 , with Peter Sellers , Kenneth Williams , et 2 +134183 7242 b & w British comedy , circa 1960 , with Peter Sellers , Kenneth Williams , et 2 +134184 7242 b & 2 +134185 7242 w British comedy , circa 1960 , with Peter Sellers , Kenneth Williams , et 2 +134186 7242 w British comedy , circa 1960 , 2 +134187 7242 w British comedy , circa 1960 2 +134188 7242 w British comedy , 2 +134189 7242 w British comedy 2 +134190 7242 w 2 +134191 7242 circa 1960 2 +134192 7242 1960 2 +134193 7242 with Peter Sellers , Kenneth Williams , et 2 +134194 7242 Peter Sellers , Kenneth Williams , et 2 +134195 7242 Peter Sellers , Kenneth Williams , 2 +134196 7242 Peter Sellers , Kenneth Williams 2 +134197 7242 Peter Sellers , 2 +134198 7242 Peter Sellers 2 +134199 7242 Sellers 2 +134200 7242 Kenneth Williams 2 +134201 7242 at this time , with this cast , this movie is hopeless 0 +134202 7242 at this time , with this cast 2 +134203 7242 at this time 2 +134204 7242 , with this cast 2 +134205 7242 with this cast 2 +134206 7242 this cast 2 +134207 7242 , this movie is hopeless 0 +134208 7242 this movie is hopeless 1 +134209 7242 is hopeless 2 +134210 7243 -LRB- Danny Huston gives -RRB- an astounding performance that deftly , gradually reveals a real human soul buried beneath a spellbinding serpent 's smirk . 4 +134211 7243 Danny Huston gives -RRB- an astounding performance that deftly , gradually reveals a real human soul buried beneath a spellbinding serpent 's smirk . 3 +134212 7243 Danny Huston gives 2 +134213 7243 Huston gives 2 +134214 7243 -RRB- an astounding performance that deftly , gradually reveals a real human soul buried beneath a spellbinding serpent 's smirk . 4 +134215 7243 an astounding performance that deftly , gradually reveals a real human soul buried beneath a spellbinding serpent 's smirk . 4 +134216 7243 an astounding performance 4 +134217 7243 astounding performance 4 +134218 7243 that deftly , gradually reveals a real human soul buried beneath a spellbinding serpent 's smirk . 3 +134219 7243 that deftly , gradually reveals a real human soul buried beneath a spellbinding serpent 's smirk 4 +134220 7243 that deftly , gradually 2 +134221 7243 that deftly , 2 +134222 7243 that deftly 2 +134223 7243 reveals a real human soul buried beneath a spellbinding serpent 's smirk 3 +134224 7243 a real human soul buried beneath a spellbinding serpent 's smirk 2 +134225 7243 a real human soul 3 +134226 7243 real human soul 3 +134227 7243 human soul 2 +134228 7243 buried beneath a spellbinding serpent 's smirk 2 +134229 7243 beneath a spellbinding serpent 's smirk 2 +134230 7243 a spellbinding serpent 's smirk 2 +134231 7243 a spellbinding serpent 's 2 +134232 7243 spellbinding serpent 's 3 +134233 7243 serpent 's 2 +134234 7243 serpent 2 +134235 7244 Just like a splendid meal , Red Dragon satisfies -- from its ripe recipe , inspiring ingredients , certified cuisine and palatable presentation . 4 +134236 7244 Just like a splendid meal 4 +134237 7244 like a splendid meal 4 +134238 7244 a splendid meal 4 +134239 7244 splendid meal 3 +134240 7244 , Red Dragon satisfies -- from its ripe recipe , inspiring ingredients , certified cuisine and palatable presentation . 4 +134241 7244 Red Dragon satisfies -- from its ripe recipe , inspiring ingredients , certified cuisine and palatable presentation . 4 +134242 7244 satisfies -- from its ripe recipe , inspiring ingredients , certified cuisine and palatable presentation . 4 +134243 7244 satisfies -- from its ripe recipe , inspiring ingredients , certified cuisine and palatable presentation 3 +134244 7244 satisfies -- from its ripe recipe , inspiring ingredients , certified 4 +134245 7244 -- from its ripe recipe , inspiring ingredients , certified 3 +134246 7244 from its ripe recipe , inspiring ingredients , certified 3 +134247 7244 from its ripe recipe , inspiring ingredients , 3 +134248 7244 from its ripe recipe , inspiring ingredients 3 +134249 7244 its ripe recipe , inspiring ingredients 3 +134250 7244 ripe recipe , inspiring ingredients 3 +134251 7244 ripe recipe , inspiring 4 +134252 7244 recipe , inspiring 4 +134253 7244 recipe , 2 +134254 7244 certified 3 +134255 7244 cuisine and palatable presentation 3 +134256 7244 and palatable presentation 2 +134257 7244 palatable presentation 3 +134258 7245 Director Juan Jose Campanella could have turned this into an Argentine retread of `` Iris '' or `` American Beauty , '' but instead pulls a little from each film and creates something more beautiful than either of those films . 4 +134259 7245 Director Juan Jose Campanella 3 +134260 7245 Juan Jose Campanella 2 +134261 7245 Jose Campanella 2 +134262 7245 Jose 2 +134263 7245 could have turned this into an Argentine retread of `` Iris '' or `` American Beauty , '' but instead pulls a little from each film and creates something more beautiful than either of those films . 3 +134264 7245 could have turned this into an Argentine retread of `` Iris '' or `` American Beauty , '' but instead pulls a little from each film and creates something more beautiful than either of those films 4 +134265 7245 could have turned this into an Argentine retread of `` Iris '' or `` American Beauty , '' but instead pulls a little from each film and 2 +134266 7245 could have turned this into an Argentine retread of `` Iris '' or `` American Beauty , '' but instead pulls a little from each film 2 +134267 7245 could have turned this into an Argentine retread of `` Iris '' or `` American Beauty , '' but 2 +134268 7245 could have turned this into an Argentine retread of `` Iris '' or `` American Beauty , '' 2 +134269 7245 could have turned this into an Argentine retread of `` Iris '' or `` American Beauty , 1 +134270 7245 could have turned this into an Argentine retread of `` Iris '' or `` American Beauty 2 +134271 7245 have turned this into an Argentine retread of `` Iris '' or `` American Beauty 2 +134272 7245 turned this into an Argentine retread of `` Iris '' or `` American Beauty 2 +134273 7245 turned this 3 +134274 7245 into an Argentine retread of `` Iris '' or `` American Beauty 1 +134275 7245 an Argentine retread of `` Iris '' or `` American Beauty 2 +134276 7245 an Argentine retread 1 +134277 7245 Argentine retread 1 +134278 7245 of `` Iris '' or `` American Beauty 2 +134279 7245 `` Iris '' or `` American Beauty 2 +134280 7245 Iris '' or `` American Beauty 2 +134281 7245 Iris '' or `` 2 +134282 7245 Iris '' or 2 +134283 7245 Iris '' 2 +134284 7245 Iris 2 +134285 7245 American Beauty 2 +134286 7245 instead pulls a little from each film 2 +134287 7245 pulls a little from each film 2 +134288 7245 pulls a little 2 +134289 7245 from each film 3 +134290 7245 each film 2 +134291 7245 creates something more beautiful than either of those films 3 +134292 7245 something more beautiful than either of those films 3 +134293 7245 more beautiful than either of those films 4 +134294 7245 beautiful than either of those films 3 +134295 7245 than either of those films 1 +134296 7246 Bursting through the constraints of its source , this is one adapted - from-television movie that actually looks as if it belongs on the big screen . 4 +134297 7246 Bursting through the constraints of its source 2 +134298 7246 through the constraints of its source 1 +134299 7246 the constraints of its source 2 +134300 7246 the constraints 2 +134301 7246 of its source 2 +134302 7246 its source 2 +134303 7246 , this is one adapted - from-television movie that actually looks as if it belongs on the big screen . 4 +134304 7246 this is one adapted - from-television movie that actually looks as if it belongs on the big screen . 3 +134305 7246 is one adapted - from-television movie that actually looks as if it belongs on the big screen . 3 +134306 7246 is one adapted - from-television movie that actually looks as if it belongs on the big screen 3 +134307 7246 one adapted - from-television movie that actually looks as if it belongs on the big screen 3 +134308 7246 one adapted - 2 +134309 7246 one adapted 2 +134310 7246 from-television movie that actually looks as if it belongs on the big screen 3 +134311 7246 from-television movie 2 +134312 7246 from-television 2 +134313 7246 that actually looks as if it belongs on the big screen 2 +134314 7246 actually looks as if it belongs on the big screen 4 +134315 7246 looks as if it belongs on the big screen 4 +134316 7246 as if it belongs on the big screen 3 +134317 7246 if it belongs on the big screen 3 +134318 7246 it belongs on the big screen 3 +134319 7246 belongs on the big screen 3 +134320 7247 an 83 minute document of a project which started in a muddle , seesawed back and forth between controlling interests multiple times , then found its sweet spot 2 +134321 7247 an 83 minute document of a project which started in a muddle , seesawed back and forth between controlling interests multiple times , 2 +134322 7247 an 83 minute document of a project which started in a muddle , seesawed back and forth between controlling interests multiple times 2 +134323 7247 an 83 minute document of a project which started in a muddle , 1 +134324 7247 an 83 minute document of a project which started in a muddle 1 +134325 7247 an 83 minute document of a project 2 +134326 7247 an 83 minute document 2 +134327 7247 83 minute document 2 +134328 7247 83 minute 3 +134329 7247 of a project 2 +134330 7247 which started in a muddle 2 +134331 7247 started in a muddle 2 +134332 7247 in a muddle 2 +134333 7247 seesawed back and forth between controlling interests multiple times 2 +134334 7247 seesawed back and forth between controlling interests 2 +134335 7247 seesawed back and forth 2 +134336 7247 seesawed 2 +134337 7247 between controlling interests 2 +134338 7247 controlling interests 2 +134339 7247 multiple times 2 +134340 7247 then found its sweet spot 3 +134341 7247 found its sweet spot 3 +134342 7247 its sweet spot 3 +134343 7247 sweet spot 3 +134344 7248 Twohy knows how to inflate the mundane into the scarifying , and gets full mileage out of the rolling of a stray barrel or the unexpected blast of a phonograph record . 3 +134345 7248 knows how to inflate the mundane into the scarifying , and gets full mileage out of the rolling of a stray barrel or the unexpected blast of a phonograph record . 3 +134346 7248 knows how to inflate the mundane into the scarifying , and gets full mileage out of the rolling of a stray barrel or the unexpected blast of a phonograph record 3 +134347 7248 knows how to inflate the mundane into the scarifying , and 2 +134348 7248 knows how to inflate the mundane into the scarifying , 3 +134349 7248 knows how to inflate the mundane into the scarifying 3 +134350 7248 how to inflate the mundane into the scarifying 2 +134351 7248 to inflate the mundane into the scarifying 2 +134352 7248 inflate the mundane into the scarifying 2 +134353 7248 inflate the mundane 2 +134354 7248 inflate 2 +134355 7248 into the scarifying 2 +134356 7248 the scarifying 3 +134357 7248 gets full mileage out of the rolling of a stray barrel or the unexpected blast of a phonograph record 3 +134358 7248 gets full mileage out 3 +134359 7248 gets full mileage 3 +134360 7248 full mileage 2 +134361 7248 mileage 2 +134362 7248 of the rolling of a stray barrel or the unexpected blast of a phonograph record 2 +134363 7248 the rolling of a stray barrel or the unexpected blast of a phonograph record 2 +134364 7248 the rolling of a stray barrel or 2 +134365 7248 the rolling of a stray barrel 3 +134366 7248 the rolling 2 +134367 7248 of a stray barrel 2 +134368 7248 a stray barrel 2 +134369 7248 stray barrel 2 +134370 7248 stray 2 +134371 7248 the unexpected blast of a phonograph record 2 +134372 7248 the unexpected blast 2 +134373 7248 unexpected blast 1 +134374 7248 of a phonograph record 3 +134375 7248 a phonograph record 2 +134376 7248 phonograph record 2 +134377 7248 phonograph 2 +134378 7249 every once in a while , a movie will come along that turns me into that annoying specimen of humanity that I usually dread encountering the most - The Fanboy 3 +134379 7249 every once in a while , a movie 2 +134380 7249 every once 2 +134381 7249 in a while , a movie 2 +134382 7249 a while , a movie 2 +134383 7249 will come along that turns me into that annoying specimen of humanity that I usually dread encountering the most - The Fanboy 2 +134384 7249 come along that turns me into that annoying specimen of humanity that I usually dread encountering the most - The Fanboy 3 +134385 7249 along that turns me into that annoying specimen of humanity that I usually dread encountering the most - The Fanboy 2 +134386 7249 that turns me into that annoying specimen of humanity that I usually dread encountering the most - The Fanboy 1 +134387 7249 that turns me into that annoying specimen of humanity that I usually dread encountering the most 1 +134388 7249 turns me into that annoying specimen of humanity that I usually dread encountering the most 1 +134389 7249 turns me into that annoying specimen of humanity 2 +134390 7249 turns me 2 +134391 7249 into that annoying specimen of humanity 1 +134392 7249 that annoying specimen of humanity 1 +134393 7249 that annoying specimen 1 +134394 7249 annoying specimen 1 +134395 7249 of humanity 2 +134396 7249 that I usually dread encountering the most 1 +134397 7249 I usually dread encountering the most 0 +134398 7249 usually dread encountering the most 1 +134399 7249 dread encountering the most 1 +134400 7249 encountering the most 2 +134401 7249 encountering 2 +134402 7249 - The Fanboy 2 +134403 7249 The Fanboy 2 +134404 7250 Bogdanovich taps deep into the Hearst mystique , entertainingly reenacting a historic scandal . 4 +134405 7250 Bogdanovich taps deep into the Hearst mystique 3 +134406 7250 Bogdanovich taps 2 +134407 7250 deep into the Hearst mystique 2 +134408 7250 into the Hearst mystique 2 +134409 7250 the Hearst mystique 2 +134410 7250 Hearst mystique 2 +134411 7250 mystique 2 +134412 7250 , entertainingly reenacting a historic scandal . 2 +134413 7250 entertainingly reenacting a historic scandal . 4 +134414 7250 entertainingly reenacting a historic scandal 3 +134415 7250 reenacting a historic scandal 3 +134416 7250 reenacting 2 +134417 7250 a historic scandal 1 +134418 7250 historic scandal 1 +134419 7250 scandal 1 +134420 7251 K 19 stays afloat as decent drama\/action flick 3 +134421 7251 K 2 +134422 7251 19 stays afloat as decent drama\/action flick 3 +134423 7251 19 stays afloat 2 +134424 7251 19 stays 2 +134425 7251 19 2 +134426 7251 as decent drama\/action flick 3 +134427 7251 decent drama\/action flick 3 +134428 7251 drama\/action flick 2 +134429 7251 drama\/action 2 +134430 7252 Burns ' fifth beer-soaked film feels in almost every possible way -- from the writing and direction to the soggy performances -- tossed off . 0 +134431 7252 Burns ' fifth beer-soaked film 2 +134432 7252 fifth beer-soaked film 1 +134433 7252 fifth 2 +134434 7252 beer-soaked film 2 +134435 7252 beer-soaked 2 +134436 7252 feels in almost every possible way -- from the writing and direction to the soggy performances -- tossed off . 0 +134437 7252 feels in almost every possible way -- from the writing and direction to the soggy performances -- tossed off 0 +134438 7252 in almost every possible way -- from the writing and direction to the soggy performances -- tossed off 1 +134439 7252 almost every possible way -- from the writing and direction to the soggy performances -- tossed off 1 +134440 7252 almost every possible way -- from the writing and direction to the soggy performances -- 0 +134441 7252 almost every possible way 2 +134442 7252 every possible way 2 +134443 7252 -- from the writing and direction to the soggy performances -- 1 +134444 7252 from the writing and direction to the soggy performances -- 1 +134445 7252 from the writing and direction to the soggy performances 1 +134446 7252 the writing and direction to the soggy performances 1 +134447 7252 the writing and direction 2 +134448 7252 writing and direction 2 +134449 7252 to the soggy performances 1 +134450 7252 the soggy performances 1 +134451 7252 soggy performances 1 +134452 7252 tossed off 1 +134453 7253 The problem with movies about angels is they have a tendency to slip into hokum . 1 +134454 7253 The problem with movies about angels 1 +134455 7253 with movies about angels 2 +134456 7253 movies about angels 3 +134457 7253 about angels 2 +134458 7253 is they have a tendency to slip into hokum . 1 +134459 7253 is they have a tendency to slip into hokum 1 +134460 7253 they have a tendency to slip into hokum 1 +134461 7253 have a tendency to slip into hokum 1 +134462 7253 a tendency to slip into hokum 1 +134463 7253 tendency to slip into hokum 1 +134464 7253 to slip into hokum 2 +134465 7253 slip into hokum 1 +134466 7253 into hokum 1 +134467 7254 The graphic carnage and re-creation of war-torn Croatia is uncomfortably timely , relevant , and sickeningly real . 3 +134468 7254 The graphic carnage and re-creation of war-torn Croatia 2 +134469 7254 The graphic carnage and re-creation 2 +134470 7254 graphic carnage and re-creation 2 +134471 7254 carnage and re-creation 2 +134472 7254 carnage and 1 +134473 7254 re-creation 1 +134474 7254 of war-torn Croatia 1 +134475 7254 war-torn Croatia 2 +134476 7254 Croatia 2 +134477 7254 is uncomfortably timely , relevant , and sickeningly real . 3 +134478 7254 is uncomfortably timely , relevant , and sickeningly real 2 +134479 7254 uncomfortably timely , relevant , and sickeningly real 3 +134480 7254 uncomfortably timely , relevant , and 3 +134481 7254 uncomfortably timely , relevant , 3 +134482 7254 uncomfortably timely , relevant 3 +134483 7254 uncomfortably timely , 2 +134484 7254 uncomfortably timely 2 +134485 7254 sickeningly real 3 +134486 7255 I survived . 2 +134487 7255 survived . 2 +134488 7256 A slight and obvious effort , even for one whose target demographic is likely still in the single digits , age-wise . 2 +134489 7256 A slight and obvious effort , even for one whose target demographic is likely still in the single digits , 1 +134490 7256 A slight and obvious effort , even for one whose target demographic is likely still in the single digits 1 +134491 7256 A slight and obvious effort , 2 +134492 7256 A slight and obvious effort 2 +134493 7256 slight and obvious effort 2 +134494 7256 slight and obvious 1 +134495 7256 even for one whose target demographic is likely still in the single digits 1 +134496 7256 for one whose target demographic is likely still in the single digits 2 +134497 7256 one whose target demographic is likely still in the single digits 1 +134498 7256 whose target demographic is likely still in the single digits 1 +134499 7256 whose target demographic 2 +134500 7256 target demographic 2 +134501 7256 is likely still in the single digits 2 +134502 7256 is likely still 2 +134503 7256 is likely 2 +134504 7256 in the single digits 2 +134505 7256 the single digits 2 +134506 7256 single digits 2 +134507 7256 digits 2 +134508 7256 age-wise . 2 +134509 7256 age-wise 2 +134510 7257 Roman Polanski 's autobiographical gesture at redemption is better than ` Shindler 's List ' - it is more than merely a Holocaust movie . 3 +134511 7257 Roman Polanski 's autobiographical gesture at redemption is better than ` Shindler 's List ' - it is more than merely a Holocaust movie 3 +134512 7257 Roman Polanski 's autobiographical gesture at redemption is better than ` Shindler 's List ' - 4 +134513 7257 Roman Polanski 's autobiographical gesture at redemption is better than ` Shindler 's List ' 3 +134514 7257 Roman Polanski 's autobiographical gesture at redemption 2 +134515 7257 Roman Polanski 's autobiographical gesture 2 +134516 7257 Roman Polanski 's 2 +134517 7257 autobiographical gesture 2 +134518 7257 gesture 2 +134519 7257 at redemption 2 +134520 7257 is better than ` Shindler 's List ' 4 +134521 7257 better than ` Shindler 's List ' 4 +134522 7257 than ` Shindler 's List ' 2 +134523 7257 ` Shindler 's List ' 2 +134524 7257 Shindler 's List ' 2 +134525 7257 Shindler 's 2 +134526 7257 Shindler 3 +134527 7257 List ' 2 +134528 7257 it is more than merely a Holocaust movie 3 +134529 7257 is more than merely a Holocaust movie 3 +134530 7257 more than merely a Holocaust movie 3 +134531 7257 more than merely 2 +134532 7257 than merely 2 +134533 7257 a Holocaust movie 2 +134534 7257 Holocaust movie 2 +134535 7258 Less a heartfelt appeal for the handicapped than a nice Belgian waffle . 2 +134536 7258 Less a heartfelt appeal for the handicapped than a nice Belgian waffle 1 +134537 7258 a heartfelt appeal for the handicapped than a nice Belgian waffle 3 +134538 7258 a heartfelt appeal 3 +134539 7258 heartfelt appeal 3 +134540 7258 for the handicapped than a nice Belgian waffle 2 +134541 7258 the handicapped than a nice Belgian waffle 1 +134542 7258 the handicapped 2 +134543 7258 handicapped 2 +134544 7258 than a nice Belgian waffle 2 +134545 7258 a nice Belgian waffle 3 +134546 7258 nice Belgian waffle 3 +134547 7258 Belgian waffle 2 +134548 7258 Belgian 2 +134549 7258 waffle 2 +134550 7259 As saccharine movies go , this is likely to cause massive cardiac arrest if taken in large doses . 1 +134551 7259 As saccharine movies go 1 +134552 7259 saccharine movies go 2 +134553 7259 saccharine movies 2 +134554 7259 , this is likely to cause massive cardiac arrest if taken in large doses . 0 +134555 7259 this is likely to cause massive cardiac arrest if taken in large doses . 2 +134556 7259 is likely to cause massive cardiac arrest if taken in large doses . 1 +134557 7259 is likely to cause massive cardiac arrest if taken in large doses 1 +134558 7259 likely to cause massive cardiac arrest if taken in large doses 1 +134559 7259 to cause massive cardiac arrest if taken in large doses 1 +134560 7259 cause massive cardiac arrest if taken in large doses 2 +134561 7259 cause massive cardiac arrest 0 +134562 7259 massive cardiac arrest 1 +134563 7259 cardiac arrest 1 +134564 7259 cardiac 1 +134565 7259 if taken in large doses 2 +134566 7259 taken in large doses 2 +134567 7259 in large doses 2 +134568 7259 large doses 2 +134569 7260 It falls far short of poetry , but it 's not bad prose . 3 +134570 7260 It falls far short of poetry , but it 's not bad prose 3 +134571 7260 It falls far short of poetry , but 1 +134572 7260 It falls far short of poetry , 1 +134573 7260 It falls far short of poetry 1 +134574 7260 falls far short of poetry 1 +134575 7260 of poetry 2 +134576 7260 it 's not bad prose 3 +134577 7260 's not bad prose 3 +134578 7260 bad prose 1 +134579 7261 Exceptionally well acted by Diane Lane and Richard Gere . 4 +134580 7261 well acted by Diane Lane and Richard Gere . 4 +134581 7261 acted by Diane Lane and Richard Gere . 3 +134582 7261 acted by Diane Lane and Richard Gere 2 +134583 7261 by Diane Lane and Richard Gere 2 +134584 7261 Diane Lane and Richard Gere 2 +134585 7261 Diane Lane and 2 +134586 7261 Richard Gere 2 +134587 7262 This is more fascinating -- being real -- than anything seen on Jerry Springer . 4 +134588 7262 is more fascinating -- being real -- than anything seen on Jerry Springer . 3 +134589 7262 is more fascinating -- being real -- than anything seen on Jerry Springer 3 +134590 7262 more fascinating -- being real -- than anything seen on Jerry Springer 3 +134591 7262 more fascinating -- being real -- 3 +134592 7262 more fascinating 3 +134593 7262 -- being real -- 3 +134594 7262 being real -- 2 +134595 7262 being real 3 +134596 7262 than anything seen on Jerry Springer 1 +134597 7262 anything seen on Jerry Springer 2 +134598 7262 seen on Jerry Springer 2 +134599 7262 on Jerry Springer 2 +134600 7262 Jerry Springer 2 +134601 7262 Springer 2 +134602 7263 Their computer-animated faces are very expressive . 3 +134603 7263 Their computer-animated faces 1 +134604 7263 computer-animated faces 2 +134605 7263 computer-animated 2 +134606 7263 are very expressive . 3 +134607 7263 are very expressive 3 +134608 7263 very expressive 3 +134609 7264 It appears as if even the filmmakers did n't know what kind of movie they were making . 0 +134610 7264 appears as if even the filmmakers did n't know what kind of movie they were making . 2 +134611 7264 appears as if even the filmmakers did n't know what kind of movie they were making 1 +134612 7264 as if even the filmmakers did n't know what kind of movie they were making 1 +134613 7264 if even the filmmakers did n't know what kind of movie they were making 1 +134614 7264 even the filmmakers did n't know what kind of movie they were making 1 +134615 7264 even the filmmakers 2 +134616 7264 did n't know what kind of movie they were making 1 +134617 7264 know what kind of movie they were making 2 +134618 7264 what kind of movie they were making 2 +134619 7264 what kind of movie 2 +134620 7264 they were making 2 +134621 7264 were making 2 +134622 7265 You 'll laugh at either the obviousness of it all or its stupidity or maybe even its inventiveness , but the point is , you 'll laugh . 2 +134623 7265 You 'll laugh at either the obviousness of it all or its stupidity or maybe even its inventiveness , but the point is , you 'll laugh 3 +134624 7265 You 'll laugh at either the obviousness of it all or its stupidity or maybe even its inventiveness , but 2 +134625 7265 You 'll laugh at either the obviousness of it all or its stupidity or maybe even its inventiveness , 3 +134626 7265 You 'll laugh at either the obviousness of it all or its stupidity or maybe even its inventiveness 2 +134627 7265 'll laugh at either the obviousness of it all or its stupidity or maybe even its inventiveness 3 +134628 7265 laugh at either the obviousness of it all or its stupidity or maybe even its inventiveness 3 +134629 7265 at either the obviousness of it all or its stupidity or maybe even its inventiveness 1 +134630 7265 either the obviousness of it all or its stupidity or maybe even its inventiveness 1 +134631 7265 either the obviousness 2 +134632 7265 the obviousness 1 +134633 7265 of it all or its stupidity or maybe even its inventiveness 2 +134634 7265 it all or its stupidity or maybe even its inventiveness 2 +134635 7265 it all or 2 +134636 7265 its stupidity or maybe even its inventiveness 2 +134637 7265 its stupidity or 1 +134638 7265 its stupidity 1 +134639 7265 maybe even its inventiveness 3 +134640 7265 even its inventiveness 3 +134641 7265 the point is , you 'll laugh 3 +134642 7265 is , you 'll laugh 3 +134643 7265 you 'll laugh 3 +134644 7265 'll laugh 3 +134645 7266 like a poor man 's You Can Count On Me 2 +134646 7266 like a poor man 's 1 +134647 7266 a poor man 's 2 +134648 7266 poor man 's 2 +134649 7266 You Can Count On Me 2 +134650 7266 Can Count On Me 2 +134651 7266 Count On Me 2 +134652 7267 Confounding because it solemnly advances a daringly preposterous thesis . 2 +134653 7267 Confounding because it solemnly advances a daringly preposterous thesis 1 +134654 7267 Confounding 1 +134655 7267 because it solemnly advances a daringly preposterous thesis 2 +134656 7267 it solemnly advances a daringly preposterous thesis 2 +134657 7267 solemnly advances a daringly preposterous thesis 3 +134658 7267 solemnly 2 +134659 7267 advances a daringly preposterous thesis 3 +134660 7267 advances 3 +134661 7267 a daringly preposterous thesis 1 +134662 7267 daringly preposterous thesis 2 +134663 7267 daringly preposterous 2 +134664 7268 A documentary to make the stones weep -- as shameful as it is scary . 1 +134665 7268 A documentary to make the stones weep -- as shameful as it 1 +134666 7268 documentary to make the stones weep -- as shameful as it 1 +134667 7268 to make the stones weep -- as shameful as it 1 +134668 7268 make the stones weep -- as shameful as it 1 +134669 7268 make the stones weep -- as shameful 3 +134670 7268 make the stones weep -- 3 +134671 7268 make the stones weep 3 +134672 7268 the stones weep 2 +134673 7268 the stones 2 +134674 7268 stones 2 +134675 7268 as shameful 1 +134676 7268 shameful 1 +134677 7268 is scary . 2 +134678 7268 is scary 2 +134679 7269 A thriller without thrills and a mystery devoid of urgent questions . 1 +134680 7269 A thriller without thrills and a mystery devoid of urgent questions 0 +134681 7269 A thriller without thrills and a mystery devoid 1 +134682 7269 without thrills and a mystery devoid 1 +134683 7269 thrills and a mystery devoid 2 +134684 7269 a mystery devoid 1 +134685 7269 mystery devoid 0 +134686 7269 of urgent questions 2 +134687 7269 urgent questions 2 +134688 7270 Return to Never Land may be another shameless attempt by Disney to rake in dough from baby boomer families , but it 's not half-bad . 3 +134689 7270 Return to Never Land may be another shameless attempt by Disney to rake in dough from baby boomer families , but it 's not half-bad 2 +134690 7270 Return to Never Land may be another shameless attempt by Disney to rake in dough from baby boomer families , but 1 +134691 7270 Return to Never Land may be another shameless attempt by Disney to rake in dough from baby boomer families , 1 +134692 7270 Return to Never Land may be another shameless attempt by Disney to rake in dough from baby boomer families 1 +134693 7270 may be another shameless attempt by Disney to rake in dough from baby boomer families 1 +134694 7270 be another shameless attempt by Disney to rake in dough from baby boomer families 1 +134695 7270 be another shameless attempt by Disney 0 +134696 7270 another shameless attempt by Disney 2 +134697 7270 another shameless attempt 1 +134698 7270 shameless attempt 1 +134699 7270 by Disney 2 +134700 7270 to rake in dough from baby boomer families 2 +134701 7270 rake in dough from baby boomer families 2 +134702 7270 rake 2 +134703 7270 in dough from baby boomer families 2 +134704 7270 dough from baby boomer families 1 +134705 7270 from baby boomer families 2 +134706 7270 baby boomer families 2 +134707 7270 boomer families 2 +134708 7270 it 's not half-bad 3 +134709 7271 They do a good job of painting this family dynamic for the audience but they tried to squeeze too many elements into the film . 2 +134710 7271 They do a good job of painting this family dynamic for the audience but they tried to squeeze too many elements into the film 2 +134711 7271 They do a good job of painting this family dynamic for the audience but 3 +134712 7271 They do a good job of painting this family dynamic for the audience 3 +134713 7271 do a good job of painting this family dynamic for the audience 3 +134714 7271 a good job of painting this family dynamic for the audience 3 +134715 7271 of painting this family dynamic for the audience 2 +134716 7271 painting this family dynamic for the audience 2 +134717 7271 painting this family dynamic 3 +134718 7271 this family dynamic 2 +134719 7271 family dynamic 3 +134720 7271 they tried to squeeze too many elements into the film 1 +134721 7271 tried to squeeze too many elements into the film 1 +134722 7271 to squeeze too many elements into the film 1 +134723 7271 squeeze too many elements into the film 1 +134724 7271 squeeze too many elements 2 +134725 7271 too many elements 1 +134726 7272 A fine documentary can be distinguished from a mediocre one by the better film 's ability to make its subject interesting to those who are n't part of its supposed target audience . 3 +134727 7272 A fine documentary 3 +134728 7272 fine documentary 4 +134729 7272 can be distinguished from a mediocre one by the better film 's ability to make its subject interesting to those who are n't part of its supposed target audience . 3 +134730 7272 can be distinguished from a mediocre one by the better film 's ability to make its subject interesting to those who are n't part of its supposed target audience 3 +134731 7272 be distinguished from a mediocre one by the better film 's ability to make its subject interesting to those who are n't part of its supposed target audience 2 +134732 7272 be distinguished from a mediocre one 3 +134733 7272 distinguished from a mediocre one 2 +134734 7272 from a mediocre one 2 +134735 7272 a mediocre one 1 +134736 7272 mediocre one 1 +134737 7272 by the better film 's ability to make its subject interesting to those who are n't part of its supposed target audience 3 +134738 7272 the better film 's ability to make its subject interesting to those who are n't part of its supposed target audience 3 +134739 7272 the better film 's 3 +134740 7272 better film 's 2 +134741 7272 ability to make its subject interesting to those who are n't part of its supposed target audience 4 +134742 7272 to make its subject interesting to those who are n't part of its supposed target audience 3 +134743 7272 make its subject interesting to those who are n't part of its supposed target audience 2 +134744 7272 its subject interesting to those who are n't part of its supposed target audience 2 +134745 7272 interesting to those who are n't part of its supposed target audience 2 +134746 7272 to those who are n't part of its supposed target audience 2 +134747 7272 those who are n't part of its supposed target audience 2 +134748 7272 who are n't part of its supposed target audience 2 +134749 7272 are n't part of its supposed target audience 2 +134750 7272 part of its supposed target audience 2 +134751 7272 of its supposed target audience 2 +134752 7272 its supposed target audience 2 +134753 7272 supposed target audience 2 +134754 7273 Strange and beautiful film . 3 +134755 7273 Strange and beautiful film 3 +134756 7274 The script becomes lifeless and falls apart like a cheap lawn chair . 1 +134757 7274 becomes lifeless and falls apart like a cheap lawn chair . 0 +134758 7274 becomes lifeless and falls apart like a cheap lawn chair 0 +134759 7274 becomes lifeless and 1 +134760 7274 becomes lifeless 1 +134761 7274 falls apart like a cheap lawn chair 1 +134762 7274 falls apart 1 +134763 7274 like a cheap lawn chair 1 +134764 7274 a cheap lawn chair 2 +134765 7274 cheap lawn chair 2 +134766 7274 lawn chair 2 +134767 7274 lawn 2 +134768 7275 ... hits every cliche we 've come to expect , including the assumption that `` crazy '' people are innocent , childlike and inherently funny . 1 +134769 7275 hits every cliche we 've come to expect , including the assumption that `` crazy '' people are innocent , childlike and inherently funny . 0 +134770 7275 hits every cliche we 've come to expect , including the assumption that `` crazy '' people are innocent , childlike and inherently funny 1 +134771 7275 every cliche we 've come to expect , including the assumption that `` crazy '' people are innocent , childlike and inherently funny 1 +134772 7275 we 've come to expect , including the assumption that `` crazy '' people are innocent , childlike and inherently funny 2 +134773 7275 've come to expect , including the assumption that `` crazy '' people are innocent , childlike and inherently funny 2 +134774 7275 come to expect , including the assumption that `` crazy '' people are innocent , childlike and inherently funny 2 +134775 7275 come to expect , 2 +134776 7275 come to expect 2 +134777 7275 to expect 2 +134778 7275 including the assumption that `` crazy '' people are innocent , childlike and inherently funny 1 +134779 7275 the assumption that `` crazy '' people are innocent , childlike and inherently funny 2 +134780 7275 that `` crazy '' people are innocent , childlike and inherently funny 2 +134781 7275 that `` crazy '' 2 +134782 7275 `` crazy '' 1 +134783 7275 crazy '' 2 +134784 7275 people are innocent , childlike and inherently funny 3 +134785 7275 are innocent , childlike and inherently funny 3 +134786 7275 innocent , childlike and inherently funny 4 +134787 7275 innocent , childlike and 2 +134788 7275 innocent , childlike 3 +134789 7275 innocent , 3 +134790 7275 inherently funny 4 +134791 7275 inherently 3 +134792 7276 We 've seen it all before in one form or another , but director Hoffman , with great help from Kevin Kline , makes us care about this latest reincarnation of the world 's greatest teacher . 3 +134793 7276 We 've seen it all before in one form or another , but director Hoffman , with great help from Kevin Kline , makes us care about this latest reincarnation of the world 's greatest teacher 3 +134794 7276 We 've seen it all before in one form or another , but 2 +134795 7276 We 've seen it all before in one form or another , 1 +134796 7276 We 've seen it all before in one form or another 1 +134797 7276 've seen it all before in one form or another 2 +134798 7276 seen it all before in one form or another 1 +134799 7276 all before in one form or another 2 +134800 7276 before in one form or another 2 +134801 7276 in one form or another 2 +134802 7276 one form or another 2 +134803 7276 one form or 2 +134804 7276 one form 2 +134805 7276 director Hoffman , with great help from Kevin Kline , makes us care about this latest reincarnation of the world 's greatest teacher 3 +134806 7276 director Hoffman , with great help from Kevin Kline , 3 +134807 7276 director Hoffman , with great help from Kevin Kline 3 +134808 7276 with great help from Kevin Kline 4 +134809 7276 great help from Kevin Kline 3 +134810 7276 great help 3 +134811 7276 from Kevin Kline 2 +134812 7276 makes us care about this latest reincarnation of the world 's greatest teacher 2 +134813 7276 us care about this latest reincarnation of the world 's greatest teacher 3 +134814 7276 care about this latest reincarnation of the world 's greatest teacher 2 +134815 7276 about this latest reincarnation of the world 's greatest teacher 3 +134816 7276 this latest reincarnation of the world 's greatest teacher 2 +134817 7276 this latest reincarnation 2 +134818 7276 latest reincarnation 2 +134819 7276 reincarnation 2 +134820 7276 of the world 's greatest teacher 3 +134821 7276 the world 's greatest teacher 3 +134822 7276 greatest teacher 3 +134823 7277 There 's a reason why halftime is only fifteen minutes long . 1 +134824 7277 's a reason why halftime is only fifteen minutes long . 1 +134825 7277 's a reason why halftime is only fifteen minutes long 2 +134826 7277 a reason why halftime is only fifteen minutes long 2 +134827 7277 why halftime is only fifteen minutes long 2 +134828 7277 halftime is only fifteen minutes long 2 +134829 7277 halftime 2 +134830 7277 is only fifteen minutes long 2 +134831 7277 is only fifteen minutes 2 +134832 7277 only fifteen minutes 2 +134833 7277 fifteen minutes 2 +134834 7277 fifteen 2 +134835 7278 Ong 's promising debut is a warm and well-told tale of one recent Chinese immigrant 's experiences in New York City . 4 +134836 7278 Ong 's promising debut 3 +134837 7278 Ong 's 2 +134838 7278 promising debut 3 +134839 7278 is a warm and well-told tale of one recent Chinese immigrant 's experiences in New York City . 3 +134840 7278 is a warm and well-told tale of one recent Chinese immigrant 's experiences in New York City 3 +134841 7278 a warm and well-told tale of one recent Chinese immigrant 's experiences in New York City 2 +134842 7278 a warm and well-told tale 3 +134843 7278 warm and well-told tale 4 +134844 7278 warm and well-told 3 +134845 7278 well-told 3 +134846 7278 of one recent Chinese immigrant 's experiences in New York City 2 +134847 7278 one recent Chinese immigrant 's experiences in New York City 2 +134848 7278 one recent Chinese immigrant 's experiences 2 +134849 7278 recent Chinese immigrant 's experiences 2 +134850 7278 Chinese immigrant 's experiences 2 +134851 7278 Chinese immigrant 's 2 +134852 7278 immigrant 's 2 +134853 7278 in New York City 2 +134854 7279 What 's so striking about Jolie 's performance is that she never lets her character become a caricature -- not even with that radioactive hair . 3 +134855 7279 What 's so striking about Jolie 's performance 3 +134856 7279 's so striking about Jolie 's performance 3 +134857 7279 so striking about Jolie 's performance 2 +134858 7279 striking about Jolie 's performance 3 +134859 7279 about Jolie 's performance 2 +134860 7279 Jolie 's performance 2 +134861 7279 is that she never lets her character become a caricature -- not even with that radioactive hair . 3 +134862 7279 is that she never lets her character become a caricature -- not even with that radioactive hair 3 +134863 7279 that she never lets her character become a caricature -- not even with that radioactive hair 2 +134864 7279 she never lets her character become a caricature -- not even with that radioactive hair 3 +134865 7279 never lets her character become a caricature -- not even with that radioactive hair 2 +134866 7279 lets her character become a caricature -- not even with that radioactive hair 1 +134867 7279 her character become a caricature -- not even with that radioactive hair 0 +134868 7279 her character 2 +134869 7279 become a caricature -- not even with that radioactive hair 1 +134870 7279 a caricature -- not even with that radioactive hair 3 +134871 7279 a caricature 2 +134872 7279 caricature 1 +134873 7279 -- not even with that radioactive hair 2 +134874 7279 not even with that radioactive hair 2 +134875 7279 even with that radioactive hair 2 +134876 7279 with that radioactive hair 2 +134877 7279 that radioactive hair 2 +134878 7279 radioactive hair 3 +134879 7279 radioactive 2 +134880 7280 It 's supposed to be a romantic comedy - it suffers from too much Norma Rae and not enough Pretty Woman . 1 +134881 7280 It 's supposed to be a romantic comedy - it suffers from too much Norma Rae and not enough Pretty Woman 1 +134882 7280 It 's supposed to be a romantic comedy - 2 +134883 7280 It 's supposed to be a romantic comedy 1 +134884 7280 's supposed to be a romantic comedy 1 +134885 7280 supposed to be a romantic comedy 1 +134886 7280 to be a romantic comedy 2 +134887 7280 be a romantic comedy 2 +134888 7280 it suffers from too much Norma Rae and not enough Pretty Woman 1 +134889 7280 suffers from too much Norma Rae and not enough Pretty Woman 1 +134890 7280 from too much Norma Rae and not enough Pretty Woman 1 +134891 7280 too much Norma Rae and not enough Pretty Woman 1 +134892 7280 too much Norma Rae and 2 +134893 7280 too much Norma Rae 1 +134894 7280 Norma Rae 2 +134895 7280 Norma 2 +134896 7280 Rae 3 +134897 7280 not enough Pretty Woman 2 +134898 7280 enough Pretty Woman 2 +134899 7281 Humorous , artsy , and even cute , in an off-kilter , dark , vaguely disturbing way . 2 +134900 7281 Humorous , artsy , and even cute 3 +134901 7281 Humorous , 3 +134902 7281 artsy , and even cute 3 +134903 7281 artsy , and 3 +134904 7281 artsy , 4 +134905 7281 even cute 3 +134906 7281 , in an off-kilter , dark , vaguely disturbing way . 3 +134907 7281 in an off-kilter , dark , vaguely disturbing way . 1 +134908 7281 in an off-kilter , dark , vaguely disturbing way 1 +134909 7281 an off-kilter , dark , vaguely disturbing way 1 +134910 7281 off-kilter , dark , vaguely disturbing way 2 +134911 7281 , dark , vaguely disturbing way 2 +134912 7281 dark , vaguely disturbing way 1 +134913 7281 , vaguely disturbing way 2 +134914 7281 vaguely disturbing way 2 +134915 7281 disturbing way 1 +134916 7282 The leanest and meanest of Solondz 's misanthropic comedies . 3 +134917 7282 The leanest and meanest of Solondz 's misanthropic comedies 3 +134918 7282 The leanest and meanest 3 +134919 7282 leanest and meanest 2 +134920 7282 leanest and 2 +134921 7282 leanest 2 +134922 7282 meanest 2 +134923 7282 of Solondz 's misanthropic comedies 2 +134924 7282 Solondz 's misanthropic comedies 2 +134925 7282 misanthropic comedies 1 +134926 7283 The movie enters a realm where few non-porn films venture , and comes across as darkly funny , energetic , and surprisingly gentle . 3 +134927 7283 enters a realm where few non-porn films venture , and comes across as darkly funny , energetic , and surprisingly gentle . 4 +134928 7283 enters a realm where few non-porn films venture , and comes across as darkly funny , energetic , and surprisingly gentle 4 +134929 7283 enters a realm where few non-porn films venture , and 2 +134930 7283 enters a realm where few non-porn films venture , 3 +134931 7283 enters a realm where few non-porn films venture 2 +134932 7283 a realm where few non-porn films venture 2 +134933 7283 a realm 2 +134934 7283 where few non-porn films venture 2 +134935 7283 few non-porn films venture 2 +134936 7283 few non-porn films 2 +134937 7283 non-porn films 2 +134938 7283 non-porn 2 +134939 7283 comes across as darkly funny , energetic , and surprisingly gentle 3 +134940 7283 across as darkly funny , energetic , and surprisingly gentle 4 +134941 7283 as darkly funny , energetic , and surprisingly gentle 3 +134942 7283 as darkly funny , energetic , and 3 +134943 7283 as darkly funny , energetic , 3 +134944 7283 as darkly funny , energetic 3 +134945 7283 as darkly funny , 4 +134946 7283 as darkly funny 3 +134947 7283 darkly funny 3 +134948 7283 surprisingly gentle 3 +134949 7284 It 's as if Solondz had two ideas for two movies , could n't really figure out how to flesh either out , so he just slopped ` em together here . 1 +134950 7284 It 's as if Solondz had two ideas for two movies , could n't really figure out how to flesh either out , so he just slopped ` em together here 1 +134951 7284 It 's as if Solondz had two ideas for two movies , could n't really figure out how to flesh either out , so 1 +134952 7284 It 's as if Solondz had two ideas for two movies , could n't really figure out how to flesh either out , 1 +134953 7284 It 's as if Solondz had two ideas for two movies , could n't really figure out how to flesh either out 1 +134954 7284 's as if Solondz had two ideas for two movies , could n't really figure out how to flesh either out 1 +134955 7284 as if Solondz had two ideas for two movies , could n't really figure out how to flesh either out 1 +134956 7284 if Solondz had two ideas for two movies , could n't really figure out how to flesh either out 1 +134957 7284 if Solondz had two ideas for two movies 2 +134958 7284 Solondz had two ideas for two movies 2 +134959 7284 had two ideas for two movies 2 +134960 7284 two ideas for two movies 2 +134961 7284 two ideas 3 +134962 7284 for two movies 3 +134963 7284 two movies 2 +134964 7284 , could n't really figure out how to flesh either out 2 +134965 7284 could n't really figure out how to flesh either out 1 +134966 7284 could n't really 2 +134967 7284 figure out how to flesh either out 2 +134968 7284 how to flesh either out 2 +134969 7284 to flesh either out 2 +134970 7284 flesh either out 2 +134971 7284 flesh either 2 +134972 7284 he just slopped ` em together here 1 +134973 7284 just slopped ` em together here 1 +134974 7284 slopped ` em together here 1 +134975 7284 slopped ` em together 1 +134976 7284 slopped ` em 2 +134977 7284 slopped ` 1 +134978 7284 slopped 1 +134979 7284 em 2 +134980 7285 A low-rent retread of the Alien pictures . 1 +134981 7285 A low-rent retread of the Alien 1 +134982 7285 A low-rent retread 1 +134983 7285 low-rent retread 1 +134984 7285 of the Alien 2 +134985 7285 the Alien 2 +134986 7286 For decades we 've marveled at Disney 's rendering of water , snow , flames and shadows in a hand-drawn animated world . 3 +134987 7286 we 've marveled at Disney 's rendering of water , snow , flames and shadows in a hand-drawn animated world . 3 +134988 7286 've marveled at Disney 's rendering of water , snow , flames and shadows in a hand-drawn animated world . 3 +134989 7286 've marveled at Disney 's rendering of water , snow , flames and shadows in a hand-drawn animated world 4 +134990 7286 marveled at Disney 's rendering of water , snow , flames and shadows in a hand-drawn animated world 3 +134991 7286 marveled at Disney 's rendering of water , snow , flames and shadows 3 +134992 7286 marveled 3 +134993 7286 at Disney 's rendering of water , snow , flames and shadows 2 +134994 7286 Disney 's rendering of water , snow , flames and shadows 2 +134995 7286 Disney 's rendering 2 +134996 7286 of water , snow , flames and shadows 2 +134997 7286 water , snow , flames and shadows 2 +134998 7286 , snow , flames and shadows 2 +134999 7286 snow , flames and shadows 2 +135000 7286 , flames and shadows 2 +135001 7286 flames and shadows 2 +135002 7286 flames and 2 +135003 7286 flames 2 +135004 7286 in a hand-drawn animated world 2 +135005 7286 a hand-drawn animated world 2 +135006 7286 hand-drawn animated world 2 +135007 7286 hand-drawn 2 +135008 7286 animated world 2 +135009 7287 Has its charming quirks and its dull spots . 2 +135010 7287 Has its charming quirks and its dull spots 3 +135011 7287 its charming quirks and its dull spots 2 +135012 7287 its charming quirks and 3 +135013 7287 its charming quirks 4 +135014 7287 charming quirks 3 +135015 7287 its dull spots 1 +135016 7287 dull spots 1 +135017 7288 Several of Steven Soderbergh 's earlier films were hailed as the works of an artist . 3 +135018 7288 Several of Steven Soderbergh 's earlier films 2 +135019 7288 of Steven Soderbergh 's earlier films 2 +135020 7288 Steven Soderbergh 's earlier films 3 +135021 7288 were hailed as the works of an artist . 3 +135022 7288 were hailed as the works of an artist 2 +135023 7288 hailed as the works of an artist 2 +135024 7288 as the works of an artist 2 +135025 7288 the works of an artist 3 +135026 7289 Who is the audience for Cletis Tout ? 2 +135027 7289 is the audience for Cletis Tout ? 2 +135028 7289 is the audience for Cletis Tout 2 +135029 7289 the audience for Cletis Tout 2 +135030 7289 for Cletis Tout 2 +135031 7290 Perhaps not since Nelson Eddy crooned his Indian Love Call to Jeanette MacDonald has there been a movie so unabashedly Canadian , not afraid to risk American scorn or disinterest . 2 +135032 7290 Perhaps not since Nelson Eddy 2 +135033 7290 Perhaps not 2 +135034 7290 since Nelson Eddy 2 +135035 7290 Nelson Eddy 2 +135036 7290 Eddy 2 +135037 7290 crooned his Indian Love Call to Jeanette MacDonald has there been a movie so unabashedly Canadian , not afraid to risk American scorn or disinterest . 2 +135038 7290 crooned his Indian Love Call to Jeanette MacDonald has there been a movie so unabashedly Canadian , not afraid to risk American scorn or disinterest 2 +135039 7290 crooned 2 +135040 7290 his Indian Love Call to Jeanette MacDonald has there been a movie so unabashedly Canadian , not afraid to risk American scorn or disinterest 3 +135041 7290 his Indian Love Call to Jeanette MacDonald 2 +135042 7290 Indian Love Call to Jeanette MacDonald 2 +135043 7290 Love Call to Jeanette MacDonald 3 +135044 7290 Call to Jeanette MacDonald 2 +135045 7290 Call to Jeanette 2 +135046 7290 to Jeanette 2 +135047 7290 Jeanette 2 +135048 7290 MacDonald 2 +135049 7290 has there been a movie so unabashedly Canadian , not afraid to risk American scorn or disinterest 2 +135050 7290 has there 2 +135051 7290 been a movie so unabashedly Canadian , not afraid to risk American scorn or disinterest 2 +135052 7290 a movie so unabashedly Canadian , not afraid to risk American scorn or disinterest 3 +135053 7290 so unabashedly Canadian , not afraid to risk American scorn or disinterest 2 +135054 7290 so unabashedly Canadian , not afraid to risk American scorn or 3 +135055 7290 so unabashedly Canadian , not afraid to risk American scorn 3 +135056 7290 so unabashedly Canadian , 2 +135057 7290 so unabashedly Canadian 2 +135058 7290 unabashedly Canadian 2 +135059 7290 not afraid to risk American scorn 2 +135060 7290 afraid to risk American scorn 2 +135061 7290 to risk American scorn 1 +135062 7290 risk American scorn 2 +135063 7290 risk 2 +135064 7290 American scorn 2 +135065 7290 disinterest 0 +135066 7291 Like a soft drink that 's been sitting open too long : it 's too much syrup and not enough fizz . 0 +135067 7291 Like a soft drink that 's been sitting open too long : it 's too much syrup and not enough fizz 0 +135068 7291 Like a soft drink that 's been sitting open too long : 1 +135069 7291 Like a soft drink that 's been sitting open too long 0 +135070 7291 Like a soft drink 2 +135071 7291 a soft drink 2 +135072 7291 soft drink 2 +135073 7291 that 's been sitting open too long 2 +135074 7291 's been sitting open too long 2 +135075 7291 been sitting open too long 2 +135076 7291 sitting open too long 1 +135077 7291 sitting open 2 +135078 7291 it 's too much syrup and not enough fizz 1 +135079 7291 's too much syrup and not enough fizz 1 +135080 7291 too much syrup and not enough fizz 2 +135081 7291 too much syrup and 2 +135082 7291 too much syrup 1 +135083 7291 much syrup 2 +135084 7291 syrup 2 +135085 7291 not enough fizz 1 +135086 7291 enough fizz 2 +135087 7292 But they lack their idol 's energy and passion for detail . 1 +135088 7292 they lack their idol 's energy and passion for detail . 1 +135089 7292 lack their idol 's energy and passion for detail . 1 +135090 7292 lack their idol 's energy and passion for detail 1 +135091 7292 their idol 's energy and passion for detail 3 +135092 7292 their idol 's energy and passion 3 +135093 7292 their idol 's 2 +135094 7292 idol 's 3 +135095 7292 idol 3 +135096 7292 energy and passion 2 +135097 7293 Schaefer 's ... determination to inject farcical raunch ... drowns out the promise of the romantic angle . 1 +135098 7293 Schaefer 's ... determination to inject farcical raunch ... 2 +135099 7293 Schaefer 's ... determination to inject farcical raunch 1 +135100 7293 Schaefer 's ... 2 +135101 7293 Schaefer 's 2 +135102 7293 Schaefer 2 +135103 7293 determination to inject farcical raunch 1 +135104 7293 to inject farcical raunch 1 +135105 7293 inject farcical raunch 1 +135106 7293 farcical raunch 2 +135107 7293 drowns out the promise of the romantic angle . 1 +135108 7293 drowns out the promise of the romantic angle 2 +135109 7293 drowns out 1 +135110 7293 the promise of the romantic angle 2 +135111 7293 of the romantic angle 2 +135112 7293 the romantic angle 2 +135113 7293 romantic angle 2 +135114 7294 Instead of using George and Lucy 's most obvious differences to ignite sparks , Lawrence desperately looks elsewhere , seizing on George 's haplessness and Lucy 's personality tics . 1 +135115 7294 Instead of using George and Lucy 's most obvious differences to ignite sparks 2 +135116 7294 of using George and Lucy 's most obvious differences to ignite sparks 3 +135117 7294 using George and Lucy 's most obvious differences to ignite sparks 2 +135118 7294 George and Lucy 's most obvious differences to ignite sparks 3 +135119 7294 George and Lucy 's most obvious differences 2 +135120 7294 George and 2 +135121 7294 Lucy 's most obvious differences 2 +135122 7294 Lucy 's 2 +135123 7294 most obvious differences 2 +135124 7294 to ignite sparks 3 +135125 7294 ignite sparks 3 +135126 7294 , Lawrence desperately looks elsewhere , seizing on George 's haplessness and Lucy 's personality tics . 1 +135127 7294 Lawrence desperately looks elsewhere , seizing on George 's haplessness and Lucy 's personality tics . 1 +135128 7294 desperately looks elsewhere , seizing on George 's haplessness and Lucy 's personality tics . 1 +135129 7294 looks elsewhere , seizing on George 's haplessness and Lucy 's personality tics . 1 +135130 7294 looks elsewhere , seizing on George 's haplessness and Lucy 's personality tics 2 +135131 7294 looks elsewhere , 2 +135132 7294 looks elsewhere 1 +135133 7294 seizing on George 's haplessness and Lucy 's personality tics 1 +135134 7294 seizing 2 +135135 7294 on George 's haplessness and Lucy 's personality tics 2 +135136 7294 George 's haplessness and Lucy 's personality tics 2 +135137 7294 George 's haplessness and 1 +135138 7294 George 's haplessness 1 +135139 7294 George 's 2 +135140 7294 haplessness 2 +135141 7294 Lucy 's personality tics 2 +135142 7294 personality tics 2 +135143 7294 tics 1 +135144 7295 It is n't that the picture is unfamiliar , but that it manages to find new avenues of discourse on old problems . 2 +135145 7295 is n't that the picture is unfamiliar , but that it manages to find new avenues of discourse on old problems . 3 +135146 7295 is n't that the picture is unfamiliar , but that it manages to find new avenues of discourse on old problems 3 +135147 7295 that the picture is unfamiliar , but that it manages to find new avenues of discourse on old problems 2 +135148 7295 that the picture is unfamiliar , but 2 +135149 7295 that the picture is unfamiliar , 2 +135150 7295 that the picture is unfamiliar 2 +135151 7295 the picture is unfamiliar 2 +135152 7295 is unfamiliar 2 +135153 7295 that it manages to find new avenues of discourse on old problems 2 +135154 7295 it manages to find new avenues of discourse on old problems 3 +135155 7295 manages to find new avenues of discourse on old problems 3 +135156 7295 to find new avenues of discourse on old problems 3 +135157 7295 find new avenues of discourse on old problems 2 +135158 7295 find new avenues of discourse 2 +135159 7295 new avenues of discourse 2 +135160 7295 new avenues 3 +135161 7295 avenues 2 +135162 7295 of discourse 2 +135163 7295 on old problems 2 +135164 7295 old problems 2 +135165 7296 An alternately fascinating and frustrating documentary . 3 +135166 7296 An alternately fascinating and frustrating documentary 2 +135167 7296 alternately fascinating and frustrating documentary 3 +135168 7296 alternately fascinating and frustrating 3 +135169 7296 fascinating and frustrating 2 +135170 7297 Contrived , maudlin and cliche-ridden ... if this sappy script was the best the contest received , those rejected must have been astronomically bad . 0 +135171 7297 Contrived , maudlin and cliche-ridden 0 +135172 7297 , maudlin and cliche-ridden 1 +135173 7297 maudlin and cliche-ridden 0 +135174 7297 maudlin and 2 +135175 7297 ... if this sappy script was the best the contest received , those rejected must have been astronomically bad . 1 +135176 7297 if this sappy script was the best the contest received , those rejected must have been astronomically bad . 0 +135177 7297 if this sappy script was the best the contest received , those rejected must have been astronomically bad 0 +135178 7297 if this sappy script was the best the contest received 2 +135179 7297 this sappy script was the best the contest received 2 +135180 7297 this sappy script 2 +135181 7297 sappy script 1 +135182 7297 was the best the contest received 3 +135183 7297 the best the contest received 3 +135184 7297 the contest received 2 +135185 7297 the contest 2 +135186 7297 , those rejected must have been astronomically bad 1 +135187 7297 those rejected must have been astronomically bad 2 +135188 7297 rejected must have been astronomically bad 1 +135189 7297 must have been astronomically bad 0 +135190 7297 have been astronomically bad 0 +135191 7297 been astronomically bad 0 +135192 7297 astronomically bad 0 +135193 7297 astronomically 2 +135194 7298 An absorbing and unsettling psychological drama . 3 +135195 7298 An absorbing and unsettling psychological drama 2 +135196 7298 absorbing and unsettling psychological drama 3 +135197 7298 absorbing and unsettling psychological 2 +135198 7298 and unsettling psychological 2 +135199 7298 unsettling psychological 2 +135200 7299 There are times when you wish that the movie had worked a little harder to conceal its contrivances , but Brown Sugar turns out to be a sweet and enjoyable fantasy . 2 +135201 7299 There are times when you wish that the movie had worked a little harder to conceal its contrivances , but Brown Sugar turns out to be a sweet and enjoyable fantasy 2 +135202 7299 There are times when you wish that the movie had worked a little harder to conceal its contrivances , but 1 +135203 7299 There are times when you wish that the movie had worked a little harder to conceal its contrivances , 1 +135204 7299 There are times when you wish that the movie had worked a little harder to conceal its contrivances 1 +135205 7299 are times when you wish that the movie had worked a little harder to conceal its contrivances 2 +135206 7299 times when you wish that the movie had worked a little harder to conceal its contrivances 1 +135207 7299 when you wish that the movie had worked a little harder to conceal its contrivances 1 +135208 7299 you wish that the movie had worked a little harder to conceal its contrivances 1 +135209 7299 wish that the movie had worked a little harder to conceal its contrivances 1 +135210 7299 that the movie had worked a little harder to conceal its contrivances 2 +135211 7299 the movie had worked a little harder to conceal its contrivances 3 +135212 7299 had worked a little harder to conceal its contrivances 2 +135213 7299 worked a little harder to conceal its contrivances 2 +135214 7299 worked a little harder 2 +135215 7299 a little harder 2 +135216 7299 to conceal its contrivances 1 +135217 7299 conceal its contrivances 2 +135218 7299 its contrivances 3 +135219 7299 Brown Sugar turns out to be a sweet and enjoyable fantasy 3 +135220 7299 turns out to be a sweet and enjoyable fantasy 4 +135221 7299 to be a sweet and enjoyable fantasy 4 +135222 7299 be a sweet and enjoyable fantasy 3 +135223 7299 a sweet and enjoyable fantasy 4 +135224 7299 sweet and enjoyable fantasy 4 +135225 7299 sweet and enjoyable 4 +135226 7300 It does n't work as either . 0 +135227 7300 does n't work as either . 1 +135228 7300 does n't work as either 1 +135229 7300 work as either 2 +135230 7301 ... too sappy for its own good . 1 +135231 7301 too sappy for its own good . 1 +135232 7301 too sappy for its own good 1 +135233 7301 too sappy 1 +135234 7302 Without any redeeming value whatsoever . 0 +135235 7302 Without any redeeming value whatsoever 0 +135236 7302 any redeeming value whatsoever 1 +135237 7302 redeeming value whatsoever 2 +135238 7302 value whatsoever 1 +135239 7303 A Blair Witch - style adventure that plays like a bad soap opera , with passable performances from everyone in the cast . 1 +135240 7303 A Blair Witch - style adventure that plays like a bad soap opera , with passable performances from everyone in the cast 0 +135241 7303 A Blair Witch - 2 +135242 7303 A Blair Witch 2 +135243 7303 Blair Witch 2 +135244 7303 style adventure that plays like a bad soap opera , with passable performances from everyone in the cast 1 +135245 7303 style adventure 2 +135246 7303 that plays like a bad soap opera , with passable performances from everyone in the cast 1 +135247 7303 plays like a bad soap opera , with passable performances from everyone in the cast 0 +135248 7303 plays like a bad soap opera , 0 +135249 7303 plays like a bad soap opera 0 +135250 7303 like a bad soap opera 1 +135251 7303 a bad soap opera 1 +135252 7303 bad soap opera 0 +135253 7303 with passable performances from everyone in the cast 3 +135254 7303 passable performances from everyone in the cast 2 +135255 7303 passable performances 2 +135256 7303 from everyone in the cast 2 +135257 7303 everyone in the cast 2 +135258 7304 The author 's devotees will probably find it fascinating ; others may find it baffling . 1 +135259 7304 The author 's devotees will probably find it fascinating ; others may find it baffling 2 +135260 7304 The author 's devotees will probably find it fascinating ; 3 +135261 7304 The author 's devotees will probably find it fascinating 3 +135262 7304 The author 's devotees 2 +135263 7304 will probably find it fascinating 3 +135264 7304 find it fascinating 3 +135265 7304 it fascinating 3 +135266 7304 others may find it baffling 2 +135267 7304 may find it baffling 2 +135268 7304 find it baffling 1 +135269 7304 it baffling 2 +135270 7305 The quirky and recessive charms of co-stars Martin Donovan and Mary-Louise Parker help overcome the problematic script . 3 +135271 7305 The quirky and recessive charms of co-stars Martin Donovan and Mary-Louise Parker 3 +135272 7305 The quirky and recessive charms 3 +135273 7305 quirky and recessive charms 3 +135274 7305 and recessive charms 2 +135275 7305 recessive charms 2 +135276 7305 recessive 2 +135277 7305 of co-stars Martin Donovan and Mary-Louise Parker 2 +135278 7305 co-stars Martin Donovan and Mary-Louise Parker 2 +135279 7305 Martin Donovan and Mary-Louise Parker 2 +135280 7305 Donovan and Mary-Louise Parker 2 +135281 7305 and Mary-Louise Parker 2 +135282 7305 Mary-Louise Parker 2 +135283 7305 Mary-Louise 2 +135284 7305 help overcome the problematic script . 1 +135285 7305 help overcome the problematic script 2 +135286 7305 overcome the problematic script 1 +135287 7305 the problematic script 1 +135288 7305 problematic script 1 +135289 7306 It 's a very valuable film ... 4 +135290 7306 's a very valuable film ... 3 +135291 7306 's a very valuable film 3 +135292 7306 a very valuable film 3 +135293 7306 very valuable film 4 +135294 7306 very valuable 3 +135295 7307 And more than that , it 's an observant , unfussily poetic meditation about identity and alienation . 3 +135296 7307 more than that , it 's an observant , unfussily poetic meditation about identity and alienation . 3 +135297 7307 , it 's an observant , unfussily poetic meditation about identity and alienation . 4 +135298 7307 it 's an observant , unfussily poetic meditation about identity and alienation . 3 +135299 7307 's an observant , unfussily poetic meditation about identity and alienation . 3 +135300 7307 's an observant , unfussily poetic meditation about identity and alienation 2 +135301 7307 an observant , unfussily poetic meditation about identity and alienation 2 +135302 7307 an observant , unfussily poetic meditation 3 +135303 7307 observant , unfussily poetic meditation 3 +135304 7307 observant , unfussily poetic 3 +135305 7307 , unfussily poetic 3 +135306 7307 unfussily poetic 2 +135307 7307 unfussily 2 +135308 7307 about identity and alienation 1 +135309 7307 identity and alienation 2 +135310 7308 That rare movie that works on any number of levels -- as a film of magic and whimsy for children , a heartfelt romance for teenagers and a compelling argument about death , both pro and con , for adults . 4 +135311 7308 That rare movie that works on any number of levels -- as a film of magic and whimsy for children , a heartfelt romance for teenagers and a compelling argument about death , both pro and con , for adults 4 +135312 7308 That rare movie that works on any number of levels -- as 3 +135313 7308 That rare movie that works on any number of levels -- 3 +135314 7308 That rare movie that works on any number of levels 4 +135315 7308 That rare movie 3 +135316 7308 that works on any number of levels 3 +135317 7308 works on any number of levels 4 +135318 7308 a film of magic and whimsy for children , a heartfelt romance for teenagers and a compelling argument about death , both pro and con , for adults 4 +135319 7308 of magic and whimsy for children , a heartfelt romance for teenagers and a compelling argument about death , both pro and con , for adults 4 +135320 7308 magic and whimsy for children , a heartfelt romance for teenagers and a compelling argument about death , both pro and con , for adults 4 +135321 7308 magic and whimsy for children , a heartfelt romance for teenagers and a compelling argument about death , 3 +135322 7308 magic and whimsy for children , a heartfelt romance for teenagers and a compelling argument about death 4 +135323 7308 magic and whimsy 3 +135324 7308 for children , a heartfelt romance for teenagers and a compelling argument about death 2 +135325 7308 children , a heartfelt romance for teenagers and a compelling argument about death 3 +135326 7308 children , a heartfelt romance for teenagers and 3 +135327 7308 children , a heartfelt romance for teenagers 3 +135328 7308 a heartfelt romance for teenagers 3 +135329 7308 a heartfelt romance 4 +135330 7308 heartfelt romance 3 +135331 7308 for teenagers 2 +135332 7308 a compelling argument about death 3 +135333 7308 a compelling argument 2 +135334 7308 compelling argument 2 +135335 7308 about death 1 +135336 7308 both pro and con , for adults 2 +135337 7308 pro and con , for adults 2 +135338 7308 and con , for adults 1 +135339 7308 con , for adults 2 +135340 7308 , for adults 2 +135341 7309 Apart from its own considerable achievement 3 +135342 7309 from its own considerable achievement 3 +135343 7309 its own considerable achievement 3 +135344 7309 own considerable achievement 3 +135345 7309 considerable achievement 3 +135346 7309 confirms Tezuka 's status as both the primary visual influence 3 +135347 7309 Tezuka 's status as both the primary visual influence 3 +135348 7309 Tezuka 's status 2 +135349 7309 Tezuka 's 2 +135350 7309 Tezuka 2 +135351 7309 as both the primary visual influence 2 +135352 7309 both the primary visual influence 2 +135353 7309 the primary visual influence 2 +135354 7309 primary visual influence 3 +135355 7309 visual influence 3 +135356 7309 its defining philosophical conscience 3 +135357 7309 defining philosophical conscience 3 +135358 7309 defining 3 +135359 7309 philosophical conscience 2 +135360 7310 A cultural wildcard experience : wacky , different , unusual , even nutty . 4 +135361 7310 A cultural wildcard experience : wacky , different , unusual , even nutty 3 +135362 7310 A cultural wildcard experience : 2 +135363 7310 A cultural wildcard experience 3 +135364 7310 cultural wildcard experience 2 +135365 7310 wildcard experience 2 +135366 7310 wildcard 1 +135367 7310 wacky , different , unusual , even nutty 2 +135368 7310 , different , unusual , even nutty 2 +135369 7310 different , unusual , even nutty 3 +135370 7310 , unusual , even nutty 3 +135371 7310 unusual , even nutty 2 +135372 7310 , even nutty 2 +135373 7310 even nutty 2 +135374 7311 Just as the recent Argentine film Son of the Bride reminded us that a feel-good movie can still show real heart , Time of Favor presents us with an action movie that actually has a brain . 3 +135375 7311 Just as the recent Argentine film Son of the Bride reminded us that a feel-good movie can still show real heart 4 +135376 7311 as the recent Argentine film Son of the Bride reminded us that a feel-good movie can still show real heart 4 +135377 7311 the recent Argentine film Son of the Bride reminded us that a feel-good movie can still show real heart 3 +135378 7311 the recent Argentine film Son of the Bride 2 +135379 7311 the recent Argentine film Son 2 +135380 7311 recent Argentine film Son 2 +135381 7311 Argentine film Son 2 +135382 7311 film Son 2 +135383 7311 reminded us that a feel-good movie can still show real heart 4 +135384 7311 reminded us 2 +135385 7311 that a feel-good movie can still show real heart 3 +135386 7311 a feel-good movie can still show real heart 3 +135387 7311 can still show real heart 2 +135388 7311 show real heart 3 +135389 7311 real heart 3 +135390 7311 , Time of Favor presents us with an action movie that actually has a brain . 3 +135391 7311 Time of Favor presents us with an action movie that actually has a brain . 3 +135392 7311 presents us with an action movie that actually has a brain . 3 +135393 7311 presents us with an action movie that actually has a brain 4 +135394 7311 presents us 2 +135395 7311 with an action movie that actually has a brain 4 +135396 7311 an action movie that actually has a brain 2 +135397 7311 that actually has a brain 3 +135398 7311 actually has a brain 2 +135399 7311 has a brain 3 +135400 7312 A marvelous performance by Allison Lohman as an identity-seeking foster child . 3 +135401 7312 A marvelous performance by Allison Lohman as an identity-seeking foster child 4 +135402 7312 A marvelous performance by Allison Lohman 4 +135403 7312 A marvelous performance 4 +135404 7312 marvelous performance 3 +135405 7312 by Allison Lohman 2 +135406 7312 Allison Lohman 2 +135407 7312 Allison 2 +135408 7312 as an identity-seeking foster child 2 +135409 7312 an identity-seeking foster child 2 +135410 7312 identity-seeking foster child 2 +135411 7312 identity-seeking 2 +135412 7312 foster child 2 +135413 7313 In fact , it 's quite fun in places . 3 +135414 7313 , it 's quite fun in places . 3 +135415 7313 it 's quite fun in places . 3 +135416 7313 's quite fun in places . 3 +135417 7313 's quite fun in places 3 +135418 7313 quite fun in places 3 +135419 7313 quite fun 3 +135420 7314 Halloween : Resurrection is n't exactly quality cinema , but it is n't nearly as terrible as it cold have been . 2 +135421 7314 : Resurrection is n't exactly quality cinema , but it is n't nearly as terrible as it cold have been . 1 +135422 7314 Resurrection is n't exactly quality cinema , but it is n't nearly as terrible as it cold have been . 2 +135423 7314 Resurrection is n't exactly quality cinema , but it is n't nearly as terrible as it cold have been 1 +135424 7314 Resurrection is n't exactly quality cinema , but 1 +135425 7314 Resurrection is n't exactly quality cinema , 1 +135426 7314 Resurrection is n't exactly quality cinema 1 +135427 7314 is n't exactly quality cinema 1 +135428 7314 quality cinema 4 +135429 7314 it is n't nearly as terrible as it cold have been 1 +135430 7314 is n't nearly as terrible as it cold have been 2 +135431 7314 is n't nearly as terrible 2 +135432 7314 nearly as terrible 2 +135433 7314 as terrible 0 +135434 7314 as it cold have been 2 +135435 7314 it cold have been 2 +135436 7314 cold have been 1 +135437 7315 It 's a thin notion , repetitively stretched out to feature length , awash in self-consciously flashy camera effects , droning house music and flat , flat dialogue . 1 +135438 7315 It 's a thin notion 1 +135439 7315 's a thin notion 2 +135440 7315 a thin notion 1 +135441 7315 thin notion 1 +135442 7315 , repetitively stretched out to feature length , awash in self-consciously flashy camera effects , droning house music and flat , flat dialogue . 0 +135443 7315 repetitively stretched out to feature length , awash in self-consciously flashy camera effects , droning house music and flat , flat dialogue . 1 +135444 7315 repetitively stretched out to feature length , awash in self-consciously flashy camera effects , droning house music and flat , flat dialogue 0 +135445 7315 repetitively stretched out to feature 2 +135446 7315 repetitively 1 +135447 7315 stretched out to feature 1 +135448 7315 to feature 2 +135449 7315 length , awash in self-consciously flashy camera effects , droning house music and flat , flat dialogue 0 +135450 7315 length , 2 +135451 7315 awash in self-consciously flashy camera effects , droning house music and flat , flat dialogue 1 +135452 7315 awash 2 +135453 7315 in self-consciously flashy camera effects , droning house music and flat , flat dialogue 1 +135454 7315 self-consciously flashy camera effects , droning house music and flat , flat dialogue 0 +135455 7315 self-consciously flashy camera effects , droning house music and 1 +135456 7315 self-consciously flashy camera effects , droning house music 1 +135457 7315 self-consciously flashy camera effects , 2 +135458 7315 self-consciously flashy camera effects 1 +135459 7315 flashy camera effects 2 +135460 7315 camera effects 2 +135461 7315 droning house music 1 +135462 7315 droning 1 +135463 7315 house music 2 +135464 7315 flat , flat dialogue 0 +135465 7315 , flat dialogue 1 +135466 7316 As his circle of friends keeps getting smaller one of the characters in Long Time Dead says ` I 'm telling you , this is f \*\*\* ed ' . 2 +135467 7316 As his circle of friends keeps getting smaller one of the characters in Long Time Dead 2 +135468 7316 his circle of friends keeps getting smaller one of the characters in Long Time Dead 2 +135469 7316 his circle of friends 2 +135470 7316 his circle 2 +135471 7316 of friends 2 +135472 7316 keeps getting smaller one of the characters in Long Time Dead 2 +135473 7316 getting smaller one of the characters in Long Time Dead 2 +135474 7316 smaller one of the characters in Long Time Dead 2 +135475 7316 smaller one 2 +135476 7316 of the characters in Long Time Dead 2 +135477 7316 the characters in Long Time Dead 2 +135478 7316 in Long Time Dead 2 +135479 7316 Long Time Dead 2 +135480 7316 Time Dead 2 +135481 7316 says ` I 'm telling you , this is f \*\*\* ed ' . 1 +135482 7316 says ` I 'm telling you , this is f \*\*\* ed ' 1 +135483 7316 says ` I 'm telling you , this is f \*\*\* ed 0 +135484 7316 says ` 2 +135485 7316 I 'm telling you , this is f \*\*\* ed 1 +135486 7316 I 'm telling you , 2 +135487 7316 I 'm telling you 2 +135488 7316 'm telling you 2 +135489 7316 telling you 2 +135490 7316 this is f \*\*\* ed 0 +135491 7316 is f \*\*\* ed 0 +135492 7316 f \*\*\* ed 0 +135493 7316 \*\*\* ed 2 +135494 7317 Worth a look as a curiosity . 3 +135495 7317 Worth a look as a curiosity 3 +135496 7317 a look as a curiosity 2 +135497 7317 as a curiosity 2 +135498 7318 It 's a Frankenstein-monster of a film that does n't know what it wants to be . 1 +135499 7318 's a Frankenstein-monster of a film that does n't know what it wants to be . 1 +135500 7318 's a Frankenstein-monster of a film that does n't know what it wants to be 1 +135501 7318 a Frankenstein-monster of a film that does n't know what it wants to be 2 +135502 7318 a Frankenstein-monster 2 +135503 7318 Frankenstein-monster 2 +135504 7318 of a film that does n't know what it wants to be 0 +135505 7318 a film that does n't know what it wants to be 2 +135506 7318 that does n't know what it wants to be 2 +135507 7318 does n't know what it wants to be 1 +135508 7318 know what it wants to be 3 +135509 7318 what it wants to be 2 +135510 7319 Super Troopers is an odd amalgam of comedy genres , existing somewhere between the often literal riffs of early Zucker Brothers\/Abrahams films , and the decidedly foul stylings of their post-modern contemporaries , The Farrelly Brothers . 2 +135511 7319 is an odd amalgam of comedy genres , existing somewhere between the often literal riffs of early Zucker Brothers\/Abrahams films , and the decidedly foul stylings of their post-modern contemporaries , The Farrelly Brothers . 2 +135512 7319 is an odd amalgam of comedy genres , existing somewhere between the often literal riffs of early Zucker Brothers\/Abrahams films , and the decidedly foul stylings of their post-modern contemporaries , The Farrelly Brothers 3 +135513 7319 an odd amalgam of comedy genres , existing somewhere between the often literal riffs of early Zucker Brothers\/Abrahams films , and the decidedly foul stylings of their post-modern contemporaries , The Farrelly Brothers 2 +135514 7319 an odd amalgam of comedy genres , existing somewhere between the often literal riffs of early Zucker Brothers\/Abrahams films , and 3 +135515 7319 an odd amalgam of comedy genres , existing somewhere between the often literal riffs of early Zucker Brothers\/Abrahams films , 2 +135516 7319 an odd amalgam of comedy genres , existing somewhere between the often literal riffs of early Zucker Brothers\/Abrahams films 2 +135517 7319 an odd amalgam of comedy genres , 2 +135518 7319 an odd amalgam of comedy genres 2 +135519 7319 an odd amalgam 2 +135520 7319 odd amalgam 2 +135521 7319 of comedy genres 2 +135522 7319 comedy genres 2 +135523 7319 existing somewhere between the often literal riffs of early Zucker Brothers\/Abrahams films 2 +135524 7319 somewhere between the often literal riffs of early Zucker Brothers\/Abrahams films 2 +135525 7319 between the often literal riffs of early Zucker Brothers\/Abrahams films 2 +135526 7319 the often literal riffs of early Zucker Brothers\/Abrahams films 2 +135527 7319 the often literal riffs 2 +135528 7319 often literal riffs 2 +135529 7319 literal riffs 2 +135530 7319 of early Zucker Brothers\/Abrahams films 2 +135531 7319 early Zucker Brothers\/Abrahams films 2 +135532 7319 Zucker Brothers\/Abrahams films 2 +135533 7319 Zucker 2 +135534 7319 Brothers\/Abrahams films 2 +135535 7319 Brothers\/Abrahams 2 +135536 7319 the decidedly foul stylings of their post-modern contemporaries , The Farrelly Brothers 2 +135537 7319 the decidedly foul stylings 1 +135538 7319 decidedly foul stylings 1 +135539 7319 decidedly foul 1 +135540 7319 of their post-modern contemporaries , The Farrelly Brothers 2 +135541 7319 their post-modern contemporaries , The Farrelly Brothers 2 +135542 7319 their post-modern contemporaries , 2 +135543 7319 their post-modern contemporaries 2 +135544 7319 post-modern contemporaries 2 +135545 7319 post-modern 2 +135546 7320 There 's nothing to gain from watching They . 0 +135547 7320 's nothing to gain from watching They . 2 +135548 7320 's nothing to gain from watching They 1 +135549 7320 nothing to gain from watching They 0 +135550 7320 to gain from watching They 2 +135551 7320 gain from watching They 3 +135552 7320 from watching They 2 +135553 7320 watching They 2 +135554 7321 The all-French cast is marveilleux . 4 +135555 7321 The all-French cast 2 +135556 7321 all-French cast 2 +135557 7321 all-French 2 +135558 7321 is marveilleux . 3 +135559 7321 is marveilleux 3 +135560 7321 marveilleux 3 +135561 7322 Worse than ` Silence of the Lambs ' better than ` Hannibal ' 2 +135562 7322 than ` Silence of the Lambs ' better than ` Hannibal ' 2 +135563 7322 ` Silence of the Lambs ' better than ` Hannibal ' 3 +135564 7322 ` Silence of the Lambs ' 2 +135565 7322 Silence of the Lambs ' 2 +135566 7322 better than ` Hannibal ' 2 +135567 7322 ` Hannibal ' 2 +135568 7322 Hannibal ' 2 +135569 7323 It 's not just the vampires that are damned in Queen of the Damned -- the viewers will feel they suffer the same fate . 0 +135570 7323 It 's not just the vampires that are damned in Queen of the Damned -- the viewers will feel they suffer the same fate 1 +135571 7323 It 's not just the vampires that are damned in Queen of the Damned -- 1 +135572 7323 It 's not just the vampires that are damned in Queen of the Damned 0 +135573 7323 's not just the vampires that are damned in Queen of the Damned 1 +135574 7323 just the vampires that are damned in Queen of the Damned 2 +135575 7323 just the vampires 2 +135576 7323 the vampires 3 +135577 7323 that are damned in Queen of the Damned 1 +135578 7323 are damned in Queen of the Damned 2 +135579 7323 damned in Queen of the Damned 1 +135580 7323 in Queen of the Damned 2 +135581 7323 the viewers will feel they suffer the same fate 1 +135582 7323 will feel they suffer the same fate 2 +135583 7323 feel they suffer the same fate 2 +135584 7323 they suffer the same fate 2 +135585 7323 suffer the same fate 1 +135586 7323 the same fate 2 +135587 7323 same fate 2 +135588 7324 `` Looking For Leonard '' just seems to kinda sit in neutral , hoping for a stiff wind to blow it uphill or something . 1 +135589 7324 `` Looking For Leonard '' just seems to kinda 2 +135590 7324 Looking For Leonard '' just seems to kinda 2 +135591 7324 '' just seems to kinda 2 +135592 7324 just seems to kinda 2 +135593 7324 seems to kinda 2 +135594 7324 to kinda 2 +135595 7324 sit in neutral , hoping for a stiff wind to blow it uphill or something . 2 +135596 7324 sit in neutral , hoping for a stiff wind to blow it uphill or something 2 +135597 7324 sit in neutral , hoping for a stiff wind to blow it 1 +135598 7324 sit in neutral , 2 +135599 7324 sit in neutral 1 +135600 7324 hoping for a stiff wind to blow it 2 +135601 7324 hoping for a stiff wind 1 +135602 7324 for a stiff wind 2 +135603 7324 a stiff wind 2 +135604 7324 stiff wind 2 +135605 7324 to blow it 1 +135606 7324 uphill or something 3 +135607 7324 uphill or 2 +135608 7324 uphill 2 +135609 7326 But believe it or not , it 's one of the most beautiful , evocative works I 've seen . 4 +135610 7326 But believe it or not 2 +135611 7326 , it 's one of the most beautiful , evocative works I 've seen . 4 +135612 7326 it 's one of the most beautiful , evocative works I 've seen . 4 +135613 7326 's one of the most beautiful , evocative works I 've seen . 4 +135614 7326 's one of the most beautiful , evocative works I 've seen 4 +135615 7326 one of the most beautiful , evocative works I 've seen 4 +135616 7326 of the most beautiful , evocative works I 've seen 4 +135617 7326 the most beautiful , evocative works I 've seen 4 +135618 7326 the most beautiful , evocative works 4 +135619 7326 most beautiful , evocative works 4 +135620 7326 most beautiful , evocative 4 +135621 7326 beautiful , evocative 4 +135622 7326 , evocative 3 +135623 7326 I 've seen 2 +135624 7326 've seen 2 +135625 7327 While American Adobo has its heart -LRB- and its palate -RRB- in the right place , its brain is a little scattered -- ditsy , even . 1 +135626 7327 While American Adobo has its heart -LRB- and its palate -RRB- in the right place 3 +135627 7327 American Adobo has its heart -LRB- and its palate -RRB- in the right place 4 +135628 7327 American Adobo 2 +135629 7327 Adobo 3 +135630 7327 has its heart -LRB- and its palate -RRB- in the right place 3 +135631 7327 has its heart -LRB- and its palate -RRB- 3 +135632 7327 has its heart 3 +135633 7327 -LRB- and its palate -RRB- 1 +135634 7327 and its palate -RRB- 2 +135635 7327 and its palate 2 +135636 7327 its palate 2 +135637 7327 palate 2 +135638 7327 , its brain is a little scattered -- ditsy , even . 1 +135639 7327 its brain is a little scattered -- ditsy , even . 1 +135640 7327 its brain 2 +135641 7327 is a little scattered -- ditsy , even . 1 +135642 7327 is a little scattered -- ditsy , even 2 +135643 7327 is a little scattered -- ditsy , 1 +135644 7327 is a little scattered -- ditsy 1 +135645 7327 a little scattered -- ditsy 1 +135646 7327 a little scattered -- 2 +135647 7327 a little scattered 1 +135648 7328 There 's a reason the studio did n't offer an advance screening . 1 +135649 7328 's a reason the studio did n't offer an advance screening . 0 +135650 7328 's a reason the studio did n't offer an advance screening 1 +135651 7328 a reason the studio did n't offer an advance screening 1 +135652 7328 the studio did n't offer an advance screening 2 +135653 7328 did n't offer an advance screening 1 +135654 7328 offer an advance screening 2 +135655 7328 an advance screening 2 +135656 7328 advance screening 2 +135657 7329 And there 's the inimitable Diaz , holding it all together . 3 +135658 7329 there 's the inimitable Diaz , holding it all together . 3 +135659 7329 's the inimitable Diaz , holding it all together . 3 +135660 7329 's the inimitable Diaz , holding it all together 2 +135661 7329 's the inimitable Diaz , 2 +135662 7329 's the inimitable Diaz 3 +135663 7329 the inimitable Diaz 2 +135664 7329 inimitable Diaz 3 +135665 7329 holding it all together 2 +135666 7329 holding it 2 +135667 7329 all together 2 +135668 7330 makes sense , 2 +135669 7331 Not everything in the film works , including its somewhat convenient ending . 2 +135670 7331 Not everything in the film 2 +135671 7331 works , including its somewhat convenient ending . 3 +135672 7331 works , including its somewhat convenient ending 3 +135673 7331 works , 2 +135674 7331 including its somewhat convenient ending 2 +135675 7331 its somewhat convenient ending 2 +135676 7331 somewhat convenient ending 2 +135677 7331 somewhat convenient 2 +135678 7332 The word that comes to mind , while watching Eric Rohmer 's tribute to a courageous Scottish lady , is painterly . 3 +135679 7332 The word that comes to mind , while watching Eric Rohmer 's tribute to a courageous Scottish lady 3 +135680 7332 that comes to mind , while watching Eric Rohmer 's tribute to a courageous Scottish lady 3 +135681 7332 comes to mind , while watching Eric Rohmer 's tribute to a courageous Scottish lady 2 +135682 7332 to mind , while watching Eric Rohmer 's tribute to a courageous Scottish lady 3 +135683 7332 mind , while watching Eric Rohmer 's tribute to a courageous Scottish lady 3 +135684 7332 mind , while watching Eric Rohmer 's tribute 3 +135685 7332 , while watching Eric Rohmer 's tribute 2 +135686 7332 while watching Eric Rohmer 's tribute 2 +135687 7332 watching Eric Rohmer 's tribute 2 +135688 7332 Eric Rohmer 's tribute 2 +135689 7332 Eric Rohmer 's 2 +135690 7332 to a courageous Scottish lady 2 +135691 7332 a courageous Scottish lady 3 +135692 7332 courageous Scottish lady 3 +135693 7332 Scottish lady 2 +135694 7332 , is painterly . 1 +135695 7332 is painterly . 3 +135696 7332 is painterly 3 +135697 7333 It may not be as cutting , as witty or as true as back in the glory days of Weekend and Two or Three Things I Know About Her , but who else engaged in filmmaking today is so cognizant of the cultural and moral issues involved in the process ? 2 +135698 7333 may not be as cutting , as witty or as true as back in the glory days of Weekend and Two or Three Things I Know About Her , but who else engaged in filmmaking today is so cognizant of the cultural and moral issues involved in the process ? 3 +135699 7333 may not be as cutting , as witty or as true as back in the glory days of Weekend and Two or Three Things I Know About Her , but who else engaged in filmmaking today is so cognizant of the cultural and moral issues involved in the process 2 +135700 7333 be as cutting , as witty or as true as back in the glory days of Weekend and Two or Three Things I Know About Her , but who else engaged in filmmaking today is so cognizant of the cultural and moral issues involved in the process 2 +135701 7333 be as cutting , as witty or as true as back in the glory days of Weekend and Two or Three Things 2 +135702 7333 be as cutting , as witty or as true as back 3 +135703 7333 as cutting , as witty or as true as back 3 +135704 7333 as cutting , as witty or as true 2 +135705 7333 as cutting , as witty or 3 +135706 7333 as cutting , as witty 3 +135707 7333 as cutting , 2 +135708 7333 as cutting 2 +135709 7333 as witty 3 +135710 7333 as true 2 +135711 7333 as back 2 +135712 7333 in the glory days of Weekend and Two or Three Things 2 +135713 7333 the glory days of Weekend and Two or Three Things 3 +135714 7333 the glory days of Weekend and 2 +135715 7333 the glory days of Weekend 2 +135716 7333 the glory days 2 +135717 7333 of Weekend 2 +135718 7333 Two or Three Things 2 +135719 7333 Two or 2 +135720 7333 Three Things 2 +135721 7333 I Know About Her , but who else engaged in filmmaking today is so cognizant of the cultural and moral issues involved in the process 1 +135722 7333 I Know About Her , but 2 +135723 7333 I Know About Her , 2 +135724 7333 I Know About Her 2 +135725 7333 Know About Her 2 +135726 7333 About Her 2 +135727 7333 who else engaged in filmmaking today is so cognizant of the cultural and moral issues involved in the process 2 +135728 7333 else engaged in filmmaking today is so cognizant of the cultural and moral issues involved in the process 2 +135729 7333 engaged in filmmaking today is so cognizant of the cultural and moral issues involved in the process 2 +135730 7333 in filmmaking today is so cognizant of the cultural and moral issues involved in the process 2 +135731 7333 filmmaking today is so cognizant of the cultural and moral issues involved in the process 2 +135732 7333 today is so cognizant of the cultural and moral issues involved in the process 2 +135733 7333 is so cognizant of the cultural and moral issues involved in the process 3 +135734 7333 so cognizant of the cultural and moral issues involved in the process 3 +135735 7333 cognizant of the cultural and moral issues involved in the process 2 +135736 7333 cognizant 2 +135737 7333 of the cultural and moral issues involved in the process 2 +135738 7333 the cultural and moral issues involved in the process 2 +135739 7333 the cultural and moral issues 2 +135740 7333 cultural and moral issues 2 +135741 7333 cultural and moral 2 +135742 7333 involved in the process 2 +135743 7334 Tully is in many ways the perfect festival film : a calm , self-assured portrait of small town regret , love , duty and friendship that appeals to the storytelling instincts of a slightly more literate filmgoing audience . 4 +135744 7334 Tully 2 +135745 7334 is in many ways the perfect festival film : a calm , self-assured portrait of small town regret , love , duty and friendship that appeals to the storytelling instincts of a slightly more literate filmgoing audience . 3 +135746 7334 is in many ways the perfect festival film : a calm , self-assured portrait of small town regret , love , duty and friendship that appeals to the storytelling instincts of a slightly more literate filmgoing audience 4 +135747 7334 in many ways the perfect festival film : a calm , self-assured portrait of small town regret , love , duty and friendship that appeals to the storytelling instincts of a slightly more literate filmgoing audience 4 +135748 7334 many ways the perfect festival film : a calm , self-assured portrait of small town regret , love , duty and friendship that appeals to the storytelling instincts of a slightly more literate filmgoing audience 4 +135749 7334 many ways the perfect festival film : 4 +135750 7334 many ways the perfect festival film 3 +135751 7334 the perfect festival film 3 +135752 7334 perfect festival film 3 +135753 7334 a calm , self-assured portrait of small town regret , love , duty and friendship that appeals to the storytelling instincts of a slightly more literate filmgoing audience 3 +135754 7334 a calm , self-assured portrait of small town regret , love , duty and friendship 3 +135755 7334 a calm , self-assured portrait 3 +135756 7334 calm , self-assured portrait 3 +135757 7334 calm , self-assured 2 +135758 7334 , self-assured 3 +135759 7334 self-assured 2 +135760 7334 of small town regret , love , duty and friendship 3 +135761 7334 small town regret , love , duty and friendship 2 +135762 7334 town regret , love , duty and friendship 2 +135763 7334 regret , love , duty and friendship 3 +135764 7334 , love , duty and friendship 3 +135765 7334 love , duty and friendship 3 +135766 7334 , duty and friendship 3 +135767 7334 duty and friendship 2 +135768 7334 that appeals to the storytelling instincts of a slightly more literate filmgoing audience 3 +135769 7334 appeals to the storytelling instincts of a slightly more literate filmgoing audience 3 +135770 7334 to the storytelling instincts of a slightly more literate filmgoing audience 3 +135771 7334 the storytelling instincts of a slightly more literate filmgoing audience 3 +135772 7334 the storytelling instincts 2 +135773 7334 storytelling instincts 2 +135774 7334 of a slightly more literate filmgoing audience 3 +135775 7334 a slightly more literate filmgoing audience 2 +135776 7334 slightly more literate filmgoing audience 2 +135777 7334 slightly more literate 2 +135778 7334 more literate 2 +135779 7334 filmgoing audience 2 +135780 7334 filmgoing 2 +135781 7335 Nakata 's technique is to imply terror by suggestion , rather than the overuse of special effects . 3 +135782 7335 Nakata 's technique 2 +135783 7335 Nakata 's 2 +135784 7335 is to imply terror by suggestion , rather than the overuse of special effects . 3 +135785 7335 is to imply terror by suggestion , rather than the overuse of special effects 4 +135786 7335 to imply terror by suggestion , rather than the overuse of special effects 2 +135787 7335 imply terror by suggestion , rather than the overuse of special effects 3 +135788 7335 terror by suggestion , rather than the overuse of special effects 3 +135789 7335 terror by suggestion , rather than 2 +135790 7335 terror by suggestion , 2 +135791 7335 terror by suggestion 2 +135792 7335 by suggestion 2 +135793 7335 the overuse of special effects 1 +135794 7335 the overuse 2 +135795 7335 overuse 1 +135796 7336 If I have to choose between gorgeous animation and a lame story -LRB- like , say , Treasure Planet -RRB- or so-so animation and an exciting , clever story with a batch of appealing characters , I 'll take the latter every time . 2 +135797 7336 If I have to choose between gorgeous animation and a lame story -LRB- like , say , Treasure Planet -RRB- or so-so animation and an exciting , clever story with a batch of appealing characters 3 +135798 7336 I have to choose between gorgeous animation and a lame story -LRB- like , say , Treasure Planet -RRB- or so-so animation and an exciting , clever story with a batch of appealing characters 2 +135799 7336 have to choose between gorgeous animation and a lame story -LRB- like , say , Treasure Planet -RRB- or so-so animation and an exciting , clever story with a batch of appealing characters 2 +135800 7336 to choose between gorgeous animation and a lame story -LRB- like , say , Treasure Planet -RRB- or so-so animation and an exciting , clever story with a batch of appealing characters 2 +135801 7336 choose between gorgeous animation and a lame story -LRB- like , say , Treasure Planet -RRB- or so-so animation and an exciting , clever story with a batch of appealing characters 2 +135802 7336 between gorgeous animation and a lame story -LRB- like , say , Treasure Planet -RRB- or so-so animation and an exciting , clever story with a batch of appealing characters 2 +135803 7336 gorgeous animation and a lame story -LRB- like , say , Treasure Planet -RRB- or so-so animation and an exciting , clever story with a batch of appealing characters 2 +135804 7336 gorgeous animation and a lame story -LRB- like , say , Treasure Planet -RRB- or 2 +135805 7336 gorgeous animation and a lame story -LRB- like , say , Treasure Planet -RRB- 1 +135806 7336 gorgeous animation and a lame story 2 +135807 7336 gorgeous animation and 3 +135808 7336 gorgeous animation 3 +135809 7336 a lame story 1 +135810 7336 lame story 0 +135811 7336 -LRB- like , say , Treasure Planet -RRB- 2 +135812 7336 like , say , Treasure Planet -RRB- 2 +135813 7336 like , say , Treasure Planet 2 +135814 7336 like , say , 2 +135815 7336 like , say 2 +135816 7336 like , 2 +135817 7336 so-so animation and an exciting , clever story with a batch of appealing characters 3 +135818 7336 so-so animation and 2 +135819 7336 so-so animation 1 +135820 7336 an exciting , clever story with a batch of appealing characters 3 +135821 7336 an exciting , clever story 4 +135822 7336 exciting , clever story 3 +135823 7336 exciting , clever 4 +135824 7336 with a batch of appealing characters 3 +135825 7336 a batch of appealing characters 3 +135826 7336 a batch 2 +135827 7336 of appealing characters 3 +135828 7336 appealing characters 3 +135829 7336 , I 'll take the latter every time . 2 +135830 7336 I 'll take the latter every time . 2 +135831 7336 'll take the latter every time . 2 +135832 7336 'll take the latter every time 3 +135833 7336 take the latter every time 2 +135834 7336 take the latter 2 +135835 7337 For every articulate player , such as skateboarder Tony Hawk or BMX rider Mat Hoffman , are about a half dozen young Turks angling to see how many times they can work the words `` radical '' or `` suck '' into a sentence . 1 +135836 7337 For every articulate player 2 +135837 7337 every articulate player 3 +135838 7337 articulate player 2 +135839 7337 , such as skateboarder Tony Hawk or BMX rider Mat Hoffman , are about a half dozen young Turks angling to see how many times they can work the words `` radical '' or `` suck '' into a sentence . 2 +135840 7337 such as skateboarder Tony Hawk or BMX rider Mat Hoffman , are about a half dozen young Turks angling to see how many times they can work the words `` radical '' or `` suck '' into a sentence . 1 +135841 7337 such as skateboarder Tony Hawk or BMX rider Mat Hoffman 2 +135842 7337 as skateboarder Tony Hawk or BMX rider Mat Hoffman 2 +135843 7337 skateboarder Tony Hawk or BMX rider Mat Hoffman 2 +135844 7337 skateboarder Tony Hawk or 2 +135845 7337 skateboarder Tony Hawk 2 +135846 7337 skateboarder 2 +135847 7337 Tony Hawk 2 +135848 7337 BMX rider Mat Hoffman 2 +135849 7337 BMX 2 +135850 7337 rider Mat Hoffman 2 +135851 7337 rider 2 +135852 7337 Mat Hoffman 2 +135853 7337 Mat 2 +135854 7337 , are about a half dozen young Turks angling to see how many times they can work the words `` radical '' or `` suck '' into a sentence . 1 +135855 7337 are about a half dozen young Turks angling to see how many times they can work the words `` radical '' or `` suck '' into a sentence . 1 +135856 7337 are about a half dozen young Turks angling to see how many times they can work the words `` radical '' or `` suck '' into a sentence 1 +135857 7337 are about a half dozen young Turks 2 +135858 7337 about a half dozen young Turks 2 +135859 7337 a half dozen young Turks 2 +135860 7337 young Turks 2 +135861 7337 Turks 2 +135862 7337 angling to see how many times they can work the words `` radical '' or `` suck '' into a sentence 0 +135863 7337 angling 2 +135864 7337 to see how many times they can work the words `` radical '' or `` suck '' into a sentence 1 +135865 7337 see how many times they can work the words `` radical '' or `` suck '' into a sentence 1 +135866 7337 how many times they can work the words `` radical '' or `` suck '' into a sentence 1 +135867 7337 they can work the words `` radical '' or `` suck '' into a sentence 2 +135868 7337 can work the words `` radical '' or `` suck '' into a sentence 2 +135869 7337 work the words `` radical '' or `` suck '' into a sentence 2 +135870 7337 work the words `` radical '' or `` suck '' 0 +135871 7337 the words `` radical '' or `` suck '' 1 +135872 7337 `` radical '' or `` suck '' 1 +135873 7337 radical '' or `` suck '' 1 +135874 7337 '' or `` suck '' 1 +135875 7337 or `` suck '' 1 +135876 7337 `` suck '' 1 +135877 7337 suck '' 2 +135878 7337 into a sentence 2 +135879 7337 a sentence 2 +135880 7338 It 's a sight to behold . 2 +135881 7338 's a sight to behold . 3 +135882 7338 's a sight to behold 3 +135883 7338 a sight to behold 4 +135884 7338 sight to behold 2 +135885 7339 Excruciatingly unfunny and pitifully unromantic . 1 +135886 7339 Excruciatingly unfunny and pitifully unromantic 0 +135887 7339 Excruciatingly unfunny and 0 +135888 7339 Excruciatingly unfunny 0 +135889 7339 pitifully unromantic 0 +135890 7339 unromantic 1 +135891 7340 A wildly erratic drama with sequences that make you wince in embarrassment and others , thanks to the actors , that are quite touching . 3 +135892 7340 A wildly erratic drama with sequences that make you 2 +135893 7340 A wildly erratic drama 2 +135894 7340 wildly erratic drama 2 +135895 7340 wildly erratic 2 +135896 7340 with sequences that make you 2 +135897 7340 sequences that make you 2 +135898 7340 that make you 2 +135899 7340 wince in embarrassment and others , thanks to the actors , that are quite touching . 3 +135900 7340 wince in embarrassment and others , thanks to the actors , that are quite touching 2 +135901 7340 wince in embarrassment and others , thanks to the actors , 2 +135902 7340 wince in embarrassment and others , thanks to the actors 1 +135903 7340 wince in embarrassment and others , 0 +135904 7340 wince in embarrassment and others 2 +135905 7340 wince 2 +135906 7340 in embarrassment and others 2 +135907 7340 embarrassment and others 1 +135908 7340 embarrassment and 1 +135909 7340 thanks to the actors 3 +135910 7340 to the actors 2 +135911 7340 that are quite touching 4 +135912 7340 are quite touching 3 +135913 7340 quite touching 3 +135914 7341 A modest masterpiece . 3 +135915 7341 modest masterpiece . 4 +135916 7341 masterpiece . 4 +135917 7342 Be patient with the lovely Hush ! 3 +135918 7342 Be patient with the lovely Hush 3 +135919 7342 Be patient 2 +135920 7342 with the lovely Hush 3 +135921 7342 the lovely Hush 2 +135922 7342 lovely Hush 2 +135923 7342 Hush 2 +135924 7343 There are laughs aplenty , and , as a bonus , viewers do n't have to worry about being subjected to farts , urine , feces , semen , or any of the other foul substances that have overrun modern-day comedies . 3 +135925 7343 There are laughs aplenty , and , as a bonus , viewers do n't have to worry about being subjected to farts , urine , feces , semen , or any of the other foul substances that have overrun modern-day comedies 4 +135926 7343 There are laughs aplenty , and , as a bonus , 4 +135927 7343 There are laughs aplenty , and 4 +135928 7343 There are laughs aplenty , 4 +135929 7343 There are laughs aplenty 3 +135930 7343 are laughs aplenty 3 +135931 7343 laughs aplenty 3 +135932 7343 , as a bonus , 2 +135933 7343 as a bonus , 2 +135934 7343 as a bonus 2 +135935 7343 a bonus 3 +135936 7343 viewers do n't have to worry about being subjected to farts , urine , feces , semen , or any of the other foul substances that have overrun modern-day comedies 3 +135937 7343 do n't have to worry about being subjected to farts , urine , feces , semen , or any of the other foul substances that have overrun modern-day comedies 2 +135938 7343 have to worry about being subjected to farts , urine , feces , semen , or any of the other foul substances that have overrun modern-day comedies 0 +135939 7343 have to worry about being subjected to farts , urine , feces , semen , or any of the other foul substances 1 +135940 7343 to worry about being subjected to farts , urine , feces , semen , or any of the other foul substances 1 +135941 7343 worry about being subjected to farts , urine , feces , semen , or any of the other foul substances 0 +135942 7343 about being subjected to farts , urine , feces , semen , or any of the other foul substances 1 +135943 7343 being subjected to farts , urine , feces , semen , or any of the other foul substances 1 +135944 7343 subjected to farts , urine , feces , semen , or any of the other foul substances 1 +135945 7343 subjected 2 +135946 7343 to farts , urine , feces , semen , or any of the other foul substances 0 +135947 7343 farts , urine , feces , semen , or any of the other foul substances 2 +135948 7343 farts , urine , feces , semen , or 1 +135949 7343 farts , urine , feces , semen , 2 +135950 7343 farts , urine , feces , semen 0 +135951 7343 farts , urine , feces , 1 +135952 7343 farts , urine , feces 1 +135953 7343 farts , urine , 1 +135954 7343 farts , urine 1 +135955 7343 farts , 2 +135956 7343 urine 2 +135957 7343 semen 2 +135958 7343 any of the other foul substances 2 +135959 7343 of the other foul substances 1 +135960 7343 the other foul substances 2 +135961 7343 other foul substances 1 +135962 7343 foul substances 1 +135963 7343 substances 2 +135964 7343 that have overrun modern-day comedies 2 +135965 7343 have overrun modern-day comedies 2 +135966 7343 overrun modern-day comedies 1 +135967 7343 modern-day comedies 3 +135968 7344 Beautifully crafted and cooly unsettling ... recreates the atmosphere of the crime expertly . 4 +135969 7344 Beautifully crafted and cooly unsettling ... recreates the atmosphere of the crime expertly 4 +135970 7344 Beautifully crafted and cooly unsettling ... recreates 4 +135971 7344 Beautifully crafted and cooly unsettling ... 4 +135972 7344 Beautifully crafted and cooly unsettling 4 +135973 7344 cooly unsettling 2 +135974 7344 cooly 2 +135975 7344 the atmosphere of the crime expertly 3 +135976 7344 the atmosphere 3 +135977 7344 of the crime expertly 2 +135978 7344 the crime expertly 2 +135979 7344 crime expertly 1 +135980 7345 Any rock pile will do for a set . 1 +135981 7345 Any rock pile 2 +135982 7345 rock pile 2 +135983 7345 will do for a set . 2 +135984 7345 will do for a set 2 +135985 7345 do for a set 2 +135986 7345 for a set 2 +135987 7346 I 'm left slightly disappointed that it did n't . 1 +135988 7346 'm left slightly disappointed that it did n't . 1 +135989 7346 'm left slightly disappointed that it did n't 1 +135990 7346 left slightly disappointed that it did n't 1 +135991 7346 left slightly disappointed 1 +135992 7346 slightly disappointed 1 +135993 7346 that it did n't 2 +135994 7346 it did n't 1 +135995 7347 The elements were all there but lack of a pyschological center knocks it flat . 1 +135996 7347 The elements were all there but lack of a pyschological center knocks it flat 1 +135997 7347 The elements were all there but 2 +135998 7347 The elements were all there 3 +135999 7347 were all there 2 +136000 7347 all there 2 +136001 7347 lack of a pyschological center knocks it flat 1 +136002 7347 lack of a pyschological center 2 +136003 7347 of a pyschological center 2 +136004 7347 a pyschological center 2 +136005 7347 pyschological center 2 +136006 7347 pyschological 2 +136007 7347 knocks it flat 1 +136008 7347 knocks 2 +136009 7347 it flat 2 +136010 7348 Where Bowling for Columbine is at its most valuable is in its examination of America 's culture of fear as a root cause of gun violence . 2 +136011 7348 Where Bowling for Columbine is at its most valuable 3 +136012 7348 Bowling for Columbine is at its most valuable 3 +136013 7348 Bowling for Columbine 2 +136014 7348 is at its most valuable 3 +136015 7348 is at its most 2 +136016 7348 at its most 2 +136017 7348 its most 2 +136018 7348 is in its examination of America 's culture of fear as a root cause of gun violence . 3 +136019 7348 is in its examination of America 's culture of fear as a root cause of gun violence 2 +136020 7348 is in its examination of America 's culture of fear 2 +136021 7348 in its examination of America 's culture of fear 2 +136022 7348 its examination of America 's culture of fear 2 +136023 7348 its examination 2 +136024 7348 of America 's culture of fear 2 +136025 7348 America 's culture of fear 1 +136026 7348 America 's culture 2 +136027 7348 of fear 2 +136028 7348 as a root cause of gun violence 1 +136029 7348 a root cause of gun violence 2 +136030 7348 a root cause 2 +136031 7348 root cause 2 +136032 7348 of gun violence 1 +136033 7348 gun violence 2 +136034 7349 Though the story ... is hackneyed , the characters have a freshness and modesty that transcends their predicament . 3 +136035 7349 Though the story ... is hackneyed 1 +136036 7349 the story ... is hackneyed 1 +136037 7349 ... is hackneyed 2 +136038 7349 is hackneyed 2 +136039 7349 , the characters have a freshness and modesty that transcends their predicament . 4 +136040 7349 the characters have a freshness and modesty that transcends their predicament . 4 +136041 7349 have a freshness and modesty that transcends their predicament . 4 +136042 7349 have a freshness and modesty that transcends their predicament 3 +136043 7349 a freshness and modesty that transcends their predicament 2 +136044 7349 a freshness and modesty 3 +136045 7349 freshness and modesty 3 +136046 7349 that transcends their predicament 2 +136047 7349 transcends their predicament 3 +136048 7349 their predicament 2 +136049 7350 Often overwrought and at times positively irritating , the film turns into an engrossing thriller almost in spite of itself . 2 +136050 7350 Often overwrought and at times positively irritating 1 +136051 7350 Often overwrought and 1 +136052 7350 Often overwrought 1 +136053 7350 at times positively irritating 2 +136054 7350 times positively irritating 1 +136055 7350 positively irritating 2 +136056 7350 , the film turns into an engrossing thriller almost in spite of itself . 3 +136057 7350 the film turns into an engrossing thriller almost in spite of itself . 3 +136058 7350 turns into an engrossing thriller almost in spite of itself . 3 +136059 7350 turns into an engrossing thriller almost in spite of itself 3 +136060 7350 into an engrossing thriller almost in spite of itself 3 +136061 7350 an engrossing thriller almost in spite of itself 3 +136062 7350 an engrossing thriller 4 +136063 7350 engrossing thriller 3 +136064 7350 almost in spite of itself 2 +136065 7350 in spite of itself 2 +136066 7350 spite of itself 2 +136067 7351 A well paced and satisfying little drama that deserved better than a ` direct-to-video ' release . 4 +136068 7351 A well paced and satisfying little drama that deserved better than a ` direct-to-video ' release 3 +136069 7351 A well paced and satisfying little drama 3 +136070 7351 well paced and satisfying little drama 3 +136071 7351 well paced and satisfying 4 +136072 7351 paced and satisfying 3 +136073 7351 paced and 2 +136074 7351 little drama 2 +136075 7351 that deserved better than a ` direct-to-video ' release 4 +136076 7351 deserved better than a ` direct-to-video ' release 2 +136077 7351 than a ` direct-to-video ' release 1 +136078 7351 a ` direct-to-video ' release 1 +136079 7351 ` direct-to-video ' release 1 +136080 7351 direct-to-video ' release 1 +136081 7351 ' release 2 +136082 7352 In Moonlight Mile , no one gets shut out of the hug cycle . 2 +136083 7352 In Moonlight Mile 2 +136084 7352 , no one gets shut out of the hug cycle . 2 +136085 7352 no one gets shut out of the hug cycle . 2 +136086 7352 gets shut out of the hug cycle . 2 +136087 7352 gets shut out of the hug cycle 2 +136088 7352 shut out of the hug cycle 2 +136089 7352 shut out 1 +136090 7352 of the hug cycle 2 +136091 7352 the hug cycle 2 +136092 7352 hug cycle 2 +136093 7353 It can be safely recommended as a video\/DVD babysitter . 3 +136094 7353 can be safely recommended as a video\/DVD babysitter . 3 +136095 7353 can be safely recommended as a video\/DVD babysitter 2 +136096 7353 be safely recommended as a video\/DVD babysitter 2 +136097 7353 safely recommended as a video\/DVD babysitter 3 +136098 7353 safely 2 +136099 7353 recommended as a video\/DVD babysitter 2 +136100 7353 as a video\/DVD babysitter 2 +136101 7353 a video\/DVD babysitter 2 +136102 7353 video\/DVD babysitter 2 +136103 7353 video\/DVD 2 +136104 7353 babysitter 2 +136105 7354 A conventional but heartwarming tale . 4 +136106 7354 A conventional but heartwarming tale 3 +136107 7354 conventional but heartwarming tale 3 +136108 7354 conventional but heartwarming 3 +136109 7354 conventional but 2 +136110 7355 It is hard not to be especially grateful for freedom after a film like this . 3 +136111 7355 is hard not to be especially grateful for freedom after a film like this . 4 +136112 7355 is hard not to be especially grateful for freedom after a film like this 2 +136113 7355 is hard 2 +136114 7355 not to be especially grateful for freedom after a film like this 2 +136115 7355 to be especially grateful for freedom after a film like this 3 +136116 7355 be especially grateful for freedom after a film like this 3 +136117 7355 be especially grateful for freedom 2 +136118 7355 especially grateful for freedom 4 +136119 7355 grateful for freedom 2 +136120 7355 grateful 2 +136121 7355 for freedom 2 +136122 7355 after a film like this 2 +136123 7355 a film like this 2 +136124 7356 Woody Allen can write and deliver a one liner as well as anybody . 4 +136125 7356 can write and deliver a one liner as well as anybody . 3 +136126 7356 can write and deliver a one liner as well as anybody 3 +136127 7356 write and deliver a one liner as well as anybody 3 +136128 7356 write and deliver 2 +136129 7356 write and 2 +136130 7356 write 2 +136131 7356 a one liner as well as anybody 3 +136132 7356 a one liner as well as 2 +136133 7356 a one liner 2 +136134 7356 one liner 2 +136135 7356 liner 2 +136136 7357 I spied with my little eye ... a mediocre collection of cookie-cutter action scenes and occasionally inspired dialogue bits 1 +136137 7357 spied with my little eye ... a mediocre collection of cookie-cutter action scenes and occasionally inspired dialogue bits 2 +136138 7357 spied with my little eye ... a mediocre collection of cookie-cutter action scenes and 1 +136139 7357 spied with my little eye ... a mediocre collection of cookie-cutter action scenes 1 +136140 7357 spied with my little eye ... 2 +136141 7357 spied with my little eye 2 +136142 7357 spied 2 +136143 7357 with my little eye 2 +136144 7357 a mediocre collection of cookie-cutter action scenes 0 +136145 7357 a mediocre collection 2 +136146 7357 mediocre collection 2 +136147 7357 of cookie-cutter action scenes 1 +136148 7357 cookie-cutter action scenes 1 +136149 7357 cookie-cutter 2 +136150 7357 occasionally inspired dialogue bits 3 +136151 7357 inspired dialogue bits 3 +136152 7357 dialogue bits 2 +136153 7358 Blithely anachronistic and slyly achronological . 2 +136154 7358 Blithely anachronistic and slyly achronological 1 +136155 7358 Blithely anachronistic and 2 +136156 7358 Blithely anachronistic 3 +136157 7358 Blithely 3 +136158 7358 slyly achronological 2 +136159 7358 achronological 2 +136160 7359 A disappointment for a movie that should have been the ultimate IMAX trip . 1 +136161 7359 A disappointment for a movie that should have been the ultimate IMAX trip 0 +136162 7359 for a movie that should have been the ultimate IMAX trip 2 +136163 7359 a movie that should have been the ultimate IMAX trip 2 +136164 7359 that should have been the ultimate IMAX trip 3 +136165 7359 should have been the ultimate IMAX trip 3 +136166 7359 have been the ultimate IMAX trip 3 +136167 7359 been the ultimate IMAX trip 3 +136168 7359 the ultimate IMAX trip 3 +136169 7359 ultimate IMAX trip 4 +136170 7359 IMAX trip 3 +136171 7360 It turns out to be smarter and more diabolical than you could have guessed at the beginning . 4 +136172 7360 turns out to be smarter and more diabolical than you could have guessed at the beginning . 3 +136173 7360 turns out to be smarter and more diabolical than you could have guessed at the beginning 2 +136174 7360 to be smarter and more diabolical than you could have guessed at the beginning 4 +136175 7360 be smarter and more diabolical than you could have guessed at the beginning 3 +136176 7360 be smarter and more diabolical 3 +136177 7360 smarter and more diabolical 3 +136178 7360 than you could have guessed at the beginning 3 +136179 7360 you could have guessed at the beginning 2 +136180 7360 could have guessed at the beginning 1 +136181 7360 have guessed at the beginning 2 +136182 7360 guessed at the beginning 2 +136183 7360 at the beginning 2 +136184 7360 the beginning 2 +136185 7361 In terms of execution this movie is careless and unfocused . 0 +136186 7361 In terms of execution 2 +136187 7361 terms of execution 2 +136188 7361 of execution 2 +136189 7361 this movie is careless and unfocused . 1 +136190 7361 is careless and unfocused . 1 +136191 7361 is careless and unfocused 1 +136192 7361 careless and unfocused 0 +136193 7361 careless and 1 +136194 7361 careless 1 +136195 7362 Your nightmares , on the other hand , will be anything but . 2 +136196 7362 Your nightmares , on the other hand , 1 +136197 7362 Your nightmares , on the other hand 1 +136198 7362 Your nightmares , 2 +136199 7362 Your nightmares 1 +136200 7362 nightmares 1 +136201 7362 will be anything but . 2 +136202 7362 will be anything but 2 +136203 7362 be anything but 2 +136204 7362 be anything 3 +136205 7363 A slick , engrossing melodrama . 4 +136206 7363 A slick , engrossing melodrama 3 +136207 7363 A slick , 3 +136208 7363 A slick 2 +136209 7363 engrossing melodrama 3 +136210 7364 This picture is murder by numbers , and as easy to be bored by as your ABC 's , despite a few whopping shootouts . 0 +136211 7364 is murder by numbers , and as easy to be bored by as your ABC 's , despite a few whopping shootouts . 1 +136212 7364 is murder by numbers , and as easy to be bored by as your ABC 's , despite a few whopping shootouts 2 +136213 7364 is murder by numbers , and as easy to be bored by as your ABC 's , 1 +136214 7364 murder by numbers , and as easy to be bored by as your ABC 's , 0 +136215 7364 by numbers , and as easy to be bored by as your ABC 's , 1 +136216 7364 , and as easy to be bored by as your ABC 's , 1 +136217 7364 , and as easy to be bored by as your ABC 's 0 +136218 7364 as easy to be bored by as your ABC 's 1 +136219 7364 easy to be bored by as your ABC 's 1 +136220 7364 to be bored by as your ABC 's 1 +136221 7364 be bored by as your ABC 's 1 +136222 7364 bored by as your ABC 's 1 +136223 7364 by as your ABC 's 2 +136224 7364 as your ABC 's 2 +136225 7364 your ABC 's 2 +136226 7364 your ABC 2 +136227 7364 despite a few whopping shootouts 2 +136228 7364 a few whopping shootouts 2 +136229 7364 few whopping shootouts 2 +136230 7364 whopping shootouts 2 +136231 7364 whopping 2 +136232 7364 shootouts 2 +136233 7365 Some are fascinating and others are not , and in the end , it is almost a good movie . 2 +136234 7365 Some are fascinating and others are not , and in the end , it is almost a good movie 3 +136235 7365 Some are fascinating and others are not , and 2 +136236 7365 Some are fascinating and others are not , 2 +136237 7365 Some are fascinating and others are not 1 +136238 7365 Some are fascinating and 3 +136239 7365 Some are fascinating 3 +136240 7365 others are not 2 +136241 7365 in the end , it is almost a good movie 3 +136242 7365 , it is almost a good movie 2 +136243 7365 it is almost a good movie 2 +136244 7365 is almost a good movie 2 +136245 7365 almost a good movie 2 +136246 7366 Both flawed and delayed , Martin Scorcese 's Gangs of New York still emerges as his most vital work since GoodFellas . 2 +136247 7366 Both flawed and delayed 1 +136248 7366 flawed and delayed 0 +136249 7366 delayed 2 +136250 7366 , Martin Scorcese 's Gangs of New York still emerges as his most vital work since GoodFellas . 4 +136251 7366 Martin Scorcese 's Gangs of New York still emerges as his most vital work since GoodFellas . 3 +136252 7366 Martin Scorcese 's Gangs of New York 2 +136253 7366 Martin Scorcese 's Gangs 2 +136254 7366 Martin Scorcese 's 2 +136255 7366 Scorcese 's 2 +136256 7366 Scorcese 2 +136257 7366 still emerges as his most vital work since GoodFellas . 4 +136258 7366 emerges as his most vital work since GoodFellas . 4 +136259 7366 emerges as his most vital work since GoodFellas 4 +136260 7366 as his most vital work since GoodFellas 4 +136261 7366 his most vital work since GoodFellas 4 +136262 7366 his most vital work 3 +136263 7366 most vital work 3 +136264 7366 most vital 2 +136265 7366 since GoodFellas 2 +136266 7367 Entertaining despite its one-joke premise with the thesis that women from Venus and men from Mars can indeed get together . 2 +136267 7367 Entertaining despite its one-joke premise with the thesis that women from Venus and men from Mars can indeed get together 3 +136268 7367 Entertaining despite its one-joke premise with the thesis 3 +136269 7367 despite its one-joke premise with the thesis 2 +136270 7367 its one-joke premise with the thesis 1 +136271 7367 its one-joke premise 3 +136272 7367 one-joke premise 1 +136273 7367 one-joke 1 +136274 7367 with the thesis 2 +136275 7367 the thesis 2 +136276 7367 that women from Venus and men from Mars can indeed get together 2 +136277 7367 women from Venus and men from Mars can indeed get together 2 +136278 7367 women from Venus and men from Mars 2 +136279 7367 women from Venus and 2 +136280 7367 women from Venus 2 +136281 7367 from Venus 2 +136282 7367 Venus 2 +136283 7367 men from Mars 2 +136284 7367 from Mars 2 +136285 7367 can indeed get together 2 +136286 7367 can indeed 2 +136287 7367 get together 3 +136288 7368 A film that presents an interesting , even sexy premise then ruins itself with too many contrivances and goofy situations . 2 +136289 7368 A film that presents an interesting , even sexy premise 3 +136290 7368 that presents an interesting , even sexy premise 3 +136291 7368 presents an interesting , even sexy premise 3 +136292 7368 an interesting , even sexy premise 4 +136293 7368 interesting , even sexy premise 3 +136294 7368 interesting , even sexy 3 +136295 7368 , even sexy 2 +136296 7368 then ruins itself with too many contrivances and goofy situations . 1 +136297 7368 ruins itself with too many contrivances and goofy situations . 0 +136298 7368 ruins itself with too many contrivances and goofy situations 1 +136299 7368 ruins itself 1 +136300 7368 with too many contrivances and goofy situations 1 +136301 7368 too many contrivances and goofy situations 1 +136302 7368 too many contrivances and 1 +136303 7368 too many contrivances 1 +136304 7368 many contrivances 2 +136305 7368 goofy situations 2 +136306 7369 It 's sweet , funny , charming , and completely delightful . 4 +136307 7369 's sweet , funny , charming , and completely delightful . 4 +136308 7369 's sweet , funny , charming , and completely delightful 4 +136309 7369 sweet , funny , charming , and completely delightful 4 +136310 7369 sweet , funny , charming , and 4 +136311 7369 sweet , funny , charming , 3 +136312 7369 sweet , funny , charming 4 +136313 7369 sweet , funny , 3 +136314 7369 sweet , funny 3 +136315 7369 sweet , 4 +136316 7369 completely delightful 4 +136317 7370 A respectable venture on its own terms , lacking the broader vision that has seen certain Trek films ... cross over to a more mainstream audience . 2 +136318 7370 A respectable venture on its own terms , lacking the broader vision that has seen certain Trek films ... cross over to a more mainstream audience 2 +136319 7370 A respectable venture on its own terms , 3 +136320 7370 A respectable venture on its own terms 3 +136321 7370 A respectable venture 2 +136322 7370 respectable venture 2 +136323 7370 lacking the broader vision that has seen certain Trek films ... cross over to a more mainstream audience 2 +136324 7370 lacking the broader vision that has seen certain Trek films ... 1 +136325 7370 lacking the broader vision that has seen certain Trek films 1 +136326 7370 the broader vision that has seen certain Trek films 3 +136327 7370 the broader vision 2 +136328 7370 broader vision 3 +136329 7370 broader 2 +136330 7370 that has seen certain Trek films 2 +136331 7370 has seen certain Trek films 2 +136332 7370 seen certain Trek films 2 +136333 7370 certain Trek films 2 +136334 7370 Trek films 2 +136335 7370 cross over to a more mainstream audience 2 +136336 7370 cross over 2 +136337 7370 to a more mainstream audience 2 +136338 7370 a more mainstream audience 2 +136339 7370 more mainstream audience 2 +136340 7370 more mainstream 2 +136341 7371 A movie that both thrills the eye and , in its over-the-top way , touches the heart . 4 +136342 7371 that both thrills the eye and , in its over-the-top way , touches the heart . 3 +136343 7371 that both thrills the eye and , in its over-the-top way , touches the heart 3 +136344 7371 that both thrills the eye and , in its over-the-top way , 4 +136345 7371 that both thrills the eye and 3 +136346 7371 that both thrills the eye 3 +136347 7371 that both 2 +136348 7371 thrills the eye 3 +136349 7371 , in its over-the-top way , 2 +136350 7371 in its over-the-top way , 2 +136351 7371 in its over-the-top way 3 +136352 7371 its over-the-top way 2 +136353 7371 over-the-top way 2 +136354 7371 touches the heart 3 +136355 7372 Though it runs 163 minutes , Safe Conduct is anything but languorous . 3 +136356 7372 Though it runs 163 minutes 1 +136357 7372 it runs 163 minutes 2 +136358 7372 runs 163 minutes 1 +136359 7372 , Safe Conduct is anything but languorous . 2 +136360 7372 Safe Conduct is anything but languorous . 3 +136361 7372 is anything but languorous . 2 +136362 7372 is anything but languorous 3 +136363 7372 anything but languorous 2 +136364 7373 Sinks so low in a poorly played game of absurd plot twists , idiotic court maneuvers and stupid characters that even Freeman ca n't save it . 0 +136365 7373 so low in a poorly played game of absurd plot twists , idiotic court maneuvers and stupid characters that even Freeman ca n't save it . 2 +136366 7373 so low in a poorly 1 +136367 7373 in a poorly 1 +136368 7373 a poorly 2 +136369 7373 played game of absurd plot twists , idiotic court maneuvers and stupid characters that even Freeman ca n't save it . 0 +136370 7373 played game of absurd plot twists , idiotic court maneuvers and stupid characters that even Freeman ca n't save it 0 +136371 7373 played game of absurd plot twists , idiotic court maneuvers and stupid characters 1 +136372 7373 game of absurd plot twists , idiotic court maneuvers and stupid characters 0 +136373 7373 of absurd plot twists , idiotic court maneuvers and stupid characters 0 +136374 7373 absurd plot twists , idiotic court maneuvers and stupid characters 0 +136375 7373 absurd plot twists , idiotic court maneuvers and 1 +136376 7373 absurd plot twists , idiotic court maneuvers 0 +136377 7373 absurd plot twists , 1 +136378 7373 absurd plot twists 1 +136379 7373 idiotic court maneuvers 1 +136380 7373 court maneuvers 3 +136381 7373 maneuvers 2 +136382 7373 stupid characters 1 +136383 7373 that even Freeman ca n't save it 1 +136384 7373 Freeman ca n't save it 1 +136385 7373 ca n't save it 1 +136386 7374 A surprisingly charming and even witty match for the best of Hollywood 's comic-book adaptations . 3 +136387 7374 A surprisingly charming and even witty match for the best of Hollywood 's comic-book 3 +136388 7374 A surprisingly charming and even witty match 3 +136389 7374 surprisingly charming and even witty match 4 +136390 7374 surprisingly charming and even witty 4 +136391 7374 surprisingly charming and 3 +136392 7374 surprisingly charming 3 +136393 7374 even witty 3 +136394 7374 for the best of Hollywood 's comic-book 3 +136395 7374 the best of Hollywood 's comic-book 3 +136396 7374 of Hollywood 's comic-book 2 +136397 7374 Hollywood 's comic-book 2 +136398 7374 comic-book 2 +136399 7374 adaptations . 2 +136400 7375 Still , this flick is fun , and host to some truly excellent sequences . 4 +136401 7375 , this flick is fun , and host to some truly excellent sequences . 4 +136402 7375 this flick is fun , and host to some truly excellent sequences . 4 +136403 7375 this flick 2 +136404 7375 is fun , and host to some truly excellent sequences . 3 +136405 7375 is fun , and host to some truly excellent sequences 4 +136406 7375 fun , and host to some truly excellent sequences 4 +136407 7375 fun , and 3 +136408 7375 host to some truly excellent sequences 3 +136409 7375 to some truly excellent sequences 3 +136410 7375 some truly excellent sequences 3 +136411 7375 truly excellent sequences 4 +136412 7375 truly excellent 4 +136413 7376 Some of the visual flourishes are a little too obvious , but restrained and subtle storytelling , and fine performances make this delicate coming-of-age tale a treat . 4 +136414 7376 Some of the visual flourishes are a little too obvious , but restrained and subtle storytelling , and fine performances make this delicate coming-of-age tale a treat 4 +136415 7376 Some of the visual flourishes are a little too obvious , but restrained and subtle storytelling , and 2 +136416 7376 Some of the visual flourishes are a little too obvious , but restrained and subtle storytelling , 2 +136417 7376 Some of the visual flourishes are a little too obvious , but restrained and subtle storytelling 4 +136418 7376 Some of the visual flourishes 3 +136419 7376 of the visual flourishes 2 +136420 7376 the visual flourishes 3 +136421 7376 visual flourishes 3 +136422 7376 are a little too obvious , but restrained and subtle storytelling 2 +136423 7376 a little too obvious , but restrained and subtle storytelling 2 +136424 7376 little too obvious , but restrained and subtle storytelling 2 +136425 7376 little too obvious , but restrained and subtle 2 +136426 7376 little too obvious , but 1 +136427 7376 little too obvious , 1 +136428 7376 little too obvious 2 +136429 7376 restrained and subtle 3 +136430 7376 restrained and 1 +136431 7376 fine performances make this delicate coming-of-age tale a treat 4 +136432 7376 fine performances 4 +136433 7376 make this delicate coming-of-age tale a treat 3 +136434 7376 this delicate coming-of-age tale a treat 4 +136435 7376 this delicate coming-of-age tale 3 +136436 7376 delicate coming-of-age tale 3 +136437 7377 Those seeking a definitive account of Eisenstein 's life would do better elsewhere . 1 +136438 7377 Those seeking a definitive account of Eisenstein 's life 2 +136439 7377 seeking a definitive account of Eisenstein 's life 2 +136440 7377 a definitive account of Eisenstein 's life 3 +136441 7377 a definitive account 3 +136442 7377 definitive account 3 +136443 7377 of Eisenstein 's life 2 +136444 7377 Eisenstein 's life 2 +136445 7377 would do better elsewhere . 1 +136446 7377 would do better elsewhere 1 +136447 7377 do better elsewhere 1 +136448 7377 better elsewhere 1 +136449 7378 The casting of Raymond J. Barry as the ` assassin ' greatly enhances the quality of Neil Burger 's impressive fake documentary . 3 +136450 7378 The casting of Raymond J. Barry as the ` assassin ' 2 +136451 7378 of Raymond J. Barry as the ` assassin ' 2 +136452 7378 Raymond J. Barry as the ` assassin ' 2 +136453 7378 as the ` assassin ' 2 +136454 7378 the ` assassin ' 2 +136455 7378 ` assassin ' 2 +136456 7378 assassin ' 2 +136457 7378 greatly enhances the quality of Neil Burger 's impressive fake documentary . 3 +136458 7378 enhances the quality of Neil Burger 's impressive fake documentary . 3 +136459 7378 enhances the quality of Neil Burger 's impressive fake documentary 3 +136460 7378 the quality of Neil Burger 's impressive fake documentary 3 +136461 7378 of Neil Burger 's impressive fake documentary 3 +136462 7378 Neil Burger 's impressive fake documentary 3 +136463 7378 Neil Burger 's 2 +136464 7378 impressive fake documentary 3 +136465 7378 fake documentary 1 +136466 7379 The only thing to fear about `` Fear Dot Com '' is hitting your head on the theater seat in front of you when you doze off thirty minutes into the film . 0 +136467 7379 The only thing to fear about `` Fear Dot Com '' 2 +136468 7379 only thing to fear about `` Fear Dot Com '' 1 +136469 7379 thing to fear about `` Fear Dot Com '' 2 +136470 7379 to fear about `` Fear Dot Com '' 2 +136471 7379 fear about `` Fear Dot Com '' 2 +136472 7379 about `` Fear Dot Com '' 2 +136473 7379 about `` Fear Dot Com 2 +136474 7379 is hitting your head on the theater seat in front of you when you doze off thirty minutes into the film . 0 +136475 7379 is hitting your head on the theater seat in front of you when you doze off thirty minutes into the film 0 +136476 7379 hitting your head on the theater seat in front of you when you doze off thirty minutes into the film 0 +136477 7379 hitting your head on the theater seat in front of you 1 +136478 7379 hitting your head on the theater seat 1 +136479 7379 hitting your head 1 +136480 7379 on the theater seat 2 +136481 7379 the theater seat 2 +136482 7379 theater seat 2 +136483 7379 when you doze off thirty minutes into the film 0 +136484 7379 you doze off thirty minutes into the film 1 +136485 7379 doze off thirty minutes into the film 0 +136486 7379 doze off thirty minutes 1 +136487 7379 thirty minutes 2 +136488 7380 Affectionately reminds us that , in any language , the huge stuff in life can usually be traced back to the little things . 3 +136489 7380 reminds us that , in any language , the huge stuff in life can usually be traced back to the little things . 3 +136490 7380 reminds us that , in any language , the huge stuff in life can usually be traced back to the little things 3 +136491 7380 that , in any language , the huge stuff in life can usually be traced back to the little things 2 +136492 7380 , in any language , the huge stuff in life can usually be traced back to the little things 2 +136493 7380 , in any language , 2 +136494 7380 in any language , 2 +136495 7380 in any language 2 +136496 7380 any language 2 +136497 7380 the huge stuff in life can usually be traced back to the little things 3 +136498 7380 the huge stuff in life 2 +136499 7380 the huge stuff 2 +136500 7380 huge stuff 2 +136501 7380 can usually be traced back to the little things 3 +136502 7380 can usually 2 +136503 7380 be traced back to the little things 2 +136504 7380 traced back to the little things 2 +136505 7380 traced back 2 +136506 7380 traced 2 +136507 7380 to the little things 2 +136508 7381 Entirely appropriately , the tale unfolds like a lazy summer afternoon and concludes with the crisp clarity of a fall dawn . 3 +136509 7381 appropriately , the tale unfolds like a lazy summer afternoon and concludes with the crisp clarity of a fall dawn . 3 +136510 7381 , the tale unfolds like a lazy summer afternoon and concludes with the crisp clarity of a fall dawn . 3 +136511 7381 the tale unfolds like a lazy summer afternoon and concludes with the crisp clarity of a fall dawn . 2 +136512 7381 unfolds like a lazy summer afternoon and concludes with the crisp clarity of a fall dawn . 2 +136513 7381 unfolds like a lazy summer afternoon and concludes with the crisp clarity of a fall dawn 4 +136514 7381 unfolds like a lazy summer afternoon and 2 +136515 7381 unfolds like a lazy summer afternoon 2 +136516 7381 like a lazy summer afternoon 3 +136517 7381 a lazy summer afternoon 2 +136518 7381 lazy summer afternoon 2 +136519 7381 summer afternoon 2 +136520 7381 concludes with the crisp clarity of a fall dawn 3 +136521 7381 concludes 2 +136522 7381 with the crisp clarity of a fall dawn 3 +136523 7381 the crisp clarity of a fall dawn 3 +136524 7381 the crisp clarity 3 +136525 7381 crisp clarity 3 +136526 7381 of a fall dawn 2 +136527 7381 a fall dawn 2 +136528 7381 fall dawn 2 +136529 7381 dawn 2 +136530 7382 The Chateau ... is less concerned with cultural and political issues than doting on its eccentric characters . 1 +136531 7382 ... is less concerned with cultural and political issues than doting on its eccentric characters . 1 +136532 7382 is less concerned with cultural and political issues than doting on its eccentric characters . 1 +136533 7382 is less concerned with cultural and political issues than doting on its eccentric characters 2 +136534 7382 less concerned with cultural and political issues than doting on its eccentric characters 1 +136535 7382 less concerned with cultural and political issues 1 +136536 7382 concerned with cultural and political issues 2 +136537 7382 with cultural and political issues 2 +136538 7382 cultural and political issues 2 +136539 7382 and political issues 2 +136540 7382 political issues 2 +136541 7382 than doting on its eccentric characters 2 +136542 7382 doting on its eccentric characters 2 +136543 7382 doting 2 +136544 7382 on its eccentric characters 2 +136545 7382 its eccentric characters 2 +136546 7382 eccentric characters 2 +136547 7383 As is often the case with ambitious , eager first-time filmmakers , Mr. Murray , a prolific director of music videos , stuffs his debut with more plot than it can comfortably hold . 1 +136548 7383 As is often the case with ambitious , eager first-time filmmakers 2 +136549 7383 is often the case with ambitious , eager first-time filmmakers 2 +136550 7383 the case with ambitious , eager first-time filmmakers 1 +136551 7383 with ambitious , eager first-time filmmakers 3 +136552 7383 ambitious , eager first-time filmmakers 3 +136553 7383 ambitious , eager 3 +136554 7383 , eager 2 +136555 7383 first-time filmmakers 2 +136556 7383 , Mr. Murray , a prolific director of music videos , stuffs his debut with more plot than it can comfortably hold . 1 +136557 7383 Mr. Murray , a prolific director of music videos , stuffs his debut with more plot than it can comfortably hold . 1 +136558 7383 Mr. Murray , a prolific director of music videos , 2 +136559 7383 Mr. Murray , a prolific director of music videos 3 +136560 7383 Mr. Murray , 2 +136561 7383 Mr. Murray 2 +136562 7383 Murray 2 +136563 7383 a prolific director of music videos 3 +136564 7383 a prolific director 3 +136565 7383 prolific director 3 +136566 7383 prolific 2 +136567 7383 of music videos 2 +136568 7383 stuffs his debut with more plot than it can comfortably hold . 2 +136569 7383 stuffs his debut with more plot than it can comfortably hold 1 +136570 7383 stuffs his debut with more plot 2 +136571 7383 stuffs his debut 1 +136572 7383 stuffs 2 +136573 7383 with more plot 2 +136574 7383 more plot 3 +136575 7383 than it can comfortably hold 2 +136576 7383 it can comfortably hold 3 +136577 7383 can comfortably hold 3 +136578 7383 can comfortably 2 +136579 7383 comfortably 3 +136580 7384 It 's a gag that 's worn a bit thin over the years , though Do n't Ask still finds a few chuckles . 2 +136581 7384 's a gag that 's worn a bit thin over the years , though Do n't Ask still finds a few chuckles . 2 +136582 7384 's a gag that 's worn a bit thin over the years , though Do n't Ask still finds a few chuckles 3 +136583 7384 a gag that 's worn a bit thin over the years , though Do n't Ask still finds a few chuckles 2 +136584 7384 a gag 2 +136585 7384 that 's worn a bit thin over the years , though Do n't Ask still finds a few chuckles 2 +136586 7384 's worn a bit thin over the years , though Do n't Ask still finds a few chuckles 2 +136587 7384 worn a bit thin over the years , though Do n't Ask still finds a few chuckles 2 +136588 7384 worn a bit thin over the years , 1 +136589 7384 worn a bit thin over the years 1 +136590 7384 worn a bit thin 1 +136591 7384 a bit thin 2 +136592 7384 though Do n't Ask still finds a few chuckles 3 +136593 7384 Do n't Ask still finds a few chuckles 3 +136594 7384 Do n't Ask still 2 +136595 7384 Ask still 2 +136596 7384 finds a few chuckles 2 +136597 7385 Like Schindler 's List , The Grey Zone attempts to be grandiloquent , but ends up merely pretentious -- in a grisly sort of way . 1 +136598 7385 Like Schindler 's List 3 +136599 7385 , The Grey Zone attempts to be grandiloquent , but ends up merely pretentious -- in a grisly sort of way . 1 +136600 7385 The Grey Zone attempts to be grandiloquent , but ends up merely pretentious -- in a grisly sort of way . 1 +136601 7385 attempts to be grandiloquent , but ends up merely pretentious -- in a grisly sort of way . 1 +136602 7385 attempts to be grandiloquent , but ends up merely pretentious -- in a grisly sort of way 1 +136603 7385 attempts to be grandiloquent , but 1 +136604 7385 attempts to be grandiloquent , 2 +136605 7385 attempts to be grandiloquent 2 +136606 7385 to be grandiloquent 1 +136607 7385 be grandiloquent 2 +136608 7385 grandiloquent 3 +136609 7385 ends up merely pretentious -- in a grisly sort of way 0 +136610 7385 merely pretentious -- in a grisly sort of way 1 +136611 7385 merely pretentious -- 1 +136612 7385 merely pretentious 1 +136613 7385 in a grisly sort of way 1 +136614 7385 a grisly sort of way 2 +136615 7385 a grisly sort 2 +136616 7385 grisly sort 2 +136617 7386 A movie that will wear you out and make you misty even when you do n't want to be . 2 +136618 7386 A movie that will wear you out and make you misty even when you do n't 3 +136619 7386 that will wear you out and make you misty even when you do n't 3 +136620 7386 will wear you out and make you misty even when you do n't 3 +136621 7386 wear you out and make you misty even when you do n't 3 +136622 7386 wear you out and 1 +136623 7386 wear you out 1 +136624 7386 wear you 2 +136625 7386 make you misty even when you do n't 3 +136626 7386 you misty even when you do n't 3 +136627 7386 misty even when you do n't 2 +136628 7386 misty 2 +136629 7386 even when you do n't 2 +136630 7386 when you do n't 2 +136631 7386 want to be . 2 +136632 7386 want to be 2 +136633 7387 Compassionately explores the seemingly irreconcilable situation between conservative Christian parents and their estranged gay and lesbian children . 3 +136634 7387 explores the seemingly irreconcilable situation between conservative Christian parents and their estranged gay and lesbian children . 3 +136635 7387 explores the seemingly irreconcilable situation between conservative Christian parents and their estranged gay and lesbian children 2 +136636 7387 the seemingly irreconcilable situation between conservative Christian parents and their estranged gay and lesbian children 1 +136637 7387 the seemingly irreconcilable situation 1 +136638 7387 seemingly irreconcilable situation 2 +136639 7387 seemingly irreconcilable 1 +136640 7387 irreconcilable 1 +136641 7387 between conservative Christian parents and their estranged gay and lesbian children 2 +136642 7387 conservative Christian parents and their estranged gay and lesbian children 2 +136643 7387 conservative Christian parents and 3 +136644 7387 conservative Christian parents 3 +136645 7387 Christian parents 3 +136646 7387 their estranged gay and lesbian children 2 +136647 7387 estranged gay and lesbian children 3 +136648 7387 gay and lesbian children 1 +136649 7387 and lesbian children 1 +136650 7387 lesbian children 2 +136651 7387 lesbian 2 +136652 7388 Sad nonsense , this . 1 +136653 7388 Sad nonsense , this 1 +136654 7388 Sad nonsense , 1 +136655 7388 Sad nonsense 0 +136656 7389 An amusing and unexpectedly insightful examination of sexual jealousy , resentment and the fine line between passion and pretence . 4 +136657 7389 An amusing and unexpectedly insightful examination of sexual jealousy , resentment and the fine 3 +136658 7389 An amusing and unexpectedly insightful examination 3 +136659 7389 amusing and unexpectedly insightful examination 3 +136660 7389 amusing and unexpectedly insightful 3 +136661 7389 unexpectedly insightful 3 +136662 7389 of sexual jealousy , resentment and the fine 2 +136663 7389 sexual jealousy , resentment and the fine 3 +136664 7389 sexual jealousy , resentment and 2 +136665 7389 sexual jealousy , resentment 1 +136666 7389 sexual jealousy , 2 +136667 7389 sexual jealousy 2 +136668 7389 the fine 2 +136669 7389 line between passion and pretence . 3 +136670 7389 line between passion and pretence 2 +136671 7389 between passion and pretence 3 +136672 7389 passion and pretence 4 +136673 7389 pretence 2 +136674 7390 You see Robin Williams and psycho killer , and you think , hmmmmm . 2 +136675 7390 You see Robin Williams and psycho killer , and you think , hmmmmm 2 +136676 7390 You see Robin Williams and psycho killer , and 2 +136677 7390 You see Robin Williams and psycho killer , 1 +136678 7390 You see Robin Williams and psycho killer 2 +136679 7390 see Robin Williams and psycho killer 2 +136680 7390 Robin Williams and psycho killer 2 +136681 7390 Robin Williams and 2 +136682 7390 psycho killer 2 +136683 7390 you think , hmmmmm 2 +136684 7390 think , hmmmmm 2 +136685 7390 think , 2 +136686 7390 hmmmmm 2 +136687 7391 It 's not a film to be taken literally on any level , but its focus always appears questionable . 2 +136688 7391 It 's not a film to be taken literally on any level , but its focus always appears questionable 3 +136689 7391 It 's not a film to be taken literally on any level , but 2 +136690 7391 It 's not a film to be taken literally on any level , 1 +136691 7391 It 's not a film to be taken literally on any level 1 +136692 7391 's not a film to be taken literally on any level 2 +136693 7391 a film to be taken literally on any level 3 +136694 7391 film to be taken literally on any level 2 +136695 7391 to be taken literally on any level 2 +136696 7391 be taken literally on any level 3 +136697 7391 taken literally on any level 2 +136698 7391 taken literally 2 +136699 7391 on any level 3 +136700 7391 any level 2 +136701 7391 its focus always appears questionable 1 +136702 7391 its focus 2 +136703 7391 always appears questionable 1 +136704 7391 appears questionable 2 +136705 7392 Broomfield 's style of journalism is hardly journalism at all , and even those with an avid interest in the subject will grow impatient . 1 +136706 7392 Broomfield 's style of journalism is hardly journalism at all , and even those with an avid interest in the subject will grow impatient 0 +136707 7392 Broomfield 's style of journalism is hardly journalism at all , and 1 +136708 7392 Broomfield 's style of journalism is hardly journalism at all , 1 +136709 7392 Broomfield 's style of journalism is hardly journalism at all 2 +136710 7392 Broomfield 's style of journalism 2 +136711 7392 Broomfield 's style 2 +136712 7392 of journalism 2 +136713 7392 is hardly journalism at all 1 +136714 7392 journalism at all 2 +136715 7392 even those with an avid interest in the subject will grow impatient 1 +136716 7392 even those with an avid interest in the subject 2 +136717 7392 even those 2 +136718 7392 with an avid interest in the subject 3 +136719 7392 an avid interest in the subject 3 +136720 7392 an avid interest 3 +136721 7392 avid interest 3 +136722 7392 avid 3 +136723 7392 in the subject 2 +136724 7392 will grow impatient 2 +136725 7392 grow impatient 1 +136726 7392 impatient 2 +136727 7393 Never once predictable . 3 +136728 7393 Never once predictable 3 +136729 7393 Never once 2 +136730 7394 It would take a complete moron to foul up a screen adaptation of Oscar Wilde 's classic satire . 0 +136731 7394 would take a complete moron to foul up a screen adaptation of Oscar Wilde 's classic satire . 2 +136732 7394 would take a complete moron to foul up a screen adaptation of Oscar Wilde 's classic satire 0 +136733 7394 take a complete moron to foul up a screen adaptation of Oscar Wilde 's classic satire 1 +136734 7394 take a complete moron 1 +136735 7394 a complete moron 0 +136736 7394 complete moron 0 +136737 7394 moron 1 +136738 7394 to foul up a screen adaptation of Oscar Wilde 's classic satire 0 +136739 7394 foul up a screen adaptation of Oscar Wilde 's classic satire 2 +136740 7394 a screen adaptation of Oscar Wilde 's classic satire 2 +136741 7394 of Oscar Wilde 's classic satire 3 +136742 7394 Oscar Wilde 's classic satire 3 +136743 7394 Oscar Wilde 's 2 +136744 7394 classic satire 4 +136745 7395 It 's too bad that the rest is n't more compelling . 2 +136746 7395 's too bad that the rest is n't more compelling . 1 +136747 7395 's too bad that the rest is n't more compelling 1 +136748 7395 's too bad 2 +136749 7395 that the rest is n't more compelling 1 +136750 7395 the rest is n't more compelling 1 +136751 7395 is n't more compelling 1 +136752 7396 There are some laughs in this movie , but Williams ' anarchy gets tiresome , the satire is weak . 1 +136753 7396 There are some laughs in this movie , but Williams ' anarchy gets tiresome 2 +136754 7396 There are some laughs in this movie , but 3 +136755 7396 There are some laughs in this movie , 3 +136756 7396 There are some laughs in this movie 3 +136757 7396 are some laughs in this movie 2 +136758 7396 some laughs in this movie 3 +136759 7396 Williams ' anarchy gets tiresome 1 +136760 7396 Williams ' anarchy 2 +136761 7396 anarchy 1 +136762 7396 gets tiresome 1 +136763 7396 , the satire is weak . 1 +136764 7396 the satire is weak . 1 +136765 7396 is weak . 1 +136766 7396 is weak 2 +136767 7397 That is made almost impossible by events that set the plot in motion . 2 +136768 7397 is made almost impossible by events that set the plot in motion . 1 +136769 7397 is made almost impossible by events that set the plot in motion 1 +136770 7397 made almost impossible by events that set the plot in motion 1 +136771 7397 made almost impossible 2 +136772 7397 by events that set the plot in motion 2 +136773 7397 events that set the plot in motion 2 +136774 7397 that set the plot in motion 2 +136775 7397 set the plot in motion 2 +136776 7397 set the plot 2 +136777 7398 You see the movie and you think , zzzzzzzzz . 0 +136778 7398 You see the movie and you think , zzzzzzzzz 0 +136779 7398 You see the movie and 2 +136780 7398 You see the movie 2 +136781 7398 you think , zzzzzzzzz 0 +136782 7398 think , zzzzzzzzz 0 +136783 7398 zzzzzzzzz 0 +136784 7399 The film 's highlight is definitely its screenplay , both for the rhapsodic dialogue that jumps off the page , and for the memorable character creations . 3 +136785 7399 The film 's highlight 3 +136786 7399 is definitely its screenplay , both for the rhapsodic dialogue that jumps off the page , and for the memorable character creations . 3 +136787 7399 is definitely its screenplay , both for the rhapsodic dialogue that jumps off the page , and for the memorable character creations 3 +136788 7399 is definitely its screenplay , 2 +136789 7399 is definitely its screenplay 2 +136790 7399 both for the rhapsodic dialogue that jumps off the page , and for the memorable character creations 4 +136791 7399 for the rhapsodic dialogue that jumps off the page , and for the memorable character creations 4 +136792 7399 the rhapsodic dialogue that jumps off the page , and for the memorable character creations 4 +136793 7399 the rhapsodic dialogue 3 +136794 7399 rhapsodic dialogue 2 +136795 7399 rhapsodic 3 +136796 7399 that jumps off the page , and for the memorable character creations 4 +136797 7399 jumps off the page , and for the memorable character creations 4 +136798 7399 off the page , and for the memorable character creations 3 +136799 7399 off the page 2 +136800 7399 the page 2 +136801 7399 , and for the memorable character creations 3 +136802 7399 for the memorable character creations 3 +136803 7399 the memorable character creations 3 +136804 7399 memorable character creations 3 +136805 7399 character creations 3 +136806 7399 creations 2 +136807 7400 Gaghan captures the half-lit , sometimes creepy intimacy of college dorm rooms , a subtlety that makes the silly , over-the-top coda especially disappointing . 0 +136808 7400 captures the half-lit , sometimes creepy intimacy of college dorm rooms , a subtlety that makes the silly , over-the-top coda especially disappointing . 2 +136809 7400 captures the half-lit , sometimes creepy intimacy of college dorm rooms , a subtlety that makes the silly , over-the-top coda especially disappointing 2 +136810 7400 the half-lit , sometimes creepy intimacy of college dorm rooms , a subtlety that makes the silly , over-the-top coda especially disappointing 1 +136811 7400 the half-lit , sometimes creepy intimacy 1 +136812 7400 half-lit , sometimes creepy intimacy 1 +136813 7400 half-lit 2 +136814 7400 , sometimes creepy intimacy 1 +136815 7400 sometimes creepy intimacy 3 +136816 7400 sometimes creepy 2 +136817 7400 of college dorm rooms , a subtlety that makes the silly , over-the-top coda especially disappointing 1 +136818 7400 college dorm rooms , a subtlety that makes the silly , over-the-top coda especially disappointing 2 +136819 7400 college dorm rooms , 2 +136820 7400 college dorm rooms 2 +136821 7400 dorm rooms 2 +136822 7400 dorm 2 +136823 7400 rooms 2 +136824 7400 a subtlety that makes the silly , over-the-top coda especially disappointing 1 +136825 7400 that makes the silly , over-the-top coda especially disappointing 2 +136826 7400 makes the silly , over-the-top coda especially disappointing 0 +136827 7400 the silly , over-the-top coda especially disappointing 0 +136828 7400 the silly , over-the-top coda 2 +136829 7400 silly , over-the-top coda 2 +136830 7400 , over-the-top coda 2 +136831 7400 over-the-top coda 2 +136832 7400 coda 2 +136833 7400 especially disappointing 0 +136834 7401 Such an incomprehensible mess that it feels less like bad cinema than like being stuck in a dark pit having a nightmare about bad cinema . 0 +136835 7401 Such an incomprehensible 2 +136836 7401 an incomprehensible 1 +136837 7401 mess that it feels less like bad cinema than like being stuck in a dark pit having a nightmare about bad cinema . 0 +136838 7401 mess that it feels less like bad cinema than like being stuck in a dark pit having a nightmare about bad cinema 1 +136839 7401 that it feels less like bad cinema than like being stuck in a dark pit having a nightmare about bad cinema 0 +136840 7401 it feels less like bad cinema than like being stuck in a dark pit having a nightmare about bad cinema 1 +136841 7401 feels less like bad cinema than like being stuck in a dark pit having a nightmare about bad cinema 0 +136842 7401 feels less like bad cinema 2 +136843 7401 less like bad cinema 2 +136844 7401 like bad cinema 0 +136845 7401 bad cinema 0 +136846 7401 than like being stuck in a dark pit having a nightmare about bad cinema 0 +136847 7401 like being stuck in a dark pit having a nightmare about bad cinema 0 +136848 7401 being stuck in a dark pit having a nightmare about bad cinema 1 +136849 7401 stuck in a dark pit having a nightmare about bad cinema 0 +136850 7401 in a dark pit having a nightmare about bad cinema 1 +136851 7401 a dark pit having a nightmare about bad cinema 0 +136852 7401 a dark pit 1 +136853 7401 dark pit 1 +136854 7401 having a nightmare about bad cinema 1 +136855 7401 a nightmare about bad cinema 1 +136856 7401 about bad cinema 1 +136857 7402 I believe Silberling had the best intentions here , but he just does n't have the restraint to fully realize them . 2 +136858 7402 I believe Silberling had the best intentions here , but he just does n't have the restraint to fully realize them 2 +136859 7402 I believe Silberling had the best intentions here , but 2 +136860 7402 I believe Silberling had the best intentions here , 3 +136861 7402 I believe Silberling had the best intentions here 3 +136862 7402 believe Silberling had the best intentions here 3 +136863 7402 Silberling had the best intentions here 3 +136864 7402 had the best intentions here 3 +136865 7402 had the best intentions 2 +136866 7402 the best intentions 3 +136867 7402 best intentions 3 +136868 7402 he just does n't have the restraint to fully realize them 1 +136869 7402 just does n't have the restraint to fully realize them 1 +136870 7402 does n't have the restraint to fully realize them 2 +136871 7402 have the restraint to fully realize them 2 +136872 7402 the restraint to fully realize them 2 +136873 7402 restraint to fully realize them 2 +136874 7402 to fully realize them 2 +136875 7402 fully realize them 2 +136876 7402 realize them 2 +136877 7403 Craig Bartlett and director Tuck Tucker should be commended for illustrating the merits of fighting hard for something that really matters . 3 +136878 7403 Craig Bartlett and director Tuck Tucker 2 +136879 7403 Bartlett and director Tuck Tucker 2 +136880 7403 and director Tuck Tucker 2 +136881 7403 director Tuck Tucker 2 +136882 7403 Tuck Tucker 2 +136883 7403 Tucker 2 +136884 7403 should be commended for illustrating the merits of fighting hard for something that really matters . 3 +136885 7403 should be commended for illustrating the merits of fighting hard for something that really matters 4 +136886 7403 be commended for illustrating the merits of fighting hard for something that really matters 3 +136887 7403 commended for illustrating the merits of fighting hard for something that really matters 2 +136888 7403 for illustrating the merits of fighting hard for something that really matters 3 +136889 7403 illustrating the merits of fighting hard for something that really matters 3 +136890 7403 illustrating 2 +136891 7403 the merits of fighting hard for something that really matters 3 +136892 7403 the merits 2 +136893 7403 of fighting hard for something that really matters 3 +136894 7403 fighting hard for something that really matters 3 +136895 7403 fighting hard 2 +136896 7403 for something that really matters 2 +136897 7403 something that really matters 3 +136898 7403 that really matters 2 +136899 7403 really matters 2 +136900 7404 A good thriller . 3 +136901 7404 good thriller . 3 +136902 7405 It 's up to you to decide whether to admire these people 's dedication to their cause or be repelled by their dogmatism , manipulativeness and narrow , fearful view of American life . 2 +136903 7405 's up to you to decide whether to admire these people 's dedication to their cause or be repelled by their dogmatism , manipulativeness and narrow , fearful view of American life . 1 +136904 7405 's up to you to decide whether to admire these people 's dedication to their cause or be repelled by their dogmatism , manipulativeness and narrow , fearful view of American life 1 +136905 7405 's up to you 2 +136906 7405 to decide whether to admire these people 's dedication to their cause or be repelled by their dogmatism , manipulativeness and narrow , fearful view of American life 2 +136907 7405 decide whether to admire these people 's dedication to their cause or be repelled by their dogmatism , manipulativeness and narrow , fearful view of American life 2 +136908 7405 whether to admire these people 's dedication to their cause or be repelled by their dogmatism , manipulativeness and narrow , fearful view of American life 2 +136909 7405 to admire these people 's dedication to their cause or be repelled by their dogmatism , manipulativeness and narrow , fearful view of American life 3 +136910 7405 admire these people 's dedication to their cause or be repelled by their dogmatism , manipulativeness and narrow , fearful view of American life 3 +136911 7405 admire these people 's dedication to their cause or 3 +136912 7405 admire these people 's dedication to their cause 3 +136913 7405 admire these people 's dedication 3 +136914 7405 these people 's dedication 2 +136915 7405 these people 's 2 +136916 7405 to their cause 2 +136917 7405 their cause 2 +136918 7405 be repelled by their dogmatism , manipulativeness and narrow , fearful view of American life 2 +136919 7405 repelled by their dogmatism , manipulativeness and narrow , fearful view of American life 2 +136920 7405 repelled 2 +136921 7405 by their dogmatism , manipulativeness and narrow , fearful view of American life 2 +136922 7405 their dogmatism , manipulativeness and narrow , fearful view of American life 0 +136923 7405 their dogmatism , manipulativeness and 2 +136924 7405 their dogmatism , manipulativeness 2 +136925 7405 their dogmatism , 2 +136926 7405 their dogmatism 2 +136927 7405 dogmatism 2 +136928 7405 manipulativeness 2 +136929 7405 narrow , fearful view of American life 1 +136930 7405 narrow , fearful view 2 +136931 7405 , fearful view 2 +136932 7405 fearful view 1 +136933 7405 fearful 1 +136934 7405 of American life 2 +136935 7405 American life 2 +136936 7406 One fantastic -LRB- and educational -RRB- documentary . 4 +136937 7406 One fantastic -LRB- and educational -RRB- 3 +136938 7406 One fantastic 2 +136939 7406 -LRB- and educational -RRB- 3 +136940 7406 -LRB- and educational 2 +136941 7407 ... an interesting slice of history . 3 +136942 7407 an interesting slice of history . 4 +136943 7407 an interesting slice of history 3 +136944 7407 an interesting slice 3 +136945 7407 interesting slice 3 +136946 7408 It 's too harsh to work as a piece of storytelling , but as an intellectual exercise -- an unpleasant debate that 's been given the drive of a narrative and that 's been acted out -- The Believer is nothing less than a provocative piece of work . 3 +136947 7408 It 's too harsh to work as a piece of storytelling , but as an intellectual exercise -- an unpleasant debate that 's been given the drive of a narrative and that 's been acted out -- The Believer is nothing less than a provocative piece of work 2 +136948 7408 It 's too harsh to work as a piece of storytelling , but 1 +136949 7408 It 's too harsh to work as a piece of storytelling , 1 +136950 7408 It 's too harsh to work as a piece of storytelling 1 +136951 7408 's too harsh to work as a piece of storytelling 1 +136952 7408 's too harsh 1 +136953 7408 too harsh 1 +136954 7408 to work as a piece of storytelling 2 +136955 7408 work as a piece of storytelling 2 +136956 7408 as a piece of storytelling 3 +136957 7408 a piece of storytelling 2 +136958 7408 as an intellectual exercise -- an unpleasant debate that 's been given the drive of a narrative and that 's been acted out -- The Believer is nothing less than a provocative piece of work 4 +136959 7408 as an intellectual exercise -- an unpleasant debate that 's been given the drive of a narrative and that 's been acted out -- 1 +136960 7408 an intellectual exercise -- an unpleasant debate that 's been given the drive of a narrative and that 's been acted out -- 2 +136961 7408 an intellectual exercise 3 +136962 7408 intellectual exercise 2 +136963 7408 -- an unpleasant debate that 's been given the drive of a narrative and that 's been acted out -- 1 +136964 7408 an unpleasant debate that 's been given the drive of a narrative and that 's been acted out -- 2 +136965 7408 an unpleasant debate that 's been given the drive of a narrative and that 's been acted out 0 +136966 7408 unpleasant debate that 's been given the drive of a narrative and that 's been acted out 1 +136967 7408 debate that 's been given the drive of a narrative and that 's been acted out 2 +136968 7408 that 's been given the drive of a narrative and that 's been acted out 2 +136969 7408 that 's been given the drive of a narrative and 3 +136970 7408 that 's been given the drive of a narrative 2 +136971 7408 's been given the drive of a narrative 2 +136972 7408 been given the drive of a narrative 3 +136973 7408 given the drive of a narrative 2 +136974 7408 the drive of a narrative 2 +136975 7408 the drive 2 +136976 7408 of a narrative 2 +136977 7408 a narrative 2 +136978 7408 that 's been acted out 2 +136979 7408 's been acted out 2 +136980 7408 been acted out 1 +136981 7408 acted out 2 +136982 7408 The Believer is nothing less than a provocative piece of work 3 +136983 7408 The Believer 2 +136984 7408 is nothing less than a provocative piece of work 4 +136985 7408 nothing less than a provocative piece of work 3 +136986 7408 nothing less 2 +136987 7408 than a provocative piece of work 2 +136988 7408 a provocative piece of work 4 +136989 7408 a provocative piece 3 +136990 7408 provocative piece 4 +136991 7409 I guess it just goes to show that if you give a filmmaker an unlimited amount of phony blood , nothing good can happen . 0 +136992 7409 guess it just goes to show that if you give a filmmaker an unlimited amount of phony blood , nothing good can happen . 1 +136993 7409 guess it just goes to show that if you give a filmmaker an unlimited amount of phony blood , nothing good can happen 1 +136994 7409 it just goes to show that if you give a filmmaker an unlimited amount of phony blood , nothing good can happen 1 +136995 7409 just goes to show that if you give a filmmaker an unlimited amount of phony blood , nothing good can happen 1 +136996 7409 goes to show that if you give a filmmaker an unlimited amount of phony blood , nothing good can happen 2 +136997 7409 to show that if you give a filmmaker an unlimited amount of phony blood , nothing good can happen 1 +136998 7409 show that if you give a filmmaker an unlimited amount of phony blood , nothing good can happen 1 +136999 7409 that if you give a filmmaker an unlimited amount of phony blood , nothing good can happen 1 +137000 7409 if you give a filmmaker an unlimited amount of phony blood , nothing good can happen 1 +137001 7409 if you give a filmmaker an unlimited amount of phony blood 1 +137002 7409 you give a filmmaker an unlimited amount of phony blood 1 +137003 7409 give a filmmaker an unlimited amount of phony blood 1 +137004 7409 give a filmmaker 2 +137005 7409 an unlimited amount of phony blood 1 +137006 7409 an unlimited amount 2 +137007 7409 unlimited amount 2 +137008 7409 of phony blood 2 +137009 7409 phony blood 2 +137010 7409 , nothing good can happen 0 +137011 7409 nothing good can happen 1 +137012 7409 nothing good 1 +137013 7409 can happen 2 +137014 7410 The performances are uniformly good . 3 +137015 7410 are uniformly good . 3 +137016 7410 are uniformly good 3 +137017 7410 uniformly good 3 +137018 7411 I wanted more . 1 +137019 7411 wanted more . 2 +137020 7411 wanted more 2 +137021 7412 Femme Fatale offers nothing more than a bait-and-switch that is beyond playing fair with the audience . 1 +137022 7412 Femme Fatale 2 +137023 7412 Femme 2 +137024 7412 offers nothing more than a bait-and-switch that is beyond playing fair with the audience . 1 +137025 7412 offers nothing more than a bait-and-switch that is beyond playing fair with the audience 0 +137026 7412 offers nothing 1 +137027 7412 more than a bait-and-switch that is beyond playing fair with the audience 2 +137028 7412 more than a bait-and-switch 3 +137029 7412 bait-and-switch 2 +137030 7412 that is beyond playing fair with the audience 1 +137031 7412 is beyond playing fair with the audience 1 +137032 7412 beyond playing fair with the audience 2 +137033 7412 playing fair with the audience 2 +137034 7412 playing fair 2 +137035 7412 with the audience 2 +137036 7413 More intimate than spectacular , E.T. is carried less by wow factors than by its funny , moving yarn that holds up well after two decades . 4 +137037 7413 More intimate than spectacular 2 +137038 7413 intimate than spectacular 3 +137039 7413 than spectacular 2 +137040 7413 , E.T. is carried less by wow factors than by its funny , moving yarn that holds up well after two decades . 4 +137041 7413 E.T. is carried less by wow factors than by its funny , moving yarn that holds up well after two decades . 3 +137042 7413 is carried less by wow factors than by its funny , moving yarn that holds up well after two decades . 3 +137043 7413 is carried less by wow factors than by its funny , moving yarn that holds up well after two decades 3 +137044 7413 carried less by wow factors than by its funny , moving yarn that holds up well after two decades 3 +137045 7413 less by wow factors than by its funny , moving yarn that holds up well after two decades 3 +137046 7413 less by wow factors 2 +137047 7413 by wow factors 2 +137048 7413 wow factors 3 +137049 7413 than by its funny , moving yarn that holds up well after two decades 3 +137050 7413 by its funny , moving yarn that holds up well after two decades 4 +137051 7413 its funny , moving yarn that holds up well after two decades 3 +137052 7413 its funny , moving yarn 4 +137053 7413 funny , moving yarn 3 +137054 7413 funny , moving 3 +137055 7413 that holds up well after two decades 3 +137056 7413 holds up well after two decades 3 +137057 7413 holds up well 3 +137058 7413 up well 2 +137059 7413 after two decades 2 +137060 7413 two decades 2 +137061 7414 A wannabe comedy of manners about a brainy prep-school kid with a Mrs. Robinson complex founders on its own preciousness -- and squanders its beautiful women . 1 +137062 7414 A wannabe comedy of manners about a brainy prep-school kid with a Mrs. Robinson complex 1 +137063 7414 A wannabe comedy 1 +137064 7414 wannabe comedy 1 +137065 7414 of manners about a brainy prep-school kid with a Mrs. Robinson complex 2 +137066 7414 manners about a brainy prep-school kid with a Mrs. Robinson complex 2 +137067 7414 about a brainy prep-school kid with a Mrs. Robinson complex 3 +137068 7414 a brainy prep-school kid with a Mrs. Robinson complex 2 +137069 7414 a brainy prep-school kid 2 +137070 7414 brainy prep-school kid 2 +137071 7414 prep-school kid 2 +137072 7414 with a Mrs. Robinson complex 2 +137073 7414 a Mrs. Robinson complex 2 +137074 7414 Mrs. Robinson complex 2 +137075 7414 Mrs. 2 +137076 7414 Robinson complex 2 +137077 7414 founders on its own preciousness -- and squanders its beautiful women . 1 +137078 7414 founders on its own preciousness -- and squanders its beautiful women 1 +137079 7414 founders on its own preciousness -- and 2 +137080 7414 founders on its own preciousness -- 2 +137081 7414 founders on its own preciousness 2 +137082 7414 on its own preciousness 2 +137083 7414 its own preciousness 3 +137084 7414 own preciousness 3 +137085 7414 preciousness 3 +137086 7414 squanders its beautiful women 1 +137087 7414 its beautiful women 4 +137088 7414 beautiful women 2 +137089 7415 This is an action movie with an action icon who 's been all but decommissioned . 1 +137090 7415 is an action movie with an action icon who 's been all but decommissioned . 1 +137091 7415 is an action movie with an action icon who 's been all but decommissioned 1 +137092 7415 an action movie with an action icon who 's been all but decommissioned 1 +137093 7415 an action movie with an action icon 2 +137094 7415 with an action icon 2 +137095 7415 an action icon 3 +137096 7415 action icon 2 +137097 7415 who 's been all but decommissioned 2 +137098 7415 's been all but decommissioned 2 +137099 7415 been all but decommissioned 1 +137100 7415 all but decommissioned 2 +137101 7415 decommissioned 2 +137102 7416 One thing 's for sure -- if George Romero had directed this movie , it would n't have taken the protagonists a full hour to determine that in order to kill a zombie you must shoot it in the head . 1 +137103 7416 One thing 's for sure -- if George Romero had directed this movie , it would n't have taken the protagonists a full hour to determine that in order to kill a zombie you must shoot it in the head 0 +137104 7416 One thing 's for sure -- 2 +137105 7416 if George Romero had directed this movie , it would n't have taken the protagonists a full hour to determine that in order to kill a zombie you must shoot it in the head 1 +137106 7416 if George Romero had directed this movie 2 +137107 7416 George Romero had directed this movie 2 +137108 7416 George Romero 2 +137109 7416 Romero 2 +137110 7416 had directed this movie 2 +137111 7416 directed this movie 2 +137112 7416 , it would n't have taken the protagonists a full hour to determine that in order to kill a zombie you must shoot it in the head 1 +137113 7416 it would n't have taken the protagonists a full hour to determine that in order to kill a zombie you must shoot it in the head 1 +137114 7416 would n't have taken the protagonists a full hour to determine that in order to kill a zombie you must shoot it in the head 0 +137115 7416 have taken the protagonists a full hour to determine that in order to kill a zombie you must shoot it in the head 1 +137116 7416 taken the protagonists a full hour to determine that in order to kill a zombie you must shoot it in the head 1 +137117 7416 taken the protagonists a full hour 0 +137118 7416 the protagonists a full hour 2 +137119 7416 a full hour 2 +137120 7416 full hour 2 +137121 7416 to determine that in order to kill a zombie you must shoot it in the head 2 +137122 7416 determine that in order to kill a zombie you must shoot it in the head 2 +137123 7416 that in order to kill a zombie you must shoot it in the head 2 +137124 7416 in order to kill a zombie you must shoot it in the head 2 +137125 7416 in order to kill a zombie 2 +137126 7416 to kill a zombie 2 +137127 7416 kill a zombie 2 +137128 7416 a zombie 2 +137129 7416 you must shoot it in the head 1 +137130 7416 must shoot it in the head 0 +137131 7416 shoot it in the head 0 +137132 7416 shoot it 2 +137133 7417 An amused indictment of Jaglom 's own profession . 3 +137134 7417 An amused indictment of Jaglom 's own profession 2 +137135 7417 An amused indictment 2 +137136 7417 amused indictment 3 +137137 7417 of Jaglom 's own profession 1 +137138 7417 Jaglom 's own profession 2 +137139 7417 own profession 2 +137140 7417 profession 2 +137141 7418 Trailer park Magnolia : too long , too cutesy , too sure of its own importance , and possessed of that peculiar tension of being too dense & about nothing at all . 2 +137142 7418 Trailer park Magnolia : too long , too cutesy , too sure of its own importance , and possessed of that peculiar tension of being too dense & about nothing at all 1 +137143 7418 Trailer park Magnolia : 2 +137144 7418 Trailer park Magnolia 1 +137145 7418 park Magnolia 2 +137146 7418 Magnolia 2 +137147 7418 too long , too cutesy , too sure of its own importance , and possessed of that peculiar tension of being too dense & about nothing at all 0 +137148 7418 too long , too cutesy , too sure of its own importance , and possessed 1 +137149 7418 too long , too cutesy , too sure of its own importance , and 0 +137150 7418 too long , too cutesy , too sure of its own importance , 0 +137151 7418 too long , too cutesy , too sure of its own importance 0 +137152 7418 too long , too cutesy , 2 +137153 7418 too long , too cutesy 0 +137154 7418 too long , 0 +137155 7418 too cutesy 2 +137156 7418 too sure of its own importance 2 +137157 7418 sure of its own importance 2 +137158 7418 of its own importance 2 +137159 7418 its own importance 2 +137160 7418 own importance 2 +137161 7418 possessed 2 +137162 7418 of that peculiar tension of being too dense & about nothing at all 1 +137163 7418 that peculiar tension of being too dense & about nothing at all 1 +137164 7418 that peculiar tension 3 +137165 7418 peculiar tension 2 +137166 7418 of being too dense & about nothing at all 1 +137167 7418 being too dense & about nothing at all 1 +137168 7418 too dense & about nothing at all 1 +137169 7418 too dense & about 1 +137170 7418 too dense & 1 +137171 7418 too dense 2 +137172 7418 nothing at all 1 +137173 7419 This is a film tailor-made for those who when they were in high school would choose the Cliff-Notes over reading a full-length classic . 1 +137174 7419 is a film tailor-made for those who when they were in high school would choose the Cliff-Notes over reading a full-length classic . 2 +137175 7419 is a film tailor-made for those who when they were in high school would choose the Cliff-Notes over reading a full-length classic 1 +137176 7419 a film tailor-made for those who when they were in high school would choose the Cliff-Notes over reading a full-length classic 1 +137177 7419 tailor-made for those who when they were in high school would choose the Cliff-Notes over reading a full-length classic 1 +137178 7419 tailor-made 3 +137179 7419 for those who when they were in high school would choose the Cliff-Notes over reading a full-length classic 2 +137180 7419 those who when they were in high school would choose the Cliff-Notes over reading a full-length classic 2 +137181 7419 who when they were in high school would choose the Cliff-Notes over reading a full-length classic 2 +137182 7419 when they were in high school would choose the Cliff-Notes over reading a full-length classic 2 +137183 7419 when they were in high school 2 +137184 7419 they were in high school 2 +137185 7419 were in high school 2 +137186 7419 in high school 2 +137187 7419 would choose the Cliff-Notes over reading a full-length classic 1 +137188 7419 choose the Cliff-Notes over reading a full-length classic 1 +137189 7419 choose the Cliff-Notes 2 +137190 7419 the Cliff-Notes 2 +137191 7419 Cliff-Notes 2 +137192 7419 over reading a full-length classic 2 +137193 7419 reading a full-length classic 2 +137194 7419 a full-length classic 4 +137195 7419 full-length classic 3 +137196 7419 full-length 2 +137197 7420 `` Home Movie '' is a sweet treasure and something well worth your time . 4 +137198 7420 Home Movie '' is a sweet treasure and something well worth your time . 4 +137199 7420 '' is a sweet treasure and something well worth your time . 4 +137200 7420 is a sweet treasure and something well worth your time . 4 +137201 7420 is a sweet treasure and something well worth your time 3 +137202 7420 is a sweet treasure and something well worth 4 +137203 7420 a sweet treasure and something well worth 4 +137204 7420 a sweet treasure and something 4 +137205 7420 sweet treasure and something 3 +137206 7420 treasure and something 2 +137207 7420 treasure and 3 +137208 7421 A mess , but it 's a sincere mess . 2 +137209 7421 , but it 's a sincere mess . 2 +137210 7421 , but it 's a sincere mess 1 +137211 7421 it 's a sincere mess 1 +137212 7421 's a sincere mess 1 +137213 7421 a sincere mess 2 +137214 7421 sincere mess 1 +137215 7422 The movie is brilliant , really . 4 +137216 7422 is brilliant , really . 4 +137217 7422 is brilliant , really 4 +137218 7422 is brilliant , 3 +137219 7422 is brilliant 4 +137220 7423 Another week , another gross-out college comedy -- ugh . 0 +137221 7423 Another week 2 +137222 7423 , another gross-out college comedy -- ugh . 0 +137223 7423 another gross-out college comedy -- ugh . 0 +137224 7423 another gross-out college comedy -- ugh 1 +137225 7423 another gross-out college comedy -- 1 +137226 7423 another gross-out college comedy 2 +137227 7423 gross-out college comedy 1 +137228 7423 ugh 1 +137229 7424 The film 's overall mood and focus is interesting but constantly unfulfilling . 2 +137230 7424 The film 's overall mood and focus 2 +137231 7424 overall mood and focus 3 +137232 7424 mood and focus 2 +137233 7424 is interesting but constantly unfulfilling . 1 +137234 7424 is interesting but constantly unfulfilling 1 +137235 7424 interesting but constantly unfulfilling 1 +137236 7424 constantly unfulfilling 0 +137237 7425 This is a movie so insecure about its capacity to excite that it churns up not one but two flagrantly fake thunderstorms to underscore the action . 1 +137238 7425 is a movie so insecure about its capacity to excite that it churns up not one but two flagrantly fake thunderstorms to underscore the action . 0 +137239 7425 is a movie so insecure about its capacity to excite that it churns up not one but two flagrantly fake thunderstorms to underscore the action 1 +137240 7425 is a movie so insecure about its capacity 1 +137241 7425 is a movie so 2 +137242 7425 a movie so 2 +137243 7425 insecure about its capacity 1 +137244 7425 about its capacity 2 +137245 7425 its capacity 2 +137246 7425 to excite that it churns up not one but two flagrantly fake thunderstorms to underscore the action 2 +137247 7425 excite that it churns up not one but two flagrantly fake thunderstorms to underscore the action 2 +137248 7425 excite 3 +137249 7425 that it churns up not one but two flagrantly fake thunderstorms to underscore the action 1 +137250 7425 it churns up not one but two flagrantly fake thunderstorms to underscore the action 1 +137251 7425 churns up not one but two flagrantly fake thunderstorms to underscore the action 1 +137252 7425 churns 2 +137253 7425 up not one but two flagrantly fake thunderstorms to underscore the action 1 +137254 7425 up not one but two flagrantly fake thunderstorms 1 +137255 7425 not one but two flagrantly fake thunderstorms 2 +137256 7425 one but two flagrantly fake thunderstorms 1 +137257 7425 one but 2 +137258 7425 two flagrantly fake thunderstorms 1 +137259 7425 flagrantly fake thunderstorms 1 +137260 7425 flagrantly 1 +137261 7425 fake thunderstorms 2 +137262 7425 thunderstorms 2 +137263 7425 to underscore the action 2 +137264 7425 underscore the action 2 +137265 7426 An undistinguished attempt to make a classic theater piece cinematic . 0 +137266 7426 An undistinguished attempt to make a classic theater piece 1 +137267 7426 undistinguished attempt to make a classic theater piece 1 +137268 7426 attempt to make a classic theater piece 2 +137269 7426 to make a classic theater piece 3 +137270 7426 make a classic theater piece 3 +137271 7426 a classic theater piece 4 +137272 7426 classic theater piece 4 +137273 7426 theater piece 2 +137274 7426 cinematic . 2 +137275 7427 It 's not too racy and it 's not too offensive . 2 +137276 7427 It 's not too racy and it 's not too offensive 2 +137277 7427 It 's not too racy and 3 +137278 7427 It 's not too racy 2 +137279 7427 's not too racy 2 +137280 7427 too racy 1 +137281 7427 racy 1 +137282 7427 it 's not too offensive 2 +137283 7427 's not too offensive 2 +137284 7427 too offensive 1 +137285 7428 Make no mistake , ivans xtc . 2 +137286 7428 Make no mistake 2 +137287 7428 no mistake 3 +137288 7428 , ivans xtc . 2 +137289 7429 Impostor does n't do much with its template , despite a remarkably strong cast . 2 +137290 7429 does n't do much with its template , despite a remarkably strong cast . 1 +137291 7429 does n't do much with its template , despite a remarkably strong cast 1 +137292 7429 do much with its template , despite a remarkably strong cast 2 +137293 7429 do much with its template , 2 +137294 7429 do much with its template 2 +137295 7429 much with its template 2 +137296 7429 with its template 2 +137297 7429 its template 2 +137298 7429 template 2 +137299 7429 despite a remarkably strong cast 2 +137300 7429 a remarkably strong cast 4 +137301 7429 remarkably strong cast 3 +137302 7429 remarkably strong 3 +137303 7430 Ultimately , the film amounts to being lectured to by tech-geeks , if you 're up for that sort of thing . 1 +137304 7430 , the film amounts to being lectured to by tech-geeks , if you 're up for that sort of thing . 1 +137305 7430 the film amounts to being lectured to by tech-geeks , if you 're up for that sort of thing . 1 +137306 7430 amounts to being lectured to by tech-geeks , if you 're up for that sort of thing . 2 +137307 7430 amounts to being lectured to by tech-geeks , if you 're up for that sort of thing 1 +137308 7430 to being lectured to by tech-geeks , if you 're up for that sort of thing 1 +137309 7430 being lectured to by tech-geeks , if you 're up for that sort of thing 1 +137310 7430 lectured to by tech-geeks , if you 're up for that sort of thing 1 +137311 7430 lectured to by tech-geeks , 2 +137312 7430 lectured to by tech-geeks 2 +137313 7430 lectured to 2 +137314 7430 lectured 2 +137315 7430 by tech-geeks 2 +137316 7430 tech-geeks 2 +137317 7430 if you 're up for that sort of thing 3 +137318 7430 you 're up for that sort of thing 2 +137319 7430 're up for that sort of thing 2 +137320 7430 're up 2 +137321 7430 for that sort of thing 2 +137322 7431 Although no pastry is violated , this nasty comedy pokes fun at the same easy targets as other rowdy raunch-fests -- farts , boobs , unmentionables -- without much success . 1 +137323 7431 Although no pastry is violated 2 +137324 7431 no pastry is violated 3 +137325 7431 no pastry 2 +137326 7431 is violated 1 +137327 7431 violated 1 +137328 7431 , this nasty comedy pokes fun at the same easy targets as other rowdy raunch-fests -- farts , boobs , unmentionables -- without much success . 0 +137329 7431 this nasty comedy pokes fun at the same easy targets as other rowdy raunch-fests -- farts , boobs , unmentionables -- without much success . 0 +137330 7431 this nasty comedy 1 +137331 7431 nasty comedy 1 +137332 7431 pokes fun at the same easy targets as other rowdy raunch-fests -- farts , boobs , unmentionables -- without much success . 1 +137333 7431 pokes fun at the same easy targets as other rowdy raunch-fests -- farts , boobs , unmentionables -- without much success 1 +137334 7431 pokes fun at the same easy targets as other rowdy raunch-fests -- farts , boobs , unmentionables -- 2 +137335 7431 fun at the same easy targets as other rowdy raunch-fests -- farts , boobs , unmentionables -- 2 +137336 7431 at the same easy targets as other rowdy raunch-fests -- farts , boobs , unmentionables -- 1 +137337 7431 the same easy targets as other rowdy raunch-fests -- farts , boobs , unmentionables -- 2 +137338 7431 the same easy targets 1 +137339 7431 same easy targets 1 +137340 7431 easy targets 2 +137341 7431 targets 2 +137342 7431 as other rowdy raunch-fests -- farts , boobs , unmentionables -- 0 +137343 7431 other rowdy raunch-fests -- farts , boobs , unmentionables -- 1 +137344 7431 other rowdy raunch-fests 2 +137345 7431 rowdy raunch-fests 2 +137346 7431 raunch-fests 2 +137347 7431 -- farts , boobs , unmentionables -- 1 +137348 7431 farts , boobs , unmentionables -- 2 +137349 7431 farts , boobs , unmentionables 2 +137350 7431 farts , boobs , 1 +137351 7431 farts , boobs 1 +137352 7431 unmentionables 2 +137353 7431 without much success 1 +137354 7431 much success 2 +137355 7432 Yet another Arnold vehicle that fails to make adequate use of his particular talents . 1 +137356 7432 another Arnold vehicle that fails to make adequate use of his particular talents . 1 +137357 7432 another Arnold vehicle that fails to make adequate 1 +137358 7432 another Arnold vehicle 2 +137359 7432 Arnold vehicle 2 +137360 7432 that fails to make adequate 1 +137361 7432 fails to make adequate 2 +137362 7432 to make adequate 2 +137363 7432 make adequate 2 +137364 7432 use of his particular talents . 3 +137365 7432 use of his particular talents 3 +137366 7432 of his particular talents 2 +137367 7432 his particular talents 2 +137368 7432 particular talents 3 +137369 7433 Most of the information has already appeared in one forum or another and , no matter how Broomfield dresses it up , it tends to speculation , conspiracy theories or , at best , circumstantial evidence . 1 +137370 7433 Most of the information has already appeared in one forum or another and , no matter how Broomfield dresses it up , it tends to speculation , conspiracy theories or , at best , circumstantial evidence 1 +137371 7433 Most of the information has already appeared in one forum or another and , 2 +137372 7433 Most of the information has already appeared in one forum or another and 2 +137373 7433 Most of the information has already appeared in one forum or another 2 +137374 7433 Most of the information 2 +137375 7433 of the information 2 +137376 7433 the information 2 +137377 7433 has already appeared in one forum or another 1 +137378 7433 appeared in one forum or another 2 +137379 7433 in one forum or another 3 +137380 7433 one forum or another 2 +137381 7433 one forum or 2 +137382 7433 one forum 2 +137383 7433 no matter how Broomfield dresses it up , it tends to speculation , conspiracy theories or , at best , circumstantial evidence 1 +137384 7433 no matter how Broomfield dresses it up 2 +137385 7433 matter how Broomfield dresses it up 2 +137386 7433 how Broomfield dresses it up 2 +137387 7433 Broomfield dresses it up 3 +137388 7433 dresses it up 2 +137389 7433 dresses it 2 +137390 7433 dresses 2 +137391 7433 , it tends to speculation , conspiracy theories or , at best , circumstantial evidence 1 +137392 7433 it tends to speculation , conspiracy theories or , at best , circumstantial evidence 2 +137393 7433 tends to speculation , conspiracy theories or , at best , circumstantial evidence 1 +137394 7433 to speculation , conspiracy theories or , at best , circumstantial evidence 2 +137395 7433 speculation , conspiracy theories or , at best , circumstantial evidence 1 +137396 7433 speculation , conspiracy theories or , at best , 1 +137397 7433 speculation , conspiracy theories or 2 +137398 7433 speculation , conspiracy theories 2 +137399 7433 speculation , 2 +137400 7433 conspiracy theories 2 +137401 7433 , at best , 2 +137402 7433 circumstantial evidence 2 +137403 7434 Be forewarned , if you 're depressed about anything before watching this film , you may just end up trying to drown yourself in a lake afterwards . 0 +137404 7434 Be forewarned , if you 're depressed about anything before watching this film 1 +137405 7434 forewarned , if you 're depressed about anything before watching this film 1 +137406 7434 forewarned , 2 +137407 7434 forewarned 2 +137408 7434 if you 're depressed about anything before watching this film 2 +137409 7434 you 're depressed about anything before watching this film 2 +137410 7434 're depressed about anything before watching this film 2 +137411 7434 depressed about anything before watching this film 1 +137412 7434 depressed about anything 2 +137413 7434 before watching this film 2 +137414 7434 , you may just end up trying to drown yourself in a lake afterwards . 0 +137415 7434 you may just end up trying to drown yourself in a lake afterwards . 0 +137416 7434 may just end up trying to drown yourself in a lake afterwards . 0 +137417 7434 may just end up trying to drown yourself in a lake afterwards 0 +137418 7434 end up trying to drown yourself in a lake afterwards 0 +137419 7434 trying to drown yourself in a lake afterwards 0 +137420 7434 to drown yourself in a lake afterwards 0 +137421 7434 drown yourself in a lake afterwards 0 +137422 7434 drown yourself in a lake 1 +137423 7434 drown yourself 1 +137424 7434 in a lake 2 +137425 7434 a lake 2 +137426 7434 afterwards 2 +137427 7435 The music makes a nice album , the food is enticing and Italy beckons us all . 4 +137428 7435 The music makes a nice album , the food is enticing and Italy beckons us all 4 +137429 7435 The music makes a nice album , the food is enticing and 4 +137430 7435 The music makes a nice album , the food is enticing 3 +137431 7435 The music makes a nice album , 3 +137432 7435 The music makes a nice album 3 +137433 7435 makes a nice album 3 +137434 7435 a nice album 4 +137435 7435 nice album 3 +137436 7435 the food is enticing 3 +137437 7435 the food 2 +137438 7435 is enticing 3 +137439 7435 Italy beckons us all 2 +137440 7435 Italy 2 +137441 7435 beckons us all 3 +137442 7435 beckons 2 +137443 7436 A lame comedy . 0 +137444 7436 lame comedy . 0 +137445 7437 It 's tough to watch , but it 's a fantastic movie . 4 +137446 7437 It 's tough to watch , but it 's a fantastic movie 4 +137447 7437 It 's tough to watch , but 2 +137448 7437 It 's tough to watch , 1 +137449 7437 It 's tough to watch 0 +137450 7437 's tough to watch 1 +137451 7437 tough to watch 1 +137452 7437 it 's a fantastic movie 4 +137453 7437 's a fantastic movie 4 +137454 7437 a fantastic movie 4 +137455 7437 fantastic movie 4 +137456 7438 The plot of the comeback curlers is n't very interesting actually , but what I like about Men With Brooms and what is kind of special is how the film knows what 's unique and quirky about Canadians . 3 +137457 7438 The plot of the comeback curlers is n't very interesting actually , but what I like about Men With Brooms and what is kind of special is how the film knows what 's unique and quirky about Canadians 3 +137458 7438 The plot of the comeback curlers is n't very interesting actually , but 2 +137459 7438 The plot of the comeback curlers is n't very interesting actually , 1 +137460 7438 The plot of the comeback curlers is n't very interesting actually 2 +137461 7438 The plot of the comeback curlers 2 +137462 7438 of the comeback curlers 2 +137463 7438 the comeback curlers 2 +137464 7438 comeback curlers 2 +137465 7438 comeback 3 +137466 7438 curlers 2 +137467 7438 is n't very interesting actually 0 +137468 7438 is n't very interesting 0 +137469 7438 what I like about Men With Brooms and what is kind of special is how the film knows what 's unique and quirky about Canadians 4 +137470 7438 what I like about Men With Brooms and what is kind of special 3 +137471 7438 I like about Men With Brooms and what is kind of special 3 +137472 7438 like about Men With Brooms and what is kind of special 2 +137473 7438 like about Men 2 +137474 7438 With Brooms and what is kind of special 3 +137475 7438 With Brooms and 2 +137476 7438 what is kind of special 3 +137477 7438 is kind of special 3 +137478 7438 kind of special 3 +137479 7438 of special 2 +137480 7438 is how the film knows what 's unique and quirky about Canadians 3 +137481 7438 how the film knows what 's unique and quirky about Canadians 3 +137482 7438 the film knows what 's unique and quirky about Canadians 3 +137483 7438 knows what 's unique and quirky about Canadians 2 +137484 7438 what 's unique and quirky about Canadians 2 +137485 7438 's unique and quirky about Canadians 3 +137486 7438 's unique and quirky 2 +137487 7438 unique and quirky 3 +137488 7438 about Canadians 2 +137489 7438 Canadians 2 +137490 7439 Like Vardalos and Corbett , who play their roles with vibrant charm , the film , directed by Joel Zwick , is heartfelt and hilarious in ways you ca n't fake . 4 +137491 7439 Like Vardalos and Corbett , who play their roles with vibrant charm 4 +137492 7439 Vardalos and Corbett , who play their roles with vibrant charm 3 +137493 7439 Vardalos and Corbett , 2 +137494 7439 Vardalos and Corbett 2 +137495 7439 Vardalos and 2 +137496 7439 Vardalos 2 +137497 7439 Corbett 2 +137498 7439 who play their roles with vibrant charm 4 +137499 7439 play their roles with vibrant charm 4 +137500 7439 play their roles 2 +137501 7439 with vibrant charm 3 +137502 7439 vibrant charm 3 +137503 7439 , the film , directed by Joel Zwick , is heartfelt and hilarious in ways you ca n't fake . 3 +137504 7439 the film , directed by Joel Zwick , is heartfelt and hilarious in ways you ca n't fake . 4 +137505 7439 the film , directed by Joel Zwick , 2 +137506 7439 the film , directed by Joel Zwick 2 +137507 7439 directed by Joel Zwick 2 +137508 7439 by Joel Zwick 2 +137509 7439 Joel Zwick 2 +137510 7439 Zwick 2 +137511 7439 is heartfelt and hilarious in ways you ca n't fake . 4 +137512 7439 is heartfelt and hilarious in ways you ca n't fake 4 +137513 7439 is heartfelt and hilarious 4 +137514 7439 heartfelt and hilarious 4 +137515 7439 in ways you ca n't fake 2 +137516 7439 ways you ca n't fake 2 +137517 7439 you ca n't fake 2 +137518 7439 ca n't fake 2 +137519 7440 Makes 98 minutes feel like three hours . 0 +137520 7440 Makes 98 minutes 2 +137521 7440 98 minutes 2 +137522 7440 98 3 +137523 7440 feel like three hours . 1 +137524 7440 feel like three hours 1 +137525 7441 Most consumers of lo mein and General Tso 's chicken barely give a thought to the folks who prepare and deliver it , so , hopefully , this film will attach a human face to all those little steaming cartons . 3 +137526 7441 Most consumers of lo mein and General Tso 's chicken barely give a thought to the folks who prepare and deliver it 2 +137527 7441 Most consumers 2 +137528 7441 consumers 2 +137529 7441 of lo mein and General Tso 's chicken barely give a thought to the folks who prepare and deliver it 1 +137530 7441 lo mein and General Tso 's chicken barely give a thought to the folks who prepare and deliver it 2 +137531 7441 lo mein and General Tso 's 2 +137532 7441 mein and General Tso 's 2 +137533 7441 mein 2 +137534 7441 and General Tso 's 2 +137535 7441 General Tso 's 2 +137536 7441 Tso 's 2 +137537 7441 Tso 2 +137538 7441 chicken barely give a thought to the folks who prepare and deliver it 1 +137539 7441 barely give a thought to the folks who prepare and deliver it 1 +137540 7441 give a thought to the folks who prepare and deliver it 2 +137541 7441 give a thought to the folks who prepare and 3 +137542 7441 give a thought to the folks who prepare 2 +137543 7441 give a thought 2 +137544 7441 a thought 2 +137545 7441 to the folks who prepare 2 +137546 7441 the folks who prepare 3 +137547 7441 the folks 2 +137548 7441 who prepare 2 +137549 7441 prepare 2 +137550 7441 deliver it 2 +137551 7441 , so , hopefully , this film will attach a human face to all those little steaming cartons . 3 +137552 7441 so , hopefully , this film will attach a human face to all those little steaming cartons . 3 +137553 7441 , hopefully , this film will attach a human face to all those little steaming cartons . 3 +137554 7441 hopefully , this film will attach a human face to all those little steaming cartons . 3 +137555 7441 , this film will attach a human face to all those little steaming cartons . 4 +137556 7441 this film will attach a human face to all those little steaming cartons . 3 +137557 7441 will attach a human face to all those little steaming cartons . 3 +137558 7441 will attach a human face to all those little steaming cartons 2 +137559 7441 attach a human face to all those little steaming cartons 2 +137560 7441 attach a human face 2 +137561 7441 attach 2 +137562 7441 to all those little steaming cartons 2 +137563 7441 all those little steaming cartons 2 +137564 7441 those little steaming cartons 2 +137565 7441 little steaming cartons 2 +137566 7441 steaming cartons 2 +137567 7441 cartons 2 +137568 7442 ... a pretentious and ultimately empty examination of a sick and evil woman . 1 +137569 7442 a pretentious and ultimately empty examination of a sick and evil woman . 1 +137570 7442 a pretentious and ultimately empty examination of a sick and evil woman 1 +137571 7442 a pretentious and ultimately empty examination 0 +137572 7442 a pretentious and 1 +137573 7442 ultimately empty examination 1 +137574 7442 of a sick and evil woman 3 +137575 7442 a sick and evil woman 1 +137576 7442 sick and evil woman 1 +137577 7442 sick and evil 2 +137578 7443 Sad to say -- it accurately reflects the rage and alienation that fuels the self-destructiveness of many young people . 3 +137579 7443 Sad to say -- it accurately reflects the rage and alienation that fuels the self-destructiveness of many young people 2 +137580 7443 Sad to say -- 1 +137581 7443 Sad to say 1 +137582 7443 it accurately reflects the rage and alienation that fuels the self-destructiveness of many young people 1 +137583 7443 accurately reflects the rage and alienation that fuels the self-destructiveness of many young people 3 +137584 7443 reflects the rage and alienation that fuels the self-destructiveness of many young people 2 +137585 7443 the rage and alienation that fuels the self-destructiveness of many young people 1 +137586 7443 the rage and alienation 2 +137587 7443 rage and alienation 1 +137588 7443 rage and 2 +137589 7443 that fuels the self-destructiveness of many young people 1 +137590 7443 fuels the self-destructiveness of many young people 1 +137591 7443 fuels 2 +137592 7443 the self-destructiveness of many young people 1 +137593 7443 the self-destructiveness 1 +137594 7443 self-destructiveness 0 +137595 7443 of many young people 2 +137596 7443 many young people 2 +137597 7444 The little girls understand , and McCracken knows that 's all that matters . 3 +137598 7444 The little girls understand , and McCracken knows that 's all that matters 2 +137599 7444 The little girls understand , and 2 +137600 7444 The little girls understand , 2 +137601 7444 The little girls understand 2 +137602 7444 The little girls 2 +137603 7444 little girls 2 +137604 7444 McCracken knows that 's all that matters 2 +137605 7444 McCracken 2 +137606 7444 knows that 's all that matters 2 +137607 7444 that 's all that matters 2 +137608 7444 's all that matters 2 +137609 7444 all that matters 3 +137610 7444 that matters 3 +137611 7445 An unfortunate title for a film that has nothing endearing about it . 0 +137612 7445 An unfortunate title for a film that has nothing 1 +137613 7445 An unfortunate title 1 +137614 7445 unfortunate title 1 +137615 7445 for a film that has nothing 0 +137616 7445 a film that has nothing 1 +137617 7445 that has nothing 1 +137618 7445 has nothing 1 +137619 7445 endearing about it . 3 +137620 7445 endearing about it 3 +137621 7446 Shame on writer\/director Vicente Aranda for making a florid biopic about mad queens , obsessive relationships , and rampant adultery so dull . 1 +137622 7446 Shame on writer\/director Vicente Aranda for making a florid biopic about mad queens , obsessive relationships , and rampant adultery so dull 1 +137623 7446 Shame on writer\/director Vicente Aranda 0 +137624 7446 on writer\/director Vicente Aranda 2 +137625 7446 writer\/director Vicente Aranda 2 +137626 7446 Vicente Aranda 2 +137627 7446 Vicente 2 +137628 7446 Aranda 2 +137629 7446 for making a florid biopic about mad queens , obsessive relationships , and rampant adultery so dull 1 +137630 7446 making a florid biopic about mad queens , obsessive relationships , and rampant adultery so dull 2 +137631 7446 a florid biopic about mad queens , obsessive relationships , and rampant adultery so dull 0 +137632 7446 a florid biopic about mad queens , obsessive relationships , and rampant adultery 1 +137633 7446 a florid biopic 2 +137634 7446 florid biopic 2 +137635 7446 about mad queens , obsessive relationships , and rampant adultery 3 +137636 7446 mad queens , obsessive relationships , and rampant adultery 2 +137637 7446 mad queens , obsessive relationships , and 2 +137638 7446 mad queens , obsessive relationships , 2 +137639 7446 mad queens , obsessive relationships 2 +137640 7446 mad queens , 2 +137641 7446 mad queens 2 +137642 7446 obsessive relationships 2 +137643 7446 rampant adultery 1 +137644 7446 adultery 0 +137645 7447 This is SO De Palma . 2 +137646 7447 is SO De Palma . 2 +137647 7447 is SO De Palma 3 +137648 7447 SO De Palma 2 +137649 7448 Spiderman ROCKS 4 +137650 7448 Spiderman 2 +137651 7449 Overcomes its visual hideousness with a sharp script and strong performances . 3 +137652 7449 Overcomes its visual hideousness with a sharp script and strong performances 2 +137653 7449 Overcomes its visual hideousness 1 +137654 7449 its visual hideousness 2 +137655 7449 visual hideousness 0 +137656 7449 hideousness 1 +137657 7449 with a sharp script and strong performances 4 +137658 7449 a sharp script and strong performances 4 +137659 7449 a sharp script and 3 +137660 7449 a sharp script 3 +137661 7449 sharp script 3 +137662 7450 Thriller directorial debut for Traffic scribe Gaghan has all the right parts , but the pieces do n't quite fit together . 2 +137663 7450 Thriller directorial debut for Traffic scribe Gaghan has all the right parts , but the pieces do n't quite fit together 1 +137664 7450 Thriller directorial debut for Traffic scribe Gaghan has all the right parts , but 3 +137665 7450 Thriller directorial debut for Traffic scribe Gaghan has all the right parts , 3 +137666 7450 Thriller directorial debut for Traffic scribe Gaghan has all the right parts 4 +137667 7450 Thriller directorial debut for Traffic scribe Gaghan 2 +137668 7450 Thriller directorial debut 2 +137669 7450 for Traffic scribe Gaghan 2 +137670 7450 Traffic scribe Gaghan 3 +137671 7450 scribe Gaghan 2 +137672 7450 has all the right parts 3 +137673 7450 all the right parts 3 +137674 7450 the right parts 2 +137675 7450 right parts 2 +137676 7450 the pieces do n't quite fit together 1 +137677 7450 do n't quite fit together 1 +137678 7450 do n't quite 2 +137679 7450 fit together 2 +137680 7451 Though there are many tense scenes in Trapped , they prove more distressing than suspenseful . 1 +137681 7451 Though there are many tense scenes in Trapped 2 +137682 7451 there are many tense scenes in Trapped 3 +137683 7451 are many tense scenes in Trapped 3 +137684 7451 many tense scenes in Trapped 3 +137685 7451 many tense scenes 2 +137686 7451 tense scenes 2 +137687 7451 in Trapped 1 +137688 7451 , they prove more distressing than suspenseful . 1 +137689 7451 they prove more distressing than suspenseful . 1 +137690 7451 prove more distressing than suspenseful . 2 +137691 7451 prove more distressing than suspenseful 2 +137692 7451 prove more distressing 1 +137693 7451 more distressing 2 +137694 7451 distressing 1 +137695 7451 than suspenseful 2 +137696 7452 ... works on some levels and is certainly worth seeing at least once . 3 +137697 7452 works on some levels and is certainly worth seeing at least once . 3 +137698 7452 works on some levels and is certainly worth seeing at least once 2 +137699 7452 works on some levels and 3 +137700 7452 works on some levels 3 +137701 7452 on some levels 1 +137702 7452 some levels 2 +137703 7452 is certainly worth seeing at least once 3 +137704 7452 worth seeing at least once 3 +137705 7452 seeing at least once 2 +137706 7452 seeing at least 2 +137707 7453 Does n't deliver a great story , nor is the action as gripping as in past Seagal films . 1 +137708 7453 Does n't deliver a great story , nor is the action as gripping as in past Seagal films 0 +137709 7453 Does n't deliver a great story , nor 1 +137710 7453 Does n't deliver a great story , 1 +137711 7453 Does n't deliver a great story 2 +137712 7453 deliver a great story 3 +137713 7453 is the action as gripping as in past Seagal films 2 +137714 7453 is the action as gripping 3 +137715 7453 the action as gripping 3 +137716 7453 as gripping 3 +137717 7453 as in past Seagal films 2 +137718 7453 in past Seagal films 2 +137719 7453 past Seagal films 2 +137720 7453 Seagal films 2 +137721 7454 For a guy who has waited three years with breathless anticipation for a new Hal Hartley movie to pore over , No Such Thing is a big letdown . 0 +137722 7454 For a guy who has waited three years with breathless anticipation for a new Hal Hartley movie to pore over 2 +137723 7454 a guy who has waited three years with breathless anticipation for a new Hal Hartley movie to pore over 3 +137724 7454 who has waited three years with breathless anticipation for a new Hal Hartley movie to pore over 2 +137725 7454 has waited three years with breathless anticipation for a new Hal Hartley movie to pore over 3 +137726 7454 waited three years with breathless anticipation for a new Hal Hartley movie to pore over 3 +137727 7454 waited three years with breathless anticipation for a new Hal Hartley movie 3 +137728 7454 waited three years 2 +137729 7454 three years 2 +137730 7454 with breathless anticipation for a new Hal Hartley movie 3 +137731 7454 breathless anticipation for a new Hal Hartley movie 2 +137732 7454 breathless anticipation 3 +137733 7454 anticipation 2 +137734 7454 for a new Hal Hartley movie 2 +137735 7454 a new Hal Hartley movie 2 +137736 7454 new Hal Hartley movie 2 +137737 7454 Hal Hartley movie 2 +137738 7454 Hartley movie 2 +137739 7454 to pore over 2 +137740 7454 pore over 2 +137741 7454 , No Such Thing is a big letdown . 2 +137742 7454 No Such Thing is a big letdown . 0 +137743 7454 is a big letdown . 1 +137744 7454 is a big letdown 1 +137745 7454 a big letdown 0 +137746 7454 big letdown 0 +137747 7455 Watching `` Ending '' is too often like looking over the outdated clothes and plastic knickknacks at your neighbor 's garage sale . 1 +137748 7455 Watching `` Ending '' 2 +137749 7455 `` Ending '' 2 +137750 7455 Ending '' 2 +137751 7455 is too often like looking over the outdated clothes and plastic knickknacks at your neighbor 's garage sale . 1 +137752 7455 is too often like looking over the outdated clothes and plastic knickknacks at your neighbor 's garage sale 1 +137753 7455 is too often 2 +137754 7455 like looking over the outdated clothes and plastic knickknacks at your neighbor 's garage sale 1 +137755 7455 looking over the outdated clothes and plastic knickknacks at your neighbor 's garage sale 1 +137756 7455 looking over the outdated clothes and plastic knickknacks 2 +137757 7455 looking over 2 +137758 7455 the outdated clothes and plastic knickknacks 1 +137759 7455 outdated clothes and plastic knickknacks 1 +137760 7455 clothes and plastic knickknacks 2 +137761 7455 and plastic knickknacks 1 +137762 7455 plastic knickknacks 2 +137763 7455 plastic 2 +137764 7455 knickknacks 2 +137765 7455 at your neighbor 's garage sale 1 +137766 7455 your neighbor 's garage sale 2 +137767 7455 garage sale 2 +137768 7455 garage 2 +137769 7455 sale 2 +137770 7456 Unfolds with such a wallop of you-are-there immediacy that when the bullets start to fly , your first instinct is to duck . 4 +137771 7456 Unfolds with such a wallop of you-are-there immediacy that when the bullets start to fly , your first instinct is to duck 1 +137772 7456 Unfolds with such a wallop of you-are-there immediacy 3 +137773 7456 with such a wallop of you-are-there immediacy 3 +137774 7456 such a wallop of you-are-there immediacy 3 +137775 7456 such a wallop 2 +137776 7456 a wallop 2 +137777 7456 of you-are-there immediacy 3 +137778 7456 you-are-there immediacy 3 +137779 7456 you-are-there 2 +137780 7456 that when the bullets start to fly , your first instinct is to duck 2 +137781 7456 when the bullets start to fly , your first instinct is to duck 3 +137782 7456 when the bullets start to fly 2 +137783 7456 the bullets start to fly 2 +137784 7456 start to fly 2 +137785 7456 to fly 2 +137786 7456 , your first instinct is to duck 2 +137787 7456 your first instinct is to duck 1 +137788 7456 your first instinct 3 +137789 7456 first instinct 2 +137790 7456 is to duck 2 +137791 7456 to duck 2 +137792 7457 The reason to see `` Sade '' lay with the chemistry and complex relationship between the marquis -LRB- Auteil -RRB- and Emilie -LRB- Le Besco -RRB- . 2 +137793 7457 The reason to see `` Sade '' 2 +137794 7457 reason to see `` Sade '' 2 +137795 7457 to see `` Sade '' 2 +137796 7457 see `` Sade '' 2 +137797 7457 `` Sade '' 2 +137798 7457 Sade '' 2 +137799 7457 lay with the chemistry and complex relationship between the marquis -LRB- Auteil -RRB- and Emilie -LRB- Le Besco -RRB- . 2 +137800 7457 lay with the chemistry and complex relationship between the marquis -LRB- Auteil -RRB- and Emilie -LRB- Le Besco -RRB- 3 +137801 7457 lay 2 +137802 7457 with the chemistry and complex relationship between the marquis -LRB- Auteil -RRB- and Emilie -LRB- Le Besco -RRB- 2 +137803 7457 the chemistry and complex relationship between the marquis -LRB- Auteil -RRB- and Emilie -LRB- Le Besco -RRB- 3 +137804 7457 the chemistry and complex relationship 3 +137805 7457 chemistry and complex relationship 2 +137806 7457 and complex relationship 2 +137807 7457 complex relationship 2 +137808 7457 between the marquis -LRB- Auteil -RRB- and Emilie -LRB- Le Besco -RRB- 2 +137809 7457 the marquis -LRB- Auteil -RRB- and Emilie -LRB- Le Besco -RRB- 2 +137810 7457 the marquis -LRB- Auteil -RRB- and Emilie 2 +137811 7457 the marquis -LRB- Auteil -RRB- and 2 +137812 7457 the marquis -LRB- Auteil -RRB- 2 +137813 7457 the marquis 2 +137814 7457 -LRB- Auteil -RRB- 2 +137815 7457 Auteil -RRB- 2 +137816 7457 Emilie 2 +137817 7457 -LRB- Le Besco -RRB- 2 +137818 7457 Le Besco -RRB- 2 +137819 7457 Le Besco 2 +137820 7457 Besco 2 +137821 7458 Still rapturous after all these years , Cinema Paradiso stands as one of the great films about movie love . 4 +137822 7458 Still rapturous after all these years 4 +137823 7458 rapturous after all these years 2 +137824 7458 rapturous 1 +137825 7458 , Cinema Paradiso stands as one of the great films about movie love . 4 +137826 7458 Cinema Paradiso stands as one of the great films about movie love . 4 +137827 7458 stands as one of the great films about movie love . 4 +137828 7458 stands as one of the great films about movie love 4 +137829 7458 as one of the great films about movie love 4 +137830 7458 one of the great films about movie love 4 +137831 7458 of the great films about movie love 3 +137832 7458 the great films about movie love 3 +137833 7458 the great films 3 +137834 7458 about movie love 3 +137835 7458 movie love 3 +137836 7459 A passable romantic comedy , in need of another couple of passes through the word processor . 2 +137837 7459 A passable romantic comedy , in need of another couple of 3 +137838 7459 A passable romantic comedy , 2 +137839 7459 passable romantic comedy , 2 +137840 7459 passable romantic 2 +137841 7459 in need of another couple of 2 +137842 7459 need of another couple of 2 +137843 7459 of another couple of 2 +137844 7459 another couple of 2 +137845 7459 another couple 2 +137846 7459 passes through the word processor . 2 +137847 7459 passes through the word processor 2 +137848 7459 through the word processor 2 +137849 7459 the word processor 2 +137850 7459 word processor 2 +137851 7460 An enjoyable comedy 4 +137852 7460 enjoyable comedy 4 +137853 7460 lingual and cultural differences ... 2 +137854 7460 lingual and cultural differences 2 +137855 7460 lingual and cultural 2 +137856 7460 lingual and 2 +137857 7460 lingual 2 +137858 7460 is a film -- full of life and small delights -- that has all the wiggling energy of young kitten . 3 +137859 7460 is a film -- full of life and small delights -- that has all the wiggling energy of young kitten 3 +137860 7460 a film -- full of life and small delights -- that has all the wiggling energy of young kitten 4 +137861 7460 a film -- full of life and small delights -- 4 +137862 7460 -- full of life and small delights -- 3 +137863 7460 full of life and small delights -- 4 +137864 7460 full of life and small delights 4 +137865 7460 of life and small delights 3 +137866 7460 life and small delights 3 +137867 7460 and small delights 3 +137868 7460 small delights 3 +137869 7460 that has all the wiggling energy of young kitten 2 +137870 7460 has all the wiggling energy of young kitten 3 +137871 7460 all the wiggling energy of young kitten 2 +137872 7460 all the wiggling energy 3 +137873 7460 the wiggling energy 2 +137874 7460 wiggling energy 3 +137875 7460 wiggling 2 +137876 7460 of young kitten 2 +137877 7460 young kitten 2 +137878 7461 The gifted Crudup has the perfect face to play a handsome blank yearning to find himself , and his cipherlike personality and bad behavior would play fine if the movie knew what to do with him . 1 +137879 7461 The gifted Crudup has the perfect face to play a handsome blank yearning to find himself , and his cipherlike personality and bad behavior would play fine if the movie knew what to do with him 2 +137880 7461 The gifted Crudup has the perfect face to play a handsome blank yearning to find himself , and 3 +137881 7461 The gifted Crudup has the perfect face to play a handsome blank yearning to find himself , 3 +137882 7461 The gifted Crudup has the perfect face to play a handsome blank yearning to find himself 3 +137883 7461 The gifted Crudup 2 +137884 7461 gifted Crudup 2 +137885 7461 has the perfect face to play a handsome blank yearning to find himself 3 +137886 7461 the perfect face to play a handsome blank yearning to find himself 3 +137887 7461 perfect face to play a handsome blank yearning to find himself 2 +137888 7461 face to play a handsome blank yearning to find himself 2 +137889 7461 to play a handsome blank yearning to find himself 2 +137890 7461 play a handsome blank yearning to find himself 2 +137891 7461 play a handsome blank yearning 2 +137892 7461 a handsome blank yearning 2 +137893 7461 handsome blank yearning 2 +137894 7461 blank yearning 1 +137895 7461 to find himself 2 +137896 7461 find himself 2 +137897 7461 his cipherlike personality and bad behavior would play fine if the movie knew what to do with him 1 +137898 7461 his cipherlike personality and bad behavior 2 +137899 7461 his cipherlike personality and 2 +137900 7461 his cipherlike personality 2 +137901 7461 cipherlike personality 2 +137902 7461 cipherlike 2 +137903 7461 bad behavior 0 +137904 7461 would play fine if the movie knew what to do with him 2 +137905 7461 play fine if the movie knew what to do with him 2 +137906 7461 play fine 3 +137907 7461 if the movie knew what to do with him 1 +137908 7461 the movie knew what to do with him 3 +137909 7461 knew what to do with him 2 +137910 7461 what to do with him 2 +137911 7461 to do with him 2 +137912 7461 do with him 2 +137913 7462 This film is an act of spiritual faith -- an eloquent , deeply felt meditation on the nature of compassion . 3 +137914 7462 is an act of spiritual faith -- an eloquent , deeply felt meditation on the nature of compassion . 4 +137915 7462 is an act of spiritual faith -- an eloquent , deeply felt meditation on the nature of compassion 3 +137916 7462 an act of spiritual faith -- an eloquent , deeply felt meditation on the nature of compassion 3 +137917 7462 an act of spiritual faith -- 2 +137918 7462 an act of spiritual faith 3 +137919 7462 of spiritual faith 2 +137920 7462 spiritual faith 2 +137921 7462 an eloquent , deeply felt meditation on the nature of compassion 3 +137922 7462 an eloquent , deeply felt meditation 3 +137923 7462 eloquent , deeply felt meditation 3 +137924 7462 eloquent , deeply felt 3 +137925 7462 , deeply felt 3 +137926 7462 deeply felt 2 +137927 7462 on the nature of compassion 2 +137928 7462 the nature of compassion 3 +137929 7462 of compassion 2 +137930 7463 Feels aimless for much of its running time , until late in the film when a tidal wave of plot arrives , leaving questions in its wake . 1 +137931 7463 aimless for much of its running time , until late in the film when a tidal wave of plot arrives , leaving questions in its wake . 2 +137932 7463 aimless for much of its running time , until late in the film when a tidal wave of plot arrives , leaving questions in its wake 2 +137933 7463 aimless for much of its running time , until late in the film when a tidal wave of plot arrives , 2 +137934 7463 aimless for much of its running time , until late in the film when a tidal wave of plot arrives 1 +137935 7463 aimless for much of its running time , 1 +137936 7463 aimless for much of its running time 0 +137937 7463 for much of its running time 2 +137938 7463 much of its running time 2 +137939 7463 until late in the film when a tidal wave of plot arrives 2 +137940 7463 late in the film when a tidal wave of plot arrives 2 +137941 7463 in the film when a tidal wave of plot arrives 2 +137942 7463 the film when a tidal wave of plot arrives 2 +137943 7463 when a tidal wave of plot arrives 2 +137944 7463 a tidal wave of plot arrives 2 +137945 7463 a tidal wave of plot 3 +137946 7463 a tidal wave 2 +137947 7463 tidal wave 2 +137948 7463 tidal 3 +137949 7463 leaving questions in its wake 1 +137950 7463 leaving questions 2 +137951 7464 Although Estela Bravo 's documentary is cloyingly hagiographic in its portrait of Cuban leader Fidel Castro , it 's still a guilty pleasure to watch . 3 +137952 7464 Although Estela Bravo 's documentary is cloyingly hagiographic in its portrait of Cuban leader Fidel Castro 1 +137953 7464 Estela Bravo 's documentary is cloyingly hagiographic in its portrait of Cuban leader Fidel Castro 3 +137954 7464 Estela Bravo 's documentary 2 +137955 7464 Estela Bravo 's 2 +137956 7464 Estela 2 +137957 7464 Bravo 's 3 +137958 7464 is cloyingly hagiographic in its portrait of Cuban leader Fidel Castro 2 +137959 7464 cloyingly hagiographic in its portrait of Cuban leader Fidel Castro 2 +137960 7464 hagiographic in its portrait of Cuban leader Fidel Castro 2 +137961 7464 hagiographic 2 +137962 7464 in its portrait of Cuban leader Fidel Castro 2 +137963 7464 its portrait of Cuban leader Fidel Castro 2 +137964 7464 its portrait 2 +137965 7464 of Cuban leader Fidel Castro 1 +137966 7464 Cuban leader Fidel Castro 2 +137967 7464 leader Fidel Castro 2 +137968 7464 leader 2 +137969 7464 Fidel Castro 1 +137970 7464 Fidel 2 +137971 7464 , it 's still a guilty pleasure to watch . 3 +137972 7464 it 's still a guilty pleasure to watch . 3 +137973 7464 's still a guilty pleasure to watch . 3 +137974 7464 's still a guilty pleasure to watch 3 +137975 7464 a guilty pleasure to watch 3 +137976 7464 guilty pleasure to watch 2 +137977 7465 for those for whom the name Woody Allen was once a guarantee of something fresh , sometimes funny , and usually genuinely worthwhile , Hollywood Ending is a depressing experience 0 +137978 7465 for those for whom the name Woody Allen was once a guarantee of something fresh , sometimes funny , and usually genuinely worthwhile 2 +137979 7465 those for whom the name Woody Allen was once a guarantee of something fresh , sometimes funny , and usually genuinely worthwhile 2 +137980 7465 for whom the name Woody Allen was once a guarantee of something fresh , sometimes funny , and usually genuinely worthwhile 2 +137981 7465 whom the name Woody Allen was once a guarantee of something fresh , sometimes funny , and usually genuinely worthwhile 3 +137982 7465 whom the name 2 +137983 7465 whom the 3 +137984 7465 Woody Allen was once a guarantee of something fresh , sometimes funny , and usually genuinely worthwhile 2 +137985 7465 was once a guarantee of something fresh , sometimes funny , and usually genuinely worthwhile 2 +137986 7465 was once a guarantee of something 2 +137987 7465 once a guarantee of something 2 +137988 7465 once a guarantee 2 +137989 7465 a guarantee 3 +137990 7465 fresh , sometimes funny , and usually genuinely worthwhile 4 +137991 7465 fresh , sometimes funny , and 3 +137992 7465 fresh , sometimes funny , 3 +137993 7465 fresh , sometimes funny 3 +137994 7465 fresh , 4 +137995 7465 usually genuinely worthwhile 3 +137996 7465 genuinely worthwhile 3 +137997 7465 , Hollywood Ending is a depressing experience 0 +137998 7465 Hollywood Ending is a depressing experience 1 +137999 7465 is a depressing experience 1 +138000 7465 a depressing experience 1 +138001 7465 depressing experience 2 +138002 7466 Even if you 're an agnostic carnivore , you can enjoy much of Jonah simply , and gratefully , as laugh-out-loud lunacy with a pronounced Monty Pythonesque flavor . 3 +138003 7466 Even if you 're an agnostic carnivore 2 +138004 7466 if you 're an agnostic carnivore 2 +138005 7466 you 're an agnostic carnivore 1 +138006 7466 're an agnostic carnivore 2 +138007 7466 an agnostic carnivore 2 +138008 7466 agnostic carnivore 2 +138009 7466 agnostic 2 +138010 7466 carnivore 2 +138011 7466 , you can enjoy much of Jonah simply , and gratefully , as laugh-out-loud lunacy with a pronounced Monty Pythonesque flavor . 4 +138012 7466 you can enjoy much of Jonah simply , and gratefully , as laugh-out-loud lunacy with a pronounced Monty Pythonesque flavor . 4 +138013 7466 can enjoy much of Jonah simply , and gratefully , as laugh-out-loud lunacy with a pronounced Monty Pythonesque flavor . 4 +138014 7466 can enjoy much of Jonah simply , and gratefully , as laugh-out-loud lunacy with a pronounced Monty Pythonesque flavor 4 +138015 7466 enjoy much of Jonah simply , and gratefully , as laugh-out-loud lunacy with a pronounced Monty Pythonesque flavor 3 +138016 7466 enjoy much of Jonah simply , and gratefully , 3 +138017 7466 much of Jonah simply , and gratefully , 3 +138018 7466 much of Jonah simply , and gratefully 3 +138019 7466 much of Jonah simply , and 2 +138020 7466 much of Jonah simply , 2 +138021 7466 much of Jonah simply 2 +138022 7466 of Jonah simply 2 +138023 7466 of Jonah 2 +138024 7466 as laugh-out-loud lunacy with a pronounced Monty Pythonesque flavor 4 +138025 7466 laugh-out-loud lunacy with a pronounced Monty Pythonesque flavor 3 +138026 7466 laugh-out-loud lunacy 3 +138027 7466 with a pronounced Monty Pythonesque flavor 3 +138028 7466 a pronounced Monty Pythonesque flavor 2 +138029 7466 pronounced Monty Pythonesque flavor 2 +138030 7466 pronounced 2 +138031 7466 Monty Pythonesque flavor 2 +138032 7466 Pythonesque flavor 2 +138033 7466 Pythonesque 2 +138034 7467 Though it was made with careful attention to detail and is well-acted by James Spader and Maggie Gyllenhaal , I felt disrespected . 2 +138035 7467 Though it was made with careful attention to detail and is well-acted by James Spader and Maggie Gyllenhaal 3 +138036 7467 it was made with careful attention to detail and is well-acted by James Spader and Maggie Gyllenhaal 3 +138037 7467 was made with careful attention to detail and is well-acted by James Spader and Maggie Gyllenhaal 4 +138038 7467 was made with careful attention to detail and 3 +138039 7467 was made with careful attention to detail 3 +138040 7467 made with careful attention to detail 4 +138041 7467 made with careful attention 3 +138042 7467 with careful attention 2 +138043 7467 careful attention 2 +138044 7467 is well-acted by James Spader and Maggie Gyllenhaal 4 +138045 7467 well-acted by James Spader and Maggie Gyllenhaal 3 +138046 7467 by James Spader and Maggie Gyllenhaal 2 +138047 7467 James Spader and Maggie Gyllenhaal 2 +138048 7467 James Spader and 2 +138049 7467 James Spader 3 +138050 7467 Maggie Gyllenhaal 3 +138051 7467 , I felt disrespected . 1 +138052 7467 I felt disrespected . 0 +138053 7467 felt disrespected . 1 +138054 7467 felt disrespected 1 +138055 7467 disrespected 1 +138056 7468 How this one escaped the Lifetime network I 'll never know . 1 +138057 7468 How this one escaped the Lifetime network 2 +138058 7468 this one escaped the Lifetime network 2 +138059 7468 escaped the Lifetime network 2 +138060 7468 the Lifetime network 2 +138061 7468 Lifetime network 2 +138062 7468 I 'll never know . 2 +138063 7468 'll never know . 2 +138064 7468 'll never know 2 +138065 7469 A bit too derivative to stand on its own as the psychological thriller it purports to be . 2 +138066 7469 too derivative to stand on its own as the psychological thriller it purports to be . 2 +138067 7469 derivative to stand on its own as the psychological thriller it purports to be . 2 +138068 7469 derivative to stand on its own as the psychological thriller it purports to be 1 +138069 7469 to stand on its own as the psychological thriller it purports to be 2 +138070 7469 stand on its own as the psychological thriller it purports to be 2 +138071 7469 stand on its own 2 +138072 7469 as the psychological thriller it purports to be 2 +138073 7469 the psychological thriller it purports to be 2 +138074 7469 the psychological thriller 2 +138075 7469 it purports to be 2 +138076 7469 purports to be 2 +138077 7470 By the standards of knucklehead swill , The Hot Chick is pretty damned funny . 4 +138078 7470 By the standards of knucklehead swill 0 +138079 7470 the standards of knucklehead swill 1 +138080 7470 the standards 2 +138081 7470 of knucklehead swill 1 +138082 7470 knucklehead swill 1 +138083 7470 knucklehead 1 +138084 7470 , The Hot Chick is pretty damned funny . 4 +138085 7470 The Hot Chick is pretty damned funny . 3 +138086 7470 is pretty damned funny . 4 +138087 7470 is pretty damned funny 4 +138088 7470 pretty damned funny 3 +138089 7470 damned funny 3 +138090 7471 Cuaron repeatedly , perversely undercuts the joie de vivre even as he creates it , giving the movie a mournful undercurrent that places the good-time shenanigans in welcome perspective . 4 +138091 7471 Cuaron repeatedly 1 +138092 7471 , perversely undercuts the joie de vivre even as he creates it , giving the movie a mournful undercurrent that places the good-time shenanigans in welcome perspective . 3 +138093 7471 perversely undercuts the joie de vivre even as he creates it , giving the movie a mournful undercurrent that places the good-time shenanigans in welcome perspective . 4 +138094 7471 perversely 1 +138095 7471 undercuts the joie de vivre even as he creates it , giving the movie a mournful undercurrent that places the good-time shenanigans in welcome perspective . 3 +138096 7471 undercuts the joie de vivre even as he creates it , giving the movie a mournful undercurrent that places the good-time shenanigans in welcome perspective 3 +138097 7471 undercuts the joie de vivre even as he creates it , 2 +138098 7471 undercuts the joie de vivre even as he creates it 3 +138099 7471 undercuts the joie de vivre even as he creates 1 +138100 7471 the joie de vivre even as he creates 3 +138101 7471 the joie de 2 +138102 7471 joie de 2 +138103 7471 vivre even as he creates 2 +138104 7471 even as he creates 2 +138105 7471 as he creates 3 +138106 7471 giving the movie a mournful undercurrent that places the good-time shenanigans in welcome perspective 3 +138107 7471 giving the movie 2 +138108 7471 a mournful undercurrent that places the good-time shenanigans in welcome perspective 3 +138109 7471 a mournful undercurrent 1 +138110 7471 mournful undercurrent 2 +138111 7471 mournful 1 +138112 7471 that places the good-time shenanigans in welcome perspective 3 +138113 7471 places the good-time shenanigans in welcome perspective 3 +138114 7471 the good-time shenanigans in welcome perspective 4 +138115 7471 the good-time shenanigans 4 +138116 7471 good-time shenanigans 3 +138117 7471 good-time 4 +138118 7471 in welcome perspective 4 +138119 7471 welcome perspective 3 +138120 7472 Every visual joke is milked , every set-up obvious and lengthy , every punchline predictable . 1 +138121 7472 Every visual joke is milked , every set-up obvious and lengthy , every punchline predictable 1 +138122 7472 Every visual joke is milked , every set-up obvious and lengthy , 0 +138123 7472 Every visual joke is milked , every set-up obvious and lengthy 1 +138124 7472 Every visual joke is milked , 1 +138125 7472 Every visual joke is milked 1 +138126 7472 Every visual joke 2 +138127 7472 visual joke 2 +138128 7472 is milked 1 +138129 7472 milked 1 +138130 7472 every set-up obvious and lengthy 2 +138131 7472 every set-up 2 +138132 7472 obvious and lengthy 1 +138133 7472 obvious and 2 +138134 7472 every punchline predictable 1 +138135 7472 every punchline 2 +138136 7472 punchline 2 +138137 7474 I prefer to think of it as `` Pootie Tang with a budget . '' 2 +138138 7474 prefer to think of it as `` Pootie Tang with a budget . '' 2 +138139 7474 prefer to think of it as `` Pootie Tang with a budget . 2 +138140 7474 prefer to think of it as `` Pootie Tang with a budget 2 +138141 7474 to think of it as `` Pootie Tang with a budget 2 +138142 7474 think of it as `` Pootie Tang with a budget 2 +138143 7474 as `` Pootie Tang with a budget 2 +138144 7474 Pootie Tang with a budget 1 +138145 7474 with a budget 2 +138146 7474 a budget 2 +138147 7475 Ranges from laugh-out-loud hilarious to wonder-what - time-it-is tedious . 2 +138148 7475 Ranges from laugh-out-loud hilarious to wonder-what - time-it-is tedious 2 +138149 7475 Ranges from laugh-out-loud hilarious to wonder-what - 3 +138150 7475 Ranges from laugh-out-loud hilarious to wonder-what 3 +138151 7475 Ranges from laugh-out-loud 3 +138152 7475 from laugh-out-loud 3 +138153 7475 hilarious to wonder-what 2 +138154 7475 to wonder-what 2 +138155 7475 wonder-what 2 +138156 7475 time-it-is tedious 1 +138157 7475 time-it-is 2 +138158 7476 A reminder that beyond all the hype and recent digital glitz , Spielberg knows how to tell us about people . 4 +138159 7476 A reminder that beyond all the hype and recent digital glitz 2 +138160 7476 A reminder that 2 +138161 7476 beyond all the hype and recent digital glitz 2 +138162 7476 all the hype and recent digital glitz 2 +138163 7476 all the hype and 2 +138164 7476 all the hype 2 +138165 7476 recent digital glitz 2 +138166 7476 digital glitz 2 +138167 7476 , Spielberg knows how to tell us about people . 3 +138168 7476 Spielberg knows how to tell us about people . 4 +138169 7476 knows how to tell us about people . 3 +138170 7476 knows how to tell us about people 3 +138171 7476 how to tell us about people 2 +138172 7476 to tell us about people 2 +138173 7476 tell us about people 2 +138174 7476 tell us 2 +138175 7476 about people 2 +138176 7477 A fast paced and suspenseful Argentinian thriller about the shadow side of play . 3 +138177 7477 A fast paced and suspenseful Argentinian thriller about the shadow side of play 4 +138178 7477 A fast paced and suspenseful Argentinian thriller about the shadow side 4 +138179 7477 A fast paced and suspenseful Argentinian thriller 4 +138180 7477 fast paced and suspenseful Argentinian thriller 4 +138181 7477 paced and suspenseful Argentinian thriller 4 +138182 7477 and suspenseful Argentinian thriller 3 +138183 7477 suspenseful Argentinian thriller 3 +138184 7477 Argentinian thriller 3 +138185 7477 Argentinian 2 +138186 7477 about the shadow side 2 +138187 7477 of play 2 +138188 7478 Ryan Gosling is , in a word , brilliant as the conflicted Daniel . 4 +138189 7478 is , in a word , brilliant as the conflicted Daniel . 4 +138190 7478 is , in a word , brilliant as the conflicted Daniel 3 +138191 7478 is , in a word , brilliant 4 +138192 7478 is , in a word , 2 +138193 7478 is , in a word 2 +138194 7478 as the conflicted Daniel 2 +138195 7478 the conflicted Daniel 2 +138196 7478 conflicted Daniel 2 +138197 7479 It 's a visual delight and a decent popcorn adventure , as long as you do n't try to look too deep into the story 3 +138198 7479 's a visual delight and a decent popcorn adventure , as long as you do n't try to look too deep into the story 2 +138199 7479 's a visual delight and a decent popcorn adventure , 3 +138200 7479 's a visual delight and a decent popcorn adventure 3 +138201 7479 a visual delight and a decent popcorn adventure 3 +138202 7479 a visual delight and 4 +138203 7479 a visual delight 4 +138204 7479 visual delight 4 +138205 7479 a decent popcorn adventure 3 +138206 7479 decent popcorn adventure 3 +138207 7479 popcorn adventure 3 +138208 7479 as long as you do n't try to look too deep into the story 2 +138209 7479 as you do n't try to look too deep into the story 2 +138210 7479 you do n't try to look too deep into the story 1 +138211 7479 do n't try to look too deep into the story 2 +138212 7479 try to look too deep into the story 2 +138213 7479 to look too deep into the story 2 +138214 7479 look too deep into the story 1 +138215 7479 look too deep 2 +138216 7479 too deep 1 +138217 7480 Possibly the most irresponsible picture ever released by a major film studio . 1 +138218 7480 the most irresponsible picture ever released by a major film studio . 0 +138219 7480 the most irresponsible picture 2 +138220 7480 most irresponsible picture 2 +138221 7480 most irresponsible 1 +138222 7480 ever released by a major film studio . 3 +138223 7480 ever released by a major film studio 2 +138224 7480 released by a major film studio 2 +138225 7480 by a major film studio 2 +138226 7480 a major film studio 2 +138227 7480 major film studio 2 +138228 7480 film studio 2 +138229 7481 Steven Spielberg brings us another masterpiece 4 +138230 7481 brings us another masterpiece 4 +138231 7481 brings us 2 +138232 7481 another masterpiece 4 +138233 7482 While the frequent allusions to gurus and doshas will strike some Westerners as verging on mumbo-jumbo ... broad streaks of common sense emerge with unimpeachable clarity . 3 +138234 7482 While the frequent allusions to gurus and doshas will strike some Westerners as verging on mumbo-jumbo 1 +138235 7482 the frequent allusions to gurus and doshas will strike some Westerners as verging on mumbo-jumbo 1 +138236 7482 the frequent allusions to gurus and doshas 2 +138237 7482 the frequent allusions 3 +138238 7482 frequent allusions 2 +138239 7482 to gurus and doshas 2 +138240 7482 gurus and doshas 2 +138241 7482 gurus and 2 +138242 7482 gurus 2 +138243 7482 doshas 2 +138244 7482 will strike some Westerners as verging on mumbo-jumbo 1 +138245 7482 strike some Westerners as verging on mumbo-jumbo 1 +138246 7482 strike some Westerners 2 +138247 7482 some Westerners 2 +138248 7482 as verging on mumbo-jumbo 2 +138249 7482 verging on mumbo-jumbo 1 +138250 7482 verging 2 +138251 7482 on mumbo-jumbo 2 +138252 7482 mumbo-jumbo 2 +138253 7482 ... broad streaks of common sense emerge with unimpeachable clarity . 3 +138254 7482 broad streaks of common sense emerge with unimpeachable clarity . 3 +138255 7482 broad streaks of common sense emerge with unimpeachable clarity 3 +138256 7482 broad streaks of common sense 3 +138257 7482 broad streaks 2 +138258 7482 streaks 2 +138259 7482 of common sense 3 +138260 7482 emerge with unimpeachable clarity 3 +138261 7482 with unimpeachable clarity 3 +138262 7482 unimpeachable clarity 3 +138263 7482 unimpeachable 1 +138264 7483 Old-fashioned but thoroughly satisfying entertainment . 3 +138265 7483 Old-fashioned but thoroughly satisfying entertainment 3 +138266 7483 but thoroughly satisfying entertainment 4 +138267 7483 thoroughly satisfying entertainment 4 +138268 7483 thoroughly satisfying 4 +138269 7484 Told just proficiently enough to trounce its overly comfortable trappings . 3 +138270 7484 Told just 2 +138271 7484 proficiently enough to trounce its overly comfortable trappings . 2 +138272 7484 proficiently enough to trounce its overly comfortable trappings 3 +138273 7484 proficiently 2 +138274 7484 enough to trounce its overly comfortable trappings 2 +138275 7484 to trounce its overly comfortable trappings 2 +138276 7484 trounce its overly comfortable trappings 2 +138277 7484 trounce 2 +138278 7484 its overly comfortable trappings 2 +138279 7484 overly comfortable trappings 2 +138280 7484 overly comfortable 2 +138281 7485 City by the Sea is a gritty police thriller with all the dysfunctional family dynamics one could wish for . 3 +138282 7485 City by the Sea 2 +138283 7485 is a gritty police thriller with all the dysfunctional family dynamics one could wish for . 4 +138284 7485 is a gritty police thriller with all the dysfunctional family dynamics one could wish for 3 +138285 7485 a gritty police thriller with all the dysfunctional family dynamics one could wish for 3 +138286 7485 a gritty police thriller 3 +138287 7485 gritty police thriller 3 +138288 7485 police thriller 2 +138289 7485 with all the dysfunctional family dynamics one could wish for 3 +138290 7485 all the dysfunctional family dynamics one could wish for 2 +138291 7485 all the dysfunctional family dynamics 2 +138292 7485 the dysfunctional family dynamics 2 +138293 7485 dysfunctional family dynamics 2 +138294 7485 family dynamics 3 +138295 7485 one could wish for 2 +138296 7485 could wish for 2 +138297 7486 Sets animation back 30 years , musicals back 40 years and Judaism back at least 50 . 0 +138298 7486 animation back 30 years , musicals back 40 years and Judaism back at least 50 . 2 +138299 7486 animation back 30 years , musicals back 40 years and Judaism back at least 50 1 +138300 7486 animation back 30 years , musicals back 40 years and 1 +138301 7486 animation back 30 years , musicals back 40 years 2 +138302 7486 animation back 30 years , 1 +138303 7486 animation back 30 years 1 +138304 7486 animation back 2 +138305 7486 30 years 2 +138306 7486 musicals back 40 years 3 +138307 7486 musicals back 3 +138308 7486 40 years 2 +138309 7486 Judaism back at least 50 2 +138310 7486 Judaism 2 +138311 7486 back at least 50 2 +138312 7486 at least 50 2 +138313 7486 50 2 +138314 7487 Not kids , who do n't need the lesson in repugnance . 2 +138315 7487 Not kids , who do n't 2 +138316 7487 Not kids , 2 +138317 7487 Not kids 2 +138318 7487 who do n't 2 +138319 7487 need the lesson in repugnance . 1 +138320 7487 need the lesson in repugnance 2 +138321 7487 the lesson in repugnance 1 +138322 7487 the lesson 2 +138323 7487 in repugnance 2 +138324 7487 repugnance 1 +138325 7488 under-rehearsed and lifeless 0 +138326 7488 under-rehearsed and 0 +138327 7488 under-rehearsed 1 +138328 7489 The film ultimately offers nothing more than people in an urban jungle needing other people to survive ... 1 +138329 7489 ultimately offers nothing more than people in an urban jungle needing other people to survive ... 2 +138330 7489 ultimately offers nothing more than people in an urban jungle needing other people to survive 0 +138331 7489 offers nothing more than people in an urban jungle needing other people to survive 2 +138332 7489 more than people in an urban jungle needing other people to survive 2 +138333 7489 more than people 3 +138334 7489 than people 2 +138335 7489 in an urban jungle needing other people to survive 2 +138336 7489 an urban jungle needing other people to survive 2 +138337 7489 an urban jungle 2 +138338 7489 urban jungle 2 +138339 7489 jungle 2 +138340 7489 needing other people to survive 2 +138341 7489 needing other people 1 +138342 7489 needing 2 +138343 7489 other people 2 +138344 7489 to survive 2 +138345 7490 ... `` Bowling for Columbine '' remains a disquieting and thought-provoking film ... 3 +138346 7490 `` Bowling for Columbine '' remains a disquieting and thought-provoking film ... 4 +138347 7490 Bowling for Columbine '' remains a disquieting and thought-provoking film ... 3 +138348 7490 '' remains a disquieting and thought-provoking film ... 3 +138349 7490 remains a disquieting and thought-provoking film ... 2 +138350 7490 remains a disquieting and thought-provoking film 3 +138351 7490 a disquieting and thought-provoking film 3 +138352 7490 disquieting and thought-provoking film 3 +138353 7490 and thought-provoking film 4 +138354 7491 The byplay and bickering between the now spy-savvy siblings , Carmen -LRB- Vega -RRB- and Juni -LRB- Sabara -RRB- Cortez , anchor the film in a very real and amusing give-and-take . 4 +138355 7491 The byplay and bickering between the now spy-savvy siblings , Carmen -LRB- Vega -RRB- and Juni -LRB- Sabara -RRB- Cortez , 2 +138356 7491 The byplay and bickering 2 +138357 7491 byplay and bickering 2 +138358 7491 byplay and 2 +138359 7491 byplay 2 +138360 7491 bickering 2 +138361 7491 between the now spy-savvy siblings , Carmen -LRB- Vega -RRB- and Juni -LRB- Sabara -RRB- Cortez , 2 +138362 7491 the now spy-savvy siblings , Carmen -LRB- Vega -RRB- and Juni -LRB- Sabara -RRB- Cortez , 2 +138363 7491 the now spy-savvy siblings , Carmen -LRB- Vega -RRB- and Juni -LRB- Sabara -RRB- Cortez 2 +138364 7491 the now spy-savvy siblings , 2 +138365 7491 the now spy-savvy siblings 2 +138366 7491 now spy-savvy siblings 2 +138367 7491 spy-savvy siblings 3 +138368 7491 spy-savvy 2 +138369 7491 siblings 2 +138370 7491 Carmen -LRB- Vega -RRB- and Juni -LRB- Sabara -RRB- Cortez 2 +138371 7491 Carmen -LRB- Vega -RRB- and 3 +138372 7491 Carmen -LRB- Vega -RRB- 2 +138373 7491 -LRB- Vega -RRB- 2 +138374 7491 Vega -RRB- 2 +138375 7491 Vega 2 +138376 7491 Juni -LRB- Sabara -RRB- Cortez 2 +138377 7491 Juni 2 +138378 7491 -LRB- Sabara -RRB- Cortez 2 +138379 7491 -LRB- Sabara -RRB- 2 +138380 7491 Sabara -RRB- 2 +138381 7491 Sabara 2 +138382 7491 Cortez 2 +138383 7491 anchor the film in a very real and amusing give-and-take . 3 +138384 7491 anchor the film in a very real and amusing give-and-take 3 +138385 7491 anchor 2 +138386 7491 the film in a very real and amusing give-and-take 3 +138387 7491 in a very real and amusing give-and-take 3 +138388 7491 a very real and amusing give-and-take 4 +138389 7491 very real and amusing give-and-take 3 +138390 7491 very real and amusing 4 +138391 7491 real and amusing 3 +138392 7491 real and 3 +138393 7491 give-and-take 2 +138394 7492 Melodrama with a message . 2 +138395 7492 Melodrama with a message 3 +138396 7492 with a message 3 +138397 7493 The Sweetest Thing leaves an awful sour taste . 1 +138398 7493 leaves an awful sour taste . 2 +138399 7493 leaves an awful sour taste 0 +138400 7493 an awful sour taste 1 +138401 7493 awful sour taste 1 +138402 7494 `` 13 Conversations About One Thing '' is an intelligent flick that examines many different ideas from happiness to guilt in an intriguing bit of storytelling . 4 +138403 7494 13 Conversations About One Thing '' is an intelligent flick that examines many different ideas from happiness to guilt in an intriguing bit of storytelling . 4 +138404 7494 13 Conversations About One Thing 2 +138405 7494 '' is an intelligent flick that examines many different ideas from happiness to guilt in an intriguing bit of storytelling . 4 +138406 7494 is an intelligent flick that examines many different ideas from happiness to guilt in an intriguing bit of storytelling . 4 +138407 7494 is an intelligent flick that examines many different ideas from happiness to guilt in an intriguing bit of storytelling 4 +138408 7494 an intelligent flick that examines many different ideas from happiness to guilt in an intriguing bit of storytelling 4 +138409 7494 an intelligent flick 3 +138410 7494 intelligent flick 4 +138411 7494 that examines many different ideas from happiness to guilt in an intriguing bit of storytelling 3 +138412 7494 examines many different ideas from happiness to guilt in an intriguing bit of storytelling 3 +138413 7494 examines many different ideas from happiness 3 +138414 7494 many different ideas from happiness 3 +138415 7494 many different ideas 2 +138416 7494 different ideas 2 +138417 7494 from happiness 2 +138418 7494 to guilt in an intriguing bit of storytelling 2 +138419 7494 guilt in an intriguing bit of storytelling 3 +138420 7494 in an intriguing bit of storytelling 3 +138421 7494 an intriguing bit of storytelling 3 +138422 7494 an intriguing bit 3 +138423 7494 intriguing bit 3 +138424 7495 Just dreadful . 0 +138425 7495 Just dreadful 1 +138426 7496 This is pure , exciting moviemaking . 4 +138427 7496 is pure , exciting moviemaking . 4 +138428 7496 is pure , exciting moviemaking 4 +138429 7496 pure , exciting moviemaking 4 +138430 7496 pure , 2 +138431 7496 exciting moviemaking 4 +138432 7497 The work of an exhausted , desiccated talent who ca n't get out of his own way . 3 +138433 7497 The work of an exhausted , desiccated talent who ca n't get out of his own way 0 +138434 7497 of an exhausted , desiccated talent who ca n't get out of his own way 2 +138435 7497 an exhausted , desiccated talent who ca n't get out of his own way 0 +138436 7497 an exhausted , desiccated talent 1 +138437 7497 exhausted , desiccated talent 1 +138438 7497 , desiccated talent 0 +138439 7497 desiccated talent 1 +138440 7497 who ca n't get out of his own way 2 +138441 7497 ca n't get out of his own way 2 +138442 7497 get out of his own way 2 +138443 7497 of his own way 2 +138444 7498 The director has injected self-consciousness into the proceedings at every turn . 2 +138445 7498 has injected self-consciousness into the proceedings at every turn . 3 +138446 7498 has injected self-consciousness into the proceedings at every turn 3 +138447 7498 injected self-consciousness into the proceedings at every turn 2 +138448 7498 injected self-consciousness 1 +138449 7498 injected 2 +138450 7498 into the proceedings at every turn 2 +138451 7498 the proceedings at every turn 2 +138452 7499 Deepa Mehta provides an accessible introduction as well as some intelligent observations on the success of Bollywood in the Western world . 3 +138453 7499 Deepa Mehta 2 +138454 7499 Deepa 2 +138455 7499 provides an accessible introduction as well as some intelligent observations on the success of Bollywood in the Western world . 4 +138456 7499 provides an accessible introduction as well as some intelligent observations on the success of Bollywood in the Western world 3 +138457 7499 provides an accessible introduction as well as some intelligent observations on the success of Bollywood 3 +138458 7499 an accessible introduction as well as some intelligent observations on the success of Bollywood 4 +138459 7499 an accessible introduction as well as 3 +138460 7499 an accessible introduction 3 +138461 7499 accessible introduction 2 +138462 7499 some intelligent observations on the success of Bollywood 4 +138463 7499 some intelligent observations 3 +138464 7499 intelligent observations 3 +138465 7499 on the success of Bollywood 3 +138466 7499 the success of Bollywood 2 +138467 7499 of Bollywood 2 +138468 7499 in the Western world 2 +138469 7499 the Western world 2 +138470 7499 Western world 2 +138471 7500 Tian emphasizes the isolation of these characters by confining color to Liyan 's backyard . 2 +138472 7500 emphasizes the isolation of these characters by confining color to Liyan 's backyard . 2 +138473 7500 emphasizes the isolation of these characters by confining color to Liyan 's backyard 3 +138474 7500 emphasizes the isolation of these characters 2 +138475 7500 the isolation of these characters 2 +138476 7500 the isolation 2 +138477 7500 by confining color to Liyan 's backyard 2 +138478 7500 confining color to Liyan 's backyard 2 +138479 7500 confining color 2 +138480 7500 confining 1 +138481 7500 to Liyan 's backyard 2 +138482 7500 Liyan 's backyard 2 +138483 7500 Liyan 's 2 +138484 7500 Liyan 2 +138485 7501 As well-acted and well-intentioned as All or Nothing is , however , the film comes perilously close to being too bleak , too pessimistic and too unflinching for its own good . 2 +138486 7501 As well-acted and well-intentioned 4 +138487 7501 well-acted and well-intentioned 4 +138488 7501 well-acted and 3 +138489 7501 as All or Nothing is , however , the film comes perilously close to being too bleak , too pessimistic and too unflinching for its own good . 1 +138490 7501 as All or Nothing is 2 +138491 7501 All or Nothing is 2 +138492 7501 All or Nothing 2 +138493 7501 All or 2 +138494 7501 , however , the film comes perilously close to being too bleak , too pessimistic and too unflinching for its own good . 1 +138495 7501 however , the film comes perilously close to being too bleak , too pessimistic and too unflinching for its own good . 1 +138496 7501 , the film comes perilously close to being too bleak , too pessimistic and too unflinching for its own good . 2 +138497 7501 the film comes perilously close to being too bleak , too pessimistic and too unflinching for its own good . 1 +138498 7501 comes perilously close to being too bleak , too pessimistic and too unflinching for its own good . 1 +138499 7501 comes perilously close to being too bleak , too pessimistic and too unflinching for its own good 1 +138500 7501 perilously close to being too bleak , too pessimistic and too unflinching for its own good 0 +138501 7501 perilously 1 +138502 7501 close to being too bleak , too pessimistic and too unflinching for its own good 1 +138503 7501 to being too bleak , too pessimistic and too unflinching for its own good 1 +138504 7501 being too bleak , too pessimistic and too unflinching for its own good 0 +138505 7501 being too bleak , too pessimistic and too unflinching 1 +138506 7501 too bleak , too pessimistic and too unflinching 0 +138507 7501 too bleak , too pessimistic and 1 +138508 7501 too bleak , too pessimistic 0 +138509 7501 too bleak , 2 +138510 7501 too bleak 1 +138511 7501 too pessimistic 1 +138512 7501 too unflinching 1 +138513 7502 Seagal is painfully foolish in trying to hold onto what 's left of his passe ' chopsocky glory . 1 +138514 7502 is painfully foolish in trying to hold onto what 's left of his passe ' chopsocky glory . 1 +138515 7502 is painfully foolish in trying to hold onto what 's left of his passe ' chopsocky glory 1 +138516 7502 painfully foolish in trying to hold onto what 's left of his passe ' chopsocky glory 1 +138517 7502 foolish in trying to hold onto what 's left of his passe ' chopsocky glory 2 +138518 7502 in trying to hold onto what 's left of his passe ' chopsocky glory 2 +138519 7502 trying to hold onto what 's left of his passe ' chopsocky glory 1 +138520 7502 to hold onto what 's left of his passe ' chopsocky glory 1 +138521 7502 hold onto what 's left of his passe ' chopsocky glory 1 +138522 7502 onto what 's left of his passe ' chopsocky glory 1 +138523 7502 what 's left of his passe ' chopsocky glory 1 +138524 7502 's left of his passe ' chopsocky glory 1 +138525 7502 left of his passe ' chopsocky glory 1 +138526 7502 of his passe ' chopsocky glory 1 +138527 7502 his passe ' chopsocky glory 2 +138528 7502 his passe ' 2 +138529 7502 passe ' 1 +138530 7502 passe 1 +138531 7502 chopsocky glory 2 +138532 7502 chopsocky 1 +138533 7503 Do we really need the Tiger Beat version ? 1 +138534 7503 Do we really need the Tiger Beat version 2 +138535 7503 need the Tiger Beat version 2 +138536 7503 the Tiger Beat version 2 +138537 7503 Tiger Beat version 2 +138538 7503 Tiger 2 +138539 7503 Beat version 2 +138540 7504 Two big things are missing -- anything approaching a visceral kick , and anything approaching even a vague reason to sit through it all . 1 +138541 7504 Two big things 2 +138542 7504 big things 2 +138543 7504 are missing -- anything approaching a visceral kick , and anything approaching even a vague reason to sit through it all . 0 +138544 7504 are missing -- anything approaching a visceral kick , and anything approaching even a vague reason to sit through it all 1 +138545 7504 are missing -- 1 +138546 7504 are missing 2 +138547 7504 anything approaching a visceral kick , and anything approaching even a vague reason to sit through it all 2 +138548 7504 anything approaching a visceral kick , and 2 +138549 7504 anything approaching a visceral kick , 2 +138550 7504 anything approaching a visceral kick 2 +138551 7504 approaching a visceral kick 2 +138552 7504 approaching 2 +138553 7504 a visceral kick 2 +138554 7504 visceral kick 2 +138555 7504 anything approaching even a vague reason to sit through it all 0 +138556 7504 approaching even a vague reason to sit through it all 1 +138557 7504 approaching even a vague reason 2 +138558 7504 even a vague reason 2 +138559 7504 a vague reason 2 +138560 7504 vague reason 2 +138561 7504 to sit through it all 2 +138562 7504 sit through it all 3 +138563 7505 This film biggest problem ? 1 +138564 7505 This film biggest problem 1 +138565 7506 `` Simone '' is a fun and funky look into an artificial creation in a world that thrives on artificiality . 4 +138566 7506 Simone '' is a fun and funky look into an artificial creation in a world that thrives on artificiality . 3 +138567 7506 '' is a fun and funky look into an artificial creation in a world that thrives on artificiality . 4 +138568 7506 is a fun and funky look into an artificial creation in a world that thrives on artificiality . 3 +138569 7506 is a fun and funky look into an artificial creation in a world that thrives on artificiality 3 +138570 7506 a fun and funky look into an artificial creation in a world that thrives on artificiality 3 +138571 7506 a fun and funky look 4 +138572 7506 fun and funky look 4 +138573 7506 and funky look 3 +138574 7506 funky look 2 +138575 7506 funky 2 +138576 7506 into an artificial creation in a world that thrives on artificiality 2 +138577 7506 an artificial creation in a world that thrives on artificiality 2 +138578 7506 an artificial creation 2 +138579 7506 artificial creation 2 +138580 7506 in a world that thrives on artificiality 2 +138581 7506 a world that thrives on artificiality 2 +138582 7506 that thrives on artificiality 2 +138583 7506 thrives on artificiality 2 +138584 7506 thrives 2 +138585 7506 on artificiality 2 +138586 7506 artificiality 1 +138587 7507 Will give many ministers and Bible-study groups hours of material to discuss . 3 +138588 7507 give many ministers and Bible-study groups hours of material to discuss . 2 +138589 7507 give many ministers and Bible-study groups hours of material to discuss 1 +138590 7507 give many ministers and Bible-study groups 2 +138591 7507 many ministers and Bible-study groups 2 +138592 7507 ministers and Bible-study groups 2 +138593 7507 ministers 2 +138594 7507 and Bible-study groups 2 +138595 7507 Bible-study groups 2 +138596 7507 Bible-study 2 +138597 7507 hours of material to discuss 3 +138598 7507 hours of material 2 +138599 7507 to discuss 2 +138600 7507 discuss 2 +138601 7508 Amazingly lame . 0 +138602 7509 An engrossing portrait of a man whose engaging manner and flamboyant style made him a truly larger-than-life character . 4 +138603 7509 An engrossing portrait of a man whose engaging manner and flamboyant style made him a truly larger-than-life character 4 +138604 7509 of a man whose engaging manner and flamboyant style made him a truly larger-than-life character 3 +138605 7509 a man whose engaging manner and flamboyant style made him a truly larger-than-life character 3 +138606 7509 whose engaging manner and flamboyant style made him a truly larger-than-life character 3 +138607 7509 whose engaging manner and flamboyant style 3 +138608 7509 engaging manner and flamboyant style 3 +138609 7509 manner and flamboyant style 3 +138610 7509 and flamboyant style 2 +138611 7509 flamboyant style 3 +138612 7509 made him a truly larger-than-life character 3 +138613 7509 made him 2 +138614 7509 a truly larger-than-life character 3 +138615 7509 truly larger-than-life character 3 +138616 7509 truly larger-than-life 3 +138617 7510 Moretti plays Giovanni , a psychiatrist who predictably finds it difficult to sustain interest in his profession after the family tragedy . 2 +138618 7510 plays Giovanni , a psychiatrist who predictably finds it difficult to sustain interest in his profession after the family tragedy . 2 +138619 7510 plays Giovanni , a psychiatrist who predictably finds it difficult to sustain interest in his profession after the family tragedy 2 +138620 7510 Giovanni , a psychiatrist who predictably finds it difficult to sustain interest in his profession after the family tragedy 2 +138621 7510 Giovanni , 2 +138622 7510 Giovanni 2 +138623 7510 a psychiatrist who predictably finds it difficult to sustain interest in his profession after the family tragedy 1 +138624 7510 a psychiatrist 2 +138625 7510 psychiatrist 2 +138626 7510 who predictably finds it difficult to sustain interest in his profession after the family tragedy 2 +138627 7510 predictably finds it difficult to sustain interest in his profession after the family tragedy 1 +138628 7510 finds it difficult to sustain interest in his profession after the family tragedy 1 +138629 7510 it difficult to sustain interest in his profession after the family tragedy 1 +138630 7510 difficult to sustain interest in his profession after the family tragedy 1 +138631 7510 to sustain interest in his profession after the family tragedy 2 +138632 7510 sustain interest in his profession after the family tragedy 3 +138633 7510 sustain interest in his profession 2 +138634 7510 interest in his profession 2 +138635 7510 in his profession 2 +138636 7510 his profession 2 +138637 7510 after the family tragedy 2 +138638 7510 the family tragedy 2 +138639 7510 family tragedy 1 +138640 7511 A slow-moving police-procedural thriller that takes its title all too literally . 1 +138641 7511 A slow-moving police-procedural thriller that 1 +138642 7511 A slow-moving police-procedural thriller 1 +138643 7511 slow-moving police-procedural thriller 2 +138644 7511 police-procedural thriller 2 +138645 7511 police-procedural 2 +138646 7511 takes its title all too literally . 1 +138647 7511 takes its title all too literally 1 +138648 7511 takes its title 2 +138649 7511 all too literally 1 +138650 7511 too literally 1 +138651 7512 An awfully good , achingly human picture . 3 +138652 7512 An awfully good , achingly human picture 3 +138653 7512 awfully good , achingly human picture 4 +138654 7512 awfully good , achingly human 3 +138655 7512 good , achingly human 3 +138656 7512 , achingly human 3 +138657 7512 achingly human 3 +138658 7513 The story 's pathetic and the gags are puerile . . 0 +138659 7513 The story 's pathetic and the gags are puerile . 0 +138660 7513 The story 's pathetic and 0 +138661 7513 The story 's pathetic 0 +138662 7513 's pathetic 0 +138663 7513 the gags are puerile . 0 +138664 7513 are puerile . 2 +138665 7513 are puerile 0 +138666 7514 Where their heads were is anyone 's guess . 1 +138667 7514 Where their heads were 1 +138668 7514 their heads were 2 +138669 7514 is anyone 's guess . 2 +138670 7514 is anyone 's guess 2 +138671 7514 anyone 's guess 1 +138672 7515 The drama was so uninspiring that even a story immersed in love , lust , and sin could n't keep my attention . 0 +138673 7515 was so uninspiring that even a story immersed in love , lust , and sin could n't keep my attention . 1 +138674 7515 was so uninspiring that even a story immersed in love , lust , and sin could n't keep my attention 0 +138675 7515 was so uninspiring 0 +138676 7515 so uninspiring 0 +138677 7515 uninspiring 1 +138678 7515 that even a story immersed in love , lust , and sin could n't keep my attention 1 +138679 7515 even a story immersed in love , lust , and sin could n't keep my attention 1 +138680 7515 even a story immersed in love , lust , and sin 3 +138681 7515 even a story 2 +138682 7515 immersed in love , lust , and sin 3 +138683 7515 immersed 3 +138684 7515 in love , lust , and sin 2 +138685 7515 love , lust , and sin 2 +138686 7515 love , lust , and 2 +138687 7515 love , lust , 2 +138688 7515 love , lust 2 +138689 7515 could n't keep my attention 1 +138690 7515 keep my attention 4 +138691 7516 Whatever satire Lucky Break was aiming for , it certainly got lost in the `` soon-to-be-forgettable '' section of the quirky rip-off prison romp pile . 1 +138692 7516 Whatever satire Lucky Break was aiming for 2 +138693 7516 satire Lucky Break was aiming for 2 +138694 7516 satire Lucky Break 3 +138695 7516 was aiming for 2 +138696 7516 aiming for 2 +138697 7516 aiming 2 +138698 7516 , it certainly got lost in the `` soon-to-be-forgettable '' section of the quirky rip-off prison romp pile . 2 +138699 7516 it certainly got lost in the `` soon-to-be-forgettable '' section of the quirky rip-off prison romp pile . 1 +138700 7516 certainly got lost in the `` soon-to-be-forgettable '' section of the quirky rip-off prison romp pile . 0 +138701 7516 got lost in the `` soon-to-be-forgettable '' section of the quirky rip-off prison romp pile . 0 +138702 7516 got lost in the `` soon-to-be-forgettable '' section of the quirky rip-off prison romp pile 1 +138703 7516 lost in the `` soon-to-be-forgettable '' section of the quirky rip-off prison romp pile 1 +138704 7516 lost in the `` soon-to-be-forgettable '' section of the quirky rip-off prison 1 +138705 7516 in the `` soon-to-be-forgettable '' section of the quirky rip-off prison 1 +138706 7516 the `` soon-to-be-forgettable '' section of the quirky rip-off prison 1 +138707 7516 the `` soon-to-be-forgettable '' section 1 +138708 7516 `` soon-to-be-forgettable '' section 0 +138709 7516 soon-to-be-forgettable '' section 1 +138710 7516 soon-to-be-forgettable 0 +138711 7516 '' section 2 +138712 7516 of the quirky rip-off prison 2 +138713 7516 the quirky rip-off prison 2 +138714 7516 quirky rip-off prison 1 +138715 7516 rip-off prison 2 +138716 7516 romp pile 1 +138717 7517 Will assuredly rank as one of the cleverest , most deceptively amusing comedies of the year . 4 +138718 7517 assuredly rank as one of the cleverest , most deceptively amusing comedies of the year . 3 +138719 7517 rank as one of the cleverest , most deceptively amusing comedies of the year . 4 +138720 7517 rank as one of the cleverest , most deceptively amusing comedies of the year 4 +138721 7517 as one of the cleverest , most deceptively amusing comedies of the year 4 +138722 7517 one of the cleverest , most deceptively amusing comedies of the year 4 +138723 7517 of the cleverest , most deceptively amusing comedies of the year 4 +138724 7517 the cleverest , most deceptively amusing comedies of the year 4 +138725 7517 the cleverest , 3 +138726 7517 the cleverest 3 +138727 7517 cleverest 3 +138728 7517 most deceptively amusing comedies of the year 4 +138729 7517 most deceptively amusing comedies 3 +138730 7517 most deceptively amusing 3 +138731 7517 deceptively amusing 3 +138732 7518 Filled with Alexandre Desplat 's haunting and sublime music , the movie completely transfixes the audience . 4 +138733 7518 Filled with Alexandre Desplat 's haunting and sublime music 2 +138734 7518 with Alexandre Desplat 's haunting and sublime music 3 +138735 7518 Alexandre Desplat 's haunting and sublime music 3 +138736 7518 Alexandre Desplat 's 2 +138737 7518 Desplat 's 2 +138738 7518 Desplat 2 +138739 7518 haunting and sublime music 2 +138740 7518 and sublime music 3 +138741 7518 sublime music 3 +138742 7518 , the movie completely transfixes the audience . 3 +138743 7518 the movie completely transfixes the audience . 4 +138744 7518 completely transfixes the audience . 3 +138745 7518 transfixes the audience . 4 +138746 7518 transfixes the audience 3 +138747 7518 transfixes 2 +138748 7519 A muted freak-out 1 +138749 7519 muted freak-out 1 +138750 7519 freak-out 2 +138751 7520 Ca n't get enough of libidinous young city dwellers ? 2 +138752 7520 Ca n't get enough of libidinous young city dwellers 3 +138753 7520 get enough of libidinous young city dwellers 2 +138754 7520 enough of libidinous young city dwellers 1 +138755 7520 of libidinous young city dwellers 2 +138756 7520 libidinous young city dwellers 2 +138757 7520 libidinous 2 +138758 7520 young city dwellers 2 +138759 7520 city dwellers 2 +138760 7520 dwellers 2 +138761 7521 This Bond film goes off the beaten path , not necessarily for the better . 1 +138762 7521 This Bond film 2 +138763 7521 Bond film 2 +138764 7521 goes off the beaten path , not necessarily for the better . 1 +138765 7521 goes off the beaten path , not necessarily for the better 1 +138766 7521 the beaten path , not necessarily for the better 1 +138767 7521 the beaten path , 2 +138768 7521 the beaten path 2 +138769 7521 beaten path 2 +138770 7521 not necessarily for the better 2 +138771 7521 not necessarily 2 +138772 7522 Mostly Martha could have used a little trimming -- 10 or 15 minutes could be cut and no one would notice -- but it 's a pleasurable trifle . 2 +138773 7522 Mostly Martha could have used a little trimming -- 10 or 15 minutes could be cut and no one would notice -- but it 's a pleasurable trifle 2 +138774 7522 Mostly Martha could have used a little trimming -- 10 or 15 minutes could be cut and no one would notice -- but 2 +138775 7522 Mostly Martha could have used a little trimming -- 10 or 15 minutes could be cut and no one would notice -- 1 +138776 7522 Mostly Martha could have used a little trimming 2 +138777 7522 Martha could have used a little trimming 1 +138778 7522 could have used a little trimming 1 +138779 7522 have used a little trimming 2 +138780 7522 used a little trimming 2 +138781 7522 a little trimming 2 +138782 7522 little trimming 2 +138783 7522 -- 10 or 15 minutes could be cut and no one would notice -- 1 +138784 7522 10 or 15 minutes could be cut and no one would notice -- 1 +138785 7522 10 or 15 minutes could be cut and no one would notice 1 +138786 7522 10 or 15 minutes could be cut and 1 +138787 7522 10 or 15 minutes could be cut 1 +138788 7522 10 or 15 2 +138789 7522 10 or 2 +138790 7522 could be cut 2 +138791 7522 be cut 2 +138792 7522 no one would notice 2 +138793 7522 would notice 2 +138794 7522 it 's a pleasurable trifle 3 +138795 7522 's a pleasurable trifle 3 +138796 7522 a pleasurable trifle 3 +138797 7522 pleasurable trifle 4 +138798 7523 ` Would n't it be nice if all guys got a taste of what it 's like on the other side of the bra ? ' 2 +138799 7523 Would n't it be nice if all guys got a taste of what it 's like on the other side of the bra ? ' 2 +138800 7523 it be nice if all guys got a taste of what it 's like on the other side of the bra ? ' 2 +138801 7523 it be nice if all guys got a taste of what it 's like on the other side of the bra ? 3 +138802 7523 it be nice if all guys got a taste of what it 's like on the other side of the bra 3 +138803 7523 be nice if all guys got a taste of what it 's like on the other side of the bra 2 +138804 7523 be nice 2 +138805 7523 if all guys got a taste of what it 's like on the other side of the bra 2 +138806 7523 all guys got a taste of what it 's like on the other side of the bra 2 +138807 7523 all guys 2 +138808 7523 got a taste of what it 's like on the other side of the bra 2 +138809 7523 a taste of what it 's like on the other side of the bra 2 +138810 7523 of what it 's like on the other side of the bra 2 +138811 7523 what it 's like on the other side of the bra 2 +138812 7523 it 's like on the other side of the bra 2 +138813 7523 's like on the other side of the bra 2 +138814 7523 like on the other side of the bra 2 +138815 7523 on the other side of the bra 2 +138816 7523 the other side of the bra 2 +138817 7523 of the bra 3 +138818 7523 the bra 2 +138819 7523 bra 2 +138820 7524 The movie tries to be ethereal , but ends up seeming goofy . 2 +138821 7524 tries to be ethereal , but ends up seeming goofy . 1 +138822 7524 tries to be ethereal , but ends up seeming goofy 1 +138823 7524 tries to be ethereal , but 1 +138824 7524 tries to be ethereal , 2 +138825 7524 tries to be ethereal 2 +138826 7524 to be ethereal 2 +138827 7524 be ethereal 3 +138828 7524 ends up seeming goofy 1 +138829 7524 seeming goofy 2 +138830 7525 It 's tough to tell which is in more abundant supply in this woefully hackneyed movie , directed by Scott Kalvert , about street gangs and turf wars in 1958 Brooklyn -- stale cliches , gratuitous violence , or empty machismo . 1 +138831 7525 's tough to tell which is in more abundant supply in this woefully hackneyed movie , directed by Scott Kalvert , about street gangs and turf wars in 1958 Brooklyn -- stale cliches , gratuitous violence , or empty machismo . 0 +138832 7525 's tough to tell which is in more abundant supply in this woefully hackneyed movie , directed by Scott Kalvert , about street gangs and turf wars in 1958 Brooklyn -- stale cliches , gratuitous violence , or empty machismo 1 +138833 7525 tough to tell which is in more abundant supply in this woefully hackneyed movie , directed by Scott Kalvert , about street gangs and turf wars in 1958 Brooklyn -- stale cliches , gratuitous violence , or empty machismo 0 +138834 7525 to tell which is in more abundant supply in this woefully hackneyed movie , directed by Scott Kalvert , about street gangs and turf wars in 1958 Brooklyn -- stale cliches , gratuitous violence , or empty machismo 1 +138835 7525 tell which is in more abundant supply in this woefully hackneyed movie , directed by Scott Kalvert , about street gangs and turf wars in 1958 Brooklyn -- stale cliches , gratuitous violence , or empty machismo 2 +138836 7525 which is in more abundant supply in this woefully hackneyed movie , directed by Scott Kalvert , about street gangs and turf wars in 1958 Brooklyn -- stale cliches , gratuitous violence , or empty machismo 1 +138837 7525 is in more abundant supply in this woefully hackneyed movie , directed by Scott Kalvert , about street gangs and turf wars in 1958 Brooklyn -- stale cliches , gratuitous violence , or empty machismo 0 +138838 7525 in more abundant supply in this woefully hackneyed movie , directed by Scott Kalvert , about street gangs and turf wars in 1958 Brooklyn -- stale cliches , gratuitous violence , or empty machismo 0 +138839 7525 more abundant supply in this woefully hackneyed movie , directed by Scott Kalvert , about street gangs and turf wars in 1958 Brooklyn -- stale cliches , gratuitous violence , or empty machismo 0 +138840 7525 more abundant supply 2 +138841 7525 abundant supply 2 +138842 7525 in this woefully hackneyed movie , directed by Scott Kalvert , about street gangs and turf wars in 1958 Brooklyn -- stale cliches , gratuitous violence , or empty machismo 0 +138843 7525 this woefully hackneyed movie , directed by Scott Kalvert , about street gangs and turf wars in 1958 Brooklyn -- stale cliches , gratuitous violence , or empty machismo 0 +138844 7525 this woefully hackneyed movie , directed by Scott Kalvert , 1 +138845 7525 this woefully hackneyed movie , directed by Scott Kalvert 0 +138846 7525 this woefully hackneyed movie , 1 +138847 7525 this woefully hackneyed movie 1 +138848 7525 woefully hackneyed movie 1 +138849 7525 woefully hackneyed 1 +138850 7525 directed by Scott Kalvert 2 +138851 7525 by Scott Kalvert 2 +138852 7525 Scott Kalvert 2 +138853 7525 Kalvert 2 +138854 7525 about street gangs and turf wars in 1958 Brooklyn -- stale cliches , gratuitous violence , or empty machismo 1 +138855 7525 street gangs and turf wars in 1958 Brooklyn -- stale cliches , gratuitous violence , or empty machismo 0 +138856 7525 street gangs and turf wars in 1958 Brooklyn -- stale cliches , gratuitous violence , or 1 +138857 7525 street gangs and turf wars in 1958 Brooklyn -- stale cliches , gratuitous violence , 1 +138858 7525 street gangs and turf wars in 1958 Brooklyn -- stale cliches , gratuitous violence 0 +138859 7525 street gangs and turf wars in 1958 Brooklyn -- stale cliches , 1 +138860 7525 street gangs and turf wars in 1958 Brooklyn -- stale cliches 2 +138861 7525 street gangs and turf wars in 1958 Brooklyn -- 2 +138862 7525 street gangs and turf wars in 1958 Brooklyn 2 +138863 7525 street gangs and 2 +138864 7525 street gangs 2 +138865 7525 turf wars in 1958 Brooklyn 2 +138866 7525 turf wars 2 +138867 7525 in 1958 Brooklyn 3 +138868 7525 1958 Brooklyn 2 +138869 7525 stale cliches 2 +138870 7525 empty machismo 2 +138871 7526 Generic thriller junk . 0 +138872 7526 thriller junk . 1 +138873 7526 thriller junk 1 +138874 7527 The movie is the equivalent of French hip-hop , which also seems to play on a 10-year delay . 0 +138875 7527 is the equivalent of French hip-hop , which also seems to play on a 10-year delay . 1 +138876 7527 is the equivalent of French hip-hop , which also seems to play on a 10-year delay 1 +138877 7527 the equivalent of French hip-hop , which also seems to play on a 10-year delay 1 +138878 7527 the equivalent 2 +138879 7527 of French hip-hop , which also seems to play on a 10-year delay 1 +138880 7527 French hip-hop , which also seems to play on a 10-year delay 2 +138881 7527 French hip-hop , 2 +138882 7527 French hip-hop 2 +138883 7527 which also seems to play on a 10-year delay 1 +138884 7527 also seems to play on a 10-year delay 1 +138885 7527 seems to play on a 10-year delay 1 +138886 7527 to play on a 10-year delay 2 +138887 7527 play on a 10-year delay 2 +138888 7527 on a 10-year delay 3 +138889 7527 a 10-year delay 2 +138890 7527 10-year delay 2 +138891 7527 10-year 2 +138892 7527 delay 2 +138893 7528 An uneven mix of dark satire and childhood awakening . 1 +138894 7528 An uneven mix of dark satire and childhood awakening 3 +138895 7528 An uneven mix 1 +138896 7528 uneven mix 2 +138897 7528 of dark satire and childhood awakening 2 +138898 7528 dark satire and childhood awakening 2 +138899 7528 satire and childhood awakening 3 +138900 7528 and childhood awakening 2 +138901 7528 childhood awakening 2 +138902 7529 Leaping from one arresting image to another , Songs from the Second Floor has all the enjoyable randomness of a very lively dream and so manages to be compelling , amusing and unsettling at the same time . 4 +138903 7529 Leaping from one arresting image to another 3 +138904 7529 from one arresting image to another 3 +138905 7529 one arresting image to another 2 +138906 7529 one arresting image 3 +138907 7529 arresting image 3 +138908 7529 , Songs from the Second Floor has all the enjoyable randomness of a very lively dream and so manages to be compelling , amusing and unsettling at the same time . 3 +138909 7529 Songs from the Second Floor has all the enjoyable randomness of a very lively dream and so manages to be compelling , amusing and unsettling at the same time . 3 +138910 7529 Songs from the Second Floor 2 +138911 7529 from the Second Floor 2 +138912 7529 the Second Floor 2 +138913 7529 Second Floor 2 +138914 7529 has all the enjoyable randomness of a very lively dream and so manages to be compelling , amusing and unsettling at the same time . 4 +138915 7529 has all the enjoyable randomness of a very lively dream and so manages to be compelling , amusing and unsettling at the same time 3 +138916 7529 has all the enjoyable randomness of a very lively dream and so 3 +138917 7529 has all the enjoyable randomness of a very lively dream and 3 +138918 7529 has all the enjoyable randomness of a very lively dream 3 +138919 7529 all the enjoyable randomness of a very lively dream 3 +138920 7529 all the enjoyable randomness 3 +138921 7529 the enjoyable randomness 2 +138922 7529 enjoyable randomness 3 +138923 7529 of a very lively dream 3 +138924 7529 a very lively dream 3 +138925 7529 very lively dream 3 +138926 7529 lively dream 3 +138927 7529 manages to be compelling , amusing and unsettling at the same time 4 +138928 7529 to be compelling , amusing and unsettling at the same time 3 +138929 7529 be compelling , amusing and unsettling at the same time 3 +138930 7529 be compelling , amusing and unsettling 3 +138931 7529 compelling , amusing and unsettling 3 +138932 7529 , amusing and unsettling 3 +138933 7529 amusing and unsettling 4 +138934 7530 Nothing about them is attractive . 1 +138935 7530 Nothing about them 2 +138936 7530 is attractive . 3 +138937 7530 is attractive 3 +138938 7531 During The Tuxedo 's 90 minutes of screen time , there is n't one true ` Chan moment ' . 1 +138939 7531 During The Tuxedo 's 90 minutes of screen time 2 +138940 7531 The Tuxedo 's 90 minutes of screen time 1 +138941 7531 The Tuxedo 's 90 minutes 2 +138942 7531 The Tuxedo 's 2 +138943 7531 Tuxedo 's 2 +138944 7531 , there is n't one true ` Chan moment ' . 2 +138945 7531 there is n't one true ` Chan moment ' . 1 +138946 7531 is n't one true ` Chan moment ' . 1 +138947 7531 is n't one true ` Chan moment ' 1 +138948 7531 one true ` Chan moment ' 2 +138949 7531 true ` Chan moment ' 2 +138950 7531 ` Chan moment ' 2 +138951 7531 Chan moment ' 2 +138952 7531 moment ' 2 +138953 7532 A few energetic stunt sequences briefly enliven the film , but the wheezing terrorist subplot has n't the stamina for the 100-minute running time , and the protagonists ' bohemian boorishness mars the spirit of good clean fun . 2 +138954 7532 A few energetic stunt sequences briefly enliven the film , but the wheezing terrorist subplot has n't the stamina for the 100-minute running time , and the protagonists ' bohemian boorishness mars the spirit of good clean fun 1 +138955 7532 A few energetic stunt sequences briefly enliven the film , but 2 +138956 7532 A few energetic stunt sequences briefly enliven the film , 2 +138957 7532 A few energetic stunt sequences briefly enliven the film 3 +138958 7532 A few energetic stunt sequences 2 +138959 7532 few energetic stunt sequences 2 +138960 7532 energetic stunt sequences 3 +138961 7532 stunt sequences 2 +138962 7532 briefly enliven the film 3 +138963 7532 enliven the film 2 +138964 7532 enliven 2 +138965 7532 the wheezing terrorist subplot has n't the stamina for the 100-minute running time , and the protagonists ' bohemian boorishness mars the spirit of good clean fun 1 +138966 7532 the wheezing terrorist subplot has n't the stamina for the 100-minute running time , and 0 +138967 7532 the wheezing terrorist subplot has n't the stamina for the 100-minute running time , 2 +138968 7532 the wheezing terrorist subplot has n't the stamina for the 100-minute running time 1 +138969 7532 the wheezing terrorist subplot 1 +138970 7532 wheezing terrorist subplot 1 +138971 7532 wheezing 1 +138972 7532 terrorist subplot 2 +138973 7532 has n't the stamina for the 100-minute running time 1 +138974 7532 the stamina for the 100-minute running time 2 +138975 7532 the stamina 3 +138976 7532 for the 100-minute running time 2 +138977 7532 the 100-minute running time 2 +138978 7532 100-minute running time 2 +138979 7532 the protagonists ' bohemian boorishness mars the spirit of good clean fun 1 +138980 7532 the protagonists ' bohemian boorishness 1 +138981 7532 the protagonists ' 2 +138982 7532 protagonists ' 2 +138983 7532 bohemian boorishness 1 +138984 7532 bohemian 2 +138985 7532 mars the spirit of good clean fun 2 +138986 7532 the spirit of good clean fun 3 +138987 7532 of good clean fun 3 +138988 7532 good clean fun 4 +138989 7532 clean fun 3 +138990 7533 Highly irritating at first , Mr. Koury 's passive technique eventually begins to yield some interesting results . 2 +138991 7533 Highly irritating at first 1 +138992 7533 irritating at first 1 +138993 7533 at first 2 +138994 7533 , Mr. Koury 's passive technique eventually begins to yield some interesting results . 3 +138995 7533 Mr. Koury 's passive technique eventually begins to yield some interesting results . 3 +138996 7533 Mr. Koury 's passive technique 2 +138997 7533 Mr. Koury 's 2 +138998 7533 Koury 's 3 +138999 7533 passive technique 2 +139000 7533 passive 1 +139001 7533 eventually begins to yield some interesting results . 3 +139002 7533 begins to yield some interesting results . 3 +139003 7533 begins to yield some interesting results 3 +139004 7533 to yield some interesting results 3 +139005 7533 yield some interesting results 2 +139006 7533 yield 1 +139007 7533 some interesting results 3 +139008 7533 interesting results 3 +139009 7534 A thought-provoking and often-funny drama about isolation . 3 +139010 7534 A thought-provoking and often-funny drama about isolation 4 +139011 7534 A thought-provoking and often-funny drama 3 +139012 7534 thought-provoking and often-funny drama 4 +139013 7534 and often-funny drama 3 +139014 7534 often-funny drama 3 +139015 7534 about isolation 2 +139016 7535 It 's an interesting effort -LRB- particularly for JFK conspiracy nuts -RRB- , and Barry 's cold-fish act makes the experience worthwhile . 3 +139017 7535 It 's an interesting effort -LRB- particularly for JFK conspiracy nuts -RRB- , and Barry 's cold-fish act makes the experience worthwhile 3 +139018 7535 It 's an interesting effort -LRB- particularly for JFK conspiracy nuts -RRB- , and 3 +139019 7535 It 's an interesting effort -LRB- particularly for JFK conspiracy nuts -RRB- , 3 +139020 7535 It 's an interesting effort -LRB- particularly for JFK conspiracy nuts -RRB- 3 +139021 7535 's an interesting effort -LRB- particularly for JFK conspiracy nuts -RRB- 3 +139022 7535 's an interesting effort 2 +139023 7535 an interesting effort 2 +139024 7535 interesting effort 3 +139025 7535 -LRB- particularly for JFK conspiracy nuts -RRB- 2 +139026 7535 particularly for JFK conspiracy nuts -RRB- 2 +139027 7535 particularly for JFK conspiracy nuts 2 +139028 7535 for JFK conspiracy nuts 2 +139029 7535 JFK conspiracy nuts 1 +139030 7535 conspiracy nuts 2 +139031 7535 nuts 2 +139032 7535 Barry 's cold-fish act makes the experience worthwhile 3 +139033 7535 Barry 's cold-fish act 2 +139034 7535 cold-fish act 2 +139035 7535 cold-fish 0 +139036 7535 makes the experience worthwhile 3 +139037 7535 the experience worthwhile 3 +139038 7536 The mushy finale turns John Q into a movie-of-the-week tearjerker . 3 +139039 7536 The mushy finale 1 +139040 7536 mushy finale 2 +139041 7536 turns John Q into a movie-of-the-week tearjerker . 2 +139042 7536 turns John Q into a movie-of-the-week tearjerker 2 +139043 7536 turns John Q 2 +139044 7536 into a movie-of-the-week tearjerker 2 +139045 7536 a movie-of-the-week tearjerker 3 +139046 7536 movie-of-the-week tearjerker 2 +139047 7537 A lot of talent is wasted in this crass , low-wattage endeavor . 0 +139048 7537 A lot of talent 3 +139049 7537 of talent 2 +139050 7537 is wasted in this crass , low-wattage endeavor . 0 +139051 7537 is wasted in this crass , low-wattage endeavor 0 +139052 7537 wasted in this crass , low-wattage endeavor 1 +139053 7537 in this crass , low-wattage endeavor 1 +139054 7537 this crass , low-wattage endeavor 2 +139055 7537 crass , low-wattage endeavor 1 +139056 7537 crass , low-wattage 1 +139057 7537 , low-wattage 1 +139058 7537 low-wattage 2 +139059 7538 One of the year 's best films , featuring an Oscar-worthy performance by Julianne Moore . 4 +139060 7538 , featuring an Oscar-worthy performance by Julianne Moore . 3 +139061 7538 featuring an Oscar-worthy performance by Julianne Moore . 4 +139062 7538 featuring an Oscar-worthy performance by Julianne Moore 2 +139063 7538 featuring an Oscar-worthy performance 4 +139064 7538 an Oscar-worthy performance 4 +139065 7538 Oscar-worthy performance 4 +139066 7538 by Julianne Moore 2 +139067 7539 Anyone who gets chills from movies with giant plot holes will find plenty to shake and shiver about in ` The Ring . ' 2 +139068 7539 Anyone who gets chills from movies with giant plot holes 1 +139069 7539 who gets chills from movies with giant plot holes 1 +139070 7539 gets chills from movies with giant plot holes 1 +139071 7539 gets chills 3 +139072 7539 from movies with giant plot holes 1 +139073 7539 movies with giant plot holes 0 +139074 7539 with giant plot holes 1 +139075 7539 giant plot holes 1 +139076 7539 will find plenty to shake and shiver about in ` The Ring . ' 2 +139077 7539 will find plenty to shake and shiver about in ` The Ring . 3 +139078 7539 will find plenty to shake and shiver about in ` The Ring 3 +139079 7539 find plenty to shake and shiver about in ` The Ring 2 +139080 7539 find plenty 2 +139081 7539 to shake and shiver about in ` The Ring 3 +139082 7539 shake and shiver about in ` The Ring 2 +139083 7539 shake and shiver 2 +139084 7539 shake and 2 +139085 7539 shiver 2 +139086 7539 about in ` The Ring 2 +139087 7539 in ` The Ring 2 +139088 7540 Made for teens and reviewed as such , this is recommended only for those under 20 years of age ... and then only as a very mild rental . 2 +139089 7540 Made for teens and reviewed as such 2 +139090 7540 Made for teens and 2 +139091 7540 Made for teens 2 +139092 7540 reviewed as such 2 +139093 7540 reviewed 2 +139094 7540 as such 2 +139095 7540 , this is recommended only for those under 20 years of age ... and then only as a very mild rental . 2 +139096 7540 this is recommended only for those under 20 years of age ... and then only as a very mild rental . 2 +139097 7540 this is recommended only for those under 20 years of age ... and then only as a very mild rental 2 +139098 7540 this is recommended only for those under 20 years of age 2 +139099 7540 is recommended only for those under 20 years of age 1 +139100 7540 recommended only for those under 20 years of age 2 +139101 7540 recommended only 2 +139102 7540 for those under 20 years of age 2 +139103 7540 those under 20 years of age 2 +139104 7540 under 20 years of age 2 +139105 7540 20 years of age 2 +139106 7540 of age 2 +139107 7540 ... and then only as a very mild rental 1 +139108 7540 and then only as a very mild rental 1 +139109 7540 then only as a very mild rental 2 +139110 7540 only as a very mild rental 2 +139111 7540 as a very mild rental 2 +139112 7540 a very mild rental 2 +139113 7540 very mild rental 2 +139114 7540 very mild 3 +139115 7541 The soul-searching deliberateness of the film , although leavened nicely with dry absurdist wit , eventually becomes too heavy for the plot . 1 +139116 7541 The soul-searching deliberateness of the film , although leavened nicely with dry absurdist wit , 2 +139117 7541 The soul-searching deliberateness of the film , although leavened nicely with dry absurdist wit 3 +139118 7541 The soul-searching deliberateness of the film , 2 +139119 7541 The soul-searching deliberateness of the film 3 +139120 7541 The soul-searching deliberateness 2 +139121 7541 soul-searching deliberateness 2 +139122 7541 deliberateness 2 +139123 7541 although leavened nicely with dry absurdist wit 2 +139124 7541 leavened nicely with dry absurdist wit 2 +139125 7541 leavened nicely 2 +139126 7541 with dry absurdist wit 2 +139127 7541 dry absurdist wit 2 +139128 7541 absurdist wit 3 +139129 7541 eventually becomes too heavy for the plot . 1 +139130 7541 becomes too heavy for the plot . 1 +139131 7541 becomes too heavy for the plot 1 +139132 7541 too heavy for the plot 1 +139133 7541 heavy for the plot 2 +139134 7541 for the plot 2 +139135 7542 One thing you have to give them credit for : The message of the movie is consistent with the messages espoused in the company 's previous video work . 3 +139136 7542 One thing you have to give them credit for : The message of the movie 2 +139137 7542 you have to give them credit for : The message of the movie 2 +139138 7542 have to give them credit for : The message of the movie 3 +139139 7542 to give them credit for : The message of the movie 3 +139140 7542 give them credit for : The message of the movie 3 +139141 7542 credit for : The message of the movie 2 +139142 7542 for : The message of the movie 2 +139143 7542 for : 2 +139144 7542 The message of the movie 2 +139145 7542 is consistent with the messages espoused in the company 's previous video work . 2 +139146 7542 is consistent with the messages espoused in the company 's previous video work 2 +139147 7542 consistent with the messages espoused in the company 's previous video work 3 +139148 7542 with the messages espoused in the company 's previous video work 2 +139149 7542 the messages espoused in the company 's previous video work 2 +139150 7542 the messages 2 +139151 7542 espoused in the company 's previous video work 2 +139152 7542 espoused 2 +139153 7542 in the company 's previous video work 2 +139154 7542 the company 's previous video work 2 +139155 7542 the company 's 2 +139156 7542 company 's 2 +139157 7542 previous video work 2 +139158 7543 It 's a scorcher . 3 +139159 7543 's a scorcher . 3 +139160 7543 's a scorcher 3 +139161 7543 a scorcher 2 +139162 7543 scorcher 3 +139163 7544 Spectacular in every sense of the word , even if you don ' t know an Orc from a Uruk-Hai . 4 +139164 7544 Spectacular in every sense of the word , even if you don ' t 4 +139165 7544 in every sense of the word , even if you don ' t 2 +139166 7544 every sense of the word , even if you don ' t 2 +139167 7544 of the word , even if you don ' t 2 +139168 7544 the word , even if you don ' t 2 +139169 7544 the word , even if you 2 +139170 7544 the word , 2 +139171 7544 even if you 2 +139172 7544 if you 2 +139173 7544 don ' t 2 +139174 7544 don ' 2 +139175 7544 know an Orc from a Uruk-Hai . 2 +139176 7544 know an Orc from a Uruk-Hai 2 +139177 7544 know an Orc 2 +139178 7544 an Orc 2 +139179 7544 Orc 2 +139180 7544 from a Uruk-Hai 2 +139181 7544 a Uruk-Hai 2 +139182 7544 Uruk-Hai 2 +139183 7545 Slackers ' jokey approach to college education is disappointingly simplistic -- the film 's biggest problem -- and there are no unforgettably stupid stunts or uproariously rude lines of dialogue to remember it by . 2 +139184 7545 Slackers ' jokey approach to college education is disappointingly simplistic -- the film 's biggest problem -- and there are no unforgettably stupid stunts or uproariously rude lines of dialogue to remember it by 0 +139185 7545 Slackers ' jokey approach to college education is disappointingly simplistic -- the film 's biggest problem -- and 0 +139186 7545 Slackers ' jokey approach to college education is disappointingly simplistic -- the film 's biggest problem -- 1 +139187 7545 Slackers ' jokey approach to college education 1 +139188 7545 Slackers ' jokey approach 1 +139189 7545 jokey approach 2 +139190 7545 jokey 2 +139191 7545 to college education 2 +139192 7545 college education 1 +139193 7545 is disappointingly simplistic -- the film 's biggest problem -- 0 +139194 7545 is disappointingly 0 +139195 7545 simplistic -- the film 's biggest problem -- 1 +139196 7545 simplistic -- the film 's biggest problem 1 +139197 7545 simplistic -- 2 +139198 7545 the film 's biggest problem 1 +139199 7545 there are no unforgettably stupid stunts or uproariously rude lines of dialogue to remember it by 1 +139200 7545 are no unforgettably stupid stunts or uproariously rude lines of dialogue to remember it by 0 +139201 7545 no unforgettably stupid stunts or uproariously rude lines of dialogue to remember it by 1 +139202 7545 no unforgettably stupid stunts or uproariously 1 +139203 7545 no unforgettably stupid stunts or 2 +139204 7545 no unforgettably stupid stunts 2 +139205 7545 unforgettably stupid stunts 1 +139206 7545 unforgettably stupid 0 +139207 7545 unforgettably 2 +139208 7545 uproariously 2 +139209 7545 rude lines of dialogue to remember it by 2 +139210 7545 rude lines of dialogue 2 +139211 7545 rude lines 1 +139212 7545 to remember it by 3 +139213 7545 remember it by 2 +139214 7546 It is OK for a movie to be something of a sitcom apparatus , if the lines work , the humor has point and the actors are humanly engaged . 3 +139215 7546 It is OK for a movie to be something of a sitcom apparatus , if the lines work , the humor has point and the actors are humanly engaged 3 +139216 7546 It is OK for a movie to be something of a sitcom apparatus , if the lines work , the humor has point and 3 +139217 7546 It is OK for a movie to be something of a sitcom apparatus , if the lines work , the humor has point 3 +139218 7546 It is OK for a movie to be something of a sitcom apparatus , 3 +139219 7546 It is OK for a movie to be something of a sitcom apparatus 3 +139220 7546 is OK for a movie to be something of a sitcom apparatus 3 +139221 7546 is OK for a movie 2 +139222 7546 OK for a movie 3 +139223 7546 to be something of a sitcom apparatus 1 +139224 7546 be something of a sitcom apparatus 2 +139225 7546 something of a sitcom apparatus 2 +139226 7546 of a sitcom apparatus 2 +139227 7546 a sitcom apparatus 2 +139228 7546 sitcom apparatus 2 +139229 7546 if the lines work , the humor has point 2 +139230 7546 if the lines work 2 +139231 7546 the lines work 4 +139232 7546 the lines 2 +139233 7546 , the humor has point 3 +139234 7546 the humor has point 3 +139235 7546 has point 2 +139236 7546 the actors are humanly engaged 3 +139237 7546 are humanly engaged 2 +139238 7546 humanly engaged 2 +139239 7547 ... although this idea is `` new '' the results are tired . 1 +139240 7547 although this idea is `` new '' the results are tired . 1 +139241 7547 although this idea is `` new '' the results are tired 1 +139242 7547 although this idea is `` new '' 1 +139243 7547 this idea is `` new '' 2 +139244 7547 this idea 2 +139245 7547 is `` new '' 2 +139246 7547 is `` new 2 +139247 7547 the results are tired 1 +139248 7547 are tired 2 +139249 7548 Surprisingly powerful and universal . 4 +139250 7548 Surprisingly powerful and universal 4 +139251 7548 powerful and universal 4 +139252 7549 Features nonsensical and laughable plotting , wooden performances , ineptly directed action sequences and some of the worst dialogue in recent memory . 0 +139253 7549 Features nonsensical and laughable plotting , wooden performances , 2 +139254 7549 Features nonsensical and laughable plotting , wooden performances 1 +139255 7549 Features nonsensical and laughable plotting , 2 +139256 7549 Features nonsensical and laughable plotting 1 +139257 7549 nonsensical and laughable plotting 1 +139258 7549 nonsensical and laughable 1 +139259 7549 wooden performances 1 +139260 7549 ineptly directed action sequences and some of the worst dialogue in recent memory . 0 +139261 7549 directed action sequences and some of the worst dialogue in recent memory . 0 +139262 7549 directed action sequences and some of the worst dialogue in recent memory 0 +139263 7549 directed action sequences and some of the worst dialogue 0 +139264 7549 action sequences and some of the worst dialogue 1 +139265 7549 action sequences and 2 +139266 7549 some of the worst dialogue 1 +139267 7549 of the worst dialogue 1 +139268 7549 the worst dialogue 0 +139269 7549 worst dialogue 2 +139270 7550 It 's weird , wonderful , and not necessarily for kids . 3 +139271 7550 's weird , wonderful , and not necessarily for kids . 2 +139272 7550 's weird , wonderful , and not necessarily for kids 4 +139273 7550 weird , wonderful , and not necessarily for kids 3 +139274 7550 weird , wonderful 3 +139275 7550 , wonderful 4 +139276 7550 , and not necessarily for kids 2 +139277 7550 and not necessarily for kids 2 +139278 7550 not necessarily for kids 2 +139279 7550 necessarily for kids 2 +139280 7551 A pleasant piece of escapist entertainment . 4 +139281 7551 A pleasant piece of escapist entertainment 3 +139282 7551 A pleasant piece 3 +139283 7551 pleasant piece 3 +139284 7551 of escapist entertainment 2 +139285 7551 escapist entertainment 2 +139286 7552 The best comedy concert movie I 've seen since Cho 's previous concert comedy film , I 'm the One That I Want , in 2000 . 4 +139287 7552 The best comedy concert movie I 've seen since Cho 's previous concert comedy film 4 +139288 7552 The best comedy concert movie 4 +139289 7552 best comedy concert movie 4 +139290 7552 comedy concert movie 2 +139291 7552 concert movie 2 +139292 7552 I 've seen since Cho 's previous concert comedy film 2 +139293 7552 've seen since Cho 's previous concert comedy film 2 +139294 7552 seen since Cho 's previous concert comedy film 2 +139295 7552 since Cho 's previous concert comedy film 2 +139296 7552 Cho 's previous concert comedy film 3 +139297 7552 previous concert comedy film 2 +139298 7552 concert comedy film 2 +139299 7552 comedy film 2 +139300 7552 , I 'm the One That I Want , in 2000 . 3 +139301 7552 I 'm the One That I Want , in 2000 . 2 +139302 7552 'm the One That I Want , in 2000 . 2 +139303 7552 'm the One That I Want , in 2000 2 +139304 7552 'm the One That I Want , 2 +139305 7552 in 2000 2 +139306 7553 It 's a very sincere work , but it would be better as a diary or documentary . 3 +139307 7553 It 's a very sincere work , but it would be better as a diary or documentary 2 +139308 7553 It 's a very sincere work , but 2 +139309 7553 It 's a very sincere work , 3 +139310 7553 It 's a very sincere work 3 +139311 7553 's a very sincere work 3 +139312 7553 a very sincere work 3 +139313 7553 very sincere work 3 +139314 7553 very sincere 3 +139315 7553 it would be better as a diary or documentary 1 +139316 7553 would be better as a diary or documentary 1 +139317 7553 be better as a diary or documentary 1 +139318 7553 as a diary or documentary 2 +139319 7553 a diary or documentary 2 +139320 7553 diary or documentary 2 +139321 7553 diary or 2 +139322 7554 A touching drama about old age and grief with a tour de force performance by Michel Piccoli . 4 +139323 7554 A touching drama about old age and grief with a tour de 4 +139324 7554 A touching drama about old age and grief 3 +139325 7554 A touching drama 4 +139326 7554 touching drama 3 +139327 7554 about old age and grief 2 +139328 7554 old age and grief 1 +139329 7554 age and grief 2 +139330 7554 age and 2 +139331 7554 with a tour de 2 +139332 7554 force performance by Michel Piccoli . 2 +139333 7554 force performance by Michel Piccoli 2 +139334 7554 force performance 2 +139335 7554 by Michel Piccoli 2 +139336 7555 The film fearlessly gets under the skin of the people involved ... This makes it not only a detailed historical document , but an engaging and moving portrait of a subculture . 3 +139337 7555 The film fearlessly gets under the skin of the people involved ... This makes it not only a detailed historical document , but an engaging and moving portrait of a subculture 4 +139338 7555 The film fearlessly gets under the skin of the people involved ... 2 +139339 7555 The film fearlessly gets under the skin of the people involved 3 +139340 7555 fearlessly gets under the skin of the people involved 3 +139341 7555 fearlessly 3 +139342 7555 gets under the skin of the people involved 2 +139343 7555 under the skin of the people involved 2 +139344 7555 the skin of the people involved 2 +139345 7555 of the people involved 2 +139346 7555 the people involved 2 +139347 7555 This makes it not only a detailed historical document , but an engaging and moving portrait of a subculture 4 +139348 7555 makes it not only a detailed historical document , but an engaging and moving portrait of a subculture 3 +139349 7555 not only a detailed historical document , but an engaging and moving portrait of a subculture 4 +139350 7555 a detailed historical document , but an engaging and moving portrait of a subculture 4 +139351 7555 a detailed historical document , but 2 +139352 7555 a detailed historical document , 3 +139353 7555 a detailed historical document 3 +139354 7555 detailed historical document 3 +139355 7555 historical document 2 +139356 7555 an engaging and moving portrait of a subculture 3 +139357 7555 an engaging and moving portrait 4 +139358 7555 engaging and moving portrait 3 +139359 7555 and moving portrait 3 +139360 7555 of a subculture 2 +139361 7556 You ... get a sense of good intentions derailed by a failure to seek and strike just the right tone . 1 +139362 7556 ... get a sense of good intentions derailed by a failure to seek and strike just the right tone . 1 +139363 7556 get a sense of good intentions derailed by a failure to seek and strike just the right tone . 1 +139364 7556 get a sense of good intentions derailed by a failure to seek and strike just the right tone 2 +139365 7556 a sense of good intentions derailed by a failure to seek and strike just the right tone 1 +139366 7556 of good intentions derailed by a failure to seek and strike just the right tone 1 +139367 7556 good intentions derailed by a failure to seek and strike just the right tone 1 +139368 7556 derailed by a failure to seek and strike just the right tone 1 +139369 7556 derailed by a failure 2 +139370 7556 by a failure 1 +139371 7556 to seek and strike just the right tone 3 +139372 7556 seek and strike just the right tone 3 +139373 7556 seek and strike 2 +139374 7556 seek and 2 +139375 7556 just the right tone 3 +139376 7556 the right tone 2 +139377 7556 right tone 3 +139378 7557 That , in itself , is extraordinary . 4 +139379 7557 , in itself , is extraordinary . 3 +139380 7557 in itself , is extraordinary . 3 +139381 7557 , is extraordinary . 4 +139382 7558 The Rules of Attraction gets us too drunk on the party favors to sober us up with the transparent attempts at moralizing . 1 +139383 7558 The Rules of Attraction 2 +139384 7558 of Attraction 2 +139385 7558 gets us too drunk on the party favors to sober us up with the transparent attempts at moralizing . 1 +139386 7558 gets us too drunk on the party favors to sober us up with the transparent attempts at moralizing 1 +139387 7558 us too drunk on the party favors to sober us up with the transparent attempts at moralizing 1 +139388 7558 too drunk on the party favors to sober us up with the transparent attempts at moralizing 1 +139389 7558 drunk on the party favors to sober us up with the transparent attempts at moralizing 2 +139390 7558 drunk 2 +139391 7558 on the party favors to sober us up with the transparent attempts at moralizing 1 +139392 7558 the party favors to sober us up with the transparent attempts at moralizing 1 +139393 7558 favors to sober us up with the transparent attempts at moralizing 1 +139394 7558 to sober us up with the transparent attempts at moralizing 1 +139395 7558 sober us up with the transparent attempts at moralizing 2 +139396 7558 sober us up 2 +139397 7558 sober us 2 +139398 7558 with the transparent attempts at moralizing 1 +139399 7558 the transparent attempts at moralizing 2 +139400 7558 the transparent attempts 2 +139401 7558 transparent attempts 1 +139402 7558 at moralizing 2 +139403 7559 The movie is gorgeously made , but it is also somewhat shallow and art-conscious . 2 +139404 7559 The movie is gorgeously made , but it is also somewhat shallow and art-conscious 2 +139405 7559 The movie is gorgeously made , but 4 +139406 7559 The movie is gorgeously made , 4 +139407 7559 The movie is gorgeously made 4 +139408 7559 is gorgeously made 3 +139409 7559 gorgeously made 3 +139410 7559 it is also somewhat shallow and art-conscious 1 +139411 7559 is also somewhat shallow and art-conscious 1 +139412 7559 somewhat shallow and art-conscious 1 +139413 7559 shallow and art-conscious 1 +139414 7559 art-conscious 3 +139415 7560 A classy , sprightly spin on film . 4 +139416 7560 A classy , sprightly spin on film 4 +139417 7560 A classy , sprightly spin 3 +139418 7560 classy , sprightly spin 3 +139419 7560 , sprightly spin 3 +139420 7560 sprightly spin 3 +139421 7561 It 's no accident that The Accidental Spy is a solid action pic that returns the martial arts master to top form . 4 +139422 7561 's no accident that The Accidental Spy is a solid action pic that returns the martial arts master to top form . 3 +139423 7561 's no accident that The Accidental Spy is a solid action pic that returns the martial arts master to top form 4 +139424 7561 's no accident 3 +139425 7561 no accident 2 +139426 7561 that The Accidental Spy is a solid action pic that returns the martial arts master to top form 4 +139427 7561 The Accidental Spy is a solid action pic that returns the martial arts master to top form 4 +139428 7561 The Accidental Spy 2 +139429 7561 Accidental Spy 2 +139430 7561 is a solid action pic that returns the martial arts master to top form 4 +139431 7561 a solid action pic that returns the martial arts master to top form 3 +139432 7561 a solid action pic 3 +139433 7561 solid action pic 3 +139434 7561 action pic 2 +139435 7561 that returns the martial arts master to top form 3 +139436 7561 returns the martial arts master to top form 4 +139437 7561 the martial arts master to top form 3 +139438 7561 the martial arts master 2 +139439 7561 martial arts master 2 +139440 7561 arts master 2 +139441 7561 to top form 3 +139442 7561 top form 3 +139443 7562 Everyone should be able to appreciate the wonderful cinematography and naturalistic acting . 3 +139444 7562 should be able to appreciate the wonderful cinematography and naturalistic acting . 3 +139445 7562 should be able to appreciate the wonderful cinematography and naturalistic acting 3 +139446 7562 be able to appreciate the wonderful cinematography and naturalistic acting 4 +139447 7562 able to appreciate the wonderful cinematography and naturalistic acting 4 +139448 7562 to appreciate the wonderful cinematography and naturalistic acting 4 +139449 7562 appreciate the wonderful cinematography and naturalistic acting 4 +139450 7562 the wonderful cinematography and naturalistic acting 4 +139451 7562 the wonderful cinematography and 4 +139452 7562 the wonderful cinematography 4 +139453 7562 wonderful cinematography 3 +139454 7562 naturalistic acting 3 +139455 7563 This story still seems timely and important . 3 +139456 7563 still seems timely and important . 3 +139457 7563 seems timely and important . 3 +139458 7563 seems timely and important 3 +139459 7563 timely and important 3 +139460 7563 timely and 3 +139461 7564 A complete waste of time . 1 +139462 7565 Just plain bad . 0 +139463 7565 plain bad . 0 +139464 7566 It leaves little doubt that Kidman has become one of our best actors . 4 +139465 7566 leaves little doubt that Kidman has become one of our best actors . 3 +139466 7566 leaves little doubt that Kidman has become one of our best actors 3 +139467 7566 little doubt that Kidman has become one of our best actors 4 +139468 7566 little doubt 3 +139469 7566 that Kidman has become one of our best actors 4 +139470 7566 Kidman has become one of our best actors 4 +139471 7566 has become one of our best actors 4 +139472 7566 become one of our best actors 4 +139473 7566 one of our best actors 4 +139474 7566 of our best actors 3 +139475 7566 our best actors 3 +139476 7567 A fascinating documentary that provides a rounded and revealing overview of this ancient holistic healing system 4 +139477 7567 A fascinating documentary 4 +139478 7567 fascinating documentary 4 +139479 7567 that provides a rounded and revealing overview of this ancient holistic healing system 3 +139480 7567 provides a rounded and revealing overview of this ancient holistic healing system 2 +139481 7567 a rounded and revealing overview of this ancient holistic healing system 3 +139482 7567 a rounded and revealing overview 3 +139483 7567 rounded and revealing overview 3 +139484 7567 rounded and revealing 3 +139485 7567 rounded and 2 +139486 7567 rounded 2 +139487 7567 of this ancient holistic healing system 2 +139488 7567 this ancient holistic healing system 2 +139489 7567 ancient holistic healing system 2 +139490 7567 holistic healing system 2 +139491 7567 holistic 2 +139492 7567 healing system 2 +139493 7567 healing 3 +139494 7568 The action scenes have all the suspense of a 20-car pileup , while the plot holes are big enough for a train car to drive through -- if Kaos had n't blown them all up . 0 +139495 7568 have all the suspense of a 20-car pileup , while the plot holes are big enough for a train car to drive through -- if Kaos had n't blown them all up . 1 +139496 7568 have all the suspense of a 20-car pileup , while the plot holes are big enough for a train car to drive through -- if Kaos had n't blown them all up 1 +139497 7568 have all the suspense of a 20-car pileup , 1 +139498 7568 have all the suspense of a 20-car pileup 1 +139499 7568 all the suspense of a 20-car pileup 2 +139500 7568 all the suspense 2 +139501 7568 of a 20-car pileup 1 +139502 7568 a 20-car pileup 1 +139503 7568 20-car pileup 2 +139504 7568 20-car 2 +139505 7568 while the plot holes are big enough for a train car to drive through -- if Kaos had n't blown them all up 1 +139506 7568 the plot holes are big enough for a train car to drive through -- if Kaos had n't blown them all up 1 +139507 7568 the plot holes 1 +139508 7568 are big enough for a train car to drive through -- if Kaos had n't blown them all up 2 +139509 7568 are big enough for a train car to drive through -- 2 +139510 7568 are big enough for a train car to drive through 2 +139511 7568 big enough for a train car to drive through 2 +139512 7568 big enough 2 +139513 7568 for a train car to drive through 2 +139514 7568 a train car to drive through 2 +139515 7568 train car to drive through 2 +139516 7568 car to drive through 3 +139517 7568 to drive through 2 +139518 7568 drive through 2 +139519 7568 if Kaos had n't blown them all up 1 +139520 7568 Kaos had n't blown them all up 2 +139521 7568 had n't blown them all up 2 +139522 7568 blown them all up 2 +139523 7568 blown them 2 +139524 7568 all up 2 +139525 7569 It is refreshingly undogmatic about its characters . 4 +139526 7569 is refreshingly undogmatic about its characters . 3 +139527 7569 is refreshingly undogmatic about its characters 3 +139528 7569 refreshingly undogmatic about its characters 2 +139529 7569 undogmatic about its characters 2 +139530 7569 undogmatic 2 +139531 7569 about its characters 2 +139532 7570 Things really get weird , though not particularly scary : the movie is all portent and no content . 1 +139533 7570 Things really get weird , though not particularly scary : the movie is all portent and no content 1 +139534 7570 Things really get weird , though not particularly scary : 1 +139535 7570 Things really get weird , though not particularly scary 1 +139536 7570 really get weird , though not particularly scary 1 +139537 7570 get weird , though not particularly scary 2 +139538 7570 get weird , 3 +139539 7570 get weird 2 +139540 7570 though not particularly scary 2 +139541 7570 not particularly scary 1 +139542 7570 particularly scary 2 +139543 7570 the movie is all portent and no content 1 +139544 7570 is all portent and no content 2 +139545 7570 all portent and no content 1 +139546 7570 all portent and 2 +139547 7570 all portent 2 +139548 7570 portent 2 +139549 7570 no content 1 +139550 7571 The cast ... keeps this pretty watchable , and casting Mick Jagger as director of the escort service was inspired . 3 +139551 7571 The cast ... keeps this pretty watchable , and casting Mick Jagger as director of the escort service was inspired 3 +139552 7571 The cast ... 2 +139553 7571 keeps this pretty watchable , and casting Mick Jagger as director of the escort service was inspired 3 +139554 7571 keeps this pretty watchable , and 3 +139555 7571 keeps this pretty watchable , 3 +139556 7571 keeps this pretty watchable 3 +139557 7571 this pretty watchable 3 +139558 7571 pretty watchable 3 +139559 7571 casting Mick Jagger as director of the escort service was inspired 3 +139560 7571 casting Mick Jagger 2 +139561 7571 Mick Jagger 2 +139562 7571 as director of the escort service was inspired 3 +139563 7571 director of the escort service was inspired 2 +139564 7571 director of the escort service 2 +139565 7571 of the escort service 2 +139566 7571 the escort service 2 +139567 7571 escort service 2 +139568 7571 was inspired 3 +139569 7572 Mildly amusing . 2 +139570 7573 Leave it to John Sayles to take on developers , the Chamber of Commerce , tourism , historical pageants , and commercialism all in the same movie ... without neglecting character development for even one minute . 4 +139571 7573 Leave it to John Sayles to take on developers , the Chamber of Commerce , tourism , historical pageants , and commercialism all in the same movie ... without neglecting character development for even one minute 4 +139572 7573 Leave it to John Sayles to take on developers , the Chamber of Commerce , tourism , historical pageants , and 2 +139573 7573 Leave it to John Sayles to take on developers , the Chamber of Commerce , tourism , historical pageants , 3 +139574 7573 Leave it to John Sayles 2 +139575 7573 to John Sayles 2 +139576 7573 John Sayles 2 +139577 7573 to take on developers , the Chamber of Commerce , tourism , historical pageants , 2 +139578 7573 take on developers , the Chamber of Commerce , tourism , historical pageants , 2 +139579 7573 on developers , the Chamber of Commerce , tourism , historical pageants , 2 +139580 7573 developers , the Chamber of Commerce , tourism , historical pageants , 2 +139581 7573 developers , 2 +139582 7573 developers 2 +139583 7573 the Chamber of Commerce , tourism , historical pageants , 2 +139584 7573 of Commerce , tourism , historical pageants , 2 +139585 7573 Commerce , tourism , historical pageants , 2 +139586 7573 Commerce , tourism , historical pageants 2 +139587 7573 Commerce , 2 +139588 7573 tourism , historical pageants 2 +139589 7573 tourism , 2 +139590 7573 tourism 2 +139591 7573 historical pageants 2 +139592 7573 pageants 2 +139593 7573 commercialism all in the same movie ... without neglecting character development for even one minute 3 +139594 7573 commercialism all in the same movie ... 2 +139595 7573 commercialism all in the same movie 1 +139596 7573 all in the same movie 2 +139597 7573 without neglecting character development for even one minute 3 +139598 7573 neglecting character development for even one minute 2 +139599 7573 neglecting character development 0 +139600 7573 for even one minute 2 +139601 7573 even one minute 2 +139602 7573 one minute 2 +139603 7574 One ca n't deny its seriousness and quality . 3 +139604 7574 ca n't deny its seriousness and quality . 3 +139605 7574 ca n't deny its seriousness and quality 3 +139606 7574 deny its seriousness and quality 1 +139607 7574 deny 2 +139608 7574 its seriousness and quality 3 +139609 7574 seriousness and quality 3 +139610 7574 seriousness and 2 +139611 7575 Any intellectual arguments being made about the nature of God are framed in a drama so clumsy , there is a real danger less sophisticated audiences will mistake it for an endorsement of the very things that Bean abhors . 2 +139612 7575 Any intellectual arguments being made about the nature of God are framed in a drama so clumsy 1 +139613 7575 Any intellectual arguments being made about the nature of God 2 +139614 7575 Any intellectual arguments 2 +139615 7575 intellectual arguments 2 +139616 7575 being made about the nature of God 2 +139617 7575 made about the nature of God 2 +139618 7575 about the nature of God 2 +139619 7575 the nature of God 2 +139620 7575 of God 2 +139621 7575 are framed in a drama so clumsy 1 +139622 7575 framed in a drama so clumsy 1 +139623 7575 in a drama so clumsy 1 +139624 7575 a drama so clumsy 1 +139625 7575 so clumsy 2 +139626 7575 , there is a real danger less sophisticated audiences will mistake it for an endorsement of the very things that Bean abhors . 2 +139627 7575 there is a real danger less sophisticated audiences will mistake it for an endorsement of the very things that Bean abhors . 1 +139628 7575 is a real danger less sophisticated audiences will mistake it for an endorsement of the very things that Bean abhors . 1 +139629 7575 is a real danger less sophisticated audiences will mistake it for an endorsement of the very things that Bean abhors 1 +139630 7575 a real danger less sophisticated audiences will mistake it for an endorsement of the very things that Bean abhors 1 +139631 7575 a real danger 2 +139632 7575 real danger 2 +139633 7575 less sophisticated audiences will mistake it for an endorsement of the very things that Bean abhors 2 +139634 7575 less sophisticated audiences 1 +139635 7575 less sophisticated 1 +139636 7575 will mistake it for an endorsement of the very things that Bean abhors 1 +139637 7575 mistake it for an endorsement of the very things that Bean abhors 0 +139638 7575 mistake it for an endorsement of the very things 2 +139639 7575 for an endorsement of the very things 2 +139640 7575 an endorsement of the very things 3 +139641 7575 an endorsement 3 +139642 7575 endorsement 2 +139643 7575 of the very things 2 +139644 7575 the very things 2 +139645 7575 very things 2 +139646 7575 that Bean abhors 2 +139647 7575 Bean abhors 2 +139648 7575 abhors 2 +139649 7576 An entertaining mix of period drama and flat-out farce that should please history fans . 3 +139650 7576 An entertaining mix of period drama and flat-out farce that should please history fans 3 +139651 7576 An entertaining mix 4 +139652 7576 entertaining mix 3 +139653 7576 of period drama and flat-out farce that should please history fans 3 +139654 7576 period drama and flat-out farce that should please history fans 3 +139655 7576 period drama and flat-out farce 2 +139656 7576 drama and flat-out farce 2 +139657 7576 and flat-out farce 1 +139658 7576 flat-out farce 2 +139659 7576 flat-out 2 +139660 7576 that should please history fans 4 +139661 7576 should please history fans 3 +139662 7576 please history fans 3 +139663 7576 history fans 2 +139664 7577 What saves this deeply affecting film from being merely a collection of wrenching cases is Corcuera 's attention to detail . 3 +139665 7577 What saves this deeply affecting film from being merely 2 +139666 7577 saves this deeply affecting film from being merely 3 +139667 7577 saves this deeply affecting film 3 +139668 7577 this deeply affecting film 3 +139669 7577 deeply affecting film 3 +139670 7577 deeply affecting 2 +139671 7577 from being merely 2 +139672 7577 being merely 2 +139673 7577 a collection of wrenching cases is Corcuera 's attention to detail . 3 +139674 7577 a collection of wrenching cases 2 +139675 7577 of wrenching cases 2 +139676 7577 wrenching cases 2 +139677 7577 cases 2 +139678 7577 is Corcuera 's attention to detail . 3 +139679 7577 is Corcuera 's attention to detail 2 +139680 7577 Corcuera 's attention to detail 3 +139681 7577 Corcuera 's attention 2 +139682 7577 Corcuera 's 2 +139683 7577 Corcuera 2 +139684 7578 From the dull , surreal ache of mortal awareness emerges a radiant character portrait . 3 +139685 7578 From the dull 1 +139686 7578 the dull 1 +139687 7578 , surreal ache of mortal awareness emerges a radiant character portrait . 3 +139688 7578 surreal ache of mortal awareness emerges a radiant character portrait . 3 +139689 7578 surreal ache of mortal awareness 3 +139690 7578 surreal ache 2 +139691 7578 of mortal awareness 2 +139692 7578 mortal awareness 3 +139693 7578 mortal 2 +139694 7578 emerges a radiant character portrait . 3 +139695 7578 emerges a radiant character portrait 3 +139696 7578 a radiant character portrait 4 +139697 7578 radiant character portrait 3 +139698 7578 character portrait 2 +139699 7579 Refreshing . 4 +139700 7580 An ill-conceived jumble that 's not scary , not smart and not engaging . 1 +139701 7580 An ill-conceived 1 +139702 7580 jumble that 's not scary , not smart and not engaging . 0 +139703 7580 jumble that 's not scary , not smart and not engaging 1 +139704 7580 that 's not scary , not smart and not engaging 0 +139705 7580 's not scary , not smart and not engaging 1 +139706 7580 not scary , not smart and not engaging 1 +139707 7580 not scary 1 +139708 7580 , not smart and not engaging 2 +139709 7580 not smart and not engaging 0 +139710 7580 not smart and 1 +139711 7580 not engaging 1 +139712 7581 This breezy caper movie becomes a soulful , incisive meditation on the way we were , and the way we are . 3 +139713 7581 This breezy caper movie 2 +139714 7581 breezy caper movie 2 +139715 7581 caper movie 2 +139716 7581 becomes a soulful , incisive meditation on the way we were , and the way we are . 3 +139717 7581 becomes a soulful , incisive meditation on the way we were , and the way we are 3 +139718 7581 becomes a soulful , incisive meditation 3 +139719 7581 a soulful , incisive meditation 3 +139720 7581 soulful , incisive meditation 3 +139721 7581 , incisive meditation 2 +139722 7581 incisive meditation 2 +139723 7581 on the way we were , and the way we are 2 +139724 7581 the way we were , and the way we are 2 +139725 7581 the way we were , and 2 +139726 7581 the way we were , 2 +139727 7581 the way we were 2 +139728 7581 we were 2 +139729 7581 the way we are 2 +139730 7581 we are 2 +139731 7582 Too bad none of it is funny . 0 +139732 7582 Too bad none of it 2 +139733 7582 Too bad none 2 +139734 7582 is funny . 3 +139735 7583 While Solondz tries and tries hard , Storytelling fails to provide much more insight than the inside column of a torn book jacket . 1 +139736 7583 While Solondz tries and tries hard 2 +139737 7583 Solondz tries and tries hard 2 +139738 7583 tries and tries hard 3 +139739 7583 tries and tries 2 +139740 7583 tries and 2 +139741 7583 , Storytelling fails to provide much more insight than the inside column of a torn book jacket . 1 +139742 7583 Storytelling fails to provide much more insight than the inside column of a torn book jacket . 0 +139743 7583 fails to provide much more insight than the inside column of a torn book jacket . 0 +139744 7583 fails to provide much more insight than the inside column of a torn book jacket 0 +139745 7583 to provide much more insight than the inside column of a torn book jacket 2 +139746 7583 provide much more insight than the inside column of a torn book jacket 1 +139747 7583 provide much more insight 3 +139748 7583 much more insight 2 +139749 7583 more insight 2 +139750 7583 than the inside column of a torn book jacket 2 +139751 7583 the inside column of a torn book jacket 2 +139752 7583 the inside column 2 +139753 7583 inside column 2 +139754 7583 of a torn book jacket 2 +139755 7583 a torn book jacket 3 +139756 7583 torn book jacket 3 +139757 7583 book jacket 2 +139758 7583 jacket 2 +139759 7584 Literary purists may not be pleased , but as far as mainstream matinee-style entertainment goes , it does a bang-up job of pleasing the crowds . 4 +139760 7584 Literary purists may not be pleased , but as far as mainstream matinee-style entertainment goes , it does a bang-up job of pleasing the crowds 2 +139761 7584 Literary purists may not be pleased , but 2 +139762 7584 Literary purists may not be pleased , 2 +139763 7584 Literary purists may not be pleased 2 +139764 7584 Literary purists 2 +139765 7584 may not be pleased 1 +139766 7584 be pleased 3 +139767 7584 as far as mainstream matinee-style entertainment goes , it does a bang-up job of pleasing the crowds 3 +139768 7584 as far as mainstream matinee-style entertainment goes 1 +139769 7584 far as mainstream matinee-style entertainment goes 2 +139770 7584 as mainstream matinee-style entertainment goes 2 +139771 7584 mainstream matinee-style entertainment goes 2 +139772 7584 mainstream matinee-style entertainment 3 +139773 7584 matinee-style entertainment 2 +139774 7584 matinee-style 2 +139775 7584 , it does a bang-up job of pleasing the crowds 4 +139776 7584 it does a bang-up job of pleasing the crowds 3 +139777 7584 does a bang-up job of pleasing the crowds 3 +139778 7584 a bang-up job of pleasing the crowds 4 +139779 7584 a bang-up job 3 +139780 7584 bang-up job 3 +139781 7584 bang-up 3 +139782 7584 of pleasing the crowds 2 +139783 7584 pleasing the crowds 3 +139784 7584 the crowds 2 +139785 7584 crowds 2 +139786 7585 But on the whole , you 're gonna like this movie . 3 +139787 7585 on the whole , you 're gonna like this movie . 3 +139788 7585 on the whole 2 +139789 7585 , you 're gonna like this movie . 4 +139790 7585 you 're gonna like this movie . 4 +139791 7585 're gonna like this movie . 4 +139792 7585 're gonna like this movie 3 +139793 7585 gonna like this movie 3 +139794 7585 like this movie 3 +139795 7586 For dance completists only . 0 +139796 7586 dance completists only . 2 +139797 7586 completists only . 2 +139798 7586 completists only 2 +139799 7586 completists 2 +139800 7587 The movie obviously seeks to re-create the excitement of such '50s flicks as Jules Verne 's ' 20,000 Leagues Under the Sea ' and the George Pal version of H.G. Wells ' ` The Time Machine . ' 2 +139801 7587 obviously seeks to re-create the excitement of such '50s flicks as Jules Verne 's ' 20,000 Leagues Under the Sea ' and the George Pal version of H.G. Wells ' ` The Time Machine . ' 2 +139802 7587 seeks to re-create the excitement of such '50s flicks as Jules Verne 's ' 20,000 Leagues Under the Sea ' and the George Pal version of H.G. Wells ' ` The Time Machine . ' 3 +139803 7587 seeks to re-create the excitement of such '50s flicks as Jules Verne 's ' 20,000 Leagues Under the Sea ' and the George Pal version of H.G. Wells ' ` The Time Machine . 3 +139804 7587 seeks to re-create the excitement of such '50s flicks as Jules Verne 's ' 20,000 Leagues Under the Sea ' and the George Pal version of H.G. Wells ' ` The Time Machine 2 +139805 7587 to re-create the excitement of such '50s flicks as Jules Verne 's ' 20,000 Leagues Under the Sea ' and the George Pal version of H.G. Wells ' ` The Time Machine 3 +139806 7587 re-create the excitement of such '50s flicks as Jules Verne 's ' 20,000 Leagues Under the Sea ' and the George Pal version of H.G. Wells ' ` The Time Machine 4 +139807 7587 re-create the excitement of such '50s flicks 3 +139808 7587 re-create 2 +139809 7587 the excitement of such '50s flicks 3 +139810 7587 of such '50s flicks 2 +139811 7587 such '50s flicks 2 +139812 7587 '50s flicks 2 +139813 7587 as Jules Verne 's ' 20,000 Leagues Under the Sea ' and the George Pal version of H.G. Wells ' ` The Time Machine 2 +139814 7587 Jules Verne 's ' 20,000 Leagues Under the Sea ' and the George Pal version of H.G. Wells ' ` The Time Machine 2 +139815 7587 Jules Verne 's ' 2 +139816 7587 Jules 2 +139817 7587 Verne 's ' 2 +139818 7587 Verne 2 +139819 7587 's ' 2 +139820 7587 20,000 Leagues Under the Sea ' and the George Pal version of H.G. Wells ' ` The Time Machine 2 +139821 7587 20,000 2 +139822 7587 Leagues Under the Sea ' and the George Pal version of H.G. Wells ' ` The Time Machine 2 +139823 7587 Leagues Under the Sea ' and the George Pal version of H.G. Wells ' ` The Time 2 +139824 7587 Leagues 2 +139825 7587 Under the Sea ' and the George Pal version of H.G. Wells ' ` The Time 2 +139826 7587 the Sea ' and the George Pal version of H.G. Wells ' ` The Time 2 +139827 7587 the Sea ' and 2 +139828 7587 the Sea ' 2 +139829 7587 Sea ' 2 +139830 7587 the George Pal version of H.G. Wells ' ` The Time 2 +139831 7587 the George Pal version 2 +139832 7587 George Pal version 2 +139833 7587 Pal version 2 +139834 7587 Pal 2 +139835 7587 of H.G. Wells ' ` The Time 2 +139836 7587 H.G. Wells ' ` The Time 2 +139837 7587 ` The Time 2 +139838 7588 There 's so much to look at in Metropolis you hate to tear your eyes away from the images long enough to read the subtitles . 4 +139839 7588 's so much to look at in Metropolis you hate to tear your eyes away from the images long enough to read the subtitles . 4 +139840 7588 's so much to look at in Metropolis you hate to tear your eyes away from the images long enough to read the subtitles 3 +139841 7588 so much to look at in Metropolis you hate to tear your eyes away from the images long enough to read the subtitles 3 +139842 7588 so much to look 3 +139843 7588 much to look 2 +139844 7588 to look 2 +139845 7588 at in Metropolis you hate to tear your eyes away from the images long enough to read the subtitles 4 +139846 7588 in Metropolis you hate to tear your eyes away from the images long enough to read the subtitles 3 +139847 7588 Metropolis you hate to tear your eyes away from the images long enough to read the subtitles 4 +139848 7588 you hate to tear your eyes away from the images long enough to read the subtitles 4 +139849 7588 hate to tear your eyes away from the images long enough to read the subtitles 3 +139850 7588 hate to tear your eyes away from the images 3 +139851 7588 to tear your eyes away from the images 3 +139852 7588 tear your eyes away from the images 3 +139853 7588 tear your eyes away 1 +139854 7588 tear your eyes 3 +139855 7588 from the images 2 +139856 7588 long enough to read the subtitles 3 +139857 7588 enough to read the subtitles 2 +139858 7588 to read the subtitles 2 +139859 7588 read the subtitles 2 +139860 7588 the subtitles 2 +139861 7589 More timely than its director could ever have dreamed , this quietly lyrical tale probes the ambiguous welcome extended by Iran to the Afghani refugees who streamed across its borders , desperate for work and food . 4 +139862 7589 More timely than its director could ever have dreamed 3 +139863 7589 timely than its director could ever have dreamed 3 +139864 7589 than its director could ever have dreamed 2 +139865 7589 its director could ever have dreamed 3 +139866 7589 could ever have dreamed 2 +139867 7589 have dreamed 2 +139868 7589 , this quietly lyrical tale probes the ambiguous welcome extended by Iran to the Afghani refugees who streamed across its borders , desperate for work and food . 3 +139869 7589 this quietly lyrical tale probes the ambiguous welcome extended by Iran to the Afghani refugees who streamed across its borders , desperate for work and food . 3 +139870 7589 quietly lyrical tale probes the ambiguous welcome extended by Iran to the Afghani refugees who streamed across its borders , desperate for work and food . 2 +139871 7589 lyrical tale probes the ambiguous welcome extended by Iran to the Afghani refugees who streamed across its borders , desperate for work and food . 3 +139872 7589 lyrical tale probes the ambiguous welcome extended by Iran to the Afghani refugees who streamed across its borders , desperate for work and food 3 +139873 7589 tale probes the ambiguous welcome extended by Iran to the Afghani refugees who streamed across its borders , desperate for work and food 2 +139874 7589 tale probes 2 +139875 7589 the ambiguous welcome extended by Iran to the Afghani refugees who streamed across its borders , desperate for work and food 3 +139876 7589 the ambiguous welcome 3 +139877 7589 ambiguous welcome 2 +139878 7589 extended by Iran to the Afghani refugees who streamed across its borders , desperate for work and food 2 +139879 7589 extended by Iran 2 +139880 7589 by Iran 2 +139881 7589 Iran 2 +139882 7589 to the Afghani refugees who streamed across its borders , desperate for work and food 3 +139883 7589 the Afghani refugees who streamed across its borders , desperate for work and food 2 +139884 7589 the Afghani refugees 2 +139885 7589 Afghani refugees 2 +139886 7589 Afghani 2 +139887 7589 who streamed across its borders , desperate for work and food 2 +139888 7589 streamed across its borders , desperate for work and food 2 +139889 7589 streamed across its borders , 2 +139890 7589 streamed across its borders 3 +139891 7589 streamed 2 +139892 7589 across its borders 2 +139893 7589 its borders 2 +139894 7589 desperate for work and food 1 +139895 7589 for work and food 2 +139896 7589 work and food 2 +139897 7590 What Lee does so marvelously compelling is present Brown as a catalyst for the struggle of black manhood in restrictive and chaotic America ... sketchy but nevertheless gripping portrait of Jim Brown , a celebrated wonder in the spotlight 3 +139898 7590 Lee does so marvelously compelling is present Brown as a catalyst for the struggle of black manhood in restrictive and chaotic America ... sketchy but nevertheless gripping portrait of Jim Brown , a celebrated wonder in the spotlight 4 +139899 7590 does so marvelously compelling is present Brown as a catalyst for the struggle of black manhood in restrictive and chaotic America ... sketchy but nevertheless gripping portrait of Jim Brown , a celebrated wonder in the spotlight 3 +139900 7590 so marvelously compelling is present Brown as a catalyst for the struggle of black manhood in restrictive and chaotic America ... sketchy but nevertheless gripping portrait of Jim Brown , a celebrated wonder in the spotlight 4 +139901 7590 marvelously compelling is present Brown as a catalyst for the struggle of black manhood in restrictive and chaotic America ... sketchy but nevertheless gripping portrait of Jim Brown , a celebrated wonder in the spotlight 3 +139902 7590 compelling is present Brown as a catalyst for the struggle of black manhood in restrictive and chaotic America ... sketchy but nevertheless gripping portrait of Jim Brown , a celebrated wonder in the spotlight 4 +139903 7590 is present Brown as a catalyst for the struggle of black manhood in restrictive and chaotic America ... sketchy but nevertheless gripping portrait of Jim Brown , a celebrated wonder in the spotlight 3 +139904 7590 present Brown as a catalyst for the struggle of black manhood in restrictive and chaotic America ... sketchy but nevertheless gripping portrait of Jim Brown , a celebrated wonder in the spotlight 3 +139905 7590 present Brown 2 +139906 7590 as a catalyst for the struggle of black manhood in restrictive and chaotic America ... sketchy but nevertheless gripping portrait of Jim Brown , a celebrated wonder in the spotlight 3 +139907 7590 a catalyst for the struggle of black manhood in restrictive and chaotic America ... sketchy but nevertheless gripping portrait of Jim Brown , a celebrated wonder in the spotlight 3 +139908 7590 a catalyst for the struggle of black manhood in restrictive and chaotic America ... sketchy but nevertheless 2 +139909 7590 a catalyst for the struggle of black manhood in restrictive and chaotic America ... 3 +139910 7590 a catalyst for the struggle of black manhood in restrictive and chaotic America 3 +139911 7590 a catalyst for the struggle of black manhood 2 +139912 7590 a catalyst 2 +139913 7590 catalyst 2 +139914 7590 for the struggle of black manhood 2 +139915 7590 the struggle of black manhood 2 +139916 7590 of black manhood 2 +139917 7590 in restrictive and chaotic America 2 +139918 7590 restrictive and chaotic America 2 +139919 7590 restrictive and chaotic 0 +139920 7590 restrictive and 2 +139921 7590 restrictive 1 +139922 7590 sketchy but nevertheless 1 +139923 7590 sketchy but 2 +139924 7590 gripping portrait of Jim Brown , a celebrated wonder in the spotlight 4 +139925 7590 gripping portrait 3 +139926 7590 of Jim Brown , a celebrated wonder in the spotlight 3 +139927 7590 Jim Brown , a celebrated wonder in the spotlight 3 +139928 7590 Jim Brown , 2 +139929 7590 a celebrated wonder in the spotlight 4 +139930 7590 a celebrated wonder 4 +139931 7590 celebrated wonder 3 +139932 7590 in the spotlight 2 +139933 7591 The film has a kind of hard , cold effect . 1 +139934 7591 has a kind of hard , cold effect . 2 +139935 7591 has a kind of hard , cold effect 1 +139936 7591 a kind of hard , cold effect 1 +139937 7591 of hard , cold effect 2 +139938 7591 hard , cold effect 1 +139939 7591 , cold effect 2 +139940 7591 cold effect 2 +139941 7592 Beneath the film 's obvious determination to shock at any cost lies considerable skill and determination , backed by sheer nerve . 3 +139942 7592 Beneath the film 's obvious determination to shock at any cost 2 +139943 7592 the film 's obvious determination to shock at any cost 2 +139944 7592 obvious determination to shock at any cost 1 +139945 7592 determination to shock at any cost 2 +139946 7592 to shock at any cost 2 +139947 7592 shock at any cost 2 +139948 7592 at any cost 2 +139949 7592 any cost 2 +139950 7592 lies considerable skill and determination , backed by sheer nerve . 3 +139951 7592 lies considerable skill and determination , backed by sheer nerve 3 +139952 7592 considerable skill and determination , backed by sheer nerve 3 +139953 7592 considerable skill and determination , 3 +139954 7592 considerable skill and determination 2 +139955 7592 skill and determination 3 +139956 7592 skill and 2 +139957 7592 backed by sheer nerve 3 +139958 7592 by sheer nerve 2 +139959 7592 sheer nerve 2 +139960 7593 But then again , I hate myself most mornings . 1 +139961 7593 then again , I hate myself most mornings . 0 +139962 7593 , I hate myself most mornings . 1 +139963 7593 I hate myself most mornings . 2 +139964 7593 hate myself most mornings . 1 +139965 7593 hate myself most mornings 1 +139966 7593 hate myself 0 +139967 7593 most mornings 3 +139968 7593 mornings 2 +139969 7594 How about surprising us by trying something new ? 0 +139970 7594 about surprising us by trying something new ? 2 +139971 7594 about surprising us by trying something new 3 +139972 7594 about surprising us 2 +139973 7594 about surprising 2 +139974 7594 by trying something new 2 +139975 7594 trying something new 2 +139976 7595 Katz 's documentary does n't have much panache , but with material this rich it does n't need it . 3 +139977 7595 Katz 's documentary 2 +139978 7595 Katz 's 2 +139979 7595 Katz 2 +139980 7595 does n't have much panache , but with material this rich it does n't need it . 4 +139981 7595 does n't have much panache , but with material this rich it does n't need it 3 +139982 7595 have much panache , but with material this rich it does n't need it 3 +139983 7595 much panache , but with material this rich it does n't need it 3 +139984 7595 much panache 3 +139985 7595 , but with material this rich it does n't need it 3 +139986 7595 with material this rich it does n't need it 3 +139987 7595 material this rich it does n't need it 3 +139988 7595 material this rich 3 +139989 7595 this rich 3 +139990 7595 it does n't need it 2 +139991 7595 does n't need it 2 +139992 7595 need it 2 +139993 7596 Sweet Home Alabama is one dumb movie , but its stupidity is so relentlessly harmless that it almost wins you over in the end . 2 +139994 7596 Sweet Home Alabama is one dumb movie , but its stupidity is so relentlessly harmless that it almost wins you over in the end 1 +139995 7596 Sweet Home Alabama is one dumb movie , but 1 +139996 7596 Sweet Home Alabama is one dumb movie , 1 +139997 7596 Sweet Home Alabama is one dumb movie 1 +139998 7596 is one dumb movie 0 +139999 7596 one dumb movie 1 +140000 7596 dumb movie 0 +140001 7596 its stupidity is so relentlessly harmless that it almost wins you over in the end 1 +140002 7596 is so relentlessly harmless that it almost wins you over in the end 3 +140003 7596 is so relentlessly harmless 2 +140004 7596 so relentlessly harmless 2 +140005 7596 relentlessly harmless 2 +140006 7596 that it almost wins you over in the end 3 +140007 7596 it almost wins you over in the end 2 +140008 7596 almost wins you over in the end 2 +140009 7596 wins you over in the end 3 +140010 7596 wins you over 4 +140011 7596 wins you 4 +140012 7597 A polished and vastly entertaining caper film that puts the sting back into the con . 3 +140013 7597 A polished and vastly entertaining caper film that puts the sting back into the con 4 +140014 7597 A polished and vastly entertaining caper 3 +140015 7597 polished and vastly entertaining caper 4 +140016 7597 polished and vastly entertaining 4 +140017 7597 polished and 3 +140018 7597 vastly entertaining 4 +140019 7597 film that puts the sting back into the con 2 +140020 7597 that puts the sting back into the con 2 +140021 7597 puts the sting back into the con 3 +140022 7597 the sting back into the con 2 +140023 7597 the sting back 2 +140024 7597 into the con 2 +140025 7598 Most folks with a real stake in the American sexual landscape will find it either moderately amusing or just plain irrelevant . 2 +140026 7598 Most folks with a real stake in the American sexual landscape 2 +140027 7598 Most folks 2 +140028 7598 with a real stake in the American sexual landscape 2 +140029 7598 a real stake in the American sexual landscape 2 +140030 7598 a real stake 2 +140031 7598 real stake 2 +140032 7598 in the American sexual landscape 2 +140033 7598 the American sexual landscape 3 +140034 7598 American sexual landscape 2 +140035 7598 sexual landscape 2 +140036 7598 will find it either moderately amusing or just plain irrelevant . 2 +140037 7598 will find it either moderately amusing or just plain irrelevant 1 +140038 7598 find it either moderately amusing or just plain irrelevant 1 +140039 7598 it either moderately amusing or just plain irrelevant 1 +140040 7598 either moderately amusing or just plain irrelevant 1 +140041 7598 either moderately amusing or 3 +140042 7598 either moderately amusing 3 +140043 7598 moderately amusing 3 +140044 7598 just plain irrelevant 0 +140045 7598 plain irrelevant 1 +140046 7599 Even though it 's common knowledge that Park and his founding partner , Yong Kang , lost Kozmo in the end , you ca n't help but get caught up in the thrill of the company 's astonishing growth . 3 +140047 7599 Even though it 's common knowledge that Park and his founding partner , Yong Kang , lost Kozmo in the end 2 +140048 7599 though it 's common knowledge that Park and his founding partner , Yong Kang , lost Kozmo in the end 2 +140049 7599 it 's common knowledge that Park and his founding partner , Yong Kang , lost Kozmo in the end 3 +140050 7599 's common knowledge that Park and his founding partner , Yong Kang , lost Kozmo in the end 2 +140051 7599 's common knowledge 2 +140052 7599 common knowledge 2 +140053 7599 that Park and his founding partner , Yong Kang , lost Kozmo in the end 2 +140054 7599 Park and his founding partner , Yong Kang , lost Kozmo in the end 2 +140055 7599 Park and his founding partner , Yong Kang , 2 +140056 7599 Park and 2 +140057 7599 his founding partner , Yong Kang , 2 +140058 7599 his founding partner , Yong Kang 2 +140059 7599 his founding partner , 2 +140060 7599 his founding partner 2 +140061 7599 founding partner 2 +140062 7599 founding 2 +140063 7599 Yong Kang 3 +140064 7599 Yong 2 +140065 7599 lost Kozmo in the end 2 +140066 7599 Kozmo in the end 2 +140067 7599 Kozmo 2 +140068 7599 , you ca n't help but get caught up in the thrill of the company 's astonishing growth . 4 +140069 7599 you ca n't help but get caught up in the thrill of the company 's astonishing growth . 3 +140070 7599 ca n't help but get caught up in the thrill of the company 's astonishing growth . 3 +140071 7599 ca n't help but get caught up in the thrill of the company 's astonishing growth 3 +140072 7599 get caught up in the thrill of the company 's astonishing growth 3 +140073 7599 caught up in the thrill of the company 's astonishing growth 2 +140074 7599 in the thrill of the company 's astonishing growth 3 +140075 7599 the thrill of the company 's astonishing growth 3 +140076 7599 of the company 's astonishing growth 3 +140077 7599 the company 's astonishing growth 3 +140078 7599 astonishing growth 4 +140079 7600 This is the kind of movie where people who have never picked a lock do so easily after a few tries and become expert fighters after a few weeks . 1 +140080 7600 is the kind of movie where people who have never picked a lock do so easily after a few tries and become expert fighters after a few weeks . 1 +140081 7600 is the kind of movie where people who have never picked a lock do so easily after a few tries and become expert fighters after a few weeks 2 +140082 7600 the kind of movie where people who have never picked a lock do so easily after a few tries and become expert fighters after a few weeks 2 +140083 7600 where people who have never picked a lock do so easily after a few tries and become expert fighters after a few weeks 1 +140084 7600 people who have never picked a lock do so easily after a few tries and become expert fighters after a few weeks 1 +140085 7600 people who have never picked a lock 2 +140086 7600 who have never picked a lock 2 +140087 7600 have never picked a lock 2 +140088 7600 have never 2 +140089 7600 picked a lock 2 +140090 7600 a lock 2 +140091 7600 do so easily after a few tries and become expert fighters after a few weeks 2 +140092 7600 so easily after a few tries and become expert fighters after a few weeks 1 +140093 7600 after a few tries and become expert fighters after a few weeks 2 +140094 7600 a few tries and become expert fighters after a few weeks 2 +140095 7600 tries and become expert fighters after a few weeks 2 +140096 7600 become expert fighters after a few weeks 2 +140097 7600 become expert fighters 3 +140098 7600 expert fighters 3 +140099 7600 fighters 2 +140100 7600 after a few weeks 2 +140101 7600 a few weeks 2 +140102 7600 few weeks 2 +140103 7601 When the violence actually shocked ? 2 +140104 7601 the violence actually shocked ? 2 +140105 7601 the violence actually shocked 2 +140106 7601 actually shocked 2 +140107 7602 The extent to which it succeeds is impressive . 3 +140108 7602 The extent to which it succeeds 3 +140109 7602 to which it succeeds 3 +140110 7602 it succeeds 3 +140111 7602 is impressive . 4 +140112 7603 Too many improbabilities and rose-colored situations temper what could 've been an impacting film . 2 +140113 7603 Too many improbabilities and rose-colored situations 1 +140114 7603 Too many improbabilities and 1 +140115 7603 Too many improbabilities 1 +140116 7603 many improbabilities 1 +140117 7603 improbabilities 2 +140118 7603 rose-colored situations 2 +140119 7603 temper what could 've been an impacting film . 1 +140120 7603 temper what could 've been an impacting film 1 +140121 7603 temper 2 +140122 7603 what could 've been an impacting film 1 +140123 7603 could 've been an impacting film 2 +140124 7603 've been an impacting film 2 +140125 7603 been an impacting film 3 +140126 7603 an impacting film 3 +140127 7603 impacting film 3 +140128 7603 impacting 2 +140129 7604 Like other great documentaries ... this goes after one truth -LRB- the Ford administration 's complicity in tearing ` orphans ' from their mothers -RRB- and stumbles upon others even more compelling . 2 +140130 7604 Like other great documentaries 3 +140131 7604 other great documentaries 3 +140132 7604 great documentaries 3 +140133 7604 ... this goes after one truth -LRB- the Ford administration 's complicity in tearing ` orphans ' from their mothers -RRB- and stumbles upon others even more compelling . 4 +140134 7604 this goes after one truth -LRB- the Ford administration 's complicity in tearing ` orphans ' from their mothers -RRB- and stumbles upon others even more compelling . 3 +140135 7604 goes after one truth -LRB- the Ford administration 's complicity in tearing ` orphans ' from their mothers -RRB- and stumbles upon others even more compelling . 2 +140136 7604 goes after one truth -LRB- the Ford administration 's complicity in tearing ` orphans ' from their mothers -RRB- and stumbles upon others even more compelling 1 +140137 7604 after one truth -LRB- the Ford administration 's complicity in tearing ` orphans ' from their mothers -RRB- and stumbles upon others even more compelling 2 +140138 7604 one truth -LRB- the Ford administration 's complicity in tearing ` orphans ' from their mothers -RRB- and stumbles upon others even more compelling 2 +140139 7604 one truth -LRB- the Ford administration 's complicity in tearing ` orphans ' from their mothers -RRB- and 2 +140140 7604 one truth -LRB- the Ford administration 's complicity in tearing ` orphans ' from their mothers -RRB- 2 +140141 7604 one truth -LRB- the Ford administration 's complicity in tearing ` orphans ' from their mothers 1 +140142 7604 one truth -LRB- 2 +140143 7604 one truth 2 +140144 7604 the Ford administration 's complicity in tearing ` orphans ' from their mothers 1 +140145 7604 the Ford administration 's complicity 2 +140146 7604 the Ford administration 's 2 +140147 7604 Ford administration 's 2 +140148 7604 administration 's 2 +140149 7604 administration 2 +140150 7604 complicity 2 +140151 7604 in tearing ` orphans ' from their mothers 2 +140152 7604 tearing ` orphans ' from their mothers 1 +140153 7604 tearing ` orphans ' 2 +140154 7604 tearing ` orphans 1 +140155 7604 tearing ` 2 +140156 7604 tearing 2 +140157 7604 orphans 2 +140158 7604 from their mothers 2 +140159 7604 their mothers 2 +140160 7604 stumbles upon others even more compelling 2 +140161 7604 upon others even more compelling 2 +140162 7604 others even more compelling 2 +140163 7604 even more compelling 3 +140164 7605 Then again , in a better movie , you might not have noticed . 0 +140165 7605 again , in a better movie , you might not have noticed . 1 +140166 7605 , in a better movie , you might not have noticed . 1 +140167 7605 in a better movie , you might not have noticed . 2 +140168 7605 in a better movie 2 +140169 7605 , you might not have noticed . 2 +140170 7605 you might not have noticed . 2 +140171 7605 might not have noticed . 2 +140172 7605 might not have noticed 1 +140173 7605 have noticed 2 +140174 7605 noticed 2 +140175 7606 Take nothing seriously and enjoy the ride . 3 +140176 7606 Take nothing seriously and enjoy the ride 3 +140177 7606 Take nothing seriously and 3 +140178 7606 Take nothing seriously 2 +140179 7606 Take nothing 2 +140180 7606 enjoy the ride 3 +140181 7607 -LRB- Seems -RRB- even more uselessly redundant and shamelessly money-grubbing than most third-rate horror sequels . 1 +140182 7607 -LRB- Seems -RRB- even more 2 +140183 7607 -LRB- Seems -RRB- 2 +140184 7607 Seems -RRB- 2 +140185 7607 uselessly redundant and shamelessly money-grubbing than most third-rate horror sequels . 0 +140186 7607 uselessly redundant and shamelessly money-grubbing than most third-rate horror sequels 0 +140187 7607 uselessly redundant and 1 +140188 7607 uselessly redundant 2 +140189 7607 uselessly 1 +140190 7607 shamelessly money-grubbing than most third-rate horror sequels 1 +140191 7607 shamelessly money-grubbing 1 +140192 7607 money-grubbing 1 +140193 7607 than most third-rate horror sequels 1 +140194 7607 most third-rate horror sequels 1 +140195 7607 third-rate horror sequels 0 +140196 7607 third-rate 1 +140197 7607 horror sequels 2 +140198 7608 Reign of Fire just might go down as one of the all-time great apocalypse movies . 3 +140199 7608 just might go down as one of the all-time great apocalypse movies . 4 +140200 7608 might go down as one of the all-time great apocalypse movies . 4 +140201 7608 might go down as one of the all-time great apocalypse movies 4 +140202 7608 go down as one of the all-time great apocalypse movies 4 +140203 7608 as one of the all-time great apocalypse movies 4 +140204 7608 one of the all-time great apocalypse movies 4 +140205 7608 of the all-time great apocalypse movies 3 +140206 7608 the all-time great apocalypse movies 4 +140207 7608 all-time great apocalypse movies 4 +140208 7608 great apocalypse movies 2 +140209 7608 apocalypse movies 2 +140210 7608 apocalypse 2 +140211 7609 O Fantasma is boldly , confidently orchestrated , aesthetically and sexually , and its impact is deeply and rightly disturbing . 3 +140212 7609 O Fantasma is boldly , confidently orchestrated , aesthetically and sexually , and its impact is deeply and rightly disturbing 3 +140213 7609 O Fantasma is boldly , confidently orchestrated , aesthetically and sexually , and 4 +140214 7609 O Fantasma is boldly , confidently orchestrated , aesthetically and sexually , 3 +140215 7609 O Fantasma is boldly , confidently orchestrated , aesthetically and sexually 3 +140216 7609 is boldly , confidently orchestrated , aesthetically and sexually 3 +140217 7609 boldly , confidently orchestrated , aesthetically and sexually 4 +140218 7609 , confidently orchestrated , aesthetically and sexually 3 +140219 7609 confidently orchestrated , aesthetically and sexually 3 +140220 7609 confidently orchestrated 4 +140221 7609 confidently 3 +140222 7609 orchestrated 2 +140223 7609 , aesthetically and sexually 2 +140224 7609 aesthetically and sexually 3 +140225 7609 aesthetically and 2 +140226 7609 aesthetically 2 +140227 7609 its impact is deeply and rightly disturbing 3 +140228 7609 is deeply and rightly disturbing 2 +140229 7609 is deeply and rightly 2 +140230 7609 deeply and rightly 4 +140231 7609 deeply and 2 +140232 7609 rightly 3 +140233 7610 It 's soulful and unslick , and that 's apparently just what -LRB- Aniston -RRB- has always needed to grow into a movie career . 4 +140234 7610 It 's soulful and unslick , and that 's apparently just what -LRB- Aniston -RRB- has always needed to grow into a movie career 3 +140235 7610 It 's soulful and unslick , and 2 +140236 7610 It 's soulful and unslick , 2 +140237 7610 It 's soulful and unslick 3 +140238 7610 's soulful and unslick 1 +140239 7610 soulful and unslick 2 +140240 7610 soulful and 3 +140241 7610 unslick 2 +140242 7610 that 's apparently just what -LRB- Aniston -RRB- has always needed to grow into a movie career 3 +140243 7610 's apparently just what -LRB- Aniston -RRB- has always needed to grow into a movie career 3 +140244 7610 just what -LRB- Aniston -RRB- has always needed to grow into a movie career 3 +140245 7610 -LRB- Aniston -RRB- has always needed to grow into a movie career 2 +140246 7610 Aniston -RRB- has always needed to grow into a movie career 2 +140247 7610 -RRB- has always needed to grow into a movie career 2 +140248 7610 has always needed to grow into a movie career 2 +140249 7610 needed to grow into a movie career 2 +140250 7610 to grow into a movie career 2 +140251 7610 grow into a movie career 3 +140252 7610 into a movie career 2 +140253 7610 a movie career 2 +140254 7610 movie career 2 +140255 7611 Entertaining but like shooting fish in a barrel . 2 +140256 7611 Entertaining but like shooting fish in a barrel 2 +140257 7611 but like shooting fish in a barrel 1 +140258 7611 like shooting fish in a barrel 1 +140259 7611 shooting fish in a barrel 1 +140260 7611 shooting fish 2 +140261 7611 in a barrel 2 +140262 7611 a barrel 2 +140263 7612 The original was n't a good movie but this remake makes it look like a masterpiece ! 0 +140264 7612 The original was n't a good movie but this remake makes it look like a masterpiece 2 +140265 7612 The original was n't a good movie but 1 +140266 7612 The original was n't a good movie 1 +140267 7612 was n't a good movie 1 +140268 7612 this remake makes it look like a masterpiece 2 +140269 7612 makes it look like a masterpiece 4 +140270 7612 it look like a masterpiece 4 +140271 7612 look like a masterpiece 3 +140272 7612 like a masterpiece 4 +140273 7613 One of those based-on-truth stories that persuades you , with every scene , that it could never really have happened this way . 2 +140274 7613 One of those based-on-truth stories that persuades you , with every scene , that it could never really have happened this way 3 +140275 7613 of those based-on-truth stories that persuades you , with every scene , that it could never really have happened this way 1 +140276 7613 those based-on-truth stories that persuades you , with every scene , that it could never really have happened this way 1 +140277 7613 those based-on-truth stories 2 +140278 7613 based-on-truth stories 2 +140279 7613 based-on-truth 2 +140280 7613 that persuades you , with every scene , that it could never really have happened this way 2 +140281 7613 persuades you , with every scene , that it could never really have happened this way 2 +140282 7613 persuades you , with every scene , 3 +140283 7613 persuades you , with every scene 3 +140284 7613 persuades you , 2 +140285 7613 persuades you 4 +140286 7613 persuades 2 +140287 7613 with every scene 2 +140288 7613 that it could never really have happened this way 2 +140289 7613 it could never really have happened this way 1 +140290 7613 could never really have happened this way 2 +140291 7613 could never really 2 +140292 7613 have happened this way 2 +140293 7613 happened this way 2 +140294 7614 Not too fancy , not too filling , not too fluffy , but definitely tasty and sweet . 3 +140295 7614 Not too fancy , not too filling , not too fluffy , but definitely tasty and sweet 4 +140296 7614 too fancy , not too filling , not too fluffy , but definitely tasty and sweet 4 +140297 7614 too fancy , not too filling , not too fluffy , but 2 +140298 7614 too fancy , not too filling , not too fluffy , 2 +140299 7614 too fancy , not too filling , not too fluffy 2 +140300 7614 too fancy , not too filling , 2 +140301 7614 too fancy , not too filling 1 +140302 7614 too fancy , 2 +140303 7614 too fancy 1 +140304 7614 not too filling 1 +140305 7614 too filling 2 +140306 7614 not too fluffy 2 +140307 7614 too fluffy 1 +140308 7614 definitely tasty and sweet 4 +140309 7614 tasty and sweet 4 +140310 7614 tasty and 3 +140311 7615 For all the wit and hoopla , Festival In Cannes offers rare insight into the structure of relationships . 3 +140312 7615 For all the wit and hoopla 3 +140313 7615 all the wit and hoopla 2 +140314 7615 the wit and hoopla 3 +140315 7615 wit and hoopla 3 +140316 7615 hoopla 2 +140317 7615 , Festival In Cannes offers rare insight into the structure of relationships . 3 +140318 7615 Festival In Cannes offers rare insight into the structure of relationships . 3 +140319 7615 In Cannes offers rare insight into the structure of relationships . 3 +140320 7615 offers rare insight into the structure of relationships . 3 +140321 7615 offers rare insight into the structure of relationships 3 +140322 7615 offers rare insight 3 +140323 7615 rare insight 3 +140324 7615 into the structure of relationships 3 +140325 7615 the structure of relationships 2 +140326 7615 of relationships 2 +140327 7616 The tonal shifts are jolting , and though Wen 's messages are profound and thoughtfully delivered , more thorough transitions would have made the film more cohesive . 2 +140328 7616 The tonal shifts are jolting , and though Wen 's messages are profound and thoughtfully delivered , more thorough transitions would have made the film more cohesive 2 +140329 7616 The tonal shifts are jolting , and 0 +140330 7616 The tonal shifts are jolting , 2 +140331 7616 The tonal shifts are jolting 2 +140332 7616 The tonal shifts 2 +140333 7616 tonal shifts 2 +140334 7616 shifts 2 +140335 7616 are jolting 2 +140336 7616 though Wen 's messages are profound and thoughtfully delivered , more thorough transitions would have made the film more cohesive 2 +140337 7616 though Wen 's messages are profound and thoughtfully delivered 3 +140338 7616 Wen 's messages are profound and thoughtfully delivered 4 +140339 7616 Wen 's messages 2 +140340 7616 are profound and thoughtfully delivered 4 +140341 7616 profound and thoughtfully delivered 4 +140342 7616 profound and 3 +140343 7616 thoughtfully delivered 3 +140344 7616 , more thorough transitions would have made the film more cohesive 2 +140345 7616 more thorough transitions would have made the film more cohesive 2 +140346 7616 more thorough transitions 3 +140347 7616 thorough transitions 3 +140348 7616 transitions 2 +140349 7616 would have made the film more cohesive 1 +140350 7616 have made the film more cohesive 2 +140351 7616 made the film more cohesive 3 +140352 7616 the film more cohesive 3 +140353 7616 more cohesive 3 +140354 7617 It 's all stitched together with energy , intelligence and verve , enhanced by a surplus of vintage archive footage . 4 +140355 7617 's all stitched together with energy , intelligence and verve , enhanced by a surplus of vintage archive footage . 4 +140356 7617 's all stitched together with energy , intelligence and verve , enhanced by a surplus of vintage archive footage 4 +140357 7617 stitched together with energy , intelligence and verve , enhanced by a surplus of vintage archive footage 2 +140358 7617 with energy , intelligence and verve , enhanced by a surplus of vintage archive footage 4 +140359 7617 energy , intelligence and verve , enhanced by a surplus of vintage archive footage 3 +140360 7617 energy , intelligence and verve , 4 +140361 7617 energy , intelligence and verve 4 +140362 7617 , intelligence and verve 3 +140363 7617 intelligence and verve 3 +140364 7617 enhanced by a surplus of vintage archive footage 3 +140365 7617 enhanced 3 +140366 7617 by a surplus of vintage archive footage 2 +140367 7617 a surplus of vintage archive footage 2 +140368 7617 a surplus 2 +140369 7617 surplus 2 +140370 7617 of vintage archive footage 2 +140371 7617 vintage archive footage 2 +140372 7617 archive footage 2 +140373 7617 archive 2 +140374 7618 The soupy end result has the odd distinction of being playful without being fun , too . 2 +140375 7618 The soupy end result 1 +140376 7618 soupy end result 1 +140377 7618 soupy 2 +140378 7618 has the odd distinction of being playful without being fun , too . 1 +140379 7618 has the odd distinction of being playful without being fun , too 1 +140380 7618 has the odd distinction of being playful without being fun , 2 +140381 7618 has the odd distinction of being playful without being fun 1 +140382 7618 the odd distinction of being playful without being fun 1 +140383 7618 the odd distinction 2 +140384 7618 odd distinction 2 +140385 7618 of being playful without being fun 2 +140386 7618 being playful without being fun 2 +140387 7618 playful without being fun 1 +140388 7618 without being fun 2 +140389 7618 being fun 3 +140390 7619 Seagal , who looks more like Danny Aiello these days , mumbles his way through the movie . 0 +140391 7619 Seagal , who looks more like Danny Aiello these days , 2 +140392 7619 Seagal , who looks more like Danny Aiello these days 3 +140393 7619 Seagal , 2 +140394 7619 who looks more like Danny Aiello these days 2 +140395 7619 looks more like Danny Aiello these days 2 +140396 7619 looks more like Danny Aiello 2 +140397 7619 more like Danny Aiello 2 +140398 7619 like Danny Aiello 2 +140399 7619 Danny Aiello 2 +140400 7619 Aiello 2 +140401 7619 mumbles his way through the movie . 1 +140402 7619 mumbles his way through the movie 1 +140403 7619 mumbles his way 2 +140404 7619 mumbles 2 +140405 7620 The acting , for the most part , is terrific , although the actors must struggle with the fact that they 're playing characters who sometimes feel more like literary conceits than flesh-and-blood humans . 3 +140406 7620 The acting , for the most part , 2 +140407 7620 The acting , for the most part 3 +140408 7620 The acting , 2 +140409 7620 is terrific , although the actors must struggle with the fact that they 're playing characters who sometimes feel more like literary conceits than flesh-and-blood humans . 4 +140410 7620 is terrific , although the actors must struggle with the fact that they 're playing characters who sometimes feel more like literary conceits than flesh-and-blood humans 3 +140411 7620 although the actors must struggle with the fact that they 're playing characters who sometimes feel more like literary conceits than flesh-and-blood humans 2 +140412 7620 the actors must struggle with the fact that they 're playing characters who sometimes feel more like literary conceits than flesh-and-blood humans 1 +140413 7620 must struggle with the fact that they 're playing characters who sometimes feel more like literary conceits than flesh-and-blood humans 1 +140414 7620 struggle with the fact that they 're playing characters who sometimes feel more like literary conceits than flesh-and-blood humans 2 +140415 7620 struggle with the fact 2 +140416 7620 with the fact 2 +140417 7620 that they 're playing characters who sometimes feel more like literary conceits than flesh-and-blood humans 1 +140418 7620 they 're playing characters who sometimes feel more like literary conceits than flesh-and-blood humans 2 +140419 7620 're playing characters who sometimes feel more like literary conceits than flesh-and-blood humans 1 +140420 7620 playing characters who sometimes feel more like literary conceits than flesh-and-blood humans 1 +140421 7620 characters who sometimes feel more like literary conceits than flesh-and-blood humans 2 +140422 7620 who sometimes feel more like literary conceits than flesh-and-blood humans 1 +140423 7620 sometimes feel more like literary conceits than flesh-and-blood humans 2 +140424 7620 feel more like literary conceits than flesh-and-blood humans 1 +140425 7620 feel more like literary conceits 2 +140426 7620 more like literary conceits 2 +140427 7620 like literary conceits 2 +140428 7620 literary conceits 2 +140429 7620 than flesh-and-blood humans 2 +140430 7620 flesh-and-blood humans 2 +140431 7620 flesh-and-blood 2 +140432 7621 A winning piece of work filled with love for the movies of the 1960s . 3 +140433 7621 A winning piece of work 4 +140434 7621 A winning piece 3 +140435 7621 winning piece 3 +140436 7621 filled with love for the movies of the 1960s . 3 +140437 7621 filled with love for the movies of the 1960s 3 +140438 7621 with love for the movies of the 1960s 3 +140439 7621 love for the movies of the 1960s 3 +140440 7621 for the movies of the 1960s 2 +140441 7621 the movies of the 1960s 2 +140442 7622 Though the film is static , its writer-director 's heart is in the right place , his plea for democracy and civic action laudable . 3 +140443 7622 Though the film is static 1 +140444 7622 the film is static 1 +140445 7622 is static 2 +140446 7622 , its writer-director 's heart is in the right place , his plea for democracy and civic action laudable . 2 +140447 7622 its writer-director 's heart is in the right place , his plea for democracy and civic action laudable . 3 +140448 7622 its writer-director 's heart 2 +140449 7622 its writer-director 's 3 +140450 7622 writer-director 's 2 +140451 7622 is in the right place , his plea for democracy and civic action laudable . 3 +140452 7622 is in the right place , his plea for democracy and civic action laudable 4 +140453 7622 in the right place , his plea for democracy and civic action laudable 2 +140454 7622 the right place , his plea for democracy and civic action laudable 2 +140455 7622 the right place , 2 +140456 7622 his plea for democracy and civic action laudable 2 +140457 7622 his plea 2 +140458 7622 plea 2 +140459 7622 for democracy and civic action laudable 2 +140460 7622 democracy and civic action laudable 2 +140461 7622 democracy 2 +140462 7622 and civic action laudable 3 +140463 7622 civic action laudable 2 +140464 7622 action laudable 3 +140465 7623 Griffin & Co. manage to be spectacularly outrageous . 4 +140466 7623 Griffin & Co. 2 +140467 7623 Griffin & 2 +140468 7623 Griffin 2 +140469 7623 Co. 2 +140470 7623 manage to be spectacularly outrageous . 3 +140471 7623 manage to be spectacularly outrageous 3 +140472 7623 to be spectacularly outrageous 3 +140473 7623 be spectacularly outrageous 4 +140474 7623 spectacularly outrageous 3 +140475 7624 Like The English Patient and The Unbearable Lightness of Being , The Hours is one of those reputedly `` unfilmable '' novels that has bucked the odds to emerge as an exquisite motion picture in its own right . 3 +140476 7624 Like The English Patient and The Unbearable Lightness of Being 3 +140477 7624 The English Patient and The Unbearable Lightness of Being 2 +140478 7624 The English Patient and 2 +140479 7624 The English Patient 2 +140480 7624 English Patient 2 +140481 7624 The Unbearable Lightness of Being 3 +140482 7624 The Unbearable Lightness 2 +140483 7624 Unbearable Lightness 2 +140484 7624 of Being 2 +140485 7624 , The Hours is one of those reputedly `` unfilmable '' novels that has bucked the odds to emerge as an exquisite motion picture in its own right . 4 +140486 7624 The Hours is one of those reputedly `` unfilmable '' novels that has bucked the odds to emerge as an exquisite motion picture in its own right . 3 +140487 7624 is one of those reputedly `` unfilmable '' novels that has bucked the odds to emerge as an exquisite motion picture in its own right . 4 +140488 7624 is one of those reputedly `` unfilmable '' novels that has bucked the odds to emerge as an exquisite motion picture in its own right 2 +140489 7624 one of those reputedly `` unfilmable '' novels that has bucked the odds to emerge as an exquisite motion picture in its own right 4 +140490 7624 of those reputedly `` unfilmable '' novels that has bucked the odds to emerge as an exquisite motion picture in its own right 4 +140491 7624 those reputedly `` unfilmable '' novels that has bucked the odds to emerge as an exquisite motion picture in its own right 4 +140492 7624 those reputedly `` unfilmable '' novels 2 +140493 7624 reputedly `` unfilmable '' novels 1 +140494 7624 reputedly 2 +140495 7624 `` unfilmable '' novels 1 +140496 7624 unfilmable '' novels 1 +140497 7624 unfilmable 1 +140498 7624 '' novels 2 +140499 7624 that has bucked the odds to emerge as an exquisite motion picture in its own right 4 +140500 7624 has bucked the odds to emerge as an exquisite motion picture in its own right 4 +140501 7624 bucked the odds to emerge as an exquisite motion picture in its own right 4 +140502 7624 bucked the odds 3 +140503 7624 bucked 2 +140504 7624 to emerge as an exquisite motion picture in its own right 4 +140505 7624 emerge as an exquisite motion picture in its own right 4 +140506 7624 as an exquisite motion picture in its own right 4 +140507 7624 an exquisite motion picture in its own right 4 +140508 7624 an exquisite motion picture 4 +140509 7624 exquisite motion picture 3 +140510 7625 `` Auto Focus '' works as an unusual biopic and document of male swingers in the Playboy era 3 +140511 7625 `` Auto Focus '' 2 +140512 7625 Auto Focus '' 2 +140513 7625 Focus '' 2 +140514 7625 works as an unusual biopic and document of male swingers in the Playboy era 3 +140515 7625 as an unusual biopic and document of male swingers in the Playboy era 2 +140516 7625 an unusual biopic and document of male swingers in the Playboy era 3 +140517 7625 an unusual biopic and document 2 +140518 7625 unusual biopic and document 3 +140519 7625 biopic and document 2 +140520 7625 biopic and 2 +140521 7625 of male swingers in the Playboy era 2 +140522 7625 male swingers in the Playboy era 2 +140523 7625 male swingers 2 +140524 7625 swingers 2 +140525 7625 in the Playboy era 2 +140526 7625 the Playboy era 2 +140527 7625 Playboy era 2 +140528 7625 Playboy 2 +140529 7626 Very amusing , not the usual route in a thriller , and the performances are odd and pixilated and sometimes both . 3 +140530 7626 , not the usual route in a thriller , and the performances are odd and pixilated and sometimes both . 1 +140531 7626 not the usual route in a thriller , and the performances are odd and pixilated and sometimes both . 2 +140532 7626 not the usual route in a thriller , and the performances 2 +140533 7626 not the usual route 2 +140534 7626 the usual route 2 +140535 7626 usual route 2 +140536 7626 in a thriller , and the performances 3 +140537 7626 a thriller , and the performances 3 +140538 7626 a thriller , and 2 +140539 7626 a thriller , 3 +140540 7626 are odd and pixilated and sometimes both . 1 +140541 7626 are odd and pixilated and sometimes both 2 +140542 7626 are odd and pixilated and 1 +140543 7626 are odd and pixilated 1 +140544 7626 odd and pixilated 1 +140545 7626 pixilated 2 +140546 7626 sometimes both 3 +140547 7627 Max pokes , provokes , takes expressionistic license and hits a nerve ... as far as art is concerned , it 's mission accomplished . 3 +140548 7627 Max pokes , provokes , takes expressionistic license and hits a nerve ... as far as art is concerned , it 's mission accomplished 3 +140549 7627 Max pokes , provokes , takes expressionistic license and hits a nerve ... 3 +140550 7627 Max pokes , provokes , takes expressionistic license and hits a nerve 4 +140551 7627 pokes , provokes , takes expressionistic license and hits a nerve 3 +140552 7627 pokes , provokes , takes expressionistic license and 2 +140553 7627 pokes , provokes , takes expressionistic license 3 +140554 7627 pokes , provokes , 3 +140555 7627 pokes , provokes 3 +140556 7627 pokes , 2 +140557 7627 provokes 2 +140558 7627 takes expressionistic license 2 +140559 7627 expressionistic license 3 +140560 7627 expressionistic 2 +140561 7627 hits a nerve 1 +140562 7627 as far as art is concerned , it 's mission accomplished 4 +140563 7627 as far as art is concerned 2 +140564 7627 far as art is concerned 2 +140565 7627 as art is concerned 2 +140566 7627 art is concerned 2 +140567 7627 , it 's mission accomplished 3 +140568 7627 it 's mission accomplished 3 +140569 7627 's mission accomplished 3 +140570 7627 mission accomplished 2 +140571 7628 Authentic , and at times endearing , humorous , spooky , educational , but at other times as bland as a block of snow . 2 +140572 7628 , and at times endearing , humorous , spooky , educational , but at other times as bland as a block of snow . 1 +140573 7628 and at times endearing , humorous , spooky , educational , but at other times as bland as a block of snow . 3 +140574 7628 and at times endearing 3 +140575 7628 and at times 2 +140576 7628 and at 2 +140577 7628 , humorous , spooky , educational , but at other times as bland as a block of snow . 1 +140578 7628 humorous , spooky , educational , but at other times as bland as a block of snow . 3 +140579 7628 , spooky , educational , but at other times as bland as a block of snow . 1 +140580 7628 spooky , educational , but at other times as bland as a block of snow . 2 +140581 7628 , educational , but at other times as bland as a block of snow . 1 +140582 7628 educational , but at other times as bland as a block of snow . 1 +140583 7628 , but at other times as bland as a block of snow . 1 +140584 7628 at other times as bland as a block of snow . 1 +140585 7628 at other times as bland as a block of snow 1 +140586 7628 other times as bland as a block of snow 1 +140587 7628 as bland as a block of snow 2 +140588 7628 bland as a block of snow 1 +140589 7628 as a block of snow 1 +140590 7628 a block of snow 2 +140591 7628 a block 2 +140592 7628 of snow 2 +140593 7629 Yakusho , as always , is wonderful as the long-faced sad sack ... and his chemistry with Shimizu is very believable . 4 +140594 7629 Yakusho , as always , is wonderful as the long-faced sad sack ... and his chemistry with Shimizu is very believable 3 +140595 7629 Yakusho , as always , is wonderful as the long-faced sad sack ... and 3 +140596 7629 Yakusho , as always , is wonderful as the long-faced sad sack ... 3 +140597 7629 Yakusho , as always , is wonderful as the long-faced sad sack 3 +140598 7629 Yakusho 2 +140599 7629 , as always , is wonderful as the long-faced sad sack 2 +140600 7629 , as always , 2 +140601 7629 as always , 2 +140602 7629 is wonderful as the long-faced sad sack 3 +140603 7629 wonderful as the long-faced sad sack 3 +140604 7629 as the long-faced sad sack 1 +140605 7629 the long-faced sad sack 1 +140606 7629 long-faced sad sack 1 +140607 7629 long-faced 2 +140608 7629 sad sack 0 +140609 7629 his chemistry with Shimizu is very believable 3 +140610 7629 his chemistry with Shimizu 2 +140611 7629 his chemistry 2 +140612 7629 with Shimizu 2 +140613 7629 Shimizu 2 +140614 7629 is very believable 3 +140615 7629 very believable 3 +140616 7630 By no means a slam-dunk and sure to ultimately disappoint the action fans who will be moved to the edge of their seats by the dynamic first act , it still comes off as a touching , transcendent love story . 1 +140617 7630 By no means a slam-dunk and sure to ultimately disappoint the action fans who will be moved to the edge of their seats by the dynamic first act 1 +140618 7630 no means a slam-dunk and sure to ultimately disappoint the action fans who will be moved to the edge of their seats by the dynamic first act 1 +140619 7630 no means a slam-dunk and 1 +140620 7630 no means a slam-dunk 1 +140621 7630 no means 2 +140622 7630 a slam-dunk 3 +140623 7630 slam-dunk 4 +140624 7630 sure to ultimately disappoint the action fans who will be moved to the edge of their seats by the dynamic first act 1 +140625 7630 sure to ultimately disappoint the action fans 0 +140626 7630 sure to ultimately disappoint the action 0 +140627 7630 to ultimately disappoint the action 1 +140628 7630 ultimately disappoint the action 0 +140629 7630 disappoint the action 1 +140630 7630 who will be moved to the edge of their seats by the dynamic first act 3 +140631 7630 will be moved to the edge of their seats by the dynamic first act 3 +140632 7630 be moved to the edge of their seats by the dynamic first act 4 +140633 7630 moved to the edge of their seats by the dynamic first act 3 +140634 7630 moved to the edge of their seats 3 +140635 7630 to the edge of their seats 3 +140636 7630 the edge of their seats 4 +140637 7630 of their seats 2 +140638 7630 by the dynamic first act 3 +140639 7630 the dynamic first act 4 +140640 7630 dynamic first act 4 +140641 7630 , it still comes off as a touching , transcendent love story . 4 +140642 7630 it still comes off as a touching , transcendent love story . 4 +140643 7630 still comes off as a touching , transcendent love story . 4 +140644 7630 comes off as a touching , transcendent love story . 3 +140645 7630 comes off as a touching , transcendent love story 3 +140646 7630 as a touching , transcendent love story 3 +140647 7630 a touching , transcendent love story 3 +140648 7630 touching , transcendent love story 4 +140649 7630 , transcendent love story 2 +140650 7630 transcendent love story 3 +140651 7631 All the characters are clinically depressed and have abandoned their slim hopes and dreams . 1 +140652 7631 All the characters 2 +140653 7631 are clinically depressed and have abandoned their slim hopes and dreams . 2 +140654 7631 are clinically depressed and have abandoned their slim hopes and dreams 1 +140655 7631 are clinically depressed and 1 +140656 7631 are clinically depressed 1 +140657 7631 clinically depressed 2 +140658 7631 clinically 2 +140659 7631 have abandoned their slim hopes and dreams 1 +140660 7631 abandoned their slim hopes and dreams 1 +140661 7631 their slim hopes and dreams 2 +140662 7631 slim hopes and dreams 1 +140663 7631 hopes and dreams 3 +140664 7631 hopes and 2 +140665 7632 At its worst , it 's Rambo - meets-John Ford . 2 +140666 7632 , it 's Rambo - meets-John Ford . 2 +140667 7632 it 's Rambo - meets-John Ford . 2 +140668 7632 's Rambo - meets-John Ford . 2 +140669 7632 's Rambo - meets-John Ford 2 +140670 7632 Rambo - meets-John Ford 2 +140671 7632 Rambo - 2 +140672 7632 Rambo 2 +140673 7632 meets-John Ford 2 +140674 7632 meets-John 3 +140675 7633 It 's about issues most adults have to face in marriage and I think that 's what I liked about it -- the real issues tucked between the silly and crude storyline . 3 +140676 7633 It 's about issues most adults have to face in marriage and I think that 's what I liked about it -- the real issues tucked between the silly and crude storyline 3 +140677 7633 It 's about issues most adults have to face in marriage and 3 +140678 7633 It 's about issues most adults have to face in marriage 2 +140679 7633 's about issues most adults have to face in marriage 1 +140680 7633 about issues most adults have to face in marriage 3 +140681 7633 issues most adults have to face in marriage 2 +140682 7633 most adults have to face in marriage 2 +140683 7633 have to face in marriage 2 +140684 7633 to face in marriage 2 +140685 7633 face in marriage 2 +140686 7633 in marriage 3 +140687 7633 I think that 's what I liked about it -- the real issues tucked between the silly and crude storyline 2 +140688 7633 think that 's what I liked about it -- the real issues tucked between the silly and crude storyline 3 +140689 7633 that 's what I liked about it -- the real issues tucked between the silly and crude storyline 3 +140690 7633 that 's what I liked about it 3 +140691 7633 's what I liked about it 2 +140692 7633 what I liked about it 3 +140693 7633 I liked about it 3 +140694 7633 liked about it 2 +140695 7633 -- the real issues tucked between the silly and crude storyline 1 +140696 7633 the real issues tucked between the silly and crude storyline 1 +140697 7633 the real issues 3 +140698 7633 real issues 2 +140699 7633 tucked between the silly and crude storyline 2 +140700 7633 tucked 2 +140701 7633 between the silly and crude storyline 2 +140702 7633 the silly and crude storyline 1 +140703 7633 silly and crude storyline 1 +140704 7633 and crude storyline 0 +140705 7633 crude storyline 1 +140706 7634 It goes on for too long and bogs down in a surfeit of characters and unnecessary subplots . 0 +140707 7634 goes on for too long and bogs down in a surfeit of characters and unnecessary subplots . 1 +140708 7634 goes on for too long and bogs down in a surfeit of characters and unnecessary subplots 0 +140709 7634 for too long and bogs down in a surfeit of characters and unnecessary subplots 1 +140710 7634 too long and bogs down in a surfeit of characters and unnecessary subplots 0 +140711 7634 too long and bogs down in a surfeit of characters and unnecessary 1 +140712 7634 too long and 1 +140713 7634 bogs down in a surfeit of characters and unnecessary 1 +140714 7634 bogs down in a surfeit of characters and 1 +140715 7634 bogs down in a surfeit of characters 1 +140716 7634 in a surfeit of characters 2 +140717 7634 a surfeit of characters 2 +140718 7635 Costner 's warm-milk persona is just as ill-fitting as Shadyac 's perfunctory directing chops , and some of the more overtly silly dialogue would sink Laurence Olivier . 1 +140719 7635 Costner 's warm-milk persona is just as ill-fitting as Shadyac 's perfunctory directing chops , and some of the more overtly silly dialogue would sink Laurence Olivier 1 +140720 7635 Costner 's warm-milk persona is just as ill-fitting as Shadyac 's perfunctory directing chops , and 1 +140721 7635 Costner 's warm-milk persona is just as ill-fitting as Shadyac 's perfunctory directing chops , 1 +140722 7635 Costner 's warm-milk persona is just as ill-fitting as Shadyac 's perfunctory directing chops 1 +140723 7635 Costner 's warm-milk persona 2 +140724 7635 Costner 's 3 +140725 7635 warm-milk persona 2 +140726 7635 warm-milk 2 +140727 7635 is just as ill-fitting as Shadyac 's perfunctory directing chops 0 +140728 7635 as ill-fitting as Shadyac 's perfunctory directing chops 1 +140729 7635 ill-fitting as Shadyac 's perfunctory directing chops 2 +140730 7635 ill-fitting 1 +140731 7635 as Shadyac 's perfunctory directing chops 2 +140732 7635 Shadyac 's perfunctory directing chops 1 +140733 7635 perfunctory directing chops 2 +140734 7635 perfunctory 2 +140735 7635 directing chops 2 +140736 7635 some of the more overtly silly dialogue would sink Laurence Olivier 1 +140737 7635 some of the more overtly silly dialogue 1 +140738 7635 of the more overtly silly dialogue 1 +140739 7635 the more overtly silly dialogue 1 +140740 7635 more overtly silly dialogue 1 +140741 7635 overtly silly dialogue 1 +140742 7635 overtly silly 1 +140743 7635 overtly 2 +140744 7635 would sink Laurence Olivier 1 +140745 7635 sink Laurence Olivier 2 +140746 7635 Laurence Olivier 2 +140747 7636 Although it does n't always hang together -- violence and whimsy do n't combine easily -- `` Cherish '' certainly is n't dull . 2 +140748 7636 Although it does n't always hang together 1 +140749 7636 it does n't always hang together 2 +140750 7636 does n't always hang together 1 +140751 7636 hang together 2 +140752 7636 -- violence and whimsy do n't combine easily -- `` Cherish '' certainly is n't dull . 3 +140753 7636 -- violence and whimsy do n't combine easily -- 1 +140754 7636 violence and whimsy do n't combine easily -- 2 +140755 7636 violence and whimsy do n't combine easily 1 +140756 7636 violence and whimsy 2 +140757 7636 do n't combine easily 1 +140758 7636 combine easily 2 +140759 7636 `` Cherish '' certainly is n't dull . 3 +140760 7636 Cherish '' certainly is n't dull . 3 +140761 7636 '' certainly is n't dull . 3 +140762 7636 certainly is n't dull . 3 +140763 7636 is n't dull . 3 +140764 7636 is n't dull 2 +140765 7637 It 's a perfect show of respect to just one of those underrated professionals who deserve but rarely receive it . 4 +140766 7637 's a perfect show of respect to just one of those underrated professionals who deserve but rarely receive it . 4 +140767 7637 's a perfect show of respect to just one of those underrated professionals who deserve but rarely receive it 3 +140768 7637 a perfect show of respect to just one of those underrated professionals who deserve but rarely receive it 3 +140769 7637 a perfect show 3 +140770 7637 perfect show 4 +140771 7637 of respect to just one of those underrated professionals who deserve but rarely receive it 3 +140772 7637 respect to just one of those underrated professionals who deserve but rarely receive it 3 +140773 7637 to just one of those underrated professionals who deserve but rarely receive it 2 +140774 7637 just one of those underrated professionals who deserve but rarely receive it 3 +140775 7637 of those underrated professionals who deserve but rarely receive it 3 +140776 7637 those underrated professionals who deserve but rarely receive it 3 +140777 7637 those underrated professionals 2 +140778 7637 underrated professionals 3 +140779 7637 underrated 2 +140780 7637 who deserve but rarely receive it 3 +140781 7637 deserve but rarely receive it 1 +140782 7637 deserve but 2 +140783 7637 rarely receive it 2 +140784 7637 receive it 2 +140785 7638 Further sad evidence that Tom Tykwer , director of the resonant and sense-spinning Run Lola Run , has turned out to be a one-trick pony -- a maker of softheaded metaphysical claptrap . 0 +140786 7638 Further sad evidence that Tom Tykwer , director of the resonant and sense-spinning Run Lola Run , has turned out to be a one-trick pony -- a maker of softheaded metaphysical claptrap 0 +140787 7638 Further sad evidence that Tom Tykwer , director of the resonant and sense-spinning Run Lola Run , has turned out to be a one-trick pony -- 2 +140788 7638 Further sad evidence that Tom Tykwer , director of the resonant and sense-spinning Run Lola Run , has turned out to be a one-trick pony 0 +140789 7638 Further sad evidence 1 +140790 7638 sad evidence 2 +140791 7638 that Tom Tykwer , director of the resonant and sense-spinning Run Lola Run , has turned out to be a one-trick pony 1 +140792 7638 Tom Tykwer , director of the resonant and sense-spinning Run Lola Run , has turned out to be a one-trick pony 1 +140793 7638 Tom Tykwer , director of the resonant and sense-spinning Run Lola Run , 2 +140794 7638 Tom Tykwer , director of the resonant and sense-spinning Run Lola Run 3 +140795 7638 Tom Tykwer , 2 +140796 7638 Tom Tykwer 2 +140797 7638 director of the resonant and sense-spinning Run Lola Run 2 +140798 7638 of the resonant and sense-spinning Run Lola Run 2 +140799 7638 the resonant and sense-spinning Run Lola Run 2 +140800 7638 the resonant and 2 +140801 7638 the resonant 2 +140802 7638 sense-spinning Run Lola Run 2 +140803 7638 sense-spinning 3 +140804 7638 Run Lola Run 2 +140805 7638 Lola Run 2 +140806 7638 Lola 2 +140807 7638 has turned out to be a one-trick pony 1 +140808 7638 turned out to be a one-trick pony 1 +140809 7638 turned out 2 +140810 7638 to be a one-trick pony 1 +140811 7638 be a one-trick pony 1 +140812 7638 a one-trick pony 1 +140813 7638 one-trick pony 1 +140814 7638 one-trick 2 +140815 7638 pony 2 +140816 7638 a maker of softheaded metaphysical claptrap 0 +140817 7638 a maker 2 +140818 7638 of softheaded metaphysical claptrap 3 +140819 7638 softheaded metaphysical claptrap 1 +140820 7638 softheaded 2 +140821 7638 metaphysical claptrap 1 +140822 7638 metaphysical 3 +140823 7639 The screenplay does too much meandering , Norton has to recite bland police procedural details , Fiennes wanders around in an attempt to seem weird and distanced , Hopkins looks like a drag queen . 1 +140824 7639 does too much meandering , Norton has to recite bland police procedural details , Fiennes wanders around in an attempt to seem weird and distanced , Hopkins looks like a drag queen . 0 +140825 7639 does too much meandering , Norton has to recite bland police procedural details , Fiennes wanders around in an attempt to seem weird and distanced , Hopkins looks like a drag queen 1 +140826 7639 too much meandering , Norton has to recite bland police procedural details , Fiennes wanders around in an attempt to seem weird and distanced , Hopkins looks like a drag queen 0 +140827 7639 much meandering , Norton has to recite bland police procedural details , Fiennes wanders around in an attempt to seem weird and distanced , Hopkins looks like a drag queen 1 +140828 7639 meandering , Norton has to recite bland police procedural details , Fiennes wanders around in an attempt to seem weird and distanced , Hopkins looks like a drag queen 1 +140829 7639 meandering , Norton has to recite bland police procedural details , Fiennes wanders around in an attempt to seem weird and distanced , 1 +140830 7639 , Norton has to recite bland police procedural details , Fiennes wanders around in an attempt to seem weird and distanced , 1 +140831 7639 Norton has to recite bland police procedural details , Fiennes wanders around in an attempt to seem weird and distanced , 2 +140832 7639 Norton has to recite bland police procedural details , Fiennes wanders around in an attempt to seem weird and distanced 1 +140833 7639 has to recite bland police procedural details , Fiennes wanders around in an attempt to seem weird and distanced 1 +140834 7639 has to recite bland police procedural details , Fiennes wanders around in an attempt 0 +140835 7639 to recite bland police procedural details , Fiennes wanders around in an attempt 1 +140836 7639 recite bland police procedural details , Fiennes wanders around in an attempt 1 +140837 7639 recite bland police procedural details , Fiennes wanders around 1 +140838 7639 recite bland police procedural details , Fiennes wanders 1 +140839 7639 recite 2 +140840 7639 bland police procedural details , Fiennes wanders 2 +140841 7639 bland police procedural details , Fiennes 1 +140842 7639 police procedural details , Fiennes 2 +140843 7639 police procedural details , 2 +140844 7639 police procedural details 2 +140845 7639 procedural details 2 +140846 7639 procedural 2 +140847 7639 in an attempt 1 +140848 7639 to seem weird and distanced 2 +140849 7639 seem weird and distanced 1 +140850 7639 weird and distanced 1 +140851 7639 Hopkins looks like a drag queen 1 +140852 7639 looks like a drag queen 1 +140853 7639 like a drag queen 2 +140854 7639 a drag queen 2 +140855 7640 Plays out with a dogged and eventually winning squareness that would make it the darling of many a kids-and-family-oriented cable channel . 3 +140856 7640 Plays out with a dogged and eventually winning squareness that would make it the darling of many a kids-and-family-oriented cable channel 2 +140857 7640 Plays out with a dogged and 2 +140858 7640 Plays out with a dogged 2 +140859 7640 with a dogged 2 +140860 7640 a dogged 2 +140861 7640 dogged 1 +140862 7640 eventually winning squareness that would make it the darling of many a kids-and-family-oriented cable channel 3 +140863 7640 winning squareness that would make it the darling of many a kids-and-family-oriented cable channel 4 +140864 7640 squareness that would make it the darling of many a kids-and-family-oriented cable channel 3 +140865 7640 that would make it the darling of many a kids-and-family-oriented cable channel 3 +140866 7640 would make it the darling of many a kids-and-family-oriented cable channel 3 +140867 7640 make it the darling of many a kids-and-family-oriented cable channel 3 +140868 7640 it the darling of many a kids-and-family-oriented cable channel 4 +140869 7640 the darling of many a kids-and-family-oriented cable channel 3 +140870 7640 the darling 2 +140871 7640 of many a kids-and-family-oriented cable channel 2 +140872 7640 many a kids-and-family-oriented cable channel 3 +140873 7640 a kids-and-family-oriented cable channel 3 +140874 7640 kids-and-family-oriented cable channel 3 +140875 7640 kids-and-family-oriented 4 +140876 7640 cable channel 1 +140877 7641 A vivid , sometimes surreal , glimpse into the mysteries of human behavior . 3 +140878 7641 A vivid , sometimes surreal , 3 +140879 7641 A vivid , sometimes surreal 4 +140880 7641 A vivid , 2 +140881 7641 A vivid 3 +140882 7641 sometimes surreal 2 +140883 7641 glimpse into the mysteries of human behavior . 2 +140884 7641 glimpse into the mysteries of human behavior 3 +140885 7641 into the mysteries of human behavior 2 +140886 7641 the mysteries of human behavior 3 +140887 7641 of human behavior 2 +140888 7642 A 94-minute travesty of unparalleled proportions , writer-director Parker seems to go out of his way to turn the legendary wit 's classic mistaken identity farce into brutally labored and unfunny hokum . 0 +140889 7642 A 94-minute travesty of unparalleled proportions , writer-director Parker 1 +140890 7642 A 94-minute travesty 1 +140891 7642 94-minute travesty 0 +140892 7642 94-minute 2 +140893 7642 travesty 1 +140894 7642 of unparalleled proportions , writer-director Parker 3 +140895 7642 unparalleled proportions , writer-director Parker 3 +140896 7642 unparalleled proportions , 2 +140897 7642 unparalleled proportions 3 +140898 7642 unparalleled 3 +140899 7642 writer-director Parker 2 +140900 7642 seems to go out of his way to turn the legendary wit 's classic mistaken identity farce into brutally labored and unfunny hokum . 0 +140901 7642 seems to go out of his way to turn the legendary wit 's classic mistaken identity farce into brutally labored and unfunny hokum 1 +140902 7642 to go out of his way to turn the legendary wit 's classic mistaken identity farce into brutally labored and unfunny hokum 0 +140903 7642 go out of his way to turn the legendary wit 's classic mistaken identity farce into brutally labored and unfunny hokum 2 +140904 7642 of his way to turn the legendary wit 's classic mistaken identity farce into brutally labored and unfunny hokum 1 +140905 7642 his way to turn the legendary wit 's classic mistaken identity farce into brutally labored and unfunny hokum 1 +140906 7642 way to turn the legendary wit 's classic mistaken identity farce into brutally labored and unfunny hokum 2 +140907 7642 to turn the legendary wit 's classic mistaken identity farce into brutally labored and unfunny hokum 2 +140908 7642 turn the legendary wit 's classic mistaken identity farce into brutally labored and unfunny hokum 0 +140909 7642 the legendary wit 's classic mistaken identity farce into brutally labored and unfunny hokum 1 +140910 7642 the legendary wit 's classic mistaken identity farce 1 +140911 7642 the legendary wit 's 3 +140912 7642 legendary wit 's 2 +140913 7642 wit 's 2 +140914 7642 classic mistaken identity farce 2 +140915 7642 mistaken identity farce 2 +140916 7642 mistaken 2 +140917 7642 identity farce 2 +140918 7642 into brutally labored and unfunny hokum 1 +140919 7642 brutally labored and unfunny hokum 0 +140920 7642 brutally labored and unfunny 1 +140921 7642 labored and unfunny 1 +140922 7642 labored and 2 +140923 7643 Pan Nalin 's exposition is beautiful and mysterious , and the interviews that follow , with the practitioners of this ancient Indian practice , are as subtle and as enigmatic . 3 +140924 7643 Pan Nalin 's exposition is beautiful and mysterious , and the interviews that follow , with the practitioners of this ancient Indian practice , are as subtle and as enigmatic 3 +140925 7643 Pan Nalin 's exposition is beautiful and mysterious , and 3 +140926 7643 Pan Nalin 's exposition is beautiful and mysterious , 4 +140927 7643 Pan Nalin 's exposition is beautiful and mysterious 4 +140928 7643 Pan Nalin 's exposition 2 +140929 7643 Pan Nalin 's 2 +140930 7643 Pan 2 +140931 7643 Nalin 's 2 +140932 7643 Nalin 3 +140933 7643 is beautiful and mysterious 4 +140934 7643 beautiful and mysterious 4 +140935 7643 beautiful and 3 +140936 7643 the interviews that follow , with the practitioners of this ancient Indian practice , are as subtle and as enigmatic 3 +140937 7643 the interviews that follow , with the practitioners of this ancient Indian practice , 2 +140938 7643 the interviews that follow , with the practitioners of this ancient Indian practice 2 +140939 7643 the interviews that follow , 2 +140940 7643 the interviews that follow 2 +140941 7643 the interviews 2 +140942 7643 that follow 2 +140943 7643 with the practitioners of this ancient Indian practice 2 +140944 7643 the practitioners of this ancient Indian practice 2 +140945 7643 the practitioners 2 +140946 7643 practitioners 2 +140947 7643 of this ancient Indian practice 2 +140948 7643 this ancient Indian practice 2 +140949 7643 ancient Indian practice 2 +140950 7643 Indian practice 2 +140951 7643 are as subtle and as enigmatic 3 +140952 7643 as subtle and as enigmatic 3 +140953 7643 as enigmatic 2 +140954 7644 The innocence of holiday cheer ai n't what it used to be . 2 +140955 7644 The innocence of holiday cheer 4 +140956 7644 of holiday cheer 3 +140957 7644 holiday cheer 2 +140958 7644 ai n't what it used to be . 1 +140959 7644 ai n't what it used to be 1 +140960 7644 what it used to be 2 +140961 7645 Do n't let the subtitles fool you ; the movie only proves that Hollywood no longer has a monopoly on mindless action . 1 +140962 7645 Do n't let the subtitles fool you ; the movie only proves that Hollywood no longer has a monopoly on mindless action 2 +140963 7645 Do n't let the subtitles fool you ; 2 +140964 7645 Do n't let the subtitles fool you 2 +140965 7645 let the subtitles fool you 1 +140966 7645 the subtitles fool you 1 +140967 7645 fool you 2 +140968 7645 the movie only proves that Hollywood no longer has a monopoly on mindless action 1 +140969 7645 only proves that Hollywood no longer has a monopoly on mindless action 2 +140970 7645 proves that Hollywood no longer has a monopoly on mindless action 2 +140971 7645 that Hollywood no longer has a monopoly on mindless action 0 +140972 7645 Hollywood no longer has a monopoly on mindless action 2 +140973 7645 no longer has a monopoly on mindless action 2 +140974 7645 has a monopoly on mindless action 1 +140975 7645 a monopoly on mindless action 1 +140976 7645 a monopoly 2 +140977 7645 monopoly 2 +140978 7645 on mindless action 1 +140979 7645 mindless action 1 +140980 7646 Acting can not be acted . 2 +140981 7646 can not be acted . 1 +140982 7646 can not be acted 2 +140983 7646 be acted 2 +140984 7647 What does n't this film have that an impressionable kid could n't stand to hear ? 3 +140985 7647 does n't this film have that an impressionable kid could n't stand to hear ? 2 +140986 7647 does n't this film have that an impressionable kid could n't stand to hear 2 +140987 7647 does n't this film 2 +140988 7647 have that an impressionable kid could n't stand to hear 2 +140989 7647 that an impressionable kid could n't stand to hear 2 +140990 7647 an impressionable kid could n't stand to hear 2 +140991 7647 an impressionable kid 2 +140992 7647 impressionable kid 2 +140993 7647 impressionable 2 +140994 7647 could n't stand to hear 1 +140995 7647 stand to hear 2 +140996 7647 to hear 2 +140997 7648 A pleasant and engaging enough sit , but in trying to have the best of both worlds it ends up falling short as a whole . 1 +140998 7648 A pleasant and engaging enough sit , but in trying to have the best of both worlds it ends up falling short as a whole 2 +140999 7648 A pleasant and engaging enough sit , but 3 +141000 7648 A pleasant and engaging enough sit , 3 +141001 7648 A pleasant and engaging enough sit 3 +141002 7648 A pleasant and engaging enough 3 +141003 7648 pleasant and engaging enough 3 +141004 7648 and engaging enough 2 +141005 7648 in trying to have the best of both worlds it ends up falling short as a whole 1 +141006 7648 in trying to have the best of both worlds 2 +141007 7648 trying to have the best of both worlds 1 +141008 7648 to have the best of both worlds 3 +141009 7648 have the best of both worlds 3 +141010 7648 the best of both worlds 4 +141011 7648 of both worlds 2 +141012 7648 both worlds 2 +141013 7648 worlds 2 +141014 7648 it ends up falling short as a whole 1 +141015 7648 ends up falling short as a whole 1 +141016 7648 falling short as a whole 0 +141017 7648 falling short 1 +141018 7649 What saves it ... and makes it one of the better video-game-based flicks , is that the film acknowledges upfront that the plot makes no sense , such that the lack of linearity is the point of emotional and moral departure for protagonist Alice . 3 +141019 7649 What saves it ... and makes it 3 +141020 7649 saves it ... and makes it 3 +141021 7649 saves it ... and 2 +141022 7649 saves it ... 2 +141023 7649 saves it 2 +141024 7649 one of the better video-game-based flicks , is that the film acknowledges upfront that the plot makes no sense , such that the lack of linearity is the point of emotional and moral departure for protagonist Alice . 3 +141025 7649 one of the better video-game-based flicks , 3 +141026 7649 of the better video-game-based flicks , 3 +141027 7649 the better video-game-based flicks , 3 +141028 7649 better video-game-based flicks , 1 +141029 7649 better video-game-based 3 +141030 7649 video-game-based 2 +141031 7649 flicks , 2 +141032 7649 is that the film acknowledges upfront that the plot makes no sense , such that the lack of linearity is the point of emotional and moral departure for protagonist Alice . 2 +141033 7649 is that the film acknowledges upfront that the plot makes no sense , such that the lack of linearity is the point of emotional and moral departure for protagonist Alice 2 +141034 7649 that the film acknowledges upfront that the plot makes no sense , such that the lack of linearity is the point of emotional and moral departure for protagonist Alice 2 +141035 7649 the film acknowledges upfront that the plot makes no sense , such that the lack of linearity is the point of emotional and moral departure for protagonist Alice 1 +141036 7649 acknowledges upfront that the plot makes no sense , such that the lack of linearity is the point of emotional and moral departure for protagonist Alice 1 +141037 7649 acknowledges upfront that the plot makes no sense , 1 +141038 7649 acknowledges upfront that the plot makes no sense 1 +141039 7649 upfront that the plot makes no sense 1 +141040 7649 upfront 2 +141041 7649 that the plot makes no sense 1 +141042 7649 the plot makes no sense 0 +141043 7649 makes no sense 0 +141044 7649 such that the lack of linearity is the point of emotional and moral departure for protagonist Alice 2 +141045 7649 that the lack of linearity is the point of emotional and moral departure for protagonist Alice 1 +141046 7649 the lack of linearity is the point of emotional and moral departure for protagonist Alice 1 +141047 7649 the lack of linearity 1 +141048 7649 of linearity 2 +141049 7649 linearity 2 +141050 7649 is the point of emotional and moral departure for protagonist Alice 1 +141051 7649 the point of emotional and moral departure for protagonist Alice 2 +141052 7649 of emotional and moral departure for protagonist Alice 2 +141053 7649 emotional and moral departure for protagonist Alice 2 +141054 7649 emotional and moral departure 2 +141055 7649 emotional and moral 3 +141056 7649 emotional and 3 +141057 7649 for protagonist Alice 2 +141058 7649 protagonist Alice 2 +141059 7650 But it 's hardly a necessary enterprise . 1 +141060 7650 it 's hardly a necessary enterprise . 1 +141061 7650 's hardly a necessary enterprise . 1 +141062 7650 's hardly a necessary enterprise 2 +141063 7650 a necessary enterprise 2 +141064 7650 necessary enterprise 2 +141065 7651 The trailer is a riot . 4 +141066 7651 The trailer 2 +141067 7651 is a riot . 3 +141068 7651 is a riot 4 +141069 7651 a riot 3 +141070 7652 Disappointing in comparison to other recent war movies ... or any other John Woo flick for that matter . 1 +141071 7652 Disappointing in comparison to other recent war movies ... or any other John Woo flick for that matter 1 +141072 7652 Disappointing in comparison to other recent war movies ... or 1 +141073 7652 Disappointing in comparison to other recent war movies ... 1 +141074 7652 Disappointing in comparison to other recent war movies 1 +141075 7652 Disappointing in comparison 1 +141076 7652 to other recent war movies 2 +141077 7652 other recent war movies 2 +141078 7652 recent war movies 2 +141079 7652 any other John Woo flick for that matter 2 +141080 7652 any other John Woo 2 +141081 7652 other John Woo 2 +141082 7652 flick for that matter 2 +141083 7653 This enthralling documentary ... is at once playful and haunting , an in-depth portrait of an iconoclastic artist who was fundamentally unknowable even to his closest friends . 4 +141084 7653 This enthralling documentary 4 +141085 7653 enthralling documentary 3 +141086 7653 ... is at once playful and haunting , an in-depth portrait of an iconoclastic artist who was fundamentally unknowable even to his closest friends . 3 +141087 7653 is at once playful and haunting , an in-depth portrait of an iconoclastic artist who was fundamentally unknowable even to his closest friends . 4 +141088 7653 is at once playful and haunting , an in-depth portrait of an iconoclastic artist who was fundamentally unknowable even to his closest friends 3 +141089 7653 at once playful and haunting , an in-depth portrait of an iconoclastic artist who was fundamentally unknowable even to his closest friends 2 +141090 7653 once playful and haunting , an in-depth portrait of an iconoclastic artist who was fundamentally unknowable even to his closest friends 3 +141091 7653 once playful and haunting , 3 +141092 7653 once playful and haunting 3 +141093 7653 playful and haunting 4 +141094 7653 playful and 3 +141095 7653 an in-depth portrait of an iconoclastic artist who was fundamentally unknowable even to his closest friends 3 +141096 7653 an in-depth portrait of an iconoclastic artist 3 +141097 7653 an in-depth portrait 3 +141098 7653 in-depth portrait 3 +141099 7653 of an iconoclastic artist 2 +141100 7653 an iconoclastic artist 3 +141101 7653 iconoclastic artist 2 +141102 7653 who was fundamentally unknowable even to his closest friends 2 +141103 7653 was fundamentally unknowable even to his closest friends 3 +141104 7653 was fundamentally unknowable 2 +141105 7653 fundamentally unknowable 2 +141106 7653 even to his closest friends 2 +141107 7653 to his closest friends 2 +141108 7653 his closest friends 2 +141109 7653 closest friends 2 +141110 7653 closest 2 +141111 7654 Very well made , but does n't generate a lot of tension . 2 +141112 7654 well made , but does n't generate a lot of tension . 3 +141113 7654 made , but does n't generate a lot of tension . 2 +141114 7654 made , but does n't generate a lot of tension 1 +141115 7654 made , but 2 +141116 7654 does n't generate a lot of tension 2 +141117 7654 generate a lot of tension 2 +141118 7654 a lot of tension 3 +141119 7655 An engaging criminal romp that will have viewers guessing just who 's being conned right up to the finale . 3 +141120 7655 An engaging criminal 2 +141121 7655 engaging criminal 3 +141122 7655 romp that will have viewers guessing just who 's being conned right up to the finale . 2 +141123 7655 romp that will have viewers guessing just who 's being conned right up to the finale 3 +141124 7655 that will have viewers guessing just who 's being conned right up to the finale 3 +141125 7655 will have viewers guessing just who 's being conned right up to the finale 2 +141126 7655 have viewers guessing just who 's being conned right up to the finale 4 +141127 7655 viewers guessing just who 's being conned right up to the finale 2 +141128 7655 viewers guessing just 2 +141129 7655 guessing just 2 +141130 7655 who 's being conned right up to the finale 3 +141131 7655 's being conned right up to the finale 1 +141132 7655 being conned right up to the finale 2 +141133 7655 conned right up to the finale 2 +141134 7655 conned right up 2 +141135 7655 to the finale 2 +141136 7655 the finale 2 +141137 7656 Directing with a sure and measured hand , -LRB- Haneke -RRB- steers clear of the sensational and offers instead an unflinching and objective look at a decidedly perverse pathology . 3 +141138 7656 Directing with a sure and measured hand 3 +141139 7656 with a sure and measured hand 3 +141140 7656 a sure and measured hand 2 +141141 7656 sure and measured hand 2 +141142 7656 sure and measured 2 +141143 7656 sure and 2 +141144 7656 , -LRB- Haneke -RRB- steers clear of the sensational and offers instead an unflinching and objective look at a decidedly perverse pathology . 3 +141145 7656 -LRB- Haneke -RRB- steers clear of the sensational and offers instead an unflinching and objective look at a decidedly perverse pathology . 3 +141146 7656 -LRB- Haneke -RRB- 2 +141147 7656 Haneke -RRB- 2 +141148 7656 steers clear of the sensational and offers instead an unflinching and objective look at a decidedly perverse pathology . 3 +141149 7656 steers clear of the sensational and offers instead an unflinching and objective look at a decidedly perverse pathology 1 +141150 7656 steers clear of the sensational and 3 +141151 7656 steers clear of the sensational 2 +141152 7656 steers clear 2 +141153 7656 of the sensational 2 +141154 7656 the sensational 3 +141155 7656 offers instead an unflinching and objective look at a decidedly perverse pathology 3 +141156 7656 offers instead 2 +141157 7656 an unflinching and objective look at a decidedly perverse pathology 2 +141158 7656 an unflinching and objective look 3 +141159 7656 unflinching and objective look 3 +141160 7656 and objective look 2 +141161 7656 objective look 2 +141162 7656 at a decidedly perverse pathology 2 +141163 7656 a decidedly perverse pathology 2 +141164 7656 decidedly perverse pathology 2 +141165 7656 decidedly perverse 2 +141166 7657 This is a film about the irksome , tiresome nature of complacency that remains utterly satisfied to remain the same throughout . 1 +141167 7657 is a film about the irksome , tiresome nature of complacency that remains utterly satisfied to remain the same throughout . 2 +141168 7657 is a film about the irksome , tiresome nature of complacency that remains utterly satisfied to remain the same throughout 1 +141169 7657 a film about the irksome , tiresome nature of complacency that remains utterly satisfied to remain the same throughout 2 +141170 7657 a film about the irksome , tiresome nature of complacency 1 +141171 7657 about the irksome , tiresome nature of complacency 2 +141172 7657 the irksome , tiresome nature of complacency 1 +141173 7657 the irksome , tiresome nature 2 +141174 7657 irksome , tiresome nature 1 +141175 7657 irksome 2 +141176 7657 , tiresome nature 1 +141177 7657 tiresome nature 1 +141178 7657 of complacency 3 +141179 7657 that remains utterly satisfied to remain the same throughout 2 +141180 7657 remains utterly satisfied to remain the same throughout 1 +141181 7657 utterly satisfied to remain the same throughout 2 +141182 7657 satisfied to remain the same throughout 2 +141183 7657 to remain the same throughout 2 +141184 7657 remain the same throughout 2 +141185 7657 the same throughout 2 +141186 7657 same throughout 2 +141187 7658 For the most part , the film does hold up pretty well . 3 +141188 7658 , the film does hold up pretty well . 3 +141189 7658 the film does hold up pretty well . 2 +141190 7658 does hold up pretty well . 3 +141191 7658 does hold up pretty well 3 +141192 7658 hold up pretty well 3 +141193 7658 pretty well 3 +141194 7659 Stands as one of the year 's most intriguing movie experiences , letting its imagery speak for it while it forces you to ponder anew what a movie can be . 4 +141195 7659 Stands as one of the year 's most intriguing movie experiences 3 +141196 7659 as one of the year 's most intriguing movie experiences 3 +141197 7659 one of the year 's most intriguing movie experiences 4 +141198 7659 of the year 's most intriguing movie experiences 4 +141199 7659 the year 's most intriguing movie experiences 4 +141200 7659 most intriguing movie experiences 4 +141201 7659 intriguing movie experiences 3 +141202 7659 movie experiences 2 +141203 7659 , letting its imagery speak for it while it forces you to ponder anew what a movie can be . 3 +141204 7659 letting its imagery speak for it while it forces you to ponder anew what a movie can be . 3 +141205 7659 letting its imagery 2 +141206 7659 its imagery 2 +141207 7659 speak for it while it forces you to ponder anew what a movie can be . 4 +141208 7659 speak for it while it forces you to ponder anew what a movie can be 3 +141209 7659 speak for it 2 +141210 7659 while it forces you to ponder anew what a movie can be 3 +141211 7659 it forces you to ponder anew what a movie can be 4 +141212 7659 forces you to ponder anew what a movie can be 3 +141213 7659 you to ponder anew what a movie can be 2 +141214 7659 to ponder anew what a movie can be 2 +141215 7659 ponder anew what a movie can be 2 +141216 7659 ponder anew 2 +141217 7659 anew 2 +141218 7659 what a movie can be 2 +141219 7659 a movie can be 2 +141220 7660 Lucy 's a dull girl , that 's all . 1 +141221 7660 's a dull girl , that 's all . 1 +141222 7660 's a dull girl , that 's all 1 +141223 7660 a dull girl , that 's all 1 +141224 7660 a dull girl , 1 +141225 7660 a dull girl 1 +141226 7660 dull girl 0 +141227 7660 that 's all 2 +141228 7661 While we want MacDowell 's character to retrieve her husband , we have to ask whether her personal odyssey trumps the carnage that claims so many lives around her . 2 +141229 7661 While we want MacDowell 's character to retrieve her husband 2 +141230 7661 we want MacDowell 's character to retrieve her husband 2 +141231 7661 want MacDowell 's character to retrieve her husband 2 +141232 7661 MacDowell 's character to retrieve her husband 2 +141233 7661 MacDowell 's 2 +141234 7661 character to retrieve her husband 2 +141235 7661 to retrieve her husband 2 +141236 7661 retrieve her husband 2 +141237 7661 retrieve 2 +141238 7661 , we have to ask whether her personal odyssey trumps the carnage that claims so many lives around her . 2 +141239 7661 we have to ask whether her personal odyssey trumps the carnage that claims so many lives around her . 2 +141240 7661 have to ask whether her personal odyssey trumps the carnage that claims so many lives around her . 1 +141241 7661 have to ask whether her personal odyssey trumps the carnage that claims so many lives around her 2 +141242 7661 to ask whether her personal odyssey trumps the carnage that claims so many lives around her 2 +141243 7661 ask whether her personal odyssey trumps the carnage that claims so many lives around her 2 +141244 7661 whether her personal odyssey trumps the carnage that claims so many lives around her 2 +141245 7661 her personal odyssey trumps the carnage that claims so many lives around her 3 +141246 7661 her personal odyssey 2 +141247 7661 personal odyssey 2 +141248 7661 trumps the carnage that claims so many lives around her 2 +141249 7661 trumps 4 +141250 7661 the carnage that claims so many lives around her 1 +141251 7661 the carnage 2 +141252 7661 that claims so many lives around her 2 +141253 7661 claims so many lives around her 2 +141254 7661 so many lives around her 2 +141255 7661 so many lives 2 +141256 7661 around her 2 +141257 7662 It may also be the best sex comedy about environmental pollution ever made . 4 +141258 7662 may also be the best sex comedy about environmental pollution ever made . 4 +141259 7662 may also be the best sex comedy about environmental pollution ever made 4 +141260 7662 be the best sex comedy about environmental pollution ever made 4 +141261 7662 the best sex comedy about environmental pollution ever made 4 +141262 7662 the best sex comedy 4 +141263 7662 best sex comedy 4 +141264 7662 about environmental pollution ever made 2 +141265 7662 environmental pollution ever made 1 +141266 7662 environmental pollution 1 +141267 7663 In the wake of Saving Private Ryan , Black Hawk Down and We Were Soldiers , you are likely to be as heartily sick of mayhem as Cage 's war-weary marine . 1 +141268 7663 In the wake of Saving Private Ryan , Black Hawk Down and We Were Soldiers 2 +141269 7663 In the wake of Saving Private Ryan 2 +141270 7663 the wake of Saving Private Ryan 3 +141271 7663 the wake 2 +141272 7663 of Saving Private Ryan 2 +141273 7663 , Black Hawk Down and We Were Soldiers 2 +141274 7663 Black Hawk Down and We Were Soldiers 3 +141275 7663 Black Hawk Down and We 3 +141276 7663 Black Hawk Down and 2 +141277 7663 , you are likely to be as heartily sick of mayhem as Cage 's war-weary marine . 1 +141278 7663 you are likely to be as heartily sick of mayhem as Cage 's war-weary marine . 1 +141279 7663 are likely to be as heartily sick of mayhem as Cage 's war-weary marine . 2 +141280 7663 are likely to be as heartily sick of mayhem as Cage 's war-weary marine 1 +141281 7663 likely to be as heartily sick of mayhem as Cage 's war-weary marine 2 +141282 7663 to be as heartily sick of mayhem as Cage 's war-weary marine 1 +141283 7663 be as heartily sick of mayhem as Cage 's war-weary marine 2 +141284 7663 be as heartily sick of mayhem 2 +141285 7663 as heartily sick of mayhem 2 +141286 7663 as heartily sick 2 +141287 7663 heartily sick 1 +141288 7663 heartily 2 +141289 7663 of mayhem 2 +141290 7663 as Cage 's war-weary marine 2 +141291 7663 Cage 's war-weary marine 2 +141292 7663 war-weary marine 1 +141293 7663 war-weary 2 +141294 7663 marine 2 +141295 7664 The holes in this film remain agape -- holes punched through by an inconsistent , meandering , and sometimes dry plot . 1 +141296 7664 The holes in this film remain agape -- holes punched through by an inconsistent , meandering , and sometimes dry plot 1 +141297 7664 The holes in this film remain agape -- 1 +141298 7664 The holes in this film remain agape 1 +141299 7664 The holes in this film 1 +141300 7664 The holes 2 +141301 7664 remain agape 2 +141302 7664 agape 2 +141303 7664 holes punched through by an inconsistent , meandering , and sometimes dry plot 1 +141304 7664 punched through by an inconsistent , meandering , and sometimes dry plot 1 +141305 7664 punched through 2 +141306 7664 punched 2 +141307 7664 by an inconsistent , meandering , and sometimes dry plot 1 +141308 7664 an inconsistent , meandering , and sometimes dry plot 1 +141309 7664 inconsistent , meandering , and sometimes dry plot 0 +141310 7664 inconsistent , meandering , and sometimes dry 1 +141311 7664 , meandering , and sometimes dry 1 +141312 7664 meandering , and sometimes dry 1 +141313 7664 , and sometimes dry 2 +141314 7664 and sometimes dry 1 +141315 7664 sometimes dry 1 +141316 7665 He does n't , however , deliver nearly enough of the show 's trademark style and flash . 1 +141317 7665 He does n't 2 +141318 7665 , however , deliver nearly enough of the show 's trademark style and flash . 2 +141319 7665 however , deliver nearly enough of the show 's trademark style and flash . 2 +141320 7665 , deliver nearly enough of the show 's trademark style and flash . 2 +141321 7665 deliver nearly enough of the show 's trademark style and flash . 2 +141322 7665 deliver nearly enough of the show 's trademark style and flash 2 +141323 7665 deliver nearly enough of the show 's trademark 2 +141324 7665 nearly enough of the show 's trademark 2 +141325 7665 of the show 's trademark 2 +141326 7665 the show 's trademark 2 +141327 7666 -LRB- Hell is -RRB- looking down at your watch and realizing Serving Sara is n't even halfway through . 0 +141328 7666 Hell is -RRB- looking down at your watch and realizing Serving Sara is n't even halfway through . 1 +141329 7666 is -RRB- looking down at your watch and realizing Serving Sara is n't even halfway through . 1 +141330 7666 is -RRB- looking down at your watch and realizing Serving Sara is n't even halfway through 1 +141331 7666 looking down at your watch and realizing Serving Sara is n't even halfway through 0 +141332 7666 looking down at your watch and 1 +141333 7666 looking down at your watch 2 +141334 7666 looking down 2 +141335 7666 realizing Serving Sara is n't even halfway through 2 +141336 7666 Serving Sara is n't even halfway through 2 +141337 7666 is n't even halfway through 2 +141338 7666 is n't even halfway 1 +141339 7666 even halfway 2 +141340 7667 Supposedly based upon real , or at least soberly reported incidents , the film ends with a large human tragedy . 2 +141341 7667 Supposedly based upon real , or at least soberly reported incidents 2 +141342 7667 based upon real , or at least soberly reported incidents 2 +141343 7667 upon real , or at least soberly reported incidents 2 +141344 7667 real , or at least soberly reported incidents 2 +141345 7667 real , or at least 2 +141346 7667 , or at least 2 +141347 7667 soberly reported incidents 2 +141348 7667 soberly reported 2 +141349 7667 soberly 2 +141350 7667 reported 2 +141351 7667 incidents 3 +141352 7667 , the film ends with a large human tragedy . 1 +141353 7667 the film ends with a large human tragedy . 1 +141354 7667 ends with a large human tragedy . 2 +141355 7667 ends with a large human tragedy 2 +141356 7667 with a large human tragedy 2 +141357 7667 a large human tragedy 2 +141358 7667 large human tragedy 1 +141359 7668 An inventive , absorbing movie that 's as hard to classify as it is hard to resist . 4 +141360 7668 An inventive , absorbing movie that 's as hard to classify as it is hard to resist 4 +141361 7668 An inventive , 3 +141362 7668 An inventive 3 +141363 7668 absorbing movie that 's as hard to classify as it is hard to resist 3 +141364 7668 absorbing movie 3 +141365 7668 that 's as hard to classify as it is hard to resist 3 +141366 7668 's as hard to classify as it is hard to resist 4 +141367 7668 's as hard 2 +141368 7668 to classify as it is hard to resist 4 +141369 7668 classify as it is hard to resist 3 +141370 7668 classify 2 +141371 7668 as it is hard to resist 3 +141372 7668 it is hard to resist 3 +141373 7668 is hard to resist 3 +141374 7669 A finely tuned mood piece , a model of menacing atmosphere . 4 +141375 7669 A finely tuned mood 3 +141376 7669 finely tuned mood 2 +141377 7669 piece , a model of menacing atmosphere . 3 +141378 7669 piece , a model of menacing atmosphere 3 +141379 7669 piece , 2 +141380 7669 a model of menacing atmosphere 2 +141381 7669 a model 2 +141382 7669 model 3 +141383 7669 of menacing atmosphere 3 +141384 7670 The film is small in scope , yet perfectly formed . 4 +141385 7670 is small in scope , yet perfectly formed . 3 +141386 7670 is small in scope , yet perfectly formed 3 +141387 7670 small in scope , yet perfectly formed 3 +141388 7670 small in scope , yet 2 +141389 7670 small in scope , 1 +141390 7670 small in scope 2 +141391 7670 in scope 2 +141392 7670 perfectly formed 4 +141393 7671 Even if Invincible is not quite the career peak that The Pianist is for Roman Polanski , it demonstrates that Werner Herzog can still leave us with a sense of wonder at the diverse , marvelously twisted shapes history has taken . 3 +141394 7671 Even if Invincible is not quite the career peak that The Pianist is for Roman Polanski 2 +141395 7671 if Invincible is not quite the career peak that The Pianist is for Roman Polanski 3 +141396 7671 Invincible is not quite the career peak that The Pianist is for Roman Polanski 2 +141397 7671 is not quite the career peak that The Pianist is for Roman Polanski 2 +141398 7671 is not quite the career peak 1 +141399 7671 quite the career peak 3 +141400 7671 the career peak 3 +141401 7671 career peak 3 +141402 7671 that The Pianist is for Roman Polanski 2 +141403 7671 The Pianist is for Roman Polanski 2 +141404 7671 is for Roman Polanski 2 +141405 7671 for Roman Polanski 2 +141406 7671 , it demonstrates that Werner Herzog can still leave us with a sense of wonder at the diverse , marvelously twisted shapes history has taken . 4 +141407 7671 it demonstrates that Werner Herzog can still leave us with a sense of wonder at the diverse , marvelously twisted shapes history has taken . 3 +141408 7671 demonstrates that Werner Herzog can still leave us with a sense of wonder at the diverse , marvelously twisted shapes history has taken . 3 +141409 7671 demonstrates that Werner Herzog can still leave us with a sense of wonder at the diverse , marvelously twisted shapes history has taken 4 +141410 7671 that Werner Herzog can still leave us with a sense of wonder at the diverse , marvelously twisted shapes history has taken 4 +141411 7671 Werner Herzog can still leave us with a sense of wonder at the diverse , marvelously twisted shapes history has taken 3 +141412 7671 Werner Herzog 2 +141413 7671 Werner 2 +141414 7671 can still leave us with a sense of wonder at the diverse , marvelously twisted shapes history has taken 3 +141415 7671 leave us with a sense of wonder at the diverse , marvelously twisted shapes history has taken 3 +141416 7671 leave us with a sense of wonder 3 +141417 7671 leave us 2 +141418 7671 with a sense of wonder 3 +141419 7671 a sense of wonder 3 +141420 7671 of wonder 2 +141421 7671 at the diverse , marvelously twisted shapes history has taken 3 +141422 7671 the diverse , marvelously twisted shapes history has taken 2 +141423 7671 the diverse , marvelously twisted shapes history 3 +141424 7671 diverse , marvelously twisted shapes history 2 +141425 7671 , marvelously twisted shapes history 4 +141426 7671 marvelously twisted shapes history 3 +141427 7671 twisted shapes history 1 +141428 7671 shapes history 3 +141429 7671 shapes 2 +141430 7671 has taken 2 +141431 7672 It 's just a little too self-satisfied . 2 +141432 7672 's just a little too self-satisfied . 2 +141433 7672 's just a little too self-satisfied 2 +141434 7672 a little too self-satisfied 2 +141435 7672 too self-satisfied 1 +141436 7673 Slow , dry , poorly cast , but beautifully shot . 2 +141437 7673 Slow , dry , 1 +141438 7673 Slow , dry 1 +141439 7673 poorly cast , but beautifully shot . 2 +141440 7673 cast , but beautifully shot . 3 +141441 7673 cast , but beautifully shot 3 +141442 7673 cast , but beautifully 3 +141443 7674 A movie that will surely be profane , politically charged music to the ears of Cho 's fans . 3 +141444 7674 A movie that will surely be profane , politically 2 +141445 7674 that will surely be profane , politically 2 +141446 7674 will surely be profane , politically 1 +141447 7674 be profane , politically 2 +141448 7674 be profane , 1 +141449 7674 be profane 1 +141450 7674 charged music to the ears of Cho 's fans . 3 +141451 7674 charged music to the ears of Cho 's fans 3 +141452 7674 charged music 2 +141453 7674 to the ears of Cho 's fans 2 +141454 7674 the ears of Cho 's fans 2 +141455 7674 the ears 2 +141456 7674 of Cho 's fans 2 +141457 7674 Cho 's fans 2 +141458 7675 ... Stylistically , the movie is a disaster . 0 +141459 7675 Stylistically , the movie is a disaster . 0 +141460 7675 , the movie is a disaster . 0 +141461 7675 the movie is a disaster . 0 +141462 7675 is a disaster . 0 +141463 7675 is a disaster 1 +141464 7676 If routine action and jokes like this are your cup of tea , then pay your $ 8 and get ready for the big shear . 1 +141465 7676 If routine action and jokes like this are your cup of tea 1 +141466 7676 routine action and jokes like this are your cup of tea 2 +141467 7676 routine action and jokes like this 1 +141468 7676 routine action and jokes 2 +141469 7676 action and jokes 2 +141470 7676 are your cup of tea 2 +141471 7676 your cup of tea 2 +141472 7676 , then pay your $ 8 and get ready for the big shear . 2 +141473 7676 then pay your $ 8 and get ready for the big shear . 1 +141474 7676 pay your $ 8 and get ready for the big shear . 2 +141475 7676 pay your $ 8 and get ready for the big shear 1 +141476 7676 pay your $ 8 and 2 +141477 7676 pay your $ 8 2 +141478 7676 pay your 2 +141479 7676 $ 8 2 +141480 7676 get ready for the big shear 2 +141481 7676 get ready 2 +141482 7676 for the big shear 2 +141483 7676 the big shear 3 +141484 7676 big shear 3 +141485 7676 shear 2 +141486 7677 This cinema verite speculation on the assassination of John F. Kennedy may have been inspired by Blair Witch , but it takes its techniques into such fresh territory that the film never feels derivative . 3 +141487 7677 This cinema verite speculation on the assassination of John F. Kennedy may have been inspired by Blair Witch , but it takes its techniques into such fresh territory that the film never feels derivative 3 +141488 7677 This cinema verite speculation on the assassination of John F. Kennedy may have been inspired by Blair Witch , but 2 +141489 7677 This cinema verite speculation on the assassination of John F. Kennedy may have been inspired by Blair Witch , 1 +141490 7677 This cinema verite speculation on the assassination of John F. Kennedy may have been inspired by Blair Witch 2 +141491 7677 This cinema verite speculation on the assassination of John F. Kennedy 2 +141492 7677 This cinema verite speculation 2 +141493 7677 cinema verite speculation 2 +141494 7677 verite speculation 2 +141495 7677 verite 2 +141496 7677 on the assassination of John F. Kennedy 2 +141497 7677 the assassination of John F. Kennedy 2 +141498 7677 the assassination 2 +141499 7677 of John F. Kennedy 2 +141500 7677 John F. Kennedy 2 +141501 7677 F. Kennedy 2 +141502 7677 F. 2 +141503 7677 may have been inspired by Blair Witch 2 +141504 7677 have been inspired by Blair Witch 2 +141505 7677 been inspired by Blair Witch 2 +141506 7677 inspired by Blair Witch 2 +141507 7677 by Blair Witch 2 +141508 7677 it takes its techniques into such fresh territory that the film never feels derivative 3 +141509 7677 takes its techniques into such fresh territory that the film never feels derivative 3 +141510 7677 takes its techniques into such fresh territory 3 +141511 7677 takes its techniques 2 +141512 7677 its techniques 2 +141513 7677 techniques 2 +141514 7677 into such fresh territory 3 +141515 7677 such fresh territory 3 +141516 7677 fresh territory 3 +141517 7677 that the film never feels derivative 3 +141518 7677 the film never feels derivative 3 +141519 7677 never feels derivative 3 +141520 7677 feels derivative 1 +141521 7678 Given too much time to consider the looseness of the piece , the picture begins to resemble the shapeless , grasping actors ' workshop that it is . 0 +141522 7678 Given too much time to consider the looseness of the piece 1 +141523 7678 Given too much time 2 +141524 7678 to consider the looseness of the piece 1 +141525 7678 consider the looseness of the piece 2 +141526 7678 the looseness of the piece 1 +141527 7678 the looseness 2 +141528 7678 looseness 2 +141529 7678 , the picture begins to resemble the shapeless , grasping actors ' workshop that it is . 0 +141530 7678 the picture begins to resemble the shapeless , grasping actors ' workshop that it is . 1 +141531 7678 begins to resemble the shapeless , grasping actors ' workshop that it is . 0 +141532 7678 begins to resemble the shapeless , grasping actors ' workshop that it is 0 +141533 7678 begins to resemble the shapeless , 1 +141534 7678 begins to resemble the shapeless 2 +141535 7678 to resemble the shapeless 2 +141536 7678 resemble the shapeless 1 +141537 7678 the shapeless 2 +141538 7678 grasping actors ' workshop that it is 1 +141539 7678 grasping actors ' workshop 2 +141540 7678 grasping 2 +141541 7678 actors ' workshop 2 +141542 7678 workshop 2 +141543 7678 that it is 2 +141544 7679 Suffers from a flat script and a low budget . 1 +141545 7679 Suffers from a flat script and a low budget 0 +141546 7679 from a flat script and a low budget 1 +141547 7679 a flat script and a low budget 1 +141548 7679 a flat script and 1 +141549 7679 a flat script 1 +141550 7679 flat script 2 +141551 7679 a low budget 2 +141552 7680 Marshall puts a suspenseful spin on standard horror flick formula . 3 +141553 7680 puts a suspenseful spin on standard horror flick formula . 4 +141554 7680 puts a suspenseful spin on standard horror flick formula 3 +141555 7680 a suspenseful spin on standard horror flick formula 3 +141556 7680 a suspenseful spin 3 +141557 7680 suspenseful spin 3 +141558 7680 on standard horror flick formula 1 +141559 7680 standard horror flick formula 1 +141560 7680 horror flick formula 2 +141561 7681 What they 're doing is a matter of plumbing arrangements and mind games , of no erotic or sensuous charge . 1 +141562 7681 What they 're doing 2 +141563 7681 they 're doing 2 +141564 7681 're doing 2 +141565 7681 is a matter of plumbing arrangements and mind games , of no erotic or sensuous charge . 1 +141566 7681 is a matter of plumbing arrangements and mind games , of no erotic or sensuous charge 1 +141567 7681 a matter of plumbing arrangements and mind games , of no erotic or sensuous charge 1 +141568 7681 a matter of plumbing arrangements and mind games , 2 +141569 7681 a matter of plumbing arrangements and mind games 1 +141570 7681 of plumbing arrangements and mind games 2 +141571 7681 plumbing arrangements and mind games 2 +141572 7681 plumbing 2 +141573 7681 arrangements and mind games 2 +141574 7681 and mind games 3 +141575 7681 mind games 2 +141576 7681 of no erotic or sensuous charge 1 +141577 7681 no erotic or sensuous charge 2 +141578 7681 erotic or sensuous charge 3 +141579 7681 erotic or sensuous 2 +141580 7681 erotic or 2 +141581 7682 A sloppy , amusing comedy that proceeds from a stunningly unoriginal premise . 3 +141582 7682 A sloppy , amusing comedy that proceeds from a stunningly unoriginal premise 1 +141583 7682 A sloppy , amusing comedy 3 +141584 7682 sloppy , amusing comedy 2 +141585 7682 sloppy , amusing 3 +141586 7682 that proceeds from a stunningly unoriginal premise 1 +141587 7682 that proceeds 3 +141588 7682 from a stunningly unoriginal premise 1 +141589 7682 a stunningly unoriginal premise 1 +141590 7682 stunningly unoriginal premise 2 +141591 7682 stunningly unoriginal 0 +141592 7683 Each story is built on a potentially interesting idea , but the first two are ruined by amateurish writing and acting , while the third feels limited by its short running time . 1 +141593 7683 Each story is built on a potentially interesting idea , but the first two are ruined by amateurish writing and acting , while the third feels limited by its short running time 1 +141594 7683 Each story is built on a potentially interesting idea , but 3 +141595 7683 Each story is built on a potentially interesting idea , 3 +141596 7683 Each story is built on a potentially interesting idea 3 +141597 7683 Each story 2 +141598 7683 is built on a potentially interesting idea 3 +141599 7683 built on a potentially interesting idea 2 +141600 7683 on a potentially interesting idea 3 +141601 7683 the first two are ruined by amateurish writing and acting , while the third feels limited by its short running time 1 +141602 7683 the first two 2 +141603 7683 first two 2 +141604 7683 are ruined by amateurish writing and acting , while the third feels limited by its short running time 2 +141605 7683 ruined by amateurish writing and acting , while the third feels limited by its short running time 1 +141606 7683 ruined by amateurish writing and acting , 1 +141607 7683 ruined by amateurish writing and acting 1 +141608 7683 ruined by amateurish 0 +141609 7683 by amateurish 1 +141610 7683 writing and acting 2 +141611 7683 while the third feels limited by its short running time 1 +141612 7683 the third feels limited by its short running time 1 +141613 7683 the third 2 +141614 7683 feels limited by its short running time 1 +141615 7683 limited by its short running time 1 +141616 7683 by its short running time 2 +141617 7683 its short running time 2 +141618 7683 short running time 2 +141619 7683 short running 1 +141620 7684 At three hours and with very little story or character development , there is plenty of room for editing , and a much shorter cut surely would have resulted in a smoother , more focused narrative without sacrificing any of the cultural intrigue . 1 +141621 7684 At three hours and with very little story or character development 1 +141622 7684 three hours and with very little story or character development 0 +141623 7684 three hours and with very little story or character 1 +141624 7684 three hours and 2 +141625 7684 with very little story or character 1 +141626 7684 very little story or character 0 +141627 7684 story or character 2 +141628 7684 story or 2 +141629 7684 , there is plenty of room for editing , and a much shorter cut surely would have resulted in a smoother , more focused narrative without sacrificing any of the cultural intrigue . 2 +141630 7684 there is plenty of room for editing , and a much shorter cut surely would have resulted in a smoother , more focused narrative without sacrificing any of the cultural intrigue . 1 +141631 7684 there is plenty of room for editing , and a much shorter cut surely would have resulted in a smoother , more focused narrative without sacrificing any of the cultural intrigue 1 +141632 7684 there is plenty of room for editing , and 1 +141633 7684 there is plenty of room for editing , 1 +141634 7684 there is plenty of room for editing 2 +141635 7684 is plenty of room for editing 1 +141636 7684 plenty of room for editing 2 +141637 7684 of room for editing 2 +141638 7684 room for editing 2 +141639 7684 for editing 2 +141640 7684 a much shorter cut surely would have resulted in a smoother , more focused narrative without sacrificing any of the cultural intrigue 1 +141641 7684 a much shorter cut 2 +141642 7684 much shorter cut 2 +141643 7684 much shorter 2 +141644 7684 surely would have resulted in a smoother , more focused narrative without sacrificing any of the cultural intrigue 1 +141645 7684 would have resulted in a smoother , more focused narrative without sacrificing any of the cultural intrigue 2 +141646 7684 have resulted in a smoother , more focused narrative without sacrificing any of the cultural intrigue 3 +141647 7684 resulted in a smoother , more focused narrative without sacrificing any of the cultural intrigue 3 +141648 7684 resulted in a smoother , more focused narrative 3 +141649 7684 resulted 2 +141650 7684 in a smoother , more focused narrative 2 +141651 7684 a smoother , more focused narrative 2 +141652 7684 a smoother , more focused 3 +141653 7684 smoother , more focused 2 +141654 7684 smoother , 2 +141655 7684 more focused 3 +141656 7684 without sacrificing any of the cultural intrigue 3 +141657 7684 sacrificing any of the cultural intrigue 1 +141658 7684 any of the cultural intrigue 2 +141659 7684 of the cultural intrigue 2 +141660 7684 the cultural intrigue 2 +141661 7684 cultural intrigue 3 +141662 7685 Manages to be both hugely entertaining and uplifting . 4 +141663 7685 to be both hugely entertaining and uplifting . 4 +141664 7685 to be both hugely entertaining and uplifting 3 +141665 7685 be both hugely entertaining and uplifting 3 +141666 7685 both hugely entertaining and uplifting 4 +141667 7685 hugely entertaining and uplifting 3 +141668 7685 hugely entertaining and 3 +141669 7685 hugely entertaining 3 +141670 7686 Instead of letting the laughs come as they may , Lawrence unleashes his trademark misogyny -- er , comedy -- like a human volcano or an overflowing septic tank , take your pick . 0 +141671 7686 Instead of letting 2 +141672 7686 of letting 2 +141673 7686 the laughs come as they may , Lawrence unleashes his trademark misogyny -- er , comedy -- like a human volcano or an overflowing septic tank , take your pick . 2 +141674 7686 come as they may , Lawrence unleashes his trademark misogyny -- er , comedy -- like a human volcano or an overflowing septic tank , take your pick . 1 +141675 7686 come as they may , Lawrence unleashes his trademark misogyny -- er , comedy -- like a human volcano or an overflowing septic tank , take your pick 0 +141676 7686 as they may , Lawrence unleashes his trademark misogyny -- er , comedy -- like a human volcano or an overflowing septic tank , take your pick 1 +141677 7686 they may , Lawrence unleashes his trademark misogyny -- er , comedy -- like a human volcano or an overflowing septic tank , take your pick 2 +141678 7686 may , Lawrence unleashes his trademark misogyny -- er , comedy -- like a human volcano or an overflowing septic tank , take your pick 0 +141679 7686 may , Lawrence unleashes his trademark misogyny -- er , comedy -- like a human volcano or an overflowing septic tank , 2 +141680 7686 , Lawrence unleashes his trademark misogyny -- er , comedy -- like a human volcano or an overflowing septic tank , 1 +141681 7686 Lawrence unleashes his trademark misogyny -- er , comedy -- like a human volcano or an overflowing septic tank , 3 +141682 7686 Lawrence unleashes his trademark misogyny -- er , comedy -- like a human volcano or an overflowing septic tank 0 +141683 7686 unleashes his trademark misogyny -- er , comedy -- like a human volcano or an overflowing septic tank 2 +141684 7686 unleashes his trademark misogyny -- er , comedy -- 1 +141685 7686 unleashes his trademark misogyny 1 +141686 7686 his trademark misogyny 1 +141687 7686 trademark misogyny 1 +141688 7686 -- er , comedy -- 2 +141689 7686 er , comedy -- 2 +141690 7686 er , comedy 2 +141691 7686 er , 2 +141692 7686 like a human volcano or an overflowing septic tank 0 +141693 7686 a human volcano or an overflowing septic tank 0 +141694 7686 a human volcano or 2 +141695 7686 a human volcano 2 +141696 7686 human volcano 2 +141697 7686 volcano 2 +141698 7686 an overflowing septic tank 1 +141699 7686 overflowing septic tank 1 +141700 7686 overflowing 3 +141701 7686 septic tank 1 +141702 7686 septic 1 +141703 7686 tank 1 +141704 7687 The Paradiso 's rusted-out ruin and ultimate collapse during the film 's final -LRB- restored -RRB- third ... emotionally belittle a cinema classic . 0 +141705 7687 The Paradiso 's rusted-out ruin and ultimate collapse during the film 's final -LRB- restored -RRB- third ... 1 +141706 7687 The Paradiso 's rusted-out ruin and ultimate collapse during the film 's final -LRB- restored -RRB- third 2 +141707 7687 The Paradiso 's rusted-out ruin and 2 +141708 7687 The Paradiso 's rusted-out ruin 2 +141709 7687 The Paradiso 's 2 +141710 7687 Paradiso 's 2 +141711 7687 rusted-out ruin 1 +141712 7687 rusted-out 1 +141713 7687 ruin 1 +141714 7687 ultimate collapse during the film 's final -LRB- restored -RRB- third 1 +141715 7687 ultimate collapse 2 +141716 7687 during the film 's final -LRB- restored -RRB- third 2 +141717 7687 the film 's final -LRB- restored -RRB- third 2 +141718 7687 final -LRB- restored -RRB- third 2 +141719 7687 -LRB- restored -RRB- third 2 +141720 7687 -LRB- restored -RRB- 2 +141721 7687 restored -RRB- 2 +141722 7687 restored 2 +141723 7687 emotionally belittle a cinema classic . 0 +141724 7687 belittle a cinema classic . 1 +141725 7687 belittle a cinema classic 1 +141726 7687 belittle 2 +141727 7687 a cinema classic 4 +141728 7687 cinema classic 4 +141729 7688 It 's quite diverting nonsense . 1 +141730 7688 's quite diverting nonsense . 2 +141731 7688 's quite diverting nonsense 1 +141732 7688 quite diverting nonsense 2 +141733 7688 quite diverting 2 +141734 7689 Witless and utterly pointless . 1 +141735 7689 Witless and utterly pointless 1 +141736 7689 and utterly pointless 1 +141737 7689 utterly pointless 0 +141738 7690 Tsai has managed to create an underplayed melodrama about family dynamics and dysfunction that harks back to the spare , unchecked heartache of Yasujiro Ozu . 2 +141739 7690 has managed to create an underplayed melodrama about family dynamics and dysfunction that harks back to the spare , unchecked heartache of Yasujiro Ozu . 3 +141740 7690 has managed to create an underplayed melodrama about family dynamics and dysfunction that harks back to the spare , unchecked heartache of Yasujiro Ozu 2 +141741 7690 managed to create an underplayed melodrama about family dynamics and dysfunction that harks back to the spare , unchecked heartache of Yasujiro Ozu 3 +141742 7690 to create an underplayed melodrama about family dynamics and dysfunction that harks back to the spare , unchecked heartache of Yasujiro Ozu 1 +141743 7690 create an underplayed melodrama about family dynamics and dysfunction that harks back to the spare , unchecked heartache of Yasujiro Ozu 3 +141744 7690 an underplayed melodrama about family dynamics and dysfunction that harks back to the spare , unchecked heartache of Yasujiro Ozu 2 +141745 7690 an underplayed melodrama about family dynamics and dysfunction 2 +141746 7690 an underplayed melodrama 2 +141747 7690 underplayed melodrama 2 +141748 7690 underplayed 1 +141749 7690 about family dynamics and dysfunction 2 +141750 7690 family dynamics and dysfunction 2 +141751 7690 dynamics and dysfunction 3 +141752 7690 dynamics and 2 +141753 7690 that harks back to the spare , unchecked heartache of Yasujiro Ozu 1 +141754 7690 harks back to the spare , unchecked heartache of Yasujiro Ozu 2 +141755 7690 harks back 2 +141756 7690 to the spare , unchecked heartache of Yasujiro Ozu 3 +141757 7690 the spare , unchecked heartache of Yasujiro Ozu 2 +141758 7690 the spare , unchecked heartache 2 +141759 7690 spare , unchecked heartache 1 +141760 7690 , unchecked heartache 2 +141761 7690 unchecked heartache 1 +141762 7690 of Yasujiro Ozu 2 +141763 7690 Yasujiro Ozu 2 +141764 7690 Yasujiro 2 +141765 7690 Ozu 2 +141766 7691 The more you think about the movie , the more you will probably like it . 3 +141767 7691 The more you think about the movie 2 +141768 7691 you think about the movie 2 +141769 7691 think about the movie 2 +141770 7691 , the more you will probably like it . 3 +141771 7691 the more you will probably like it . 3 +141772 7691 you will probably like it . 4 +141773 7691 will probably like it . 3 +141774 7691 will probably like it 2 +141775 7692 The director seems to take an unseemly pleasure in -LRB- the characters ' -RRB- misery and at the same time to congratulate himself for having the guts to confront it . 1 +141776 7692 seems to take an unseemly pleasure in -LRB- the characters ' -RRB- misery and at the same time to congratulate himself for having the guts to confront it . 2 +141777 7692 seems to take an unseemly pleasure in -LRB- the characters ' -RRB- misery and at the same time to congratulate himself for having the guts to confront it 1 +141778 7692 to take an unseemly pleasure in -LRB- the characters ' -RRB- misery and at the same time to congratulate himself for having the guts to confront it 2 +141779 7692 take an unseemly pleasure in -LRB- the characters ' -RRB- misery and at the same time to congratulate himself for having the guts to confront it 2 +141780 7692 take an unseemly pleasure 2 +141781 7692 an unseemly pleasure 3 +141782 7692 unseemly pleasure 2 +141783 7692 unseemly 2 +141784 7692 in -LRB- the characters ' -RRB- misery and at the same time to congratulate himself for having the guts to confront it 2 +141785 7692 in -LRB- the characters ' -RRB- misery and 2 +141786 7692 in -LRB- the characters ' -RRB- misery 1 +141787 7692 -LRB- the characters ' -RRB- misery 1 +141788 7692 -LRB- the characters ' -RRB- 2 +141789 7692 the characters ' -RRB- 2 +141790 7692 at the same time to congratulate himself for having the guts to confront it 2 +141791 7692 the same time to congratulate himself for having the guts to confront it 2 +141792 7692 same time to congratulate himself for having the guts to confront it 3 +141793 7692 time to congratulate himself for having the guts to confront it 3 +141794 7692 to congratulate himself for having the guts to confront it 4 +141795 7692 congratulate himself for having the guts to confront it 3 +141796 7692 congratulate himself 2 +141797 7692 congratulate 2 +141798 7692 for having the guts to confront it 2 +141799 7692 having the guts to confront it 2 +141800 7692 the guts to confront it 2 +141801 7692 to confront it 2 +141802 7692 confront it 3 +141803 7693 It 's secondary to American Psycho but still has claws enough to get inside you and stay there for a couple of hours . 3 +141804 7693 's secondary to American Psycho but still has claws enough to get inside you and stay there for a couple of hours . 3 +141805 7693 's secondary to American Psycho but still has claws enough to get inside you and stay there for a couple of hours 3 +141806 7693 's secondary to American Psycho but still 2 +141807 7693 's secondary to American Psycho but 2 +141808 7693 's secondary to American Psycho 2 +141809 7693 secondary to American Psycho 2 +141810 7693 to American Psycho 2 +141811 7693 American Psycho 2 +141812 7693 has claws enough to get inside you and stay there for a couple of hours 3 +141813 7693 has claws enough 2 +141814 7693 claws enough 2 +141815 7693 claws 2 +141816 7693 to get inside you and stay there for a couple of hours 3 +141817 7693 get inside you and stay there for a couple of hours 2 +141818 7693 get inside you and 2 +141819 7693 get inside you 3 +141820 7693 inside you 2 +141821 7693 stay there for a couple of hours 2 +141822 7693 stay there 2 +141823 7693 for a couple of hours 2 +141824 7693 a couple of hours 2 +141825 7693 of hours 2 +141826 7694 At its worst the screenplay is callow , but at its best it is a young artist 's thoughtful consideration of fatherhood . 2 +141827 7694 At its worst the screenplay is callow , but at its best it is a young artist 's thoughtful consideration of fatherhood 2 +141828 7694 At its worst the screenplay is callow , but 1 +141829 7694 At its worst the screenplay is callow , 1 +141830 7694 At its worst the screenplay is callow 1 +141831 7694 the screenplay is callow 1 +141832 7694 is callow 1 +141833 7694 at its best it is a young artist 's thoughtful consideration of fatherhood 3 +141834 7694 it is a young artist 's thoughtful consideration of fatherhood 3 +141835 7694 is a young artist 's thoughtful consideration of fatherhood 3 +141836 7694 a young artist 's thoughtful consideration of fatherhood 3 +141837 7694 a young artist 's thoughtful consideration 3 +141838 7694 a young artist 's 2 +141839 7694 young artist 's 2 +141840 7694 thoughtful consideration 3 +141841 7694 of fatherhood 2 +141842 7694 fatherhood 2 +141843 7695 The film 's best trick is the way that it treats conspiracy as a kind of political Blair Witch , a monstrous murk that haunts us precisely because it can never be seen . 2 +141844 7695 The film 's best trick 3 +141845 7695 best trick 2 +141846 7695 is the way that it treats conspiracy as a kind of political Blair Witch , a monstrous murk that haunts us precisely because it can never be seen . 2 +141847 7695 is the way that it treats conspiracy as a kind of political Blair Witch , a monstrous murk that haunts us precisely because it can never be seen 2 +141848 7695 is the way 2 +141849 7695 that it treats conspiracy as a kind of political Blair Witch , a monstrous murk that haunts us precisely because it can never be seen 2 +141850 7695 it treats conspiracy as a kind of political Blair Witch , a monstrous murk that haunts us precisely because it can never be seen 2 +141851 7695 treats conspiracy as a kind of political Blair Witch , a monstrous murk that haunts us precisely because it can never be seen 2 +141852 7695 treats conspiracy 2 +141853 7695 as a kind of political Blair Witch , a monstrous murk that haunts us precisely because it can never be seen 1 +141854 7695 a kind of political Blair Witch , a monstrous murk that haunts us precisely because it can never be seen 2 +141855 7695 of political Blair Witch , a monstrous murk that haunts us precisely because it can never be seen 2 +141856 7695 political Blair Witch , a monstrous murk that haunts us precisely because it can never be seen 3 +141857 7695 political Blair Witch , 1 +141858 7695 political Blair Witch 2 +141859 7695 a monstrous murk that haunts us precisely because it can never be seen 2 +141860 7695 a monstrous murk 1 +141861 7695 monstrous murk 2 +141862 7695 that haunts us precisely because it can never be seen 2 +141863 7695 haunts us precisely because it can never be seen 2 +141864 7695 haunts us precisely 3 +141865 7695 haunts us 2 +141866 7695 haunts 2 +141867 7695 because it can never be seen 1 +141868 7695 it can never be seen 2 +141869 7695 can never be seen 2 +141870 7695 be seen 2 +141871 7696 This is an extraordinary film , not least because it is Japanese and yet feels universal . 4 +141872 7696 is an extraordinary film , not least because it is Japanese and yet feels universal . 4 +141873 7696 is an extraordinary film , not least because it is Japanese and yet feels universal 4 +141874 7696 is an extraordinary film , not least 3 +141875 7696 an extraordinary film , not least 4 +141876 7696 an extraordinary film , 4 +141877 7696 an extraordinary film 4 +141878 7696 extraordinary film 4 +141879 7696 because it is Japanese and yet feels universal 3 +141880 7696 it is Japanese and yet feels universal 3 +141881 7696 is Japanese and yet feels universal 3 +141882 7696 is Japanese and 2 +141883 7696 is Japanese 2 +141884 7696 yet feels universal 3 +141885 7696 feels universal 3 +141886 7697 And that holds true for both the movie and the title character played by Brendan Fraser . 2 +141887 7697 that holds true for both the movie and the title character played by Brendan Fraser . 2 +141888 7697 holds true for both the movie and the title character played by Brendan Fraser . 2 +141889 7697 holds true for both the movie and the title character played by Brendan Fraser 2 +141890 7697 true for both the movie and the title character played by Brendan Fraser 2 +141891 7697 for both the movie and the title character played by Brendan Fraser 2 +141892 7697 both the movie and the title character played by Brendan Fraser 2 +141893 7697 both the movie and 2 +141894 7697 both the movie 2 +141895 7697 the title character played by Brendan Fraser 2 +141896 7697 played by Brendan Fraser 2 +141897 7697 by Brendan Fraser 2 +141898 7697 Brendan Fraser 2 +141899 7697 Fraser 2 +141900 7698 Forages for audience sympathy like a temperamental child begging for attention , giving audiences no reason to truly care for its decrepit freaks beyond the promise of a reprieve from their incessant whining . 0 +141901 7698 Forages for audience sympathy 2 +141902 7698 Forages 2 +141903 7698 for audience sympathy 2 +141904 7698 like a temperamental child begging for attention , giving audiences no reason to truly care for its decrepit freaks beyond the promise of a reprieve from their incessant whining . 1 +141905 7698 like a temperamental child begging for attention , giving audiences no reason to truly care for its decrepit freaks beyond the promise of a reprieve from their incessant whining 0 +141906 7698 a temperamental child begging for attention , giving audiences no reason to truly care for its decrepit freaks beyond the promise of a reprieve from their incessant whining 1 +141907 7698 a temperamental child 2 +141908 7698 temperamental child 1 +141909 7698 temperamental 1 +141910 7698 begging for attention , giving audiences no reason to truly care for its decrepit freaks beyond the promise of a reprieve from their incessant whining 1 +141911 7698 begging for attention , 1 +141912 7698 begging for attention 1 +141913 7698 giving audiences no reason to truly care for its decrepit freaks beyond the promise of a reprieve from their incessant whining 1 +141914 7698 giving audiences 2 +141915 7698 no reason to truly care for its decrepit freaks beyond the promise of a reprieve from their incessant whining 0 +141916 7698 reason to truly care for its decrepit freaks beyond the promise of a reprieve from their incessant whining 2 +141917 7698 to truly care for its decrepit freaks beyond the promise of a reprieve from their incessant whining 1 +141918 7698 truly care for its decrepit freaks beyond the promise of a reprieve from their incessant whining 1 +141919 7698 care for its decrepit freaks beyond the promise of a reprieve from their incessant whining 1 +141920 7698 care for its decrepit freaks beyond the promise of a reprieve 2 +141921 7698 care for its decrepit freaks 2 +141922 7698 for its decrepit freaks 2 +141923 7698 its decrepit freaks 1 +141924 7698 decrepit freaks 1 +141925 7698 decrepit 1 +141926 7698 beyond the promise of a reprieve 2 +141927 7698 the promise of a reprieve 2 +141928 7698 of a reprieve 2 +141929 7698 a reprieve 3 +141930 7698 reprieve 2 +141931 7698 from their incessant whining 1 +141932 7698 their incessant whining 1 +141933 7698 incessant whining 0 +141934 7698 whining 2 +141935 7699 Too smart to ignore but a little too smugly superior to like , this could be a movie that ends up slapping its target audience in the face by shooting itself in the foot . 1 +141936 7699 Too smart to ignore but a little too smugly superior to like 2 +141937 7699 smart to ignore but a little too smugly superior to like 1 +141938 7699 to ignore but a little too smugly superior to like 2 +141939 7699 ignore but a little too smugly superior to like 1 +141940 7699 ignore but a little too smugly superior 1 +141941 7699 but a little too smugly superior 1 +141942 7699 but a little too smugly 1 +141943 7699 a little too smugly 1 +141944 7699 , this could be a movie that ends up slapping its target audience in the face by shooting itself in the foot . 1 +141945 7699 this could be a movie that ends up slapping its target audience in the face by shooting itself in the foot . 1 +141946 7699 could be a movie that ends up slapping its target audience in the face by shooting itself in the foot . 2 +141947 7699 could be a movie that ends up slapping its target audience in the face by shooting itself in the foot 1 +141948 7699 be a movie that ends up slapping its target audience in the face by shooting itself in the foot 0 +141949 7699 a movie that ends up slapping its target audience in the face by shooting itself in the foot 1 +141950 7699 that ends up slapping its target audience in the face by shooting itself in the foot 1 +141951 7699 ends up slapping its target audience in the face by shooting itself in the foot 1 +141952 7699 slapping its target audience in the face by shooting itself in the foot 0 +141953 7699 slapping its target audience in the face 1 +141954 7699 slapping its target audience 1 +141955 7699 by shooting itself in the foot 0 +141956 7699 shooting itself in the foot 1 +141957 7699 shooting itself 1 +141958 7699 in the foot 2 +141959 7699 the foot 2 +141960 7699 foot 2 +141961 7700 It 's neither as sappy as Big Daddy nor as anarchic as Happy Gilmore or The Waterboy , but it has its moments . 3 +141962 7700 It 's neither as sappy as Big Daddy nor as anarchic as Happy Gilmore or The Waterboy , but it has its moments 2 +141963 7700 It 's neither as sappy as Big Daddy nor as anarchic as Happy Gilmore or The Waterboy , but 2 +141964 7700 It 's neither as sappy as Big Daddy nor as anarchic as Happy Gilmore or The Waterboy , 2 +141965 7700 It 's neither as sappy as Big Daddy nor as anarchic as Happy Gilmore or The Waterboy 2 +141966 7700 's neither as sappy as Big Daddy nor as anarchic as Happy Gilmore or The Waterboy 2 +141967 7700 's neither as sappy as Big Daddy nor as anarchic 2 +141968 7700 neither as sappy as Big Daddy nor as anarchic 2 +141969 7700 neither as sappy as Big Daddy nor 2 +141970 7700 neither as sappy as Big Daddy 2 +141971 7700 as sappy as Big Daddy 1 +141972 7700 sappy as Big Daddy 1 +141973 7700 as Big Daddy 2 +141974 7700 Big Daddy 2 +141975 7700 Daddy 2 +141976 7700 as anarchic 2 +141977 7700 anarchic 2 +141978 7700 as Happy Gilmore or The Waterboy 2 +141979 7700 Happy Gilmore or The Waterboy 3 +141980 7700 Happy Gilmore or 2 +141981 7700 Happy Gilmore 2 +141982 7700 Gilmore 2 +141983 7700 The Waterboy 2 +141984 7700 it has its moments 3 +141985 7701 Although I did n't hate this one , it 's not very good either . 1 +141986 7701 Although I did n't hate this one 3 +141987 7701 I did n't hate this one 2 +141988 7701 did n't hate this one 3 +141989 7701 hate this one 0 +141990 7701 , it 's not very good either . 1 +141991 7701 it 's not very good either . 0 +141992 7701 's not very good either . 1 +141993 7701 's not very good either 1 +141994 7701 's not very good 1 +141995 7702 Well-made but mush-hearted . 3 +141996 7702 but mush-hearted . 1 +141997 7702 but mush-hearted 2 +141998 7702 mush-hearted 2 +141999 7703 Fun and nimble . 4 +142000 7703 Fun and nimble 3 +142001 7704 Unfolds in a series of achronological vignettes whose cumulative effect is chilling . 3 +142002 7704 Unfolds in a series of achronological vignettes whose cumulative effect is chilling 2 +142003 7704 in a series of achronological vignettes whose cumulative effect is chilling 3 +142004 7704 a series of achronological vignettes whose cumulative effect is chilling 2 +142005 7704 a series of achronological vignettes 2 +142006 7704 of achronological vignettes 2 +142007 7704 achronological vignettes 2 +142008 7704 whose cumulative effect is chilling 3 +142009 7704 whose cumulative effect 2 +142010 7704 whose cumulative 2 +142011 7704 is chilling 2 +142012 7705 Sitting in the third row of the IMAX cinema at Sydney 's Darling Harbour , but I sometimes felt as though I was in the tiny two seater plane that carried the giant camera around Australia , sweeping and gliding , banking and hovering over some of the most not 3 +142013 7705 Sitting in the third row of the IMAX cinema at Sydney 's Darling Harbour , but I sometimes felt as though I was in the tiny two seater plane that carried the giant camera around Australia , sweeping and gliding , banking and 4 +142014 7705 Sitting in the third row of the IMAX cinema at Sydney 's Darling Harbour , but I sometimes felt as though I was in the tiny two seater plane that carried the giant camera around Australia , sweeping and gliding , banking 2 +142015 7705 Sitting in the third row of the IMAX cinema at Sydney 's Darling Harbour , 2 +142016 7705 Sitting in the third row of the IMAX cinema at Sydney 's Darling Harbour 2 +142017 7705 Sitting in the third row of the IMAX cinema 2 +142018 7705 in the third row of the IMAX cinema 2 +142019 7705 the third row of the IMAX cinema 2 +142020 7705 the third row 2 +142021 7705 third row 2 +142022 7705 of the IMAX cinema 2 +142023 7705 the IMAX cinema 2 +142024 7705 IMAX cinema 3 +142025 7705 at Sydney 's Darling Harbour 2 +142026 7705 Sydney 's Darling Harbour 2 +142027 7705 Sydney 's 2 +142028 7705 Sydney 2 +142029 7705 Darling Harbour 2 +142030 7705 Harbour 2 +142031 7705 but I sometimes felt as though I was in the tiny two seater plane that carried the giant camera around Australia , sweeping and gliding , banking 3 +142032 7705 I sometimes felt as though I was in the tiny two seater plane that carried the giant camera around Australia , sweeping and gliding , banking 2 +142033 7705 sometimes felt as though I was in the tiny two seater plane that carried the giant camera around Australia , sweeping and gliding , banking 3 +142034 7705 felt as though I was in the tiny two seater plane that carried the giant camera around Australia , sweeping and gliding , banking 2 +142035 7705 as though I was in the tiny two seater plane that carried the giant camera around Australia , sweeping and gliding , banking 4 +142036 7705 though I was in the tiny two seater plane that carried the giant camera around Australia , sweeping and gliding , banking 2 +142037 7705 I was in the tiny two seater plane that carried the giant camera around Australia , sweeping and gliding , banking 2 +142038 7705 was in the tiny two seater plane that carried the giant camera around Australia , sweeping and gliding , banking 2 +142039 7705 in the tiny two seater plane that carried the giant camera around Australia , sweeping and gliding , banking 2 +142040 7705 the tiny two seater plane that carried the giant camera around Australia , sweeping and gliding , banking 2 +142041 7705 the tiny two seater plane that carried the giant camera around Australia , sweeping and gliding , 2 +142042 7705 the tiny two seater plane that carried the giant camera around Australia , sweeping and gliding 2 +142043 7705 the tiny two seater plane 2 +142044 7705 tiny two seater plane 2 +142045 7705 two seater plane 2 +142046 7705 seater plane 2 +142047 7705 seater 2 +142048 7705 that carried the giant camera around Australia , sweeping and gliding 2 +142049 7705 carried the giant camera around Australia , sweeping and gliding 2 +142050 7705 carried the giant camera around Australia , 2 +142051 7705 carried the giant camera around Australia 2 +142052 7705 carried the giant camera 2 +142053 7705 the giant camera 2 +142054 7705 giant camera 2 +142055 7705 around Australia 2 +142056 7705 sweeping and gliding 3 +142057 7705 sweeping and 2 +142058 7705 gliding 2 +142059 7705 banking 2 +142060 7705 hovering over some of the most not 2 +142061 7705 hovering 2 +142062 7705 over some of the most not 2 +142063 7705 some of the most not 2 +142064 7705 of the most not 2 +142065 7705 the most not 2 +142066 7706 Just a Kiss is a just a waste . 1 +142067 7706 Just a Kiss 2 +142068 7706 is a just a waste . 0 +142069 7706 is a just a waste 0 +142070 7706 a just a waste 1 +142071 7706 just a waste 0 +142072 7706 just a 2 +142073 7707 The gags are often a stitch . 3 +142074 7707 are often a stitch . 2 +142075 7707 are often a stitch 1 +142076 7707 a stitch 2 +142077 7708 Captivates as it shows excess in business and pleasure , allowing us to find the small , human moments , and leaving off with a grand whimper . 3 +142078 7708 Captivates as it 3 +142079 7708 shows excess in business and pleasure , allowing us to find the small , human moments , and leaving off with a grand whimper . 1 +142080 7708 shows excess in business and pleasure , allowing us to find the small , human moments , and leaving off with a grand whimper 3 +142081 7708 shows excess in business and pleasure , 3 +142082 7708 shows excess in business and pleasure 3 +142083 7708 excess in business and pleasure 2 +142084 7708 in business and pleasure 2 +142085 7708 business and pleasure 3 +142086 7708 business and 2 +142087 7708 allowing us to find the small , human moments , and leaving off with a grand whimper 3 +142088 7708 allowing us to find the small , human moments , and 3 +142089 7708 allowing us to find the small , human moments , 3 +142090 7708 allowing us to find the small , human moments 2 +142091 7708 us to find the small , human moments 2 +142092 7708 to find the small , human moments 3 +142093 7708 find the small , human moments 3 +142094 7708 the small , human moments 3 +142095 7708 small , human moments 3 +142096 7708 , human moments 3 +142097 7708 leaving off with a grand whimper 2 +142098 7708 leaving off 2 +142099 7708 with a grand whimper 1 +142100 7708 a grand whimper 1 +142101 7708 grand whimper 2 +142102 7709 Piccoli 's performance is amazing , yes , but the symbols of loss and denial and life-at-arm 's - length in the film seem irritatingly transparent . 1 +142103 7709 Piccoli 's performance is amazing , yes , but the symbols of loss and denial and life-at-arm 's - length in the film seem irritatingly transparent 2 +142104 7709 Piccoli 's performance is amazing , yes , but 2 +142105 7709 Piccoli 's performance is amazing , yes , 3 +142106 7709 Piccoli 's performance is amazing , yes 3 +142107 7709 Piccoli 's performance 2 +142108 7709 Piccoli 's 2 +142109 7709 is amazing , yes 4 +142110 7709 is amazing , 3 +142111 7709 is amazing 4 +142112 7709 the symbols of loss and denial and life-at-arm 's - length in the film seem irritatingly transparent 1 +142113 7709 the symbols of loss and denial and life-at-arm 's - length in the film 2 +142114 7709 of loss and denial and life-at-arm 's - length in the film 1 +142115 7709 loss and denial and life-at-arm 's - length in the film 2 +142116 7709 loss and denial and life-at-arm 's - 1 +142117 7709 loss and denial and life-at-arm 's 2 +142118 7709 loss and denial and 2 +142119 7709 loss and denial 1 +142120 7709 life-at-arm 's 2 +142121 7709 life-at-arm 2 +142122 7709 length in the film 2 +142123 7709 seem irritatingly transparent 1 +142124 7709 irritatingly transparent 1 +142125 7709 irritatingly 1 +142126 7710 For single digits kidlets Stuart Little 2 is still a no brainer . 2 +142127 7710 For single digits kidlets 2 +142128 7710 single digits kidlets 2 +142129 7710 digits kidlets 2 +142130 7710 Stuart Little 2 is still a no brainer . 2 +142131 7710 is still a no brainer . 2 +142132 7710 is still a no brainer 2 +142133 7710 a no brainer 2 +142134 7710 a no 2 +142135 7710 brainer 2 +142136 7711 Beyond the cleverness , the weirdness and the pristine camerawork , One Hour Photo is a sobering meditation on why we take pictures . 3 +142137 7711 Beyond the cleverness , the weirdness and the pristine camerawork 3 +142138 7711 the cleverness , the weirdness and the pristine camerawork 3 +142139 7711 the cleverness , the weirdness and 3 +142140 7711 the cleverness , the weirdness 2 +142141 7711 the cleverness , 3 +142142 7711 the cleverness 3 +142143 7711 the weirdness 2 +142144 7711 the pristine camerawork 3 +142145 7711 pristine camerawork 4 +142146 7711 camerawork 2 +142147 7711 , One Hour Photo is a sobering meditation on why we take pictures . 2 +142148 7711 One Hour Photo is a sobering meditation on why we take pictures . 3 +142149 7711 is a sobering meditation on why we take pictures . 3 +142150 7711 is a sobering meditation on why we take pictures 3 +142151 7711 a sobering meditation on why we take pictures 2 +142152 7711 a sobering meditation 3 +142153 7711 sobering meditation 2 +142154 7711 on why we take pictures 2 +142155 7711 why we take pictures 2 +142156 7711 we take pictures 2 +142157 7711 take pictures 2 +142158 7712 Dramas like this make it human . 4 +142159 7712 Dramas like this 2 +142160 7712 make it human . 2 +142161 7712 make it human 3 +142162 7712 it human 2 +142163 7713 A very good film sits in the place where a masterpiece should be . 3 +142164 7713 A very good film 4 +142165 7713 very good film 4 +142166 7713 sits in the place where a masterpiece should be . 3 +142167 7713 sits in the place where a masterpiece should be 4 +142168 7713 in the place where a masterpiece should be 4 +142169 7713 the place where a masterpiece should be 3 +142170 7713 where a masterpiece should be 3 +142171 7713 a masterpiece should be 2 +142172 7714 The Country Bears has no scenes that will upset or frighten young viewers . 2 +142173 7714 has no scenes that will upset or frighten young viewers . 2 +142174 7714 has no scenes that will upset or frighten young viewers 3 +142175 7714 no scenes that will upset or frighten young viewers 3 +142176 7714 no scenes 2 +142177 7714 that will upset or frighten young viewers 1 +142178 7714 will upset or frighten young viewers 1 +142179 7714 upset or frighten young viewers 2 +142180 7714 upset or frighten 2 +142181 7714 upset or 2 +142182 7714 upset 2 +142183 7714 young viewers 2 +142184 7715 The 70-year-old Godard has become , to judge from In Praise of Love , the sort of bitter old crank who sits behind his light meter and harangues the supposed injustices of the artistic world-at-large without doing all that much to correct them . 2 +142185 7715 The 70-year-old Godard 3 +142186 7715 70-year-old Godard 2 +142187 7715 70-year-old 2 +142188 7715 has become , to judge from In Praise of Love , the sort of bitter old crank who sits behind his light meter and harangues the supposed injustices of the artistic world-at-large without doing all that much to correct them . 1 +142189 7715 has become , to judge from In Praise of Love , the sort of bitter old crank who sits behind his light meter and harangues the supposed injustices of the artistic world-at-large without doing all that much to correct them 2 +142190 7715 become , to judge from In Praise of Love , the sort of bitter old crank who sits behind his light meter and harangues the supposed injustices of the artistic world-at-large without doing all that much to correct them 2 +142191 7715 become , to judge from In Praise of Love , the sort of bitter old crank who sits behind his light meter and harangues the supposed injustices of the artistic world-at-large 1 +142192 7715 become , 2 +142193 7715 to judge from In Praise of Love , the sort of bitter old crank who sits behind his light meter and harangues the supposed injustices of the artistic world-at-large 1 +142194 7715 to judge 2 +142195 7715 from In Praise of Love , the sort of bitter old crank who sits behind his light meter and harangues the supposed injustices of the artistic world-at-large 1 +142196 7715 In Praise of Love , the sort of bitter old crank who sits behind his light meter and harangues the supposed injustices of the artistic world-at-large 1 +142197 7715 Praise of Love , the sort of bitter old crank who sits behind his light meter and harangues the supposed injustices of the artistic world-at-large 1 +142198 7715 of Love , the sort of bitter old crank who sits behind his light meter and harangues the supposed injustices of the artistic world-at-large 1 +142199 7715 Love , the sort of bitter old crank who sits behind his light meter and harangues the supposed injustices of the artistic world-at-large 1 +142200 7715 the sort of bitter old crank who sits behind his light meter and harangues the supposed injustices of the artistic world-at-large 1 +142201 7715 the sort of bitter old crank 1 +142202 7715 of bitter old crank 1 +142203 7715 bitter old crank 1 +142204 7715 old crank 2 +142205 7715 crank 2 +142206 7715 who sits behind his light meter and harangues the supposed injustices of the artistic world-at-large 2 +142207 7715 sits behind his light meter and harangues the supposed injustices of the artistic world-at-large 1 +142208 7715 sits behind his light meter and harangues 2 +142209 7715 behind his light meter and harangues 2 +142210 7715 his light meter and harangues 2 +142211 7715 his light meter and 2 +142212 7715 his light meter 2 +142213 7715 light meter 2 +142214 7715 meter 2 +142215 7715 the supposed injustices of the artistic world-at-large 1 +142216 7715 the supposed injustices 1 +142217 7715 supposed injustices 1 +142218 7715 injustices 2 +142219 7715 of the artistic world-at-large 2 +142220 7715 the artistic world-at-large 2 +142221 7715 artistic world-at-large 2 +142222 7715 world-at-large 2 +142223 7715 without doing all that much to correct them 1 +142224 7715 doing all that much to correct them 2 +142225 7715 doing all that much 2 +142226 7715 all that much 2 +142227 7715 to correct them 2 +142228 7715 correct them 2 +142229 7716 An ambitious , guilt-suffused melodrama crippled by poor casting . 1 +142230 7716 An ambitious , guilt-suffused melodrama 2 +142231 7716 ambitious , guilt-suffused melodrama 2 +142232 7716 , guilt-suffused melodrama 2 +142233 7716 guilt-suffused melodrama 1 +142234 7716 guilt-suffused 2 +142235 7716 crippled by poor casting . 0 +142236 7716 crippled by poor casting 2 +142237 7716 by poor casting 1 +142238 7716 poor casting 1 +142239 7717 Constantly touching , surprisingly funny , semi-surrealist exploration of the creative act . 3 +142240 7717 Constantly touching , surprisingly funny , 4 +142241 7717 Constantly touching , surprisingly funny 3 +142242 7717 Constantly touching , 3 +142243 7717 Constantly touching 3 +142244 7717 semi-surrealist exploration of the creative act . 3 +142245 7717 semi-surrealist exploration of the creative act 3 +142246 7717 semi-surrealist 2 +142247 7717 exploration of the creative act 2 +142248 7717 of the creative act 3 +142249 7717 the creative act 3 +142250 7717 creative act 3 +142251 7718 Impossible as it may sound , this film 's heart is even more embracing than Monty , if only because it accepts nasty behavior and severe flaws as part of the human condition . 4 +142252 7718 Impossible as it may sound 1 +142253 7718 as it may sound 2 +142254 7718 it may sound 2 +142255 7718 , this film 's heart is even more embracing than Monty , if only because it accepts nasty behavior and severe flaws as part of the human condition . 3 +142256 7718 this film 's heart is even more embracing than Monty , if only because it accepts nasty behavior and severe flaws as part of the human condition . 3 +142257 7718 this film 's heart 2 +142258 7718 is even more embracing than Monty , if only because it accepts nasty behavior and severe flaws as part of the human condition . 3 +142259 7718 is even more embracing than Monty , if only because it accepts nasty behavior and severe flaws as part of the human condition 3 +142260 7718 is even more embracing than Monty , 3 +142261 7718 is even more embracing than Monty 2 +142262 7718 is even more 2 +142263 7718 embracing than Monty 3 +142264 7718 than Monty 2 +142265 7718 if only because it accepts nasty behavior and severe flaws as part of the human condition 1 +142266 7718 only because it accepts nasty behavior and severe flaws as part of the human condition 2 +142267 7718 because it accepts nasty behavior and severe flaws as part of the human condition 2 +142268 7718 it accepts nasty behavior and severe flaws as part of the human condition 1 +142269 7718 accepts nasty behavior and severe flaws as part of the human condition 2 +142270 7718 nasty behavior and severe flaws as part of the human condition 2 +142271 7718 nasty behavior and severe flaws 2 +142272 7718 behavior and severe flaws 0 +142273 7718 and severe flaws 2 +142274 7718 severe flaws 0 +142275 7718 as part of the human condition 2 +142276 7718 part of the human condition 2 +142277 7718 of the human condition 2 +142278 7719 Director Yu seems far more interested in gross-out humor than in showing us well-thought stunts or a car chase that we have n't seen 10,000 times . 1 +142279 7719 Director Yu 2 +142280 7719 seems far more interested in gross-out humor than in showing us well-thought stunts or a car chase that we have n't seen 10,000 times . 0 +142281 7719 seems far more interested in gross-out humor than in showing us well-thought stunts or a car chase that we have n't seen 10,000 times 0 +142282 7719 seems far more interested in gross-out humor 2 +142283 7719 far more interested in gross-out humor 1 +142284 7719 far more interested 2 +142285 7719 more interested 2 +142286 7719 in gross-out humor 3 +142287 7719 gross-out humor 1 +142288 7719 than in showing us well-thought stunts or a car chase that we have n't seen 10,000 times 2 +142289 7719 in showing us well-thought stunts or a car chase that we have n't seen 10,000 times 3 +142290 7719 showing us well-thought stunts or a car chase that we have n't seen 10,000 times 3 +142291 7719 showing us well-thought stunts or a car chase 3 +142292 7719 well-thought stunts or a car chase 3 +142293 7719 well-thought stunts or 3 +142294 7719 well-thought stunts 4 +142295 7719 well-thought 3 +142296 7719 a car chase 2 +142297 7719 that we have n't seen 10,000 times 2 +142298 7719 we have n't seen 10,000 times 2 +142299 7719 have n't seen 10,000 times 2 +142300 7719 seen 10,000 times 3 +142301 7719 10,000 times 2 +142302 7719 10,000 3 +142303 7720 Just a Kiss wants desperately to come off as a fanciful film about the typical problems of average people . 2 +142304 7720 wants desperately to come off as a fanciful film about the typical problems of average people . 2 +142305 7720 wants desperately to come off as a fanciful film about the typical problems of average people 1 +142306 7720 wants desperately 2 +142307 7720 to come off as a fanciful film about the typical problems of average people 2 +142308 7720 come off as a fanciful film about the typical problems of average people 2 +142309 7720 as a fanciful film about the typical problems of average people 3 +142310 7720 a fanciful film about the typical problems of average people 3 +142311 7720 a fanciful film 3 +142312 7720 fanciful film 3 +142313 7720 about the typical problems of average people 2 +142314 7720 the typical problems of average people 2 +142315 7720 the typical problems 2 +142316 7720 typical problems 1 +142317 7720 of average people 2 +142318 7720 average people 2 +142319 7721 Dodgy mixture of cutesy romance , dark satire and murder mystery . 2 +142320 7721 Dodgy mixture of cutesy romance , dark satire and murder mystery 2 +142321 7721 Dodgy mixture 1 +142322 7721 Dodgy 1 +142323 7721 of cutesy romance , dark satire and murder mystery 3 +142324 7721 cutesy romance , dark satire and murder mystery 3 +142325 7721 cutesy romance , dark satire and 3 +142326 7721 cutesy romance , dark satire 2 +142327 7721 cutesy romance , 3 +142328 7721 cutesy romance 3 +142329 7722 Cox offers plenty of glimpses at existing photos , but there are no movies of Nijinsky , so instead the director treats us to an aimless hodgepodge . 0 +142330 7722 Cox offers plenty of glimpses at existing photos , but there are no movies of Nijinsky , so instead the director treats us to an aimless hodgepodge 0 +142331 7722 Cox offers plenty of glimpses at existing photos , but 2 +142332 7722 Cox offers plenty of glimpses at existing photos , 3 +142333 7722 Cox offers plenty of glimpses at existing photos 2 +142334 7722 offers plenty of glimpses at existing photos 2 +142335 7722 plenty of glimpses at existing photos 2 +142336 7722 of glimpses at existing photos 2 +142337 7722 glimpses at existing photos 2 +142338 7722 at existing photos 3 +142339 7722 existing photos 2 +142340 7722 there are no movies of Nijinsky , so instead the director treats us to an aimless hodgepodge 2 +142341 7722 there are no movies of Nijinsky , so 2 +142342 7722 there are no movies of Nijinsky , 2 +142343 7722 there are no movies of Nijinsky 2 +142344 7722 are no movies of Nijinsky 2 +142345 7722 no movies of Nijinsky 2 +142346 7722 no movies 2 +142347 7722 instead the director treats us to an aimless hodgepodge 0 +142348 7722 the director treats us to an aimless hodgepodge 1 +142349 7722 treats us to an aimless hodgepodge 1 +142350 7722 treats us 3 +142351 7722 to an aimless hodgepodge 1 +142352 7722 an aimless hodgepodge 0 +142353 7722 aimless hodgepodge 1 +142354 7723 ... a true delight . 4 +142355 7723 a true delight . 4 +142356 7724 Cinematic poetry showcases the city 's old-world charm before machines change nearly everything . 3 +142357 7724 Cinematic poetry 4 +142358 7724 showcases the city 's old-world charm before machines change nearly everything . 2 +142359 7724 showcases the city 's old-world charm before machines change nearly everything 3 +142360 7724 showcases the city 's old-world charm 3 +142361 7724 the city 's old-world charm 3 +142362 7724 the city 's 2 +142363 7724 city 's 2 +142364 7724 old-world charm 3 +142365 7724 old-world 2 +142366 7724 before machines change nearly everything 2 +142367 7724 machines change nearly everything 2 +142368 7724 change nearly everything 2 +142369 7724 nearly everything 2 +142370 7725 The performances are so overstated , the effect comes off as self-parody . 0 +142371 7725 The performances are so overstated 1 +142372 7725 are so overstated 1 +142373 7725 , the effect comes off as self-parody . 1 +142374 7725 the effect comes off as self-parody . 2 +142375 7725 comes off as self-parody . 1 +142376 7725 comes off as self-parody 2 +142377 7725 as self-parody 2 +142378 7726 The production has been made with an enormous amount of affection , so we believe these characters love each other . 4 +142379 7726 The production has been made with an enormous amount of affection , so we believe these characters love each other 3 +142380 7726 The production has been made with an enormous amount of affection , so 3 +142381 7726 The production has been made with an enormous amount of affection , 3 +142382 7726 The production has been made with an enormous amount of affection 3 +142383 7726 has been made with an enormous amount of affection 3 +142384 7726 been made with an enormous amount of affection 4 +142385 7726 made with an enormous amount of affection 3 +142386 7726 with an enormous amount of affection 4 +142387 7726 an enormous amount of affection 3 +142388 7726 an enormous amount 2 +142389 7726 enormous amount 2 +142390 7726 we believe these characters love each other 2 +142391 7726 believe these characters love each other 2 +142392 7726 these characters love each other 3 +142393 7726 love each other 2 +142394 7727 The movie ends with outtakes in which most of the characters forget their lines and just utter ` uhhh , ' which is better than most of the writing in the movie . 1 +142395 7727 ends with outtakes in which most of the characters forget their lines and just utter ` uhhh , ' which is better than most of the writing in the movie . 1 +142396 7727 ends with outtakes in which most of the characters forget their lines and just utter ` uhhh , ' which is better than most of the writing in the movie 1 +142397 7727 with outtakes in which most of the characters forget their lines and just utter ` uhhh , ' which is better than most of the writing in the movie 1 +142398 7727 outtakes in which most of the characters forget their lines and just utter ` uhhh , ' which is better than most of the writing in the movie 1 +142399 7727 outtakes in which most of the characters forget their lines and 1 +142400 7727 outtakes in which most of the characters forget their lines 1 +142401 7727 in which most of the characters forget their lines 1 +142402 7727 most of the characters forget their lines 0 +142403 7727 forget their lines 2 +142404 7727 their lines 2 +142405 7727 just utter ` uhhh , ' which is better than most of the writing in the movie 1 +142406 7727 just utter ` uhhh , ' 1 +142407 7727 just utter ` uhhh , 2 +142408 7727 just utter ` uhhh 2 +142409 7727 utter ` uhhh 2 +142410 7727 ` uhhh 2 +142411 7727 uhhh 2 +142412 7727 which is better than most of the writing in the movie 2 +142413 7727 is better than most of the writing in the movie 1 +142414 7727 better than most of the writing in the movie 2 +142415 7727 than most of the writing in the movie 2 +142416 7727 most of the writing in the movie 2 +142417 7727 of the writing in the movie 2 +142418 7727 the writing in the movie 2 +142419 7728 Frei assembles a fascinating profile of a deeply humanistic artist who , in spite of all that he 's witnessed , remains surprisingly idealistic , and retains an extraordinary faith in the ability of images to communicate the truth of the world around him . 3 +142420 7728 assembles a fascinating profile of a deeply humanistic artist who , in spite of all that he 's witnessed , remains surprisingly idealistic , and retains an extraordinary faith in the ability of images to communicate the truth of the world around him . 4 +142421 7728 assembles a fascinating profile of a deeply humanistic artist who , in spite of all that he 's witnessed , remains surprisingly idealistic , and retains an extraordinary faith in the ability of images to communicate the truth of the world around him 4 +142422 7728 assembles a fascinating profile of a deeply humanistic artist who , in spite of all that he 's witnessed , remains surprisingly idealistic , and 3 +142423 7728 assembles a fascinating profile of a deeply humanistic artist who , in spite of all that he 's witnessed , remains surprisingly idealistic , 4 +142424 7728 assembles a fascinating profile of a deeply humanistic artist who , in spite of all that he 's witnessed , remains surprisingly idealistic 3 +142425 7728 assembles 2 +142426 7728 a fascinating profile of a deeply humanistic artist who , in spite of all that he 's witnessed , remains surprisingly idealistic 4 +142427 7728 a fascinating profile 3 +142428 7728 fascinating profile 3 +142429 7728 of a deeply humanistic artist who , in spite of all that he 's witnessed , remains surprisingly idealistic 3 +142430 7728 a deeply humanistic artist who , in spite of all that he 's witnessed , remains surprisingly idealistic 3 +142431 7728 a deeply humanistic artist 3 +142432 7728 deeply humanistic artist 3 +142433 7728 deeply humanistic 3 +142434 7728 who , in spite of all that he 's witnessed , remains surprisingly idealistic 3 +142435 7728 , in spite of all that he 's witnessed , remains surprisingly idealistic 3 +142436 7728 in spite of all that he 's witnessed , remains surprisingly idealistic 3 +142437 7728 in spite of all that he 's witnessed 2 +142438 7728 spite of all that he 's witnessed 2 +142439 7728 of all that he 's witnessed 2 +142440 7728 all that he 's witnessed 2 +142441 7728 that he 's witnessed 2 +142442 7728 he 's witnessed 2 +142443 7728 's witnessed 2 +142444 7728 , remains surprisingly idealistic 3 +142445 7728 remains surprisingly idealistic 3 +142446 7728 surprisingly idealistic 3 +142447 7728 retains an extraordinary faith in the ability of images to communicate the truth of the world around him 4 +142448 7728 retains an extraordinary faith in the ability of images 3 +142449 7728 an extraordinary faith in the ability of images 3 +142450 7728 an extraordinary faith 3 +142451 7728 extraordinary faith 3 +142452 7728 in the ability of images 2 +142453 7728 the ability of images 2 +142454 7728 to communicate the truth of the world around him 2 +142455 7728 communicate the truth of the world around him 3 +142456 7728 communicate the truth of the world 3 +142457 7728 communicate 2 +142458 7728 the truth of the world 2 +142459 7729 A moving , if uneven , success . 3 +142460 7729 A moving , if uneven , success 3 +142461 7729 moving , if uneven , success 3 +142462 7729 moving , if uneven , 2 +142463 7729 , if uneven , 1 +142464 7729 if uneven , 3 +142465 7730 Jeong-Hyang Lee 's film is deceptively simple , deeply satisfying . 3 +142466 7730 is deceptively simple , deeply satisfying . 4 +142467 7730 is deceptively simple , deeply satisfying 4 +142468 7730 deceptively simple , deeply satisfying 3 +142469 7730 deceptively simple , 3 +142470 7730 deeply satisfying 4 +142471 7731 Yes . 3 +142472 7732 Every note rings false . 1 +142473 7732 Every note 2 +142474 7732 rings false . 1 +142475 7732 rings false 1 +142476 7733 An extraordinarily silly thriller . 2 +142477 7733 An extraordinarily silly thriller 2 +142478 7733 extraordinarily silly thriller 1 +142479 7733 extraordinarily silly 2 +142480 7734 A seriously bad film with seriously warped logic by writer-director Kurt Wimmer at the screenplay level . 1 +142481 7734 A seriously bad film with seriously 0 +142482 7734 A seriously bad film 0 +142483 7734 seriously bad film 0 +142484 7734 seriously bad 0 +142485 7734 with seriously 2 +142486 7734 warped logic by writer-director Kurt Wimmer at the screenplay level . 2 +142487 7734 warped logic by writer-director Kurt Wimmer at the screenplay level 1 +142488 7734 warped logic by writer-director Kurt Wimmer 1 +142489 7734 warped logic 1 +142490 7734 warped 1 +142491 7734 by writer-director Kurt Wimmer 3 +142492 7734 writer-director Kurt Wimmer 3 +142493 7734 Kurt Wimmer 2 +142494 7734 Wimmer 2 +142495 7734 at the screenplay level 2 +142496 7734 the screenplay level 2 +142497 7734 screenplay level 2 +142498 7735 A work of extraordinary journalism , but it is also a work of deft and subtle poetry . 4 +142499 7735 A work of extraordinary journalism , but it is also a work of deft and subtle poetry 4 +142500 7735 A work of extraordinary journalism , but 3 +142501 7735 A work of extraordinary journalism , 3 +142502 7735 A work of extraordinary journalism 4 +142503 7735 work of extraordinary journalism 3 +142504 7735 of extraordinary journalism 4 +142505 7735 extraordinary journalism 4 +142506 7735 it is also a work of deft and subtle poetry 2 +142507 7735 is also a work of deft and subtle poetry 3 +142508 7735 a work of deft and subtle poetry 3 +142509 7735 of deft and subtle poetry 3 +142510 7735 deft and subtle poetry 3 +142511 7735 deft and subtle 3 +142512 7735 deft and 2 +142513 7736 Kids who are into this Thornberry stuff will probably be in wedgie heaven . 3 +142514 7736 Kids who are into this Thornberry stuff 2 +142515 7736 who are into this Thornberry stuff 2 +142516 7736 are into this Thornberry stuff 2 +142517 7736 into this Thornberry stuff 2 +142518 7736 this Thornberry stuff 2 +142519 7736 Thornberry stuff 2 +142520 7736 Thornberry 2 +142521 7736 will probably be in wedgie heaven . 1 +142522 7736 will probably be in wedgie heaven 2 +142523 7736 be in wedgie heaven 2 +142524 7736 in wedgie heaven 2 +142525 7736 wedgie heaven 2 +142526 7736 wedgie 1 +142527 7737 An ingenious and often harrowing look at damaged people and how families can offer either despair or consolation . 3 +142528 7737 An ingenious and often harrowing 3 +142529 7737 ingenious and often harrowing 3 +142530 7737 ingenious and often 4 +142531 7737 ingenious and 3 +142532 7737 look at damaged people and how families can offer either despair or consolation . 2 +142533 7737 look at damaged people and how families can offer either despair or consolation 2 +142534 7737 at damaged people and how families can offer either despair or consolation 2 +142535 7737 at damaged people and 2 +142536 7737 at damaged people 2 +142537 7737 how families can offer either despair or consolation 3 +142538 7737 families can offer either despair or consolation 2 +142539 7737 can offer either despair or consolation 2 +142540 7737 offer either despair or consolation 2 +142541 7737 either despair or consolation 2 +142542 7737 despair or consolation 2 +142543 7737 despair or 2 +142544 7738 A literary detective story is still a detective story and aficionados of the whodunit wo n't be disappointed . 3 +142545 7738 A literary detective story is still a detective story and aficionados of the whodunit wo n't be disappointed 3 +142546 7738 A literary detective story is still a detective story and 2 +142547 7738 A literary detective story is still a detective story 1 +142548 7738 A literary detective story 2 +142549 7738 literary detective story 3 +142550 7738 is still a detective story 2 +142551 7738 aficionados of the whodunit wo n't be disappointed 4 +142552 7738 aficionados of the whodunit 2 +142553 7738 of the whodunit 2 +142554 7738 the whodunit 2 +142555 7739 Cinematic poo . 0 +142556 7739 poo . 0 +142557 7739 poo 1 +142558 7740 As we have come to learn -- as many times as we have fingers to count on -- Jason is a killer who does n't know the meaning of the word ` quit . ' 2 +142559 7740 As we have come to learn 2 +142560 7740 we have come to learn 2 +142561 7740 have come to learn 2 +142562 7740 come to learn 2 +142563 7740 -- as many times as we have fingers to count on -- Jason is a killer who does n't know the meaning of the word ` quit . ' 2 +142564 7740 -- as many times as we have fingers to count on -- 2 +142565 7740 as many times as we have fingers to count on -- 2 +142566 7740 as many times as we have fingers to count on 2 +142567 7740 many times as we have fingers to count on 2 +142568 7740 as we have fingers to count on 2 +142569 7740 we have fingers to count on 2 +142570 7740 have fingers to count on 2 +142571 7740 fingers to count on 2 +142572 7740 to count on 3 +142573 7740 count on 3 +142574 7740 Jason is a killer who does n't know the meaning of the word ` quit . ' 2 +142575 7740 is a killer who does n't know the meaning of the word ` quit . ' 2 +142576 7740 is a killer who does n't know the meaning of the word ` quit . 2 +142577 7740 is a killer who does n't know the meaning of the word ` quit 2 +142578 7740 a killer who does n't know the meaning of the word ` quit 2 +142579 7740 a killer 2 +142580 7740 who does n't know the meaning of the word ` quit 2 +142581 7740 does n't know the meaning of the word ` quit 2 +142582 7740 know the meaning of the word ` quit 1 +142583 7740 the meaning of the word ` quit 1 +142584 7740 of the word ` quit 2 +142585 7740 the word ` quit 2 +142586 7740 the word ` 2 +142587 7740 quit 2 +142588 7741 Director George Hickenlooper has had some success with documentaries , but here his sense of story and his juvenile camera movements smack of a film school undergrad , and his maudlin ending might not have gotten him into film school in the first place . 1 +142589 7741 Director George Hickenlooper has had some success with documentaries , but here his sense of story and his juvenile camera movements smack of a film school undergrad , and his maudlin ending might not have gotten him into film school in the first place 0 +142590 7741 Director George Hickenlooper has had some success with documentaries , but 2 +142591 7741 Director George Hickenlooper has had some success with documentaries , 3 +142592 7741 Director George Hickenlooper has had some success with documentaries 3 +142593 7741 Director George Hickenlooper 2 +142594 7741 has had some success with documentaries 3 +142595 7741 had some success with documentaries 3 +142596 7741 some success with documentaries 3 +142597 7741 some success 3 +142598 7741 with documentaries 2 +142599 7741 here his sense of story and his juvenile camera movements smack of a film school undergrad , and his maudlin ending might not have gotten him into film school in the first place 1 +142600 7741 here his sense of story and his juvenile camera movements smack of a film school undergrad , and 1 +142601 7741 here his sense of story and his juvenile camera movements smack of a film school undergrad , 1 +142602 7741 here his sense of story and his juvenile camera movements smack of a film school undergrad 1 +142603 7741 his sense of story and his juvenile camera movements smack of a film school undergrad 1 +142604 7741 his sense of story and his juvenile camera movements 2 +142605 7741 of story and his juvenile camera movements 0 +142606 7741 story and his juvenile camera movements 1 +142607 7741 his juvenile camera movements 2 +142608 7741 juvenile camera movements 1 +142609 7741 camera movements 3 +142610 7741 smack of a film school undergrad 1 +142611 7741 of a film school undergrad 2 +142612 7741 a film school undergrad 1 +142613 7741 film school undergrad 1 +142614 7741 school undergrad 2 +142615 7741 undergrad 2 +142616 7741 his maudlin ending might not have gotten him into film school in the first place 1 +142617 7741 his maudlin ending 1 +142618 7741 maudlin ending 1 +142619 7741 might not have gotten him into film school in the first place 1 +142620 7741 have gotten him into film school in the first place 2 +142621 7741 gotten him into film school in the first place 2 +142622 7741 gotten him 2 +142623 7741 into film school in the first place 2 +142624 7741 film school in the first place 2 +142625 7741 film school 2 +142626 7742 The film is filled with humorous observations about the general absurdity of modern life as seen through the eyes outsiders , but deftly manages to avoid many of the condescending stereotypes that so often plague films dealing with the mentally ill . 3 +142627 7742 The film is filled with humorous observations about the general absurdity of modern life as seen through the eyes outsiders , but deftly manages to avoid many of the condescending stereotypes that so often plague films dealing with the mentally ill 3 +142628 7742 The film is filled with humorous observations about the general absurdity of modern life as seen through the eyes outsiders , but 3 +142629 7742 The film is filled with humorous observations about the general absurdity of modern life as seen through the eyes outsiders , 3 +142630 7742 The film is filled with humorous observations about the general absurdity of modern life as seen through the eyes outsiders 4 +142631 7742 is filled with humorous observations about the general absurdity of modern life as seen through the eyes outsiders 3 +142632 7742 filled with humorous observations about the general absurdity of modern life as seen through the eyes outsiders 3 +142633 7742 filled with humorous observations about the general absurdity of modern life 3 +142634 7742 with humorous observations about the general absurdity of modern life 3 +142635 7742 humorous observations about the general absurdity of modern life 3 +142636 7742 humorous observations 3 +142637 7742 about the general absurdity of modern life 3 +142638 7742 the general absurdity of modern life 2 +142639 7742 the general absurdity 2 +142640 7742 general absurdity 1 +142641 7742 as seen through the eyes outsiders 2 +142642 7742 seen through the eyes outsiders 2 +142643 7742 seen through the eyes 2 +142644 7742 through the eyes 2 +142645 7742 deftly manages to avoid many of the condescending stereotypes that so often plague films dealing with the mentally ill 3 +142646 7742 manages to avoid many of the condescending stereotypes that so often plague films dealing with the mentally ill 3 +142647 7742 to avoid many of the condescending stereotypes that so often plague films dealing with the mentally ill 2 +142648 7742 avoid many of the condescending stereotypes that so often plague films dealing with the mentally ill 4 +142649 7742 many of the condescending stereotypes that so often plague films dealing with the mentally ill 1 +142650 7742 of the condescending stereotypes that so often plague films dealing with the mentally ill 1 +142651 7742 the condescending stereotypes that so often plague films dealing with the mentally ill 1 +142652 7742 the condescending stereotypes 1 +142653 7742 condescending stereotypes 1 +142654 7742 that so often plague films dealing with the mentally ill 2 +142655 7742 so often plague films dealing with the mentally ill 2 +142656 7742 plague films dealing with the mentally ill 2 +142657 7742 plague 2 +142658 7742 films dealing with the mentally ill 2 +142659 7742 dealing with the mentally ill 2 +142660 7742 with the mentally ill 2 +142661 7742 the mentally ill 2 +142662 7742 mentally ill 2 +142663 7743 So putrid it is not worth the price of the match that should be used to burn every print of the film . 0 +142664 7743 putrid it is not worth the price of the match that should be used to burn every print of the film . 0 +142665 7743 putrid it is not worth the price of the match that should be used to burn every print of the film 1 +142666 7743 putrid it is not worth 1 +142667 7743 it is not worth 1 +142668 7743 is not worth 1 +142669 7743 the price of the match that should be used to burn every print of the film 1 +142670 7743 of the match that should be used to burn every print of the film 0 +142671 7743 the match that should be used to burn every print of the film 1 +142672 7743 the match 2 +142673 7743 that should be used to burn every print of the film 1 +142674 7743 should be used to burn every print of the film 1 +142675 7743 be used to burn every print of the film 1 +142676 7743 used to burn every print of the film 1 +142677 7743 to burn every print of the film 1 +142678 7743 burn every print of the film 2 +142679 7743 every print of the film 2 +142680 7743 every print 2 +142681 7743 print 2 +142682 7744 It 's as if De Palma spent an hour setting a fancy table and then served up Kraft Macaroni and Cheese . 0 +142683 7744 's as if De Palma spent an hour setting a fancy table and then served up Kraft Macaroni and Cheese . 1 +142684 7744 's as if De Palma spent an hour setting a fancy table and then served up Kraft Macaroni and Cheese 1 +142685 7744 as if De Palma spent an hour setting a fancy table and then served up Kraft Macaroni and Cheese 1 +142686 7744 if De Palma spent an hour setting a fancy table and then served up Kraft Macaroni and Cheese 1 +142687 7744 De Palma spent an hour setting a fancy table and then served up Kraft Macaroni and Cheese 2 +142688 7744 spent an hour setting a fancy table and then served up Kraft Macaroni and Cheese 1 +142689 7744 spent an hour setting a fancy table and then 2 +142690 7744 spent an hour setting a fancy table and 2 +142691 7744 spent an hour setting a fancy table 2 +142692 7744 spent an hour 2 +142693 7744 setting a fancy table 2 +142694 7744 a fancy table 2 +142695 7744 fancy table 2 +142696 7744 served up Kraft Macaroni and Cheese 2 +142697 7744 Kraft Macaroni and Cheese 2 +142698 7744 Kraft 2 +142699 7744 Macaroni and Cheese 1 +142700 7744 Macaroni and 2 +142701 7744 Macaroni 2 +142702 7745 Morvern rocks . 4 +142703 7745 rocks . 3 +142704 7746 Shanghai Ghetto should be applauded for finding a new angle on a tireless story , but you might want to think twice before booking passage . 2 +142705 7746 Shanghai Ghetto should be applauded for finding a new angle on a tireless story , but you might want to think twice before booking passage 3 +142706 7746 Shanghai Ghetto should be applauded for finding a new angle on a tireless story , but 2 +142707 7746 Shanghai Ghetto should be applauded for finding a new angle on a tireless story , 3 +142708 7746 Shanghai Ghetto should be applauded for finding a new angle on a tireless story 3 +142709 7746 should be applauded for finding a new angle on a tireless story 3 +142710 7746 be applauded for finding a new angle on a tireless story 3 +142711 7746 applauded for finding a new angle on a tireless story 4 +142712 7746 applauded 2 +142713 7746 for finding a new angle on a tireless story 2 +142714 7746 finding a new angle on a tireless story 2 +142715 7746 finding a new angle 3 +142716 7746 a new angle 2 +142717 7746 new angle 2 +142718 7746 on a tireless story 2 +142719 7746 a tireless story 3 +142720 7746 tireless story 1 +142721 7746 tireless 2 +142722 7746 you might want to think twice before booking passage 3 +142723 7746 might want to think twice before booking passage 1 +142724 7746 want to think twice before booking passage 1 +142725 7746 to think twice before booking passage 2 +142726 7746 think twice before booking passage 2 +142727 7746 think twice 2 +142728 7746 before booking passage 3 +142729 7746 booking passage 3 +142730 7746 booking 2 +142731 7746 passage 2 +142732 7747 In old-fashioned screenwriting parlance , Ms. Shreve 's novel proved too difficult a text to ` lick , ' despite the efforts of a first-rate cast . 1 +142733 7747 In old-fashioned screenwriting parlance 2 +142734 7747 old-fashioned screenwriting parlance 2 +142735 7747 screenwriting parlance 2 +142736 7747 parlance 2 +142737 7747 , Ms. Shreve 's novel proved too difficult a text to ` lick , ' despite the efforts of a first-rate cast . 1 +142738 7747 Ms. Shreve 's novel proved too difficult a text to ` lick , ' despite the efforts of a first-rate cast . 1 +142739 7747 Ms. Shreve 's novel 2 +142740 7747 Ms. Shreve 's 2 +142741 7747 proved too difficult a text to ` lick , ' despite the efforts of a first-rate cast . 1 +142742 7747 proved too difficult a text to ` lick , ' despite the efforts of a first-rate cast 1 +142743 7747 proved too difficult 1 +142744 7747 too difficult 1 +142745 7747 a text to ` lick , ' despite the efforts of a first-rate cast 1 +142746 7747 a text to ` lick , ' 2 +142747 7747 a text to ` lick , 1 +142748 7747 a text to ` lick 3 +142749 7747 a text 2 +142750 7747 to ` lick 2 +142751 7747 lick 2 +142752 7747 despite the efforts of a first-rate cast 1 +142753 7747 the efforts of a first-rate cast 3 +142754 7747 of a first-rate cast 4 +142755 7747 a first-rate cast 4 +142756 7747 first-rate cast 3 +142757 7748 I ca n't remember the last time I saw an audience laugh so much during a movie , but there 's only one problem ... it 's supposed to be a drama . 2 +142758 7748 I ca n't remember the last time I saw an audience laugh so much during a movie , but there 's only one problem ... it 's supposed to be a drama 1 +142759 7748 I ca n't remember the last time I saw an audience laugh so much during a movie , but there 's only one problem ... 3 +142760 7748 I ca n't remember the last time I saw an audience laugh so much during a movie , but there 's only one problem 3 +142761 7748 I ca n't remember the last time I saw an audience laugh so much during a movie , but 3 +142762 7748 I ca n't remember the last time I saw an audience laugh so much during a movie , 3 +142763 7748 I ca n't remember the last time I saw an audience laugh so much during a movie 4 +142764 7748 ca n't remember the last time I saw an audience laugh so much during a movie 4 +142765 7748 remember the last time I saw an audience laugh so much during a movie 4 +142766 7748 the last time I saw an audience laugh so much during a movie 4 +142767 7748 I saw an audience laugh so much during a movie 4 +142768 7748 saw an audience laugh so much during a movie 4 +142769 7748 an audience laugh so much during a movie 3 +142770 7748 laugh so much during a movie 3 +142771 7748 laugh so much 3 +142772 7748 during a movie 2 +142773 7748 there 's only one problem 2 +142774 7748 's only one problem 2 +142775 7748 only one problem 1 +142776 7748 it 's supposed to be a drama 2 +142777 7748 's supposed to be a drama 2 +142778 7748 supposed to be a drama 2 +142779 7748 to be a drama 2 +142780 7748 be a drama 2 +142781 7749 A treat for its depiction on not giving up on dreams when you 're a struggling nobody . 3 +142782 7749 treat for its depiction on not giving up on dreams when you 're a struggling nobody . 3 +142783 7749 treat for its depiction on not giving up on dreams when you 're a struggling nobody 3 +142784 7749 treat for its depiction 3 +142785 7749 for its depiction 2 +142786 7749 on not giving up on dreams when you 're a struggling nobody 2 +142787 7749 not giving up on dreams when you 're a struggling nobody 2 +142788 7749 giving up on dreams when you 're a struggling nobody 2 +142789 7749 on dreams when you 're a struggling nobody 2 +142790 7749 dreams when you 're a struggling nobody 2 +142791 7749 when you 're a struggling nobody 1 +142792 7749 you 're a struggling nobody 1 +142793 7749 're a struggling nobody 2 +142794 7749 a struggling nobody 1 +142795 7749 struggling nobody 1 +142796 7750 The obnoxious title character provides the drama that gives added clout to this doc . 3 +142797 7750 The obnoxious title character 1 +142798 7750 obnoxious title character 1 +142799 7750 provides the drama that gives added clout to this doc . 3 +142800 7750 provides the drama that gives added clout to this doc 3 +142801 7750 the drama that gives added clout to this doc 3 +142802 7750 that gives added clout to this doc 2 +142803 7750 gives added clout to this doc 3 +142804 7750 added clout to this doc 3 +142805 7750 added clout 3 +142806 7750 clout 2 +142807 7750 to this doc 2 +142808 7750 this doc 2 +142809 7751 Not only does the thoroughly formulaic film represent totally exemplify middle-of-the-road mainstream , it also represents glossy Hollywood at its laziest . 0 +142810 7751 Not only does the thoroughly formulaic film represent totally exemplify middle-of-the-road mainstream 1 +142811 7751 does the thoroughly formulaic film represent totally exemplify middle-of-the-road mainstream 2 +142812 7751 does the thoroughly formulaic film 1 +142813 7751 the thoroughly formulaic film 2 +142814 7751 thoroughly formulaic film 1 +142815 7751 formulaic film 2 +142816 7751 represent totally exemplify middle-of-the-road mainstream 3 +142817 7751 represent 2 +142818 7751 totally exemplify middle-of-the-road mainstream 2 +142819 7751 totally exemplify 3 +142820 7751 exemplify 2 +142821 7751 middle-of-the-road mainstream 2 +142822 7751 , it also represents glossy Hollywood at its laziest . 0 +142823 7751 it also represents glossy Hollywood at its laziest . 1 +142824 7751 also represents glossy Hollywood at its laziest . 1 +142825 7751 represents glossy Hollywood at its laziest . 0 +142826 7751 represents glossy Hollywood at its laziest 1 +142827 7751 represents glossy Hollywood 2 +142828 7751 glossy Hollywood 1 +142829 7751 at its laziest 1 +142830 7751 its laziest 1 +142831 7751 laziest 0 +142832 7752 If you 've got a house full of tots -- do n't worry , this will be on video long before they grow up and you can wait till then . 1 +142833 7752 If you 've got a house full of tots -- do n't worry 2 +142834 7752 you 've got a house full of tots -- do n't worry 2 +142835 7752 've got a house full of tots -- do n't worry 2 +142836 7752 got a house full of tots -- do n't worry 3 +142837 7752 a house full of tots -- do n't worry 2 +142838 7752 a house full of tots 2 +142839 7752 full of tots 2 +142840 7752 of tots 2 +142841 7752 tots 2 +142842 7752 -- do n't worry 3 +142843 7752 do n't worry 2 +142844 7752 , this will be on video long before they grow up and you can wait till then . 2 +142845 7752 this will be on video long before they grow up and you can wait till then . 1 +142846 7752 will be on video long before they grow up and you can wait till then . 1 +142847 7752 will be on video long before they grow up and you can wait till then 1 +142848 7752 be on video long before they grow up and you can wait till then 2 +142849 7752 be on video 1 +142850 7752 long before they grow up and you can wait till then 2 +142851 7752 before they grow up and you can wait till then 2 +142852 7752 they grow up and you can wait till then 1 +142853 7752 they grow up and 2 +142854 7752 you can wait till then 2 +142855 7752 can wait till then 2 +142856 7752 wait till then 2 +142857 7752 till then 2 +142858 7752 till 2 +142859 7753 This is rote drivel aimed at Mom and Dad 's wallet . 1 +142860 7753 is rote drivel aimed at Mom and Dad 's wallet . 1 +142861 7753 is rote drivel aimed at Mom and Dad 's wallet 0 +142862 7753 rote drivel aimed at Mom and Dad 's wallet 2 +142863 7753 rote drivel 1 +142864 7753 aimed at Mom and Dad 's wallet 1 +142865 7753 at Mom and Dad 's wallet 2 +142866 7753 Mom and Dad 's wallet 2 +142867 7753 Mom and 2 +142868 7753 Dad 's wallet 2 +142869 7753 Dad 's 2 +142870 7754 Bisset delivers a game performance , but she is unable to save the movie . 2 +142871 7754 Bisset delivers a game performance , but she is unable to save the movie 2 +142872 7754 Bisset delivers a game performance , but 2 +142873 7754 Bisset delivers a game performance , 4 +142874 7754 Bisset delivers a game performance 3 +142875 7754 delivers a game performance 3 +142876 7754 a game performance 3 +142877 7754 game performance 2 +142878 7754 she is unable to save the movie 0 +142879 7754 is unable to save the movie 1 +142880 7754 unable to save the movie 0 +142881 7754 to save the movie 1 +142882 7754 save the movie 2 +142883 7755 Analyze That regurgitates and waters down many of the previous film 's successes , with a few new swings thrown in . 2 +142884 7755 Analyze That regurgitates and waters down many of the previous film 's successes , with a few new swings thrown in 1 +142885 7755 That regurgitates and waters down many of the previous film 's successes , with a few new swings thrown in 1 +142886 7755 That regurgitates and waters down many of the previous film 's successes , 0 +142887 7755 That regurgitates and waters down many of the previous film 's successes 2 +142888 7755 That regurgitates and waters down many 0 +142889 7755 That regurgitates and waters 1 +142890 7755 regurgitates and waters 2 +142891 7755 regurgitates and 2 +142892 7755 regurgitates 2 +142893 7755 down many 2 +142894 7755 of the previous film 's successes 3 +142895 7755 the previous film 's successes 3 +142896 7755 with a few new swings thrown in 2 +142897 7755 a few new swings thrown in 3 +142898 7755 a few new swings 3 +142899 7755 few new swings 2 +142900 7755 new swings 3 +142901 7755 thrown in 2 +142902 7756 It depends on how well flatulence gags fit into your holiday concept . 2 +142903 7756 depends on how well flatulence gags fit into your holiday concept . 2 +142904 7756 depends on how well flatulence gags fit into your holiday concept 0 +142905 7756 on how well flatulence gags fit into your holiday concept 2 +142906 7756 how well flatulence gags fit into your holiday concept 1 +142907 7756 flatulence gags fit into your holiday concept 2 +142908 7756 flatulence gags 2 +142909 7756 fit into your holiday concept 2 +142910 7756 into your holiday concept 2 +142911 7756 your holiday concept 2 +142912 7756 holiday concept 3 +142913 7757 Not as good as The Full Monty , but a really strong second effort . 3 +142914 7757 as good as The Full Monty , but a really strong second effort . 3 +142915 7757 as good as The Full Monty , but a really strong second effort 3 +142916 7757 good as The Full Monty , but a really strong second effort 3 +142917 7757 as The Full Monty , but a really strong second effort 2 +142918 7757 The Full Monty , but a really strong second effort 3 +142919 7757 The Full Monty , but 3 +142920 7757 The Full Monty , 2 +142921 7757 a really strong second effort 3 +142922 7757 really strong second effort 4 +142923 7757 really strong 2 +142924 7757 second effort 2 +142925 7758 A penetrating glimpse into the tissue-thin ego of the stand-up comic . 2 +142926 7758 A penetrating glimpse into the tissue-thin ego of the stand-up comic 3 +142927 7758 A penetrating glimpse into the tissue-thin ego 2 +142928 7758 A penetrating glimpse 3 +142929 7758 penetrating glimpse 2 +142930 7758 into the tissue-thin ego 2 +142931 7758 the tissue-thin ego 2 +142932 7758 tissue-thin ego 2 +142933 7759 The whole mess boils down to a transparently hypocritical work that feels as though it 's trying to set the women 's liberation movement back 20 years . ' 0 +142934 7759 The whole mess 0 +142935 7759 whole mess 1 +142936 7759 boils down to a transparently hypocritical work that feels as though it 's trying to set the women 's liberation movement back 20 years . ' 0 +142937 7759 boils down to a transparently hypocritical work that feels as though it 's trying to set the women 's liberation movement back 20 years . 0 +142938 7759 boils down to a transparently hypocritical work that feels as though it 's trying to set the women 's liberation movement back 20 years 1 +142939 7759 to a transparently hypocritical work that feels as though it 's trying to set the women 's liberation movement back 20 years 1 +142940 7759 a transparently hypocritical work that feels as though it 's trying to set the women 's liberation movement back 20 years 0 +142941 7759 a transparently hypocritical work 0 +142942 7759 transparently hypocritical work 1 +142943 7759 transparently 3 +142944 7759 hypocritical work 1 +142945 7759 that feels as though it 's trying to set the women 's liberation movement back 20 years 1 +142946 7759 feels as though it 's trying to set the women 's liberation movement back 20 years 1 +142947 7759 as though it 's trying to set the women 's liberation movement back 20 years 2 +142948 7759 though it 's trying to set the women 's liberation movement back 20 years 2 +142949 7759 it 's trying to set the women 's liberation movement back 20 years 1 +142950 7759 's trying to set the women 's liberation movement back 20 years 1 +142951 7759 trying to set the women 's liberation movement back 20 years 1 +142952 7759 to set the women 's liberation movement back 20 years 0 +142953 7759 set the women 's liberation movement back 20 years 1 +142954 7759 set the women 's liberation movement 2 +142955 7759 the women 's liberation movement 2 +142956 7759 liberation movement 2 +142957 7759 back 20 years 2 +142958 7760 If you like quirky , odd movies and\/or the ironic , here 's a fun one . 4 +142959 7760 If you like quirky , odd movies and\/or the ironic 3 +142960 7760 you like quirky , odd movies and\/or the ironic 2 +142961 7760 like quirky , odd movies and\/or the ironic 3 +142962 7760 quirky , odd movies and\/or the ironic 3 +142963 7760 quirky , odd movies 2 +142964 7760 , odd movies 2 +142965 7760 odd movies 1 +142966 7760 and\/or the ironic 2 +142967 7760 the ironic 2 +142968 7760 , here 's a fun one . 3 +142969 7760 here 's a fun one . 3 +142970 7760 's a fun one . 3 +142971 7760 's a fun one 2 +142972 7760 a fun one 3 +142973 7760 fun one 3 +142974 7761 Laced with liberal doses of dark humor , gorgeous exterior photography , and a stable-full of solid performances , No Such Thing is a fascinating little tale . 4 +142975 7761 Laced with liberal doses of dark humor , gorgeous exterior photography , and a stable-full of solid performances 4 +142976 7761 Laced 1 +142977 7761 with liberal doses of dark humor , gorgeous exterior photography , and a stable-full of solid performances 4 +142978 7761 liberal doses of dark humor , gorgeous exterior photography , and a stable-full of solid performances 3 +142979 7761 liberal doses 1 +142980 7761 of dark humor , gorgeous exterior photography , and a stable-full of solid performances 3 +142981 7761 dark humor , gorgeous exterior photography , and a stable-full of solid performances 4 +142982 7761 dark humor , gorgeous exterior photography , and 3 +142983 7761 dark humor , gorgeous exterior photography , 4 +142984 7761 dark humor , gorgeous exterior photography 3 +142985 7761 dark humor , 2 +142986 7761 gorgeous exterior photography 3 +142987 7761 exterior photography 2 +142988 7761 a stable-full of solid performances 4 +142989 7761 a stable-full 2 +142990 7761 stable-full 2 +142991 7761 of solid performances 3 +142992 7761 , No Such Thing is a fascinating little tale . 3 +142993 7761 No Such Thing is a fascinating little tale . 2 +142994 7761 is a fascinating little tale . 3 +142995 7761 is a fascinating little tale 3 +142996 7761 a fascinating little tale 3 +142997 7761 fascinating little tale 3 +142998 7761 little tale 2 +142999 7762 A captivating and intimate study about dying and loving ... 4 +143000 7762 A captivating and intimate study about dying and loving 4 +143001 7762 A captivating and intimate study 3 +143002 7762 captivating and intimate study 3 +143003 7762 captivating and intimate 4 +143004 7762 captivating and 3 +143005 7762 about dying and loving 2 +143006 7762 dying and loving 3 +143007 7763 We get light showers of emotion a couple of times , but then -- strangely -- these wane to an inconsistent and ultimately unsatisfying drizzle . 2 +143008 7763 We get light showers of emotion a couple of times , but then -- strangely -- these wane to an inconsistent and ultimately unsatisfying drizzle 0 +143009 7763 We get light showers of emotion a couple of times , but 2 +143010 7763 We get light showers of emotion a couple of times , 2 +143011 7763 We get light showers of emotion a couple of times 2 +143012 7763 get light showers of emotion a couple of times 2 +143013 7763 get light showers of emotion 2 +143014 7763 light showers of emotion 3 +143015 7763 light showers 2 +143016 7763 showers 2 +143017 7763 then -- strangely -- these wane to an inconsistent and ultimately unsatisfying drizzle 1 +143018 7763 -- strangely -- these wane to an inconsistent and ultimately unsatisfying drizzle 2 +143019 7763 -- strangely -- 2 +143020 7763 strangely -- 2 +143021 7763 these wane to an inconsistent and ultimately unsatisfying drizzle 0 +143022 7763 wane to an inconsistent and ultimately unsatisfying drizzle 0 +143023 7763 wane 1 +143024 7763 to an inconsistent and ultimately unsatisfying drizzle 0 +143025 7763 an inconsistent and ultimately unsatisfying drizzle 1 +143026 7763 inconsistent and ultimately unsatisfying drizzle 0 +143027 7763 inconsistent and ultimately unsatisfying 0 +143028 7763 inconsistent and 1 +143029 7763 ultimately unsatisfying 0 +143030 7763 drizzle 2 +143031 7764 Enjoyably dumb , sweet , and intermittently hilarious -- if you 've a taste for the quirky , steal a glimpse . 3 +143032 7764 Enjoyably dumb , sweet , and intermittently hilarious -- if you 've a taste for the quirky , steal a glimpse 4 +143033 7764 Enjoyably dumb , sweet , and intermittently hilarious -- 3 +143034 7764 Enjoyably dumb , sweet , and intermittently hilarious 3 +143035 7764 dumb , sweet , and intermittently hilarious 3 +143036 7764 , sweet , and intermittently hilarious 3 +143037 7764 sweet , and intermittently hilarious 3 +143038 7764 , and intermittently hilarious 3 +143039 7764 and intermittently hilarious 4 +143040 7764 intermittently hilarious 3 +143041 7764 if you 've a taste for the quirky , steal a glimpse 3 +143042 7764 if you 've a taste for the quirky 2 +143043 7764 you 've a taste for the quirky 3 +143044 7764 've a taste for the quirky 3 +143045 7764 a taste for the quirky 3 +143046 7764 for the quirky 3 +143047 7764 the quirky 3 +143048 7764 , steal a glimpse 2 +143049 7764 steal a glimpse 2 +143050 7765 Schneidermeister ... Makin ' a fool of himself ... Losin ' his fan base ... 1 +143051 7765 Schneidermeister ... Makin ' a fool of himself ... Losin ' his fan base 1 +143052 7765 Schneidermeister ... Makin ' a fool of himself ... 1 +143053 7765 Schneidermeister ... Makin ' a fool of himself 1 +143054 7765 Schneidermeister ... 2 +143055 7765 Schneidermeister 2 +143056 7765 Makin ' a fool of himself 1 +143057 7765 Makin ' 2 +143058 7765 Makin 2 +143059 7765 a fool of himself 2 +143060 7765 a fool 2 +143061 7765 of himself 2 +143062 7765 Losin ' his fan base 1 +143063 7765 Losin ' 1 +143064 7765 Losin 2 +143065 7765 his fan base 2 +143066 7765 fan base 2 +143067 7766 Nicks and Steinberg match their own creations for pure venality -- that 's giving it the old college try . 1 +143068 7766 Nicks and Steinberg 2 +143069 7766 Nicks and 2 +143070 7766 Steinberg 2 +143071 7766 match their own creations for pure venality -- that 's giving it the old college try . 2 +143072 7766 match their own creations for pure venality -- that 's giving it the old college try 1 +143073 7766 match their own creations 2 +143074 7766 their own creations 2 +143075 7766 own creations 2 +143076 7766 for pure venality -- that 's giving it the old college try 2 +143077 7766 pure venality -- that 's giving it the old college try 2 +143078 7766 pure venality -- 1 +143079 7766 pure venality 1 +143080 7766 venality 2 +143081 7766 that 's giving it the old college try 2 +143082 7766 's giving it the old college try 2 +143083 7766 giving it the old college try 2 +143084 7766 the old college try 2 +143085 7766 old college try 1 +143086 7766 college try 2 +143087 7767 It 's an effort to watch this movie , but it eventually pays off and is effective if you stick with it . 3 +143088 7767 It 's an effort to watch this movie , but it eventually pays off and is effective if you stick with it 3 +143089 7767 It 's an effort to watch this movie , but 3 +143090 7767 It 's an effort to watch this movie , 1 +143091 7767 It 's an effort to watch this movie 1 +143092 7767 's an effort to watch this movie 2 +143093 7767 an effort to watch this movie 2 +143094 7767 effort to watch this movie 1 +143095 7767 to watch this movie 2 +143096 7767 it eventually pays off and is effective if you stick with it 3 +143097 7767 eventually pays off and is effective if you stick with it 3 +143098 7767 pays off and is effective if you stick with it 3 +143099 7767 pays off and 3 +143100 7767 is effective if you stick with it 3 +143101 7767 effective if you stick with it 3 +143102 7767 if you stick with it 2 +143103 7767 you stick with it 2 +143104 7767 stick with it 2 +143105 7768 Unfortunately , Kapur modernizes A.E.W. Mason 's story to suit the sensibilities of a young American , a decision that plucks `` The Four Feathers '' bare . 0 +143106 7768 , Kapur modernizes A.E.W. Mason 's story to suit the sensibilities of a young American , a decision that plucks `` The Four Feathers '' bare . 2 +143107 7768 Kapur modernizes A.E.W. Mason 's story to suit the sensibilities of a young American , a decision that plucks `` The Four Feathers '' bare . 1 +143108 7768 modernizes A.E.W. Mason 's story to suit the sensibilities of a young American , a decision that plucks `` The Four Feathers '' bare . 3 +143109 7768 modernizes A.E.W. Mason 's story to suit the sensibilities of a young American , a decision that plucks `` The Four Feathers '' bare 1 +143110 7768 modernizes 2 +143111 7768 A.E.W. Mason 's story to suit the sensibilities of a young American , a decision that plucks `` The Four Feathers '' bare 1 +143112 7768 A.E.W. Mason 's story to suit the sensibilities of a young American , a decision that plucks `` The Four Feathers '' 2 +143113 7768 A.E.W. Mason 's 2 +143114 7768 A.E.W. 2 +143115 7768 Mason 's 2 +143116 7768 Mason 2 +143117 7768 story to suit the sensibilities of a young American , a decision that plucks `` The Four Feathers '' 3 +143118 7768 to suit the sensibilities of a young American , a decision that plucks `` The Four Feathers '' 2 +143119 7768 suit the sensibilities of a young American , a decision that plucks `` The Four Feathers '' 2 +143120 7768 the sensibilities of a young American , a decision that plucks `` The Four Feathers '' 2 +143121 7768 of a young American , a decision that plucks `` The Four Feathers '' 2 +143122 7768 a young American , a decision that plucks `` The Four Feathers '' 2 +143123 7768 a young American , 3 +143124 7768 a young American 2 +143125 7768 young American 3 +143126 7768 a decision that plucks `` The Four Feathers '' 2 +143127 7768 a decision 2 +143128 7768 that plucks `` The Four Feathers '' 2 +143129 7768 plucks `` The Four Feathers '' 2 +143130 7768 plucks 3 +143131 7768 `` The Four Feathers '' 2 +143132 7768 The Four Feathers '' 2 +143133 7769 Who , exactly , is fighting whom here ? 1 +143134 7769 Who , exactly , is fighting whom here 1 +143135 7769 , exactly , is fighting whom here 2 +143136 7769 exactly , is fighting whom here 2 +143137 7769 , is fighting whom here 2 +143138 7769 is fighting whom here 2 +143139 7769 fighting whom here 2 +143140 7769 fighting whom 2 +143141 7770 A melancholy , emotional film . 2 +143142 7770 A melancholy , emotional film 3 +143143 7770 A melancholy , 2 +143144 7770 A melancholy 3 +143145 7770 emotional film 4 +143146 7771 This ready-made midnight movie probably wo n't stand the cold light of day , but under the right conditions , it 's goofy -LRB- if not entirely wholesome -RRB- fun . 3 +143147 7771 This ready-made midnight movie probably wo n't stand the cold light of day , but under the right conditions , it 's goofy -LRB- if not entirely wholesome -RRB- fun 3 +143148 7771 This ready-made midnight movie probably wo n't stand the cold light of day , but 1 +143149 7771 This ready-made midnight movie probably wo n't stand the cold light of day , 2 +143150 7771 This ready-made midnight movie probably wo n't stand the cold light of day 1 +143151 7771 This ready-made midnight movie 2 +143152 7771 ready-made midnight movie 3 +143153 7771 ready-made 2 +143154 7771 midnight movie 2 +143155 7771 probably wo n't stand the cold light of day 1 +143156 7771 wo n't stand the cold light of day 0 +143157 7771 stand the cold light of day 2 +143158 7771 the cold light of day 2 +143159 7771 the cold light 1 +143160 7771 cold light 1 +143161 7771 of day 2 +143162 7771 under the right conditions , it 's goofy -LRB- if not entirely wholesome -RRB- fun 3 +143163 7771 under the right conditions 2 +143164 7771 the right conditions 3 +143165 7771 right conditions 3 +143166 7771 , it 's goofy -LRB- if not entirely wholesome -RRB- fun 3 +143167 7771 it 's goofy -LRB- if not entirely wholesome -RRB- fun 3 +143168 7771 's goofy -LRB- if not entirely wholesome -RRB- fun 2 +143169 7771 goofy -LRB- if not entirely wholesome -RRB- fun 3 +143170 7771 goofy -LRB- if not entirely wholesome -RRB- 2 +143171 7771 -LRB- if not entirely wholesome -RRB- 2 +143172 7771 if not entirely wholesome -RRB- 2 +143173 7771 entirely wholesome -RRB- 3 +143174 7771 entirely wholesome 4 +143175 7772 Rarely has a film 's title served such dire warning . 0 +143176 7772 has a film 's title served such dire warning . 1 +143177 7772 has a film 's title served such dire warning 1 +143178 7772 a film 's title served such dire warning 1 +143179 7772 a film 's title 2 +143180 7772 a film 's 2 +143181 7772 served such dire warning 2 +143182 7772 such dire warning 2 +143183 7772 dire warning 2 +143184 7772 dire 2 +143185 7773 A bittersweet film , simple in form but rich with human events . 3 +143186 7773 A bittersweet film , simple in form but rich with human events 4 +143187 7773 A bittersweet film , 3 +143188 7773 A bittersweet film 2 +143189 7773 bittersweet film 3 +143190 7773 simple in form but rich with human events 4 +143191 7773 simple in form but 2 +143192 7773 simple in form 2 +143193 7773 rich with human events 3 +143194 7773 with human events 2 +143195 7773 human events 2 +143196 7774 A delightful stimulus for the optic nerves , so much that it 's forgivable that the plot feels like every other tale of a totalitarian tomorrow . 3 +143197 7774 A delightful stimulus for the optic nerves 4 +143198 7774 A delightful stimulus 3 +143199 7774 delightful stimulus 3 +143200 7774 stimulus 2 +143201 7774 for the optic nerves 2 +143202 7774 the optic nerves 2 +143203 7774 optic nerves 2 +143204 7774 optic 2 +143205 7774 , so much that it 's forgivable that the plot feels like every other tale of a totalitarian tomorrow . 2 +143206 7774 so much that it 's forgivable that the plot feels like every other tale of a totalitarian tomorrow . 2 +143207 7774 so much that it 's forgivable that the plot feels 2 +143208 7774 much that it 's forgivable that the plot feels 2 +143209 7774 that it 's forgivable that the plot feels 2 +143210 7774 it 's forgivable that the plot feels 2 +143211 7774 's forgivable that the plot feels 2 +143212 7774 's forgivable 2 +143213 7774 forgivable 2 +143214 7774 that the plot feels 2 +143215 7774 the plot feels 2 +143216 7774 like every other tale of a totalitarian tomorrow . 2 +143217 7774 like every other tale of a totalitarian tomorrow 1 +143218 7774 every other tale of a totalitarian tomorrow 2 +143219 7774 every other tale 2 +143220 7774 other tale 2 +143221 7774 of a totalitarian tomorrow 2 +143222 7774 a totalitarian tomorrow 2 +143223 7774 totalitarian tomorrow 2 +143224 7775 Is n't it a bit early in his career for director Barry Sonnenfeld to do a homage to himself ? 1 +143225 7775 Is n't it a bit early in his career for director Barry Sonnenfeld to do a homage to himself 2 +143226 7775 Is n't it a bit early in his career for director Barry Sonnenfeld 2 +143227 7775 a bit early in his career for director Barry Sonnenfeld 2 +143228 7775 a bit early 2 +143229 7775 in his career for director Barry Sonnenfeld 2 +143230 7775 his career for director Barry Sonnenfeld 2 +143231 7775 for director Barry Sonnenfeld 2 +143232 7775 director Barry Sonnenfeld 2 +143233 7775 to do a homage to himself 2 +143234 7775 do a homage to himself 2 +143235 7775 do a homage 3 +143236 7775 a homage 3 +143237 7775 to himself 2 +143238 7776 A breathtaking adventure for all ages , Spirit tells its poignant and uplifting story in a stunning fusion of music and images . 4 +143239 7776 A breathtaking adventure for all ages , Spirit 4 +143240 7776 A breathtaking adventure 4 +143241 7776 breathtaking adventure 4 +143242 7776 for all ages , Spirit 2 +143243 7776 all ages , Spirit 2 +143244 7776 all ages , 2 +143245 7776 tells its poignant and uplifting story in a stunning fusion of music and images . 3 +143246 7776 tells its poignant and uplifting story in a stunning fusion of music and images 3 +143247 7776 its poignant and uplifting story in a stunning fusion of music and images 3 +143248 7776 its poignant and uplifting story 4 +143249 7776 poignant and uplifting story 4 +143250 7776 poignant and uplifting 3 +143251 7776 in a stunning fusion of music and images 3 +143252 7776 a stunning fusion of music and images 4 +143253 7776 a stunning fusion 2 +143254 7776 stunning fusion 3 +143255 7776 fusion 2 +143256 7776 of music and images 2 +143257 7776 music and images 2 +143258 7777 More concerned with overall feelings , broader ideas , and open-ended questions than concrete story and definitive answers , Soderbergh 's Solaris is a gorgeous and deceptively minimalist cinematic tone poem . 4 +143259 7777 More concerned with overall feelings , broader ideas , and open-ended questions than concrete story and definitive answers 1 +143260 7777 concerned with overall feelings , broader ideas , and open-ended questions than concrete story and definitive answers 2 +143261 7777 with overall feelings , broader ideas , and open-ended questions than concrete story and definitive answers 3 +143262 7777 overall feelings , broader ideas , and open-ended questions than concrete story and definitive answers 2 +143263 7777 overall feelings , broader ideas , and 2 +143264 7777 overall feelings , broader ideas , 3 +143265 7777 overall feelings , broader ideas 3 +143266 7777 overall feelings , 2 +143267 7777 overall feelings 2 +143268 7777 broader ideas 2 +143269 7777 open-ended questions than concrete story and definitive answers 2 +143270 7777 open-ended questions 3 +143271 7777 than concrete story and definitive answers 2 +143272 7777 concrete story and definitive answers 3 +143273 7777 concrete story and 2 +143274 7777 concrete story 3 +143275 7777 concrete 2 +143276 7777 definitive answers 2 +143277 7777 , Soderbergh 's Solaris is a gorgeous and deceptively minimalist cinematic tone poem . 4 +143278 7777 Soderbergh 's Solaris is a gorgeous and deceptively minimalist cinematic tone poem . 3 +143279 7777 Soderbergh 's Solaris 2 +143280 7777 is a gorgeous and deceptively minimalist cinematic tone poem . 3 +143281 7777 is a gorgeous and deceptively minimalist cinematic tone poem 4 +143282 7777 a gorgeous and deceptively minimalist cinematic tone poem 4 +143283 7777 gorgeous and deceptively minimalist cinematic tone poem 3 +143284 7777 gorgeous and deceptively minimalist 3 +143285 7777 deceptively minimalist 2 +143286 7777 cinematic tone poem 3 +143287 7778 Feels like pieces a bunch of other , better movies slapped together . 1 +143288 7778 like pieces a bunch of other , better movies slapped together . 1 +143289 7778 like pieces 2 +143290 7778 a bunch of other , better movies slapped together . 1 +143291 7778 a bunch of other , better movies 2 +143292 7778 of other , better movies 1 +143293 7778 other , better movies 1 +143294 7778 , better movies 2 +143295 7778 better movies 2 +143296 7778 slapped together . 1 +143297 7778 slapped together 1 +143298 7778 slapped 2 +143299 7779 Maybe you 'll be lucky , and there 'll be a power outage during your screening so you can get your money back . 0 +143300 7779 Maybe you 'll be lucky , and there 'll be a power outage during your screening so you can get your money back 1 +143301 7779 Maybe you 'll be lucky , and 2 +143302 7779 Maybe you 'll be lucky , 2 +143303 7779 Maybe you 'll be lucky 2 +143304 7779 you 'll be lucky 2 +143305 7779 'll be lucky 2 +143306 7779 be lucky 2 +143307 7779 there 'll be a power outage during your screening so you can get your money back 0 +143308 7779 'll be a power outage during your screening so you can get your money back 0 +143309 7779 be a power outage during your screening so you can get your money back 0 +143310 7779 be a power outage during your screening 2 +143311 7779 be a power outage 2 +143312 7779 a power outage 2 +143313 7779 power outage 2 +143314 7779 outage 2 +143315 7779 during your screening 2 +143316 7779 your screening 2 +143317 7779 so you can get your money back 1 +143318 7779 you can get your money back 2 +143319 7779 can get your money back 0 +143320 7779 get your money back 1 +143321 7779 get your money 2 +143322 7780 Jones helps breathe some life into the insubstantial plot , but even he is overwhelmed by predictability . 2 +143323 7780 Jones helps breathe some life into the insubstantial plot , but even he is overwhelmed by predictability 1 +143324 7780 Jones helps breathe some life into the insubstantial plot , but 3 +143325 7780 Jones helps breathe some life into the insubstantial plot , 3 +143326 7780 Jones helps breathe some life into the insubstantial plot 3 +143327 7780 helps breathe some life into the insubstantial plot 2 +143328 7780 breathe some life into the insubstantial plot 2 +143329 7780 breathe some life 2 +143330 7780 some life 2 +143331 7780 into the insubstantial plot 2 +143332 7780 the insubstantial plot 1 +143333 7780 insubstantial plot 1 +143334 7780 insubstantial 1 +143335 7780 even he is overwhelmed by predictability 1 +143336 7780 he is overwhelmed by predictability 0 +143337 7780 is overwhelmed by predictability 1 +143338 7780 overwhelmed by predictability 1 +143339 7780 by predictability 2 +143340 7781 The spaniel-eyed Jean Reno infuses Hubert with a mixture of deadpan cool , wry humor and just the measure of tenderness required to give this comic slugfest some heart . 3 +143341 7781 The spaniel-eyed Jean Reno 2 +143342 7781 spaniel-eyed Jean Reno 2 +143343 7781 spaniel-eyed 2 +143344 7781 infuses Hubert with a mixture of deadpan cool , wry humor and just the measure of tenderness required to give this comic slugfest some heart . 3 +143345 7781 infuses Hubert with a mixture of deadpan cool , wry humor and just the measure of tenderness required to give this comic slugfest some heart 4 +143346 7781 Hubert with a mixture of deadpan cool , wry humor and just the measure of tenderness required to give this comic slugfest some heart 4 +143347 7781 Hubert with a mixture of deadpan cool , wry humor and just the measure 3 +143348 7781 Hubert 2 +143349 7781 with a mixture of deadpan cool , wry humor and just the measure 3 +143350 7781 a mixture of deadpan cool , wry humor and just the measure 4 +143351 7781 a mixture 2 +143352 7781 of deadpan cool , wry humor and just the measure 3 +143353 7781 deadpan cool , wry humor and just the measure 4 +143354 7781 deadpan cool , wry humor and 3 +143355 7781 deadpan cool , wry humor 3 +143356 7781 deadpan cool , 2 +143357 7781 deadpan cool 2 +143358 7781 just the measure 2 +143359 7781 the measure 2 +143360 7781 of tenderness required to give this comic slugfest some heart 3 +143361 7781 tenderness required to give this comic slugfest some heart 2 +143362 7781 required to give this comic slugfest some heart 1 +143363 7781 to give this comic slugfest some heart 2 +143364 7781 give this comic slugfest some heart 2 +143365 7781 give this comic slugfest 2 +143366 7781 this comic slugfest 3 +143367 7781 comic slugfest 3 +143368 7781 slugfest 2 +143369 7781 some heart 2 +143370 7782 Imagine O. Henry 's The Gift of the Magi relocated to the scuzzy underbelly of NYC 's drug scene . 0 +143371 7782 Imagine O. Henry 2 +143372 7782 O. Henry 2 +143373 7782 O. 2 +143374 7782 's The Gift of the Magi relocated to the scuzzy underbelly of NYC 's drug scene . 1 +143375 7782 's The Gift of the Magi relocated to the scuzzy underbelly of NYC 's drug scene 1 +143376 7782 The Gift of the Magi relocated to the scuzzy underbelly of NYC 's drug scene 2 +143377 7782 of the Magi relocated to the scuzzy underbelly of NYC 's drug scene 2 +143378 7782 the Magi relocated to the scuzzy underbelly of NYC 's drug scene 2 +143379 7782 the Magi 2 +143380 7782 Magi 2 +143381 7782 relocated to the scuzzy underbelly of NYC 's drug scene 2 +143382 7782 relocated 2 +143383 7782 to the scuzzy underbelly of NYC 's drug scene 1 +143384 7782 the scuzzy underbelly of NYC 's drug scene 2 +143385 7782 the scuzzy underbelly 1 +143386 7782 scuzzy underbelly 1 +143387 7782 scuzzy 0 +143388 7782 of NYC 's drug scene 2 +143389 7782 NYC 's drug scene 2 +143390 7782 NYC 's 2 +143391 7782 drug scene 2 +143392 7783 Ash Wednesday is not Edward Burns ' best film , but it is a good and ambitious film . 3 +143393 7783 Ash Wednesday is not Edward Burns ' best film , but it is a good and ambitious film 3 +143394 7783 Ash Wednesday is not Edward Burns ' best film , but 2 +143395 7783 Ash Wednesday is not Edward Burns ' best film , 1 +143396 7783 Ash Wednesday is not Edward Burns ' best film 1 +143397 7783 is not Edward Burns ' best film 0 +143398 7783 Edward Burns ' best film 4 +143399 7783 it is a good and ambitious film 3 +143400 7783 is a good and ambitious film 4 +143401 7783 a good and ambitious film 3 +143402 7783 good and ambitious film 4 +143403 7783 good and ambitious 3 +143404 7784 It 's a feel-bad ending for a depressing story that throws a bunch of hot-button items in the viewer 's face and asks to be seen as hip , winking social commentary . 0 +143405 7784 's a feel-bad ending for a depressing story that throws a bunch of hot-button items in the viewer 's face and asks to be seen as hip , winking social commentary . 1 +143406 7784 's a feel-bad ending for a depressing story that throws a bunch of hot-button items in the viewer 's face and asks to be seen as hip , winking social commentary 1 +143407 7784 a feel-bad ending for a depressing story that throws a bunch of hot-button items in the viewer 's face and asks to be seen as hip , winking social commentary 1 +143408 7784 a feel-bad ending 1 +143409 7784 feel-bad ending 1 +143410 7784 feel-bad 1 +143411 7784 for a depressing story that throws a bunch of hot-button items in the viewer 's face and asks to be seen as hip , winking social commentary 1 +143412 7784 a depressing story that throws a bunch of hot-button items in the viewer 's face and asks to be seen as hip , winking social commentary 1 +143413 7784 a depressing story 1 +143414 7784 depressing story 1 +143415 7784 that throws a bunch of hot-button items in the viewer 's face and asks to be seen as hip , winking social commentary 3 +143416 7784 throws a bunch of hot-button items in the viewer 's face and asks to be seen as hip , winking social commentary 1 +143417 7784 throws a bunch of hot-button items in the viewer 's face and 2 +143418 7784 throws a bunch of hot-button items in the viewer 's face 2 +143419 7784 throws a bunch of hot-button items 2 +143420 7784 a bunch of hot-button items 2 +143421 7784 of hot-button items 2 +143422 7784 hot-button items 3 +143423 7784 items 2 +143424 7784 in the viewer 's face 2 +143425 7784 the viewer 's face 2 +143426 7784 asks to be seen as hip , winking social commentary 2 +143427 7784 to be seen as hip , winking social commentary 3 +143428 7784 be seen as hip , winking social commentary 3 +143429 7784 seen as hip , winking social commentary 3 +143430 7784 seen as hip , 3 +143431 7784 seen as hip 2 +143432 7784 as hip 2 +143433 7784 winking social commentary 3 +143434 7784 winking 2 +143435 7785 Lan Yu seems altogether too slight to be called any kind of masterpiece . 1 +143436 7785 seems altogether too slight to be called any kind of masterpiece . 1 +143437 7785 seems altogether too slight to be called any kind of masterpiece 0 +143438 7785 altogether too slight to be called any kind of masterpiece 1 +143439 7785 too slight to be called any kind of masterpiece 1 +143440 7785 slight to be called any kind of masterpiece 1 +143441 7785 to be called any kind of masterpiece 2 +143442 7785 be called any kind of masterpiece 2 +143443 7785 called any kind of masterpiece 2 +143444 7785 any kind of masterpiece 2 +143445 7785 of masterpiece 3 +143446 7786 Woody , what happened ? 1 +143447 7786 , what happened ? 2 +143448 7786 what happened ? 2 +143449 7786 what happened 2 +143450 7787 Like its New England characters , most of whom wander about in thick clouds of denial , the movie eventually gets around to its real emotional business , striking deep chords of sadness . 3 +143451 7787 Like its New England characters , most of whom wander about in thick clouds of denial 2 +143452 7787 its New England characters , most of whom wander about in thick clouds of denial 1 +143453 7787 its New England characters , 2 +143454 7787 its New England characters 2 +143455 7787 New England characters 2 +143456 7787 England characters 2 +143457 7787 most of whom wander about in thick clouds of denial 1 +143458 7787 most of whom 2 +143459 7787 of whom 2 +143460 7787 wander about in thick clouds of denial 1 +143461 7787 about in thick clouds of denial 1 +143462 7787 in thick clouds of denial 1 +143463 7787 thick clouds of denial 1 +143464 7787 thick clouds 2 +143465 7787 clouds 2 +143466 7787 of denial 1 +143467 7787 , the movie eventually gets around to its real emotional business , striking deep chords of sadness . 2 +143468 7787 the movie eventually gets around to its real emotional business , striking deep chords of sadness . 3 +143469 7787 eventually gets around to its real emotional business , striking deep chords of sadness . 3 +143470 7787 eventually gets around to its real emotional business , striking deep chords of sadness 3 +143471 7787 gets around to its real emotional business , striking deep chords of sadness 3 +143472 7787 gets around to its real emotional business , 3 +143473 7787 gets around to its real emotional business 3 +143474 7787 gets around 2 +143475 7787 to its real emotional business 2 +143476 7787 its real emotional business 4 +143477 7787 real emotional business 2 +143478 7787 emotional business 2 +143479 7787 striking deep chords of sadness 3 +143480 7787 deep chords of sadness 2 +143481 7787 deep chords 2 +143482 7787 chords 2 +143483 7788 A film which presses familiar Herzog tropes into the service of a limpid and conventional historical fiction , when really what we demand of the director is to be mesmerised . 1 +143484 7788 A film which presses familiar Herzog tropes into the service of a limpid and conventional historical fiction , when really what we demand of the director 1 +143485 7788 which presses familiar Herzog tropes into the service of a limpid and conventional historical fiction , when really what we demand of the director 1 +143486 7788 presses familiar Herzog tropes into the service of a limpid and conventional historical fiction , when really what we demand of the director 2 +143487 7788 presses familiar Herzog tropes into the service of a limpid and conventional historical fiction , 2 +143488 7788 presses familiar Herzog tropes into the service of a limpid and conventional historical fiction 2 +143489 7788 presses familiar Herzog tropes 2 +143490 7788 presses 2 +143491 7788 familiar Herzog tropes 2 +143492 7788 familiar Herzog 2 +143493 7788 into the service of a limpid and conventional historical fiction 2 +143494 7788 the service of a limpid and conventional historical fiction 0 +143495 7788 of a limpid and conventional historical fiction 2 +143496 7788 a limpid and conventional historical fiction 2 +143497 7788 limpid and conventional historical fiction 1 +143498 7788 limpid and conventional 2 +143499 7788 limpid and 1 +143500 7788 limpid 2 +143501 7788 historical fiction 2 +143502 7788 when really what we demand of the director 2 +143503 7788 really what we demand of the director 3 +143504 7788 what we demand of the director 2 +143505 7788 we demand of the director 2 +143506 7788 demand of the director 2 +143507 7788 of the director 2 +143508 7788 is to be mesmerised . 3 +143509 7788 is to be mesmerised 3 +143510 7788 to be mesmerised 3 +143511 7788 be mesmerised 4 +143512 7788 mesmerised 4 +143513 7789 It is a likable story , told with competence . 3 +143514 7789 is a likable story , told with competence . 3 +143515 7789 is a likable story , told with competence 3 +143516 7789 a likable story , told with competence 4 +143517 7789 a likable story , 3 +143518 7789 a likable story 3 +143519 7789 likable story 3 +143520 7789 told with competence 3 +143521 7789 with competence 2 +143522 7790 If The Tuxedo actually were a suit , it would fit Chan like a $ 99 bargain-basement special . 1 +143523 7790 If The Tuxedo actually were a suit 2 +143524 7790 The Tuxedo actually were a suit 2 +143525 7790 actually were a suit 2 +143526 7790 were a suit 2 +143527 7790 a suit 2 +143528 7790 , it would fit Chan like a $ 99 bargain-basement special . 1 +143529 7790 it would fit Chan like a $ 99 bargain-basement special . 1 +143530 7790 would fit Chan like a $ 99 bargain-basement special . 2 +143531 7790 would fit Chan like a $ 99 bargain-basement special 1 +143532 7790 fit Chan like a $ 99 bargain-basement special 1 +143533 7790 Chan like a $ 99 bargain-basement special 1 +143534 7790 like a $ 99 bargain-basement special 2 +143535 7790 a $ 99 bargain-basement special 2 +143536 7790 $ 99 bargain-basement special 1 +143537 7790 $ 99 2 +143538 7790 99 2 +143539 7790 bargain-basement special 1 +143540 7791 The film is grossly contradictory in conveying its social message , if indeed there is one . 1 +143541 7791 is grossly contradictory in conveying its social message , if indeed there is one . 1 +143542 7791 is grossly contradictory in conveying its social message , if indeed there is one 0 +143543 7791 is grossly contradictory in conveying its social message , 1 +143544 7791 is grossly contradictory in conveying its social message 1 +143545 7791 is grossly contradictory 1 +143546 7791 grossly contradictory 1 +143547 7791 in conveying its social message 3 +143548 7791 conveying its social message 2 +143549 7791 its social message 2 +143550 7791 social message 2 +143551 7791 if indeed there is one 2 +143552 7791 indeed there is one 2 +143553 7791 there is one 2 +143554 7792 One long , numbing action sequence made up mostly of routine stuff Yuen has given us before . 1 +143555 7792 , numbing action sequence made up mostly of routine stuff Yuen has given us before . 1 +143556 7792 numbing action sequence made up mostly of routine stuff Yuen has given us before . 1 +143557 7792 numbing action sequence made up mostly of routine stuff Yuen 2 +143558 7792 numbing action sequence 2 +143559 7792 made up mostly of routine stuff Yuen 2 +143560 7792 made up mostly 2 +143561 7792 made up 2 +143562 7792 of routine stuff Yuen 1 +143563 7792 routine stuff Yuen 1 +143564 7792 stuff Yuen 2 +143565 7792 Yuen 2 +143566 7792 has given us before . 2 +143567 7792 has given us before 2 +143568 7792 given us before 2 +143569 7792 us before 2 +143570 7793 Oliveira seems to pursue silent film representation with every mournful composition . 2 +143571 7793 Oliveira 2 +143572 7793 seems to pursue silent film representation with every mournful composition . 2 +143573 7793 seems to pursue silent film representation with every mournful composition 2 +143574 7793 to pursue silent film representation with every mournful composition 2 +143575 7793 pursue silent film representation with every mournful composition 2 +143576 7793 pursue silent film representation 2 +143577 7793 pursue 2 +143578 7793 silent film representation 2 +143579 7793 film representation 2 +143580 7793 representation 2 +143581 7793 with every mournful composition 1 +143582 7793 every mournful composition 1 +143583 7793 mournful composition 2 +143584 7794 Ratliff 's two previous titles , Plutonium Circus and Purgatory County show his penchant for wry , contentious configurations , and this film is part of that delicate canon . 3 +143585 7794 Ratliff 's two previous titles , Plutonium Circus and Purgatory County show his penchant for wry , contentious configurations , and this film is part of that delicate canon 3 +143586 7794 Ratliff 's two previous titles , Plutonium Circus and Purgatory County show his penchant for wry , contentious configurations , and 2 +143587 7794 Ratliff 's two previous titles , Plutonium Circus and Purgatory County show his penchant for wry , contentious configurations , 3 +143588 7794 Ratliff 's two previous titles , Plutonium Circus and Purgatory County show his penchant for wry , contentious configurations 2 +143589 7794 Ratliff 's two previous titles , Plutonium Circus and Purgatory County 2 +143590 7794 Ratliff 's two previous titles , Plutonium Circus and 2 +143591 7794 Ratliff 's two previous titles , Plutonium Circus 2 +143592 7794 Ratliff 's two previous titles , 2 +143593 7794 Ratliff 's two previous titles 2 +143594 7794 two previous titles 2 +143595 7794 previous titles 2 +143596 7794 Plutonium Circus 2 +143597 7794 Plutonium 3 +143598 7794 Purgatory County 1 +143599 7794 Purgatory 2 +143600 7794 show his penchant for wry , contentious configurations 3 +143601 7794 show his penchant 2 +143602 7794 his penchant 3 +143603 7794 penchant 2 +143604 7794 for wry , contentious configurations 2 +143605 7794 wry , contentious configurations 2 +143606 7794 wry , 2 +143607 7794 contentious configurations 1 +143608 7794 contentious 2 +143609 7794 configurations 2 +143610 7794 this film is part of that delicate canon 3 +143611 7794 is part of that delicate canon 2 +143612 7794 part of that delicate canon 3 +143613 7794 of that delicate canon 3 +143614 7794 that delicate canon 3 +143615 7794 delicate canon 2 +143616 7795 Sandra Bullock 's best dramatic performance to date -LRB- is -RRB- almost enough to lift -LRB- this -RRB- thrill-kill cat-and-mouser ... above its paint-by-numbers plot . 2 +143617 7795 's best dramatic performance to date -LRB- is -RRB- almost enough to lift -LRB- this -RRB- thrill-kill cat-and-mouser ... above its paint-by-numbers plot . 2 +143618 7795 's best dramatic performance to date -LRB- is -RRB- almost enough to lift -LRB- this -RRB- thrill-kill cat-and-mouser ... above its paint-by-numbers plot 3 +143619 7795 best dramatic performance to date -LRB- is -RRB- almost enough to lift -LRB- this -RRB- thrill-kill cat-and-mouser ... above its paint-by-numbers plot 3 +143620 7795 best dramatic performance to date -LRB- is -RRB- almost enough 3 +143621 7795 best dramatic performance to date -LRB- is -RRB- 3 +143622 7795 best dramatic performance to date 4 +143623 7795 best dramatic performance 4 +143624 7795 dramatic performance 3 +143625 7795 almost enough 2 +143626 7795 to lift -LRB- this -RRB- thrill-kill cat-and-mouser ... above its paint-by-numbers plot 1 +143627 7795 lift -LRB- this -RRB- thrill-kill cat-and-mouser ... above its paint-by-numbers plot 1 +143628 7795 lift -LRB- this -RRB- thrill-kill cat-and-mouser ... 2 +143629 7795 lift -LRB- this -RRB- thrill-kill cat-and-mouser 2 +143630 7795 -LRB- this -RRB- thrill-kill cat-and-mouser 2 +143631 7795 this -RRB- thrill-kill cat-and-mouser 2 +143632 7795 this -RRB- 2 +143633 7795 thrill-kill cat-and-mouser 3 +143634 7795 thrill-kill 2 +143635 7795 cat-and-mouser 2 +143636 7795 above its paint-by-numbers plot 2 +143637 7795 its paint-by-numbers plot 1 +143638 7795 paint-by-numbers plot 1 +143639 7796 It might not be 1970s animation , but everything else about it is straight from the Saturday morning cartoons -- a retread story , bad writing , and the same old silliness . 0 +143640 7796 It might not be 1970s animation , but everything else about it is straight from the Saturday morning cartoons -- a retread story , bad writing , and the same old silliness 0 +143641 7796 It might not be 1970s animation , but 2 +143642 7796 It might not be 1970s animation , 1 +143643 7796 It might not be 1970s animation 2 +143644 7796 might not be 1970s animation 2 +143645 7796 be 1970s animation 2 +143646 7796 1970s animation 2 +143647 7796 everything else about it is straight from the Saturday morning cartoons -- a retread story , bad writing , and the same old silliness 0 +143648 7796 everything else about it 2 +143649 7796 is straight from the Saturday morning cartoons -- a retread story , bad writing , and the same old silliness 1 +143650 7796 is straight from the Saturday morning cartoons 2 +143651 7796 straight from the Saturday morning cartoons 1 +143652 7796 from the Saturday morning cartoons 2 +143653 7796 the Saturday morning cartoons 3 +143654 7796 Saturday morning cartoons 2 +143655 7796 morning cartoons 2 +143656 7796 -- a retread story , bad writing , and the same old silliness 1 +143657 7796 a retread story , bad writing , and the same old silliness 0 +143658 7796 a retread story , bad writing , and 1 +143659 7796 a retread story , bad writing , 2 +143660 7796 a retread story , bad writing 0 +143661 7796 a retread story , 2 +143662 7796 a retread story 0 +143663 7796 retread story 1 +143664 7796 the same old silliness 1 +143665 7796 same old silliness 2 +143666 7796 old silliness 2 +143667 7797 Soulless and -- even more damning -- virtually joyless , XXX achieves near virtuosity in its crapulence . 0 +143668 7797 Soulless and -- even more damning -- virtually joyless , XXX 2 +143669 7797 Soulless and -- even more damning -- virtually joyless , 0 +143670 7797 Soulless and -- even more damning -- virtually joyless 0 +143671 7797 Soulless and -- even more damning -- 1 +143672 7797 Soulless and 1 +143673 7797 -- even more damning -- 1 +143674 7797 even more damning -- 1 +143675 7797 more damning -- 2 +143676 7797 more damning 3 +143677 7797 virtually joyless 0 +143678 7797 achieves near virtuosity in its crapulence . 2 +143679 7797 achieves near virtuosity in its crapulence 1 +143680 7797 near virtuosity in its crapulence 0 +143681 7797 near virtuosity 2 +143682 7797 in its crapulence 0 +143683 7797 its crapulence 1 +143684 7797 crapulence 1 +143685 7798 The locations go from stark desert to gorgeous beaches . 3 +143686 7798 The locations 2 +143687 7798 go from stark desert to gorgeous beaches . 3 +143688 7798 go from stark desert to gorgeous beaches 3 +143689 7798 go from stark desert 1 +143690 7798 from stark desert 3 +143691 7798 stark desert 2 +143692 7798 to gorgeous beaches 3 +143693 7798 gorgeous beaches 3 +143694 7798 beaches 3 +143695 7799 Its appeal will probably limited to LDS Church members and undemanding armchair tourists . 1 +143696 7799 Its appeal 3 +143697 7799 will probably limited to LDS Church members and undemanding armchair tourists . 1 +143698 7799 will probably limited to LDS Church members and undemanding armchair tourists 2 +143699 7799 probably limited to LDS Church members and undemanding armchair tourists 1 +143700 7799 limited to LDS Church members and undemanding armchair tourists 1 +143701 7799 to LDS Church members and undemanding armchair tourists 2 +143702 7799 LDS Church members and undemanding armchair tourists 2 +143703 7799 LDS 2 +143704 7799 Church members and undemanding armchair tourists 2 +143705 7799 members and undemanding armchair tourists 2 +143706 7799 and undemanding armchair tourists 1 +143707 7799 undemanding armchair tourists 1 +143708 7799 armchair tourists 2 +143709 7799 armchair 2 +143710 7799 tourists 2 +143711 7800 It follows the Blair Witch formula for an hour , in which we 're told something creepy and vague is in the works , and then it goes awry in the final 30 minutes . 1 +143712 7800 It follows the Blair Witch formula for an hour , in which we 're told something creepy and vague is in the works , and then it goes awry in the final 30 minutes 1 +143713 7800 It follows the Blair Witch formula for an hour , in which we 're told something creepy and vague is in the works , and 1 +143714 7800 It follows the Blair Witch formula for an hour , in which we 're told something creepy and vague is in the works , 2 +143715 7800 It follows the Blair Witch formula for an hour , in which we 're told something creepy and vague is in the works 2 +143716 7800 follows the Blair Witch formula for an hour , in which we 're told something creepy and vague is in the works 2 +143717 7800 the Blair Witch formula for an hour , in which we 're told something creepy and vague is in the works 1 +143718 7800 the Blair Witch formula 2 +143719 7800 Blair Witch formula 2 +143720 7800 Witch formula 2 +143721 7800 for an hour , in which we 're told something creepy and vague is in the works 1 +143722 7800 an hour , in which we 're told something creepy and vague is in the works 2 +143723 7800 an hour , 2 +143724 7800 in which we 're told something creepy and vague is in the works 2 +143725 7800 we 're told something creepy and vague is in the works 2 +143726 7800 're told something creepy and vague is in the works 2 +143727 7800 told something creepy and vague is in the works 2 +143728 7800 something creepy and vague is in the works 2 +143729 7800 something creepy and vague 1 +143730 7800 creepy and vague 1 +143731 7800 is in the works 2 +143732 7800 in the works 2 +143733 7800 then it goes awry in the final 30 minutes 2 +143734 7800 it goes awry in the final 30 minutes 1 +143735 7800 goes awry in the final 30 minutes 2 +143736 7800 goes awry 1 +143737 7800 in the final 30 minutes 2 +143738 7800 the final 30 minutes 2 +143739 7800 final 30 minutes 2 +143740 7800 30 minutes 2 +143741 7801 Does an impressive job of relating the complicated history of the war and of filling in the background . 3 +143742 7801 Does an impressive job of relating the complicated history of the war and 3 +143743 7801 Does an impressive job of relating the complicated history of the war 2 +143744 7801 an impressive job of relating the complicated history of the war 4 +143745 7801 an impressive job 4 +143746 7801 impressive job 4 +143747 7801 of relating the complicated history of the war 2 +143748 7801 relating the complicated history of the war 2 +143749 7801 relating 2 +143750 7801 the complicated history of the war 2 +143751 7801 the complicated history 2 +143752 7801 complicated history 2 +143753 7801 of the war 1 +143754 7801 of filling in the background . 2 +143755 7801 of filling in the background 2 +143756 7801 filling in the background 2 +143757 7802 Rich in atmosphere of the post-war art world , it manages to instruct without reeking of research library dust . 3 +143758 7802 Rich in atmosphere of the post-war art world 3 +143759 7802 in atmosphere of the post-war art world 2 +143760 7802 atmosphere of the post-war art world 2 +143761 7802 of the post-war art world 2 +143762 7802 the post-war art world 2 +143763 7802 post-war art world 3 +143764 7802 post-war 2 +143765 7802 art world 2 +143766 7802 , it manages to instruct without reeking of research library dust . 3 +143767 7802 it manages to instruct without reeking of research library dust . 2 +143768 7802 manages to instruct without reeking of research library dust . 3 +143769 7802 manages to instruct without reeking of research library dust 3 +143770 7802 to instruct without reeking of research library dust 2 +143771 7802 instruct without reeking of research library dust 2 +143772 7802 instruct 2 +143773 7802 without reeking of research library dust 3 +143774 7802 reeking of research library dust 1 +143775 7802 reeking 1 +143776 7802 of research library dust 2 +143777 7802 research library dust 1 +143778 7802 library dust 2 +143779 7802 library 2 +143780 7803 Just a string of stale gags , with no good inside dope , and no particular bite . 1 +143781 7803 Just a string of stale gags , with no good inside dope , and no particular bite 1 +143782 7803 Just a string of stale gags , 1 +143783 7803 Just a string of stale gags 1 +143784 7803 Just a string 3 +143785 7803 of stale gags 1 +143786 7803 stale gags 1 +143787 7803 with no good inside dope , and no particular bite 1 +143788 7803 no good inside dope , and no particular bite 1 +143789 7803 no good inside dope , and 1 +143790 7803 no good inside dope , 2 +143791 7803 no good inside dope 1 +143792 7803 good inside dope 3 +143793 7803 inside dope 2 +143794 7803 no particular bite 1 +143795 7803 particular bite 2 +143796 7804 Tres Greek writer and star Nia Vardalos has crafted here a worldly-wise and very funny script . 3 +143797 7804 Tres Greek writer and star Nia Vardalos 2 +143798 7804 Tres Greek writer and 2 +143799 7804 Tres Greek writer 2 +143800 7804 Tres 2 +143801 7804 Greek writer 2 +143802 7804 star Nia Vardalos 2 +143803 7804 Nia Vardalos 2 +143804 7804 Nia 2 +143805 7804 has crafted here a worldly-wise and very funny script . 4 +143806 7804 has crafted here a worldly-wise and very funny script 4 +143807 7804 crafted here a worldly-wise and very funny script 4 +143808 7804 crafted here 2 +143809 7804 a worldly-wise and very funny script 3 +143810 7804 worldly-wise and very funny script 4 +143811 7804 worldly-wise and very funny 3 +143812 7804 worldly-wise and 2 +143813 7804 worldly-wise 2 +143814 7805 Summer 's far too fleeting to squander on offal like this . 2 +143815 7805 's far too fleeting to squander on offal like this . 1 +143816 7805 's far too fleeting to squander on offal like this 2 +143817 7805 's far too fleeting 2 +143818 7805 far too fleeting 1 +143819 7805 too fleeting 1 +143820 7805 to squander on offal like this 2 +143821 7805 squander on offal like this 0 +143822 7805 on offal like this 1 +143823 7805 offal like this 2 +143824 7805 offal 1 +143825 7806 Baran is shockingly devoid of your typical Majid Majidi shoe-loving , crippled children . 1 +143826 7806 is shockingly devoid of your typical Majid Majidi shoe-loving , crippled children . 2 +143827 7806 is shockingly devoid of your typical Majid Majidi shoe-loving , crippled children 1 +143828 7806 shockingly devoid of your typical Majid Majidi shoe-loving , crippled children 2 +143829 7806 devoid of your typical Majid Majidi shoe-loving , crippled children 2 +143830 7806 of your typical Majid Majidi shoe-loving , crippled children 2 +143831 7806 your typical Majid Majidi shoe-loving , crippled children 2 +143832 7806 your typical Majid Majidi shoe-loving , 2 +143833 7806 your typical Majid Majidi shoe-loving 2 +143834 7806 typical Majid Majidi shoe-loving 2 +143835 7806 Majid Majidi shoe-loving 2 +143836 7806 Majid 2 +143837 7806 Majidi shoe-loving 3 +143838 7806 shoe-loving 2 +143839 7806 crippled children 1 +143840 7807 After one gets the feeling that the typical Hollywood disregard for historical truth and realism is at work here , it 's a matter of finding entertainment in the experiences of Zishe and the fiery presence of Hanussen . 3 +143841 7807 After one gets the feeling that the typical Hollywood disregard for historical truth and realism is at work here 1 +143842 7807 one gets the feeling that the typical Hollywood disregard for historical truth and realism is at work here 0 +143843 7807 gets the feeling that the typical Hollywood disregard for historical truth and realism is at work here 1 +143844 7807 gets the feeling 2 +143845 7807 that the typical Hollywood disregard for historical truth and realism is at work here 1 +143846 7807 the typical Hollywood disregard for historical truth and realism is at work here 1 +143847 7807 the typical Hollywood disregard for historical truth and realism 1 +143848 7807 the typical Hollywood disregard 2 +143849 7807 typical Hollywood disregard 2 +143850 7807 Hollywood disregard 3 +143851 7807 for historical truth and realism 3 +143852 7807 historical truth and realism 3 +143853 7807 truth and realism 3 +143854 7807 is at work here 2 +143855 7807 is at work 2 +143856 7807 , it 's a matter of finding entertainment in the experiences of Zishe and the fiery presence of Hanussen . 2 +143857 7807 it 's a matter of finding entertainment in the experiences of Zishe and the fiery presence of Hanussen . 2 +143858 7807 's a matter of finding entertainment in the experiences of Zishe and the fiery presence of Hanussen . 2 +143859 7807 's a matter of finding entertainment in the experiences of Zishe and the fiery presence of Hanussen 2 +143860 7807 a matter of finding entertainment in the experiences of Zishe and the fiery presence of Hanussen 3 +143861 7807 of finding entertainment in the experiences of Zishe and the fiery presence of Hanussen 2 +143862 7807 finding entertainment in the experiences of Zishe and the fiery presence of Hanussen 2 +143863 7807 finding entertainment 2 +143864 7807 in the experiences of Zishe and the fiery presence of Hanussen 2 +143865 7807 the experiences of Zishe and the fiery presence of Hanussen 2 +143866 7807 the experiences of Zishe and 2 +143867 7807 the experiences of Zishe 2 +143868 7807 of Zishe 2 +143869 7807 Zishe 2 +143870 7807 the fiery presence of Hanussen 2 +143871 7807 the fiery presence 2 +143872 7807 fiery presence 2 +143873 7807 of Hanussen 2 +143874 7808 Post 9\/11 the philosophical message of `` Personal Freedom First '' might not be as palatable as intended . 2 +143875 7808 Post 9\/11 the philosophical message of `` Personal Freedom First '' 2 +143876 7808 Post 9\/11 the philosophical message 2 +143877 7808 Post 9\/11 2 +143878 7808 the philosophical message 2 +143879 7808 philosophical message 2 +143880 7808 of `` Personal Freedom First '' 2 +143881 7808 of `` Personal Freedom First 2 +143882 7808 Personal Freedom First 2 +143883 7808 Freedom First 2 +143884 7808 might not be as palatable as intended . 1 +143885 7808 might not be as palatable as intended 1 +143886 7808 be as palatable as intended 2 +143887 7808 as palatable as intended 2 +143888 7808 palatable as intended 2 +143889 7808 as intended 2 +143890 7809 Slap me , I saw this movie . 0 +143891 7809 Slap me 1 +143892 7809 , I saw this movie . 2 +143893 7809 I saw this movie . 2 +143894 7809 saw this movie . 2 +143895 7810 The movie is like Scorsese 's Mean Streets redone by someone who ignored it in favor of old ` juvenile delinquent ' paperbacks with titles like Leather Warriors and Switchblade Sexpot . 1 +143896 7810 is like Scorsese 's Mean Streets redone by someone who ignored it in favor of old ` juvenile delinquent ' paperbacks with titles like Leather Warriors and Switchblade Sexpot . 1 +143897 7810 is like Scorsese 's Mean Streets redone by someone who ignored it in favor of old ` juvenile delinquent ' paperbacks with titles like Leather Warriors and Switchblade Sexpot 0 +143898 7810 like Scorsese 's Mean Streets redone by someone who ignored it in favor of old ` juvenile delinquent ' paperbacks with titles like Leather Warriors and Switchblade Sexpot 1 +143899 7810 Scorsese 's Mean Streets redone by someone who ignored it in favor of old ` juvenile delinquent ' paperbacks with titles like Leather Warriors and Switchblade Sexpot 1 +143900 7810 redone by someone who ignored it in favor of old ` juvenile delinquent ' paperbacks with titles like Leather Warriors and Switchblade Sexpot 1 +143901 7810 by someone who ignored it in favor of old ` juvenile delinquent ' paperbacks with titles like Leather Warriors and Switchblade Sexpot 1 +143902 7810 someone who ignored it in favor of old ` juvenile delinquent ' paperbacks with titles like Leather Warriors and Switchblade Sexpot 2 +143903 7810 who ignored it in favor of old ` juvenile delinquent ' paperbacks with titles like Leather Warriors and Switchblade Sexpot 1 +143904 7810 ignored it in favor of old ` juvenile delinquent ' paperbacks with titles like Leather Warriors and Switchblade Sexpot 1 +143905 7810 ignored it in favor of old ` juvenile delinquent ' paperbacks with titles 0 +143906 7810 ignored it 1 +143907 7810 in favor of old ` juvenile delinquent ' paperbacks with titles 2 +143908 7810 favor of old ` juvenile delinquent ' paperbacks with titles 2 +143909 7810 of old ` juvenile delinquent ' paperbacks with titles 2 +143910 7810 old ` juvenile delinquent ' paperbacks with titles 1 +143911 7810 old ` juvenile delinquent ' paperbacks 2 +143912 7810 ` juvenile delinquent ' paperbacks 1 +143913 7810 juvenile delinquent ' paperbacks 1 +143914 7810 juvenile delinquent 1 +143915 7810 delinquent 2 +143916 7810 ' paperbacks 2 +143917 7810 paperbacks 2 +143918 7810 with titles 2 +143919 7810 like Leather Warriors and Switchblade Sexpot 2 +143920 7810 Leather Warriors and Switchblade Sexpot 2 +143921 7810 Leather Warriors and 2 +143922 7810 Leather Warriors 2 +143923 7810 Warriors 2 +143924 7810 Switchblade Sexpot 2 +143925 7810 Switchblade 2 +143926 7810 Sexpot 2 +143927 7811 The film 's maudlin focus on the young woman 's infirmity and her naive dreams play like the worst kind of Hollywood heart-string plucking . 1 +143928 7811 The film 's maudlin focus on the young woman 's infirmity and her naive dreams 2 +143929 7811 The film 's maudlin focus 2 +143930 7811 maudlin focus 1 +143931 7811 on the young woman 's infirmity and her naive dreams 1 +143932 7811 the young woman 's infirmity and her naive dreams 1 +143933 7811 the young woman 's infirmity and 2 +143934 7811 the young woman 's infirmity 2 +143935 7811 the young woman 's 2 +143936 7811 infirmity 2 +143937 7811 her naive dreams 2 +143938 7811 naive dreams 1 +143939 7811 play like the worst kind of Hollywood heart-string plucking . 0 +143940 7811 play like the worst kind of Hollywood heart-string plucking 0 +143941 7811 like the worst kind of Hollywood heart-string plucking 1 +143942 7811 the worst kind of Hollywood heart-string plucking 1 +143943 7811 of Hollywood heart-string plucking 1 +143944 7811 Hollywood heart-string plucking 2 +143945 7811 heart-string plucking 3 +143946 7811 heart-string 2 +143947 7812 Maryam is more timely now than ever . 3 +143948 7812 is more timely now than ever . 3 +143949 7812 is more timely now than ever 3 +143950 7812 is more timely now 2 +143951 7812 is more timely 2 +143952 7812 more timely 2 +143953 7813 A feel-good movie that does n't give you enough to feel good about . 1 +143954 7813 A feel-good movie that 3 +143955 7813 does n't give you enough to feel good about . 1 +143956 7813 does n't give you enough to feel good about 1 +143957 7813 give you enough to feel good about 3 +143958 7813 you enough to feel good about 3 +143959 7813 enough to feel good about 3 +143960 7813 to feel good about 3 +143961 7813 feel good about 3 +143962 7813 good about 2 +143963 7814 The Ring never lets you off the hook . 3 +143964 7814 never lets you off the hook . 3 +143965 7814 lets you off the hook . 2 +143966 7814 lets you off the hook 2 +143967 7814 lets you 2 +143968 7815 Like most movies about the pitfalls of bad behavior ... Circuit gets drawn into the party . 1 +143969 7815 Like most movies about the pitfalls of bad behavior 1 +143970 7815 most movies about the pitfalls of bad behavior 2 +143971 7815 about the pitfalls of bad behavior 3 +143972 7815 the pitfalls of bad behavior 2 +143973 7815 of bad behavior 2 +143974 7815 ... Circuit gets drawn into the party . 2 +143975 7815 Circuit gets drawn into the party . 2 +143976 7815 gets drawn into the party . 3 +143977 7815 gets drawn into the party 2 +143978 7815 drawn into the party 2 +143979 7815 into the party 2 +143980 7816 The filmmaker ascends , literally , to the Olympus of the art world , but he would have done well to end this flawed , dazzling series with the raising of something other than his own cremaster . 2 +143981 7816 The filmmaker ascends , literally , to the Olympus of the art world , but he would have done well to end this flawed , dazzling series with the raising of something other than his own cremaster 1 +143982 7816 The filmmaker ascends , literally , to the Olympus of the art world , but 2 +143983 7816 The filmmaker ascends , literally , to the Olympus of the art world , 4 +143984 7816 The filmmaker ascends , literally , to the Olympus of the art world 4 +143985 7816 ascends , literally , to the Olympus of the art world 3 +143986 7816 ascends , literally , 2 +143987 7816 ascends , literally 2 +143988 7816 ascends , 2 +143989 7816 to the Olympus of the art world 2 +143990 7816 the Olympus of the art world 3 +143991 7816 the Olympus 2 +143992 7816 Olympus 2 +143993 7816 of the art world 2 +143994 7816 the art world 2 +143995 7816 he would have done well to end this flawed , dazzling series with the raising of something other than his own cremaster 1 +143996 7816 would have done well to end this flawed , dazzling series with the raising of something other than his own cremaster 0 +143997 7816 have done well to end this flawed , dazzling series with the raising of something other than his own cremaster 2 +143998 7816 done well to end this flawed , dazzling series with the raising of something other than his own cremaster 0 +143999 7816 done well 3 +144000 7816 to end this flawed , dazzling series with the raising of something other than his own cremaster 2 +144001 7816 end this flawed , dazzling series with the raising of something other than his own cremaster 1 +144002 7816 end this flawed , dazzling series with the raising of something other 3 +144003 7816 end this flawed , dazzling series 1 +144004 7816 this flawed , dazzling series 2 +144005 7816 flawed , dazzling series 2 +144006 7816 flawed , dazzling 2 +144007 7816 , dazzling 3 +144008 7816 with the raising of something other 2 +144009 7816 the raising of something other 2 +144010 7816 the raising 2 +144011 7816 raising 2 +144012 7816 of something other 2 +144013 7816 something other 2 +144014 7816 than his own cremaster 2 +144015 7816 his own cremaster 2 +144016 7816 own cremaster 3 +144017 7817 The heedless impetuousness of youth is on full , irritating display in -LRB- this -RRB- meandering and pointless French coming-of-age import from writer-director Anne-Sophie Birot . 0 +144018 7817 The heedless impetuousness of youth 2 +144019 7817 The heedless impetuousness 2 +144020 7817 heedless impetuousness 2 +144021 7817 heedless 1 +144022 7817 impetuousness 2 +144023 7817 is on full , irritating display in -LRB- this -RRB- meandering and pointless French coming-of-age import from writer-director Anne-Sophie Birot . 0 +144024 7817 is on full , irritating display in -LRB- this -RRB- meandering and pointless French coming-of-age import from writer-director Anne-Sophie Birot 1 +144025 7817 is on full , irritating display 0 +144026 7817 on full , irritating display 2 +144027 7817 full , irritating display 1 +144028 7817 , irritating display 2 +144029 7817 irritating display 1 +144030 7817 in -LRB- this -RRB- meandering and pointless French coming-of-age import from writer-director Anne-Sophie Birot 0 +144031 7817 -LRB- this -RRB- meandering and pointless French coming-of-age import from writer-director Anne-Sophie Birot 2 +144032 7817 this -RRB- meandering and pointless French coming-of-age import from writer-director Anne-Sophie Birot 0 +144033 7817 -RRB- meandering and pointless French coming-of-age import from writer-director Anne-Sophie Birot 0 +144034 7817 meandering and pointless French coming-of-age import from writer-director Anne-Sophie Birot 1 +144035 7817 meandering and pointless French coming-of-age import 0 +144036 7817 meandering and pointless 0 +144037 7817 French coming-of-age import 3 +144038 7817 coming-of-age import 2 +144039 7817 from writer-director Anne-Sophie Birot 2 +144040 7817 writer-director Anne-Sophie Birot 2 +144041 7818 The Sum of All Fears is remarkably fuddled about motives and context , which drains it of the dramatic substance that would shake us in our boots -LRB- or cinema seats -RRB- . 1 +144042 7818 is remarkably fuddled about motives and context , which drains it of the dramatic substance that would shake us in our boots -LRB- or cinema seats -RRB- . 1 +144043 7818 is remarkably fuddled about motives and context , which drains it of the dramatic substance that would shake us in our boots -LRB- or cinema seats -RRB- 0 +144044 7818 remarkably fuddled about motives and context , which drains it of the dramatic substance that would shake us in our boots -LRB- or cinema seats -RRB- 1 +144045 7818 fuddled about motives and context , which drains it of the dramatic substance that would shake us in our boots -LRB- or cinema seats -RRB- 1 +144046 7818 fuddled 1 +144047 7818 about motives and context , which drains it of the dramatic substance that would shake us in our boots -LRB- or cinema seats -RRB- 3 +144048 7818 motives and context , which drains it of the dramatic substance that would shake us in our boots -LRB- or cinema seats -RRB- 2 +144049 7818 motives and context , 2 +144050 7818 motives and context 2 +144051 7818 motives and 2 +144052 7818 which drains it of the dramatic substance that would shake us in our boots -LRB- or cinema seats -RRB- 2 +144053 7818 drains it of the dramatic substance that would shake us in our boots -LRB- or cinema seats -RRB- 1 +144054 7818 drains it 3 +144055 7818 of the dramatic substance that would shake us in our boots -LRB- or cinema seats -RRB- 2 +144056 7818 the dramatic substance that would shake us in our boots -LRB- or cinema seats -RRB- 2 +144057 7818 the dramatic substance 2 +144058 7818 dramatic substance 3 +144059 7818 that would shake us in our boots -LRB- or cinema seats -RRB- 2 +144060 7818 would shake us in our boots -LRB- or cinema seats -RRB- 2 +144061 7818 shake us in our boots -LRB- or cinema seats -RRB- 2 +144062 7818 shake us in our boots 2 +144063 7818 shake us 2 +144064 7818 in our boots 2 +144065 7818 our boots 2 +144066 7818 -LRB- or cinema seats -RRB- 2 +144067 7818 or cinema seats -RRB- 2 +144068 7818 or cinema seats 2 +144069 7818 cinema seats 2 +144070 7819 Low rent from frame one . 1 +144071 7819 rent from frame one . 2 +144072 7819 rent from frame one 2 +144073 7820 The film fits into a genre that has been overexposed , redolent of a thousand cliches , and yet remains uniquely itself , vibrant with originality . 3 +144074 7820 fits into a genre that has been overexposed , redolent of a thousand cliches , and yet remains uniquely itself , vibrant with originality . 3 +144075 7820 fits into a genre that has been overexposed , redolent of a thousand cliches , and yet remains uniquely itself , vibrant with originality 4 +144076 7820 into a genre that has been overexposed , redolent of a thousand cliches , and yet remains uniquely itself , vibrant with originality 4 +144077 7820 a genre that has been overexposed , redolent of a thousand cliches , and yet remains uniquely itself , vibrant with originality 3 +144078 7820 a genre that has been overexposed , redolent of a thousand cliches , and yet remains uniquely itself , 2 +144079 7820 a genre that has been overexposed , redolent of a thousand cliches , and yet remains uniquely itself 2 +144080 7820 that has been overexposed , redolent of a thousand cliches , and yet remains uniquely itself 3 +144081 7820 has been overexposed , redolent of a thousand cliches , and yet remains uniquely itself 2 +144082 7820 has been overexposed , redolent of a thousand cliches , and yet 1 +144083 7820 has been overexposed , redolent of a thousand cliches , and 1 +144084 7820 has been overexposed , redolent of a thousand cliches , 1 +144085 7820 has been overexposed , redolent of a thousand cliches 1 +144086 7820 has been overexposed , 1 +144087 7820 has been overexposed 1 +144088 7820 been overexposed 2 +144089 7820 redolent of a thousand cliches 1 +144090 7820 redolent 1 +144091 7820 of a thousand cliches 1 +144092 7820 a thousand cliches 2 +144093 7820 thousand cliches 1 +144094 7820 remains uniquely itself 3 +144095 7820 uniquely itself 3 +144096 7820 vibrant with originality 4 +144097 7820 with originality 3 +144098 7821 The most repugnant adaptation 0 +144099 7821 most repugnant adaptation 0 +144100 7821 most repugnant 0 +144101 7821 repugnant 0 +144102 7821 a classic text 3 +144103 7821 classic text 3 +144104 7821 Roland 2 +144105 7821 Demi Moore 2 +144106 7821 Demi 2 +144107 7821 's The Scarlet Letter . 2 +144108 7821 's The Scarlet Letter 2 +144109 7821 The Scarlet Letter 2 +144110 7821 Scarlet Letter 2 +144111 7822 Glazed with a tawdry B-movie scum . 0 +144112 7822 Glazed with a tawdry B-movie scum 0 +144113 7822 Glazed 2 +144114 7822 with a tawdry B-movie scum 1 +144115 7822 a tawdry B-movie scum 1 +144116 7822 tawdry B-movie scum 1 +144117 7822 B-movie scum 0 +144118 7822 scum 1 +144119 7823 A decided lack of spontaneity in its execution and a dearth of real poignancy in its epiphanies . 0 +144120 7823 decided lack of spontaneity in its execution and a dearth of real poignancy in its epiphanies . 2 +144121 7823 decided lack of spontaneity in its execution and a dearth of real poignancy in its epiphanies 0 +144122 7823 decided lack of spontaneity in its execution and a dearth of real poignancy 1 +144123 7823 lack of spontaneity in its execution and a dearth of real poignancy 1 +144124 7823 of spontaneity in its execution and a dearth of real poignancy 3 +144125 7823 spontaneity in its execution and a dearth of real poignancy 2 +144126 7823 spontaneity in its execution and 3 +144127 7823 spontaneity in its execution 3 +144128 7823 a dearth of real poignancy 2 +144129 7823 of real poignancy 2 +144130 7823 real poignancy 3 +144131 7823 in its epiphanies 2 +144132 7823 its epiphanies 2 +144133 7823 epiphanies 3 +144134 7824 Comedy troupe Broken Lizard 's first movie is very funny but too concerned with giving us a plot . 2 +144135 7824 Comedy troupe Broken Lizard 's first movie 2 +144136 7824 Comedy troupe Broken Lizard 's 2 +144137 7824 troupe Broken Lizard 's 2 +144138 7824 troupe 2 +144139 7824 Broken Lizard 's 2 +144140 7824 Lizard 's 2 +144141 7824 is very funny but too concerned with giving us a plot . 2 +144142 7824 is very funny but too concerned with giving us a plot 3 +144143 7824 is very funny but too concerned 3 +144144 7824 very funny but too concerned 3 +144145 7824 very funny but 2 +144146 7824 too concerned 1 +144147 7824 with giving us a plot 2 +144148 7824 giving us a plot 2 +144149 7825 If you 're willing to have fun with it , you wo n't feel cheated by the high infidelity of Unfaithful . 3 +144150 7825 If you 're willing to have fun with it 3 +144151 7825 you 're willing to have fun with it 3 +144152 7825 're willing to have fun with it 2 +144153 7825 willing to have fun with it 3 +144154 7825 to have fun with it 3 +144155 7825 have fun with it 3 +144156 7825 fun with it 3 +144157 7825 , you wo n't feel cheated by the high infidelity of Unfaithful . 3 +144158 7825 you wo n't feel cheated by the high infidelity of Unfaithful . 3 +144159 7825 wo n't feel cheated by the high infidelity of Unfaithful . 3 +144160 7825 wo n't feel cheated by the high infidelity of Unfaithful 3 +144161 7825 feel cheated by the high infidelity of Unfaithful 1 +144162 7825 feel cheated 1 +144163 7825 by the high infidelity of Unfaithful 2 +144164 7825 the high infidelity of Unfaithful 2 +144165 7825 the high infidelity 1 +144166 7825 high infidelity 2 +144167 7825 of Unfaithful 1 +144168 7826 If you want a movie time trip , the 1960 version is a far smoother ride . 1 +144169 7826 If you want a movie time trip 2 +144170 7826 you want a movie time trip 2 +144171 7826 want a movie time trip 2 +144172 7826 a movie time trip 2 +144173 7826 movie time trip 2 +144174 7826 time trip 2 +144175 7826 , the 1960 version is a far smoother ride . 3 +144176 7826 the 1960 version is a far smoother ride . 2 +144177 7826 the 1960 version 2 +144178 7826 1960 version 2 +144179 7826 is a far smoother ride . 3 +144180 7826 is a far smoother ride 2 +144181 7826 a far smoother ride 2 +144182 7826 far smoother ride 2 +144183 7826 far smoother 2 +144184 7827 Filmmakers David Weissman and Bill Weber benefit enormously from the Cockettes ' camera craziness -- not only did they film performances , but they did the same at home . 3 +144185 7827 Filmmakers David Weissman and Bill Weber benefit enormously from the Cockettes ' camera craziness -- not only did they film performances , but they did the same at home 4 +144186 7827 Filmmakers David Weissman and Bill Weber benefit enormously from the Cockettes ' camera craziness -- not only did they film performances , but 3 +144187 7827 Filmmakers David Weissman and Bill Weber benefit enormously from the Cockettes ' camera craziness -- not only did they film performances , 3 +144188 7827 Filmmakers David Weissman and Bill Weber benefit enormously from the Cockettes ' camera craziness -- not only did they film performances 2 +144189 7827 Filmmakers David Weissman and Bill Weber 3 +144190 7827 David Weissman and Bill Weber 2 +144191 7827 Weissman and Bill Weber 2 +144192 7827 Weissman 2 +144193 7827 and Bill Weber 2 +144194 7827 Bill Weber 2 +144195 7827 Weber 2 +144196 7827 benefit enormously from the Cockettes ' camera craziness -- not only did they film performances 3 +144197 7827 benefit enormously from the Cockettes ' camera craziness -- not 2 +144198 7827 benefit enormously from the Cockettes ' camera craziness -- 3 +144199 7827 benefit enormously from the Cockettes ' camera craziness 3 +144200 7827 benefit enormously 3 +144201 7827 from the Cockettes ' camera craziness 2 +144202 7827 the Cockettes ' camera craziness 2 +144203 7827 the Cockettes ' 2 +144204 7827 Cockettes ' 2 +144205 7827 camera craziness 2 +144206 7827 only did they film performances 2 +144207 7827 did they film performances 2 +144208 7827 they film performances 2 +144209 7827 film performances 2 +144210 7827 they did the same at home 2 +144211 7827 did the same at home 2 +144212 7827 did the same 2 +144213 7828 Benigni presents himself as the boy puppet Pinocchio , complete with receding hairline , weathered countenance and American Breckin Meyer 's ridiculously inappropriate Valley Boy voice . 2 +144214 7828 presents himself as the boy puppet Pinocchio , complete with receding hairline , weathered countenance and American Breckin Meyer 's ridiculously inappropriate Valley Boy voice . 1 +144215 7828 presents himself as the boy puppet Pinocchio , complete with receding hairline , weathered countenance and American Breckin Meyer 's ridiculously inappropriate Valley Boy voice 1 +144216 7828 presents himself as the boy puppet Pinocchio , 2 +144217 7828 presents himself as the boy puppet Pinocchio 3 +144218 7828 presents himself 2 +144219 7828 as the boy puppet Pinocchio 2 +144220 7828 the boy puppet Pinocchio 2 +144221 7828 boy puppet Pinocchio 2 +144222 7828 puppet Pinocchio 2 +144223 7828 complete with receding hairline , weathered countenance and American Breckin Meyer 's ridiculously inappropriate Valley Boy voice 1 +144224 7828 with receding hairline , weathered countenance and American Breckin Meyer 's ridiculously inappropriate Valley Boy voice 0 +144225 7828 receding hairline , weathered countenance and American Breckin Meyer 's ridiculously inappropriate Valley Boy voice 2 +144226 7828 receding 1 +144227 7828 hairline , weathered countenance and American Breckin Meyer 's ridiculously inappropriate Valley Boy voice 1 +144228 7828 hairline , weathered countenance and 2 +144229 7828 hairline , weathered countenance 2 +144230 7828 hairline , 3 +144231 7828 hairline 2 +144232 7828 weathered countenance 2 +144233 7828 weathered 1 +144234 7828 countenance 3 +144235 7828 American Breckin Meyer 's ridiculously inappropriate Valley Boy voice 1 +144236 7828 American Breckin Meyer 's 2 +144237 7828 Breckin Meyer 's 2 +144238 7828 Breckin 2 +144239 7828 Meyer 's 2 +144240 7828 Meyer 2 +144241 7828 ridiculously inappropriate Valley Boy voice 2 +144242 7828 ridiculously inappropriate 1 +144243 7828 ridiculously 2 +144244 7828 Valley Boy voice 2 +144245 7828 Boy voice 3 +144246 7829 Will anyone who is n't a Fangoria subscriber be excited that it has n't gone straight to video ? 1 +144247 7829 Will anyone who is n't a Fangoria subscriber 2 +144248 7829 Will anyone 2 +144249 7829 who is n't a Fangoria subscriber 2 +144250 7829 is n't a Fangoria subscriber 2 +144251 7829 a Fangoria subscriber 2 +144252 7829 Fangoria subscriber 2 +144253 7829 Fangoria 2 +144254 7829 subscriber 1 +144255 7829 be excited that it has n't gone straight to video ? 1 +144256 7829 be excited that it has n't gone straight to video 2 +144257 7829 excited that it has n't gone straight to video 3 +144258 7829 that it has n't gone straight to video 1 +144259 7829 it has n't gone straight to video 2 +144260 7829 has n't gone straight to video 2 +144261 7830 Most of the characters come off as pantomimesque sterotypes . 2 +144262 7830 come off as pantomimesque sterotypes . 1 +144263 7830 come off as pantomimesque sterotypes 1 +144264 7830 as pantomimesque sterotypes 1 +144265 7830 pantomimesque sterotypes 1 +144266 7830 pantomimesque 2 +144267 7830 sterotypes 1 +144268 7831 A gripping drama . 4 +144269 7831 gripping drama . 4 +144270 7832 Darkly funny and frequently insightful . 4 +144271 7832 Darkly funny and frequently insightful 3 +144272 7832 Darkly funny and 3 +144273 7832 frequently insightful 2 +144274 7833 A spooky yarn of demonic doings on the high seas that works better the less the brain is engaged . 1 +144275 7833 A spooky yarn of demonic doings on the high seas that works better the less the brain is engaged 1 +144276 7833 A spooky yarn 2 +144277 7833 spooky yarn 2 +144278 7833 of demonic doings on the high seas that works better the less the brain is engaged 1 +144279 7833 demonic doings on the high seas that works better the less the brain is engaged 1 +144280 7833 demonic doings 2 +144281 7833 demonic 1 +144282 7833 on the high seas that works better the less the brain is engaged 1 +144283 7833 the high seas that works better the less the brain is engaged 1 +144284 7833 the high seas 2 +144285 7833 high seas 2 +144286 7833 that works better the less the brain is engaged 2 +144287 7833 works better the less the brain is engaged 0 +144288 7833 better the less the brain is engaged 2 +144289 7833 the less the brain is engaged 2 +144290 7833 the less 2 +144291 7833 the brain is engaged 3 +144292 7833 is engaged 3 +144293 7834 The only young people who possibly will enjoy it are infants ... who might be distracted by the movie 's quick movements and sounds . 1 +144294 7834 The only young people who possibly will enjoy it 1 +144295 7834 The only young people 2 +144296 7834 only young people 2 +144297 7834 who possibly will enjoy it 1 +144298 7834 possibly will enjoy it 3 +144299 7834 will enjoy it 4 +144300 7834 are infants ... who might be distracted by the movie 's quick movements and sounds . 1 +144301 7834 are infants ... who might be distracted by the movie 's quick movements and sounds 2 +144302 7834 are infants ... 2 +144303 7834 are infants 1 +144304 7834 infants 2 +144305 7834 who might be distracted by the movie 's quick movements and sounds 2 +144306 7834 might be distracted by the movie 's quick movements and sounds 1 +144307 7834 might be distracted by the movie 's quick movements and 1 +144308 7834 might be distracted by the movie 's quick movements 2 +144309 7834 be distracted by the movie 's quick movements 2 +144310 7834 distracted by the movie 's quick movements 1 +144311 7834 distracted 1 +144312 7834 by the movie 's quick movements 2 +144313 7834 the movie 's quick movements 2 +144314 7834 quick movements 2 +144315 7835 Sayles ... once again strands his superb performers in the same old story . 1 +144316 7835 ... once again strands his superb performers in the same old story . 2 +144317 7835 once again strands his superb performers in the same old story . 3 +144318 7835 strands his superb performers in the same old story . 2 +144319 7835 strands his superb performers in the same old story 1 +144320 7835 strands his superb performers 2 +144321 7835 his superb performers 2 +144322 7835 superb performers 4 +144323 7835 in the same old story 1 +144324 7835 the same old story 1 +144325 7835 same old story 1 +144326 7835 old story 1 +144327 7836 An unforgettable look at morality , family , and social expectation through the prism of that omnibus tradition called marriage . 3 +144328 7836 An unforgettable 3 +144329 7836 look at morality , family , and social expectation through the prism of that omnibus tradition called marriage . 2 +144330 7836 look at morality , family , and social expectation through the prism of that omnibus tradition called marriage 3 +144331 7836 look at morality , family , and social expectation 3 +144332 7836 at morality , family , and social expectation 2 +144333 7836 morality , family , and social expectation 3 +144334 7836 morality , family , and 2 +144335 7836 morality , family , 2 +144336 7836 morality , family 3 +144337 7836 morality , 2 +144338 7836 social expectation 2 +144339 7836 through the prism of that omnibus tradition called marriage 2 +144340 7836 the prism of that omnibus tradition called marriage 2 +144341 7836 of that omnibus tradition called marriage 2 +144342 7836 that omnibus tradition called marriage 1 +144343 7836 that omnibus tradition 2 +144344 7836 omnibus tradition 3 +144345 7836 omnibus 2 +144346 7836 called marriage 2 +144347 7837 Weaver and LaPaglia are both excellent , in the kind of low-key way that allows us to forget that they are actually movie folk . 4 +144348 7837 are both excellent , in the kind of low-key way that allows us to forget that they are actually movie folk . 4 +144349 7837 are both excellent , in the kind of low-key way that allows us to forget that they are actually movie folk 4 +144350 7837 are both excellent , 3 +144351 7837 both excellent 4 +144352 7837 in the kind of low-key way that allows us to forget that they are actually movie folk 3 +144353 7837 the kind of low-key way that allows us to forget that they are actually movie folk 2 +144354 7837 the kind of low-key way 2 +144355 7837 of low-key way 2 +144356 7837 that allows us to forget that they are actually movie folk 2 +144357 7837 allows us to forget that they are actually movie folk 3 +144358 7837 us to forget that they are actually movie folk 2 +144359 7837 to forget that they are actually movie folk 3 +144360 7837 forget that they are actually movie folk 3 +144361 7837 that they are actually movie folk 2 +144362 7837 they are actually movie folk 2 +144363 7837 are actually movie folk 2 +144364 7837 movie folk 2 +144365 7838 smart , funny and just honest enough to provide the pleasures of a slightly naughty , just-above-average off - Broadway play . 4 +144366 7838 smart , funny and just honest enough to provide the pleasures of a slightly naughty , just-above-average off - Broadway play 4 +144367 7838 smart , funny and 4 +144368 7838 smart , funny 4 +144369 7838 just honest enough to provide the pleasures of a slightly naughty , just-above-average off - Broadway play 3 +144370 7838 just honest 2 +144371 7838 enough to provide the pleasures of a slightly naughty , just-above-average off - Broadway play 3 +144372 7838 to provide the pleasures of a slightly naughty , just-above-average off - Broadway play 1 +144373 7838 provide the pleasures of a slightly naughty , just-above-average off - Broadway play 2 +144374 7838 the pleasures of a slightly naughty , just-above-average off - Broadway play 3 +144375 7838 of a slightly naughty , just-above-average off - Broadway play 2 +144376 7838 a slightly naughty , just-above-average off - Broadway play 3 +144377 7838 slightly naughty , just-above-average off - Broadway play 3 +144378 7838 slightly naughty , just-above-average off - 2 +144379 7838 slightly naughty , just-above-average off 3 +144380 7838 slightly naughty , 2 +144381 7838 slightly naughty 2 +144382 7838 just-above-average off 2 +144383 7838 just-above-average 2 +144384 7838 Broadway play 2 +144385 7839 This is an ungainly movie , ill-fitting , with its elbows sticking out where the knees should be . 0 +144386 7839 is an ungainly movie , ill-fitting , with its elbows sticking out where the knees should be . 0 +144387 7839 is an ungainly movie , ill-fitting , with its elbows sticking out where the knees should be 0 +144388 7839 an ungainly movie , ill-fitting , with its elbows sticking out where the knees should be 0 +144389 7839 an ungainly movie , ill-fitting , 0 +144390 7839 an ungainly movie , ill-fitting 1 +144391 7839 an ungainly movie , 1 +144392 7839 an ungainly movie 0 +144393 7839 ungainly movie 1 +144394 7839 ungainly 1 +144395 7839 with its elbows sticking out where the knees should be 1 +144396 7839 its elbows sticking out where the knees should be 1 +144397 7839 its elbows 2 +144398 7839 sticking out where the knees should be 2 +144399 7839 sticking out 2 +144400 7839 where the knees should be 2 +144401 7839 the knees should be 2 +144402 7839 the knees 2 +144403 7839 knees 2 +144404 7840 For a debut film , Skin of Man , Heart of Beast feels unusually assured . 2 +144405 7840 For a debut film 3 +144406 7840 a debut film 2 +144407 7840 , Skin of Man , Heart of Beast feels unusually assured . 3 +144408 7840 Skin of Man , Heart of Beast feels unusually assured . 3 +144409 7840 Skin of Man , Heart of Beast 2 +144410 7840 of Man , Heart of Beast 2 +144411 7840 Man , Heart of Beast 2 +144412 7840 Man , Heart 2 +144413 7840 , Heart 2 +144414 7840 of Beast 2 +144415 7840 feels unusually assured . 2 +144416 7840 feels unusually assured 3 +144417 7840 unusually assured 2 +144418 7841 It sucked . 0 +144419 7841 sucked . 1 +144420 7842 But how it washed out despite all of that is the project 's prime mystery . 1 +144421 7842 how it washed out despite all of that is the project 's prime mystery . 1 +144422 7842 how it washed out despite all of that 1 +144423 7842 it washed out despite all of that 1 +144424 7842 washed out despite all of that 1 +144425 7842 washed out 1 +144426 7842 despite all of that 2 +144427 7842 all of that 2 +144428 7842 is the project 's prime mystery . 2 +144429 7842 is the project 's prime mystery 2 +144430 7842 the project 's prime mystery 2 +144431 7842 prime mystery 3 +144432 7843 As broad and cartoonish as the screenplay is , there is an accuracy of observation in the work of the director , Frank Novak , that keeps the film grounded in an undeniable social realism . 3 +144433 7843 As broad and cartoonish as the screenplay is 2 +144434 7843 broad and cartoonish as the screenplay is 2 +144435 7843 broad and cartoonish as the screenplay 2 +144436 7843 broad and 2 +144437 7843 cartoonish as the screenplay 2 +144438 7843 as the screenplay 2 +144439 7843 , there is an accuracy of observation in the work of the director , Frank Novak , that keeps the film grounded in an undeniable social realism . 3 +144440 7843 there is an accuracy of observation in the work of the director , Frank Novak , that keeps the film grounded in an undeniable social realism . 3 +144441 7843 is an accuracy of observation in the work of the director , Frank Novak , that keeps the film grounded in an undeniable social realism . 3 +144442 7843 is an accuracy of observation in the work of the director , Frank Novak , that keeps the film grounded in an undeniable social realism 3 +144443 7843 an accuracy of observation in the work of the director , Frank Novak , that keeps the film grounded in an undeniable social realism 3 +144444 7843 an accuracy 3 +144445 7843 of observation in the work of the director , Frank Novak , that keeps the film grounded in an undeniable social realism 3 +144446 7843 observation in the work of the director , Frank Novak , that keeps the film grounded in an undeniable social realism 3 +144447 7843 in the work of the director , Frank Novak , that keeps the film grounded in an undeniable social realism 3 +144448 7843 the work of the director , Frank Novak , that keeps the film grounded in an undeniable social realism 3 +144449 7843 of the director , Frank Novak , that keeps the film grounded in an undeniable social realism 3 +144450 7843 the director , Frank Novak , that keeps the film grounded in an undeniable social realism 3 +144451 7843 the director , Frank Novak , 2 +144452 7843 the director , Frank Novak 2 +144453 7843 Frank Novak 2 +144454 7843 that keeps the film grounded in an undeniable social realism 3 +144455 7843 keeps the film grounded in an undeniable social realism 3 +144456 7843 the film grounded in an undeniable social realism 3 +144457 7843 grounded in an undeniable social realism 3 +144458 7843 grounded 3 +144459 7843 in an undeniable social realism 2 +144460 7843 an undeniable social realism 2 +144461 7843 undeniable social realism 3 +144462 7844 -LRB- `` Take Care of My Cat '' -RRB- is an honestly nice little film that takes us on an examination of young adult life in urban South Korea through the hearts and minds of the five principals . 3 +144463 7844 -LRB- `` Take Care of My Cat '' -RRB- 2 +144464 7844 `` Take Care of My Cat '' -RRB- 2 +144465 7844 Take Care of My Cat '' -RRB- 2 +144466 7844 Take Care of My Cat '' 2 +144467 7844 Care of My Cat '' 2 +144468 7844 of My Cat '' 2 +144469 7844 My Cat '' 2 +144470 7844 Cat '' 2 +144471 7844 is an honestly nice little film that takes us on an examination of young adult life in urban South Korea through the hearts and minds of the five principals . 3 +144472 7844 is an honestly nice little film that takes us on an examination of young adult life in urban South Korea through the hearts and minds of the five principals 4 +144473 7844 an honestly nice little film that takes us on an examination of young adult life in urban South Korea through the hearts and minds of the five principals 3 +144474 7844 an honestly nice little film 3 +144475 7844 honestly nice little film 3 +144476 7844 honestly nice 4 +144477 7844 that takes us on an examination of young adult life in urban South Korea through the hearts and minds of the five principals 2 +144478 7844 takes us on an examination of young adult life in urban South Korea through the hearts and minds of the five principals 3 +144479 7844 takes us on an examination of young adult life in urban South Korea 2 +144480 7844 takes us 2 +144481 7844 on an examination of young adult life in urban South Korea 2 +144482 7844 an examination of young adult life in urban South Korea 2 +144483 7844 of young adult life in urban South Korea 2 +144484 7844 young adult life in urban South Korea 3 +144485 7844 young adult life 2 +144486 7844 adult life 2 +144487 7844 in urban South Korea 2 +144488 7844 urban South Korea 3 +144489 7844 South Korea 2 +144490 7844 through the hearts and minds of the five principals 2 +144491 7844 the hearts and minds of the five principals 2 +144492 7844 the hearts and minds 3 +144493 7844 hearts and minds 3 +144494 7844 hearts and 2 +144495 7844 of the five principals 2 +144496 7844 the five principals 2 +144497 7844 five principals 2 +144498 7845 More successful at relating history than in creating an emotionally complex , dramatically satisfying heroine 1 +144499 7845 at relating history than in creating an emotionally complex , dramatically satisfying heroine 2 +144500 7845 relating history than in creating an emotionally complex , dramatically satisfying heroine 2 +144501 7845 relating history 2 +144502 7845 than in creating an emotionally complex , dramatically satisfying heroine 3 +144503 7845 in creating an emotionally complex , dramatically satisfying heroine 3 +144504 7845 creating an emotionally complex , dramatically satisfying heroine 3 +144505 7845 an emotionally complex , dramatically satisfying heroine 4 +144506 7845 emotionally complex , dramatically satisfying heroine 3 +144507 7845 emotionally complex 3 +144508 7845 , dramatically satisfying heroine 3 +144509 7845 dramatically satisfying heroine 4 +144510 7845 dramatically satisfying 4 +144511 7846 Imagine the CleanFlicks version of ` Love Story , ' with Ali MacGraw 's profanities replaced by romance-novel platitudes . 1 +144512 7846 Imagine the CleanFlicks version of ` Love Story , ' with Ali MacGraw 's profanities replaced by romance-novel platitudes 2 +144513 7846 the CleanFlicks version of ` Love Story , ' with Ali MacGraw 's profanities replaced by romance-novel platitudes 2 +144514 7846 the CleanFlicks version of ` Love Story , ' with Ali MacGraw 's profanities 2 +144515 7846 the CleanFlicks version 2 +144516 7846 CleanFlicks version 2 +144517 7846 CleanFlicks 2 +144518 7846 of ` Love Story , ' with Ali MacGraw 's profanities 2 +144519 7846 ` Love Story , ' with Ali MacGraw 's profanities 2 +144520 7846 Love Story , ' with Ali MacGraw 's profanities 2 +144521 7846 Love Story , ' 2 +144522 7846 Love Story , 2 +144523 7846 with Ali MacGraw 's profanities 2 +144524 7846 Ali MacGraw 's profanities 2 +144525 7846 Ali MacGraw 's 2 +144526 7846 MacGraw 's 2 +144527 7846 MacGraw 2 +144528 7846 profanities 1 +144529 7846 replaced by romance-novel platitudes 1 +144530 7846 by romance-novel platitudes 2 +144531 7846 romance-novel platitudes 2 +144532 7846 romance-novel 3 +144533 7846 platitudes 2 +144534 7847 ... built on the premise that middle-class Arkansas consists of monster truck-loving good ol' boys and peroxide blond honeys whose worldly knowledge comes from TV reruns and supermarket tabloids . 1 +144535 7847 built on the premise that middle-class Arkansas consists of monster truck-loving good ol' boys and peroxide blond honeys whose worldly knowledge comes from TV reruns and supermarket tabloids . 1 +144536 7847 built on the premise that middle-class Arkansas consists of monster truck-loving good ol' boys and peroxide blond honeys whose worldly knowledge comes from TV reruns and supermarket tabloids 1 +144537 7847 built on the premise 2 +144538 7847 on the premise 3 +144539 7847 that middle-class Arkansas consists of monster truck-loving good ol' boys and peroxide blond honeys whose worldly knowledge comes from TV reruns and supermarket tabloids 2 +144540 7847 middle-class Arkansas consists of monster truck-loving good ol' boys and peroxide blond honeys whose worldly knowledge comes from TV reruns and supermarket tabloids 2 +144541 7847 middle-class Arkansas 2 +144542 7847 Arkansas 2 +144543 7847 consists of monster truck-loving good ol' boys and peroxide blond honeys whose worldly knowledge comes from TV reruns and supermarket tabloids 2 +144544 7847 consists 2 +144545 7847 of monster truck-loving good ol' boys and peroxide blond honeys whose worldly knowledge comes from TV reruns and supermarket tabloids 1 +144546 7847 monster truck-loving good ol' boys and peroxide blond honeys whose worldly knowledge comes from TV reruns and supermarket tabloids 1 +144547 7847 monster truck-loving good ol' boys and 2 +144548 7847 monster truck-loving good ol' boys 2 +144549 7847 truck-loving good ol' boys 2 +144550 7847 truck-loving 2 +144551 7847 good ol' boys 2 +144552 7847 ol' boys 2 +144553 7847 peroxide blond honeys whose worldly knowledge comes from TV reruns and supermarket tabloids 1 +144554 7847 peroxide blond honeys 2 +144555 7847 peroxide 2 +144556 7847 blond honeys 3 +144557 7847 blond 2 +144558 7847 honeys 2 +144559 7847 whose worldly knowledge comes from TV reruns and supermarket tabloids 2 +144560 7847 worldly knowledge comes from TV reruns and supermarket tabloids 1 +144561 7847 worldly knowledge 3 +144562 7847 worldly 2 +144563 7847 comes from TV reruns and supermarket tabloids 1 +144564 7847 from TV reruns and supermarket tabloids 1 +144565 7847 TV reruns and supermarket tabloids 2 +144566 7847 reruns and supermarket tabloids 2 +144567 7847 and supermarket tabloids 2 +144568 7847 supermarket tabloids 1 +144569 7847 supermarket 2 +144570 7847 tabloids 2 +144571 7848 Oversexed , at times overwrought comedy\/drama that offers little insight into the experience of being forty , female and single . 0 +144572 7848 Oversexed , at times overwrought comedy\/drama that 1 +144573 7848 Oversexed , at times overwrought comedy\/drama 1 +144574 7848 Oversexed , at times 1 +144575 7848 Oversexed , 2 +144576 7848 Oversexed 1 +144577 7848 overwrought comedy\/drama 1 +144578 7848 offers little insight into the experience of being forty , female and single . 0 +144579 7848 offers little insight into the experience of being forty , female and single 1 +144580 7848 offers little insight 1 +144581 7848 into the experience of being forty , female and single 2 +144582 7848 the experience of being forty , female and single 2 +144583 7848 of being forty , female and single 2 +144584 7848 being forty , female and single 2 +144585 7848 forty , female and single 2 +144586 7848 forty 2 +144587 7848 , female and single 2 +144588 7848 female and single 2 +144589 7848 female and 2 +144590 7849 Cho continues her exploration of the outer limits of raunch with considerable brio . 3 +144591 7849 continues her exploration of the outer limits of raunch with considerable brio . 3 +144592 7849 continues her exploration of the outer limits of raunch with considerable brio 3 +144593 7849 continues her exploration of the outer limits of raunch 2 +144594 7849 her exploration of the outer limits of raunch 2 +144595 7849 her exploration 2 +144596 7849 of the outer limits of raunch 2 +144597 7849 the outer limits of raunch 1 +144598 7849 the outer limits 2 +144599 7849 outer limits 2 +144600 7849 of raunch 2 +144601 7849 with considerable brio 2 +144602 7850 Even if you do n't know the band or the album 's songs by heart , you will enjoy seeing how both evolve , and you will also learn a good deal about the state of the music business in the 21st Century . 3 +144603 7850 Even if you do n't know the band or the album 's songs by heart , you will enjoy seeing how both evolve , and you will also learn a good deal about the state of the music business in the 21st Century 3 +144604 7850 Even if you do n't know the band or the album 's songs by heart , you will enjoy seeing how both evolve , and 3 +144605 7850 Even if you do n't know the band or the album 's songs by heart , you will enjoy seeing how both evolve , 3 +144606 7850 Even if you do n't know the band or the album 's songs by heart , you will enjoy seeing how both evolve 3 +144607 7850 Even if you do n't know the band or the album 's songs by heart 2 +144608 7850 if you do n't know the band or the album 's songs by heart 2 +144609 7850 you do n't know the band or the album 's songs by heart 2 +144610 7850 do n't know the band or the album 's songs by heart 2 +144611 7850 know the band or the album 's songs by heart 3 +144612 7850 know the band or the album 's songs 2 +144613 7850 the band or the album 's songs 2 +144614 7850 the band or 2 +144615 7850 the album 's songs 2 +144616 7850 the album 's 2 +144617 7850 album 's 2 +144618 7850 by heart 2 +144619 7850 , you will enjoy seeing how both evolve 3 +144620 7850 you will enjoy seeing how both evolve 3 +144621 7850 will enjoy seeing how both evolve 3 +144622 7850 enjoy seeing how both evolve 4 +144623 7850 seeing how both evolve 2 +144624 7850 how both evolve 3 +144625 7850 both evolve 2 +144626 7850 evolve 3 +144627 7850 you will also learn a good deal about the state of the music business in the 21st Century 3 +144628 7850 will also learn a good deal about the state of the music business in the 21st Century 2 +144629 7850 will also 2 +144630 7850 learn a good deal about the state of the music business in the 21st Century 2 +144631 7850 learn a good deal 3 +144632 7850 a good deal 3 +144633 7850 good deal 3 +144634 7850 about the state of the music business in the 21st Century 2 +144635 7850 the state of the music business in the 21st Century 2 +144636 7850 of the music business in the 21st Century 2 +144637 7850 the music business in the 21st Century 2 +144638 7850 the music business 2 +144639 7850 music business 2 +144640 7850 in the 21st Century 2 +144641 7850 the 21st Century 2 +144642 7850 21st Century 2 +144643 7851 An off-beat and fanciful film about the human need for monsters to blame for all that is amiss in the world . 3 +144644 7851 An off-beat and fanciful film about the human need for monsters to blame for all that 3 +144645 7851 An off-beat and fanciful film 3 +144646 7851 off-beat and fanciful film 3 +144647 7851 off-beat and fanciful 3 +144648 7851 off-beat and 2 +144649 7851 about the human need for monsters to blame for all that 3 +144650 7851 the human need for monsters to blame for all that 2 +144651 7851 the human need 2 +144652 7851 human need 2 +144653 7851 for monsters to blame for all that 2 +144654 7851 monsters to blame for all that 2 +144655 7851 to blame for all that 2 +144656 7851 blame for all that 2 +144657 7851 for all that 2 +144658 7851 is amiss in the world . 1 +144659 7851 is amiss in the world 2 +144660 7851 amiss in the world 2 +144661 7851 amiss 2 +144662 7852 The fun of the movie is the chance it affords to watch Jackson , who also served as executive producer , take his smooth , shrewd , powerful act abroad . 4 +144663 7852 The fun of the movie 3 +144664 7852 is the chance it affords to watch Jackson , who also served as executive producer , take his smooth , shrewd , powerful act abroad . 3 +144665 7852 is the chance it affords to watch Jackson , who also served as executive producer , take his smooth , shrewd , powerful act abroad 3 +144666 7852 the chance it affords to watch Jackson , who also served as executive producer , take his smooth , shrewd , powerful act abroad 3 +144667 7852 the chance 2 +144668 7852 it affords to watch Jackson , who also served as executive producer , take his smooth , shrewd , powerful act abroad 3 +144669 7852 affords to watch Jackson , who also served as executive producer , take his smooth , shrewd , powerful act abroad 4 +144670 7852 to watch Jackson , who also served as executive producer , take his smooth , shrewd , powerful act abroad 4 +144671 7852 watch Jackson , who also served as executive producer , take his smooth , shrewd , powerful act abroad 3 +144672 7852 Jackson , who also served as executive producer , take his smooth , shrewd , powerful act abroad 4 +144673 7852 Jackson , who also served as executive producer , 2 +144674 7852 Jackson , who also served as executive producer 2 +144675 7852 Jackson , 2 +144676 7852 who also served as executive producer 2 +144677 7852 also served as executive producer 2 +144678 7852 served as executive producer 2 +144679 7852 as executive producer 2 +144680 7852 executive producer 2 +144681 7852 take his smooth , shrewd , powerful act abroad 3 +144682 7852 take his smooth , shrewd , powerful act 3 +144683 7852 his smooth , shrewd , powerful act 4 +144684 7852 smooth , shrewd , powerful act 3 +144685 7852 , shrewd , powerful act 3 +144686 7852 shrewd , powerful act 3 +144687 7852 , powerful act 3 +144688 7852 powerful act 3 +144689 7853 The power of this script , and the performances that come with it , is that the whole damned thing did n't get our moral hackles up . 2 +144690 7853 The power of this script , and the performances that come with it , 4 +144691 7853 The power of this script , and the performances that come with it 4 +144692 7853 The power of this script , and 3 +144693 7853 The power of this script , 4 +144694 7853 The power of this script 4 +144695 7853 of this script 2 +144696 7853 this script 3 +144697 7853 the performances that come with it 3 +144698 7853 that come with it 2 +144699 7853 come with it 2 +144700 7853 is that the whole damned thing did n't get our moral hackles up . 1 +144701 7853 is that the whole damned thing did n't get our moral hackles up 1 +144702 7853 that the whole damned thing did n't get our moral hackles up 1 +144703 7853 the whole damned thing did n't get our moral hackles up 1 +144704 7853 the whole damned thing 2 +144705 7853 whole damned thing 1 +144706 7853 damned thing 1 +144707 7853 did n't get our moral hackles up 2 +144708 7853 get our moral hackles up 1 +144709 7853 get our moral hackles 1 +144710 7853 our moral hackles 1 +144711 7853 moral hackles 2 +144712 7853 hackles 2 +144713 7854 A sharp satire of desperation and cinematic deception . 3 +144714 7854 A sharp satire of desperation and cinematic deception 2 +144715 7854 A sharp satire 3 +144716 7854 sharp satire 2 +144717 7854 of desperation and cinematic deception 2 +144718 7854 desperation and cinematic deception 1 +144719 7854 and cinematic deception 1 +144720 7854 cinematic deception 1 +144721 7855 Stale , futile scenario . 1 +144722 7855 Stale , futile scenario 1 +144723 7855 Stale , 1 +144724 7855 futile scenario 2 +144725 7856 With a tone as variable as the cinematography , Schaeffer 's film never settles into the light-footed enchantment the material needs , and the characters ' quirks and foibles never jell into charm . 1 +144726 7856 With a tone as variable as the cinematography 3 +144727 7856 a tone as variable as the cinematography 2 +144728 7856 as variable as the cinematography 2 +144729 7856 variable as the cinematography 2 +144730 7856 variable 3 +144731 7856 as the cinematography 2 +144732 7856 , Schaeffer 's film never settles into the light-footed enchantment the material needs , and the characters ' quirks and foibles never jell into charm . 1 +144733 7856 Schaeffer 's film never settles into the light-footed enchantment the material needs , and the characters ' quirks and foibles never jell into charm . 0 +144734 7856 Schaeffer 's film never settles into the light-footed enchantment the material needs , and the characters ' quirks and foibles never jell into charm 1 +144735 7856 Schaeffer 's film never settles into the light-footed enchantment the material needs , and 1 +144736 7856 Schaeffer 's film never settles into the light-footed enchantment the material needs , 1 +144737 7856 Schaeffer 's film never settles into the light-footed enchantment the material needs 1 +144738 7856 Schaeffer 's film 2 +144739 7856 Schaeffer 's 2 +144740 7856 never settles into the light-footed enchantment the material needs 1 +144741 7856 settles into the light-footed enchantment the material needs 3 +144742 7856 into the light-footed enchantment the material needs 2 +144743 7856 the light-footed enchantment the material needs 3 +144744 7856 the light-footed enchantment 3 +144745 7856 light-footed enchantment 2 +144746 7856 light-footed 2 +144747 7856 enchantment 3 +144748 7856 the material needs 2 +144749 7856 the characters ' quirks and foibles never jell into charm 1 +144750 7856 the characters ' quirks and foibles 2 +144751 7856 quirks and foibles 2 +144752 7856 quirks and 2 +144753 7856 never jell into charm 2 +144754 7856 jell into charm 3 +144755 7856 into charm 2 +144756 7857 `` Frailty '' has been written so well , that even a simple `` Goddammit ! '' 3 +144757 7857 Frailty '' has been written so well , that even a simple `` Goddammit ! '' 3 +144758 7857 '' has been written so well , that even a simple `` Goddammit ! '' 4 +144759 7857 has been written so well , that even a simple `` Goddammit ! '' 3 +144760 7857 has been written so well , that even a simple `` Goddammit ! 4 +144761 7857 has been written so well , that even a simple `` Goddammit 3 +144762 7857 been written so well , that even a simple `` Goddammit 3 +144763 7857 written so well , that even a simple `` Goddammit 3 +144764 7857 written so well , 4 +144765 7857 written so well 3 +144766 7857 that even a simple `` Goddammit 2 +144767 7857 a simple `` Goddammit 1 +144768 7857 a simple 2 +144769 7857 `` Goddammit 1 +144770 7857 Goddammit 0 +144771 7858 Feels familiar and tired . 1 +144772 7858 Feels familiar and tired 1 +144773 7858 familiar and tired 1 +144774 7859 Despite the holes in the story and the somewhat predictable plot , moments of the movie caused me to jump in my chair ... 2 +144775 7859 Despite the holes in the story and the somewhat predictable plot 2 +144776 7859 the holes in the story and the somewhat predictable plot 1 +144777 7859 in the story and the somewhat predictable plot 1 +144778 7859 the story and the somewhat predictable plot 1 +144779 7859 the somewhat predictable plot 1 +144780 7859 somewhat predictable plot 1 +144781 7859 somewhat predictable 1 +144782 7859 , moments of the movie caused me to jump in my chair ... 3 +144783 7859 moments of the movie caused me to jump in my chair ... 3 +144784 7859 moments of the movie 2 +144785 7859 caused me to jump in my chair ... 3 +144786 7859 caused me to jump in my chair 2 +144787 7859 caused 3 +144788 7859 me to jump in my chair 2 +144789 7859 to jump in my chair 3 +144790 7859 jump in my chair 2 +144791 7859 in my chair 2 +144792 7859 my chair 2 +144793 7860 Runs on the pure adrenalin of Pacino 's performance . 4 +144794 7860 Runs on the pure adrenalin of Pacino 's performance 3 +144795 7860 Runs on the pure adrenalin 4 +144796 7860 on the pure adrenalin 2 +144797 7860 the pure adrenalin 3 +144798 7860 pure adrenalin 4 +144799 7860 adrenalin 3 +144800 7860 of Pacino 's performance 2 +144801 7860 Pacino 's performance 2 +144802 7860 Pacino 's 2 +144803 7861 Borstal Boy represents the worst kind of filmmaking , the kind that pretends to be passionate and truthful but is really frustratingly timid and soggy . 0 +144804 7861 represents the worst kind of filmmaking , the kind that pretends to be passionate and truthful but is really frustratingly timid and soggy . 0 +144805 7861 represents the worst kind of filmmaking , the kind that pretends to be passionate and truthful but is really frustratingly timid and soggy 1 +144806 7861 the worst kind of filmmaking , the kind that pretends to be passionate and truthful but is really frustratingly timid and soggy 1 +144807 7861 of filmmaking , the kind that pretends to be passionate and truthful but is really frustratingly timid and soggy 1 +144808 7861 filmmaking , the kind that pretends to be passionate and truthful but is really frustratingly timid and soggy 1 +144809 7861 filmmaking , 2 +144810 7861 the kind that pretends to be passionate and truthful but is really frustratingly timid and soggy 1 +144811 7861 that pretends to be passionate and truthful but is really frustratingly timid and soggy 1 +144812 7861 pretends to be passionate and truthful but is really frustratingly timid and soggy 1 +144813 7861 pretends to be passionate and truthful but 1 +144814 7861 pretends to be passionate and truthful 1 +144815 7861 to be passionate and truthful 3 +144816 7861 be passionate and truthful 2 +144817 7861 passionate and truthful 3 +144818 7861 passionate and 3 +144819 7861 is really frustratingly timid and soggy 0 +144820 7861 frustratingly timid and soggy 1 +144821 7861 timid and soggy 1 +144822 7861 timid and 2 +144823 7862 Mr. Scorsese 's bravery and integrity in advancing this vision can hardly be underestimated . 3 +144824 7862 Mr. Scorsese 's bravery and integrity in advancing this vision 3 +144825 7862 Mr. Scorsese 's bravery and integrity 4 +144826 7862 Mr. Scorsese 's 3 +144827 7862 bravery and integrity 3 +144828 7862 in advancing this vision 2 +144829 7862 advancing this vision 3 +144830 7862 advancing 3 +144831 7862 this vision 2 +144832 7862 can hardly be underestimated . 2 +144833 7862 can hardly be underestimated 2 +144834 7862 can hardly 2 +144835 7862 be underestimated 1 +144836 7863 The movie is a mess from start to finish . 1 +144837 7863 is a mess from start to finish . 0 +144838 7863 is a mess from start to finish 0 +144839 7863 a mess from start to finish 0 +144840 7863 a mess from start 2 +144841 7864 A distinguished and thoughtful film , marked by acute writing and a host of splendid performances . 4 +144842 7864 A distinguished and thoughtful film 4 +144843 7864 distinguished and thoughtful film 4 +144844 7864 distinguished and thoughtful 4 +144845 7864 distinguished and 3 +144846 7864 , marked by acute writing and a host of splendid performances . 4 +144847 7864 marked by acute writing and a host of splendid performances . 4 +144848 7864 marked by acute writing and a host of splendid performances 4 +144849 7864 by acute writing and a host of splendid performances 3 +144850 7864 acute writing and a host of splendid performances 4 +144851 7864 acute writing and 2 +144852 7864 acute writing 3 +144853 7864 a host of splendid performances 4 +144854 7864 a host 2 +144855 7864 of splendid performances 4 +144856 7865 Demonstrates the unusual power of thoughtful , subjective filmmaking . 4 +144857 7865 Demonstrates the unusual power of thoughtful , subjective filmmaking 3 +144858 7865 the unusual power of thoughtful , subjective filmmaking 3 +144859 7865 the unusual power 3 +144860 7865 unusual power 3 +144861 7865 of thoughtful , subjective filmmaking 3 +144862 7865 thoughtful , subjective filmmaking 3 +144863 7865 , subjective filmmaking 2 +144864 7865 subjective filmmaking 2 +144865 7865 subjective 1 +144866 7866 In other words , about as bad a film you 're likely to see all year . 0 +144867 7866 In other words , about as bad a film 1 +144868 7866 other words , about as bad a film 0 +144869 7866 other words , about 2 +144870 7866 other words , 2 +144871 7866 as bad a film 0 +144872 7866 you 're likely to see all year . 3 +144873 7866 're likely to see all year . 2 +144874 7866 're likely to see all year 2 +144875 7867 A fine production with splendid singing by Angela Gheorghiu , Ruggero Raimondi , and Roberto Alagna . 4 +144876 7867 A fine production with splendid singing by Angela Gheorghiu , Ruggero Raimondi , and Roberto Alagna 4 +144877 7867 A fine production with splendid singing 4 +144878 7867 A fine production 3 +144879 7867 fine production 4 +144880 7867 with splendid singing 3 +144881 7867 splendid singing 4 +144882 7867 by Angela Gheorghiu , Ruggero Raimondi , and Roberto Alagna 2 +144883 7867 Angela Gheorghiu , Ruggero Raimondi , and Roberto Alagna 2 +144884 7867 Angela Gheorghiu , Ruggero Raimondi , and 2 +144885 7867 Angela Gheorghiu , Ruggero Raimondi , 2 +144886 7867 Angela Gheorghiu , Ruggero Raimondi 2 +144887 7867 Angela Gheorghiu , 2 +144888 7867 Ruggero Raimondi 2 +144889 7867 Raimondi 2 +144890 7868 The most ill-conceived animated comedy since the 1991 dog Rover Dangerfield . 2 +144891 7868 The most ill-conceived animated comedy since the 1991 dog Rover 0 +144892 7868 The most ill-conceived animated comedy 0 +144893 7868 most ill-conceived animated comedy 1 +144894 7868 most ill-conceived 0 +144895 7868 animated comedy 2 +144896 7868 since the 1991 dog Rover 2 +144897 7868 the 1991 dog Rover 2 +144898 7868 1991 dog Rover 2 +144899 7868 1991 3 +144900 7868 dog Rover 2 +144901 7868 Rover 2 +144902 7868 Dangerfield . 2 +144903 7868 Dangerfield 2 +144904 7869 Even during the climactic hourlong cricket match , boredom never takes hold . 3 +144905 7869 Even during the climactic hourlong cricket match 2 +144906 7869 during the climactic hourlong cricket match 2 +144907 7869 the climactic hourlong cricket match 3 +144908 7869 climactic hourlong cricket match 2 +144909 7869 hourlong cricket match 2 +144910 7869 hourlong 2 +144911 7869 cricket match 2 +144912 7869 , boredom never takes hold . 3 +144913 7869 boredom never takes hold . 3 +144914 7869 never takes hold . 1 +144915 7869 takes hold . 3 +144916 7869 takes hold 3 +144917 7870 Aptly named , this shimmering , beautifully costumed and filmed production does n't work for me . 2 +144918 7870 Aptly named 2 +144919 7870 Aptly 3 +144920 7870 , this shimmering , beautifully costumed and filmed production does n't work for me . 2 +144921 7870 this shimmering , beautifully costumed and filmed production does n't work for me . 2 +144922 7870 this shimmering , beautifully costumed and filmed production 3 +144923 7870 this shimmering , beautifully costumed and 4 +144924 7870 this shimmering , beautifully costumed 3 +144925 7870 shimmering , beautifully costumed 4 +144926 7870 shimmering 2 +144927 7870 , beautifully costumed 3 +144928 7870 beautifully costumed 3 +144929 7870 costumed 2 +144930 7870 filmed production 2 +144931 7870 does n't work for me . 1 +144932 7870 does n't work for me 0 +144933 7870 work for me 2 +144934 7871 An unremittingly ugly movie to look at , listen to , and think about , it is quite possibly the sturdiest example yet of why the DV revolution has cheapened the artistry of making a film . 0 +144935 7871 An unremittingly ugly movie to look at , listen to , and think about 0 +144936 7871 An unremittingly ugly movie 0 +144937 7871 unremittingly ugly movie 0 +144938 7871 unremittingly ugly 1 +144939 7871 unremittingly 2 +144940 7871 to look at , listen to , and think about 3 +144941 7871 look at , listen to , and think about 2 +144942 7871 look at , listen to , and 2 +144943 7871 look at , listen to , 2 +144944 7871 look at , listen to 2 +144945 7871 look at , 2 +144946 7871 , it is quite possibly the sturdiest example yet of why the DV revolution has cheapened the artistry of making a film . 0 +144947 7871 it is quite possibly the sturdiest example yet of why the DV revolution has cheapened the artistry of making a film . 1 +144948 7871 is quite possibly the sturdiest example yet of why the DV revolution has cheapened the artistry of making a film . 1 +144949 7871 is quite possibly the sturdiest example yet of why the DV revolution has cheapened the artistry of making a film 2 +144950 7871 quite possibly the sturdiest example yet of why the DV revolution has cheapened the artistry of making a film 0 +144951 7871 quite possibly the sturdiest example yet 4 +144952 7871 possibly the sturdiest example yet 4 +144953 7871 the sturdiest example yet 3 +144954 7871 sturdiest example yet 3 +144955 7871 sturdiest 2 +144956 7871 example yet 2 +144957 7871 of why the DV revolution has cheapened the artistry of making a film 1 +144958 7871 why the DV revolution has cheapened the artistry of making a film 2 +144959 7871 the DV revolution has cheapened the artistry of making a film 1 +144960 7871 the DV revolution 2 +144961 7871 DV revolution 2 +144962 7871 has cheapened the artistry of making a film 1 +144963 7871 cheapened the artistry of making a film 1 +144964 7871 cheapened 1 +144965 7871 the artistry of making a film 3 +144966 7871 the artistry 2 +144967 7871 of making a film 2 +144968 7871 making a film 2 +144969 7872 Meant for Star Wars fans . 2 +144970 7872 Meant for Star Wars fans 2 +144971 7872 for Star Wars fans 2 +144972 7872 Star Wars fans 2 +144973 7872 Wars fans 2 +144974 7873 It 's that painful . 0 +144975 7873 's that painful . 1 +144976 7873 's that painful 1 +144977 7873 that painful 2 +144978 7874 The film , like Jimmy 's routines , could use a few good laughs . 1 +144979 7874 The film , like Jimmy 's routines , 2 +144980 7874 The film , like Jimmy 's routines 2 +144981 7874 like Jimmy 's routines 3 +144982 7874 Jimmy 's routines 2 +144983 7874 could use a few good laughs . 2 +144984 7874 could use a few good laughs 2 +144985 7874 use a few good laughs 3 +144986 7874 a few good laughs 3 +144987 7874 few good laughs 2 +144988 7875 Highly watchable stuff . 4 +144989 7875 watchable stuff . 3 +144990 7875 watchable stuff 3 +144991 7876 The faithful will enjoy this sometimes wry adaptation of V.S. Naipaul 's novel , but newcomers may find themselves stifling a yawn or two during the first hour . 2 +144992 7876 The faithful will enjoy this sometimes wry adaptation of V.S. Naipaul 's novel , but newcomers may find themselves stifling a yawn or two during the first hour 2 +144993 7876 The faithful will enjoy this sometimes wry adaptation of V.S. Naipaul 's novel , but 3 +144994 7876 The faithful will enjoy this sometimes wry adaptation of V.S. Naipaul 's novel , 3 +144995 7876 The faithful will enjoy this sometimes wry adaptation of V.S. Naipaul 's novel 3 +144996 7876 will enjoy this sometimes wry adaptation of V.S. Naipaul 's novel 3 +144997 7876 enjoy this sometimes wry adaptation of V.S. Naipaul 's novel 3 +144998 7876 this sometimes wry adaptation of V.S. Naipaul 's novel 1 +144999 7876 this sometimes wry adaptation 3 +145000 7876 sometimes wry adaptation 2 +145001 7876 sometimes wry 2 +145002 7876 of V.S. Naipaul 's novel 2 +145003 7876 V.S. Naipaul 's novel 2 +145004 7876 V.S. Naipaul 's 2 +145005 7876 V.S. 2 +145006 7876 Naipaul 's 2 +145007 7876 newcomers may find themselves stifling a yawn or two during the first hour 1 +145008 7876 may find themselves stifling a yawn or two during the first hour 1 +145009 7876 find themselves stifling a yawn or two during the first hour 1 +145010 7876 themselves stifling a yawn or two during the first hour 1 +145011 7876 stifling a yawn or two during the first hour 1 +145012 7876 stifling a yawn or two 1 +145013 7876 a yawn or two 2 +145014 7876 a yawn or 1 +145015 7876 a yawn 1 +145016 7876 yawn 1 +145017 7876 during the first hour 2 +145018 7876 the first hour 2 +145019 7876 first hour 2 +145020 7877 `` Sweet Home Alabama '' is what it is -- a nice , harmless date film ... 3 +145021 7877 Sweet Home Alabama '' is what it is -- a nice , harmless date film ... 3 +145022 7877 Sweet Home Alabama '' 2 +145023 7877 Home Alabama '' 2 +145024 7877 Alabama '' 2 +145025 7877 is what it is -- a nice , harmless date film ... 3 +145026 7877 is what it is -- a nice , harmless date film 3 +145027 7877 what it is -- a nice , harmless date film 3 +145028 7877 -- a nice , harmless date film 3 +145029 7877 a nice , harmless date film 3 +145030 7877 nice , harmless date film 3 +145031 7877 nice , harmless 3 +145032 7877 , harmless 2 +145033 7878 It 's not difficult to spot the culprit early-on in this predictable thriller . 2 +145034 7878 's not difficult to spot the culprit early-on in this predictable thriller . 2 +145035 7878 's not difficult to spot the culprit early-on in this predictable thriller 2 +145036 7878 difficult to spot the culprit early-on in this predictable thriller 3 +145037 7878 to spot the culprit early-on in this predictable thriller 2 +145038 7878 spot the culprit early-on in this predictable thriller 1 +145039 7878 spot the culprit early-on 3 +145040 7878 the culprit early-on 2 +145041 7878 culprit early-on 2 +145042 7878 culprit 2 +145043 7878 early-on 2 +145044 7878 in this predictable thriller 1 +145045 7878 this predictable thriller 2 +145046 7878 predictable thriller 1 +145047 7879 I found myself liking the film , though in this case one man 's treasure could prove to be another man 's garbage . 2 +145048 7879 found myself liking the film , though in this case one man 's treasure could prove to be another man 's garbage . 2 +145049 7879 found myself liking the film , though in this case one man 's treasure could prove to be another man 's garbage 2 +145050 7879 found myself liking the film , 3 +145051 7879 found myself liking the film 3 +145052 7879 liking the film 3 +145053 7879 though in this case one man 's treasure could prove to be another man 's garbage 2 +145054 7879 in this case one man 's treasure could prove to be another man 's garbage 1 +145055 7879 one man 's treasure could prove to be another man 's garbage 2 +145056 7879 one man 's treasure 3 +145057 7879 could prove to be another man 's garbage 1 +145058 7879 prove to be another man 's garbage 2 +145059 7879 to be another man 's garbage 2 +145060 7879 be another man 's garbage 2 +145061 7879 another man 's garbage 2 +145062 7879 another man 's 2 +145063 7880 Diaz wears out her welcome in her most charmless performance 0 +145064 7880 wears out her welcome in her most charmless performance 1 +145065 7880 her welcome in her most charmless performance 1 +145066 7880 welcome in her most charmless performance 2 +145067 7880 welcome in her most charmless 1 +145068 7880 in her most charmless 1 +145069 7880 her most charmless 1 +145070 7880 most charmless 1 +145071 7881 The script manages the rare trick of seeming at once both refreshingly different and reassuringly familiar . 3 +145072 7881 manages the rare trick of seeming at once both refreshingly different and reassuringly familiar . 4 +145073 7881 manages the rare trick of seeming at once both refreshingly different and reassuringly familiar 3 +145074 7881 the rare trick of seeming at once both refreshingly different and reassuringly familiar 3 +145075 7881 of seeming at once both refreshingly different and reassuringly familiar 3 +145076 7881 seeming at once both refreshingly different and reassuringly familiar 3 +145077 7881 at once both refreshingly different and reassuringly familiar 3 +145078 7881 at once both refreshingly different and 3 +145079 7881 at once both refreshingly different 4 +145080 7881 both refreshingly different 3 +145081 7881 refreshingly different 2 +145082 7881 reassuringly familiar 3 +145083 7881 reassuringly 2 +145084 7882 It 's a clear-eyed portrait of an intensely lived time , filled with nervous energy , moral ambiguity and great uncertainties . 3 +145085 7882 's a clear-eyed portrait of an intensely lived time , filled with nervous energy , moral ambiguity and great uncertainties . 3 +145086 7882 's a clear-eyed portrait of an intensely lived time , filled with nervous energy , moral ambiguity and great uncertainties 3 +145087 7882 a clear-eyed portrait of an intensely lived time , filled with nervous energy , moral ambiguity and great uncertainties 4 +145088 7882 a clear-eyed portrait 3 +145089 7882 clear-eyed portrait 3 +145090 7882 of an intensely lived time , filled with nervous energy , moral ambiguity and great uncertainties 3 +145091 7882 an intensely lived time , filled with nervous energy , moral ambiguity and great uncertainties 4 +145092 7882 an intensely lived time , 3 +145093 7882 an intensely lived time 3 +145094 7882 intensely lived time 2 +145095 7882 intensely lived 3 +145096 7882 filled with nervous energy , moral ambiguity and great uncertainties 2 +145097 7882 with nervous energy , moral ambiguity and great uncertainties 3 +145098 7882 nervous energy , moral ambiguity and great uncertainties 2 +145099 7882 nervous energy , moral ambiguity and 2 +145100 7882 nervous energy , moral ambiguity 2 +145101 7882 nervous energy , 2 +145102 7882 nervous energy 2 +145103 7882 moral ambiguity 2 +145104 7882 great uncertainties 2 +145105 7882 uncertainties 1 +145106 7883 an admirable , sometimes exceptional film 4 +145107 7883 an admirable , 4 +145108 7883 an admirable 3 +145109 7883 sometimes exceptional film 3 +145110 7883 exceptional film 4 +145111 7884 A mediocre exercise in target demographics , unaware that it 's the butt of its own joke . 1 +145112 7884 A mediocre exercise in target demographics 1 +145113 7884 A mediocre exercise 1 +145114 7884 mediocre exercise 1 +145115 7884 in target demographics 2 +145116 7884 target demographics 2 +145117 7884 demographics 2 +145118 7884 , unaware that it 's the butt of its own joke . 1 +145119 7884 unaware that it 's the butt of its own joke . 1 +145120 7884 unaware that it 's the butt of its own joke 1 +145121 7884 unaware 1 +145122 7884 that it 's the butt of its own joke 1 +145123 7884 it 's the butt of its own joke 1 +145124 7884 's the butt of its own joke 1 +145125 7884 the butt of its own joke 1 +145126 7884 the butt 1 +145127 7884 of its own joke 2 +145128 7884 its own joke 2 +145129 7885 Well cast and well directed - a powerful drama with enough sardonic wit to keep it from being maudlin . 4 +145130 7885 cast and well directed - a powerful drama with enough sardonic wit to keep it from being maudlin . 2 +145131 7885 cast and well directed - a powerful drama with enough sardonic wit to keep it from being maudlin 4 +145132 7885 cast and well 2 +145133 7885 directed - a powerful drama with enough sardonic wit to keep it from being maudlin 3 +145134 7885 directed - 2 +145135 7885 a powerful drama with enough sardonic wit to keep it from being maudlin 3 +145136 7885 a powerful drama with enough sardonic wit 3 +145137 7885 a powerful drama 3 +145138 7885 powerful drama 4 +145139 7885 with enough sardonic wit 3 +145140 7885 enough sardonic wit 2 +145141 7885 enough sardonic 1 +145142 7885 to keep it from being maudlin 1 +145143 7885 keep it from being maudlin 2 +145144 7885 from being maudlin 2 +145145 7885 being maudlin 2 +145146 7886 This big screen caper has a good bark , far from being a bow-wow . 2 +145147 7886 This big screen caper 2 +145148 7886 big screen caper 2 +145149 7886 screen caper 2 +145150 7886 has a good bark , far from being a bow-wow . 3 +145151 7886 has a good bark , far from being a bow-wow 3 +145152 7886 has a good bark , 3 +145153 7886 has a good bark 3 +145154 7886 a good bark 3 +145155 7886 good bark 3 +145156 7886 far from being a bow-wow 3 +145157 7886 from being a bow-wow 2 +145158 7886 being a bow-wow 2 +145159 7886 a bow-wow 1 +145160 7886 bow-wow 2 +145161 7887 The doofus-on - the-loose banter of Welcome to Collinwood has a cocky , after-hours loopiness to it . 2 +145162 7887 The doofus-on 2 +145163 7887 doofus-on 1 +145164 7887 - the-loose banter of Welcome to Collinwood has a cocky , after-hours loopiness to it . 2 +145165 7887 the-loose banter of Welcome to Collinwood has a cocky , after-hours loopiness to it . 3 +145166 7887 the-loose banter of Welcome to Collinwood has a cocky , after-hours loopiness to it 3 +145167 7887 the-loose banter of Welcome to Collinwood 2 +145168 7887 the-loose banter 2 +145169 7887 the-loose 2 +145170 7887 of Welcome to Collinwood 2 +145171 7887 has a cocky , after-hours loopiness to it 2 +145172 7887 a cocky , after-hours loopiness to it 2 +145173 7887 a cocky , after-hours loopiness 1 +145174 7887 cocky , after-hours loopiness 2 +145175 7887 cocky 2 +145176 7887 , after-hours loopiness 2 +145177 7887 after-hours loopiness 2 +145178 7887 after-hours 1 +145179 7887 loopiness 2 +145180 7888 The comedy is nonexistent . 0 +145181 7888 is nonexistent . 1 +145182 7888 is nonexistent 2 +145183 7889 The first Bond movie in ages that is n't fake fun . 3 +145184 7889 The first Bond movie in ages that is n't fake fun 3 +145185 7889 The first Bond movie 2 +145186 7889 first Bond movie 2 +145187 7889 in ages that is n't fake fun 2 +145188 7889 ages that is n't fake fun 3 +145189 7889 that is n't fake fun 2 +145190 7889 is n't fake fun 2 +145191 7889 fake fun 2 +145192 7890 A wretched movie that reduces the Second World War to one man 's quest to find an old flame . 1 +145193 7890 A wretched movie that reduces the Second World War to one man 0 +145194 7890 A wretched movie 1 +145195 7890 wretched movie 0 +145196 7890 wretched 0 +145197 7890 that reduces the Second World War to one man 2 +145198 7890 reduces the Second World War to one man 2 +145199 7890 the Second World War to one man 2 +145200 7890 the Second World War 2 +145201 7890 Second World War 2 +145202 7890 World War 2 +145203 7890 to one man 2 +145204 7890 's quest to find an old flame . 2 +145205 7890 's quest to find an old flame 2 +145206 7890 quest to find an old flame 2 +145207 7890 to find an old flame 3 +145208 7890 find an old flame 2 +145209 7890 an old flame 2 +145210 7890 old flame 2 +145211 7891 Death to Smoochy is often very funny , but what 's even more remarkable is the integrity of DeVito 's misanthropic vision . 3 +145212 7891 Death to Smoochy is often very funny , but what 's even more remarkable is the integrity of DeVito 's misanthropic vision 3 +145213 7891 Death to Smoochy is often very funny , but 2 +145214 7891 Death to Smoochy is often very funny , 3 +145215 7891 Death to Smoochy is often very funny 3 +145216 7891 is often very funny 4 +145217 7891 what 's even more remarkable is the integrity of DeVito 's misanthropic vision 4 +145218 7891 what 's even more remarkable 3 +145219 7891 's even more remarkable 3 +145220 7891 even more remarkable 3 +145221 7891 more remarkable 2 +145222 7891 is the integrity of DeVito 's misanthropic vision 2 +145223 7891 the integrity of DeVito 's misanthropic vision 2 +145224 7891 of DeVito 's misanthropic vision 1 +145225 7891 DeVito 's misanthropic vision 3 +145226 7891 misanthropic vision 2 +145227 7892 Armed with a game supporting cast , from the pitch-perfect Forster to the always hilarious Meara and Levy , Like Mike shoots and scores , doing its namesake proud . 4 +145228 7892 Armed with a game supporting cast , from the pitch-perfect Forster to the always hilarious Meara and Levy , Like Mike shoots and scores , doing its namesake proud 4 +145229 7892 Armed with a game supporting cast , 4 +145230 7892 Armed with a game supporting cast 3 +145231 7892 with a game supporting cast 3 +145232 7892 a game supporting cast 3 +145233 7892 game supporting cast 3 +145234 7892 from the pitch-perfect Forster to the always hilarious Meara and Levy , Like Mike shoots and scores , doing its namesake proud 4 +145235 7892 the pitch-perfect Forster to the always hilarious Meara and Levy , Like Mike shoots and scores , doing its namesake proud 4 +145236 7892 the pitch-perfect Forster to the always hilarious Meara and Levy 3 +145237 7892 the pitch-perfect Forster 3 +145238 7892 pitch-perfect Forster 3 +145239 7892 Forster 2 +145240 7892 to the always hilarious Meara and Levy 3 +145241 7892 the always hilarious Meara and Levy 3 +145242 7892 the always hilarious Meara and 3 +145243 7892 the always hilarious Meara 3 +145244 7892 always hilarious Meara 3 +145245 7892 Meara 2 +145246 7892 , Like Mike shoots and scores , doing its namesake proud 4 +145247 7892 Like Mike shoots and scores , doing its namesake proud 3 +145248 7892 Like Mike shoots and scores 3 +145249 7892 Mike shoots and scores 3 +145250 7892 shoots and scores 3 +145251 7892 shoots and 2 +145252 7892 , doing its namesake proud 3 +145253 7892 doing its namesake proud 3 +145254 7892 its namesake proud 4 +145255 7892 its namesake 2 +145256 7892 namesake 2 +145257 7893 Claire is a terrific role for someone like Judd , who really ought to be playing villains . 3 +145258 7893 Claire 2 +145259 7893 is a terrific role for someone like Judd , who really ought to be playing villains . 4 +145260 7893 is a terrific role for someone like Judd , who really ought to be playing villains 3 +145261 7893 a terrific role for someone like Judd , who really ought to be playing villains 4 +145262 7893 a terrific role 4 +145263 7893 terrific role 3 +145264 7893 for someone like Judd , who really ought to be playing villains 1 +145265 7893 someone like Judd , who really ought to be playing villains 2 +145266 7893 someone like Judd , 2 +145267 7893 someone like Judd 2 +145268 7893 like Judd 2 +145269 7893 who really ought to be playing villains 2 +145270 7893 really ought to be playing villains 2 +145271 7893 ought to be playing villains 2 +145272 7893 to be playing villains 2 +145273 7893 be playing villains 2 +145274 7893 playing villains 2 +145275 7894 Too bad Kramer could n't make a guest appearance to liven things up . 1 +145276 7894 Too bad Kramer 3 +145277 7894 Kramer 2 +145278 7894 could n't make a guest appearance to liven things up . 2 +145279 7894 could n't make a guest appearance to liven things up 1 +145280 7894 make a guest appearance to liven things up 2 +145281 7894 make a guest appearance 2 +145282 7894 a guest appearance 2 +145283 7894 guest appearance 3 +145284 7894 to liven things up 3 +145285 7894 liven things up 2 +145286 7894 liven things 2 +145287 7894 liven 2 +145288 7895 If Hill is n't quite his generation 's Don Siegel -LRB- or Robert Aldrich -RRB- , it 's because there 's no discernible feeling beneath the chest hair ; 1 +145289 7895 If Hill is n't quite his generation 's Don Siegel -LRB- or Robert Aldrich -RRB- , it 's because there 's no discernible feeling beneath the chest hair 1 +145290 7895 If Hill is n't quite his generation 's Don Siegel -LRB- or Robert Aldrich -RRB- 2 +145291 7895 Hill is n't quite his generation 's Don Siegel -LRB- or Robert Aldrich -RRB- 2 +145292 7895 is n't quite his generation 's Don Siegel -LRB- or Robert Aldrich -RRB- 2 +145293 7895 is n't quite 1 +145294 7895 his generation 's Don Siegel -LRB- or Robert Aldrich -RRB- 2 +145295 7895 his generation 's Don Siegel 2 +145296 7895 his generation 's 3 +145297 7895 Don Siegel 2 +145298 7895 -LRB- or Robert Aldrich -RRB- 2 +145299 7895 -LRB- or Robert Aldrich 3 +145300 7895 Robert Aldrich 2 +145301 7895 Aldrich 2 +145302 7895 , it 's because there 's no discernible feeling beneath the chest hair 1 +145303 7895 it 's because there 's no discernible feeling beneath the chest hair 1 +145304 7895 's because there 's no discernible feeling beneath the chest hair 1 +145305 7895 because there 's no discernible feeling beneath the chest hair 2 +145306 7895 there 's no discernible feeling beneath the chest hair 1 +145307 7895 's no discernible feeling beneath the chest hair 1 +145308 7895 no discernible feeling beneath the chest hair 1 +145309 7895 no discernible feeling 1 +145310 7895 discernible feeling 2 +145311 7895 beneath the chest hair 2 +145312 7895 the chest hair 2 +145313 7895 chest hair 2 +145314 7895 bluster and 1 +145315 7896 But you 'd never guess that from the performances . 2 +145316 7896 you 'd never guess that from the performances . 1 +145317 7896 'd never guess that from the performances . 2 +145318 7896 'd never guess that from the performances 2 +145319 7896 'd never 2 +145320 7896 guess that from the performances 2 +145321 7896 guess that 2 +145322 7896 from the performances 2 +145323 7897 Cannon 's confidence and laid-back good spirits are , with the drumming routines , among the film 's saving graces . 3 +145324 7897 Cannon 's confidence and laid-back good spirits 3 +145325 7897 Cannon 's confidence and 3 +145326 7897 Cannon 's confidence 3 +145327 7897 Cannon 's 2 +145328 7897 laid-back good spirits 3 +145329 7897 good spirits 4 +145330 7897 are , with the drumming routines , among the film 's saving graces . 3 +145331 7897 are , with the drumming routines , among the film 's saving graces 3 +145332 7897 are , with the drumming routines , 2 +145333 7897 are , with the drumming routines 2 +145334 7897 are , 2 +145335 7897 with the drumming routines 2 +145336 7897 the drumming routines 2 +145337 7897 drumming routines 2 +145338 7897 drumming 2 +145339 7897 among the film 's saving graces 2 +145340 7897 the film 's saving graces 3 +145341 7897 saving graces 2 +145342 7897 graces 3 +145343 7898 The movie is hardly a masterpiece , but it does mark Ms. Bullock 's best work in some time . 3 +145344 7898 The movie is hardly a masterpiece , but it does mark Ms. Bullock 's best work in some time 3 +145345 7898 The movie is hardly a masterpiece , but 2 +145346 7898 The movie is hardly a masterpiece , 1 +145347 7898 The movie is hardly a masterpiece 0 +145348 7898 is hardly a masterpiece 0 +145349 7898 it does mark Ms. Bullock 's best work in some time 4 +145350 7898 does mark Ms. Bullock 's best work in some time 3 +145351 7898 mark Ms. Bullock 's best work in some time 4 +145352 7898 mark Ms. Bullock 's best work 4 +145353 7898 Ms. Bullock 's best work 3 +145354 7898 Ms. Bullock 's 2 +145355 7898 in some time 2 +145356 7899 The film becomes an overwhelming pleasure , and you find yourself rooting for Gai 's character to avoid the fate that has befallen every other Carmen before her . 3 +145357 7899 The film becomes an overwhelming pleasure , and you find yourself rooting for Gai 's character to avoid the fate that has befallen every other Carmen before her 4 +145358 7899 The film becomes an overwhelming pleasure , and 3 +145359 7899 The film becomes an overwhelming pleasure , 4 +145360 7899 The film becomes an overwhelming pleasure 3 +145361 7899 becomes an overwhelming pleasure 3 +145362 7899 an overwhelming pleasure 3 +145363 7899 overwhelming pleasure 4 +145364 7899 you find yourself rooting for Gai 's character to avoid the fate that has befallen every other Carmen before her 4 +145365 7899 find yourself rooting for Gai 's character to avoid the fate that has befallen every other Carmen before her 3 +145366 7899 yourself rooting for Gai 's character to avoid the fate that has befallen every other Carmen before her 2 +145367 7899 rooting for Gai 's character to avoid the fate that has befallen every other Carmen before her 2 +145368 7899 for Gai 's character to avoid the fate that has befallen every other Carmen before her 3 +145369 7899 Gai 's character to avoid the fate that has befallen every other Carmen before her 2 +145370 7899 Gai 's 2 +145371 7899 character to avoid the fate that has befallen every other Carmen before her 3 +145372 7899 to avoid the fate that has befallen every other Carmen before her 2 +145373 7899 avoid the fate that has befallen every other Carmen before her 2 +145374 7899 the fate that has befallen every other Carmen before her 2 +145375 7899 the fate 2 +145376 7899 that has befallen every other Carmen before her 2 +145377 7899 has befallen every other Carmen before her 2 +145378 7899 befallen every other Carmen before her 3 +145379 7899 befallen every other Carmen 2 +145380 7899 befallen 1 +145381 7899 every other Carmen 2 +145382 7899 other Carmen 2 +145383 7899 before her 2 +145384 7900 Nearly all the fundamentals you take for granted in most films are mishandled here . 1 +145385 7900 Nearly all the fundamentals 2 +145386 7900 all the fundamentals 2 +145387 7900 the fundamentals 2 +145388 7900 you take for granted in most films are mishandled here . 1 +145389 7900 take for granted in most films are mishandled here . 1 +145390 7900 take for granted in most films are mishandled here 2 +145391 7900 for granted in most films are mishandled here 1 +145392 7900 granted in most films are mishandled here 2 +145393 7900 granted in most films 2 +145394 7900 granted 2 +145395 7900 in most films 2 +145396 7900 most films 2 +145397 7900 are mishandled here 2 +145398 7900 mishandled here 1 +145399 7900 mishandled 1 +145400 7901 -LRB- Clooney 's -RRB- debut can be accused of being a bit undisciplined , but it has a tremendous , offbeat sense of style and humor that suggests he was influenced by some of the filmmakers who have directed him , especially the Coen brothers and Steven Soderbergh . 3 +145401 7901 -LRB- Clooney 's -RRB- debut can be accused of being a bit undisciplined , but it has a tremendous , offbeat sense of style and humor that suggests he was influenced by some of the filmmakers who have directed him , especially the Coen brothers and Steven Soderbergh 3 +145402 7901 -LRB- Clooney 's -RRB- debut can be accused of being a bit undisciplined , but 1 +145403 7901 -LRB- Clooney 's -RRB- debut can be accused of being a bit undisciplined , 1 +145404 7901 -LRB- Clooney 's -RRB- debut can be accused of being a bit undisciplined 1 +145405 7901 Clooney 's -RRB- debut can be accused of being a bit undisciplined 1 +145406 7901 Clooney 's 2 +145407 7901 -RRB- debut can be accused of being a bit undisciplined 1 +145408 7901 debut can be accused of being a bit undisciplined 1 +145409 7901 can be accused of being a bit undisciplined 1 +145410 7901 be accused of being a bit undisciplined 2 +145411 7901 accused of being a bit undisciplined 1 +145412 7901 accused 2 +145413 7901 of being a bit undisciplined 1 +145414 7901 being a bit undisciplined 2 +145415 7901 a bit undisciplined 2 +145416 7901 undisciplined 0 +145417 7901 it has a tremendous , offbeat sense of style and humor that suggests he was influenced by some of the filmmakers who have directed him , especially the Coen brothers and Steven Soderbergh 4 +145418 7901 has a tremendous , offbeat sense of style and humor that suggests he was influenced by some of the filmmakers who have directed him , especially the Coen brothers and Steven Soderbergh 4 +145419 7901 a tremendous , offbeat sense of style and humor that suggests he was influenced by some of the filmmakers who have directed him , especially the Coen brothers and Steven Soderbergh 3 +145420 7901 a tremendous , offbeat sense of style and humor 4 +145421 7901 a tremendous , offbeat sense 3 +145422 7901 tremendous , offbeat sense 3 +145423 7901 , offbeat sense 2 +145424 7901 offbeat sense 2 +145425 7901 of style and humor 2 +145426 7901 style and humor 3 +145427 7901 that suggests he was influenced by some of the filmmakers who have directed him , especially the Coen brothers and Steven Soderbergh 2 +145428 7901 suggests he was influenced by some of the filmmakers who have directed him , especially the Coen brothers and Steven Soderbergh 2 +145429 7901 he was influenced by some of the filmmakers who have directed him , especially the Coen brothers and Steven Soderbergh 2 +145430 7901 was influenced by some of the filmmakers who have directed him , especially the Coen brothers and Steven Soderbergh 3 +145431 7901 influenced by some of the filmmakers who have directed him , especially the Coen brothers and Steven Soderbergh 3 +145432 7901 by some of the filmmakers who have directed him , especially the Coen brothers and Steven Soderbergh 2 +145433 7901 some of the filmmakers who have directed him , especially the Coen brothers and Steven Soderbergh 3 +145434 7901 of the filmmakers who have directed him , especially the Coen brothers and Steven Soderbergh 3 +145435 7901 the filmmakers who have directed him , especially the Coen brothers and Steven Soderbergh 2 +145436 7901 the filmmakers who have directed him , especially 2 +145437 7901 the filmmakers who have directed him , 2 +145438 7901 the filmmakers who have directed him 2 +145439 7901 who have directed him 2 +145440 7901 have directed him 2 +145441 7901 directed him 2 +145442 7901 the Coen brothers and Steven Soderbergh 2 +145443 7901 the Coen brothers and 3 +145444 7901 the Coen brothers 2 +145445 7901 Coen brothers 2 +145446 7901 Coen 2 +145447 7902 The pitch must have read like a discarded House Beautiful spread . 2 +145448 7902 must have read like a discarded House Beautiful spread . 2 +145449 7902 must have read like a discarded House Beautiful spread 2 +145450 7902 have read like a discarded House Beautiful spread 2 +145451 7902 read like a discarded House Beautiful spread 3 +145452 7902 like a discarded House Beautiful spread 1 +145453 7902 a discarded House Beautiful spread 2 +145454 7902 discarded House Beautiful spread 2 +145455 7902 House Beautiful spread 2 +145456 7902 Beautiful spread 3 +145457 7903 Go . 2 +145458 7904 For free . 2 +145459 7905 Bring tissues . 3 +145460 7905 Bring tissues 3 +145461 7906 The Piano Teacher is not an easy film . 1 +145462 7907 By the time you reach the finale , you 're likely wondering why you 've been watching all this strutting and posturing . 0 +145463 7907 By the time you reach the finale 2 +145464 7907 you reach the finale 3 +145465 7907 reach the finale 2 +145466 7907 , you 're likely wondering why you 've been watching all this strutting and posturing . 1 +145467 7907 you 're likely wondering why you 've been watching all this strutting and posturing . 1 +145468 7907 're likely wondering why you 've been watching all this strutting and posturing . 2 +145469 7907 're likely wondering why you 've been watching all this strutting and posturing 2 +145470 7907 're likely 2 +145471 7907 wondering why you 've been watching all this strutting and posturing 1 +145472 7907 why you 've been watching all this strutting and posturing 2 +145473 7907 you 've been watching all this strutting and posturing 2 +145474 7907 've been watching all this strutting and posturing 2 +145475 7907 been watching all this strutting and posturing 2 +145476 7907 watching all this strutting and posturing 2 +145477 7907 watching all this strutting and 2 +145478 7907 watching all this strutting 2 +145479 7907 all this strutting 2 +145480 7907 this strutting 2 +145481 7907 strutting 2 +145482 7908 Lawrence should stick to his day job . 1 +145483 7908 should stick to his day job . 0 +145484 7908 should stick to his day job 1 +145485 7908 stick to his day job 1 +145486 7908 to his day job 3 +145487 7908 his day job 2 +145488 7908 day job 2 +145489 7909 Sparkles in its deft portrait of Tinseltown 's seasoned veterans of gossip , wealth , paranoia , and celebrityhood . 2 +145490 7909 Sparkles in its deft portrait of Tinseltown 's seasoned veterans of gossip , wealth , 4 +145491 7909 Sparkles in its deft portrait of Tinseltown 's seasoned veterans of gossip , wealth 3 +145492 7909 Sparkles in its deft portrait of Tinseltown 's seasoned veterans of gossip , 3 +145493 7909 Sparkles in its deft portrait of Tinseltown 's seasoned veterans of gossip 3 +145494 7909 Sparkles in its deft portrait of Tinseltown 's seasoned veterans 3 +145495 7909 in its deft portrait of Tinseltown 's seasoned veterans 2 +145496 7909 its deft portrait of Tinseltown 's seasoned veterans 3 +145497 7909 its deft portrait 1 +145498 7909 deft portrait 3 +145499 7909 of Tinseltown 's seasoned veterans 2 +145500 7909 Tinseltown 's seasoned veterans 2 +145501 7909 Tinseltown 's 2 +145502 7909 seasoned veterans 2 +145503 7909 of gossip 2 +145504 7909 wealth 3 +145505 7909 paranoia , and celebrityhood . 2 +145506 7909 paranoia , and celebrityhood 2 +145507 7909 paranoia , and 1 +145508 7909 paranoia , 2 +145509 7909 celebrityhood 2 +145510 7910 Sex With Strangers will shock many with its unblinking frankness . 2 +145511 7910 will shock many with its unblinking frankness . 3 +145512 7910 will shock many with its unblinking frankness 3 +145513 7910 shock many with its unblinking frankness 2 +145514 7910 shock many 2 +145515 7910 with its unblinking frankness 2 +145516 7910 its unblinking frankness 2 +145517 7910 unblinking frankness 2 +145518 7910 frankness 2 +145519 7911 Plays like a checklist of everything Rob Reiner and his cast were sending up . 2 +145520 7911 Plays like a checklist of everything Rob Reiner and his cast 2 +145521 7911 like a checklist of everything Rob Reiner and his cast 1 +145522 7911 a checklist of everything Rob Reiner and his cast 2 +145523 7911 a checklist 2 +145524 7911 of everything Rob Reiner and his cast 2 +145525 7911 everything Rob Reiner and his cast 2 +145526 7911 everything Rob Reiner and 2 +145527 7911 everything Rob Reiner 2 +145528 7911 Rob Reiner 2 +145529 7911 Reiner 2 +145530 7911 were sending up . 2 +145531 7911 were sending up 2 +145532 7911 sending up 2 +145533 7911 sending 2 +145534 7912 This movie has the usual impossible stunts ... But it has just as many scenes that are lean and tough enough to fit in any modern action movie . 3 +145535 7912 This movie has the usual impossible stunts ... But it has just as many scenes that are lean and tough enough to fit in any modern action movie 3 +145536 7912 This movie has the usual impossible stunts ... But 2 +145537 7912 This movie has the usual impossible stunts ... 3 +145538 7912 This movie has the usual impossible stunts 2 +145539 7912 has the usual impossible stunts 3 +145540 7912 the usual impossible stunts 2 +145541 7912 usual impossible stunts 2 +145542 7912 usual impossible 2 +145543 7912 it has just as many scenes that are lean and tough enough to fit in any modern action movie 3 +145544 7912 has just as many scenes that are lean and tough enough to fit in any modern action movie 3 +145545 7912 just as many scenes that are lean and tough enough to fit in any modern action movie 3 +145546 7912 just as many scenes 2 +145547 7912 just as many 2 +145548 7912 that are lean and tough enough to fit in any modern action movie 4 +145549 7912 are lean and tough enough to fit in any modern action movie 3 +145550 7912 lean and tough enough to fit in any modern action movie 3 +145551 7912 lean and 2 +145552 7912 tough enough to fit in any modern action movie 3 +145553 7912 tough enough 2 +145554 7912 to fit in any modern action movie 2 +145555 7912 fit in any modern action movie 3 +145556 7912 in any modern action movie 2 +145557 7912 any modern action movie 2 +145558 7912 modern action movie 2 +145559 7913 As if Drop Dead Gorgeous was n't enough , this equally derisive clunker is fixated on the spectacle of small-town competition . 1 +145560 7913 As if Drop Dead Gorgeous was n't enough 2 +145561 7913 Drop Dead Gorgeous was n't enough 2 +145562 7913 Drop Dead Gorgeous 4 +145563 7913 Dead Gorgeous 3 +145564 7913 was n't enough 1 +145565 7913 , this equally derisive clunker is fixated on the spectacle of small-town competition . 2 +145566 7913 this equally derisive clunker is fixated on the spectacle of small-town competition . 1 +145567 7913 this equally derisive clunker 1 +145568 7913 equally derisive clunker 0 +145569 7913 equally derisive 1 +145570 7913 derisive 1 +145571 7913 clunker 1 +145572 7913 is fixated on the spectacle of small-town competition . 2 +145573 7913 is fixated on the spectacle of small-town competition 2 +145574 7913 fixated on the spectacle of small-town competition 2 +145575 7913 fixated 2 +145576 7913 on the spectacle of small-town competition 2 +145577 7913 the spectacle of small-town competition 3 +145578 7913 of small-town competition 3 +145579 7913 small-town competition 2 +145580 7914 It 's a drag how Nettelbeck sees working women -- or at least this working woman -- for whom she shows little understanding . 0 +145581 7914 's a drag how Nettelbeck sees working women -- or at least this working woman -- for whom she shows little understanding . 1 +145582 7914 's a drag how Nettelbeck sees working women -- or at least this working woman -- for whom she shows little understanding 1 +145583 7914 a drag how Nettelbeck sees working women -- or at least this working woman -- for whom she shows little understanding 1 +145584 7914 a drag 0 +145585 7914 how Nettelbeck sees working women -- or at least this working woman -- for whom she shows little understanding 2 +145586 7914 Nettelbeck sees working women -- or at least this working woman -- for whom she shows little understanding 1 +145587 7914 sees working women -- or at least this working woman -- for whom she shows little understanding 2 +145588 7914 working women -- or at least this working woman -- for whom she shows little understanding 1 +145589 7914 working women -- or at least this working woman -- 2 +145590 7914 working women 2 +145591 7914 -- or at least this working woman -- 2 +145592 7914 or at least this working woman -- 2 +145593 7914 at least this working woman -- 2 +145594 7914 this working woman -- 2 +145595 7914 this working woman 2 +145596 7914 working woman 2 +145597 7914 for whom she shows little understanding 1 +145598 7914 whom she shows little understanding 2 +145599 7914 she shows little understanding 2 +145600 7914 shows little understanding 3 +145601 7914 little understanding 2 +145602 7915 Such a bad movie that its luckiest viewers will be seated next to one of those ignorant pinheads who talk throughout the show . 0 +145603 7915 Such a bad movie that its luckiest viewers will be seated next to one of those ignorant 0 +145604 7915 Such a bad movie 0 +145605 7915 that its luckiest viewers will be seated next to one of those ignorant 3 +145606 7915 its luckiest viewers will be seated next to one of those ignorant 1 +145607 7915 its luckiest viewers 3 +145608 7915 luckiest viewers 3 +145609 7915 will be seated next to one of those ignorant 2 +145610 7915 be seated next to one of those ignorant 2 +145611 7915 seated next to one of those ignorant 2 +145612 7915 seated next 2 +145613 7915 seated 2 +145614 7915 to one of those ignorant 1 +145615 7915 one of those ignorant 2 +145616 7915 of those ignorant 2 +145617 7915 those ignorant 2 +145618 7915 pinheads who talk throughout the show . 1 +145619 7915 pinheads who talk throughout the show 1 +145620 7915 pinheads 1 +145621 7915 who talk throughout the show 2 +145622 7915 talk throughout the show 2 +145623 7915 throughout the show 2 +145624 7916 Promises is one film that 's truly deserving of its Oscar nomination . 4 +145625 7916 is one film that 's truly deserving of its Oscar nomination . 4 +145626 7916 is one film that 's truly deserving of its Oscar nomination 3 +145627 7916 one film that 's truly deserving of its Oscar nomination 4 +145628 7916 one film 3 +145629 7916 that 's truly deserving of its Oscar nomination 4 +145630 7916 's truly deserving of its Oscar nomination 3 +145631 7916 truly deserving of its Oscar nomination 4 +145632 7916 deserving of its Oscar nomination 4 +145633 7916 of its Oscar nomination 3 +145634 7916 its Oscar nomination 3 +145635 7917 `` 13 Conversations '' holds its goodwill close , but is relatively slow to come to the point . 2 +145636 7917 13 Conversations '' holds its goodwill close , but is relatively slow to come to the point . 2 +145637 7917 '' holds its goodwill close , but is relatively slow to come to the point . 2 +145638 7917 holds its goodwill close , but is relatively slow to come to the point . 1 +145639 7917 holds its goodwill close , but is relatively slow to come to the point 1 +145640 7917 holds its goodwill close , but 2 +145641 7917 holds its goodwill close , 3 +145642 7917 holds its goodwill close 3 +145643 7917 its goodwill close 3 +145644 7917 goodwill close 2 +145645 7917 is relatively slow to come to the point 1 +145646 7917 relatively slow to come to the point 1 +145647 7917 slow to come to the point 1 +145648 7917 to come to the point 2 +145649 7917 come to the point 2 +145650 7918 some good , organic character work , lots of obvious political insights and 3 +145651 7918 some good , organic character work , lots of obvious political insights 3 +145652 7918 some good , organic character work , 3 +145653 7918 some good , organic character work 3 +145654 7918 good , organic character work 4 +145655 7918 , organic character work 3 +145656 7918 organic character work 2 +145657 7918 character work 2 +145658 7918 lots of obvious political insights 3 +145659 7918 of obvious political insights 2 +145660 7918 obvious political insights 3 +145661 7918 political insights 2 +145662 7918 engaging , imaginative filmmaking 4 +145663 7918 , imaginative filmmaking 3 +145664 7918 imaginative filmmaking 3 +145665 7918 - hour , dissipated length . 1 +145666 7918 hour , dissipated length . 2 +145667 7918 hour , dissipated length 2 +145668 7918 hour , 2 +145669 7918 dissipated length 2 +145670 7918 dissipated 2 +145671 7919 Such a wildly uneven hit-and-miss enterprise , you ca n't help suspecting that it was improvised on a day-to-day basis during production . 1 +145672 7919 Such a wildly uneven hit-and-miss enterprise 1 +145673 7919 a wildly uneven hit-and-miss enterprise 1 +145674 7919 wildly uneven hit-and-miss enterprise 1 +145675 7919 hit-and-miss enterprise 2 +145676 7919 hit-and-miss 2 +145677 7919 , you ca n't help suspecting that it was improvised on a day-to-day basis during production . 1 +145678 7919 you ca n't help suspecting that it was improvised on a day-to-day basis during production . 2 +145679 7919 ca n't help suspecting that it was improvised on a day-to-day basis during production . 1 +145680 7919 ca n't help suspecting that it was improvised on a day-to-day basis during production 1 +145681 7919 help suspecting that it was improvised on a day-to-day basis during production 2 +145682 7919 suspecting that it was improvised on a day-to-day basis during production 1 +145683 7919 suspecting 2 +145684 7919 that it was improvised on a day-to-day basis during production 2 +145685 7919 it was improvised on a day-to-day basis during production 2 +145686 7919 was improvised on a day-to-day basis during production 2 +145687 7919 improvised on a day-to-day basis during production 1 +145688 7919 improvised on a day-to-day basis 2 +145689 7919 on a day-to-day basis 2 +145690 7919 a day-to-day basis 2 +145691 7919 day-to-day basis 2 +145692 7919 day-to-day 2 +145693 7919 during production 2 +145694 7920 The stars may be college kids , but the subject matter is as adult as you can get : the temptations of the flesh are unleashed by a slightly crazed , overtly determined young woman and a one-night swim turns into an ocean of trouble . 3 +145695 7920 The stars may be college kids , but the subject matter is as adult as you can get : the temptations of the flesh are unleashed by a slightly crazed , overtly determined young woman and a one-night swim turns into an ocean of trouble 3 +145696 7920 The stars may be college kids , but the subject matter is as adult as you can get : the temptations of the flesh are unleashed by a slightly crazed , overtly determined young woman and 2 +145697 7920 The stars may be college kids , but the subject matter is as adult as you can get : the temptations of the flesh are unleashed by a slightly crazed , overtly determined young woman 3 +145698 7920 The stars may be college kids , but the subject matter is as adult as you can get : 3 +145699 7920 The stars may be college kids , but the subject matter is as adult as you can get 3 +145700 7920 The stars may be college kids , but 2 +145701 7920 The stars may be college kids , 2 +145702 7920 The stars may be college kids 2 +145703 7920 may be college kids 2 +145704 7920 be college kids 2 +145705 7920 college kids 2 +145706 7920 the subject matter is as adult as you can get 3 +145707 7920 is as adult as you can get 3 +145708 7920 is as adult 2 +145709 7920 as adult 2 +145710 7920 as you can get 2 +145711 7920 you can get 2 +145712 7920 can get 2 +145713 7920 the temptations of the flesh are unleashed by a slightly crazed , overtly determined young woman 2 +145714 7920 the temptations of the flesh 2 +145715 7920 the temptations 2 +145716 7920 temptations 2 +145717 7920 of the flesh 3 +145718 7920 the flesh 2 +145719 7920 are unleashed by a slightly crazed , overtly determined young woman 2 +145720 7920 unleashed by a slightly crazed , overtly determined young woman 3 +145721 7920 unleashed 2 +145722 7920 by a slightly crazed , overtly determined young woman 2 +145723 7920 a slightly crazed , overtly determined young woman 2 +145724 7920 slightly crazed , overtly determined young woman 2 +145725 7920 slightly crazed , overtly determined 2 +145726 7920 crazed , overtly determined 2 +145727 7920 , overtly determined 2 +145728 7920 overtly determined 2 +145729 7920 a one-night swim turns into an ocean of trouble 2 +145730 7920 a one-night swim 2 +145731 7920 one-night swim 2 +145732 7920 one-night 2 +145733 7920 turns into an ocean of trouble 1 +145734 7920 into an ocean of trouble 1 +145735 7920 an ocean of trouble 2 +145736 7920 an ocean 2 +145737 7920 of trouble 2 +145738 7921 , `` They 're out there ! '' 3 +145739 7921 `` They 're out there ! '' 2 +145740 7921 They 're out there ! '' 2 +145741 7921 're out there ! '' 3 +145742 7921 're out there ! 2 +145743 7921 out there ! 3 +145744 7921 there ! 2 +145745 7922 In the end , there is n't much to it . 0 +145746 7922 , there is n't much to it . 1 +145747 7922 there is n't much to it . 1 +145748 7922 is n't much to it . 1 +145749 7922 is n't much to it 1 +145750 7922 much to it 3 +145751 7923 It makes me feel weird \/ Thinking about all the bad things in the world \/ Like puppies with broken legs \/ And butterflies that die \/ And movies starring pop queens 1 +145752 7923 makes me feel weird \/ Thinking about all the bad things in the world \/ Like puppies with broken legs \/ And butterflies that die \/ And movies starring pop queens 1 +145753 7923 me feel weird \/ Thinking about all the bad things in the world \/ Like puppies with broken legs \/ And butterflies that die \/ And movies starring pop queens 1 +145754 7923 feel weird \/ Thinking about all the bad things in the world \/ Like puppies with broken legs \/ And butterflies that die \/ And movies starring pop queens 2 +145755 7923 weird \/ Thinking about all the bad things in the world \/ Like puppies with broken legs \/ And butterflies that die \/ And movies starring pop queens 1 +145756 7923 weird \/ Thinking about all the bad things in the world \/ 2 +145757 7923 weird \/ Thinking 2 +145758 7923 \/ Thinking 2 +145759 7923 about all the bad things in the world \/ 2 +145760 7923 all the bad things in the world \/ 0 +145761 7923 all the bad things 1 +145762 7923 the bad things 1 +145763 7923 in the world \/ 2 +145764 7923 the world \/ 2 +145765 7923 world \/ 2 +145766 7923 Like puppies with broken legs \/ And butterflies that die \/ And movies starring pop queens 1 +145767 7923 Like puppies with broken legs 1 +145768 7923 puppies with broken legs 1 +145769 7923 puppies 2 +145770 7923 with broken legs 2 +145771 7923 broken legs 2 +145772 7923 legs 3 +145773 7923 \/ And butterflies that die \/ And movies starring pop queens 2 +145774 7923 And butterflies that die \/ And movies starring pop queens 2 +145775 7923 And butterflies that die \/ And 2 +145776 7923 And butterflies that die \/ 2 +145777 7923 butterflies that die \/ 2 +145778 7923 butterflies that die 1 +145779 7923 that die 2 +145780 7923 movies starring pop queens 2 +145781 7923 starring pop queens 2 +145782 7923 pop queens 2 +145783 7924 Collapses after 30 minutes into a slap-happy series of adolescent violence . 0 +145784 7924 Collapses after 30 minutes into a slap-happy series of adolescent violence 1 +145785 7924 Collapses after 30 minutes into a slap-happy series 1 +145786 7924 after 30 minutes into a slap-happy series 1 +145787 7924 30 minutes into a slap-happy series 2 +145788 7924 into a slap-happy series 2 +145789 7924 a slap-happy series 3 +145790 7924 slap-happy series 2 +145791 7924 of adolescent violence 1 +145792 7924 adolescent violence 2 +145793 7925 What starts off as a satisfying kids flck becomes increasingly implausible as it races through contrived plot points . 1 +145794 7925 starts off as a satisfying kids flck becomes increasingly implausible as it races through contrived plot points . 1 +145795 7925 starts off as a satisfying kids flck becomes increasingly implausible as it races through contrived plot points 1 +145796 7925 as a satisfying kids flck becomes increasingly implausible as it races through contrived plot points 1 +145797 7925 a satisfying kids flck becomes increasingly implausible as it races through contrived plot points 1 +145798 7925 a satisfying kids flck 3 +145799 7925 satisfying kids flck 3 +145800 7925 kids flck 2 +145801 7925 flck 2 +145802 7925 becomes increasingly implausible as it races through contrived plot points 2 +145803 7925 becomes increasingly implausible as it races 1 +145804 7925 increasingly implausible as it races 1 +145805 7925 increasingly implausible as it 1 +145806 7925 implausible as it 2 +145807 7925 through contrived plot points 1 +145808 7925 contrived plot points 1 +145809 7926 It 's absolutely amazing how first-time director Kevin Donovan managed to find something new to add to the canon of Chan . 3 +145810 7926 's absolutely amazing how first-time director Kevin Donovan managed to find something new to add to the canon of Chan . 3 +145811 7926 's absolutely amazing how first-time director Kevin Donovan managed to find something new to add to the canon of Chan 4 +145812 7926 's absolutely amazing 4 +145813 7926 absolutely amazing 4 +145814 7926 how first-time director Kevin Donovan managed to find something new to add to the canon of Chan 3 +145815 7926 first-time director Kevin Donovan managed to find something new to add to the canon of Chan 3 +145816 7926 first-time director Kevin Donovan 2 +145817 7926 director Kevin Donovan 2 +145818 7926 managed to find something new to add to the canon of Chan 3 +145819 7926 to find something new to add to the canon of Chan 2 +145820 7926 find something new to add to the canon of Chan 2 +145821 7926 find something new 2 +145822 7926 to add to the canon of Chan 2 +145823 7926 add to the canon of Chan 2 +145824 7926 to the canon of Chan 2 +145825 7926 the canon of Chan 2 +145826 7926 the canon 2 +145827 7926 of Chan 2 +145828 7927 Really quite funny . 4 +145829 7927 Really quite funny 4 +145830 7928 Prepare to marvel again . 3 +145831 7928 Prepare to marvel again 4 +145832 7928 to marvel again 2 +145833 7928 marvel again 3 +145834 7929 It 's definitely an improvement on the first Blade , since it does n't take itself so deadly seriously . 3 +145835 7929 's definitely an improvement on the first Blade , since it does n't take itself so deadly seriously . 2 +145836 7929 's definitely an improvement on the first Blade , since it does n't take itself so deadly seriously 3 +145837 7929 's definitely an improvement on the first Blade , 3 +145838 7929 's definitely an improvement on the first Blade 3 +145839 7929 an improvement on the first Blade 3 +145840 7929 on the first Blade 2 +145841 7929 the first Blade 2 +145842 7929 first Blade 2 +145843 7929 since it does n't take itself so deadly seriously 3 +145844 7929 it does n't take itself so deadly seriously 3 +145845 7929 does n't take itself so deadly seriously 3 +145846 7929 take itself so deadly seriously 2 +145847 7929 itself so deadly seriously 2 +145848 7929 so deadly seriously 2 +145849 7930 But mostly it 's a work that , with humor , warmth , and intelligence , captures a life interestingly lived . 4 +145850 7930 mostly it 's a work that , with humor , warmth , and intelligence , captures a life interestingly lived . 4 +145851 7930 it 's a work that , with humor , warmth , and intelligence , captures a life interestingly lived . 4 +145852 7930 's a work that , with humor , warmth , and intelligence , captures a life interestingly lived . 4 +145853 7930 's a work that , with humor , warmth , and intelligence , captures a life interestingly lived 4 +145854 7930 a work that , with humor , warmth , and intelligence , captures a life interestingly lived 3 +145855 7930 that , with humor , warmth , and intelligence , captures a life interestingly lived 4 +145856 7930 , with humor , warmth , and intelligence , captures a life interestingly lived 4 +145857 7930 with humor , warmth , and intelligence , captures a life interestingly lived 4 +145858 7930 with humor , warmth , and intelligence 4 +145859 7930 humor , warmth , and intelligence 4 +145860 7930 humor , warmth , and 4 +145861 7930 humor , warmth , 3 +145862 7930 humor , warmth 3 +145863 7930 humor , 2 +145864 7930 , captures a life interestingly lived 3 +145865 7930 captures a life interestingly lived 3 +145866 7930 a life interestingly lived 3 +145867 7930 a life interestingly 3 +145868 7930 life interestingly 2 +145869 7930 interestingly 3 +145870 7931 Brash , intelligent and erotically perplexing , Haneke 's portrait of an upper class Austrian society and the suppression of its tucked away demons is uniquely felt with a sardonic jolt . 4 +145871 7931 Brash , intelligent and erotically perplexing , Haneke 's portrait of an upper class Austrian society and the suppression of its tucked away demons 3 +145872 7931 Brash , intelligent and erotically perplexing , Haneke 's portrait of an upper class Austrian society and the suppression of its tucked away 4 +145873 7931 Brash , intelligent and erotically perplexing 4 +145874 7931 Brash , intelligent and 4 +145875 7931 Brash , intelligent 4 +145876 7931 Brash , 2 +145877 7931 erotically perplexing 2 +145878 7931 perplexing 2 +145879 7931 , Haneke 's portrait of an upper class Austrian society and the suppression of its tucked away 2 +145880 7931 Haneke 's portrait of an upper class Austrian society and the suppression of its tucked away 2 +145881 7931 Haneke 's portrait of an upper class Austrian society and 2 +145882 7931 Haneke 's portrait of an upper class Austrian society 2 +145883 7931 Haneke 's portrait 2 +145884 7931 of an upper class Austrian society 3 +145885 7931 an upper class Austrian society 2 +145886 7931 upper class Austrian society 2 +145887 7931 class Austrian society 2 +145888 7931 Austrian society 2 +145889 7931 Austrian 2 +145890 7931 the suppression of its tucked away 2 +145891 7931 the suppression 2 +145892 7931 suppression 2 +145893 7931 of its tucked away 2 +145894 7931 its tucked away 2 +145895 7931 its tucked 2 +145896 7931 is uniquely felt with a sardonic jolt . 3 +145897 7931 is uniquely felt with a sardonic jolt 3 +145898 7931 uniquely felt with a sardonic jolt 3 +145899 7931 felt with a sardonic jolt 1 +145900 7931 with a sardonic jolt 2 +145901 7931 a sardonic jolt 3 +145902 7931 sardonic jolt 1 +145903 7932 Succeeds as a well-made evocation of a subculture . 3 +145904 7932 Succeeds as a well-made evocation of a subculture 3 +145905 7932 Succeeds as a well-made evocation 4 +145906 7932 as a well-made evocation 3 +145907 7932 a well-made evocation 3 +145908 7932 well-made evocation 3 +145909 7932 evocation 2 +145910 7933 It may not be history -- but then again , what if it is ? 2 +145911 7933 may not be history -- but then again , what if it is ? 2 +145912 7933 may not be history -- but then again , what if it is 2 +145913 7933 may not be history -- but then again , 2 +145914 7933 may not be history -- but then again 2 +145915 7933 may not be history -- but 2 +145916 7933 may not be history -- 2 +145917 7933 may not be history 2 +145918 7933 be history 2 +145919 7933 what if it is 2 +145920 7933 if it is 2 +145921 7934 A backstage must-see for true fans of comedy . 4 +145922 7934 A backstage must-see for true fans of comedy 4 +145923 7934 A backstage must-see for true fans 3 +145924 7934 A backstage must-see 4 +145925 7934 backstage must-see 3 +145926 7934 for true fans 3 +145927 7934 true fans 3 +145928 7934 of comedy 2 +145929 7935 Allen 's funniest and most likeable movie in years . 4 +145930 7935 's funniest and most likeable movie in years . 4 +145931 7935 's funniest and most likeable movie in years 4 +145932 7935 funniest and most likeable movie in years 4 +145933 7935 funniest and most likeable movie 4 +145934 7935 funniest and most likeable 3 +145935 7935 most likeable 4 +145936 7936 Medem may have disrobed most of the cast , leaving their bodies exposed , but the plot remains as guarded as a virgin with a chastity belt . 1 +145937 7936 Medem may have disrobed most of the cast , leaving their bodies exposed , but the plot remains as guarded as a virgin with a chastity belt 1 +145938 7936 Medem may have disrobed most of the cast , leaving their bodies exposed , but 2 +145939 7936 Medem may have disrobed most of the cast , leaving their bodies exposed , 2 +145940 7936 Medem may have disrobed most of the cast , leaving their bodies exposed 2 +145941 7936 Medem 2 +145942 7936 may have disrobed most of the cast , leaving their bodies exposed 2 +145943 7936 have disrobed most of the cast , leaving their bodies exposed 2 +145944 7936 disrobed most of the cast , leaving their bodies exposed 2 +145945 7936 disrobed most of the cast , 1 +145946 7936 disrobed most of the cast 2 +145947 7936 disrobed 2 +145948 7936 most of the cast 2 +145949 7936 leaving their bodies exposed 2 +145950 7936 their bodies exposed 2 +145951 7936 their bodies 3 +145952 7936 exposed 2 +145953 7936 the plot remains as guarded as a virgin with a chastity belt 1 +145954 7936 remains as guarded as a virgin with a chastity belt 1 +145955 7936 as guarded as a virgin with a chastity belt 2 +145956 7936 guarded as a virgin with a chastity belt 2 +145957 7936 as a virgin with a chastity belt 2 +145958 7936 a virgin with a chastity belt 2 +145959 7936 a virgin 2 +145960 7936 virgin 2 +145961 7936 with a chastity belt 2 +145962 7936 a chastity belt 2 +145963 7936 chastity belt 2 +145964 7936 chastity 2 +145965 7937 Well-meaning but inert . 2 +145966 7937 Well-meaning but inert 1 +145967 7937 Well-meaning but 2 +145968 7938 An inconsequential , barely there bit of piffle . 1 +145969 7938 An inconsequential 1 +145970 7938 , barely there bit of piffle . 2 +145971 7938 barely there bit of piffle . 2 +145972 7938 there bit of piffle . 2 +145973 7938 bit of piffle . 1 +145974 7938 bit of piffle 2 +145975 7938 of piffle 1 +145976 7939 Do you chuckle at the thought of an ancient librarian whacking a certain part of a man 's body ? 2 +145977 7939 Do you chuckle at the thought of an ancient librarian whacking a certain part of a man 's body 1 +145978 7939 chuckle at the thought of an ancient librarian whacking a certain part of a man 's body 2 +145979 7939 at the thought of an ancient librarian whacking a certain part of a man 's body 1 +145980 7939 the thought of an ancient librarian whacking a certain part of a man 's body 2 +145981 7939 of an ancient librarian whacking a certain part of a man 's body 2 +145982 7939 an ancient librarian whacking a certain part of a man 's body 1 +145983 7939 an ancient librarian 1 +145984 7939 ancient librarian 2 +145985 7939 whacking a certain part of a man 's body 2 +145986 7939 whacking 2 +145987 7939 a certain part of a man 's body 3 +145988 7939 a certain part 2 +145989 7939 certain part 2 +145990 7939 of a man 's body 2 +145991 7939 a man 's body 2 +145992 7939 a man 's 2 +145993 7940 How good this film might be , depends if you believe that the shocking conclusion is too much of a plunge or not . 3 +145994 7940 How good this film might be 2 +145995 7940 this film might be 2 +145996 7940 might be 2 +145997 7940 , depends if you believe that the shocking conclusion is too much of a plunge or not . 2 +145998 7940 depends if you believe that the shocking conclusion is too much of a plunge or not . 2 +145999 7940 depends if you believe that the shocking conclusion is too much of a plunge or not 2 +146000 7940 if you believe that the shocking conclusion is too much of a plunge or not 2 +146001 7940 if you believe that the shocking conclusion is too much of a plunge or 1 +146002 7940 if you believe that the shocking conclusion is too much of a plunge 2 +146003 7940 you believe that the shocking conclusion is too much of a plunge 1 +146004 7940 believe that the shocking conclusion is too much of a plunge 2 +146005 7940 that the shocking conclusion is too much of a plunge 1 +146006 7940 the shocking conclusion is too much of a plunge 1 +146007 7940 the shocking conclusion 3 +146008 7940 shocking conclusion 2 +146009 7940 is too much of a plunge 1 +146010 7940 too much of a plunge 1 +146011 7940 much of a plunge 1 +146012 7940 of a plunge 2 +146013 7940 a plunge 2 +146014 7940 plunge 2 +146015 7941 For something as splendid-looking as this particular film , the viewer expects something special but instead gets -LRB- sci-fi -RRB- rehash . 1 +146016 7941 For something as splendid-looking as this particular film 3 +146017 7941 something as splendid-looking as this particular film 4 +146018 7941 as splendid-looking as this particular film 4 +146019 7941 splendid-looking as this particular film 3 +146020 7941 splendid-looking 4 +146021 7941 as this particular film 2 +146022 7941 this particular film 2 +146023 7941 particular film 2 +146024 7941 , the viewer expects something special but instead gets -LRB- sci-fi -RRB- rehash . 2 +146025 7941 the viewer expects something special but instead gets -LRB- sci-fi -RRB- rehash . 1 +146026 7941 expects something special but instead gets -LRB- sci-fi -RRB- rehash . 1 +146027 7941 expects something special but instead gets -LRB- sci-fi -RRB- rehash 1 +146028 7941 expects something special but 1 +146029 7941 expects something special 2 +146030 7941 instead gets -LRB- sci-fi -RRB- rehash 1 +146031 7941 gets -LRB- sci-fi -RRB- rehash 2 +146032 7941 -LRB- sci-fi -RRB- rehash 1 +146033 7941 -LRB- sci-fi -RRB- 2 +146034 7941 sci-fi -RRB- 2 +146035 7942 With Dirty Deeds , David Caesar has stepped into the mainstream of filmmaking with an assurance worthy of international acclaim and with every cinematic tool well under his control -- driven by a natural sense for what works on screen . 4 +146036 7942 With Dirty Deeds 2 +146037 7942 Dirty Deeds 2 +146038 7942 , David Caesar has stepped into the mainstream of filmmaking with an assurance worthy of international acclaim and with every cinematic tool well under his control -- driven by a natural sense for what works on screen . 3 +146039 7942 David Caesar has stepped into the mainstream of filmmaking with an assurance worthy of international acclaim and with every cinematic tool well under his control -- driven by a natural sense for what works on screen . 4 +146040 7942 has stepped into the mainstream of filmmaking with an assurance worthy of international acclaim and with every cinematic tool well under his control -- driven by a natural sense for what works on screen . 3 +146041 7942 has stepped into the mainstream of filmmaking with an assurance worthy of international acclaim and with every cinematic tool well under his control -- driven by a natural sense for what works on screen 4 +146042 7942 has stepped into the mainstream of filmmaking with an assurance worthy of international acclaim and with every cinematic tool well under his control -- driven by a natural sense for what works 4 +146043 7942 has stepped into the mainstream of filmmaking with an assurance worthy of international acclaim and with every cinematic tool well under his control -- 4 +146044 7942 has stepped into the mainstream of filmmaking with an assurance worthy of international acclaim and with every cinematic tool well under his control 3 +146045 7942 has stepped into the mainstream of filmmaking with an assurance worthy of international acclaim and 3 +146046 7942 has stepped into the mainstream of filmmaking with an assurance worthy of international acclaim 3 +146047 7942 stepped into the mainstream of filmmaking with an assurance worthy of international acclaim 4 +146048 7942 into the mainstream of filmmaking with an assurance worthy of international acclaim 4 +146049 7942 the mainstream of filmmaking with an assurance worthy of international acclaim 3 +146050 7942 of filmmaking with an assurance worthy of international acclaim 3 +146051 7942 filmmaking with an assurance worthy of international acclaim 4 +146052 7942 with an assurance worthy of international acclaim 4 +146053 7942 an assurance worthy of international acclaim 3 +146054 7942 an assurance worthy 3 +146055 7942 assurance worthy 3 +146056 7942 assurance 3 +146057 7942 of international acclaim 3 +146058 7942 international acclaim 3 +146059 7942 acclaim 3 +146060 7942 with every cinematic tool well under his control 4 +146061 7942 with every cinematic tool 3 +146062 7942 every cinematic tool 2 +146063 7942 cinematic tool 2 +146064 7942 well under his control 2 +146065 7942 under his control 3 +146066 7942 his control 1 +146067 7942 driven by a natural sense for what works 3 +146068 7942 by a natural sense for what works 3 +146069 7942 a natural sense for what works 4 +146070 7942 a natural sense 2 +146071 7942 natural sense 2 +146072 7942 for what works 2 +146073 7942 what works 2 +146074 7943 But the talented cast alone will keep you watching , as will the fight scenes . 4 +146075 7943 the talented cast alone will keep you watching , as will the fight scenes . 4 +146076 7943 the talented cast 3 +146077 7943 talented cast 3 +146078 7943 alone will keep you watching , as will the fight scenes . 3 +146079 7943 will keep you watching , as will the fight scenes . 3 +146080 7943 will keep you watching , as will the fight scenes 3 +146081 7943 keep you watching , as will the fight scenes 4 +146082 7943 keep you watching , 3 +146083 7943 keep you watching 2 +146084 7943 you watching 2 +146085 7943 as will the fight scenes 2 +146086 7943 will the fight scenes 2 +146087 7943 the fight scenes 2 +146088 7943 fight scenes 2 +146089 7944 If we sometimes need comforting fantasies about mental illness , we also need movies like Tim McCann 's Revolution No. 9 . 3 +146090 7944 If we sometimes need comforting fantasies about mental illness 2 +146091 7944 we sometimes need comforting fantasies about mental illness 2 +146092 7944 sometimes need comforting fantasies about mental illness 2 +146093 7944 need comforting fantasies about mental illness 1 +146094 7944 comforting fantasies about mental illness 2 +146095 7944 comforting fantasies 3 +146096 7944 about mental illness 2 +146097 7944 , we also need movies like Tim McCann 's Revolution No. 9 . 2 +146098 7944 we also need movies like Tim McCann 's Revolution No. 9 . 3 +146099 7944 also need movies like Tim McCann 's Revolution No. 9 . 3 +146100 7944 need movies like Tim McCann 's Revolution No. 9 . 3 +146101 7944 need movies like Tim McCann 's Revolution No. 9 2 +146102 7944 movies like Tim McCann 's Revolution No. 9 2 +146103 7944 like Tim McCann 's Revolution No. 9 2 +146104 7944 Tim McCann 's Revolution No. 9 2 +146105 7944 Tim McCann 's Revolution 2 +146106 7944 Tim McCann 's 2 +146107 7944 Tim 2 +146108 7944 McCann 's 2 +146109 7944 McCann 2 +146110 7944 No. 9 2 +146111 7945 One of the finest , most humane and important Holocaust movies ever made . 4 +146112 7945 One of the finest 4 +146113 7945 of the finest 3 +146114 7945 the finest 4 +146115 7945 , most humane and important Holocaust movies ever made . 4 +146116 7945 most humane and important Holocaust movies ever made . 3 +146117 7945 most humane and important Holocaust movies 3 +146118 7945 most humane and important 3 +146119 7945 humane and important 4 +146120 7945 humane and 2 +146121 7946 Cage makes an unusual but pleasantly haunting debut behind the camera . 3 +146122 7946 makes an unusual but pleasantly haunting debut behind the camera . 3 +146123 7946 makes an unusual but pleasantly haunting debut behind the camera 3 +146124 7946 an unusual but pleasantly haunting debut behind the camera 3 +146125 7946 an unusual but pleasantly haunting debut 3 +146126 7946 unusual but pleasantly haunting debut 3 +146127 7946 unusual but pleasantly 2 +146128 7946 unusual but 2 +146129 7946 haunting debut 2 +146130 7947 ... flat-out amusing , sometimes endearing and often fabulous , with a solid cast , noteworthy characters , delicious dialogue and a wide supply of effective sight gags . 3 +146131 7947 flat-out amusing , sometimes endearing and often fabulous , with a solid cast , noteworthy characters , delicious dialogue and a wide supply of effective sight gags . 4 +146132 7947 flat-out amusing , sometimes endearing and often fabulous , with a solid cast , noteworthy characters , delicious dialogue and a wide supply of effective sight gags 4 +146133 7947 flat-out amusing , sometimes endearing and often fabulous , with a solid cast , noteworthy characters , delicious dialogue and a wide supply 4 +146134 7947 flat-out amusing , sometimes endearing and often fabulous , with a solid cast , noteworthy characters , delicious dialogue and 4 +146135 7947 flat-out amusing , sometimes endearing and often fabulous , with a solid cast , noteworthy characters , delicious dialogue 4 +146136 7947 flat-out amusing , sometimes endearing and often fabulous , with a solid cast , noteworthy characters , 4 +146137 7947 flat-out amusing , sometimes endearing and often fabulous , with a solid cast , noteworthy characters 4 +146138 7947 flat-out amusing , sometimes endearing and often fabulous , with a solid cast , 4 +146139 7947 flat-out amusing , sometimes endearing and often fabulous 4 +146140 7947 flat-out amusing , sometimes endearing and 3 +146141 7947 flat-out amusing , sometimes endearing 3 +146142 7947 flat-out amusing , 4 +146143 7947 flat-out amusing 4 +146144 7947 sometimes endearing 3 +146145 7947 often fabulous 2 +146146 7947 , with a solid cast , 3 +146147 7947 with a solid cast , 3 +146148 7947 with a solid cast 2 +146149 7947 noteworthy characters 3 +146150 7947 noteworthy 3 +146151 7947 delicious dialogue 3 +146152 7947 a wide supply 2 +146153 7947 wide supply 2 +146154 7947 of effective sight gags 2 +146155 7947 effective sight gags 2 +146156 7948 Two tedious acts light on great scares and a good surprise ending . 3 +146157 7948 Two tedious 1 +146158 7948 acts light on great scares and a good surprise ending . 3 +146159 7948 acts light on great scares and a good surprise ending 4 +146160 7948 acts light 2 +146161 7948 on great scares and a good surprise ending 3 +146162 7948 great scares and a good surprise ending 3 +146163 7948 great scares and 3 +146164 7948 great scares 3 +146165 7948 a good surprise ending 3 +146166 7948 good surprise ending 4 +146167 7949 Japanese director Shohei Imamura 's latest film is an odd but ultimately satisfying blend of the sophomoric and the sublime . 3 +146168 7949 Japanese director Shohei Imamura 's latest film 2 +146169 7949 Japanese director Shohei Imamura 's 2 +146170 7949 director Shohei Imamura 's 2 +146171 7949 Shohei Imamura 's 2 +146172 7949 Shohei 2 +146173 7949 Imamura 's 2 +146174 7949 latest film 2 +146175 7949 is an odd but ultimately satisfying blend of the sophomoric and the sublime . 3 +146176 7949 is an odd but ultimately satisfying blend of the sophomoric and the sublime 3 +146177 7949 an odd but ultimately satisfying blend of the sophomoric and the sublime 4 +146178 7949 an odd but ultimately satisfying blend 3 +146179 7949 odd but ultimately satisfying blend 3 +146180 7949 odd but ultimately satisfying 3 +146181 7949 odd but 2 +146182 7949 ultimately satisfying 4 +146183 7949 of the sophomoric and the sublime 2 +146184 7949 the sophomoric and the sublime 2 +146185 7949 the sophomoric and 2 +146186 7949 the sophomoric 2 +146187 7949 the sublime 2 +146188 7950 It 's a treat watching Shaw , a British stage icon , melting under the heat of Phocion 's attentions . 3 +146189 7950 's a treat watching Shaw , a British stage icon , melting under the heat of Phocion 's attentions . 3 +146190 7950 's a treat watching Shaw , a British stage icon , melting under the heat of Phocion 's attentions 3 +146191 7950 a treat watching Shaw , a British stage icon , melting under the heat of Phocion 's attentions 4 +146192 7950 watching Shaw , a British stage icon , melting under the heat of Phocion 's attentions 2 +146193 7950 Shaw , a British stage icon , melting under the heat of Phocion 's attentions 2 +146194 7950 Shaw , a British stage icon , 2 +146195 7950 Shaw , a British stage icon 2 +146196 7950 Shaw , 2 +146197 7950 Shaw 2 +146198 7950 a British stage icon 2 +146199 7950 British stage icon 3 +146200 7950 stage icon 2 +146201 7950 melting under the heat of Phocion 's attentions 2 +146202 7950 melting 2 +146203 7950 under the heat of Phocion 's attentions 2 +146204 7950 the heat of Phocion 's attentions 2 +146205 7950 of Phocion 's attentions 2 +146206 7950 Phocion 's attentions 2 +146207 7950 Phocion 's 2 +146208 7950 Phocion 2 +146209 7950 attentions 2 +146210 7951 Rifkin no doubt fancies himself something of a Hubert Selby Jr. , but there is n't an ounce of honest poetry in his entire script ; it 's simply crude and unrelentingly exploitative . 0 +146211 7951 Rifkin no doubt fancies himself something of a Hubert Selby Jr. , but there is n't an ounce of honest poetry in his entire script ; it 's simply crude and unrelentingly exploitative 0 +146212 7951 Rifkin no doubt fancies himself something of a Hubert Selby Jr. , but there is n't an ounce of honest poetry in his entire script ; 0 +146213 7951 Rifkin no doubt fancies himself something of a Hubert Selby Jr. , but there is n't an ounce of honest poetry in his entire script 1 +146214 7951 Rifkin no doubt fancies himself something of a Hubert Selby Jr. , but 2 +146215 7951 Rifkin no doubt fancies himself something of a Hubert Selby Jr. , 2 +146216 7951 Rifkin no doubt fancies himself something of a Hubert Selby Jr. 2 +146217 7951 no doubt fancies himself something of a Hubert Selby Jr. 2 +146218 7951 fancies himself something of a Hubert Selby Jr. 2 +146219 7951 fancies 2 +146220 7951 himself something of a Hubert Selby Jr. 2 +146221 7951 something of a Hubert Selby Jr. 2 +146222 7951 of a Hubert Selby Jr. 2 +146223 7951 a Hubert Selby Jr. 2 +146224 7951 Hubert Selby Jr. 2 +146225 7951 Selby Jr. 2 +146226 7951 Selby 2 +146227 7951 there is n't an ounce of honest poetry in his entire script 2 +146228 7951 is n't an ounce of honest poetry in his entire script 0 +146229 7951 an ounce of honest poetry in his entire script 2 +146230 7951 an ounce of honest poetry 3 +146231 7951 an ounce 2 +146232 7951 ounce 2 +146233 7951 of honest poetry 3 +146234 7951 honest poetry 3 +146235 7951 in his entire script 2 +146236 7951 his entire script 2 +146237 7951 entire script 2 +146238 7951 it 's simply crude and unrelentingly exploitative 1 +146239 7951 's simply crude and unrelentingly exploitative 1 +146240 7951 crude and unrelentingly exploitative 1 +146241 7951 and unrelentingly exploitative 1 +146242 7951 unrelentingly exploitative 1 +146243 7952 A chilly , remote , emotionally distant piece ... so dull that its tagline should be : ` In space , no one can hear you snore . ' 0 +146244 7952 A chilly , remote , emotionally distant piece ... so dull that its tagline should be : ` In space , no one can hear you snore . 0 +146245 7952 A chilly , remote , emotionally distant piece ... so dull that its tagline should be : ` In space , no one can hear you snore 0 +146246 7952 A chilly , remote , emotionally distant piece ... so dull that its tagline should be : ` 0 +146247 7952 A chilly , remote , emotionally distant piece ... so dull that its tagline should be : 0 +146248 7952 A chilly , remote , emotionally distant piece ... so dull that its tagline should be 1 +146249 7952 A chilly , remote , emotionally distant piece ... so dull that its tagline 0 +146250 7952 A chilly , remote , emotionally distant piece ... so dull 1 +146251 7952 A chilly , remote , emotionally distant piece ... 1 +146252 7952 A chilly , remote , emotionally distant piece 1 +146253 7952 chilly , remote , emotionally distant piece 1 +146254 7952 , remote , emotionally distant piece 1 +146255 7952 remote , emotionally distant piece 1 +146256 7952 , emotionally distant piece 2 +146257 7952 emotionally distant piece 1 +146258 7952 distant piece 2 +146259 7952 that its tagline 2 +146260 7952 its tagline 2 +146261 7952 In space , no one can hear you snore 1 +146262 7952 In space 2 +146263 7952 , no one can hear you snore 0 +146264 7952 no one can hear you snore 1 +146265 7952 can hear you snore 1 +146266 7952 hear you snore 2 +146267 7952 you snore 1 +146268 7952 snore 1 +146269 7953 Just offbeat enough to keep you interested without coming close to bowling you over . 3 +146270 7953 Just offbeat 1 +146271 7953 enough to keep you interested without coming close to bowling you over . 3 +146272 7953 enough to keep you interested without coming close to bowling you over 3 +146273 7953 to keep you interested without coming close to bowling you over 2 +146274 7953 keep you interested without coming close to bowling you over 3 +146275 7953 you interested without coming close to bowling you over 2 +146276 7953 interested without coming close to bowling you over 2 +146277 7953 without coming close to bowling you over 2 +146278 7953 coming close to bowling you over 3 +146279 7953 close to bowling you over 2 +146280 7953 to bowling you over 3 +146281 7953 bowling you over 3 +146282 7953 bowling you 2 +146283 7954 Unofficially , National Lampoon 's Van Wilder is Son of Animal House . 2 +146284 7954 Unofficially 2 +146285 7954 , National Lampoon 's Van Wilder is Son of Animal House . 2 +146286 7954 National Lampoon 's Van Wilder is Son of Animal House . 2 +146287 7954 is Son of Animal House . 2 +146288 7954 is Son of Animal House 2 +146289 7954 Son of Animal House 2 +146290 7955 Lurid and less than lucid work . 1 +146291 7955 Lurid and less than lucid work 0 +146292 7955 Lurid and less 1 +146293 7955 and less 2 +146294 7955 than lucid work 2 +146295 7955 lucid work 3 +146296 7955 lucid 2 +146297 7956 Deuces Wild treads heavily into Romeo and Juliet\/West Side Story territory , where it plainly has no business going . 1 +146298 7956 treads heavily into Romeo and Juliet\/West Side Story territory , where it plainly has no business going . 2 +146299 7956 treads heavily into Romeo and Juliet\/West Side Story territory , where it plainly has no business going 1 +146300 7956 treads heavily 1 +146301 7956 into Romeo and Juliet\/West Side Story territory , where it plainly has no business going 1 +146302 7956 Romeo and Juliet\/West Side Story territory , where it plainly has no business going 1 +146303 7956 Romeo and Juliet\/West Side Story territory , 2 +146304 7956 Romeo and Juliet\/West Side Story territory 2 +146305 7956 Romeo 2 +146306 7956 and Juliet\/West Side Story territory 2 +146307 7956 Juliet\/West Side Story territory 2 +146308 7956 Juliet\/West 2 +146309 7956 Side Story territory 2 +146310 7956 Story territory 2 +146311 7956 where it plainly has no business going 1 +146312 7956 it plainly has no business going 1 +146313 7956 plainly has no business going 2 +146314 7956 has no business going 2 +146315 7956 no business going 3 +146316 7956 no business 2 +146317 7957 The isolated moments of creative insanity finally are lost in the thin soup of canned humor . 2 +146318 7957 The isolated moments of creative insanity 3 +146319 7957 The isolated moments 2 +146320 7957 isolated moments 2 +146321 7957 isolated 1 +146322 7957 of creative insanity 3 +146323 7957 creative insanity 2 +146324 7957 finally are lost in the thin soup of canned humor . 2 +146325 7957 are lost in the thin soup of canned humor . 1 +146326 7957 are lost in the thin soup of canned humor 2 +146327 7957 lost in the thin soup of canned humor 1 +146328 7957 in the thin soup of canned humor 1 +146329 7957 the thin soup of canned humor 1 +146330 7957 the thin soup 2 +146331 7957 thin soup 1 +146332 7957 soup 2 +146333 7957 of canned humor 1 +146334 7957 canned humor 1 +146335 7958 Hollywood Ending is not show-stoppingly hilarious , but scathingly witty nonetheless . 3 +146336 7958 is not show-stoppingly hilarious , but scathingly witty nonetheless . 3 +146337 7958 is not show-stoppingly hilarious , but scathingly witty nonetheless 3 +146338 7958 is not show-stoppingly hilarious , but scathingly witty 3 +146339 7958 show-stoppingly hilarious , but scathingly witty 3 +146340 7958 show-stoppingly hilarious , but 3 +146341 7958 show-stoppingly hilarious , 4 +146342 7958 show-stoppingly hilarious 4 +146343 7958 show-stoppingly 3 +146344 7958 scathingly witty 4 +146345 7958 scathingly 2 +146346 7959 If there 's a heaven for bad movies , Deuces Wild is on its way . 0 +146347 7959 If there 's a heaven for bad movies 0 +146348 7959 there 's a heaven for bad movies 1 +146349 7959 's a heaven for bad movies 1 +146350 7959 a heaven for bad movies 2 +146351 7959 a heaven 3 +146352 7959 for bad movies 1 +146353 7959 , Deuces Wild is on its way . 2 +146354 7959 Deuces Wild is on its way . 2 +146355 7959 is on its way . 2 +146356 7959 is on its way 2 +146357 7959 on its way 3 +146358 7960 Call this The Full Monty on ice , the underdog sports team formula redux . 2 +146359 7960 Call this The Full Monty on ice , the underdog sports team formula redux 2 +146360 7960 Call this The Full Monty on ice , 3 +146361 7960 Call this The Full Monty on ice 2 +146362 7960 this The Full Monty on ice 2 +146363 7960 this The Full Monty 2 +146364 7960 on ice 2 +146365 7960 the underdog sports team formula redux 1 +146366 7960 underdog sports team formula redux 2 +146367 7960 sports team formula redux 2 +146368 7960 team formula redux 2 +146369 7960 formula redux 2 +146370 7960 redux 2 +146371 7961 Ever see one of those comedies that just seem like a bad idea from frame one ? 1 +146372 7961 Ever see one of those comedies that just seem like a bad idea from frame one 1 +146373 7961 see one of those comedies that just seem like a bad idea from frame one 1 +146374 7961 one of those comedies that just seem like a bad idea from frame one 0 +146375 7961 of those comedies that just seem like a bad idea from frame one 1 +146376 7961 those comedies that just seem like a bad idea from frame one 1 +146377 7961 those comedies 2 +146378 7961 that just seem like a bad idea from frame one 0 +146379 7961 just seem like a bad idea from frame one 1 +146380 7961 seem like a bad idea from frame one 0 +146381 7961 like a bad idea from frame one 0 +146382 7961 a bad idea from frame one 0 +146383 7961 a bad idea 0 +146384 7962 Despite its sincere acting , Signs is just another unoriginal run of the mill sci-fi film with a flimsy ending and lots of hype . 1 +146385 7962 Despite its sincere acting 1 +146386 7962 its sincere acting 3 +146387 7962 sincere acting 3 +146388 7962 , Signs is just another unoriginal run of the mill sci-fi film with a flimsy ending and lots of hype . 0 +146389 7962 Signs is just another unoriginal run of the mill sci-fi film with a flimsy ending and lots of hype . 1 +146390 7962 is just another unoriginal run of the mill sci-fi film with a flimsy ending and lots of hype . 0 +146391 7962 is just another unoriginal run of the mill sci-fi film with a flimsy ending and lots of hype 1 +146392 7962 another unoriginal run of the mill sci-fi film with a flimsy ending and lots of hype 0 +146393 7962 another unoriginal run 1 +146394 7962 unoriginal run 1 +146395 7962 of the mill sci-fi film with a flimsy ending and lots of hype 2 +146396 7962 the mill sci-fi film with a flimsy ending and lots of hype 0 +146397 7962 the mill sci-fi film with a flimsy ending and 1 +146398 7962 the mill sci-fi film with a flimsy ending 1 +146399 7962 the mill sci-fi film 2 +146400 7962 mill sci-fi film 2 +146401 7962 sci-fi film 2 +146402 7962 with a flimsy ending 1 +146403 7962 a flimsy ending 2 +146404 7962 flimsy ending 1 +146405 7962 lots of hype 2 +146406 7963 A manically generous Christmas vaudeville . 3 +146407 7963 A manically generous Christmas 3 +146408 7963 manically generous Christmas 2 +146409 7963 manically generous 3 +146410 7963 manically 2 +146411 7963 vaudeville . 2 +146412 7964 It 's as if Allen , at 66 , has stopped challenging himself . 1 +146413 7964 's as if Allen , at 66 , has stopped challenging himself . 1 +146414 7964 's as if Allen , at 66 , has stopped challenging himself 1 +146415 7964 as if Allen , at 66 , has stopped challenging himself 1 +146416 7964 if Allen , at 66 , has stopped challenging himself 1 +146417 7964 Allen , at 66 , has stopped challenging himself 1 +146418 7964 , at 66 , has stopped challenging himself 1 +146419 7964 at 66 , has stopped challenging himself 2 +146420 7964 at 66 2 +146421 7964 66 2 +146422 7964 , has stopped challenging himself 1 +146423 7964 has stopped challenging himself 1 +146424 7964 stopped challenging himself 1 +146425 7964 challenging himself 2 +146426 7965 Mendes still does n't quite know how to fill a frame . 1 +146427 7965 still does n't quite know how to fill a frame . 1 +146428 7965 does n't quite know how to fill a frame . 1 +146429 7965 does n't quite know how to fill a frame 1 +146430 7965 know how to fill a frame 2 +146431 7965 how to fill a frame 2 +146432 7965 to fill a frame 2 +146433 7965 fill a frame 2 +146434 7965 a frame 2 +146435 7966 Some movies were made for the big screen , some for the small screen , and some , like Ballistic : Ecks vs. Sever , were made for the palm screen . 1 +146436 7966 Some movies were made for the big screen , some for the small screen , and some , like Ballistic : Ecks vs. Sever , were made for the palm screen 1 +146437 7966 Some movies were made for the big screen , some for the small screen , and 2 +146438 7966 Some movies were made for the big screen , some for the small screen , 2 +146439 7966 Some movies were made for the big screen , some for the small screen 1 +146440 7966 were made for the big screen , some for the small screen 2 +146441 7966 made for the big screen , some for the small screen 1 +146442 7966 for the big screen , some for the small screen 2 +146443 7966 the big screen , some for the small screen 2 +146444 7966 the big screen , 2 +146445 7966 some for the small screen 2 +146446 7966 for the small screen 2 +146447 7966 the small screen 1 +146448 7966 small screen 2 +146449 7966 some , like Ballistic : Ecks vs. Sever , were made for the palm screen 2 +146450 7966 , like Ballistic : Ecks vs. Sever , were made for the palm screen 2 +146451 7966 like Ballistic : Ecks vs. Sever , were made for the palm screen 2 +146452 7966 , were made for the palm screen 2 +146453 7966 were made for the palm screen 1 +146454 7966 made for the palm screen 2 +146455 7966 for the palm screen 2 +146456 7966 the palm screen 2 +146457 7966 palm screen 2 +146458 7966 palm 2 +146459 7967 While the filmmaking may be a bit disjointed , the subject matter is so fascinating that you wo n't care . 3 +146460 7967 While the filmmaking may be a bit disjointed 2 +146461 7967 the filmmaking may be a bit disjointed 1 +146462 7967 may be a bit disjointed 1 +146463 7967 be a bit disjointed 1 +146464 7967 a bit disjointed 1 +146465 7967 , the subject matter is so fascinating that you wo n't care . 3 +146466 7967 the subject matter is so fascinating that you wo n't care . 2 +146467 7967 is so fascinating that you wo n't care . 3 +146468 7967 is so fascinating that you wo n't care 2 +146469 7967 is so fascinating 3 +146470 7967 so fascinating 3 +146471 7967 that you wo n't care 1 +146472 7967 you wo n't care 1 +146473 7967 wo n't care 1 +146474 7968 Still , not every low-budget movie must be quirky or bleak , and a happy ending is no cinematic sin . 2 +146475 7968 , not every low-budget movie must be quirky or bleak , and a happy ending is no cinematic sin . 2 +146476 7968 not every low-budget movie must be quirky or bleak , and a happy ending is no cinematic sin . 2 +146477 7968 not every low-budget movie must be quirky or bleak , and a happy ending is no cinematic sin 2 +146478 7968 not every low-budget movie must be quirky or bleak , and 2 +146479 7968 not every low-budget movie must be quirky or bleak , 2 +146480 7968 not every low-budget movie must be quirky or bleak 2 +146481 7968 not every low-budget movie 1 +146482 7968 every low-budget movie 2 +146483 7968 must be quirky or bleak 1 +146484 7968 be quirky or bleak 1 +146485 7968 quirky or bleak 1 +146486 7968 quirky or 2 +146487 7968 a happy ending is no cinematic sin 3 +146488 7968 is no cinematic sin 2 +146489 7968 no cinematic sin 2 +146490 7968 cinematic sin 1 +146491 7969 The movie is a desperate miscalculation . 0 +146492 7969 is a desperate miscalculation . 2 +146493 7969 is a desperate miscalculation 1 +146494 7969 a desperate miscalculation 1 +146495 7969 desperate miscalculation 1 +146496 7970 the film does n't sustain its initial promise with a jarring , new-agey tone creeping into the second half 1 +146497 7970 does n't sustain its initial promise with a jarring , new-agey tone creeping into the second half 0 +146498 7970 sustain its initial promise with a jarring , new-agey tone creeping into the second half 3 +146499 7970 sustain its initial promise 2 +146500 7970 its initial promise 3 +146501 7970 initial promise 2 +146502 7970 with a jarring , new-agey tone creeping into the second half 1 +146503 7970 a jarring , new-agey tone creeping into the second half 1 +146504 7970 a jarring , new-agey tone 3 +146505 7970 jarring , new-agey tone 3 +146506 7970 , new-agey tone 2 +146507 7970 new-agey tone 2 +146508 7970 new-agey 2 +146509 7970 creeping into the second half 1 +146510 7970 into the second half 2 +146511 7971 It irritates and saddens me that Martin Lawrence 's latest vehicle can explode obnoxiously into 2,500 screens while something of Bubba Ho-Tep 's clearly evident quality may end up languishing on a shelf somewhere . 1 +146512 7971 irritates and saddens me that Martin Lawrence 's latest vehicle can explode obnoxiously into 2,500 screens while something of Bubba Ho-Tep 's clearly evident quality may end up languishing on a shelf somewhere . 0 +146513 7971 irritates and saddens me that Martin Lawrence 's latest vehicle can explode obnoxiously into 2,500 screens while something of Bubba Ho-Tep 's clearly evident quality may end up languishing on a shelf somewhere 0 +146514 7971 irritates and saddens me 0 +146515 7971 irritates and saddens 1 +146516 7971 irritates and 1 +146517 7971 irritates 1 +146518 7971 saddens 1 +146519 7971 that Martin Lawrence 's latest vehicle can explode obnoxiously into 2,500 screens while something of Bubba Ho-Tep 's clearly evident quality may end up languishing on a shelf somewhere 1 +146520 7971 Martin Lawrence 's latest vehicle can explode obnoxiously into 2,500 screens while something of Bubba Ho-Tep 's clearly evident quality may end up languishing on a shelf somewhere 1 +146521 7971 Martin Lawrence 's latest vehicle 2 +146522 7971 Martin Lawrence 's 2 +146523 7971 latest vehicle 2 +146524 7971 can explode obnoxiously into 2,500 screens while something of Bubba Ho-Tep 's clearly evident quality may end up languishing on a shelf somewhere 1 +146525 7971 explode obnoxiously into 2,500 screens while something of Bubba Ho-Tep 's clearly evident quality may end up languishing on a shelf somewhere 1 +146526 7971 explode obnoxiously into 2,500 screens 1 +146527 7971 explode obnoxiously 0 +146528 7971 obnoxiously 1 +146529 7971 into 2,500 screens 2 +146530 7971 2,500 screens 2 +146531 7971 2,500 2 +146532 7971 while something of Bubba Ho-Tep 's clearly evident quality may end up languishing on a shelf somewhere 1 +146533 7971 something of Bubba Ho-Tep 's clearly evident quality may end up languishing on a shelf somewhere 3 +146534 7971 something of Bubba Ho-Tep 's clearly evident quality 3 +146535 7971 of Bubba Ho-Tep 's clearly evident quality 3 +146536 7971 Bubba Ho-Tep 's clearly evident quality 3 +146537 7971 Bubba Ho-Tep 's 2 +146538 7971 Bubba 2 +146539 7971 Ho-Tep 's 2 +146540 7971 Ho-Tep 2 +146541 7971 clearly evident quality 3 +146542 7971 may end up languishing on a shelf somewhere 2 +146543 7971 end up languishing on a shelf somewhere 2 +146544 7971 languishing on a shelf somewhere 1 +146545 7971 languishing 1 +146546 7971 on a shelf somewhere 2 +146547 7971 a shelf somewhere 2 +146548 7971 a shelf 2 +146549 7972 If Reno is to the left of liberal on the political spectrum , her tough , funny , rather chaotic show is n't subversive so much as it is nit-picky about the hypocrisies of our time . 2 +146550 7972 If Reno is to the left of liberal on the political spectrum 2 +146551 7972 Reno is to the left of liberal on the political spectrum 2 +146552 7972 is to the left of liberal on the political spectrum 2 +146553 7972 to the left of liberal on the political spectrum 2 +146554 7972 the left of liberal on the political spectrum 2 +146555 7972 the left 2 +146556 7972 of liberal on the political spectrum 2 +146557 7972 liberal on the political spectrum 2 +146558 7972 on the political spectrum 2 +146559 7972 , her tough , funny , rather chaotic show is n't subversive so much as it is nit-picky about the hypocrisies of our time . 2 +146560 7972 her tough , funny , rather chaotic show is n't subversive so much as it is nit-picky about the hypocrisies of our time . 3 +146561 7972 her tough , funny , rather chaotic show 3 +146562 7972 tough , funny , rather chaotic show 4 +146563 7972 tough , funny , rather chaotic 3 +146564 7972 , funny , rather chaotic 3 +146565 7972 funny , rather chaotic 3 +146566 7972 , rather chaotic 1 +146567 7972 rather chaotic 1 +146568 7972 is n't subversive so much as it is nit-picky about the hypocrisies of our time . 2 +146569 7972 is n't subversive so much as it is nit-picky about the hypocrisies of our time 1 +146570 7972 is n't subversive 2 +146571 7972 so much as it is nit-picky about the hypocrisies of our time 2 +146572 7972 as it is nit-picky about the hypocrisies of our time 2 +146573 7972 it is nit-picky about the hypocrisies of our time 1 +146574 7972 is nit-picky about the hypocrisies of our time 2 +146575 7972 nit-picky about the hypocrisies of our time 2 +146576 7972 nit-picky 1 +146577 7972 about the hypocrisies of our time 3 +146578 7972 the hypocrisies of our time 2 +146579 7972 the hypocrisies 2 +146580 7972 hypocrisies 2 +146581 7973 A tedious parable about honesty and good sportsmanship . 2 +146582 7973 A tedious 1 +146583 7973 parable about honesty and good sportsmanship . 2 +146584 7973 parable about honesty and good sportsmanship 3 +146585 7973 about honesty and good sportsmanship 2 +146586 7973 honesty and good sportsmanship 3 +146587 7973 good sportsmanship 3 +146588 7973 sportsmanship 2 +146589 7974 Draggin ' about dragons 2 +146590 7974 Draggin ' 2 +146591 7974 Draggin 2 +146592 7974 about dragons 2 +146593 7975 Pap invested in undergraduate doubling subtexts and ridiculous stabs at existentialism reminding of the discovery of the wizard of God in the fifth Trek flick . 1 +146594 7975 invested in undergraduate doubling subtexts and ridiculous stabs at existentialism reminding of the discovery of the wizard of God in the fifth Trek flick . 2 +146595 7975 invested in undergraduate doubling subtexts and ridiculous stabs at existentialism reminding of the discovery of the wizard of God in the fifth Trek flick 2 +146596 7975 invested in undergraduate doubling subtexts and ridiculous stabs at existentialism reminding of the discovery of the wizard of God 1 +146597 7975 invested in undergraduate doubling subtexts and ridiculous stabs 0 +146598 7975 invested 2 +146599 7975 in undergraduate doubling subtexts and ridiculous stabs 1 +146600 7975 undergraduate doubling subtexts and ridiculous stabs 1 +146601 7975 undergraduate doubling subtexts and 2 +146602 7975 undergraduate doubling subtexts 2 +146603 7975 undergraduate 2 +146604 7975 doubling subtexts 2 +146605 7975 doubling 2 +146606 7975 subtexts 2 +146607 7975 ridiculous stabs 2 +146608 7975 stabs 1 +146609 7975 at existentialism reminding of the discovery of the wizard of God 2 +146610 7975 existentialism reminding of the discovery of the wizard of God 3 +146611 7975 existentialism reminding 2 +146612 7975 of the discovery of the wizard of God 2 +146613 7975 the discovery of the wizard of God 2 +146614 7975 the discovery 2 +146615 7975 of the wizard of God 2 +146616 7975 the wizard of God 2 +146617 7975 the wizard 2 +146618 7975 wizard 2 +146619 7975 in the fifth Trek flick 2 +146620 7975 the fifth Trek flick 2 +146621 7975 fifth Trek flick 2 +146622 7975 Trek flick 2 +146623 7976 Kinnear and Dafoe give what may be the performances of their careers . 4 +146624 7976 Kinnear and Dafoe 2 +146625 7976 Kinnear and 2 +146626 7976 Dafoe 2 +146627 7976 give what may be the performances of their careers . 4 +146628 7976 give what may be the performances of their careers 3 +146629 7976 what may be the performances of their careers 4 +146630 7976 may be the performances of their careers 4 +146631 7976 be the performances of their careers 3 +146632 7976 the performances of their careers 4 +146633 7976 of their careers 2 +146634 7976 their careers 2 +146635 7977 It 's difficult to feel anything much while watching this movie , beyond mild disturbance or detached pleasure at the acting . 1 +146636 7977 's difficult to feel anything much while watching this movie , beyond mild disturbance or detached pleasure at the acting . 0 +146637 7977 's difficult to feel anything much while watching this movie , beyond mild disturbance or detached pleasure at the acting 1 +146638 7977 difficult to feel anything much while watching this movie , beyond mild disturbance or detached pleasure at the acting 1 +146639 7977 to feel anything much while watching this movie , beyond mild disturbance or detached pleasure at the acting 1 +146640 7977 feel anything much while watching this movie , beyond mild disturbance or detached pleasure at the acting 1 +146641 7977 feel anything much while watching this movie , 1 +146642 7977 feel anything much while watching this movie 2 +146643 7977 feel anything much while 2 +146644 7977 feel anything 2 +146645 7977 much while 2 +146646 7977 watching this movie 2 +146647 7977 beyond mild disturbance or detached pleasure at the acting 1 +146648 7977 mild disturbance or detached pleasure at the acting 1 +146649 7977 mild disturbance or detached pleasure 1 +146650 7977 disturbance or detached pleasure 1 +146651 7977 disturbance 1 +146652 7977 or detached pleasure 2 +146653 7977 detached pleasure 2 +146654 7977 at the acting 2 +146655 7978 Like being able to hit on a 15-year old when you 're over 100 . 1 +146656 7978 Like being able to hit on a 15-year old when you 're over 100 1 +146657 7978 being able to hit on a 15-year old when you 're over 100 1 +146658 7978 able to hit on a 15-year old when you 're over 100 2 +146659 7978 to hit on a 15-year old when you 're over 100 2 +146660 7978 hit on a 15-year old when you 're over 100 1 +146661 7978 hit on a 15-year old 1 +146662 7978 on a 15-year old 2 +146663 7978 a 15-year old 2 +146664 7978 15-year old 2 +146665 7978 15-year 2 +146666 7978 when you 're over 100 2 +146667 7978 you 're over 100 2 +146668 7978 're over 100 2 +146669 7978 over 100 2 +146670 7979 The thought of watching this film with an audience full of teenagers fixating on its body humour and reinforcement of stereotypes -LRB- of which they 'll get plenty -RRB- fills me with revulsion . 0 +146671 7979 The thought of watching this film with an audience full of teenagers fixating on its body humour and reinforcement of stereotypes -LRB- of which they 'll get plenty -RRB- 1 +146672 7979 The thought of watching this film with an audience full of teenagers fixating on its body humour and reinforcement of stereotypes 0 +146673 7979 of watching this film with an audience full of teenagers fixating on its body humour and reinforcement of stereotypes 1 +146674 7979 watching this film with an audience full of teenagers fixating on its body humour and reinforcement of stereotypes 1 +146675 7979 with an audience full of teenagers fixating on its body humour and reinforcement of stereotypes 2 +146676 7979 an audience full of teenagers fixating on its body humour and reinforcement of stereotypes 1 +146677 7979 full of teenagers fixating on its body humour and reinforcement of stereotypes 1 +146678 7979 of teenagers fixating on its body humour and reinforcement of stereotypes 2 +146679 7979 teenagers fixating on its body humour and reinforcement of stereotypes 1 +146680 7979 fixating on its body humour and reinforcement of stereotypes 1 +146681 7979 on its body humour and reinforcement of stereotypes 2 +146682 7979 its body humour and reinforcement of stereotypes 1 +146683 7979 its body humour and reinforcement 3 +146684 7979 body humour and reinforcement 3 +146685 7979 humour and reinforcement 2 +146686 7979 reinforcement 2 +146687 7979 of stereotypes 2 +146688 7979 -LRB- of which they 'll get plenty -RRB- 2 +146689 7979 of which they 'll get plenty -RRB- 2 +146690 7979 of which they 'll get plenty 2 +146691 7979 they 'll get plenty 2 +146692 7979 'll get plenty 2 +146693 7979 get plenty 2 +146694 7979 fills me with revulsion . 0 +146695 7979 fills me with revulsion 1 +146696 7979 fills me 2 +146697 7979 with revulsion 1 +146698 7980 There 's not a fresh idea at the core of this tale . 1 +146699 7980 's not a fresh idea at the core of this tale . 1 +146700 7980 's not a fresh idea at the core of this tale 1 +146701 7980 's not a fresh idea 1 +146702 7980 a fresh idea 3 +146703 7980 fresh idea 2 +146704 7980 at the core of this tale 2 +146705 7980 the core of this tale 2 +146706 7980 of this tale 2 +146707 7981 It was only a matter of time before some savvy producer saw the potential success inherent in the mixture of Bullock Bubble and Hugh Goo . 3 +146708 7981 was only a matter of time before some savvy producer saw the potential success inherent in the mixture of Bullock Bubble and Hugh Goo . 3 +146709 7981 was only a matter of time before some savvy producer saw the potential success inherent in the mixture of Bullock Bubble and Hugh Goo 3 +146710 7981 was only a matter of time 2 +146711 7981 a matter of time 2 +146712 7981 before some savvy producer saw the potential success inherent in the mixture of Bullock Bubble and Hugh Goo 3 +146713 7981 some savvy producer saw the potential success inherent in the mixture of Bullock Bubble and Hugh Goo 3 +146714 7981 some savvy producer 3 +146715 7981 savvy producer 3 +146716 7981 saw the potential success inherent in the mixture of Bullock Bubble and Hugh Goo 3 +146717 7981 the potential success inherent in the mixture of Bullock Bubble and Hugh Goo 4 +146718 7981 the potential success 3 +146719 7981 potential success 3 +146720 7981 inherent in the mixture of Bullock Bubble and Hugh Goo 1 +146721 7981 in the mixture of Bullock Bubble and Hugh Goo 2 +146722 7981 the mixture of Bullock Bubble and Hugh Goo 2 +146723 7981 the mixture 2 +146724 7981 of Bullock Bubble and Hugh Goo 2 +146725 7981 Bullock Bubble and Hugh Goo 2 +146726 7981 Bullock Bubble and 2 +146727 7981 Bullock Bubble 2 +146728 7981 Bubble 2 +146729 7981 Hugh Goo 2 +146730 7982 But Mr. Polanski creates images even more haunting than those in Mr. Spielberg 's 1993 classic . 4 +146731 7982 Mr. Polanski creates images even more haunting than those in Mr. Spielberg 's 1993 classic . 3 +146732 7982 creates images even more haunting than those in Mr. Spielberg 's 1993 classic . 3 +146733 7982 creates images even more haunting than those in Mr. Spielberg 's 1993 classic 3 +146734 7982 images even more haunting than those in Mr. Spielberg 's 1993 classic 3 +146735 7982 even more haunting than those in Mr. Spielberg 's 1993 classic 4 +146736 7982 haunting than those in Mr. Spielberg 's 1993 classic 2 +146737 7982 than those in Mr. Spielberg 's 1993 classic 2 +146738 7982 those in Mr. Spielberg 's 1993 classic 2 +146739 7982 in Mr. Spielberg 's 1993 classic 3 +146740 7982 Mr. Spielberg 's 1993 classic 3 +146741 7982 Mr. Spielberg 's 2 +146742 7982 1993 classic 3 +146743 7982 1993 2 +146744 7983 A mimetic approximation of better films 1 +146745 7983 A mimetic approximation 2 +146746 7983 mimetic approximation 2 +146747 7983 mimetic 2 +146748 7983 approximation 2 +146749 7983 of better films 1 +146750 7983 Contempt and 2 +146751 7984 The closest thing to the experience of space travel 3 +146752 7984 The closest thing to the experience 2 +146753 7984 The closest thing 2 +146754 7984 closest thing 2 +146755 7984 to the experience 3 +146756 7984 of space travel 2 +146757 7985 This would have been better than the fiction it has concocted , and there still could have been room for the war scenes . 1 +146758 7985 This would have been better than the fiction it has concocted , and there still could have been room for the war scenes 2 +146759 7985 This would have been better than the fiction it has concocted , and 1 +146760 7985 This would have been better than the fiction it has concocted , 2 +146761 7985 This would have been better than the fiction it has concocted 1 +146762 7985 would have been better than the fiction it has concocted 1 +146763 7985 have been better than the fiction it has concocted 2 +146764 7985 been better than the fiction it has concocted 2 +146765 7985 been better than the fiction 3 +146766 7985 better than the fiction 3 +146767 7985 than the fiction 2 +146768 7985 it has concocted 2 +146769 7985 has concocted 2 +146770 7985 there still could have been room for the war scenes 2 +146771 7985 still could have been room for the war scenes 1 +146772 7985 could have been room for the war scenes 2 +146773 7985 have been room for the war scenes 2 +146774 7985 been room for the war scenes 2 +146775 7985 room for the war scenes 2 +146776 7985 for the war scenes 2 +146777 7985 the war scenes 2 +146778 7985 war scenes 2 +146779 7986 Director Charles Stone III applies more detail to the film 's music than to the story line ; what 's best about Drumline is its energy . 4 +146780 7986 Director Charles Stone III applies more detail to the film 's music than to the story line ; what 's best about Drumline is its energy 3 +146781 7986 Director Charles Stone III applies more detail to the film 's music than to the story line ; 1 +146782 7986 Director Charles Stone III applies more detail to the film 's music than to the story line 1 +146783 7986 Director Charles Stone III 2 +146784 7986 applies more detail to the film 's music than to the story line 1 +146785 7986 applies more detail to the film 's music 2 +146786 7986 applies more detail 2 +146787 7986 more detail 2 +146788 7986 to the film 's music 3 +146789 7986 the film 's music 2 +146790 7986 than to the story line 2 +146791 7986 to the story line 2 +146792 7986 what 's best about Drumline is its energy 4 +146793 7986 what 's best about 3 +146794 7986 's best about 2 +146795 7986 best about 3 +146796 7986 Drumline is its energy 3 +146797 7986 is its energy 3 +146798 7987 If you can read the subtitles -LRB- the opera is sung in Italian -RRB- and you like ` Masterpiece Theatre ' type costumes , you 'll enjoy this movie . 3 +146799 7987 If you can read the subtitles -LRB- the opera is sung in Italian -RRB- and you like ` Masterpiece Theatre ' type costumes 2 +146800 7987 you can read the subtitles -LRB- the opera is sung in Italian -RRB- and you like ` Masterpiece Theatre ' type costumes 2 +146801 7987 can read the subtitles -LRB- the opera is sung in Italian -RRB- and you like ` Masterpiece Theatre ' type costumes 3 +146802 7987 can read the subtitles -LRB- the opera is sung in Italian -RRB- and 2 +146803 7987 can read the subtitles -LRB- the opera is sung in Italian -RRB- 2 +146804 7987 can read the subtitles 2 +146805 7987 -LRB- the opera is sung in Italian -RRB- 2 +146806 7987 the opera is sung in Italian -RRB- 2 +146807 7987 the opera is sung in Italian 2 +146808 7987 is sung in Italian 2 +146809 7987 sung in Italian 2 +146810 7987 in Italian 2 +146811 7987 you like ` Masterpiece Theatre ' type costumes 2 +146812 7987 like ` Masterpiece Theatre ' type costumes 2 +146813 7987 like ` 3 +146814 7987 Masterpiece Theatre ' type costumes 2 +146815 7987 Masterpiece Theatre ' 2 +146816 7987 Theatre ' 2 +146817 7987 type costumes 2 +146818 7987 , you 'll enjoy this movie . 3 +146819 7987 you 'll enjoy this movie . 3 +146820 7987 'll enjoy this movie . 3 +146821 7987 'll enjoy this movie 3 +146822 7987 enjoy this movie 4 +146823 7988 `` Frailty '' starts out like a typical Bible killer story , but it turns out to be significantly different -LRB- and better -RRB- than most films with this theme . 4 +146824 7988 `` Frailty '' starts out like a typical Bible killer story , but it turns out to be significantly different -LRB- and better -RRB- than most films with this theme 4 +146825 7988 `` Frailty '' starts out like a typical Bible killer story , but 2 +146826 7988 `` Frailty '' starts out like a typical Bible killer story , 2 +146827 7988 `` Frailty '' starts out like a typical Bible killer story 2 +146828 7988 Frailty '' starts out like a typical Bible killer story 1 +146829 7988 '' starts out like a typical Bible killer story 1 +146830 7988 starts out like a typical Bible killer story 1 +146831 7988 like a typical Bible killer story 1 +146832 7988 a typical Bible killer story 1 +146833 7988 typical Bible killer story 2 +146834 7988 Bible killer story 2 +146835 7988 killer story 2 +146836 7988 it turns out to be significantly different -LRB- and better -RRB- than most films with this theme 4 +146837 7988 turns out to be significantly different -LRB- and better -RRB- than most films with this theme 4 +146838 7988 to be significantly different -LRB- and better -RRB- than most films with this theme 4 +146839 7988 be significantly different -LRB- and better -RRB- than most films with this theme 3 +146840 7988 be significantly different -LRB- and better -RRB- than most films 3 +146841 7988 significantly different -LRB- and better -RRB- than most films 4 +146842 7988 significantly different -LRB- and better -RRB- 3 +146843 7988 different -LRB- and better -RRB- 3 +146844 7988 than most films 2 +146845 7988 with this theme 2 +146846 7988 this theme 2 +146847 7989 Diane Lane works nothing short of a minor miracle in Unfaithful . 4 +146848 7989 works nothing short of a minor miracle in Unfaithful . 4 +146849 7989 works nothing short of a minor miracle in Unfaithful 2 +146850 7989 nothing short of a minor miracle in Unfaithful 3 +146851 7989 of a minor miracle in Unfaithful 3 +146852 7989 a minor miracle in Unfaithful 3 +146853 7990 A mix of gritty realism , crisp storytelling and radiant compassion that effortlessly draws you in . 4 +146854 7990 A mix of gritty realism , crisp storytelling and radiant compassion that effortlessly draws you in 4 +146855 7990 of gritty realism , crisp storytelling and radiant compassion that effortlessly draws you in 3 +146856 7990 gritty realism , crisp storytelling and radiant compassion that effortlessly draws you in 3 +146857 7990 gritty realism , crisp storytelling and radiant compassion 3 +146858 7990 realism , crisp storytelling and radiant compassion 4 +146859 7990 realism , crisp storytelling and radiant 3 +146860 7990 realism , crisp storytelling and 3 +146861 7990 realism , crisp storytelling 3 +146862 7990 , crisp storytelling 3 +146863 7990 crisp storytelling 3 +146864 7990 that effortlessly draws you in 4 +146865 7990 effortlessly draws you in 3 +146866 7990 draws you in 3 +146867 7990 draws you 3 +146868 7991 If you love reading and\/or poetry , then by all means check it out . 3 +146869 7991 If you love reading and\/or poetry 3 +146870 7991 you love reading and\/or poetry 3 +146871 7991 love reading and\/or poetry 3 +146872 7991 reading and\/or poetry 2 +146873 7991 and\/or poetry 2 +146874 7991 , then by all means check it out . 3 +146875 7991 then by all means check it out . 3 +146876 7991 then by all 2 +146877 7991 by all 2 +146878 7991 means check it out . 3 +146879 7991 means check it out 2 +146880 7992 Did it move me to care about what happened in 1915 Armenia ? 2 +146881 7992 Did it move me to care about what happened in 1915 Armenia 2 +146882 7992 Did it 2 +146883 7992 move me to care about what happened in 1915 Armenia 3 +146884 7992 me to care about what happened in 1915 Armenia 2 +146885 7992 to care about what happened in 1915 Armenia 2 +146886 7992 care about what happened in 1915 Armenia 2 +146887 7992 about what happened in 1915 Armenia 2 +146888 7992 what happened in 1915 Armenia 2 +146889 7992 happened in 1915 Armenia 2 +146890 7992 in 1915 Armenia 2 +146891 7992 1915 Armenia 2 +146892 7992 Armenia 2 +146893 7993 A highly watchable , giggly little story with a sweet edge to it . 3 +146894 7993 A highly watchable , giggly little story with a sweet 3 +146895 7993 A highly watchable , giggly little story 4 +146896 7993 highly watchable , giggly little story 4 +146897 7993 highly watchable 4 +146898 7993 , giggly little story 3 +146899 7993 giggly little story 2 +146900 7993 giggly little 2 +146901 7993 giggly 3 +146902 7993 with a sweet 3 +146903 7993 a sweet 3 +146904 7993 edge to it . 3 +146905 7993 edge to it 3 +146906 7994 Quelle surprise ! 2 +146907 7994 Quelle 2 +146908 7994 surprise ! 2 +146909 7995 The film 's trailer also looked like crap , so crap is what I was expecting . 0 +146910 7995 The film 's trailer 2 +146911 7995 also looked like crap , so crap is what I was expecting . 1 +146912 7995 looked like crap , so crap is what I was expecting . 0 +146913 7995 looked like crap , so crap is what I was expecting 1 +146914 7995 looked like crap , 1 +146915 7995 looked like crap 0 +146916 7995 like crap 1 +146917 7995 so crap is what I was expecting 2 +146918 7995 crap is what I was expecting 1 +146919 7995 is what I was expecting 2 +146920 7995 what I was expecting 2 +146921 7995 I was expecting 1 +146922 7995 was expecting 2 +146923 7996 The biggest problem with this movie is that it 's not nearly long enough . 2 +146924 7996 The biggest problem with this movie 2 +146925 7996 with this movie 2 +146926 7996 is that it 's not nearly long enough . 2 +146927 7996 is that it 's not nearly long enough 2 +146928 7996 that it 's not nearly long enough 1 +146929 7996 it 's not nearly long enough 3 +146930 7996 's not nearly long enough 2 +146931 7996 nearly long enough 2 +146932 7997 The movie , while beautiful , feels labored , with a hint of the writing exercise about it . 2 +146933 7997 , while beautiful , feels labored , with a hint of the writing exercise about it . 2 +146934 7997 while beautiful , feels labored , with a hint of the writing exercise about it . 2 +146935 7997 while beautiful 3 +146936 7997 , feels labored , with a hint of the writing exercise about it . 2 +146937 7997 feels labored , with a hint of the writing exercise about it . 1 +146938 7997 feels labored , with a hint of the writing exercise about it 2 +146939 7997 feels labored , 1 +146940 7997 feels labored 2 +146941 7997 with a hint of the writing exercise about it 2 +146942 7997 a hint of the writing exercise about it 2 +146943 7997 of the writing exercise about it 2 +146944 7997 the writing exercise about it 2 +146945 7997 the writing exercise 2 +146946 7997 writing exercise 3 +146947 7998 Unexpected , and often contradictory , truths emerge . 3 +146948 7998 Unexpected , and often contradictory 2 +146949 7998 , and often contradictory 2 +146950 7998 and often contradictory 1 +146951 7998 often contradictory 1 +146952 7998 , truths emerge . 3 +146953 7998 truths emerge . 3 +146954 7998 truths 3 +146955 7998 emerge . 2 +146956 7999 One of the best of a growing strain of daring films ... that argue that any sexual relationship that does n't hurt anyone and works for its participants is a relationship that is worthy of our respect . 3 +146957 7999 One of the best of a growing strain of daring films ... that argue that any sexual relationship that does n't hurt anyone and works for its participants is a relationship that is worthy of our respect 4 +146958 7999 One of the best of a growing strain of daring films ... 4 +146959 7999 One of the best of a growing strain of daring films 3 +146960 7999 of the best of a growing strain of daring films 3 +146961 7999 the best of a growing strain of daring films 4 +146962 7999 of a growing strain of daring films 3 +146963 7999 a growing strain of daring films 2 +146964 7999 a growing strain 2 +146965 7999 growing strain 3 +146966 7999 of daring films 3 +146967 7999 daring films 2 +146968 7999 that argue that any sexual relationship that does n't hurt anyone and works for its participants is a relationship that is worthy of our respect 2 +146969 7999 argue that any sexual relationship that does n't hurt anyone and works for its participants is a relationship that is worthy of our respect 3 +146970 7999 that any sexual relationship that does n't hurt anyone and works for its participants is a relationship that is worthy of our respect 2 +146971 7999 any sexual relationship that does n't hurt anyone and works for its participants is a relationship that is worthy of our respect 3 +146972 7999 any sexual relationship that does n't hurt anyone and works for its participants 3 +146973 7999 any sexual relationship 2 +146974 7999 sexual relationship 3 +146975 7999 that does n't hurt anyone and works for its participants 2 +146976 7999 does n't hurt anyone and works for its participants 3 +146977 7999 hurt anyone and works for its participants 2 +146978 7999 hurt anyone and works 2 +146979 7999 anyone and works 2 +146980 7999 anyone and 2 +146981 7999 for its participants 2 +146982 7999 its participants 2 +146983 7999 is a relationship that is worthy of our respect 3 +146984 7999 a relationship that is worthy of our respect 3 +146985 7999 that is worthy of our respect 3 +146986 7999 is worthy of our respect 2 +146987 7999 worthy of our respect 3 +146988 7999 of our respect 3 +146989 7999 our respect 3 +146990 8000 A film with a great premise but only a great premise . 3 +146991 8000 A film with a great premise but only a great premise 1 +146992 8000 with a great premise but only a great premise 2 +146993 8000 a great premise but only a great premise 1 +146994 8000 a great premise but only 2 +146995 8001 One of those so-so films that could have been much better . 1 +146996 8001 One of those so-so films that could have been much better 1 +146997 8001 of those so-so films that could have been much better 1 +146998 8001 those so-so films that could have been much better 1 +146999 8001 those so-so films 2 +147000 8001 so-so films 2 +147001 8001 that could have been much better 1 +147002 8001 could have been much better 1 +147003 8001 have been much better 3 +147004 8001 been much better 1 +147005 8002 Normally , Rohmer 's talky films fascinate me , but when he moves his setting to the past , and relies on a historical text , he loses the richness of characterization that makes his films so memorable . 1 +147006 8002 Normally , Rohmer 's talky films fascinate me , but when he moves his setting to the past , and relies on a historical text , he loses the richness of characterization that makes his films so memorable 1 +147007 8002 Normally , Rohmer 's talky films fascinate me , but 2 +147008 8002 Normally , Rohmer 's talky films fascinate me , 2 +147009 8002 Normally , Rohmer 's talky films fascinate me 2 +147010 8002 , Rohmer 's talky films fascinate me 4 +147011 8002 Rohmer 's talky films fascinate me 3 +147012 8002 Rohmer 's talky films 2 +147013 8002 talky films 1 +147014 8002 fascinate me 3 +147015 8002 when he moves his setting to the past , and relies on a historical text , he loses the richness of characterization that makes his films so memorable 1 +147016 8002 when he moves his setting to the past , and relies on a historical text 2 +147017 8002 he moves his setting to the past , and relies on a historical text 2 +147018 8002 moves his setting to the past , and relies on a historical text 2 +147019 8002 moves his setting to the past , and 2 +147020 8002 moves his setting to the past , 2 +147021 8002 moves his setting to the past 2 +147022 8002 moves his setting 2 +147023 8002 his setting 2 +147024 8002 to the past 2 +147025 8002 relies on a historical text 2 +147026 8002 on a historical text 2 +147027 8002 a historical text 2 +147028 8002 historical text 2 +147029 8002 , he loses the richness of characterization that makes his films so memorable 1 +147030 8002 he loses the richness of characterization that makes his films so memorable 2 +147031 8002 loses the richness of characterization that makes his films so memorable 2 +147032 8002 the richness of characterization that makes his films so memorable 3 +147033 8002 the richness of characterization 3 +147034 8002 the richness 3 +147035 8002 of characterization 2 +147036 8002 that makes his films so memorable 4 +147037 8002 makes his films so memorable 4 +147038 8002 his films so memorable 3 +147039 8002 his films 3 +147040 8002 so memorable 3 +147041 8003 Circuit queens wo n't learn a thing , they 'll be too busy cursing the film 's strategically placed white sheets . 2 +147042 8003 Circuit queens wo n't learn a thing 2 +147043 8003 Circuit queens 2 +147044 8003 wo n't learn a thing 2 +147045 8003 learn a thing 2 +147046 8003 , they 'll be too busy cursing the film 's strategically placed white sheets . 1 +147047 8003 they 'll be too busy cursing the film 's strategically placed white sheets . 1 +147048 8003 'll be too busy cursing the film 's strategically placed white sheets . 1 +147049 8003 'll be too busy cursing the film 's strategically placed white sheets 2 +147050 8003 be too busy cursing the film 's strategically placed white sheets 1 +147051 8003 be too busy 2 +147052 8003 cursing the film 's strategically placed white sheets 1 +147053 8003 cursing 1 +147054 8003 the film 's strategically placed white sheets 2 +147055 8003 strategically placed white sheets 2 +147056 8003 strategically placed 2 +147057 8003 strategically 2 +147058 8003 white sheets 2 +147059 8004 LaBute 's careful handling makes the material seem genuine rather than pandering . 4 +147060 8004 LaBute 's careful handling 2 +147061 8004 LaBute 's 2 +147062 8004 careful handling 2 +147063 8004 makes the material seem genuine rather than pandering . 3 +147064 8004 makes the material seem genuine rather than pandering 3 +147065 8004 the material seem genuine rather than pandering 3 +147066 8004 seem genuine rather than pandering 4 +147067 8004 genuine rather than pandering 4 +147068 8004 rather than pandering 2 +147069 8004 than pandering 2 +147070 8005 Tom Green and an Ivy League college should never appear together on a marquee , especially when the payoff is an unschooled comedy like Stealing Harvard , which fails to keep 80 minutes from seeming like 800 . 2 +147071 8005 Tom Green and an Ivy League college 2 +147072 8005 an Ivy League college 2 +147073 8005 Ivy League college 3 +147074 8005 Ivy 2 +147075 8005 League college 2 +147076 8005 should never appear together on a marquee , especially when the payoff is an unschooled comedy like Stealing Harvard , which fails to keep 80 minutes from seeming like 800 . 1 +147077 8005 should never appear together on a marquee , especially when the payoff is an unschooled comedy like Stealing Harvard , which fails to keep 80 minutes from seeming like 800 0 +147078 8005 appear together on a marquee , especially when the payoff is an unschooled comedy like Stealing Harvard , which fails to keep 80 minutes from seeming like 800 1 +147079 8005 appear together 2 +147080 8005 on a marquee , especially when the payoff is an unschooled comedy like Stealing Harvard , which fails to keep 80 minutes from seeming like 800 1 +147081 8005 a marquee , especially when the payoff is an unschooled comedy like Stealing Harvard , which fails to keep 80 minutes from seeming like 800 0 +147082 8005 a marquee , 2 +147083 8005 a marquee 2 +147084 8005 marquee 2 +147085 8005 especially when the payoff is an unschooled comedy like Stealing Harvard , which fails to keep 80 minutes from seeming like 800 0 +147086 8005 the payoff is an unschooled comedy like Stealing Harvard , which fails to keep 80 minutes from seeming like 800 0 +147087 8005 is an unschooled comedy like Stealing Harvard , which fails to keep 80 minutes from seeming like 800 1 +147088 8005 an unschooled comedy like Stealing Harvard , which fails to keep 80 minutes from seeming like 800 1 +147089 8005 an unschooled comedy 1 +147090 8005 unschooled comedy 1 +147091 8005 unschooled 1 +147092 8005 like Stealing Harvard , which fails to keep 80 minutes from seeming like 800 0 +147093 8005 Stealing Harvard , which fails to keep 80 minutes from seeming like 800 0 +147094 8005 Stealing Harvard , 2 +147095 8005 which fails to keep 80 minutes from seeming like 800 0 +147096 8005 fails to keep 80 minutes from seeming like 800 0 +147097 8005 to keep 80 minutes from seeming like 800 0 +147098 8005 keep 80 minutes from seeming like 800 3 +147099 8005 keep 80 minutes 2 +147100 8005 from seeming like 800 2 +147101 8005 seeming like 800 2 +147102 8005 like 800 2 +147103 8005 800 2 +147104 8006 The great pity is that those responsible did n't cut their losses -- and ours -- and retitle it The Adventures of Direct-to-Video Nash , and send it to its proper home . 1 +147105 8006 The great pity 1 +147106 8006 great pity 1 +147107 8006 is that those responsible did n't cut their losses -- and ours -- and retitle it The Adventures of Direct-to-Video Nash , and send it to its proper home . 1 +147108 8006 is that those responsible did n't cut their losses -- and ours -- and retitle it The Adventures of Direct-to-Video Nash , and send it to its proper home 1 +147109 8006 that those responsible did n't cut their losses -- and ours -- and retitle it The Adventures of Direct-to-Video Nash , and send it to its proper home 0 +147110 8006 those responsible did n't cut their losses -- and ours -- and retitle it The Adventures of Direct-to-Video Nash , and send it to its proper home 1 +147111 8006 those responsible 2 +147112 8006 did n't cut their losses -- and ours -- and retitle it The Adventures of Direct-to-Video Nash , and send it to its proper home 0 +147113 8006 cut their losses -- and ours -- and retitle it The Adventures of Direct-to-Video Nash , and send it to its proper home 0 +147114 8006 cut their losses -- and ours -- and retitle it The Adventures of Direct-to-Video Nash , and 0 +147115 8006 cut their losses -- and ours -- and retitle it The Adventures of Direct-to-Video Nash , 1 +147116 8006 cut their losses -- and ours -- and retitle it The Adventures of Direct-to-Video Nash 0 +147117 8006 cut their losses -- and ours -- and 1 +147118 8006 cut their losses -- and ours -- 2 +147119 8006 cut their losses 1 +147120 8006 their losses 2 +147121 8006 losses 2 +147122 8006 -- and ours -- 2 +147123 8006 -- and ours 2 +147124 8006 retitle it The Adventures of Direct-to-Video Nash 1 +147125 8006 retitle 2 +147126 8006 it The Adventures of Direct-to-Video Nash 1 +147127 8006 The Adventures of Direct-to-Video Nash 0 +147128 8006 of Direct-to-Video Nash 1 +147129 8006 Direct-to-Video Nash 2 +147130 8006 send it to its proper home 2 +147131 8006 to its proper home 3 +147132 8006 its proper home 3 +147133 8006 proper home 3 +147134 8007 A film that begins with the everyday lives of naval personnel in San Diego and ends with scenes so true and heartbreaking that tears welled up in my eyes both times I saw the film . 4 +147135 8007 A film that begins with the everyday lives of naval personnel in San Diego and ends with scenes so true and heartbreaking that tears welled up in my eyes both times I 3 +147136 8007 that begins with the everyday lives of naval personnel in San Diego and ends with scenes so true and heartbreaking that tears welled up in my eyes both times I 4 +147137 8007 begins with the everyday lives of naval personnel in San Diego and ends with scenes so true and heartbreaking that tears welled up in my eyes both times I 4 +147138 8007 begins with the everyday lives of naval personnel in San Diego and ends with scenes so true and heartbreaking that tears welled up in my eyes both times 3 +147139 8007 begins with the everyday lives of naval personnel in San Diego and 2 +147140 8007 begins with the everyday lives of naval personnel in San Diego 2 +147141 8007 with the everyday lives of naval personnel in San Diego 2 +147142 8007 the everyday lives of naval personnel in San Diego 2 +147143 8007 the everyday lives 3 +147144 8007 everyday lives 2 +147145 8007 of naval personnel in San Diego 2 +147146 8007 naval personnel in San Diego 2 +147147 8007 naval personnel 2 +147148 8007 naval 2 +147149 8007 personnel 2 +147150 8007 in San Diego 2 +147151 8007 San Diego 2 +147152 8007 Diego 2 +147153 8007 ends with scenes so true and heartbreaking that tears welled up in my eyes both times 4 +147154 8007 ends with scenes so true and heartbreaking 3 +147155 8007 with scenes so true and heartbreaking 3 +147156 8007 scenes so true and heartbreaking 3 +147157 8007 so true and heartbreaking 4 +147158 8007 true and heartbreaking 3 +147159 8007 that tears welled up in my eyes both times 3 +147160 8007 tears welled up in my eyes both times 3 +147161 8007 welled up in my eyes both times 3 +147162 8007 welled up in my eyes 2 +147163 8007 welled up 2 +147164 8007 welled 2 +147165 8007 in my eyes 2 +147166 8007 my eyes 2 +147167 8007 both times 3 +147168 8007 saw the film . 2 +147169 8007 saw the film 3 +147170 8008 There 's a little violence and lots of sex in a bid to hold our attention , but it grows monotonous after a while , as do Joan and Philip 's repetitive arguments , schemes and treachery . 1 +147171 8008 There 's a little violence and lots of sex in a bid to hold our attention , but it grows monotonous after a while , as do Joan and Philip 's repetitive arguments , schemes and treachery 1 +147172 8008 There 's a little violence and lots of sex in a bid to hold our attention , but 2 +147173 8008 There 's a little violence and lots of sex in a bid to hold our attention , 2 +147174 8008 There 's a little violence and lots of sex in a bid to hold our attention 2 +147175 8008 's a little violence and lots of sex in a bid to hold our attention 1 +147176 8008 a little violence and lots of sex in a bid to hold our attention 1 +147177 8008 a little violence and lots 2 +147178 8008 little violence and lots 2 +147179 8008 violence and lots 2 +147180 8008 of sex in a bid to hold our attention 2 +147181 8008 sex in a bid to hold our attention 2 +147182 8008 in a bid to hold our attention 1 +147183 8008 a bid to hold our attention 1 +147184 8008 bid to hold our attention 2 +147185 8008 bid 2 +147186 8008 to hold our attention 2 +147187 8008 hold our attention 3 +147188 8008 our attention 2 +147189 8008 it grows monotonous after a while , as do Joan and Philip 's repetitive arguments , schemes and treachery 2 +147190 8008 grows monotonous after a while , as do Joan and Philip 's repetitive arguments , schemes and treachery 1 +147191 8008 grows monotonous 1 +147192 8008 after a while , as do Joan and Philip 's repetitive arguments , schemes and treachery 2 +147193 8008 a while , as do Joan and Philip 's repetitive arguments , schemes and treachery 1 +147194 8008 as do Joan and Philip 's repetitive arguments , schemes and treachery 2 +147195 8008 do Joan and Philip 's repetitive arguments , schemes and treachery 2 +147196 8008 Joan and Philip 's repetitive arguments , schemes and treachery 1 +147197 8008 Joan and Philip 2 +147198 8008 Joan and 2 +147199 8008 's repetitive arguments , schemes and treachery 1 +147200 8008 repetitive arguments , schemes and treachery 0 +147201 8008 arguments , schemes and treachery 2 +147202 8008 arguments , schemes and 2 +147203 8008 arguments , schemes 2 +147204 8008 arguments , 2 +147205 8008 treachery 1 +147206 8009 made Eddie Murphy a movie star and the man has n't aged a day . 3 +147207 8009 made Eddie Murphy a movie star and the man 3 +147208 8009 Eddie Murphy a movie star and the man 2 +147209 8009 a movie star and the man 2 +147210 8009 a movie star and 2 +147211 8009 has n't aged a day . 2 +147212 8009 has n't aged a day 3 +147213 8009 aged a day 2 +147214 8010 Even when he 's not at his most critically insightful , Godard can still be smarter than any 50 other filmmakers still at work . 3 +147215 8010 Even when he 's not at his most critically insightful 3 +147216 8010 when he 's not at his most critically insightful 2 +147217 8010 he 's not at his most critically insightful 2 +147218 8010 's not at his most critically insightful 2 +147219 8010 at his most critically insightful 3 +147220 8010 his most critically insightful 3 +147221 8010 his most 2 +147222 8010 critically insightful 3 +147223 8010 critically 2 +147224 8010 , Godard can still be smarter than any 50 other filmmakers still at work . 4 +147225 8010 Godard can still be smarter than any 50 other filmmakers still at work . 4 +147226 8010 can still be smarter than any 50 other filmmakers still at work . 3 +147227 8010 can still be smarter than any 50 other filmmakers still at work 3 +147228 8010 be smarter than any 50 other filmmakers still at work 2 +147229 8010 be smarter than any 50 other filmmakers still 1 +147230 8010 smarter than any 50 other filmmakers still 3 +147231 8010 than any 50 other filmmakers still 2 +147232 8010 than any 50 other filmmakers 2 +147233 8010 any 50 other filmmakers 2 +147234 8010 50 other filmmakers 2 +147235 8010 other filmmakers 2 +147236 8011 But , like Silence , it 's a movie that gets under your skin . 1 +147237 8011 , like Silence , it 's a movie that gets under your skin . 3 +147238 8011 like Silence , it 's a movie that gets under your skin . 3 +147239 8011 like Silence 2 +147240 8011 , it 's a movie that gets under your skin . 2 +147241 8011 it 's a movie that gets under your skin . 1 +147242 8011 's a movie that gets under your skin . 2 +147243 8011 's a movie that gets under your skin 3 +147244 8011 a movie that gets under your skin 2 +147245 8011 that gets under your skin 3 +147246 8011 gets under your skin 2 +147247 8012 Wanker Goths are on the loose ! 2 +147248 8012 Wanker Goths 2 +147249 8012 Wanker 2 +147250 8012 Goths 2 +147251 8012 are on the loose ! 2 +147252 8012 are on the loose 2 +147253 8012 on the loose 2 +147254 8012 the loose 2 +147255 8013 It sounds like another clever if pointless excursion into the abyss , and that 's more or less how it plays out . 1 +147256 8013 It sounds like another clever if pointless excursion into the abyss , and that 's more or less how it plays out 1 +147257 8013 It sounds like another clever if pointless excursion into the abyss , and 1 +147258 8013 It sounds like another clever if pointless excursion into the abyss , 2 +147259 8013 It sounds like another clever if pointless excursion into the abyss 2 +147260 8013 sounds like another clever if pointless excursion into the abyss 1 +147261 8013 sounds like another clever if pointless excursion 2 +147262 8013 like another clever if pointless excursion 2 +147263 8013 another clever if pointless excursion 1 +147264 8013 clever if pointless excursion 2 +147265 8013 if pointless excursion 1 +147266 8013 if pointless 2 +147267 8013 into the abyss 2 +147268 8013 the abyss 1 +147269 8013 that 's more or less how it plays out 2 +147270 8013 's more or less how it plays out 2 +147271 8013 more or less how it plays out 2 +147272 8013 how it plays out 2 +147273 8013 it plays out 2 +147274 8014 A must for fans of British cinema , if only because so many titans of the industry are along for the ride . 4 +147275 8014 must for fans of British cinema , if only because so many titans of the industry are along for the ride . 3 +147276 8014 must for fans of British cinema , if only because so many titans of the industry are along for the ride 3 +147277 8014 for fans of British cinema , if only because so many titans of the industry are along for the ride 3 +147278 8014 for fans of British cinema , if only 2 +147279 8014 fans of British cinema , if only 2 +147280 8014 fans of British cinema , 2 +147281 8014 fans of British cinema 2 +147282 8014 of British cinema 2 +147283 8014 British cinema 2 +147284 8014 because so many titans of the industry are along for the ride 2 +147285 8014 so many titans of the industry are along for the ride 2 +147286 8014 so many titans of the industry 2 +147287 8014 so many titans 2 +147288 8014 titans 2 +147289 8014 of the industry 2 +147290 8014 the industry 2 +147291 8014 are along for the ride 2 +147292 8014 are along 2 +147293 8015 It 's a fine , focused piece of work that reopens an interesting controversy and never succumbs to sensationalism . 4 +147294 8015 's a fine , focused piece of work that reopens an interesting controversy and never succumbs to sensationalism . 3 +147295 8015 's a fine , focused piece of work that reopens an interesting controversy and never succumbs to sensationalism 4 +147296 8015 a fine , focused piece of work that reopens an interesting controversy and never succumbs to sensationalism 4 +147297 8015 a fine , focused piece of work 3 +147298 8015 a fine , focused piece 3 +147299 8015 fine , focused piece 4 +147300 8015 fine , focused 3 +147301 8015 , focused 2 +147302 8015 that reopens an interesting controversy and never succumbs to sensationalism 3 +147303 8015 reopens an interesting controversy and never succumbs to sensationalism 3 +147304 8015 reopens an interesting controversy and 3 +147305 8015 reopens an interesting controversy 2 +147306 8015 reopens 2 +147307 8015 an interesting controversy 3 +147308 8015 interesting controversy 3 +147309 8015 never succumbs to sensationalism 3 +147310 8015 succumbs to sensationalism 3 +147311 8015 to sensationalism 2 +147312 8016 Romantic comedy and Dogme 95 filmmaking may seem odd bedfellows , but they turn out to be delightfully compatible here . 4 +147313 8016 Romantic comedy and Dogme 95 filmmaking may seem odd bedfellows , but they turn out to be delightfully compatible here 4 +147314 8016 Romantic comedy and Dogme 95 filmmaking may seem odd bedfellows , but 2 +147315 8016 Romantic comedy and Dogme 95 filmmaking may seem odd bedfellows , 2 +147316 8016 Romantic comedy and Dogme 95 filmmaking may seem odd bedfellows 3 +147317 8016 Romantic comedy and Dogme 95 filmmaking 2 +147318 8016 Romantic comedy and 2 +147319 8016 Dogme 95 filmmaking 2 +147320 8016 Dogme 3 +147321 8016 95 filmmaking 2 +147322 8016 may seem odd bedfellows 2 +147323 8016 seem odd bedfellows 1 +147324 8016 odd bedfellows 1 +147325 8016 bedfellows 2 +147326 8016 they turn out to be delightfully compatible here 3 +147327 8016 turn out to be delightfully compatible here 3 +147328 8016 to be delightfully compatible here 3 +147329 8016 be delightfully compatible here 3 +147330 8016 be delightfully compatible 3 +147331 8016 delightfully compatible 4 +147332 8016 compatible 3 +147333 8017 At a time when we 've learned the hard way just how complex international terrorism is , Collateral Damage paints an absurdly simplistic picture . 1 +147334 8017 At a time when we 've learned the hard way just how complex international terrorism is 2 +147335 8017 a time when we 've learned the hard way just how complex international terrorism is 2 +147336 8017 when we 've learned the hard way just how complex international terrorism is 2 +147337 8017 we 've learned the hard way just how complex international terrorism is 1 +147338 8017 've learned the hard way just how complex international terrorism is 1 +147339 8017 learned the hard way just how complex international terrorism is 2 +147340 8017 learned the hard way just 1 +147341 8017 learned the hard way 2 +147342 8017 the hard way 2 +147343 8017 hard way 2 +147344 8017 how complex international terrorism is 2 +147345 8017 complex international terrorism is 2 +147346 8017 complex international terrorism 2 +147347 8017 international terrorism 2 +147348 8017 , Collateral Damage paints an absurdly simplistic picture . 1 +147349 8017 Collateral Damage paints an absurdly simplistic picture . 1 +147350 8017 paints an absurdly simplistic picture . 1 +147351 8017 paints an absurdly simplistic picture 1 +147352 8017 an absurdly simplistic picture 1 +147353 8017 absurdly simplistic picture 0 +147354 8017 absurdly simplistic 0 +147355 8018 A fascinating documentary about the long and eventful spiritual journey of the guru who helped launch the New Age . 4 +147356 8018 A fascinating documentary about the long and eventful spiritual journey of the guru who helped 4 +147357 8018 about the long and eventful spiritual journey of the guru who helped 3 +147358 8018 the long and eventful spiritual journey of the guru who helped 4 +147359 8018 the long and eventful spiritual journey 3 +147360 8018 long and eventful spiritual journey 3 +147361 8018 long and eventful 3 +147362 8018 eventful 3 +147363 8018 spiritual journey 3 +147364 8018 of the guru who helped 3 +147365 8018 the guru who helped 3 +147366 8018 the guru 2 +147367 8018 guru 2 +147368 8018 who helped 2 +147369 8018 launch the New Age . 2 +147370 8018 launch the New Age 2 +147371 8018 launch 3 +147372 8018 the New Age 2 +147373 8019 Rodriguez has the chops of a smart-aleck film school brat and the imagination of a big kid ... 3 +147374 8019 has the chops of a smart-aleck film school brat and the imagination of a big kid ... 3 +147375 8019 has the chops of a smart-aleck film school brat and the imagination of a big kid 3 +147376 8019 the chops of a smart-aleck film school brat and the imagination of a big kid 3 +147377 8019 the chops of a smart-aleck film school brat and 2 +147378 8019 the chops of a smart-aleck film school brat 2 +147379 8019 the chops 2 +147380 8019 of a smart-aleck film school brat 2 +147381 8019 a smart-aleck film school brat 2 +147382 8019 smart-aleck film school brat 2 +147383 8019 film school brat 1 +147384 8019 school brat 2 +147385 8019 brat 2 +147386 8019 the imagination of a big kid 2 +147387 8019 of a big kid 2 +147388 8019 a big kid 2 +147389 8019 big kid 2 +147390 8020 The film 's lack of personality permeates all its aspects -- from the TV movie-esque , affected child acting to the dullest Irish pub scenes ever filmed . 0 +147391 8020 The film 's lack of personality 0 +147392 8020 The film 's lack 1 +147393 8020 of personality 2 +147394 8020 permeates all its aspects -- from the TV movie-esque , affected child acting to the dullest Irish pub scenes ever filmed . 1 +147395 8020 permeates all its aspects -- from the TV movie-esque , affected child acting to the dullest Irish pub scenes ever filmed 1 +147396 8020 permeates all its aspects -- 2 +147397 8020 permeates all its aspects 2 +147398 8020 from the TV movie-esque , affected child acting to the dullest Irish pub scenes ever filmed 0 +147399 8020 the TV movie-esque , affected child acting to the dullest Irish pub scenes ever filmed 0 +147400 8020 the TV movie-esque , 2 +147401 8020 the TV movie-esque 2 +147402 8020 TV movie-esque 2 +147403 8020 movie-esque 2 +147404 8020 affected child acting to the dullest Irish pub scenes ever filmed 0 +147405 8020 affected child acting to the dullest Irish pub scenes 0 +147406 8020 affected child acting 3 +147407 8020 child acting 1 +147408 8020 to the dullest Irish pub scenes 1 +147409 8020 the dullest Irish pub scenes 0 +147410 8020 dullest Irish pub scenes 1 +147411 8020 Irish pub scenes 2 +147412 8020 pub scenes 2 +147413 8020 pub 2 +147414 8020 ever filmed 2 +147415 8021 Eight Legged Freaks wo n't join the pantheon of great monster\/science fiction flicks that we have come to love ... 1 +147416 8021 wo n't join the pantheon of great monster\/science fiction flicks that we have come to love ... 1 +147417 8021 wo n't join the pantheon of great monster\/science fiction flicks that we have come to love 1 +147418 8021 join the pantheon of great monster\/science fiction flicks that we have come to love 3 +147419 8021 join the pantheon of great monster\/science fiction flicks 3 +147420 8021 join 2 +147421 8021 the pantheon of great monster\/science fiction flicks 3 +147422 8021 of great monster\/science fiction flicks 3 +147423 8021 great monster\/science fiction flicks 3 +147424 8021 monster\/science fiction flicks 3 +147425 8021 monster\/science 2 +147426 8021 fiction flicks 2 +147427 8021 that we have come to love 3 +147428 8021 we have come to love 3 +147429 8021 have come to love 2 +147430 8021 come to love 3 +147431 8022 There is a beautiful , aching sadness to it all . 3 +147432 8022 is a beautiful , aching sadness to it all . 3 +147433 8022 is a beautiful , aching sadness to it all 3 +147434 8022 a beautiful , aching sadness to it all 4 +147435 8022 a beautiful , aching sadness 4 +147436 8022 beautiful , aching sadness 3 +147437 8022 , aching sadness 2 +147438 8022 aching sadness 2 +147439 8022 aching 1 +147440 8022 to it all 2 +147441 8023 Harry Potter and the Chamber of Secrets is deja vu all over again , and while that is a cliche , nothing could be more appropriate . 2 +147442 8023 Harry Potter and the Chamber of Secrets is deja vu all over again , and while that is a cliche , nothing could be more appropriate 1 +147443 8023 Harry Potter and the Chamber of Secrets is deja vu all over again , and 1 +147444 8023 Harry Potter and the Chamber of Secrets is deja vu all over again , 1 +147445 8023 Harry Potter and the Chamber of Secrets is deja vu all over again 1 +147446 8023 is deja vu all over again 1 +147447 8023 is deja vu 2 +147448 8023 while that is a cliche , nothing could be more appropriate 2 +147449 8023 while that is a cliche 1 +147450 8023 that is a cliche 1 +147451 8023 is a cliche 1 +147452 8023 a cliche 2 +147453 8023 , nothing could be more appropriate 2 +147454 8023 nothing could be more appropriate 3 +147455 8023 could be more appropriate 1 +147456 8023 be more appropriate 2 +147457 8024 The kind of primal storytelling that George Lucas can only dream of . 3 +147458 8024 The kind of primal storytelling that George Lucas can only dream of 3 +147459 8024 of primal storytelling that George Lucas can only dream of 2 +147460 8024 primal storytelling that George Lucas can only dream of 3 +147461 8024 primal storytelling 2 +147462 8024 that George Lucas can only dream of 3 +147463 8024 George Lucas can only dream of 2 +147464 8024 can only dream of 2 +147465 8024 dream of 3 +147466 8025 The actors must indeed be good to recite some of this laughable dialogue with a straight face . 1 +147467 8025 must indeed be good to recite some of this laughable dialogue with a straight face . 3 +147468 8025 must indeed be good to recite some of this laughable dialogue with a straight face 1 +147469 8025 must indeed 3 +147470 8025 be good to recite some of this laughable dialogue with a straight face 2 +147471 8025 good to recite some of this laughable dialogue with a straight face 2 +147472 8025 to recite some of this laughable dialogue with a straight face 2 +147473 8025 recite some of this laughable dialogue with a straight face 3 +147474 8025 recite some of this laughable dialogue 1 +147475 8025 some of this laughable dialogue 1 +147476 8025 of this laughable dialogue 3 +147477 8025 this laughable dialogue 3 +147478 8025 laughable dialogue 1 +147479 8026 Stress ` dumb . ' 1 +147480 8026 Stress ` dumb . 1 +147481 8026 Stress ` dumb 1 +147482 8026 Stress 2 +147483 8026 ` dumb 1 +147484 8027 In questioning the election process , Payami graphically illustrates the problems of fledgling democracies , but also the strength and sense of freedom the Iranian people already possess , with or without access to the ballot box . 3 +147485 8027 In questioning the election process 2 +147486 8027 questioning the election process 2 +147487 8027 the election process 2 +147488 8027 election process 2 +147489 8027 , Payami graphically illustrates the problems of fledgling democracies , but also the strength and sense of freedom the Iranian people already possess , with or without access to the ballot box . 3 +147490 8027 Payami graphically illustrates the problems of fledgling democracies , but also the strength and sense of freedom the Iranian people already possess , with or without access to the ballot box . 3 +147491 8027 graphically illustrates the problems of fledgling democracies , but also the strength and sense of freedom the Iranian people already possess , with or without access to the ballot box . 3 +147492 8027 graphically 2 +147493 8027 illustrates the problems of fledgling democracies , but also the strength and sense of freedom the Iranian people already possess , with or without access to the ballot box . 2 +147494 8027 illustrates the problems of fledgling democracies , but also the strength and sense of freedom the Iranian people already possess , with or without access to the ballot box 3 +147495 8027 the problems of fledgling democracies , but also the strength and sense of freedom the Iranian people already possess , with or without access to the ballot box 2 +147496 8027 the problems of fledgling democracies , but also 2 +147497 8027 the problems of fledgling democracies , 2 +147498 8027 the problems of fledgling democracies 1 +147499 8027 of fledgling democracies 2 +147500 8027 fledgling democracies 2 +147501 8027 fledgling 2 +147502 8027 democracies 2 +147503 8027 the strength and sense of freedom the Iranian people already possess , with or without access to the ballot box 3 +147504 8027 the strength and sense 2 +147505 8027 strength and sense 3 +147506 8027 strength and 2 +147507 8027 of freedom the Iranian people already possess , with or without access to the ballot box 2 +147508 8027 freedom the Iranian people already possess , with or without access to the ballot box 3 +147509 8027 the Iranian people already possess , with or without access to the ballot box 2 +147510 8027 the Iranian people 2 +147511 8027 Iranian people 2 +147512 8027 already possess , with or without access to the ballot box 2 +147513 8027 possess , with or without access to the ballot box 2 +147514 8027 possess , with or without access 2 +147515 8027 possess , 2 +147516 8027 with or without access 2 +147517 8027 to the ballot box 2 +147518 8027 the ballot box 2 +147519 8027 ballot box 2 +147520 8028 While the film is competent , it 's also uninspired , lacking the real talent and wit to elevate it beyond its formula to the level of classic romantic comedy to which it aspires . 1 +147521 8028 While the film is competent 2 +147522 8028 the film is competent 3 +147523 8028 , it 's also uninspired , lacking the real talent and wit to elevate it beyond its formula to the level of classic romantic comedy to which it aspires . 0 +147524 8028 it 's also uninspired , lacking the real talent and wit to elevate it beyond its formula to the level of classic romantic comedy to which it aspires . 1 +147525 8028 's also uninspired , lacking the real talent and wit to elevate it beyond its formula to the level of classic romantic comedy to which it aspires . 0 +147526 8028 's also uninspired , lacking the real talent and wit to elevate it beyond its formula to the level of classic romantic comedy to which it aspires 1 +147527 8028 's also uninspired , 1 +147528 8028 's also uninspired 1 +147529 8028 lacking the real talent and wit to elevate it beyond its formula to the level of classic romantic comedy to which it aspires 0 +147530 8028 the real talent and wit to elevate it beyond its formula to the level of classic romantic comedy to which it aspires 2 +147531 8028 real talent and wit to elevate it beyond its formula to the level of classic romantic comedy to which it aspires 3 +147532 8028 talent and wit to elevate it beyond its formula to the level of classic romantic comedy to which it aspires 3 +147533 8028 talent and wit 3 +147534 8028 talent and 2 +147535 8028 to elevate it beyond its formula to the level of classic romantic comedy to which it aspires 3 +147536 8028 elevate it beyond its formula to the level of classic romantic comedy to which it aspires 3 +147537 8028 elevate it beyond its formula 2 +147538 8028 beyond its formula 3 +147539 8028 its formula 2 +147540 8028 to the level of classic romantic comedy to which it aspires 2 +147541 8028 the level of classic romantic comedy to which it aspires 3 +147542 8028 of classic romantic comedy to which it aspires 3 +147543 8028 classic romantic comedy to which it aspires 2 +147544 8028 classic romantic comedy 2 +147545 8028 to which it aspires 2 +147546 8028 it aspires 3 +147547 8029 It works well enough , since the thrills pop up frequently , and the dispatching of the cast is as often imaginative as it is gory . 3 +147548 8029 It works well enough , since the thrills pop up frequently , and the dispatching of the cast is as often imaginative as it is gory 3 +147549 8029 It works well enough , since the thrills pop up frequently , and 3 +147550 8029 It works well enough , since the thrills pop up frequently , 2 +147551 8029 It works well enough , since the thrills pop up frequently 3 +147552 8029 works well enough , since the thrills pop up frequently 3 +147553 8029 works well enough , 2 +147554 8029 since the thrills pop up frequently 3 +147555 8029 the thrills pop up frequently 3 +147556 8029 the thrills 3 +147557 8029 pop up frequently 2 +147558 8029 the dispatching of the cast is as often imaginative as it is gory 3 +147559 8029 the dispatching of the cast 2 +147560 8029 the dispatching 2 +147561 8029 dispatching 2 +147562 8029 is as often imaginative as it is gory 3 +147563 8029 is as often imaginative 3 +147564 8029 as often imaginative 3 +147565 8029 as it is gory 2 +147566 8029 it is gory 2 +147567 8029 is gory 2 +147568 8030 The hard-to-predict and absolutely essential chemistry between the down-to-earth Bullock and the nonchalant Grant proves to be sensational , and everything meshes in this elegant entertainment . 4 +147569 8030 The hard-to-predict and absolutely essential chemistry between the down-to-earth Bullock and the nonchalant Grant proves to be sensational , and everything meshes in this elegant entertainment 4 +147570 8030 The hard-to-predict and absolutely essential chemistry between the down-to-earth Bullock and the nonchalant Grant proves to be sensational , and 3 +147571 8030 The hard-to-predict and absolutely essential chemistry between the down-to-earth Bullock and the nonchalant Grant proves to be sensational , 4 +147572 8030 The hard-to-predict and absolutely essential chemistry between the down-to-earth Bullock and the nonchalant Grant proves to be sensational 4 +147573 8030 The hard-to-predict and absolutely essential chemistry between the down-to-earth Bullock and the nonchalant Grant 4 +147574 8030 The hard-to-predict and absolutely essential chemistry 3 +147575 8030 hard-to-predict and absolutely essential chemistry 3 +147576 8030 hard-to-predict and absolutely essential 3 +147577 8030 hard-to-predict and 2 +147578 8030 hard-to-predict 2 +147579 8030 absolutely essential 2 +147580 8030 between the down-to-earth Bullock and the nonchalant Grant 2 +147581 8030 the down-to-earth Bullock and the nonchalant Grant 3 +147582 8030 the down-to-earth Bullock and 2 +147583 8030 the down-to-earth Bullock 3 +147584 8030 down-to-earth Bullock 3 +147585 8030 down-to-earth 3 +147586 8030 the nonchalant Grant 2 +147587 8030 nonchalant Grant 2 +147588 8030 nonchalant 2 +147589 8030 proves to be sensational 3 +147590 8030 to be sensational 2 +147591 8030 be sensational 3 +147592 8030 everything meshes in this elegant entertainment 4 +147593 8030 meshes in this elegant entertainment 3 +147594 8030 meshes 2 +147595 8030 in this elegant entertainment 4 +147596 8030 this elegant entertainment 3 +147597 8030 elegant entertainment 3 +147598 8031 Norton holds the film together . 2 +147599 8031 holds the film together . 3 +147600 8031 holds the film together 2 +147601 8032 There 's not one decent performance from the cast and not one clever line of dialogue . 0 +147602 8032 's not one decent performance from the cast and not one clever line of dialogue . 1 +147603 8032 's not one decent performance from the cast and not one clever line of dialogue 0 +147604 8032 one decent performance from the cast and not one clever line of dialogue 1 +147605 8032 one decent performance from the cast and 3 +147606 8032 one decent performance from the cast 2 +147607 8032 one decent performance 3 +147608 8032 decent performance 3 +147609 8032 from the cast 2 +147610 8032 not one clever line of dialogue 0 +147611 8032 not one clever line 0 +147612 8032 one clever line 3 +147613 8032 clever line 2 +147614 8033 The film brilliantly shines on all the characters , as the direction is intelligently accomplished . 4 +147615 8033 brilliantly shines on all the characters , as the direction is intelligently accomplished . 4 +147616 8033 shines on all the characters , as the direction is intelligently accomplished . 3 +147617 8033 shines on all the characters , as the direction is intelligently accomplished 3 +147618 8033 shines on all the characters , 3 +147619 8033 shines on all the characters 4 +147620 8033 on all the characters 2 +147621 8033 as the direction is intelligently accomplished 4 +147622 8033 the direction is intelligently accomplished 3 +147623 8033 is intelligently accomplished 4 +147624 8033 is intelligently 4 +147625 8034 A delightful surprise because despite all the backstage drama , this is a movie that tells stories that work -- is charming , is moving , is funny and looks professional . 4 +147626 8034 A delightful surprise because despite all the backstage drama , this is a movie that tells stories that work -- is charming , is moving 4 +147627 8034 A delightful surprise 4 +147628 8034 delightful surprise 3 +147629 8034 because despite all the backstage drama , this is a movie that tells stories that work -- is charming , is moving 4 +147630 8034 despite all the backstage drama , this is a movie that tells stories that work -- is charming , is moving 4 +147631 8034 despite all the backstage drama 3 +147632 8034 all the backstage drama 2 +147633 8034 the backstage drama 2 +147634 8034 backstage drama 2 +147635 8034 , this is a movie that tells stories that work -- is charming , is moving 4 +147636 8034 this is a movie that tells stories that work -- is charming , is moving 3 +147637 8034 is a movie that tells stories that work -- is charming , is moving 3 +147638 8034 a movie that tells stories that work -- is charming , is moving 4 +147639 8034 that tells stories that work -- is charming , is moving 3 +147640 8034 tells stories that work -- is charming , is moving 4 +147641 8034 tells stories 2 +147642 8034 that work -- is charming , is moving 4 +147643 8034 work -- is charming , is moving 3 +147644 8034 work -- is charming , 3 +147645 8034 work -- is charming 3 +147646 8034 work -- 2 +147647 8034 is charming 4 +147648 8034 is moving 3 +147649 8034 , is funny and looks professional . 3 +147650 8034 is funny and looks professional . 3 +147651 8034 is funny and looks professional 4 +147652 8034 is funny and 3 +147653 8034 looks professional 2 +147654 8035 ... the maudlin way its story unfolds suggests a director fighting against the urge to sensationalize his material . 1 +147655 8035 the maudlin way its story unfolds suggests a director fighting against the urge to sensationalize his material . 2 +147656 8035 the maudlin way its story unfolds 1 +147657 8035 the maudlin way 2 +147658 8035 maudlin way 2 +147659 8035 its story unfolds 2 +147660 8035 suggests a director fighting against the urge to sensationalize his material . 3 +147661 8035 suggests a director fighting against the urge to sensationalize his material 2 +147662 8035 a director fighting against the urge to sensationalize his material 2 +147663 8035 fighting against the urge to sensationalize his material 2 +147664 8035 fighting against the urge 2 +147665 8035 against the urge 2 +147666 8035 the urge 2 +147667 8035 to sensationalize his material 2 +147668 8035 sensationalize his material 2 +147669 8035 sensationalize 2 +147670 8036 too many scenarios in which the hero might have an opportunity to triumphantly sermonize , and too few that allow us to wonder for ourselves if things will turn out okay . 0 +147671 8036 too many scenarios in which the hero might have an opportunity to triumphantly sermonize 1 +147672 8036 many scenarios in which the hero might have an opportunity to triumphantly sermonize 2 +147673 8036 many scenarios 2 +147674 8036 scenarios 2 +147675 8036 in which the hero might have an opportunity to triumphantly sermonize 3 +147676 8036 the hero might have an opportunity to triumphantly sermonize 2 +147677 8036 might have an opportunity to triumphantly sermonize 2 +147678 8036 have an opportunity to triumphantly sermonize 3 +147679 8036 an opportunity to triumphantly sermonize 2 +147680 8036 to triumphantly sermonize 3 +147681 8036 triumphantly sermonize 2 +147682 8036 sermonize 1 +147683 8036 , and too few that allow us to wonder for ourselves if things will turn out okay . 2 +147684 8036 too few that allow us to wonder for ourselves if things will turn out okay . 2 +147685 8036 that allow us to wonder for ourselves if things will turn out okay . 2 +147686 8036 that allow us to wonder for ourselves if things will turn out okay 2 +147687 8036 allow us to wonder for ourselves if things will turn out okay 2 +147688 8036 us to wonder for ourselves if things will turn out okay 2 +147689 8036 to wonder for ourselves if things will turn out okay 2 +147690 8036 wonder for ourselves if things will turn out okay 2 +147691 8036 wonder for ourselves 2 +147692 8036 for ourselves 2 +147693 8036 if things will turn out okay 2 +147694 8036 things will turn out okay 3 +147695 8036 will turn out okay 3 +147696 8036 turn out okay 3 +147697 8036 okay 2 +147698 8037 A flawed film but an admirable one that tries to immerse us in a world of artistic abandon and political madness and very nearly succeeds . 2 +147699 8037 A flawed film but an admirable one that tries to immerse us in a world of artistic abandon and political madness and very nearly 4 +147700 8037 but an admirable one that tries to immerse us in a world of artistic abandon and political madness and very nearly 3 +147701 8037 an admirable one that tries to immerse us in a world of artistic abandon and political madness and very nearly 3 +147702 8037 an admirable one 3 +147703 8037 admirable one 3 +147704 8037 that tries to immerse us in a world of artistic abandon and political madness and very nearly 2 +147705 8037 tries to immerse us in a world of artistic abandon and political madness and very nearly 3 +147706 8037 to immerse us in a world of artistic abandon and political madness and very nearly 3 +147707 8037 immerse us in a world of artistic abandon and political madness and very nearly 2 +147708 8037 immerse us 2 +147709 8037 immerse 2 +147710 8037 in a world of artistic abandon and political madness and very nearly 2 +147711 8037 a world of artistic abandon and political madness and very nearly 3 +147712 8037 a world of artistic abandon and 2 +147713 8037 a world of artistic abandon 2 +147714 8037 of artistic abandon 2 +147715 8037 artistic abandon 3 +147716 8037 political madness and very nearly 2 +147717 8037 political madness and 2 +147718 8037 political madness 2 +147719 8037 very nearly 2 +147720 8038 It would n't matter so much that this arrogant Richard Pryor wannabe 's routine is offensive , puerile and unimaginatively foul-mouthed if it was at least funny . 1 +147721 8038 would n't matter so much that this arrogant Richard Pryor wannabe 's routine is offensive , puerile and unimaginatively foul-mouthed if it was at least funny . 0 +147722 8038 would n't matter so much that this arrogant Richard Pryor wannabe 's routine is offensive , puerile and unimaginatively foul-mouthed if it was at least funny 0 +147723 8038 matter so much that this arrogant Richard Pryor wannabe 's routine is offensive , puerile and unimaginatively foul-mouthed if it was at least funny 2 +147724 8038 so much that this arrogant Richard Pryor wannabe 's routine is offensive , puerile and unimaginatively foul-mouthed if it was at least funny 1 +147725 8038 that this arrogant Richard Pryor wannabe 's routine is offensive , puerile and unimaginatively foul-mouthed if it was at least funny 0 +147726 8038 this arrogant Richard Pryor wannabe 's routine is offensive , puerile and unimaginatively foul-mouthed if it was at least funny 0 +147727 8038 this arrogant Richard Pryor wannabe 1 +147728 8038 arrogant Richard Pryor wannabe 1 +147729 8038 arrogant 1 +147730 8038 Richard Pryor wannabe 2 +147731 8038 Pryor wannabe 1 +147732 8038 's routine is offensive , puerile and unimaginatively foul-mouthed if it was at least funny 0 +147733 8038 routine is offensive , puerile and unimaginatively foul-mouthed if it was at least funny 1 +147734 8038 is offensive , puerile and unimaginatively foul-mouthed if it was at least funny 1 +147735 8038 is offensive , puerile and unimaginatively foul-mouthed 0 +147736 8038 offensive , puerile and unimaginatively foul-mouthed 1 +147737 8038 offensive , puerile and 1 +147738 8038 offensive , puerile 1 +147739 8038 unimaginatively foul-mouthed 1 +147740 8038 unimaginatively 0 +147741 8038 foul-mouthed 1 +147742 8038 if it was at least funny 2 +147743 8038 it was at least funny 3 +147744 8038 was at least funny 3 +147745 8038 at least funny 3 +147746 8039 The makers of Mothman Prophecies succeed in producing that most frightening of all movies -- a mediocre horror film too bad to be good and too good to be bad . 1 +147747 8039 The makers of Mothman Prophecies 2 +147748 8039 of Mothman Prophecies 2 +147749 8039 succeed in producing that most frightening of all movies -- a mediocre horror film too bad to be good and too good to be bad . 1 +147750 8039 succeed in producing that most frightening of all movies -- a mediocre horror film too bad to be good and too good to be bad 3 +147751 8039 in producing that most frightening of all movies -- a mediocre horror film too bad to be good and too good to be bad 1 +147752 8039 producing that most frightening of all movies -- a mediocre horror film too bad to be good and too good to be bad 2 +147753 8039 that most frightening of all movies -- a mediocre horror film too bad to be good and too good to be bad 1 +147754 8039 that most frightening of all movies -- 4 +147755 8039 that most frightening of all movies 3 +147756 8039 that most frightening 2 +147757 8039 most frightening 1 +147758 8039 of all movies 2 +147759 8039 all movies 3 +147760 8039 a mediocre horror film too bad to be good and too good to be bad 2 +147761 8039 a mediocre horror film 2 +147762 8039 mediocre horror film 1 +147763 8039 too bad to be good and too good to be bad 2 +147764 8039 too bad to be good and 1 +147765 8039 too bad to be good 1 +147766 8039 bad to be good 1 +147767 8039 too good to be bad 3 +147768 8039 good to be bad 3 +147769 8039 to be bad 1 +147770 8039 be bad 1 +147771 8040 Epps has neither the charisma nor the natural affability that has made Tucker a star . 0 +147772 8040 has neither the charisma nor the natural affability that has made Tucker a star . 0 +147773 8040 has neither the charisma nor the natural affability that has made Tucker a star 0 +147774 8040 has neither 2 +147775 8040 the charisma nor the natural affability that has made Tucker a star 2 +147776 8040 the charisma nor 2 +147777 8040 the natural affability that has made Tucker a star 3 +147778 8040 the natural affability 2 +147779 8040 natural affability 3 +147780 8040 affability 2 +147781 8040 that has made Tucker a star 3 +147782 8040 has made Tucker a star 3 +147783 8040 made Tucker a star 3 +147784 8040 Tucker a star 2 +147785 8041 Given the fact that virtually no one is bound to show up at theatres for it , the project should have been made for the tube . 0 +147786 8041 Given the fact that virtually no one is bound to show up at theatres for it 1 +147787 8041 the fact that virtually no one is bound to show up at theatres for it 1 +147788 8041 that virtually no one is bound to show up at theatres for it 0 +147789 8041 virtually no one is bound to show up at theatres for it 0 +147790 8041 virtually no one 1 +147791 8041 is bound to show up at theatres for it 2 +147792 8041 bound to show up at theatres for it 3 +147793 8041 to show up at theatres for it 2 +147794 8041 show up at theatres for it 2 +147795 8041 at theatres for it 2 +147796 8041 theatres for it 2 +147797 8041 , the project should have been made for the tube . 1 +147798 8041 the project should have been made for the tube . 1 +147799 8041 should have been made for the tube . 1 +147800 8041 should have been made for the tube 1 +147801 8041 have been made for the tube 2 +147802 8041 been made for the tube 2 +147803 8041 made for the tube 1 +147804 8041 for the tube 1 +147805 8041 the tube 2 +147806 8041 tube 2 +147807 8042 I am not generally a huge fan of cartoons derived from TV shows , but Hey Arnold ! 3 +147808 8042 am not generally a huge fan of cartoons derived from TV shows , but Hey Arnold ! 3 +147809 8042 am not generally a huge fan of cartoons derived from TV shows , but Hey Arnold 2 +147810 8042 am not 2 +147811 8042 generally a huge fan of cartoons derived from TV shows , but Hey Arnold 2 +147812 8042 generally a huge fan 3 +147813 8042 a huge fan 3 +147814 8042 huge fan 4 +147815 8042 of cartoons derived from TV shows , but Hey Arnold 2 +147816 8042 cartoons derived from TV shows , but Hey Arnold 2 +147817 8042 derived from TV shows , but Hey Arnold 2 +147818 8042 from TV shows , but Hey Arnold 2 +147819 8042 TV shows , but Hey Arnold 2 +147820 8042 TV shows , but 2 +147821 8042 TV shows , 2 +147822 8042 TV shows 2 +147823 8043 This is a fascinating film because there is no clear-cut hero and no all-out villain . 4 +147824 8043 is a fascinating film because there is no clear-cut hero and no all-out villain . 3 +147825 8043 is a fascinating film because there is no clear-cut hero and no all-out villain 3 +147826 8043 is a fascinating film 4 +147827 8043 a fascinating film 4 +147828 8043 fascinating film 4 +147829 8043 because there is no clear-cut hero and no all-out villain 2 +147830 8043 there is no clear-cut hero and no all-out villain 2 +147831 8043 is no clear-cut hero and no all-out villain 2 +147832 8043 no clear-cut hero and no all-out villain 1 +147833 8043 no clear-cut hero and 2 +147834 8043 no clear-cut hero 1 +147835 8043 clear-cut hero 3 +147836 8043 clear-cut 3 +147837 8043 no all-out villain 2 +147838 8043 all-out villain 2 +147839 8043 all-out 1 +147840 8044 Rehearsals are frequently more fascinating than the results . 3 +147841 8044 Rehearsals 2 +147842 8044 are frequently more fascinating than the results . 2 +147843 8044 are frequently more fascinating than the results 2 +147844 8044 more fascinating than the results 3 +147845 8044 fascinating than the results 3 +147846 8044 than the results 2 +147847 8045 The dark and bittersweet twist feels strange as things turn nasty and tragic during the final third of the film . 2 +147848 8045 The dark and bittersweet twist 3 +147849 8045 dark and bittersweet twist 3 +147850 8045 dark and bittersweet 3 +147851 8045 feels strange as things turn nasty and tragic during the final third of the film . 2 +147852 8045 feels strange as things turn nasty and tragic during the final third of the film 2 +147853 8045 feels strange 1 +147854 8045 as things turn nasty and tragic during the final third of the film 1 +147855 8045 things turn nasty and tragic during the final third of the film 2 +147856 8045 turn nasty and tragic during the final third of the film 1 +147857 8045 turn nasty and tragic 1 +147858 8045 nasty and tragic 2 +147859 8045 nasty and 1 +147860 8045 during the final third of the film 2 +147861 8045 the final third of the film 2 +147862 8045 the final third 2 +147863 8045 final third 3 +147864 8046 The film thrusts the inchoate but already eldritch Christian Right propaganda machine into national media circles . 2 +147865 8046 thrusts the inchoate but already eldritch Christian Right propaganda machine into national media circles . 1 +147866 8046 thrusts the inchoate but already eldritch Christian Right propaganda machine into national media circles 2 +147867 8046 thrusts the inchoate but already eldritch Christian Right propaganda machine 1 +147868 8046 the inchoate but already eldritch Christian Right propaganda machine 1 +147869 8046 inchoate but already eldritch Christian Right propaganda machine 1 +147870 8046 inchoate but already eldritch 2 +147871 8046 inchoate but 2 +147872 8046 inchoate 2 +147873 8046 already eldritch 2 +147874 8046 eldritch 2 +147875 8046 Christian Right propaganda machine 0 +147876 8046 Right propaganda machine 2 +147877 8046 propaganda machine 2 +147878 8046 into national media circles 2 +147879 8046 national media circles 2 +147880 8046 media circles 2 +147881 8047 The engagingly primitive animated special effects contribute to a mood that 's sustained through the surprisingly somber conclusion . 3 +147882 8047 The engagingly primitive animated special effects 2 +147883 8047 engagingly primitive animated special effects 2 +147884 8047 primitive animated special effects 1 +147885 8047 animated special effects 2 +147886 8047 contribute to a mood that 's sustained through the surprisingly somber conclusion . 3 +147887 8047 contribute to a mood that 's sustained through the surprisingly somber conclusion 3 +147888 8047 contribute 2 +147889 8047 to a mood that 's sustained through the surprisingly somber conclusion 3 +147890 8047 a mood that 's sustained through the surprisingly somber conclusion 3 +147891 8047 that 's sustained through the surprisingly somber conclusion 3 +147892 8047 's sustained through the surprisingly somber conclusion 2 +147893 8047 sustained through the surprisingly somber conclusion 2 +147894 8047 through the surprisingly somber conclusion 2 +147895 8047 the surprisingly somber conclusion 3 +147896 8047 surprisingly somber conclusion 2 +147897 8047 somber conclusion 2 +147898 8048 Hip-hop prison thriller of stupefying absurdity . 1 +147899 8048 Hip-hop prison thriller of stupefying absurdity 1 +147900 8048 Hip-hop prison thriller 2 +147901 8048 prison thriller 2 +147902 8048 of stupefying absurdity 1 +147903 8048 stupefying absurdity 2 +147904 8048 stupefying 2 +147905 8049 is a question for philosophers , not filmmakers ; all the filmmakers need to do is engage an audience . 1 +147906 8049 is a question for philosophers , not filmmakers ; all the filmmakers need to do 3 +147907 8049 a question for philosophers , not filmmakers ; all the filmmakers need to do 2 +147908 8049 a question for philosophers , not filmmakers ; 1 +147909 8049 a question for philosophers , not filmmakers 1 +147910 8049 for philosophers , not filmmakers 1 +147911 8049 philosophers , not filmmakers 1 +147912 8049 philosophers , not 1 +147913 8049 philosophers , 2 +147914 8049 philosophers 2 +147915 8049 all the filmmakers need to do 3 +147916 8049 all the filmmakers 2 +147917 8049 need to do 2 +147918 8049 is engage an audience . 2 +147919 8049 is engage an audience 3 +147920 8049 engage an audience 4 +147921 8050 If you enjoy being rewarded by a script that assumes you are n't very bright , then Blood Work is for you . 0 +147922 8050 If you enjoy being rewarded by a script that assumes you are n't very bright 0 +147923 8050 you enjoy being rewarded by a script that assumes you are n't very bright 1 +147924 8050 enjoy being rewarded by a script that assumes you are n't very bright 0 +147925 8050 being rewarded by a script that assumes you are n't very bright 1 +147926 8050 rewarded by a script that assumes you are n't very bright 1 +147927 8050 by a script that assumes you are n't very bright 0 +147928 8050 a script that assumes you are n't very bright 0 +147929 8050 that assumes you are n't very bright 1 +147930 8050 assumes you are n't very bright 1 +147931 8050 you are n't very bright 0 +147932 8050 are n't very bright 0 +147933 8050 , then Blood Work is for you . 3 +147934 8050 then Blood Work is for you . 3 +147935 8050 Blood Work is for you . 3 +147936 8050 is for you . 2 +147937 8050 is for you 2 +147938 8051 Nair does n't treat the issues lightly . 3 +147939 8051 does n't treat the issues lightly . 2 +147940 8051 does n't treat the issues lightly 2 +147941 8051 treat the issues lightly 2 +147942 8051 treat the issues 2 +147943 8052 By and large this is Mr. Kilmer 's movie , and it 's his strongest performance since The Doors . 3 +147944 8052 By and large this is Mr. Kilmer 's movie , and it 's his strongest performance since The Doors 3 +147945 8052 By and large this is Mr. Kilmer 's movie , and 2 +147946 8052 By and large this is Mr. Kilmer 's movie , 2 +147947 8052 By and large this is Mr. Kilmer 's movie 2 +147948 8052 By and large 2 +147949 8052 this is Mr. Kilmer 's movie 2 +147950 8052 is Mr. Kilmer 's movie 2 +147951 8052 Mr. Kilmer 's movie 2 +147952 8052 Mr. Kilmer 's 2 +147953 8052 it 's his strongest performance since The Doors 4 +147954 8052 's his strongest performance since The Doors 3 +147955 8052 his strongest performance since The Doors 4 +147956 8052 his strongest performance 3 +147957 8052 strongest performance 3 +147958 8052 since The Doors 2 +147959 8052 The Doors 2 +147960 8052 Doors 2 +147961 8053 This masterfully calibrated psychological thriller thrives on its taut performances and creepy atmosphere even if the screenplay falls somewhat short . 3 +147962 8053 This masterfully calibrated psychological thriller 4 +147963 8053 masterfully calibrated psychological thriller 3 +147964 8053 masterfully calibrated 4 +147965 8053 thrives on its taut performances and creepy atmosphere even if the screenplay falls somewhat short . 2 +147966 8053 thrives on its taut performances and creepy atmosphere even if the screenplay falls somewhat short 2 +147967 8053 thrives on its taut performances and creepy atmosphere 3 +147968 8053 on its taut performances and creepy atmosphere 1 +147969 8053 its taut performances and creepy atmosphere 2 +147970 8053 taut performances and creepy atmosphere 2 +147971 8053 performances and creepy atmosphere 2 +147972 8053 and creepy atmosphere 2 +147973 8053 creepy atmosphere 1 +147974 8053 even if the screenplay falls somewhat short 2 +147975 8053 if the screenplay falls somewhat short 1 +147976 8053 the screenplay falls somewhat short 1 +147977 8053 falls somewhat short 1 +147978 8053 somewhat short 1 +147979 8054 The charming result is Festival in Cannes . 3 +147980 8054 The charming result 3 +147981 8054 charming result 4 +147982 8054 is Festival in Cannes . 2 +147983 8054 is Festival in Cannes 2 +147984 8055 `` Home Movie '' is the film equivalent of a lovingly rendered coffee table book . 2 +147985 8055 Home Movie '' is the film equivalent of a lovingly rendered coffee table book . 2 +147986 8055 '' is the film equivalent of a lovingly rendered coffee table book . 4 +147987 8055 is the film equivalent of a lovingly rendered coffee table book . 2 +147988 8055 is the film equivalent of a lovingly rendered coffee table book 1 +147989 8055 the film equivalent of a lovingly rendered coffee table book 2 +147990 8055 the film equivalent 2 +147991 8055 film equivalent 2 +147992 8055 of a lovingly rendered coffee table book 3 +147993 8055 a lovingly rendered coffee table book 4 +147994 8055 lovingly rendered coffee table book 3 +147995 8055 lovingly rendered 3 +147996 8056 Cherry Orchard is badly edited , often awkwardly directed and suffers from the addition of a wholly unnecessary pre-credit sequence designed to give some of the characters a ` back story . ' 1 +147997 8056 is badly edited , often awkwardly directed and suffers from the addition of a wholly unnecessary pre-credit sequence designed to give some of the characters a ` back story . ' 0 +147998 8056 is badly edited , often awkwardly directed and suffers from the addition of a wholly unnecessary pre-credit sequence designed to give some of the characters a ` back story . 0 +147999 8056 is badly edited , often awkwardly directed and suffers from the addition of a wholly unnecessary pre-credit sequence designed to give some of the characters a ` back story 0 +148000 8056 badly edited , often awkwardly directed and suffers from the addition of a wholly unnecessary pre-credit sequence designed to give some of the characters a ` back story 1 +148001 8056 edited , often awkwardly directed and suffers from the addition of a wholly unnecessary pre-credit sequence designed to give some of the characters a ` back story 1 +148002 8056 , often awkwardly directed and suffers from the addition of a wholly unnecessary pre-credit sequence designed to give some of the characters a ` back story 1 +148003 8056 often awkwardly directed and suffers from the addition of a wholly unnecessary pre-credit sequence designed to give some of the characters a ` back story 1 +148004 8056 awkwardly directed and suffers from the addition of a wholly unnecessary pre-credit sequence designed to give some of the characters a ` back story 2 +148005 8056 directed and suffers from the addition of a wholly unnecessary pre-credit sequence designed to give some of the characters a ` back story 1 +148006 8056 suffers from the addition of a wholly unnecessary pre-credit sequence designed to give some of the characters a ` back story 0 +148007 8056 from the addition of a wholly unnecessary pre-credit sequence designed to give some of the characters a ` back story 1 +148008 8056 the addition of a wholly unnecessary pre-credit sequence designed to give some of the characters a ` back story 1 +148009 8056 of a wholly unnecessary pre-credit sequence designed to give some of the characters a ` back story 2 +148010 8056 a wholly unnecessary pre-credit sequence designed to give some of the characters a ` back story 1 +148011 8056 a wholly unnecessary pre-credit sequence 1 +148012 8056 wholly unnecessary pre-credit sequence 1 +148013 8056 pre-credit sequence 2 +148014 8056 pre-credit 2 +148015 8056 designed to give some of the characters a ` back story 3 +148016 8056 to give some of the characters a ` back story 2 +148017 8056 give some of the characters a ` back story 2 +148018 8056 give some of the characters 2 +148019 8056 a ` back story 2 +148020 8056 ` back story 2 +148021 8057 Though excessively tiresome , The Uncertainty Principle , as verbally pretentious as the title may be , has its handful of redeeming features , as long as you discount its ability to bore . 2 +148022 8057 Though excessively tiresome 2 +148023 8057 excessively tiresome 0 +148024 8057 , The Uncertainty Principle , as verbally pretentious as the title may be , has its handful of redeeming features , as long as you discount its ability to bore . 2 +148025 8057 The Uncertainty Principle , as verbally pretentious as the title may be , has its handful of redeeming features , as long as you discount its ability to bore . 2 +148026 8057 The Uncertainty Principle , as verbally pretentious as the title may be , 2 +148027 8057 The Uncertainty Principle , as verbally pretentious as the title may be 1 +148028 8057 The Uncertainty Principle , 2 +148029 8057 The Uncertainty Principle 2 +148030 8057 Uncertainty Principle 1 +148031 8057 Uncertainty 2 +148032 8057 Principle 2 +148033 8057 as verbally pretentious as the title may be 2 +148034 8057 verbally pretentious as the title may be 1 +148035 8057 pretentious as the title may be 1 +148036 8057 as the title may be 2 +148037 8057 the title may be 2 +148038 8057 has its handful of redeeming features , as long as you discount its ability to bore . 1 +148039 8057 has its handful of redeeming features , as long as you discount its ability to bore 2 +148040 8057 has its handful of redeeming features , 2 +148041 8057 has its handful of redeeming features 2 +148042 8057 its handful of redeeming features 3 +148043 8057 its handful 2 +148044 8057 of redeeming features 2 +148045 8057 redeeming features 3 +148046 8057 as long as you discount its ability to bore 2 +148047 8057 as you discount its ability to bore 1 +148048 8057 you discount its ability to bore 1 +148049 8057 discount its ability to bore 2 +148050 8057 discount its ability 2 +148051 8057 discount 2 +148052 8057 its ability 2 +148053 8057 to bore 1 +148054 8058 So brisk is Wang 's pacing that none of the excellent cast are given air to breathe . 2 +148055 8058 brisk is Wang 's pacing that none of the excellent cast are given air to breathe . 1 +148056 8058 is Wang 's pacing that none of the excellent cast are given air to breathe . 2 +148057 8058 is Wang 's pacing that none of the excellent cast are given air to breathe 1 +148058 8058 is Wang 's pacing 2 +148059 8058 Wang 's pacing 2 +148060 8058 Wang 's 2 +148061 8058 that none of the excellent cast are given air to breathe 1 +148062 8058 none of the excellent cast are given air to breathe 1 +148063 8058 none of the excellent cast 2 +148064 8058 of the excellent cast 3 +148065 8058 the excellent cast 4 +148066 8058 are given air to breathe 2 +148067 8058 given air to breathe 2 +148068 8058 given air 2 +148069 8058 to breathe 2 +148070 8059 The only time 8 Crazy Nights comes close to hitting a comedic or satirical target is during the offbeat musical numbers . 2 +148071 8059 The only time 8 Crazy Nights comes close to hitting a comedic or satirical target 1 +148072 8059 The only time 2 +148073 8059 only time 2 +148074 8059 8 Crazy Nights comes close to hitting a comedic or satirical target 3 +148075 8059 comes close to hitting a comedic or satirical target 3 +148076 8059 close to hitting a comedic or satirical target 3 +148077 8059 to hitting a comedic or satirical target 2 +148078 8059 hitting a comedic or satirical target 3 +148079 8059 a comedic or satirical target 2 +148080 8059 comedic or satirical target 2 +148081 8059 or satirical target 2 +148082 8059 satirical target 2 +148083 8059 is during the offbeat musical numbers . 3 +148084 8059 is during the offbeat musical numbers 2 +148085 8059 during the offbeat musical numbers 1 +148086 8059 the offbeat musical numbers 2 +148087 8059 offbeat musical numbers 2 +148088 8060 Me Without You has a bracing truth that 's refreshing after the phoniness of female-bonding pictures like Divine Secrets of the Ya-Ya Sisterhood . 4 +148089 8060 Without You has a bracing truth that 's refreshing after the phoniness of female-bonding pictures like Divine Secrets of the Ya-Ya Sisterhood . 3 +148090 8060 has a bracing truth that 's refreshing after the phoniness of female-bonding pictures like Divine Secrets of the Ya-Ya Sisterhood . 4 +148091 8060 has a bracing truth that 's refreshing after the phoniness of female-bonding pictures like Divine Secrets of the Ya-Ya Sisterhood 3 +148092 8060 a bracing truth that 's refreshing after the phoniness of female-bonding pictures like Divine Secrets of the Ya-Ya Sisterhood 4 +148093 8060 a bracing truth 2 +148094 8060 bracing truth 3 +148095 8060 that 's refreshing after the phoniness of female-bonding pictures like Divine Secrets of the Ya-Ya Sisterhood 3 +148096 8060 's refreshing after the phoniness of female-bonding pictures like Divine Secrets of the Ya-Ya Sisterhood 3 +148097 8060 refreshing after the phoniness of female-bonding pictures like Divine Secrets of the Ya-Ya Sisterhood 2 +148098 8060 after the phoniness of female-bonding pictures like Divine Secrets of the Ya-Ya Sisterhood 1 +148099 8060 the phoniness of female-bonding pictures like Divine Secrets of the Ya-Ya Sisterhood 1 +148100 8060 the phoniness 2 +148101 8060 phoniness 2 +148102 8060 of female-bonding pictures like Divine Secrets of the Ya-Ya Sisterhood 2 +148103 8060 female-bonding pictures like Divine Secrets of the Ya-Ya Sisterhood 2 +148104 8060 female-bonding pictures 2 +148105 8060 female-bonding 2 +148106 8060 like Divine Secrets of the Ya-Ya Sisterhood 2 +148107 8061 Some of the most ravaging , gut-wrenching , frightening war scenes since `` Saving Private Ryan '' have been recreated by John Woo in this little-known story of Native Americans and their role in the second great war . 3 +148108 8061 Some of the most ravaging , gut-wrenching , frightening war scenes since `` Saving Private Ryan '' 4 +148109 8061 of the most ravaging , gut-wrenching , frightening war scenes since `` Saving Private Ryan '' 3 +148110 8061 the most ravaging , gut-wrenching , frightening war scenes since `` Saving Private Ryan '' 3 +148111 8061 the most ravaging , 3 +148112 8061 the most ravaging 2 +148113 8061 most ravaging 3 +148114 8061 ravaging 2 +148115 8061 gut-wrenching , frightening war scenes since `` Saving Private Ryan '' 3 +148116 8061 gut-wrenching , frightening war scenes 2 +148117 8061 , frightening war scenes 1 +148118 8061 frightening war scenes 1 +148119 8061 since `` Saving Private Ryan '' 2 +148120 8061 since `` Saving Private Ryan 2 +148121 8061 have been recreated by John Woo in this little-known story of Native Americans and their role in the second great war . 2 +148122 8061 have been recreated by John Woo in this little-known story of Native Americans and their role in the second great war 2 +148123 8061 been recreated by John Woo in this little-known story of Native Americans and their role in the second great war 2 +148124 8061 recreated by John Woo in this little-known story of Native Americans and their role in the second great war 2 +148125 8061 recreated 2 +148126 8061 by John Woo in this little-known story of Native Americans and their role in the second great war 3 +148127 8061 John Woo in this little-known story of Native Americans and their role in the second great war 2 +148128 8061 in this little-known story of Native Americans and their role in the second great war 2 +148129 8061 this little-known story of Native Americans and their role in the second great war 2 +148130 8061 this little-known story of Native Americans and 3 +148131 8061 this little-known story of Native Americans 2 +148132 8061 this little-known story 2 +148133 8061 little-known story 2 +148134 8061 of Native Americans 2 +148135 8061 Native Americans 2 +148136 8061 their role in the second great war 2 +148137 8061 their role 2 +148138 8061 in the second great war 2 +148139 8061 the second great war 2 +148140 8061 second great war 2 +148141 8061 great war 2 +148142 8062 ... a plotline that 's as lumpy as two-day old porridge ... the filmmakers ' paws , sad to say , were all over this `` un-bear-able '' project ! 0 +148143 8062 a plotline that 's as lumpy as two-day old porridge ... the filmmakers ' paws , sad to say , were all over this `` un-bear-able '' project ! 0 +148144 8062 a plotline that 's as lumpy as two-day old porridge ... the filmmakers ' paws , sad to say , were all over this `` un-bear-able '' project 1 +148145 8062 a plotline 2 +148146 8062 that 's as lumpy as two-day old porridge ... the filmmakers ' paws , sad to say , were all over this `` un-bear-able '' project 0 +148147 8062 's as lumpy as two-day old porridge ... the filmmakers ' paws , sad to say , were all over this `` un-bear-able '' project 0 +148148 8062 's as lumpy as two-day old porridge ... 1 +148149 8062 's as lumpy as two-day old porridge 1 +148150 8062 as lumpy as two-day old porridge 1 +148151 8062 lumpy as two-day old porridge 0 +148152 8062 lumpy 2 +148153 8062 as two-day old porridge 0 +148154 8062 two-day old porridge 1 +148155 8062 two-day 2 +148156 8062 old porridge 1 +148157 8062 the filmmakers ' paws , sad to say , were all over this `` un-bear-able '' project 0 +148158 8062 the filmmakers ' paws , sad to say , 1 +148159 8062 the filmmakers ' paws , sad to say 1 +148160 8062 the filmmakers ' paws , 2 +148161 8062 the filmmakers ' paws 2 +148162 8062 paws 2 +148163 8062 were all over this `` un-bear-able '' project 1 +148164 8062 all over this `` un-bear-able '' project 0 +148165 8062 over this `` un-bear-able '' project 0 +148166 8062 this `` un-bear-able '' project 1 +148167 8062 `` un-bear-able '' project 1 +148168 8062 un-bear-able '' project 0 +148169 8062 un-bear-able 1 +148170 8062 '' project 2 +148171 8063 The story has some nice twists but the ending and some of the back-story is a little tired . 1 +148172 8063 The story has some nice twists but the ending and some of the back-story is a little tired 2 +148173 8063 The story has some nice twists but the ending and 3 +148174 8063 The story has some nice twists but the ending 2 +148175 8063 has some nice twists but the ending 3 +148176 8063 some nice twists but the ending 2 +148177 8063 some nice twists 3 +148178 8063 but the ending 2 +148179 8063 some of the back-story is a little tired 1 +148180 8063 some of the back-story 2 +148181 8063 of the back-story 2 +148182 8063 the back-story 2 +148183 8063 back-story 2 +148184 8064 There 's no excuse for following up a delightful , well-crafted family film with a computer-generated cold fish . 1 +148185 8064 's no excuse for following up a delightful , well-crafted family film with a computer-generated cold fish . 1 +148186 8064 's no excuse for following up a delightful , well-crafted family film with a computer-generated cold fish 0 +148187 8064 no excuse for following up a delightful , well-crafted family film with a computer-generated cold fish 1 +148188 8064 no excuse 1 +148189 8064 for following up a delightful , well-crafted family film with a computer-generated cold fish 3 +148190 8064 following up a delightful , well-crafted family film with a computer-generated cold fish 3 +148191 8064 following up a delightful , well-crafted family film 3 +148192 8064 following up 2 +148193 8064 a delightful , well-crafted family film 4 +148194 8064 delightful , well-crafted family film 4 +148195 8064 , well-crafted family film 4 +148196 8064 well-crafted family film 3 +148197 8064 with a computer-generated cold fish 2 +148198 8064 a computer-generated cold fish 0 +148199 8064 computer-generated cold fish 1 +148200 8064 cold fish 1 +148201 8065 On top of a foundering performance , -LRB- Madonna 's -RRB- denied her own athleticism by lighting that emphasizes every line and sag . 1 +148202 8065 On top of a foundering performance 1 +148203 8065 top of a foundering performance 2 +148204 8065 of a foundering performance 2 +148205 8065 a foundering performance 1 +148206 8065 foundering performance 1 +148207 8065 foundering 2 +148208 8065 , -LRB- Madonna 's -RRB- denied her own athleticism by lighting that emphasizes every line and sag . 2 +148209 8065 -LRB- Madonna 's -RRB- denied her own athleticism by lighting that emphasizes every line and sag . 1 +148210 8065 -LRB- Madonna 's -RRB- 2 +148211 8065 Madonna 's -RRB- 2 +148212 8065 denied her own athleticism by lighting that emphasizes every line and sag . 1 +148213 8065 denied her own athleticism by lighting that emphasizes every line and sag 1 +148214 8065 denied her own athleticism 2 +148215 8065 her own athleticism 2 +148216 8065 own athleticism 2 +148217 8065 by lighting that emphasizes every line and sag 2 +148218 8065 lighting that emphasizes every line and sag 1 +148219 8065 that emphasizes every line and sag 2 +148220 8065 emphasizes every line and sag 1 +148221 8065 every line and sag 2 +148222 8065 line and sag 2 +148223 8065 line and 2 +148224 8066 Shiner can certainly go the distance , but is n't world championship material 3 +148225 8066 can certainly go the distance , but is n't world championship material 2 +148226 8066 can certainly go the distance , but 2 +148227 8066 can certainly go the distance , 3 +148228 8066 can certainly go the distance 2 +148229 8066 is n't world championship material 1 +148230 8066 world championship material 2 +148231 8066 championship material 3 +148232 8066 championship 3 +148233 8067 The film is bright and flashy in all the right ways . 4 +148234 8067 is bright and flashy in all the right ways . 3 +148235 8067 is bright and flashy in all the right ways 4 +148236 8067 is bright and flashy 3 +148237 8067 bright and flashy 2 +148238 8067 bright and 3 +148239 8067 in all the right ways 3 +148240 8067 all the right ways 3 +148241 8067 the right ways 2 +148242 8067 right ways 3 +148243 8068 If anything , see it for Karen Black , who camps up a storm as a fringe feminist conspiracy theorist named Dirty Dick . 3 +148244 8068 , see it for Karen Black , who camps up a storm as a fringe feminist conspiracy theorist named Dirty Dick . 2 +148245 8068 see it for Karen Black , who camps up a storm as a fringe feminist conspiracy theorist named Dirty Dick . 2 +148246 8068 see it for Karen Black , who camps up a storm as a fringe feminist conspiracy theorist named Dirty Dick 2 +148247 8068 for Karen Black , who camps up a storm as a fringe feminist conspiracy theorist named Dirty Dick 2 +148248 8068 Karen Black , who camps up a storm as a fringe feminist conspiracy theorist named Dirty Dick 2 +148249 8068 Karen Black , 2 +148250 8068 Karen Black 2 +148251 8068 who camps up a storm as a fringe feminist conspiracy theorist named Dirty Dick 2 +148252 8068 camps up a storm as a fringe feminist conspiracy theorist named Dirty Dick 2 +148253 8068 up a storm as a fringe feminist conspiracy theorist named Dirty Dick 1 +148254 8068 up a storm as a fringe feminist conspiracy theorist 2 +148255 8068 up a storm 2 +148256 8068 a storm 2 +148257 8068 as a fringe feminist conspiracy theorist 1 +148258 8068 a fringe feminist conspiracy theorist 2 +148259 8068 fringe feminist conspiracy theorist 1 +148260 8068 fringe 2 +148261 8068 feminist conspiracy theorist 2 +148262 8068 conspiracy theorist 2 +148263 8068 theorist 2 +148264 8068 named Dirty Dick 2 +148265 8068 Dirty Dick 2 +148266 8069 The AAA of action , XXX is a blast of adrenalin , rated EEE for excitement . 4 +148267 8069 The AAA of action 3 +148268 8069 The AAA 2 +148269 8069 AAA 2 +148270 8069 , XXX is a blast of adrenalin , rated EEE for excitement . 4 +148271 8069 , XXX is a blast of adrenalin , 3 +148272 8069 XXX is a blast of adrenalin , 3 +148273 8069 XXX is a blast of adrenalin 4 +148274 8069 is a blast of adrenalin 2 +148275 8069 a blast of adrenalin 3 +148276 8069 a blast 3 +148277 8069 of adrenalin 2 +148278 8069 rated EEE for excitement . 4 +148279 8069 rated EEE for excitement 4 +148280 8069 rated 2 +148281 8069 EEE for excitement 3 +148282 8069 EEE 2 +148283 8069 for excitement 3 +148284 8070 What remains is a variant of the nincompoop Benigni persona , here a more annoying , though less angry version of the irresponsible Sandlerian manchild , undercut by the voice of the star of Road Trip . 0 +148285 8070 What remains 2 +148286 8070 is a variant of the nincompoop Benigni persona , here a more annoying , though less angry version of the irresponsible Sandlerian manchild , undercut by the voice of the star of Road Trip . 1 +148287 8070 is a variant of the nincompoop Benigni persona , here a more annoying , though less angry version of the irresponsible Sandlerian manchild , undercut by the voice of the star of Road Trip 1 +148288 8070 is a variant of the nincompoop Benigni persona , 1 +148289 8070 is a variant of the nincompoop Benigni persona 1 +148290 8070 a variant of the nincompoop Benigni persona 1 +148291 8070 a variant 2 +148292 8070 variant 2 +148293 8070 of the nincompoop Benigni persona 1 +148294 8070 the nincompoop Benigni persona 2 +148295 8070 nincompoop Benigni persona 1 +148296 8070 nincompoop 1 +148297 8070 Benigni persona 2 +148298 8070 here a more annoying , though less angry version of the irresponsible Sandlerian manchild , undercut by the voice of the star of Road Trip 1 +148299 8070 here a more annoying , though less angry 1 +148300 8070 a more annoying , though less angry 1 +148301 8070 a more annoying , though 1 +148302 8070 a more annoying , 2 +148303 8070 a more annoying 0 +148304 8070 more annoying 0 +148305 8070 less angry 2 +148306 8070 version of the irresponsible Sandlerian manchild , undercut by the voice of the star of Road Trip 1 +148307 8070 version of the irresponsible Sandlerian 2 +148308 8070 of the irresponsible Sandlerian 2 +148309 8070 the irresponsible Sandlerian 2 +148310 8070 irresponsible Sandlerian 1 +148311 8070 Sandlerian 2 +148312 8070 manchild , undercut by the voice of the star of Road Trip 2 +148313 8070 manchild , 2 +148314 8070 manchild 2 +148315 8070 undercut by the voice of the star of Road Trip 1 +148316 8070 by the voice of the star of Road Trip 2 +148317 8070 the voice of the star of Road Trip 2 +148318 8070 the voice 2 +148319 8070 of the star of Road Trip 2 +148320 8070 the star of Road Trip 2 +148321 8070 of Road Trip 2 +148322 8071 A well-done film of a self-reflexive , philosophical nature . 4 +148323 8071 A well-done film of a self-reflexive , philosophical nature 4 +148324 8071 A well-done film 3 +148325 8071 well-done film 4 +148326 8071 of a self-reflexive , philosophical nature 3 +148327 8071 a self-reflexive , philosophical nature 3 +148328 8071 self-reflexive , philosophical nature 2 +148329 8071 self-reflexive 2 +148330 8071 , philosophical nature 2 +148331 8071 philosophical nature 2 +148332 8072 An old-fashioned scary movie , one that relies on lingering terror punctuated by sudden shocks and not constant bloodshed punctuated by flying guts . 3 +148333 8072 An old-fashioned scary movie , one that relies on lingering terror punctuated by sudden shocks and not constant bloodshed 3 +148334 8072 An old-fashioned scary movie , 3 +148335 8072 An old-fashioned scary movie 2 +148336 8072 old-fashioned scary movie 3 +148337 8072 one that relies on lingering terror punctuated by sudden shocks and not constant bloodshed 2 +148338 8072 that relies on lingering terror punctuated by sudden shocks and not constant bloodshed 3 +148339 8072 relies on lingering terror punctuated by sudden shocks and not constant bloodshed 2 +148340 8072 on lingering terror punctuated by sudden shocks and not constant bloodshed 3 +148341 8072 lingering terror punctuated by sudden shocks and not constant bloodshed 3 +148342 8072 lingering terror 2 +148343 8072 punctuated by sudden shocks and not constant bloodshed 2 +148344 8072 punctuated by sudden shocks 3 +148345 8072 by sudden shocks 2 +148346 8072 sudden shocks 2 +148347 8072 and not constant bloodshed 2 +148348 8072 not constant bloodshed 3 +148349 8072 constant bloodshed 2 +148350 8072 punctuated by flying guts . 2 +148351 8072 punctuated by flying guts 1 +148352 8072 by flying guts 2 +148353 8072 flying guts 2 +148354 8073 Although melodramatic and predictable , this romantic comedy explores the friendship between five Filipino-Americans and their frantic efforts to find love . 2 +148355 8073 Although melodramatic and predictable 2 +148356 8073 melodramatic and predictable 1 +148357 8073 melodramatic and 1 +148358 8073 , this romantic comedy explores the friendship between five Filipino-Americans and their frantic efforts to find love . 2 +148359 8073 this romantic comedy explores the friendship between five Filipino-Americans and their frantic efforts to find love . 3 +148360 8073 explores the friendship between five Filipino-Americans and their frantic efforts to find love . 3 +148361 8073 explores the friendship between five Filipino-Americans and their frantic efforts to find love 2 +148362 8073 the friendship between five Filipino-Americans and their frantic efforts to find love 2 +148363 8073 the friendship between five Filipino-Americans and their frantic efforts 2 +148364 8073 the friendship 3 +148365 8073 between five Filipino-Americans and their frantic efforts 2 +148366 8073 five Filipino-Americans and their frantic efforts 2 +148367 8073 five Filipino-Americans and 2 +148368 8073 five Filipino-Americans 2 +148369 8073 Filipino-Americans 2 +148370 8073 their frantic efforts 2 +148371 8073 frantic efforts 1 +148372 8073 to find love 2 +148373 8074 Nothing sticks , really , except a lingering creepiness one feels from being dragged through a sad , sordid universe of guns , drugs , avarice and damaged dreams . 0 +148374 8074 sticks , really , except a lingering creepiness one feels from being dragged through a sad , sordid universe of guns , drugs , avarice and damaged dreams . 1 +148375 8074 sticks , really , except a lingering creepiness one feels from being dragged through a sad , sordid universe of guns , drugs , avarice and damaged dreams 0 +148376 8074 sticks , really , 2 +148377 8074 sticks , really 2 +148378 8074 sticks , 2 +148379 8074 except a lingering creepiness one feels from being dragged through a sad , sordid universe of guns , drugs , avarice and damaged dreams 1 +148380 8074 a lingering creepiness one feels from being dragged through a sad , sordid universe of guns , drugs , avarice and damaged dreams 2 +148381 8074 a lingering creepiness one 1 +148382 8074 lingering creepiness one 1 +148383 8074 creepiness one 2 +148384 8074 feels from being dragged through a sad , sordid universe of guns , drugs , avarice and damaged dreams 1 +148385 8074 from being dragged through a sad , sordid universe of guns , drugs , avarice and damaged dreams 0 +148386 8074 being dragged through a sad , sordid universe of guns , drugs , avarice and damaged dreams 1 +148387 8074 dragged through a sad , sordid universe of guns , drugs , avarice and damaged dreams 1 +148388 8074 through a sad , sordid universe of guns , drugs , avarice and damaged dreams 1 +148389 8074 a sad , sordid universe of guns , drugs , avarice and damaged dreams 2 +148390 8074 a sad , sordid universe 1 +148391 8074 sad , sordid universe 1 +148392 8074 , sordid universe 1 +148393 8074 sordid universe 1 +148394 8074 of guns , drugs , avarice and damaged dreams 2 +148395 8074 guns , drugs , avarice and damaged dreams 2 +148396 8074 , drugs , avarice and damaged dreams 2 +148397 8074 drugs , avarice and damaged dreams 2 +148398 8074 , avarice and damaged dreams 1 +148399 8074 avarice and damaged dreams 1 +148400 8074 avarice 1 +148401 8074 and damaged dreams 1 +148402 8074 damaged dreams 2 +148403 8075 Brosnan gives a portrayal as solid and as perfect as his outstanding performance as Bond in Die Another Day . 4 +148404 8075 gives a portrayal as solid and as perfect as his outstanding performance as Bond in Die Another Day . 4 +148405 8075 gives a portrayal as solid and as perfect as his outstanding performance as Bond in Die Another Day 4 +148406 8075 gives a portrayal 2 +148407 8075 a portrayal 2 +148408 8075 as solid and as perfect as his outstanding performance as Bond in Die Another Day 3 +148409 8075 as solid and as perfect as his outstanding performance as Bond in Die 3 +148410 8075 as solid and 2 +148411 8075 as perfect as his outstanding performance as Bond in Die 4 +148412 8075 perfect as his outstanding performance as Bond in Die 4 +148413 8075 as his outstanding performance as Bond in Die 3 +148414 8075 his outstanding performance as Bond in Die 4 +148415 8075 his outstanding performance 4 +148416 8075 outstanding performance 4 +148417 8075 as Bond in Die 2 +148418 8075 Bond in Die 2 +148419 8075 in Die 2 +148420 8076 Goes a long way on hedonistic gusto . 2 +148421 8076 Goes a long way on hedonistic gusto 3 +148422 8076 a long way on hedonistic gusto 2 +148423 8076 on hedonistic gusto 2 +148424 8076 hedonistic gusto 2 +148425 8077 Thirteen Conversations About One Thing lays out a narrative puzzle that interweaves individual stories , and , like a Mobius strip , elliptically loops back to where it began . 3 +148426 8077 Thirteen Conversations About One Thing lays out a narrative puzzle that interweaves individual stories , and , like a Mobius strip 2 +148427 8077 About One Thing lays out a narrative puzzle that interweaves individual stories , and , like a Mobius strip 2 +148428 8077 About One Thing lays out a narrative puzzle that interweaves individual stories , and , 2 +148429 8077 About One Thing lays out a narrative puzzle that interweaves individual stories , and 2 +148430 8077 About One Thing lays out a narrative puzzle that interweaves individual stories , 2 +148431 8077 About One Thing lays out a narrative puzzle that interweaves individual stories 2 +148432 8077 lays out a narrative puzzle that interweaves individual stories 3 +148433 8077 lays out 2 +148434 8077 lays 2 +148435 8077 a narrative puzzle that interweaves individual stories 3 +148436 8077 a narrative puzzle 2 +148437 8077 narrative puzzle 2 +148438 8077 that interweaves individual stories 3 +148439 8077 interweaves individual stories 2 +148440 8077 interweaves 2 +148441 8077 individual stories 2 +148442 8077 like a Mobius strip 2 +148443 8077 a Mobius strip 3 +148444 8077 Mobius strip 1 +148445 8077 Mobius 2 +148446 8077 , elliptically loops back to where it began . 2 +148447 8077 elliptically loops back to where it began . 2 +148448 8077 elliptically loops back to where it began 2 +148449 8077 elliptically loops 2 +148450 8077 elliptically 2 +148451 8077 loops 2 +148452 8077 back to where it began 2 +148453 8077 to where it began 2 +148454 8077 where it began 2 +148455 8077 it began 2 +148456 8077 began 2 +148457 8078 I 'm sure there 's a teenage boy out there somewhere who 's dying for this kind of entertainment . 1 +148458 8078 'm sure there 's a teenage boy out there somewhere who 's dying for this kind of entertainment . 1 +148459 8078 'm sure there 's a teenage boy out there somewhere who 's dying for this kind of entertainment 2 +148460 8078 sure there 's a teenage boy out there somewhere who 's dying for this kind of entertainment 1 +148461 8078 there 's a teenage boy out there somewhere who 's dying for this kind of entertainment 2 +148462 8078 's a teenage boy out there somewhere who 's dying for this kind of entertainment 2 +148463 8078 a teenage boy out there somewhere who 's dying for this kind of entertainment 1 +148464 8078 out there somewhere who 's dying for this kind of entertainment 1 +148465 8078 there somewhere who 's dying for this kind of entertainment 2 +148466 8078 somewhere who 's dying for this kind of entertainment 2 +148467 8078 who 's dying for this kind of entertainment 2 +148468 8078 's dying for this kind of entertainment 2 +148469 8078 dying for this kind of entertainment 4 +148470 8078 for this kind of entertainment 2 +148471 8078 this kind of entertainment 2 +148472 8079 The acting is just fine , but there 's not enough substance here to sustain interest for the full 90 minutes , especially with the weak payoff . 1 +148473 8079 The acting is just fine , but there 's not enough substance here to sustain interest for the full 90 minutes , especially with the weak payoff 2 +148474 8079 The acting is just fine , but 3 +148475 8079 The acting is just fine , 3 +148476 8079 The acting is just fine 3 +148477 8079 is just fine 3 +148478 8079 just fine 3 +148479 8079 there 's not enough substance here to sustain interest for the full 90 minutes , especially with the weak payoff 0 +148480 8079 's not enough substance here to sustain interest for the full 90 minutes , especially with the weak payoff 1 +148481 8079 's not enough substance here 1 +148482 8079 's not enough substance 1 +148483 8079 to sustain interest for the full 90 minutes , especially with the weak payoff 1 +148484 8079 sustain interest for the full 90 minutes , especially with the weak payoff 1 +148485 8079 for the full 90 minutes , especially with the weak payoff 1 +148486 8079 for the full 90 minutes 2 +148487 8079 the full 90 minutes 2 +148488 8079 full 90 minutes 2 +148489 8079 , especially with the weak payoff 1 +148490 8079 especially with the weak payoff 1 +148491 8079 with the weak payoff 1 +148492 8079 the weak payoff 1 +148493 8079 weak payoff 1 +148494 8080 The first hour is tedious though Ford and Neeson capably hold our interest , but its just not a thrilling movie . 1 +148495 8080 is tedious though Ford and Neeson capably hold our interest , but its just not a thrilling movie . 1 +148496 8080 is tedious though Ford and Neeson capably hold our interest , but its just not a thrilling movie 1 +148497 8080 is tedious 2 +148498 8080 though Ford and Neeson capably hold our interest , but its just not a thrilling movie 1 +148499 8080 Ford and Neeson capably hold our interest , but its just not a thrilling movie 1 +148500 8080 Ford and Neeson 2 +148501 8080 Ford and 2 +148502 8080 Neeson 2 +148503 8080 capably hold our interest , but its just not a thrilling movie 1 +148504 8080 capably 2 +148505 8080 hold our interest , but its just not a thrilling movie 1 +148506 8080 our interest , but its just not a thrilling movie 2 +148507 8080 our interest , 2 +148508 8080 but its just not a thrilling movie 1 +148509 8080 its just not a thrilling movie 1 +148510 8080 just not a thrilling movie 1 +148511 8080 just not a 2 +148512 8080 just not 2 +148513 8080 thrilling movie 3 +148514 8081 Steven Soderbergh 's digital video experiment is a clever and cutting , quick and dirty look at modern living and movie life . 3 +148515 8081 Steven Soderbergh 's digital video experiment 2 +148516 8081 digital video experiment 2 +148517 8081 video experiment 2 +148518 8081 is a clever and cutting , quick and dirty look at modern living and movie life . 4 +148519 8081 is a clever and cutting , quick and dirty look at modern living and movie life 3 +148520 8081 a clever and cutting , quick and dirty look at modern living and movie life 3 +148521 8081 a clever and cutting , quick and dirty look 3 +148522 8081 clever and cutting , quick and dirty look 3 +148523 8081 clever and cutting 4 +148524 8081 , quick and dirty look 2 +148525 8081 quick and dirty look 2 +148526 8081 quick and dirty 2 +148527 8081 quick and 2 +148528 8081 at modern living and movie life 2 +148529 8081 modern living and movie life 2 +148530 8081 living and movie life 2 +148531 8081 and movie life 3 +148532 8081 movie life 2 +148533 8082 Weighted down with slow , uninvolving storytelling and flat acting . 0 +148534 8082 Weighted down with slow , uninvolving storytelling and flat acting 0 +148535 8082 Weighted down with slow , uninvolving storytelling and 1 +148536 8082 Weighted down with slow , uninvolving storytelling 1 +148537 8082 Weighted down with slow , 1 +148538 8082 Weighted down with slow 1 +148539 8082 Weighted down 1 +148540 8082 Weighted 2 +148541 8082 with slow 2 +148542 8082 uninvolving storytelling 1 +148543 8082 flat acting 1 +148544 8083 Sheridan had a wonderful account to work from , but , curiously , he waters it down , turning grit and vulnerability into light reading . 1 +148545 8083 Sheridan had a wonderful account to work from , but , curiously , he waters it down , turning grit and vulnerability into light reading 3 +148546 8083 Sheridan had a wonderful account to work from , but , 2 +148547 8083 Sheridan had a wonderful account to work from , but 2 +148548 8083 Sheridan had a wonderful account to work from , 3 +148549 8083 Sheridan had a wonderful account to work from 4 +148550 8083 had a wonderful account to work from 3 +148551 8083 a wonderful account to work from 3 +148552 8083 wonderful account to work from 2 +148553 8083 account to work from 2 +148554 8083 to work from 2 +148555 8083 work from 2 +148556 8083 curiously , he waters it down , turning grit and vulnerability into light reading 1 +148557 8083 , he waters it down , turning grit and vulnerability into light reading 2 +148558 8083 he waters it down , turning grit and vulnerability into light reading 0 +148559 8083 waters it down , turning grit and vulnerability into light reading 1 +148560 8083 waters it down , 1 +148561 8083 waters it down 1 +148562 8083 waters it 2 +148563 8083 turning grit and vulnerability into light reading 2 +148564 8083 turning grit and vulnerability 2 +148565 8083 grit and vulnerability 2 +148566 8083 grit and 2 +148567 8083 into light reading 2 +148568 8083 light reading 2 +148569 8084 No amount of arty theorizing -- the special effects are ` German-Expressionist , ' according to the press notes -- can render it anything but laughable . 0 +148570 8084 No amount of arty theorizing 2 +148571 8084 of arty theorizing 2 +148572 8084 arty theorizing 2 +148573 8084 theorizing 2 +148574 8084 -- the special effects are ` German-Expressionist , ' according to the press notes -- can render it anything but laughable . 2 +148575 8084 -- the special effects are ` German-Expressionist , ' according to the press notes -- 2 +148576 8084 the special effects are ` German-Expressionist , ' according to the press notes -- 2 +148577 8084 the special effects are ` German-Expressionist , ' according to the press notes 1 +148578 8084 the special effects 2 +148579 8084 are ` German-Expressionist , ' according to the press notes 2 +148580 8084 ` German-Expressionist , ' according to the press notes 2 +148581 8084 German-Expressionist , ' according to the press notes 2 +148582 8084 German-Expressionist , ' 2 +148583 8084 German-Expressionist , 2 +148584 8084 German-Expressionist 2 +148585 8084 according to the press notes 2 +148586 8084 to the press notes 2 +148587 8084 the press notes 2 +148588 8084 press notes 2 +148589 8084 can render it anything but laughable . 1 +148590 8084 can render it anything but laughable 1 +148591 8084 render it anything but laughable 0 +148592 8084 render it 2 +148593 8084 render 2 +148594 8084 anything but laughable 0 +148595 8085 What goes on for the 110 minutes of `` Panic Room '' is a battle of witlessness between a not-so-bright mother and daughter and an even less capable trio of criminals . 1 +148596 8085 What goes on for the 110 minutes of `` Panic Room '' 1 +148597 8085 goes on for the 110 minutes of `` Panic Room '' 1 +148598 8085 for the 110 minutes of `` Panic Room '' 2 +148599 8085 the 110 minutes of `` Panic Room '' 2 +148600 8085 the 110 minutes 2 +148601 8085 110 minutes 2 +148602 8085 of `` Panic Room '' 2 +148603 8085 of `` Panic Room 2 +148604 8085 is a battle of witlessness between a not-so-bright mother and daughter and an even less capable trio of criminals . 2 +148605 8085 is a battle of witlessness between a not-so-bright mother and daughter and an even less capable trio of criminals 1 +148606 8085 a battle of witlessness between a not-so-bright mother and daughter and an even less capable trio of criminals 1 +148607 8085 of witlessness between a not-so-bright mother and daughter and an even less capable trio of criminals 2 +148608 8085 witlessness between a not-so-bright mother and daughter and an even less capable trio of criminals 1 +148609 8085 witlessness between a not-so-bright mother and daughter and 1 +148610 8085 witlessness between a not-so-bright mother and daughter 2 +148611 8085 witlessness 1 +148612 8085 between a not-so-bright mother and daughter 2 +148613 8085 a not-so-bright mother and daughter 1 +148614 8085 not-so-bright mother and daughter 1 +148615 8085 not-so-bright 2 +148616 8085 mother and daughter 2 +148617 8085 mother and 2 +148618 8085 an even less capable trio of criminals 1 +148619 8085 an even less capable trio 0 +148620 8085 even less capable trio 1 +148621 8085 even less capable 1 +148622 8085 less capable 1 +148623 8085 trio 2 +148624 8085 of criminals 3 +148625 8085 criminals 2 +148626 8086 Illiterate , often inert sci-fi action thriller . 1 +148627 8086 Illiterate 0 +148628 8086 , often inert sci-fi action thriller . 2 +148629 8086 often inert sci-fi action thriller . 2 +148630 8086 inert sci-fi action thriller . 1 +148631 8086 inert sci-fi action thriller 0 +148632 8086 sci-fi action thriller 2 +148633 8087 When compared to the usual , more somber festival entries , Davis ' highly personal brand of romantic comedy is a tart , smart breath of fresh air that stands out from the pack even if the picture itself is somewhat problematic . 4 +148634 8087 When compared to the usual , more somber festival entries , Davis ' highly personal brand of romantic comedy is a tart , smart breath of fresh air 3 +148635 8087 compared to the usual , more somber festival entries , Davis ' highly personal brand of romantic comedy is a tart , smart breath of fresh air 3 +148636 8087 compared to the usual , more somber festival entries 2 +148637 8087 to the usual , more somber festival entries 2 +148638 8087 the usual , more somber festival entries 2 +148639 8087 the usual , 2 +148640 8087 the usual 2 +148641 8087 more somber festival entries 2 +148642 8087 somber festival entries 2 +148643 8087 festival entries 2 +148644 8087 entries 2 +148645 8087 , Davis ' highly personal brand of romantic comedy is a tart , smart breath of fresh air 3 +148646 8087 Davis ' highly personal brand of romantic comedy is a tart , smart breath of fresh air 4 +148647 8087 Davis ' highly personal brand of romantic comedy 3 +148648 8087 Davis ' highly personal brand 2 +148649 8087 highly personal brand 2 +148650 8087 is a tart , smart breath of fresh air 3 +148651 8087 a tart , smart breath of fresh air 3 +148652 8087 a tart , smart breath 2 +148653 8087 tart , smart breath 2 +148654 8087 , smart breath 2 +148655 8087 smart breath 2 +148656 8087 that stands out from the pack even if the picture itself is somewhat problematic . 2 +148657 8087 stands out from the pack even if the picture itself is somewhat problematic . 3 +148658 8087 stands out from the pack even if the picture itself is somewhat problematic 2 +148659 8087 stands out from the pack 3 +148660 8087 from the pack 2 +148661 8087 even if the picture itself is somewhat problematic 1 +148662 8087 if the picture itself is somewhat problematic 2 +148663 8087 the picture itself is somewhat problematic 1 +148664 8087 itself is somewhat problematic 2 +148665 8087 is somewhat problematic 3 +148666 8087 somewhat problematic 1 +148667 8088 The best thing about the movie is its personable , amusing cast . 3 +148668 8088 The best thing about the movie 2 +148669 8088 is its personable , amusing cast . 3 +148670 8088 is its personable , amusing cast 3 +148671 8088 its personable , amusing cast 4 +148672 8088 personable , amusing cast 3 +148673 8088 personable , amusing 3 +148674 8088 personable 2 +148675 8089 Inherently caustic and oddly whimsical , the film chimes in on the grieving process and strangely draws the audience into the unexplainable pain and eccentricities that are attached to the concept of loss . 3 +148676 8089 Inherently caustic and oddly whimsical 2 +148677 8089 Inherently caustic and 1 +148678 8089 Inherently caustic 2 +148679 8089 oddly whimsical 3 +148680 8089 , the film chimes in on the grieving process and strangely draws the audience into the unexplainable pain and eccentricities that are attached to the concept of loss . 3 +148681 8089 the film chimes in on the grieving process and strangely draws the audience into the unexplainable pain and eccentricities that are attached to the concept of loss . 3 +148682 8089 chimes in on the grieving process and strangely draws the audience into the unexplainable pain and eccentricities that are attached to the concept of loss . 3 +148683 8089 chimes in on the grieving process and strangely draws the audience into the unexplainable pain and eccentricities that are attached to the concept of loss 3 +148684 8089 chimes in on the grieving process and 3 +148685 8089 chimes in on the grieving process 2 +148686 8089 chimes in 2 +148687 8089 on the grieving process 2 +148688 8089 strangely draws the audience into the unexplainable pain and eccentricities that are attached to the concept of loss 3 +148689 8089 draws the audience into the unexplainable pain and eccentricities that are attached to the concept of loss 3 +148690 8089 draws the audience 3 +148691 8089 into the unexplainable pain and eccentricities that are attached to the concept of loss 2 +148692 8089 the unexplainable pain and eccentricities that are attached to the concept of loss 2 +148693 8089 the unexplainable pain and 2 +148694 8089 the unexplainable pain 1 +148695 8089 unexplainable pain 1 +148696 8089 eccentricities that are attached to the concept of loss 3 +148697 8089 eccentricities 2 +148698 8089 that are attached to the concept of loss 2 +148699 8089 are attached to the concept of loss 1 +148700 8089 attached to the concept of loss 2 +148701 8089 to the concept of loss 1 +148702 8089 the concept of loss 1 +148703 8089 of loss 1 +148704 8090 Heaven is a haunting dramatization of a couple 's moral ascension . 2 +148705 8090 is a haunting dramatization of a couple 's moral ascension . 3 +148706 8090 is a haunting dramatization of a couple 's moral ascension 3 +148707 8090 a haunting dramatization of a couple 's moral ascension 3 +148708 8090 a haunting dramatization 3 +148709 8090 haunting dramatization 2 +148710 8090 of a couple 's moral ascension 3 +148711 8090 a couple 's moral ascension 2 +148712 8090 a couple 's 2 +148713 8090 moral ascension 3 +148714 8090 ascension 3 +148715 8091 Haneke 's script -LRB- from Elfriede Jelinek 's novel -RRB- is contrived , unmotivated , and psychologically unpersuasive , with an inconclusive ending . 0 +148716 8091 Haneke 's script -LRB- from Elfriede Jelinek 's novel -RRB- 2 +148717 8091 Haneke 's script 2 +148718 8091 -LRB- from Elfriede Jelinek 's novel -RRB- 2 +148719 8091 from Elfriede Jelinek 's novel -RRB- 2 +148720 8091 from Elfriede Jelinek 's novel 2 +148721 8091 is contrived , unmotivated , and psychologically unpersuasive , with an inconclusive ending . 0 +148722 8091 is contrived , unmotivated , and psychologically unpersuasive , with an inconclusive ending 0 +148723 8091 is contrived , unmotivated , and psychologically unpersuasive , 1 +148724 8091 is contrived , unmotivated , and psychologically unpersuasive 0 +148725 8091 contrived , unmotivated , and psychologically unpersuasive 1 +148726 8091 contrived , unmotivated , and 0 +148727 8091 contrived , unmotivated , 1 +148728 8091 contrived , unmotivated 1 +148729 8091 unmotivated 1 +148730 8091 psychologically unpersuasive 1 +148731 8091 with an inconclusive ending 2 +148732 8091 an inconclusive ending 1 +148733 8091 inconclusive ending 1 +148734 8091 inconclusive 1 +148735 8092 With an expressive face reminiscent of Gong Li and a vivid personality like Zhang Ziyi 's , Dong stakes out the emotional heart of Happy . 3 +148736 8092 With an expressive face reminiscent of Gong Li and a vivid personality like Zhang Ziyi 's 3 +148737 8092 an expressive face reminiscent of Gong Li and a vivid personality like Zhang Ziyi 's 2 +148738 8092 an expressive face 2 +148739 8092 expressive face 2 +148740 8092 reminiscent of Gong Li and a vivid personality like Zhang Ziyi 's 2 +148741 8092 reminiscent of Gong Li and a vivid personality 3 +148742 8092 of Gong Li and a vivid personality 2 +148743 8092 Gong Li and a vivid personality 3 +148744 8092 Gong Li and 2 +148745 8092 Gong Li 2 +148746 8092 a vivid personality 3 +148747 8092 vivid personality 3 +148748 8092 like Zhang Ziyi 's 2 +148749 8092 Zhang Ziyi 's 2 +148750 8092 Ziyi 's 2 +148751 8092 Ziyi 2 +148752 8092 , Dong stakes out the emotional heart of Happy . 3 +148753 8092 Dong stakes out the emotional heart of Happy . 3 +148754 8092 stakes out the emotional heart of Happy . 3 +148755 8092 stakes out the emotional heart of Happy 4 +148756 8092 stakes out 2 +148757 8092 stakes 2 +148758 8092 the emotional heart of Happy 3 +148759 8092 the emotional heart 3 +148760 8092 emotional heart 3 +148761 8092 of Happy 3 +148762 8093 A modestly made but profoundly moving documentary . 4 +148763 8093 A modestly made but profoundly moving documentary 4 +148764 8093 A modestly made but 3 +148765 8093 A modestly made 2 +148766 8093 modestly made 3 +148767 8093 profoundly moving documentary 4 +148768 8094 Fred Schepisi 's tale of four Englishmen facing the prospect of their own mortality views youthful affluence not as a lost ideal but a starting point . 3 +148769 8094 Fred Schepisi 's tale of four Englishmen facing the prospect of their own mortality 2 +148770 8094 Fred Schepisi 's tale 2 +148771 8094 of four Englishmen facing the prospect of their own mortality 1 +148772 8094 four Englishmen facing the prospect of their own mortality 2 +148773 8094 four Englishmen 2 +148774 8094 Englishmen 2 +148775 8094 facing the prospect of their own mortality 2 +148776 8094 the prospect of their own mortality 3 +148777 8094 of their own mortality 2 +148778 8094 their own mortality 3 +148779 8094 own mortality 2 +148780 8094 mortality 2 +148781 8094 views youthful affluence not as a lost ideal but a starting point . 3 +148782 8094 views youthful affluence not as a lost ideal but a starting point 3 +148783 8094 youthful affluence not as a lost ideal but a starting point 3 +148784 8094 youthful affluence not as 2 +148785 8094 youthful affluence 3 +148786 8094 affluence 3 +148787 8094 a lost ideal but a starting point 2 +148788 8094 a lost ideal 1 +148789 8094 lost ideal 1 +148790 8094 but a starting point 2 +148791 8094 a starting point 2 +148792 8095 It is , however , a completely honest , open-hearted film that should appeal to anyone willing to succumb to it . 4 +148793 8095 is , however , a completely honest , open-hearted film that should appeal to anyone willing to succumb to it . 4 +148794 8095 is , however , a completely honest , open-hearted film that should appeal to anyone willing to succumb to it 3 +148795 8095 is , however , 3 +148796 8095 is , however 2 +148797 8095 a completely honest , open-hearted film that should appeal to anyone willing to succumb to it 4 +148798 8095 a completely honest , open-hearted film 4 +148799 8095 completely honest , open-hearted film 4 +148800 8095 completely honest 3 +148801 8095 , open-hearted film 3 +148802 8095 open-hearted film 4 +148803 8095 open-hearted 2 +148804 8095 that should appeal to anyone willing to succumb to it 3 +148805 8095 should appeal to anyone willing to succumb to it 3 +148806 8095 appeal to anyone willing to succumb to it 2 +148807 8095 appeal to anyone willing to succumb 2 +148808 8095 to anyone willing to succumb 2 +148809 8095 anyone willing to succumb 2 +148810 8095 willing to succumb 2 +148811 8096 Movies like High Crimes flog the dead horse of surprise as if it were an obligation . 0 +148812 8096 like High Crimes flog the dead horse of surprise as if it were an obligation . 0 +148813 8096 like High Crimes flog the dead horse of surprise as if it were an obligation 1 +148814 8096 High Crimes flog the dead horse of surprise as if it were an obligation 1 +148815 8096 flog the dead horse of surprise as if it were an obligation 1 +148816 8096 flog the dead horse of surprise 2 +148817 8096 flog 2 +148818 8096 the dead horse of surprise 1 +148819 8096 the dead horse 1 +148820 8096 dead horse 2 +148821 8096 as if it were an obligation 1 +148822 8096 if it were an obligation 2 +148823 8096 it were an obligation 2 +148824 8096 were an obligation 1 +148825 8096 an obligation 2 +148826 8096 obligation 2 +148827 8097 A zippy 96 minutes of mediocre special effects , hoary dialogue , fluxing accents , and -- worst of all -- silly-looking Morlocks . 1 +148828 8097 A zippy 96 minutes of mediocre special effects , hoary dialogue , fluxing accents , and -- worst of all -- silly-looking Morlocks 1 +148829 8097 A zippy 96 minutes 3 +148830 8097 A zippy 2 +148831 8097 96 minutes 2 +148832 8097 96 2 +148833 8097 of mediocre special effects , hoary dialogue , fluxing accents , and -- worst of all -- silly-looking Morlocks 2 +148834 8097 mediocre special effects , hoary dialogue , fluxing accents , and -- worst of all -- silly-looking Morlocks 2 +148835 8097 mediocre special effects , 2 +148836 8097 mediocre special effects 1 +148837 8097 hoary dialogue , fluxing accents , and -- worst of all -- silly-looking Morlocks 1 +148838 8097 hoary dialogue , fluxing accents , and -- worst of all -- 0 +148839 8097 hoary dialogue , fluxing accents , and 1 +148840 8097 hoary dialogue , fluxing accents , 2 +148841 8097 hoary dialogue , fluxing accents 1 +148842 8097 hoary dialogue , 1 +148843 8097 hoary dialogue 2 +148844 8097 fluxing accents 2 +148845 8097 fluxing 2 +148846 8097 -- worst of all -- 1 +148847 8097 worst of all -- 1 +148848 8097 silly-looking Morlocks 1 +148849 8097 silly-looking 1 +148850 8097 Morlocks 2 +148851 8098 The movie does n't generate a lot of energy . 1 +148852 8098 does n't generate a lot of energy . 1 +148853 8098 does n't generate a lot of energy 1 +148854 8098 generate a lot of energy 4 +148855 8098 a lot of energy 3 +148856 8098 of energy 2 +148857 8099 One of those decades-spanning historical epics that strives to be intimate and socially encompassing but fails to do justice to either effort in three hours of screen time . 1 +148858 8099 One of those decades-spanning historical epics that strives to be intimate and socially encompassing but fails to do justice to either effort in three hours of screen time 0 +148859 8099 of those decades-spanning historical epics that strives to be intimate and socially encompassing but fails to do justice to either effort in three hours of screen time 1 +148860 8099 those decades-spanning historical epics that strives to be intimate and socially encompassing but fails to do justice to either effort in three hours of screen time 0 +148861 8099 those decades-spanning historical epics 2 +148862 8099 decades-spanning historical epics 2 +148863 8099 decades-spanning 2 +148864 8099 historical epics 2 +148865 8099 epics 3 +148866 8099 that strives to be intimate and socially encompassing but fails to do justice to either effort in three hours of screen time 2 +148867 8099 strives to be intimate and socially encompassing but fails to do justice to either effort in three hours of screen time 1 +148868 8099 strives to be intimate and socially encompassing but 3 +148869 8099 strives to be intimate and socially encompassing 2 +148870 8099 to be intimate and socially encompassing 3 +148871 8099 be intimate and socially encompassing 4 +148872 8099 intimate and socially encompassing 4 +148873 8099 socially encompassing 3 +148874 8099 socially 2 +148875 8099 encompassing 3 +148876 8099 fails to do justice to either effort in three hours of screen time 1 +148877 8099 to do justice to either effort in three hours of screen time 1 +148878 8099 do justice to either effort in three hours of screen time 3 +148879 8099 to either effort in three hours of screen time 1 +148880 8099 either effort in three hours of screen time 2 +148881 8099 either effort 2 +148882 8099 in three hours of screen time 2 +148883 8099 three hours of screen time 2 +148884 8100 A captivatingly quirky hybrid of character portrait , romantic comedy and beat-the-clock thriller . 3 +148885 8100 A captivatingly quirky hybrid of character portrait , romantic comedy and beat-the-clock thriller 3 +148886 8100 A captivatingly quirky hybrid 3 +148887 8100 captivatingly quirky hybrid 3 +148888 8100 captivatingly 3 +148889 8100 quirky hybrid 2 +148890 8100 of character portrait , romantic comedy and beat-the-clock thriller 3 +148891 8100 character portrait , romantic comedy and beat-the-clock thriller 3 +148892 8100 character portrait , romantic comedy and 2 +148893 8100 character portrait , romantic comedy 3 +148894 8100 character portrait , 2 +148895 8100 beat-the-clock thriller 3 +148896 8100 beat-the-clock 2 +148897 8101 The plot is plastered with one Hollywood cliche after another , most of which involve precocious kids getting the better of obnoxious adults . 1 +148898 8101 is plastered with one Hollywood cliche after another , most of which involve precocious kids getting the better of obnoxious adults . 1 +148899 8101 is plastered with one Hollywood cliche after another , most of which involve precocious kids getting the better of obnoxious adults 0 +148900 8101 plastered with one Hollywood cliche after another , most of which involve precocious kids getting the better of obnoxious adults 0 +148901 8101 plastered with one Hollywood cliche 1 +148902 8101 plastered 2 +148903 8101 with one Hollywood cliche 2 +148904 8101 one Hollywood cliche 1 +148905 8101 Hollywood cliche 2 +148906 8101 after another , most of which involve precocious kids getting the better of obnoxious adults 1 +148907 8101 another , most of which involve precocious kids getting the better of obnoxious adults 1 +148908 8101 another , 2 +148909 8101 most of which involve precocious kids getting the better of obnoxious adults 2 +148910 8101 most of which 2 +148911 8101 involve precocious kids getting the better of obnoxious adults 2 +148912 8101 precocious kids getting the better of obnoxious adults 2 +148913 8101 precocious kids 2 +148914 8101 getting the better of obnoxious adults 1 +148915 8101 the better of obnoxious adults 1 +148916 8101 of obnoxious adults 2 +148917 8101 obnoxious adults 1 +148918 8102 I like all four of the lead actors a lot and they manage to squeeze a few laughs out of the material , but they 're treading water at best in this forgettable effort . 3 +148919 8102 I like all four of the lead actors a lot and they manage to squeeze a few laughs out of the material , but they 're treading water at best in this forgettable effort 2 +148920 8102 I like all four of the lead actors a lot and they manage to squeeze a few laughs out of the material , but 3 +148921 8102 I like all four of the lead actors a lot and they manage to squeeze a few laughs out of the material , 3 +148922 8102 I like all four of the lead actors a lot and they manage to squeeze a few laughs out of the material 4 +148923 8102 I like all four of the lead actors a lot and 3 +148924 8102 I like all four of the lead actors a lot 3 +148925 8102 like all four of the lead actors a lot 3 +148926 8102 all four of the lead actors a lot 2 +148927 8102 all four 2 +148928 8102 of the lead actors a lot 2 +148929 8102 the lead actors a lot 2 +148930 8102 they manage to squeeze a few laughs out of the material 2 +148931 8102 manage to squeeze a few laughs out of the material 3 +148932 8102 to squeeze a few laughs out of the material 1 +148933 8102 squeeze a few laughs out of the material 3 +148934 8102 squeeze a few laughs out 2 +148935 8102 squeeze a few laughs 3 +148936 8102 of the material 2 +148937 8102 they 're treading water at best in this forgettable effort 0 +148938 8102 're treading water at best in this forgettable effort 1 +148939 8102 treading water at best in this forgettable effort 0 +148940 8102 treading water 2 +148941 8102 at best in this forgettable effort 2 +148942 8102 in this forgettable effort 1 +148943 8102 this forgettable effort 1 +148944 8102 forgettable effort 1 +148945 8103 Loud , chaotic and largely unfunny . 0 +148946 8103 Loud , chaotic and largely unfunny 1 +148947 8103 Loud , chaotic and 1 +148948 8103 Loud , chaotic 2 +148949 8103 largely unfunny 1 +148950 8104 Abandon spends 90 minutes trying figure out whether or not some cocky pseudo-intellectual kid has intentionally left college or was killed . 1 +148951 8104 spends 90 minutes trying figure out whether or not some cocky pseudo-intellectual kid has intentionally left college or was killed . 1 +148952 8104 spends 90 minutes trying figure out whether or not some cocky pseudo-intellectual kid has intentionally left college or was killed 2 +148953 8104 90 minutes trying figure out whether or not some cocky pseudo-intellectual kid has intentionally left college or was killed 0 +148954 8104 trying figure out whether or not some cocky pseudo-intellectual kid has intentionally left college or was killed 1 +148955 8104 trying figure out 2 +148956 8104 trying figure 2 +148957 8104 whether or not some cocky pseudo-intellectual kid has intentionally left college or was killed 2 +148958 8104 some cocky pseudo-intellectual kid has intentionally left college or was killed 2 +148959 8104 some cocky pseudo-intellectual kid 1 +148960 8104 cocky pseudo-intellectual kid 2 +148961 8104 pseudo-intellectual kid 1 +148962 8104 pseudo-intellectual 2 +148963 8104 has intentionally left college or was killed 1 +148964 8104 has intentionally left college or 2 +148965 8104 has intentionally left college 2 +148966 8104 has intentionally 2 +148967 8104 left college 2 +148968 8104 was killed 2 +148969 8105 The script is a disaster , with cloying messages and irksome characters . 1 +148970 8105 is a disaster , with cloying messages and irksome characters . 0 +148971 8105 is a disaster , with cloying messages and irksome characters 0 +148972 8105 is a disaster , 0 +148973 8105 with cloying messages and irksome characters 1 +148974 8105 cloying messages and irksome characters 1 +148975 8105 cloying messages and 2 +148976 8105 cloying messages 1 +148977 8105 irksome characters 1 +148978 8106 The art demands live viewing . 3 +148979 8106 The art demands 2 +148980 8106 art demands 2 +148981 8106 live viewing . 2 +148982 8106 live viewing 2 +148983 8107 Since Dahmer resorts to standard slasher flick thrills when it should be most in the mind of the killer , it misses a major opportunity to be truly revelatory about his psyche . 1 +148984 8107 Since Dahmer resorts to standard slasher flick thrills when it should be most in the mind of the killer 1 +148985 8107 Dahmer resorts to standard slasher flick thrills when it should be most in the mind of the killer 1 +148986 8107 Dahmer resorts to standard slasher flick 1 +148987 8107 Dahmer resorts 2 +148988 8107 to standard slasher flick 2 +148989 8107 standard slasher flick 1 +148990 8107 slasher flick 2 +148991 8107 thrills when it should be most in the mind of the killer 1 +148992 8107 when it should be most in the mind of the killer 2 +148993 8107 it should be most in the mind of the killer 2 +148994 8107 should be most in the mind of the killer 2 +148995 8107 be most in the mind of the killer 3 +148996 8107 most in the mind of the killer 2 +148997 8107 in the mind of the killer 3 +148998 8107 the mind of the killer 2 +148999 8107 of the killer 2 +149000 8107 , it misses a major opportunity to be truly revelatory about his psyche . 0 +149001 8107 it misses a major opportunity to be truly revelatory about his psyche . 1 +149002 8107 misses a major opportunity to be truly revelatory about his psyche . 1 +149003 8107 misses a major opportunity to be truly revelatory about his psyche 1 +149004 8107 a major opportunity to be truly revelatory about his psyche 3 +149005 8107 major opportunity to be truly revelatory about his psyche 3 +149006 8107 opportunity to be truly revelatory about his psyche 3 +149007 8107 to be truly revelatory about his psyche 2 +149008 8107 be truly revelatory about his psyche 2 +149009 8107 truly revelatory about his psyche 3 +149010 8107 revelatory about his psyche 3 +149011 8107 about his psyche 2 +149012 8107 his psyche 2 +149013 8108 None of this sounds promising and , indeed , the first half of Sorority Boys is as appalling as any ` comedy ' to ever spill from a projector 's lens . 0 +149014 8108 None of this sounds promising and , indeed , the first half of Sorority Boys is as appalling as any ` comedy ' to ever spill from a projector 's lens 1 +149015 8108 None of this sounds promising and , 1 +149016 8108 None of this sounds promising and 1 +149017 8108 None of this sounds promising 1 +149018 8108 indeed , the first half of Sorority Boys is as appalling as any ` comedy ' to ever spill from a projector 's lens 1 +149019 8108 , the first half of Sorority Boys is as appalling as any ` comedy ' to ever spill from a projector 's lens 0 +149020 8108 the first half of Sorority Boys is as appalling as any ` comedy ' to ever spill from a projector 's lens 0 +149021 8108 the first half of Sorority Boys 3 +149022 8108 of Sorority Boys 2 +149023 8108 is as appalling as any ` comedy ' to ever spill from a projector 's lens 0 +149024 8108 is as appalling as any ` comedy ' 2 +149025 8108 as appalling as any ` comedy ' 0 +149026 8108 appalling as any ` comedy ' 0 +149027 8108 as any ` comedy ' 2 +149028 8108 any ` comedy ' 2 +149029 8108 to ever spill from a projector 's lens 2 +149030 8108 ever spill from a projector 's lens 1 +149031 8108 spill from a projector 's lens 2 +149032 8108 spill 2 +149033 8108 from a projector 's lens 2 +149034 8108 a projector 's lens 2 +149035 8108 a projector 's 2 +149036 8108 projector 's 3 +149037 8108 projector 2 +149038 8109 This mild-mannered farce , directed by one of its writers , John C. Walsh , is corny in a way that bespeaks an expiration date passed a long time ago . 1 +149039 8109 This mild-mannered farce , directed by one of its writers , John C. Walsh , 2 +149040 8109 This mild-mannered farce , directed by one of its writers , John C. Walsh 2 +149041 8109 This mild-mannered farce , 2 +149042 8109 This mild-mannered farce 2 +149043 8109 mild-mannered farce 2 +149044 8109 directed by one of its writers , John C. Walsh 2 +149045 8109 by one of its writers , John C. Walsh 2 +149046 8109 one of its writers , John C. Walsh 2 +149047 8109 of its writers , John C. Walsh 2 +149048 8109 its writers , John C. Walsh 2 +149049 8109 its writers , 2 +149050 8109 its writers 2 +149051 8109 John C. Walsh 2 +149052 8109 C. Walsh 2 +149053 8109 is corny in a way that bespeaks an expiration date passed a long time ago . 1 +149054 8109 is corny in a way that bespeaks an expiration date passed a long time ago 2 +149055 8109 corny in a way that bespeaks an expiration date passed a long time ago 2 +149056 8109 in a way that bespeaks an expiration date passed a long time ago 1 +149057 8109 a way that bespeaks an expiration date passed a long time ago 1 +149058 8109 that bespeaks an expiration date passed a long time ago 2 +149059 8109 bespeaks an expiration date passed a long time ago 1 +149060 8109 bespeaks 2 +149061 8109 an expiration date passed a long time ago 0 +149062 8109 an expiration date 2 +149063 8109 passed a long time ago 2 +149064 8109 passed a long time 2 +149065 8110 Visually sumptuous but intellectually stultifying . 2 +149066 8110 Visually sumptuous but intellectually stultifying 2 +149067 8110 sumptuous but intellectually stultifying 2 +149068 8110 but intellectually stultifying 1 +149069 8110 intellectually stultifying 1 +149070 8111 But that they are doing it is thought-provoking . 3 +149071 8111 that they are doing it is thought-provoking . 3 +149072 8111 that they are doing 2 +149073 8111 they are doing 2 +149074 8111 are doing 2 +149075 8111 it is thought-provoking . 3 +149076 8111 is thought-provoking . 3 +149077 8111 is thought-provoking 4 +149078 8112 Vera has created a provocative , absorbing drama that reveals the curse of a self-hatred instilled by rigid social mores . 3 +149079 8112 has created a provocative , absorbing drama that reveals the curse of a self-hatred instilled by rigid social mores . 4 +149080 8112 has created a provocative , absorbing drama that reveals the curse of a self-hatred instilled by rigid social mores 4 +149081 8112 created a provocative , absorbing drama that reveals the curse of a self-hatred instilled by rigid social mores 3 +149082 8112 created a provocative , 3 +149083 8112 created a provocative 3 +149084 8112 a provocative 3 +149085 8112 absorbing drama that reveals the curse of a self-hatred instilled by rigid social mores 2 +149086 8112 drama that reveals the curse of a self-hatred instilled by rigid social mores 2 +149087 8112 that reveals the curse of a self-hatred instilled by rigid social mores 2 +149088 8112 reveals the curse of a self-hatred instilled by rigid social mores 2 +149089 8112 reveals the curse of a self-hatred instilled 2 +149090 8112 the curse of a self-hatred instilled 1 +149091 8112 of a self-hatred instilled 2 +149092 8112 a self-hatred instilled 1 +149093 8112 self-hatred instilled 1 +149094 8112 instilled 2 +149095 8112 by rigid social mores 2 +149096 8112 rigid social mores 2 +149097 8113 It aimlessly and unsuccessfully attempts to fuse at least three dull plots into one good one . 0 +149098 8113 aimlessly and unsuccessfully attempts to fuse at least three dull plots into one good one . 0 +149099 8113 aimlessly and unsuccessfully 1 +149100 8113 aimlessly and 1 +149101 8113 unsuccessfully 1 +149102 8113 attempts to fuse at least three dull plots into one good one . 1 +149103 8113 attempts to fuse at least three dull plots into one good one 1 +149104 8113 to fuse at least three dull plots into one good one 1 +149105 8113 fuse at least three dull plots into one good one 2 +149106 8113 fuse at least three dull plots 1 +149107 8113 fuse 2 +149108 8113 at least three dull plots 1 +149109 8113 dull plots 1 +149110 8113 into one good one 3 +149111 8113 one good one 3 +149112 8114 The film sounds like the stuff of lurid melodrama , but what makes it interesting as a character study is the fact that the story is told from Paul 's perspective . 3 +149113 8114 The film sounds like the stuff of lurid melodrama , but what makes it interesting as a character study is the fact that the story is told from Paul 's perspective 3 +149114 8114 The film sounds like the stuff of lurid melodrama , but 1 +149115 8114 The film sounds like the stuff of lurid melodrama , 2 +149116 8114 The film sounds like the stuff of lurid melodrama 1 +149117 8114 sounds like the stuff of lurid melodrama 2 +149118 8114 like the stuff of lurid melodrama 2 +149119 8114 the stuff of lurid melodrama 3 +149120 8114 of lurid melodrama 1 +149121 8114 lurid melodrama 2 +149122 8114 what makes it interesting as a character study is the fact that the story is told from Paul 's perspective 3 +149123 8114 makes it interesting as a character study is the fact that the story is told from Paul 's perspective 3 +149124 8114 it interesting as a character study is the fact that the story is told from Paul 's perspective 3 +149125 8114 interesting as a character study is the fact that the story is told from Paul 's perspective 3 +149126 8114 as a character study is the fact that the story is told from Paul 's perspective 2 +149127 8114 a character study is the fact that the story is told from Paul 's perspective 2 +149128 8114 is the fact that the story is told from Paul 's perspective 2 +149129 8114 that the story is told from Paul 's perspective 2 +149130 8114 the story is told from Paul 's perspective 2 +149131 8114 is told from Paul 's perspective 2 +149132 8114 told from Paul 's perspective 2 +149133 8114 from Paul 's perspective 2 +149134 8114 Paul 's perspective 2 +149135 8114 Paul 's 2 +149136 8115 A moving and weighty depiction of one family 's attempts to heal after the death of a child . 3 +149137 8115 A moving and weighty depiction of one family 3 +149138 8115 A moving and weighty depiction 4 +149139 8115 moving and weighty depiction 3 +149140 8115 moving and weighty 3 +149141 8115 of one family 2 +149142 8115 one family 2 +149143 8115 's attempts to heal after the death of a child . 2 +149144 8115 's attempts to heal after the death of a child 2 +149145 8115 attempts to heal after the death of a child 2 +149146 8115 to heal after the death of a child 2 +149147 8115 heal after the death of a child 2 +149148 8115 after the death of a child 1 +149149 8115 the death of a child 2 +149150 8115 of a child 2 +149151 8116 As I settled into my World War II memories , I found myself strangely moved by even the corniest and most hackneyed contrivances . 3 +149152 8116 As I settled into my World War II memories 2 +149153 8116 I settled into my World War II memories 2 +149154 8116 settled into my World War II memories 2 +149155 8116 into my World War II memories 2 +149156 8116 my World War II memories 2 +149157 8116 World War II memories 2 +149158 8116 War II memories 2 +149159 8116 II memories 2 +149160 8116 , I found myself strangely moved by even the corniest and most hackneyed contrivances . 3 +149161 8116 I found myself strangely moved by even the corniest and most hackneyed contrivances . 3 +149162 8116 found myself strangely moved by even the corniest and most hackneyed contrivances . 3 +149163 8116 found myself strangely moved by even the corniest and most hackneyed contrivances 3 +149164 8116 myself strangely moved by even the corniest and most hackneyed contrivances 2 +149165 8116 strangely moved by even the corniest and most hackneyed contrivances 3 +149166 8116 moved by even the corniest and most hackneyed contrivances 2 +149167 8116 by even the corniest and most hackneyed contrivances 1 +149168 8116 even the corniest and most hackneyed contrivances 1 +149169 8116 even the corniest and most hackneyed 0 +149170 8116 even the corniest and 1 +149171 8116 even the corniest 1 +149172 8116 the corniest 0 +149173 8116 corniest 1 +149174 8116 most hackneyed 1 +149175 8117 This is amusing for about three minutes . 2 +149176 8117 is amusing for about three minutes . 1 +149177 8117 is amusing for about three minutes 1 +149178 8117 amusing for about three minutes 1 +149179 8117 for about three minutes 2 +149180 8117 about three minutes 2 +149181 8118 Its strengths and weaknesses play off each other virtually to a stand-off , with the unfortunate trump card being the dreary mid-section of the film . 2 +149182 8118 Its strengths and weaknesses 2 +149183 8118 strengths and weaknesses 2 +149184 8118 strengths and 3 +149185 8118 play off each other virtually to a stand-off , with the unfortunate trump card being the dreary mid-section of the film . 1 +149186 8118 play off each other virtually to a stand-off , with the unfortunate trump card being the dreary mid-section of the film 2 +149187 8118 play off each other virtually to a stand-off , 1 +149188 8118 play off each other virtually to a stand-off 1 +149189 8118 play off 2 +149190 8118 each other virtually to a stand-off 2 +149191 8118 each other virtually 3 +149192 8118 other virtually 2 +149193 8118 to a stand-off 2 +149194 8118 a stand-off 2 +149195 8118 stand-off 2 +149196 8118 with the unfortunate trump card being the dreary mid-section of the film 1 +149197 8118 the unfortunate trump card being the dreary mid-section of the film 1 +149198 8118 unfortunate trump card being the dreary mid-section of the film 2 +149199 8118 trump card being the dreary mid-section of the film 1 +149200 8118 trump 3 +149201 8118 card being the dreary mid-section of the film 1 +149202 8118 being the dreary mid-section of the film 1 +149203 8118 the dreary mid-section of the film 2 +149204 8118 the dreary mid-section 2 +149205 8118 dreary mid-section 1 +149206 8118 mid-section 2 +149207 8119 As happily glib and vicious as its characters . 2 +149208 8119 As happily glib and vicious as its characters 2 +149209 8119 happily glib and vicious as its characters 3 +149210 8119 happily glib and 2 +149211 8119 happily glib 3 +149212 8119 vicious as its characters 2 +149213 8119 as its characters 2 +149214 8120 Mr. Caine and Mr. Fraser are the whole show here , with their memorable and resourceful performances . 4 +149215 8120 Mr. Caine and Mr. Fraser 2 +149216 8120 Caine and Mr. Fraser 2 +149217 8120 and Mr. Fraser 2 +149218 8120 Mr. Fraser 2 +149219 8120 are the whole show here , with their memorable and resourceful performances . 4 +149220 8120 are the whole show here , with their memorable and resourceful performances 3 +149221 8120 are the whole show here , 2 +149222 8120 are the whole show here 2 +149223 8120 are the whole show 2 +149224 8120 the whole show 2 +149225 8120 whole show 2 +149226 8120 with their memorable and resourceful performances 3 +149227 8120 their memorable and resourceful performances 3 +149228 8120 memorable and resourceful performances 4 +149229 8120 memorable and resourceful 4 +149230 8120 memorable and 3 +149231 8121 It really is a shame that more wo n't get an opportunity to embrace small , sweet ` Evelyn . ' 3 +149232 8121 really is a shame that more wo n't get an opportunity to embrace small , sweet ` Evelyn . ' 3 +149233 8121 is a shame that more wo n't get an opportunity to embrace small , sweet ` Evelyn . ' 2 +149234 8121 is a shame that more wo n't get an opportunity to embrace small , sweet ` Evelyn . 3 +149235 8121 is a shame that more wo n't get an opportunity to embrace small , sweet ` Evelyn 3 +149236 8121 a shame that more wo n't get an opportunity to embrace small , sweet ` Evelyn 2 +149237 8121 that more wo n't get an opportunity to embrace small , sweet ` Evelyn 2 +149238 8121 more wo n't get an opportunity to embrace small , sweet ` Evelyn 2 +149239 8121 wo n't get an opportunity to embrace small , sweet ` Evelyn 2 +149240 8121 get an opportunity to embrace small , sweet ` Evelyn 2 +149241 8121 an opportunity to embrace small , sweet ` Evelyn 3 +149242 8121 opportunity to embrace small , sweet ` Evelyn 3 +149243 8121 to embrace small , sweet ` Evelyn 3 +149244 8121 embrace small , sweet ` Evelyn 3 +149245 8121 small , sweet ` Evelyn 3 +149246 8121 , sweet ` Evelyn 3 +149247 8121 sweet ` Evelyn 2 +149248 8121 ` Evelyn 2 +149249 8122 The problem with the film is whether these ambitions , laudable in themselves , justify a theatrical simulation of the death camp of Auschwitz II-Birkenau . 1 +149250 8122 The problem with the film 1 +149251 8122 is whether these ambitions , laudable in themselves , justify a theatrical simulation of the death camp of Auschwitz II-Birkenau . 1 +149252 8122 is whether these ambitions , laudable in themselves , justify a theatrical simulation of the death camp of Auschwitz II-Birkenau 1 +149253 8122 whether these ambitions , laudable in themselves , justify a theatrical simulation of the death camp of Auschwitz II-Birkenau 1 +149254 8122 these ambitions , laudable in themselves , justify a theatrical simulation of the death camp of Auschwitz II-Birkenau 2 +149255 8122 these ambitions , laudable in themselves , 2 +149256 8122 these ambitions , laudable in themselves 3 +149257 8122 these ambitions , 2 +149258 8122 these ambitions 2 +149259 8122 laudable in themselves 3 +149260 8122 in themselves 2 +149261 8122 justify a theatrical simulation of the death camp of Auschwitz II-Birkenau 1 +149262 8122 a theatrical simulation of the death camp of Auschwitz II-Birkenau 2 +149263 8122 a theatrical simulation 2 +149264 8122 theatrical simulation 2 +149265 8122 simulation 2 +149266 8122 of the death camp of Auschwitz II-Birkenau 2 +149267 8122 the death camp of Auschwitz II-Birkenau 2 +149268 8122 the death camp 2 +149269 8122 death camp 2 +149270 8122 of Auschwitz II-Birkenau 2 +149271 8122 Auschwitz II-Birkenau 2 +149272 8122 Auschwitz 1 +149273 8122 II-Birkenau 2 +149274 8123 Too much of the movie feels contrived , as if the filmmakers were worried the story would n't work without all those gimmicks . 1 +149275 8123 Too much of the movie 2 +149276 8123 feels contrived , as if the filmmakers were worried the story would n't work without all those gimmicks . 1 +149277 8123 feels contrived , as if the filmmakers were worried the story would n't work without all those gimmicks 1 +149278 8123 feels contrived , 1 +149279 8123 feels contrived 1 +149280 8123 as if the filmmakers were worried the story would n't work without all those gimmicks 2 +149281 8123 if the filmmakers were worried the story would n't work without all those gimmicks 1 +149282 8123 if the filmmakers were worried 2 +149283 8123 the filmmakers were worried 1 +149284 8123 were worried 1 +149285 8123 worried 2 +149286 8123 the story would n't work without all those gimmicks 2 +149287 8123 would n't work without all those gimmicks 2 +149288 8123 work without all those gimmicks 2 +149289 8123 without all those gimmicks 2 +149290 8123 all those gimmicks 2 +149291 8123 those gimmicks 1 +149292 8123 gimmicks 1 +149293 8124 The picture runs a mere 84 minutes , but it 's no glance . 3 +149294 8124 The picture runs a mere 84 minutes , but it 's no glance 2 +149295 8124 The picture runs a mere 84 minutes , but 2 +149296 8124 The picture runs a mere 84 minutes , 1 +149297 8124 The picture runs a mere 84 minutes 2 +149298 8124 runs a mere 84 minutes 2 +149299 8124 a mere 84 minutes 2 +149300 8124 mere 84 minutes 2 +149301 8124 it 's no glance 2 +149302 8124 's no glance 2 +149303 8124 no glance 2 +149304 8124 glance 2 +149305 8125 An elegant and sly deadpan comedy . 3 +149306 8125 An elegant and sly deadpan 4 +149307 8125 elegant and sly deadpan 3 +149308 8125 elegant and sly 3 +149309 8126 With its hint of an awkward Hitchcockian theme in tact , Harmon 's daunting narrative promotes a reasonable landscape of conflict and pathos to support the scattershot terrorizing tone 2 +149310 8126 With its hint of an awkward Hitchcockian theme in tact 2 +149311 8126 its hint of an awkward Hitchcockian theme in tact 2 +149312 8126 its hint 2 +149313 8126 of an awkward Hitchcockian theme in tact 1 +149314 8126 an awkward Hitchcockian theme in tact 2 +149315 8126 an awkward Hitchcockian theme 1 +149316 8126 awkward Hitchcockian theme 1 +149317 8126 Hitchcockian theme 3 +149318 8126 in tact 3 +149319 8126 tact 2 +149320 8126 , Harmon 's daunting narrative promotes a reasonable landscape of conflict and pathos to support the scattershot terrorizing tone 2 +149321 8126 Harmon 's daunting narrative promotes a reasonable landscape of conflict and pathos to support the scattershot terrorizing tone 2 +149322 8126 Harmon 's daunting narrative 2 +149323 8126 daunting narrative 2 +149324 8126 daunting 2 +149325 8126 promotes a reasonable landscape of conflict and pathos to support the scattershot terrorizing tone 2 +149326 8126 promotes a reasonable landscape of conflict and 3 +149327 8126 promotes a reasonable landscape of conflict 3 +149328 8126 promotes 2 +149329 8126 a reasonable landscape of conflict 2 +149330 8126 a reasonable landscape 2 +149331 8126 reasonable landscape 2 +149332 8126 of conflict 2 +149333 8126 pathos to support the scattershot terrorizing tone 1 +149334 8126 to support the scattershot terrorizing tone 2 +149335 8126 support the scattershot terrorizing tone 2 +149336 8126 the scattershot terrorizing tone 2 +149337 8126 scattershot terrorizing tone 2 +149338 8126 scattershot 2 +149339 8126 terrorizing tone 1 +149340 8126 terrorizing 1 +149341 8127 The notion of deleting emotion from people , even in an advanced Prozac Nation , is so insanely dysfunctional that the rampantly designed Equilibrium becomes a concept doofus . 0 +149342 8127 The notion of deleting emotion from people , even in an advanced Prozac Nation , 2 +149343 8127 The notion of deleting emotion from people , even in an advanced Prozac Nation 1 +149344 8127 The notion of deleting emotion from people , 2 +149345 8127 The notion of deleting emotion from people 1 +149346 8127 of deleting emotion from people 2 +149347 8127 deleting emotion from people 2 +149348 8127 deleting emotion 2 +149349 8127 deleting 2 +149350 8127 from people 2 +149351 8127 even in an advanced Prozac Nation 2 +149352 8127 in an advanced Prozac Nation 2 +149353 8127 an advanced Prozac Nation 2 +149354 8127 advanced Prozac Nation 2 +149355 8127 advanced 2 +149356 8127 Prozac Nation 1 +149357 8127 Prozac 2 +149358 8127 is so insanely dysfunctional that the rampantly designed Equilibrium becomes a concept doofus . 1 +149359 8127 is so insanely dysfunctional that the rampantly designed Equilibrium becomes a concept doofus 0 +149360 8127 is so insanely dysfunctional 1 +149361 8127 so insanely dysfunctional 1 +149362 8127 insanely dysfunctional 1 +149363 8127 that the rampantly designed Equilibrium becomes a concept doofus 1 +149364 8127 the rampantly designed Equilibrium becomes a concept doofus 1 +149365 8127 the rampantly 2 +149366 8127 rampantly 2 +149367 8127 designed Equilibrium becomes a concept doofus 0 +149368 8127 Equilibrium becomes a concept doofus 1 +149369 8127 becomes a concept doofus 2 +149370 8127 a concept doofus 1 +149371 8127 concept doofus 1 +149372 8128 Best enjoyed as a work of fiction inspired by real-life events . 3 +149373 8128 enjoyed as a work of fiction inspired by real-life events . 3 +149374 8128 enjoyed as a work of fiction inspired by real-life events 3 +149375 8128 as a work of fiction inspired by real-life events 2 +149376 8128 a work of fiction inspired by real-life events 2 +149377 8128 a work of fiction 2 +149378 8128 of fiction 2 +149379 8128 inspired by real-life events 2 +149380 8128 by real-life events 2 +149381 8128 real-life events 2 +149382 8129 Mr. Soderbergh 's direction and visual style struck me as unusually and unimpressively fussy and pretentious . 0 +149383 8129 Mr. Soderbergh 's direction and visual style 2 +149384 8129 Mr. Soderbergh 's direction and 2 +149385 8129 Mr. Soderbergh 's direction 2 +149386 8129 Mr. Soderbergh 's 2 +149387 8129 struck me as unusually and unimpressively fussy and pretentious . 0 +149388 8129 struck me as unusually and unimpressively fussy and pretentious 1 +149389 8129 struck me as unusually and unimpressively fussy and 0 +149390 8129 struck me as unusually and unimpressively fussy 1 +149391 8129 me as unusually and unimpressively fussy 1 +149392 8129 as unusually and unimpressively fussy 1 +149393 8129 as unusually and 2 +149394 8129 as unusually 2 +149395 8129 unimpressively fussy 0 +149396 8129 unimpressively 1 +149397 8129 fussy 1 +149398 8130 Debate it . 2 +149399 8130 Debate it 2 +149400 8131 A wildly entertaining scan of Evans ' career . 4 +149401 8131 A wildly entertaining 4 +149402 8131 wildly entertaining 4 +149403 8131 scan of Evans ' career . 2 +149404 8131 scan of Evans ' career 2 +149405 8131 scan 2 +149406 8131 of Evans ' career 2 +149407 8131 Evans ' career 3 +149408 8132 Like The Full Monty , this is sure to raise audience 's spirits and leave them singing long after the credits roll . 4 +149409 8132 Like The Full Monty 2 +149410 8132 , this is sure to raise audience 's spirits and leave them singing long after the credits roll . 4 +149411 8132 this is sure to raise audience 's spirits and leave them singing long after the credits roll . 4 +149412 8132 is sure to raise audience 's spirits and leave them singing long after the credits roll . 3 +149413 8132 is sure to raise audience 's spirits and leave them singing long after the credits roll 3 +149414 8132 sure to raise audience 's spirits and leave them singing long after the credits roll 4 +149415 8132 to raise audience 's spirits and leave them singing long after the credits roll 4 +149416 8132 raise audience 's spirits and leave them singing long after the credits roll 4 +149417 8132 raise audience 's spirits and 3 +149418 8132 raise audience 's spirits 3 +149419 8132 audience 's spirits 2 +149420 8132 leave them singing long after the credits roll 3 +149421 8132 them singing long after the credits roll 2 +149422 8132 singing long after the credits roll 3 +149423 8132 singing long 2 +149424 8132 after the credits roll 2 +149425 8133 But not without cheesy fun factor . 3 +149426 8133 not without cheesy fun factor . 3 +149427 8133 without cheesy fun factor . 3 +149428 8133 without cheesy fun factor 1 +149429 8133 cheesy fun factor 3 +149430 8133 fun factor 3 +149431 8134 Upsetting and thought-provoking , the film has an odd purity that does n't bring you into the characters so much as it has you study them . 3 +149432 8134 Upsetting and thought-provoking 3 +149433 8134 Upsetting and 2 +149434 8134 , the film has an odd purity that does n't bring you into the characters so much as it has you study them . 3 +149435 8134 the film has an odd purity that does n't bring you into the characters so much as it has you study them . 3 +149436 8134 has an odd purity that does n't bring you into the characters so much as it has you study them . 3 +149437 8134 has an odd purity that does n't bring you into the characters so much as it has you study them 2 +149438 8134 an odd purity that does n't bring you into the characters so much as it has you study them 2 +149439 8134 an odd purity 2 +149440 8134 odd purity 3 +149441 8134 that does n't bring you into the characters so much as it has you study them 3 +149442 8134 does n't bring you into the characters so much as it has you study them 2 +149443 8134 bring you into the characters so much as it has you study them 2 +149444 8134 bring you into the characters 3 +149445 8134 bring you 2 +149446 8134 into the characters 2 +149447 8134 so much as it has you study them 2 +149448 8134 as it has you study them 2 +149449 8134 it has you study them 2 +149450 8134 has you study them 3 +149451 8134 you study them 2 +149452 8134 study them 2 +149453 8135 A live-action cartoon , a fast-moving and cheerfully simplistic 88 minutes of exaggerated action put together with the preteen boy in mind . 3 +149454 8135 A live-action cartoon , a fast-moving and cheerfully simplistic 88 minutes of exaggerated action 3 +149455 8135 A live-action cartoon , 2 +149456 8135 A live-action cartoon 2 +149457 8135 live-action cartoon 1 +149458 8135 a fast-moving and cheerfully simplistic 88 minutes of exaggerated action 3 +149459 8135 a fast-moving and cheerfully simplistic 3 +149460 8135 fast-moving and cheerfully simplistic 3 +149461 8135 fast-moving and cheerfully 3 +149462 8135 fast-moving and 3 +149463 8135 cheerfully 3 +149464 8135 88 minutes of exaggerated action 1 +149465 8135 88 minutes 2 +149466 8135 88 2 +149467 8135 of exaggerated action 2 +149468 8135 exaggerated action 1 +149469 8135 put together with the preteen boy in mind . 1 +149470 8135 put together with the preteen boy in mind 1 +149471 8135 with the preteen boy in mind 2 +149472 8135 the preteen boy in mind 2 +149473 8135 the preteen boy 2 +149474 8135 preteen boy 2 +149475 8136 A dazzling thing to behold -- as long as you 're wearing the somewhat cumbersome 3D goggles the theater provides . 3 +149476 8136 A dazzling thing to behold -- as long as you 're wearing the somewhat cumbersome 3D goggles the theater 4 +149477 8136 dazzling thing to behold -- as long as you 're wearing the somewhat cumbersome 3D goggles the theater 3 +149478 8136 thing to behold -- as long as you 're wearing the somewhat cumbersome 3D goggles the theater 2 +149479 8136 to behold -- as long as you 're wearing the somewhat cumbersome 3D goggles the theater 3 +149480 8136 behold -- as long as you 're wearing the somewhat cumbersome 3D goggles the theater 2 +149481 8136 behold -- as long as you 're wearing the somewhat cumbersome 3D goggles 2 +149482 8136 -- as long as you 're wearing the somewhat cumbersome 3D goggles 1 +149483 8136 as long as you 're wearing the somewhat cumbersome 3D goggles 1 +149484 8136 as you 're wearing the somewhat cumbersome 3D goggles 2 +149485 8136 you 're wearing the somewhat cumbersome 3D goggles 2 +149486 8136 're wearing the somewhat cumbersome 3D goggles 1 +149487 8136 wearing the somewhat cumbersome 3D goggles 1 +149488 8136 the somewhat cumbersome 3D goggles 2 +149489 8136 somewhat cumbersome 3D goggles 1 +149490 8136 somewhat cumbersome 1 +149491 8136 3D goggles 2 +149492 8136 goggles 2 +149493 8136 provides . 2 +149494 8137 Could use a little more humanity , but it never lacks in eye-popping visuals . 3 +149495 8137 Could use a little more humanity , but it never lacks in eye-popping visuals 3 +149496 8137 Could use a little more humanity , but 1 +149497 8137 Could use a little more humanity , 1 +149498 8137 Could use a little more humanity 1 +149499 8137 use a little more humanity 2 +149500 8137 a little more humanity 3 +149501 8137 little more humanity 2 +149502 8137 it never lacks in eye-popping visuals 4 +149503 8137 never lacks in eye-popping visuals 3 +149504 8137 lacks in eye-popping visuals 1 +149505 8137 in eye-popping visuals 4 +149506 8137 eye-popping visuals 3 +149507 8137 eye-popping 4 +149508 8138 Mostly , Shafer and co-writer Gregory Hinton lack a strong-minded viewpoint , or a sense of humor . 1 +149509 8138 , Shafer and co-writer Gregory Hinton lack a strong-minded viewpoint , or a sense of humor . 1 +149510 8138 Shafer and co-writer Gregory Hinton lack a strong-minded viewpoint , or a sense of humor . 2 +149511 8138 Shafer and co-writer Gregory Hinton 2 +149512 8138 Shafer and 2 +149513 8138 co-writer Gregory Hinton 2 +149514 8138 Gregory Hinton 2 +149515 8138 Gregory 2 +149516 8138 Hinton 2 +149517 8138 lack a strong-minded viewpoint , or a sense of humor . 1 +149518 8138 lack a strong-minded viewpoint , or a sense of humor 0 +149519 8138 a strong-minded viewpoint , or a sense of humor 3 +149520 8138 a strong-minded viewpoint , or 3 +149521 8138 a strong-minded viewpoint , 3 +149522 8138 a strong-minded viewpoint 2 +149523 8138 strong-minded viewpoint 2 +149524 8138 strong-minded 3 +149525 8138 viewpoint 2 +149526 8139 I 'm not sure these words have ever been together in the same sentence : This erotic cannibal movie is boring . 0 +149527 8139 I 'm not sure these words have ever been together in the same sentence : This erotic cannibal movie is boring 0 +149528 8139 I 'm not sure these words have ever been together in the same sentence : 1 +149529 8139 I 'm not sure these words have ever been together in the same sentence 2 +149530 8139 'm not sure these words have ever been together in the same sentence 1 +149531 8139 sure these words have ever been together in the same sentence 2 +149532 8139 these words have ever been together in the same sentence 2 +149533 8139 have ever been together in the same sentence 2 +149534 8139 been together in the same sentence 2 +149535 8139 been together 2 +149536 8139 in the same sentence 2 +149537 8139 the same sentence 2 +149538 8139 same sentence 2 +149539 8139 This erotic cannibal movie is boring 1 +149540 8139 This erotic cannibal movie 2 +149541 8139 erotic cannibal movie 2 +149542 8139 cannibal movie 2 +149543 8140 Gambling and throwing a basketball game for money is n't a new plot -- in fact Toback himself used it in Black and White . 2 +149544 8140 Gambling and throwing a basketball game for money is n't a new plot -- in fact Toback himself used it in Black and White 1 +149545 8140 Gambling and throwing a basketball game for money is n't a new plot -- 1 +149546 8140 Gambling and throwing a basketball game for money is n't a new plot 0 +149547 8140 Gambling and throwing a basketball game for money 2 +149548 8140 Gambling and throwing 2 +149549 8140 Gambling and 2 +149550 8140 Gambling 2 +149551 8140 a basketball game for money 3 +149552 8140 a basketball game 3 +149553 8140 basketball game 2 +149554 8140 for money 2 +149555 8140 is n't a new plot 1 +149556 8140 a new plot 2 +149557 8140 new plot 2 +149558 8140 in fact Toback himself used it in Black and White 2 +149559 8140 in fact Toback 2 +149560 8140 fact Toback 2 +149561 8140 himself used it in Black and White 2 +149562 8140 used it in Black and White 2 +149563 8140 used it 2 +149564 8140 in Black and White 2 +149565 8141 With an admirably dark first script by Brent Hanley , Paxton , making his directorial feature debut , does strong , measured work . 4 +149566 8141 With an admirably dark first script by Brent Hanley 3 +149567 8141 an admirably dark first script by Brent Hanley 3 +149568 8141 an admirably dark first script 2 +149569 8141 admirably dark first script 2 +149570 8141 admirably dark 2 +149571 8141 first script 2 +149572 8141 by Brent Hanley 2 +149573 8141 Brent Hanley 2 +149574 8141 Brent 2 +149575 8141 Hanley 2 +149576 8141 , Paxton , making his directorial feature debut , does strong , measured work . 3 +149577 8141 Paxton , making his directorial feature debut , does strong , measured work . 4 +149578 8141 Paxton , making his directorial feature debut , 2 +149579 8141 Paxton , making his directorial feature debut 2 +149580 8141 Paxton , 2 +149581 8141 making his directorial feature debut 2 +149582 8141 his directorial feature debut 2 +149583 8141 directorial feature debut 2 +149584 8141 does strong , measured work . 3 +149585 8141 does strong , measured work 3 +149586 8141 strong , measured work 3 +149587 8141 , measured work 2 +149588 8141 measured work 2 +149589 8142 Bolstered by exceptional performances and a clear-eyed take on the economics of dealing and the pathology of ghetto fabulousness . 4 +149590 8142 Bolstered by exceptional performances and a clear-eyed take on the economics of dealing and the pathology of ghetto fabulousness 4 +149591 8142 Bolstered by exceptional performances and 4 +149592 8142 Bolstered by exceptional performances 3 +149593 8142 Bolstered 2 +149594 8142 by exceptional performances 4 +149595 8142 exceptional performances 4 +149596 8142 a clear-eyed take on the economics of dealing and the pathology of ghetto fabulousness 4 +149597 8142 a clear-eyed 3 +149598 8142 take on the economics of dealing and the pathology of ghetto fabulousness 2 +149599 8142 on the economics of dealing and the pathology of ghetto fabulousness 3 +149600 8142 the economics of dealing and the pathology of ghetto fabulousness 2 +149601 8142 the economics of dealing and 2 +149602 8142 the economics of dealing 2 +149603 8142 the economics 2 +149604 8142 economics 2 +149605 8142 of dealing 2 +149606 8142 the pathology of ghetto fabulousness 2 +149607 8142 of ghetto fabulousness 2 +149608 8142 ghetto fabulousness 3 +149609 8142 fabulousness 4 +149610 8143 Douglas McGrath 's Nicholas Nickleby does Dickens as it should be done cinematically . 4 +149611 8143 Douglas McGrath 's Nicholas Nickleby 2 +149612 8143 does Dickens as it should be done cinematically . 2 +149613 8143 does Dickens as it should be done cinematically 3 +149614 8143 does Dickens 2 +149615 8143 as it should be done cinematically 2 +149616 8143 it should be done cinematically 3 +149617 8143 should be done cinematically 2 +149618 8143 be done cinematically 2 +149619 8143 done cinematically 3 +149620 8144 How I Killed My Father would be a rarity in Hollywood . 2 +149621 8144 would be a rarity in Hollywood . 2 +149622 8144 would be a rarity in Hollywood 3 +149623 8144 be a rarity in Hollywood 3 +149624 8144 a rarity in Hollywood 3 +149625 8144 a rarity 3 +149626 8145 The problem is not that it 's all derivative , because plenty of funny movies recycle old tropes . 2 +149627 8145 is not that it 's all derivative , because plenty of funny movies recycle old tropes . 1 +149628 8145 is not that it 's all derivative , because plenty of funny movies recycle old tropes 2 +149629 8145 is not that it 's all derivative , 2 +149630 8145 is not that it 's all derivative 2 +149631 8145 that it 's all derivative 2 +149632 8145 it 's all derivative 2 +149633 8145 's all derivative 1 +149634 8145 all derivative 1 +149635 8145 because plenty of funny movies recycle old tropes 2 +149636 8145 plenty of funny movies recycle old tropes 3 +149637 8145 plenty of funny movies 3 +149638 8145 of funny movies 3 +149639 8145 funny movies 3 +149640 8145 recycle old tropes 2 +149641 8145 recycle 2 +149642 8145 old tropes 1 +149643 8146 That the e-graveyard holds as many good ideas as bad is the cold comfort that Chin 's film serves up with style and empathy . 3 +149644 8146 That the e-graveyard 1 +149645 8146 the e-graveyard 3 +149646 8146 e-graveyard 2 +149647 8146 holds as many good ideas as bad is the cold comfort that Chin 's film serves up with style and empathy . 3 +149648 8146 holds as many good ideas as bad is the cold comfort that Chin 's film serves up with style and empathy 2 +149649 8146 as many good ideas as bad is the cold comfort that Chin 's film serves up with style and empathy 3 +149650 8146 many good ideas as bad is the cold comfort that Chin 's film serves up with style and empathy 1 +149651 8146 many good ideas as bad 2 +149652 8146 many good ideas 3 +149653 8146 is the cold comfort that Chin 's film serves up with style and empathy 3 +149654 8146 is the cold comfort 2 +149655 8146 the cold comfort 2 +149656 8146 cold comfort 2 +149657 8146 that Chin 's film serves up with style and empathy 3 +149658 8146 Chin 's film serves up with style and empathy 3 +149659 8146 Chin 's film 2 +149660 8146 Chin 's 2 +149661 8146 Chin 2 +149662 8146 serves up with style and empathy 3 +149663 8146 with style and empathy 3 +149664 8146 style and empathy 3 +149665 8147 Ends up offering nothing more than the latest Schwarzenegger or Stallone flick would . 1 +149666 8147 Ends up offering nothing more than the latest Schwarzenegger or Stallone flick 1 +149667 8147 up offering nothing more than the latest Schwarzenegger or Stallone flick 1 +149668 8147 offering nothing more than the latest Schwarzenegger or Stallone flick 2 +149669 8147 nothing more than the latest Schwarzenegger or Stallone flick 2 +149670 8147 nothing more than the latest Schwarzenegger or Stallone 1 +149671 8147 than the latest Schwarzenegger or Stallone 2 +149672 8147 the latest Schwarzenegger or Stallone 2 +149673 8147 latest Schwarzenegger or Stallone 2 +149674 8147 Schwarzenegger or Stallone 2 +149675 8147 Schwarzenegger or 2 +149676 8147 would . 2 +149677 8148 The film 's only missteps come from the script 's insistence on providing deep emotional motivation for each and every one of Abagnale 's antics . 2 +149678 8148 The film 's only missteps 1 +149679 8148 only missteps 2 +149680 8148 come from the script 's insistence on providing deep emotional motivation for each and every one of Abagnale 's antics . 2 +149681 8148 come from the script 's insistence on providing deep emotional motivation for each and every one of Abagnale 's antics 3 +149682 8148 come from the script 's insistence 1 +149683 8148 from the script 's insistence 2 +149684 8148 the script 's insistence 2 +149685 8148 on providing deep emotional motivation for each and every one of Abagnale 's antics 3 +149686 8148 providing deep emotional motivation for each and every one of Abagnale 's antics 3 +149687 8148 providing deep emotional motivation 3 +149688 8148 deep emotional motivation 3 +149689 8148 emotional motivation 3 +149690 8148 for each and every one of Abagnale 's antics 2 +149691 8148 each and every one of Abagnale 's antics 2 +149692 8148 each and 2 +149693 8148 every one of Abagnale 's antics 2 +149694 8148 of Abagnale 's antics 2 +149695 8148 Abagnale 's antics 2 +149696 8148 Abagnale 's 2 +149697 8148 Abagnale 2 +149698 8149 At best this is a film for the under-7 crowd . 1 +149699 8149 this is a film for the under-7 crowd . 2 +149700 8149 is a film for the under-7 crowd . 2 +149701 8149 is a film for the under-7 crowd 1 +149702 8149 a film for the under-7 crowd 2 +149703 8149 for the under-7 crowd 1 +149704 8149 the under-7 crowd 3 +149705 8149 under-7 crowd 2 +149706 8149 under-7 2 +149707 8150 A thoughtful movie , a movie that is concerned with souls and risk and schemes and the consequences of one 's actions . 4 +149708 8150 A thoughtful movie , a movie that is concerned with souls and risk and schemes and the consequences of one 's actions 2 +149709 8150 A thoughtful movie , 3 +149710 8150 A thoughtful movie 3 +149711 8150 thoughtful movie 3 +149712 8150 a movie that is concerned with souls and risk and schemes and the consequences of one 's actions 3 +149713 8150 that is concerned with souls and risk and schemes and the consequences of one 's actions 2 +149714 8150 is concerned with souls and risk and schemes and the consequences of one 's actions 3 +149715 8150 concerned with souls and risk and schemes and the consequences of one 's actions 2 +149716 8150 with souls and risk and schemes and the consequences of one 's actions 2 +149717 8150 souls and risk and schemes and the consequences of one 's actions 2 +149718 8150 souls and risk and schemes and 2 +149719 8150 souls and risk and schemes 2 +149720 8150 souls and 2 +149721 8150 risk and schemes 2 +149722 8150 risk and 2 +149723 8150 the consequences of one 's actions 2 +149724 8150 of one 's actions 2 +149725 8150 one 's actions 2 +149726 8151 Jaw-droppingly superficial , straining to get by on humor that is not even as daring as John Ritter 's glory days on Three 's Company . 1 +149727 8151 Jaw-droppingly superficial 1 +149728 8151 , straining to get by on humor that is not even as daring as John Ritter 's glory days on Three 's Company . 1 +149729 8151 straining to get by on humor that is not even as daring as John Ritter 's glory days on Three 's Company . 1 +149730 8151 straining to get by on humor that is not even as daring as John Ritter 's glory days on Three 's Company 1 +149731 8151 to get by on humor that is not even as daring as John Ritter 's glory days on Three 's Company 1 +149732 8151 get by on humor that is not even as daring as John Ritter 's glory days on Three 's Company 1 +149733 8151 by on humor that is not even as daring as John Ritter 's glory days on Three 's Company 0 +149734 8151 on humor that is not even as daring as John Ritter 's glory days on Three 's Company 1 +149735 8151 humor that is not even as daring as John Ritter 's glory days on Three 's Company 2 +149736 8151 that is not even as daring as John Ritter 's glory days on Three 's Company 1 +149737 8151 is not even as daring as John Ritter 's glory days on Three 's Company 2 +149738 8151 is not even as daring as John Ritter 's glory days 1 +149739 8151 as daring as John Ritter 's glory days 3 +149740 8151 daring as John Ritter 's glory days 3 +149741 8151 as John Ritter 's glory days 3 +149742 8151 John Ritter 's glory days 2 +149743 8151 John Ritter 's 2 +149744 8151 Ritter 's 2 +149745 8151 Ritter 2 +149746 8151 on Three 's Company 2 +149747 8151 Three 's Company 2 +149748 8151 Three 's 2 +149749 8152 Even through its flaws , Revolution # 9 proves to be a compelling , interestingly told film . 3 +149750 8152 Even through its flaws , Revolution # 9 proves to be a compelling 3 +149751 8152 through its flaws , Revolution # 9 proves to be a compelling 3 +149752 8152 through its flaws 2 +149753 8152 , Revolution # 9 proves to be a compelling 3 +149754 8152 Revolution # 9 proves to be a compelling 3 +149755 8152 proves to be a compelling 4 +149756 8152 to be a compelling 3 +149757 8152 be a compelling 2 +149758 8152 a compelling 3 +149759 8152 , interestingly told film . 3 +149760 8152 interestingly told film . 2 +149761 8152 told film . 2 +149762 8152 told film 2 +149763 8153 It 's still Adam Sandler , and it 's not Little Nicky . 2 +149764 8153 It 's still Adam Sandler , and it 's not Little Nicky 2 +149765 8153 It 's still Adam Sandler , and 2 +149766 8153 It 's still Adam Sandler , 2 +149767 8153 It 's still Adam Sandler 2 +149768 8153 's still Adam Sandler 2 +149769 8153 it 's not Little Nicky 2 +149770 8153 's not Little Nicky 2 +149771 8153 Little Nicky 2 +149772 8153 Nicky 2 +149773 8154 Sorvino is delightful in the central role . 3 +149774 8154 is delightful in the central role . 4 +149775 8154 is delightful in the central role 3 +149776 8154 delightful in the central role 4 +149777 8154 in the central role 2 +149778 8154 the central role 2 +149779 8154 central role 2 +149780 8155 Bogs down badly as we absorb Jia 's moody , bad-boy behavior which he portrays himself in a one-note performance . 2 +149781 8155 down badly as we absorb Jia 's moody , bad-boy behavior which he portrays himself in a one-note performance . 1 +149782 8155 down badly as we absorb Jia 's moody , bad-boy behavior which he portrays himself in a one-note performance 2 +149783 8155 down badly as we 1 +149784 8155 down badly 1 +149785 8155 absorb Jia 's moody , bad-boy behavior which he portrays himself in a one-note performance 2 +149786 8155 Jia 's moody , bad-boy behavior which he portrays himself in a one-note performance 1 +149787 8155 Jia 's moody , 2 +149788 8155 Jia 's moody 2 +149789 8155 Jia 's 2 +149790 8155 bad-boy behavior which he portrays himself in a one-note performance 1 +149791 8155 bad-boy behavior 2 +149792 8155 bad-boy 2 +149793 8155 which he portrays himself in a one-note performance 2 +149794 8155 he portrays himself in a one-note performance 1 +149795 8155 portrays himself in a one-note performance 1 +149796 8155 portrays himself 2 +149797 8155 in a one-note performance 1 +149798 8155 a one-note performance 1 +149799 8155 one-note performance 1 +149800 8156 An awful movie that will only satisfy the most emotionally malleable of filmgoers . 0 +149801 8156 An awful movie that 0 +149802 8156 An awful movie 0 +149803 8156 awful movie 0 +149804 8156 will only satisfy the most emotionally malleable of filmgoers . 1 +149805 8156 will only satisfy the most emotionally malleable of filmgoers 1 +149806 8156 will only 2 +149807 8156 satisfy the most emotionally malleable of filmgoers 2 +149808 8156 the most emotionally malleable of filmgoers 2 +149809 8156 the most emotionally malleable 2 +149810 8156 most emotionally malleable 2 +149811 8156 emotionally malleable 1 +149812 8156 malleable 2 +149813 8156 of filmgoers 2 +149814 8157 Exhilarating but blatantly biased . 3 +149815 8157 but blatantly biased . 1 +149816 8157 but blatantly biased 1 +149817 8157 blatantly biased 1 +149818 8157 blatantly 2 +149819 8158 The story of Trouble Every Day ... is so sketchy it amounts to little more than preliminary notes for a science-fiction horror film , and the movie 's fragmentary narrative style makes piecing the story together frustrating difficult . 0 +149820 8158 The story of Trouble Every Day ... is so sketchy it amounts to little more than preliminary notes for a science-fiction horror film , and the movie 's fragmentary narrative style makes piecing the story together frustrating difficult 0 +149821 8158 The story of Trouble Every Day ... is so sketchy it amounts to little more than preliminary notes for a science-fiction horror film , and 0 +149822 8158 The story of Trouble Every Day ... is so sketchy it amounts to little more than preliminary notes for a science-fiction horror film , 0 +149823 8158 The story of Trouble Every Day ... is so sketchy it amounts to little more than preliminary notes for a science-fiction horror film 1 +149824 8158 The story of Trouble Every Day ... 2 +149825 8158 The story of Trouble Every Day 2 +149826 8158 The story of Trouble 2 +149827 8158 is so sketchy it amounts to little more than preliminary notes for a science-fiction horror film 1 +149828 8158 so sketchy it amounts to little more than preliminary notes for a science-fiction horror film 0 +149829 8158 sketchy it amounts to little more than preliminary notes for a science-fiction horror film 1 +149830 8158 it amounts to little more than preliminary notes for a science-fiction horror film 1 +149831 8158 amounts to little more than preliminary notes for a science-fiction horror film 1 +149832 8158 to little more than preliminary notes for a science-fiction horror film 2 +149833 8158 little more than preliminary notes for a science-fiction horror film 1 +149834 8158 than preliminary notes for a science-fiction horror film 2 +149835 8158 preliminary notes for a science-fiction horror film 3 +149836 8158 preliminary notes 2 +149837 8158 preliminary 2 +149838 8158 for a science-fiction horror film 2 +149839 8158 a science-fiction horror film 2 +149840 8158 science-fiction horror film 2 +149841 8158 the movie 's fragmentary narrative style makes piecing the story together frustrating difficult 1 +149842 8158 the movie 's fragmentary narrative style 2 +149843 8158 fragmentary narrative style 1 +149844 8158 narrative style 2 +149845 8158 makes piecing the story together frustrating difficult 1 +149846 8158 piecing the story together frustrating difficult 1 +149847 8158 piecing 2 +149848 8158 the story together frustrating difficult 0 +149849 8158 together frustrating difficult 1 +149850 8158 together frustrating 1 +149851 8159 Lame Sweet Home leaves no Southern stereotype unturned . 1 +149852 8159 Lame Sweet Home 2 +149853 8159 Sweet Home 2 +149854 8159 leaves no Southern stereotype unturned . 2 +149855 8159 leaves no Southern stereotype unturned 1 +149856 8159 no Southern stereotype unturned 2 +149857 8159 no Southern stereotype 2 +149858 8159 Southern stereotype 2 +149859 8160 First-time writer-director Dylan Kidd also has a good ear for dialogue , and the characters sound like real people . 3 +149860 8160 First-time writer-director Dylan Kidd 2 +149861 8160 writer-director Dylan Kidd 2 +149862 8160 Dylan Kidd 3 +149863 8160 Kidd 2 +149864 8160 also has a good ear for dialogue , and the characters sound like real people . 3 +149865 8160 has a good ear for dialogue , and the characters sound like real people . 3 +149866 8160 has a good ear for dialogue , and the characters sound like real people 3 +149867 8160 a good ear for dialogue , and the characters sound like real people 4 +149868 8160 a good ear for dialogue , and 2 +149869 8160 a good ear for dialogue , 3 +149870 8160 a good ear for dialogue 3 +149871 8160 a good ear 2 +149872 8160 good ear 3 +149873 8160 for dialogue 2 +149874 8160 the characters sound like real people 3 +149875 8160 the characters sound 2 +149876 8160 characters sound 2 +149877 8160 like real people 3 +149878 8160 real people 2 +149879 8161 It is very difficult to care about the character , and that is the central flaw of the film . 0 +149880 8161 It is very difficult to care about the character , and that is the central flaw of the film 1 +149881 8161 It is very difficult to care about the character , and 1 +149882 8161 It is very difficult to care about the character , 1 +149883 8161 It is very difficult to care about the character 1 +149884 8161 is very difficult to care about the character 1 +149885 8161 is very difficult 1 +149886 8161 very difficult 1 +149887 8161 to care about the character 3 +149888 8161 care about the character 2 +149889 8161 about the character 2 +149890 8161 that is the central flaw of the film 1 +149891 8161 is the central flaw of the film 1 +149892 8161 the central flaw of the film 1 +149893 8161 the central flaw 1 +149894 8161 central flaw 1 +149895 8162 What makes it worth watching is Quaid 's performance . 3 +149896 8162 What makes it worth watching 3 +149897 8162 makes it worth watching 3 +149898 8162 is Quaid 's performance . 2 +149899 8162 is Quaid 's performance 2 +149900 8162 Quaid 's performance 2 +149901 8162 Quaid 's 2 +149902 8163 By turns pretentious , fascinating , ludicrous , provocative and vainglorious . 3 +149903 8163 turns pretentious , fascinating , ludicrous , provocative and vainglorious . 2 +149904 8163 turns pretentious , fascinating , ludicrous , provocative and vainglorious 2 +149905 8163 pretentious , fascinating , ludicrous , provocative and vainglorious 1 +149906 8163 fascinating , ludicrous , provocative and vainglorious 3 +149907 8163 , ludicrous , provocative and vainglorious 1 +149908 8163 ludicrous , provocative and vainglorious 2 +149909 8163 , provocative and vainglorious 1 +149910 8163 provocative and vainglorious 2 +149911 8163 vainglorious 2 +149912 8164 An empty , ugly exercise in druggy trance-noir and trumped-up street credibility . 2 +149913 8164 An empty , ugly exercise in druggy trance-noir and trumped-up street credibility 1 +149914 8164 An empty , ugly exercise 0 +149915 8164 empty , ugly exercise 0 +149916 8164 , ugly exercise 1 +149917 8164 ugly exercise 1 +149918 8164 in druggy trance-noir and trumped-up street credibility 0 +149919 8164 druggy trance-noir and trumped-up street credibility 2 +149920 8164 druggy 1 +149921 8164 trance-noir and trumped-up street credibility 1 +149922 8164 trance-noir 2 +149923 8164 and trumped-up street credibility 1 +149924 8164 trumped-up street credibility 3 +149925 8164 trumped-up 2 +149926 8165 Especially give credit to Affleck . 4 +149927 8165 give credit to Affleck . 3 +149928 8165 give credit to Affleck 3 +149929 8165 to Affleck 2 +149930 8166 If you grew up on Scooby -- you 'll love this movie . 3 +149931 8166 If you grew up on Scooby 2 +149932 8166 you grew up on Scooby 2 +149933 8166 grew up on Scooby 2 +149934 8166 on Scooby 2 +149935 8166 -- you 'll love this movie . 4 +149936 8166 you 'll love this movie . 4 +149937 8166 'll love this movie . 4 +149938 8166 'll love this movie 4 +149939 8167 It 's hard to imagine anyone managing to steal a movie not only from charismatic rising star Jake Gyllenhaal but also from accomplished Oscar winners Susan Sarandon , Dustin Hoffman and Holly Hunter , yet newcomer Ellen Pompeo pulls off the feat with aplomb . 4 +149940 8167 's hard to imagine anyone managing to steal a movie not only from charismatic rising star Jake Gyllenhaal but also from accomplished Oscar winners Susan Sarandon , Dustin Hoffman and Holly Hunter , yet newcomer Ellen Pompeo pulls off the feat with aplomb . 4 +149941 8167 's hard to imagine anyone managing to steal a movie not only from charismatic rising star Jake Gyllenhaal but also from accomplished Oscar winners Susan Sarandon , Dustin Hoffman and Holly Hunter , yet newcomer Ellen Pompeo pulls off the feat with aplomb 3 +149942 8167 hard to imagine anyone managing to steal a movie not only from charismatic rising star Jake Gyllenhaal but also from accomplished Oscar winners Susan Sarandon , Dustin Hoffman and Holly Hunter , yet newcomer Ellen Pompeo pulls off the feat with aplomb 4 +149943 8167 to imagine anyone managing to steal a movie not only from charismatic rising star Jake Gyllenhaal but also from accomplished Oscar winners Susan Sarandon , Dustin Hoffman and Holly Hunter , yet newcomer Ellen Pompeo pulls off the feat with aplomb 3 +149944 8167 imagine anyone managing to steal a movie not only from charismatic rising star Jake Gyllenhaal but also from accomplished Oscar winners Susan Sarandon , Dustin Hoffman and Holly Hunter , yet newcomer Ellen Pompeo pulls off the feat with aplomb 3 +149945 8167 anyone managing to steal a movie not only from charismatic rising star Jake Gyllenhaal but also from accomplished Oscar winners Susan Sarandon , Dustin Hoffman and Holly Hunter , yet newcomer Ellen Pompeo pulls off the feat with aplomb 4 +149946 8167 managing to steal a movie not only from charismatic rising star Jake Gyllenhaal but also from accomplished Oscar winners Susan Sarandon , Dustin Hoffman and Holly Hunter , yet newcomer Ellen Pompeo pulls off the feat with aplomb 3 +149947 8167 managing 2 +149948 8167 to steal a movie not only from charismatic rising star Jake Gyllenhaal but also from accomplished Oscar winners Susan Sarandon , Dustin Hoffman and Holly Hunter , yet newcomer Ellen Pompeo pulls off the feat with aplomb 4 +149949 8167 steal a movie not only from charismatic rising star Jake Gyllenhaal but also from accomplished Oscar winners Susan Sarandon , Dustin Hoffman and Holly Hunter , yet newcomer Ellen Pompeo pulls off the feat with aplomb 4 +149950 8167 steal a movie 2 +149951 8167 not only from charismatic rising star Jake Gyllenhaal but also from accomplished Oscar winners Susan Sarandon , Dustin Hoffman and Holly Hunter , yet newcomer Ellen Pompeo pulls off the feat with aplomb 3 +149952 8167 from charismatic rising star Jake Gyllenhaal but also from accomplished Oscar winners Susan Sarandon , Dustin Hoffman and Holly Hunter , yet newcomer Ellen Pompeo pulls off the feat with aplomb 4 +149953 8167 from charismatic rising star Jake Gyllenhaal but also 3 +149954 8167 from charismatic rising star Jake Gyllenhaal 3 +149955 8167 charismatic rising star Jake Gyllenhaal 3 +149956 8167 rising star Jake Gyllenhaal 3 +149957 8167 star Jake Gyllenhaal 2 +149958 8167 Jake Gyllenhaal 2 +149959 8167 Jake 2 +149960 8167 from accomplished Oscar winners Susan Sarandon , Dustin Hoffman and Holly Hunter , yet newcomer Ellen Pompeo pulls off the feat with aplomb 3 +149961 8167 accomplished Oscar winners Susan Sarandon , Dustin Hoffman and Holly Hunter , yet newcomer Ellen Pompeo pulls off the feat with aplomb 4 +149962 8167 accomplished Oscar winners 3 +149963 8167 Susan Sarandon , Dustin Hoffman and Holly Hunter , yet newcomer Ellen Pompeo pulls off the feat with aplomb 4 +149964 8167 Susan Sarandon , Dustin Hoffman and Holly Hunter , 3 +149965 8167 Susan Sarandon , Dustin Hoffman and Holly Hunter 2 +149966 8167 Susan Sarandon , 2 +149967 8167 Susan Sarandon 3 +149968 8167 Dustin Hoffman and Holly Hunter 2 +149969 8167 Dustin Hoffman and 2 +149970 8167 Holly Hunter 2 +149971 8167 yet newcomer Ellen Pompeo pulls off the feat with aplomb 3 +149972 8167 newcomer Ellen Pompeo pulls off the feat with aplomb 3 +149973 8167 Ellen Pompeo pulls off the feat with aplomb 3 +149974 8167 pulls off the feat with aplomb 3 +149975 8167 the feat with aplomb 3 +149976 8167 the feat 2 +149977 8167 with aplomb 3 +149978 8168 After you laugh once -LRB- maybe twice -RRB- , you will have completely forgotten the movie by the time you get back to your car in the parking lot . 0 +149979 8168 After you laugh once -LRB- maybe twice -RRB- 1 +149980 8168 you laugh once -LRB- maybe twice -RRB- 1 +149981 8168 laugh once -LRB- maybe twice -RRB- 3 +149982 8168 once -LRB- maybe twice -RRB- 2 +149983 8168 -LRB- maybe twice -RRB- 3 +149984 8168 maybe twice -RRB- 3 +149985 8168 maybe twice 3 +149986 8168 , you will have completely forgotten the movie by the time you get back to your car in the parking lot . 0 +149987 8168 you will have completely forgotten the movie by the time you get back to your car in the parking lot . 0 +149988 8168 will have completely forgotten the movie by the time you get back to your car in the parking lot . 1 +149989 8168 will have completely forgotten the movie by the time you get back to your car in the parking lot 0 +149990 8168 have completely forgotten the movie by the time you get back to your car in the parking lot 1 +149991 8168 have completely 2 +149992 8168 forgotten the movie by the time you get back to your car in the parking lot 1 +149993 8168 forgotten the movie 1 +149994 8168 by the time you get back to your car in the parking lot 2 +149995 8168 the time you get back to your car in the parking lot 2 +149996 8168 you get back to your car in the parking lot 1 +149997 8168 get back to your car in the parking lot 0 +149998 8168 get back 2 +149999 8168 to your car in the parking lot 2 +150000 8168 your car in the parking lot 2 +150001 8168 in the parking lot 2 +150002 8168 the parking lot 2 +150003 8168 parking lot 2 +150004 8169 The screenplay flounders under the weight of too many story lines . 1 +150005 8169 flounders under the weight of too many story lines . 1 +150006 8169 flounders under the weight of too many story lines 0 +150007 8169 flounders 0 +150008 8169 under the weight of too many story lines 1 +150009 8169 the weight of too many story lines 1 +150010 8169 of too many story lines 1 +150011 8169 too many story lines 1 +150012 8169 story lines 2 +150013 8170 Snipes is both a snore and utter tripe . 1 +150014 8170 is both a snore and utter tripe . 0 +150015 8170 is both a snore and utter tripe 0 +150016 8170 both a snore and utter tripe 2 +150017 8170 a snore and utter tripe 0 +150018 8170 a snore and 1 +150019 8170 a snore 1 +150020 8170 utter tripe 0 +150021 8171 The troubling thing about Clockstoppers is that it does n't make any sense . 1 +150022 8171 The troubling thing about Clockstoppers 1 +150023 8171 The troubling thing 1 +150024 8171 troubling thing 2 +150025 8171 about Clockstoppers 2 +150026 8171 is that it does n't make any sense . 0 +150027 8171 is that it does n't make any sense 1 +150028 8171 that it does n't make any sense 2 +150029 8171 it does n't make any sense 1 +150030 8171 does n't make any sense 0 +150031 8171 make any sense 2 +150032 8172 There 's no good answer to that one . 1 +150033 8172 's no good answer to that one . 1 +150034 8172 's no good answer to that one 2 +150035 8172 no good answer to that one 1 +150036 8172 no good answer 1 +150037 8172 good answer 2 +150038 8172 to that one 2 +150039 8173 Singer\/composer Bryan Adams contributes a slew of songs -- a few potential hits , a few more simply intrusive to the story -- but the whole package certainly captures the intended , er , spirit of the piece . 3 +150040 8173 Singer\/composer Bryan Adams contributes a slew of songs -- a few potential hits , a few more simply intrusive to the story -- but the whole package certainly captures the intended , er , spirit of the piece 3 +150041 8173 Singer\/composer Bryan Adams contributes a slew of songs -- a few potential hits , a few more simply intrusive to the story -- but 2 +150042 8173 Singer\/composer Bryan Adams contributes a slew of songs -- a few potential hits , a few more simply intrusive to the story -- 2 +150043 8173 Singer\/composer Bryan Adams contributes a slew of songs 2 +150044 8173 Singer\/composer Bryan Adams 2 +150045 8173 Singer\/composer 2 +150046 8173 contributes a slew of songs 2 +150047 8173 contributes 2 +150048 8173 a slew of songs 2 +150049 8173 a slew 2 +150050 8173 slew 2 +150051 8173 of songs 2 +150052 8173 -- a few potential hits , a few more simply intrusive to the story -- 2 +150053 8173 a few potential hits , a few more simply intrusive to the story -- 2 +150054 8173 a few potential hits , a few more simply intrusive to the story 2 +150055 8173 a few potential 2 +150056 8173 few potential 2 +150057 8173 hits , a few more simply intrusive to the story 2 +150058 8173 hits , 2 +150059 8173 a few more simply intrusive to the story 2 +150060 8173 more simply intrusive to the story 1 +150061 8173 more simply intrusive 1 +150062 8173 simply intrusive 1 +150063 8173 intrusive 2 +150064 8173 to the story 2 +150065 8173 the whole package certainly captures the intended , er , spirit of the piece 3 +150066 8173 the whole package 4 +150067 8173 whole package 3 +150068 8173 certainly captures the intended , er , spirit of the piece 2 +150069 8173 captures the intended , er , spirit of the piece 3 +150070 8173 the intended , er , spirit of the piece 2 +150071 8173 the intended , er , spirit 1 +150072 8173 intended , er , spirit 2 +150073 8173 intended , er , 2 +150074 8173 , er , 2 +150075 8174 It 's a road-trip drama with too many wrong turns . 0 +150076 8174 's a road-trip drama with too many wrong turns . 0 +150077 8174 's a road-trip drama with too many wrong turns 1 +150078 8174 a road-trip drama with too many wrong turns 1 +150079 8174 a road-trip drama 1 +150080 8174 road-trip drama 2 +150081 8174 with too many wrong turns 2 +150082 8174 too many wrong turns 1 +150083 8174 wrong turns 2 +150084 8175 Seriously , rent the Disney version . 1 +150085 8175 , rent the Disney version . 1 +150086 8175 rent the Disney version . 2 +150087 8175 rent the Disney version 1 +150088 8175 the Disney version 2 +150089 8175 Disney version 2 +150090 8176 You 'll forget about it by Monday , though , and if they 're old enough to have developed some taste , so will your kids . 0 +150091 8176 You 'll forget about it by Monday , though , and if they 're old enough to have developed some taste , so will your kids 0 +150092 8176 You 'll forget about it by Monday , though , and 1 +150093 8176 You 'll forget about it by Monday , though , 1 +150094 8176 You 'll forget about it by Monday , though 1 +150095 8176 'll forget about it by Monday , though 1 +150096 8176 forget about it by Monday , though 1 +150097 8176 forget about it by Monday , 2 +150098 8176 forget about it by Monday 1 +150099 8176 forget about it 1 +150100 8176 by Monday 2 +150101 8176 if they 're old enough to have developed some taste , so will your kids 2 +150102 8176 if they 're old enough to have developed some taste 2 +150103 8176 they 're old enough to have developed some taste 2 +150104 8176 're old enough to have developed some taste 2 +150105 8176 old enough to have developed some taste 3 +150106 8176 to have developed some taste 2 +150107 8176 have developed some taste 3 +150108 8176 developed some taste 2 +150109 8176 some taste 2 +150110 8176 , so will your kids 2 +150111 8176 so will your kids 2 +150112 8176 will your kids 2 +150113 8177 Like many such biographical melodramas , it suffers from the awkwardness that results from adhering to the messiness of true stories . 0 +150114 8177 Like many such biographical melodramas 2 +150115 8177 many such biographical melodramas 1 +150116 8177 such biographical melodramas 2 +150117 8177 biographical melodramas 3 +150118 8177 , it suffers from the awkwardness that results from adhering to the messiness of true stories . 1 +150119 8177 it suffers from the awkwardness that results from adhering to the messiness of true stories . 1 +150120 8177 suffers from the awkwardness that results from adhering to the messiness of true stories . 1 +150121 8177 suffers from the awkwardness that results from adhering to the messiness of true stories 1 +150122 8177 from the awkwardness that results from adhering to the messiness of true stories 1 +150123 8177 the awkwardness that results from adhering to the messiness of true stories 2 +150124 8177 that results from adhering to the messiness of true stories 2 +150125 8177 results from adhering to the messiness of true stories 1 +150126 8177 from adhering to the messiness of true stories 2 +150127 8177 adhering to the messiness of true stories 2 +150128 8177 adhering 2 +150129 8177 to the messiness of true stories 2 +150130 8177 the messiness of true stories 2 +150131 8177 the messiness 1 +150132 8177 of true stories 2 +150133 8177 true stories 2 +150134 8178 No cute factor here ... Not that I mind ugly ; the problem is he has no character , loveable or otherwise . 0 +150135 8178 No cute factor 1 +150136 8178 cute factor 3 +150137 8178 here ... Not that I mind ugly ; the problem is he has no character , loveable or otherwise . 1 +150138 8178 ... Not that I mind ugly ; the problem is he has no character , loveable or otherwise . 1 +150139 8178 Not that I mind ugly ; the problem is he has no character , loveable or otherwise . 1 +150140 8178 Not that I mind ugly 2 +150141 8178 that I mind ugly 2 +150142 8178 I mind ugly 1 +150143 8178 mind ugly 1 +150144 8178 ; the problem is he has no character , loveable or otherwise . 1 +150145 8178 the problem is he has no character , loveable or otherwise . 0 +150146 8178 is he has no character , loveable or otherwise . 1 +150147 8178 is he has no character , loveable or otherwise 0 +150148 8178 he has no character , loveable or otherwise 0 +150149 8178 has no character , loveable or otherwise 0 +150150 8178 no character , loveable or otherwise 0 +150151 8178 no character , 0 +150152 8178 no character 1 +150153 8178 loveable or otherwise 3 +150154 8178 loveable or 2 +150155 8179 A remarkable movie with an unsatisfying ending , which is just the point . 3 +150156 8179 A remarkable movie with an unsatisfying ending , which is just the point 3 +150157 8179 A remarkable movie 4 +150158 8179 remarkable movie 4 +150159 8179 with an unsatisfying ending , which is just the point 2 +150160 8179 an unsatisfying ending , which is just the point 2 +150161 8179 an unsatisfying ending , 2 +150162 8179 an unsatisfying ending 2 +150163 8179 unsatisfying ending 0 +150164 8179 which is just the point 2 +150165 8179 is just the point 3 +150166 8180 If you 're a fan of the series you 'll love it and probably want to see it twice . 4 +150167 8180 If you 're a fan of the series 2 +150168 8180 you 're a fan of the series 3 +150169 8180 're a fan of the series 2 +150170 8180 a fan of the series 2 +150171 8180 of the series 2 +150172 8180 you 'll love it and probably want to see it twice . 4 +150173 8180 'll love it and probably want to see it twice . 4 +150174 8180 'll love it and probably want to see it twice 4 +150175 8180 'll love it and 4 +150176 8180 'll love it 4 +150177 8180 probably want to see it twice 3 +150178 8180 want to see it twice 4 +150179 8180 to see it twice 3 +150180 8180 see it twice 4 +150181 8181 Unless Bob Crane is someone of particular interest to you , this film 's impressive performances and adept direction are n't likely to leave a lasting impression . 1 +150182 8181 Unless Bob Crane is someone of particular interest to you 2 +150183 8181 Bob Crane is someone of particular interest to you 2 +150184 8181 Bob Crane 2 +150185 8181 is someone of particular interest to you 2 +150186 8181 someone of particular interest to you 2 +150187 8181 of particular interest to you 2 +150188 8181 particular interest to you 2 +150189 8181 particular interest 3 +150190 8181 , this film 's impressive performances and adept direction are n't likely to leave a lasting impression . 1 +150191 8181 this film 's impressive performances and adept direction are n't likely to leave a lasting impression . 2 +150192 8181 this film 's impressive performances and adept direction 3 +150193 8181 this film 's impressive performances and 3 +150194 8181 this film 's impressive performances 3 +150195 8181 impressive performances 4 +150196 8181 adept direction 2 +150197 8181 adept 3 +150198 8181 are n't likely to leave a lasting impression . 1 +150199 8181 are n't likely to leave a lasting impression 1 +150200 8181 likely to leave a lasting impression 3 +150201 8181 to leave a lasting impression 2 +150202 8181 leave a lasting impression 3 +150203 8181 a lasting impression 3 +150204 8181 lasting impression 3 +150205 8182 It does n't flinch from its unsettling prognosis , namely , that the legacy of war is a kind of perpetual pain . 1 +150206 8182 does n't flinch from its unsettling prognosis , namely , that the legacy of war is a kind of perpetual pain . 2 +150207 8182 does n't flinch from its unsettling prognosis , namely , that the legacy of war is a kind of perpetual pain 3 +150208 8182 flinch from its unsettling prognosis , namely , that the legacy of war is a kind of perpetual pain 2 +150209 8182 flinch from its unsettling prognosis , namely , 2 +150210 8182 flinch from its unsettling prognosis , namely 2 +150211 8182 flinch from its unsettling prognosis , 2 +150212 8182 flinch from its unsettling prognosis 2 +150213 8182 flinch 2 +150214 8182 from its unsettling prognosis 1 +150215 8182 its unsettling prognosis 1 +150216 8182 unsettling prognosis 3 +150217 8182 prognosis 2 +150218 8182 that the legacy of war is a kind of perpetual pain 2 +150219 8182 the legacy of war is a kind of perpetual pain 2 +150220 8182 the legacy of war 2 +150221 8182 the legacy 2 +150222 8182 is a kind of perpetual pain 1 +150223 8182 a kind of perpetual pain 1 +150224 8182 of perpetual pain 2 +150225 8182 perpetual pain 2 +150226 8183 If you recognize Zeus -LRB- the dog from Snatch -RRB- it will make you wish you were at home watching that movie instead of in the theater watching this one . 1 +150227 8183 If you recognize Zeus -LRB- the dog from Snatch -RRB- 2 +150228 8183 you recognize Zeus -LRB- the dog from Snatch -RRB- 2 +150229 8183 recognize Zeus -LRB- the dog from Snatch -RRB- 2 +150230 8183 Zeus -LRB- the dog from Snatch -RRB- 2 +150231 8183 Zeus 2 +150232 8183 -LRB- the dog from Snatch -RRB- 2 +150233 8183 the dog from Snatch -RRB- 1 +150234 8183 the dog from Snatch 2 +150235 8183 from Snatch 2 +150236 8183 it will make you wish you were at home watching that movie instead of in the theater watching this one . 1 +150237 8183 will make you wish you were at home watching that movie instead of in the theater watching this one . 1 +150238 8183 will make you wish you were at home watching that movie instead of in the theater watching this one 0 +150239 8183 make you wish you were at home watching that movie instead of in the theater watching this one 1 +150240 8183 you wish you were at home watching that movie instead of in the theater watching this one 0 +150241 8183 wish you were at home watching that movie instead of in the theater watching this one 1 +150242 8183 you were at home watching that movie instead of in the theater watching this one 1 +150243 8183 were at home watching that movie instead of in the theater watching this one 1 +150244 8183 were at home 2 +150245 8183 watching that movie instead of in the theater watching this one 2 +150246 8183 watching that movie 2 +150247 8183 instead of in the theater watching this one 2 +150248 8183 of in the theater watching this one 2 +150249 8183 in the theater watching this one 2 +150250 8183 the theater watching this one 2 +150251 8183 watching this one 2 +150252 8184 ... a trashy little bit of fluff stuffed with enjoyable performances and a bewildering sense of self-importance 2 +150253 8184 a trashy little bit of fluff stuffed with enjoyable performances and a bewildering sense of self-importance 2 +150254 8184 a trashy little 1 +150255 8184 a trashy 1 +150256 8184 bit of fluff stuffed with enjoyable performances and a bewildering sense of self-importance 2 +150257 8184 bit of fluff stuffed with enjoyable performances and 3 +150258 8184 bit of fluff stuffed with enjoyable performances 3 +150259 8184 of fluff stuffed with enjoyable performances 3 +150260 8184 fluff stuffed with enjoyable performances 3 +150261 8184 fluff stuffed 1 +150262 8184 with enjoyable performances 3 +150263 8184 enjoyable performances 4 +150264 8184 a bewildering sense of self-importance 2 +150265 8184 a bewildering sense 1 +150266 8184 bewildering sense 2 +150267 8184 of self-importance 1 +150268 8184 self-importance 3 +150269 8185 If you 're really renting this you 're not interested in discretion in your entertainment choices , you 're interested in Anne Geddes , John Grisham , and Thomas Kincaid . 2 +150270 8185 If you 're really renting this you 're not interested in discretion in your entertainment choices 0 +150271 8185 you 're really renting this you 're not interested in discretion in your entertainment choices 1 +150272 8185 're really renting this you 're not interested in discretion in your entertainment choices 1 +150273 8185 're really 2 +150274 8185 renting this you 're not interested in discretion in your entertainment choices 1 +150275 8185 renting 3 +150276 8185 this you 're not interested in discretion in your entertainment choices 2 +150277 8185 you 're not interested in discretion in your entertainment choices 1 +150278 8185 're not interested in discretion in your entertainment choices 1 +150279 8185 're not interested in discretion 2 +150280 8185 interested in discretion 2 +150281 8185 in discretion 2 +150282 8185 discretion 2 +150283 8185 in your entertainment choices 2 +150284 8185 your entertainment choices 3 +150285 8185 entertainment choices 2 +150286 8185 , you 're interested in Anne Geddes , John Grisham , and Thomas Kincaid . 2 +150287 8185 you 're interested in Anne Geddes , John Grisham , and Thomas Kincaid . 2 +150288 8185 're interested in Anne Geddes , John Grisham , and Thomas Kincaid . 2 +150289 8185 're interested in Anne Geddes , John Grisham , and Thomas Kincaid 2 +150290 8185 interested in Anne Geddes , John Grisham , and Thomas Kincaid 4 +150291 8185 in Anne Geddes , John Grisham , and Thomas Kincaid 2 +150292 8185 Anne Geddes , John Grisham , and Thomas Kincaid 1 +150293 8185 Anne Geddes , John Grisham , and 2 +150294 8185 Anne Geddes , John Grisham , 2 +150295 8185 Anne Geddes , John Grisham 2 +150296 8185 Anne Geddes , 2 +150297 8185 Anne Geddes 2 +150298 8185 Geddes 2 +150299 8185 John Grisham 2 +150300 8185 Grisham 2 +150301 8185 Thomas Kincaid 2 +150302 8185 Kincaid 2 +150303 8186 Like a can of 2-day old Coke . 0 +150304 8186 Like a can of 2-day old Coke 1 +150305 8186 a can of 2-day old Coke 1 +150306 8186 a can 2 +150307 8186 of 2-day old Coke 1 +150308 8186 2-day old Coke 1 +150309 8186 2-day 2 +150310 8186 old Coke 2 +150311 8187 What Jackson has done is proven that no amount of imagination , no creature , no fantasy story and no incredibly outlandish scenery 1 +150312 8187 Jackson has done is proven that no amount of imagination , no creature , no fantasy story and no incredibly outlandish scenery 1 +150313 8187 has done is proven that no amount of imagination , no creature , no fantasy story and no incredibly outlandish scenery 1 +150314 8187 done is proven that no amount of imagination , no creature , no fantasy story and no incredibly outlandish scenery 2 +150315 8187 is proven that no amount of imagination , no creature , no fantasy story and no incredibly outlandish scenery 1 +150316 8187 proven that no amount of imagination , no creature , no fantasy story and no incredibly outlandish scenery 1 +150317 8187 that no amount of imagination , no creature , no fantasy story and no incredibly outlandish scenery 1 +150318 8187 no amount of imagination , no creature , no fantasy story and no incredibly outlandish scenery 1 +150319 8187 no amount of imagination , no creature , 2 +150320 8187 no amount of imagination , no creature 1 +150321 8187 no amount of imagination , 1 +150322 8187 no amount of imagination 1 +150323 8187 no creature 2 +150324 8187 no fantasy story and no incredibly outlandish scenery 2 +150325 8187 no fantasy story and 2 +150326 8187 no fantasy story 3 +150327 8187 fantasy story 2 +150328 8187 no incredibly outlandish scenery 2 +150329 8187 incredibly outlandish scenery 2 +150330 8187 incredibly outlandish 2 +150331 8188 As a girl-meets-girl romantic comedy , Kissing Jessica Steinis quirky , charming and often hilarious . 4 +150332 8188 As a girl-meets-girl romantic comedy 3 +150333 8188 a girl-meets-girl romantic comedy 2 +150334 8188 girl-meets-girl romantic comedy 3 +150335 8188 , Kissing Jessica Steinis quirky , charming and often hilarious . 4 +150336 8188 Kissing Jessica Steinis quirky , charming and often hilarious . 4 +150337 8188 Kissing Jessica 2 +150338 8188 Steinis quirky , charming and often hilarious . 3 +150339 8188 Steinis quirky , charming and often hilarious 3 +150340 8188 Steinis 2 +150341 8188 quirky , charming and often hilarious 4 +150342 8188 quirky , charming and 3 +150343 8188 quirky , charming 3 +150344 8188 quirky , 2 +150345 8189 Humorous and heartfelt , Douglas McGrath 's version of ` Nicholas Nickleby ' left me feeling refreshed and hopeful . 4 +150346 8189 Humorous and heartfelt , Douglas McGrath 's version of ` Nicholas Nickleby ' 3 +150347 8189 Humorous and heartfelt , 3 +150348 8189 Humorous and heartfelt 4 +150349 8189 Douglas McGrath 's version of ` Nicholas Nickleby ' 2 +150350 8189 Douglas McGrath 's version 2 +150351 8189 of ` Nicholas Nickleby ' 2 +150352 8189 of ` Nicholas Nickleby 2 +150353 8189 left me feeling refreshed and hopeful . 3 +150354 8189 left me feeling refreshed and hopeful 4 +150355 8189 me feeling refreshed and hopeful 4 +150356 8189 feeling refreshed and hopeful 3 +150357 8189 refreshed and hopeful 3 +150358 8189 refreshed and 3 +150359 8190 ... a solid , well-formed satire . 4 +150360 8190 a solid , well-formed satire . 3 +150361 8190 a solid , well-formed satire 4 +150362 8190 well-formed satire 3 +150363 8190 well-formed 3 +150364 8191 May offend viewers not amused by the sick sense of humor . 1 +150365 8191 offend viewers not amused by the sick sense of humor . 0 +150366 8191 offend viewers not amused by the sick sense of humor 1 +150367 8191 viewers not amused by the sick sense of humor 1 +150368 8191 not amused by the sick sense of humor 0 +150369 8191 amused by the sick sense of humor 2 +150370 8191 by the sick sense of humor 1 +150371 8191 the sick sense of humor 2 +150372 8191 the sick sense 1 +150373 8191 sick sense 1 +150374 8192 The Lady and the Duke is Eric Rohmer 's economical antidote to the bloated costume drama 2 +150375 8192 is Eric Rohmer 's economical antidote to the bloated costume drama 2 +150376 8192 Eric Rohmer 's economical antidote to the bloated costume drama 3 +150377 8192 Eric Rohmer 's economical antidote 2 +150378 8192 economical antidote 2 +150379 8192 to the bloated costume drama 1 +150380 8192 the bloated costume drama 1 +150381 8192 bloated costume drama 2 +150382 8193 Assayas ' ambitious , sometimes beautiful adaptation of Jacques Chardonne 's novel . 3 +150383 8193 Assayas ' ambitious , sometimes beautiful adaptation of Jacques Chardonne 4 +150384 8193 Assayas ' ambitious , sometimes beautiful adaptation 4 +150385 8193 ambitious , sometimes beautiful adaptation 3 +150386 8193 , sometimes beautiful adaptation 3 +150387 8193 sometimes beautiful adaptation 3 +150388 8193 sometimes beautiful 3 +150389 8193 of Jacques Chardonne 2 +150390 8193 Jacques Chardonne 2 +150391 8193 Chardonne 2 +150392 8193 's novel . 2 +150393 8193 's novel 2 +150394 8194 It does n't take a rocket scientist to figure out that this is a Mormon family movie , and a sappy , preachy one at that . 0 +150395 8194 does n't take a rocket scientist to figure out that this is a Mormon family movie , and a sappy , preachy one at that . 1 +150396 8194 does n't take a rocket scientist to figure out that this is a Mormon family movie , and a sappy , preachy one at that 0 +150397 8194 take a rocket scientist to figure out that this is a Mormon family movie , and a sappy , preachy one at that 1 +150398 8194 take a rocket scientist 2 +150399 8194 a rocket scientist 2 +150400 8194 to figure out that this is a Mormon family movie , and a sappy , preachy one at that 1 +150401 8194 figure out that this is a Mormon family movie , and a sappy , preachy one at that 1 +150402 8194 that this is a Mormon family movie , and a sappy , preachy one at that 0 +150403 8194 this is a Mormon family movie , and a sappy , preachy one at that 1 +150404 8194 is a Mormon family movie , and a sappy , preachy one at that 1 +150405 8194 a Mormon family movie , and a sappy , preachy one at that 1 +150406 8194 a Mormon family movie , and 2 +150407 8194 a Mormon family movie , 2 +150408 8194 a Mormon family movie 2 +150409 8194 Mormon family movie 2 +150410 8194 a sappy , preachy one at that 1 +150411 8194 a sappy , preachy one 1 +150412 8194 sappy , preachy one 1 +150413 8194 , preachy one 2 +150414 8194 preachy one 2 +150415 8195 There are many things that solid acting can do for a movie , but crafting something promising from a mediocre screenplay is not one of them . 2 +150416 8195 There are many things that solid acting can do for a movie , but crafting something promising from a mediocre screenplay is not one of them 1 +150417 8195 There are many things that solid acting can do for a movie , but 2 +150418 8195 There are many things that solid acting can do for a movie , 3 +150419 8195 There are many things that solid acting can do for a movie 3 +150420 8195 are many things that solid acting can do for a movie 3 +150421 8195 are many things 2 +150422 8195 that solid acting can do for a movie 3 +150423 8195 solid acting can do for a movie 3 +150424 8195 can do for a movie 2 +150425 8195 do for a movie 2 +150426 8195 crafting something promising from a mediocre screenplay is not one of them 1 +150427 8195 crafting something promising from a mediocre screenplay 2 +150428 8195 crafting 3 +150429 8195 something promising from a mediocre screenplay 2 +150430 8195 promising from a mediocre screenplay 2 +150431 8195 from a mediocre screenplay 2 +150432 8195 a mediocre screenplay 1 +150433 8195 mediocre screenplay 1 +150434 8195 is not one of them 1 +150435 8196 A cautionary tale about the folly of superficiality that is itself endlessly superficial . 1 +150436 8196 A cautionary tale about the folly of superficiality that is itself 2 +150437 8196 about the folly of superficiality that is itself 1 +150438 8196 the folly of superficiality that is itself 1 +150439 8196 the folly of superficiality 1 +150440 8196 of superficiality 1 +150441 8196 that is itself 2 +150442 8196 endlessly superficial . 1 +150443 8196 superficial . 1 +150444 8197 It should be doing a lot of things , but does n't . 0 +150445 8197 should be doing a lot of things , but does n't . 1 +150446 8197 should be doing a lot of things , but does n't 1 +150447 8197 be doing a lot of things , but does n't 2 +150448 8197 doing a lot of things , but does n't 2 +150449 8197 a lot of things , but does n't 2 +150450 8197 of things , but does n't 2 +150451 8197 things , but does n't 2 +150452 8197 things , 2 +150453 8197 but does n't 2 +150454 8198 I was hoping that it would be sleazy and fun , but it was neither . 2 +150455 8198 I was hoping that it would be sleazy and fun , but it was neither 0 +150456 8198 I was hoping that it would be sleazy and fun , but 1 +150457 8198 I was hoping that it would be sleazy and fun , 2 +150458 8198 I was hoping that it would be sleazy and fun 2 +150459 8198 was hoping that it would be sleazy and fun 2 +150460 8198 hoping that it would be sleazy and fun 3 +150461 8198 that it would be sleazy and fun 2 +150462 8198 it would be sleazy and fun 3 +150463 8198 would be sleazy and fun 2 +150464 8198 be sleazy and fun 2 +150465 8198 sleazy and fun 3 +150466 8198 sleazy and 1 +150467 8198 it was neither 2 +150468 8198 was neither 2 +150469 8199 The logic of it all will be Greek to anyone not predisposed to the movie 's rude and crude humor . 0 +150470 8199 The logic of it 2 +150471 8199 The logic 3 +150472 8199 all will be Greek to anyone not predisposed to the movie 's rude and crude humor . 1 +150473 8199 will be Greek to anyone not predisposed to the movie 's rude and crude humor . 2 +150474 8199 will be Greek to anyone not predisposed to the movie 's rude and crude humor 1 +150475 8199 be Greek to anyone not predisposed to the movie 's rude and crude humor 1 +150476 8199 Greek to anyone not predisposed to the movie 's rude and crude humor 1 +150477 8199 to anyone not predisposed to the movie 's rude and crude humor 2 +150478 8199 anyone not predisposed to the movie 's rude and crude humor 2 +150479 8199 anyone not 2 +150480 8199 predisposed to the movie 's rude and crude humor 1 +150481 8199 to the movie 's rude and crude humor 1 +150482 8199 the movie 's rude and crude humor 1 +150483 8199 rude and crude humor 1 +150484 8199 and crude humor 0 +150485 8199 crude humor 2 +150486 8200 About as big a crowdpleaser as they possibly come . 4 +150487 8200 About as big a crowdpleaser as 2 +150488 8200 as big a crowdpleaser as 3 +150489 8200 as big 2 +150490 8200 a crowdpleaser as 4 +150491 8200 a crowdpleaser 3 +150492 8200 crowdpleaser 3 +150493 8200 they possibly come . 2 +150494 8200 possibly come . 2 +150495 8201 Thumbs up to Paxton for not falling into the Hollywood trap and making a vanity project with nothing new to offer . 4 +150496 8201 Thumbs up to Paxton for not falling into the Hollywood trap and making a vanity project with nothing new to offer 3 +150497 8201 Thumbs up to Paxton 4 +150498 8201 Thumbs up 3 +150499 8201 to Paxton 2 +150500 8201 for not falling into the Hollywood trap and making a vanity project with nothing new to offer 2 +150501 8201 not falling into the Hollywood trap and making a vanity project with nothing new to offer 3 +150502 8201 falling into the Hollywood trap and making a vanity project with nothing new to offer 1 +150503 8201 falling into the Hollywood trap and 1 +150504 8201 falling into the Hollywood trap 1 +150505 8201 into the Hollywood trap 2 +150506 8201 the Hollywood trap 2 +150507 8201 Hollywood trap 1 +150508 8201 making a vanity project with nothing new to offer 2 +150509 8201 making a vanity project with nothing new 1 +150510 8201 making a vanity project 2 +150511 8201 a vanity project 1 +150512 8201 with nothing new 2 +150513 8202 Why `` they '' were here and what `` they '' wanted and quite honestly , I did n't care . 1 +150514 8202 Why `` they '' were here and what `` they '' wanted and quite honestly 2 +150515 8202 Why `` they '' were here and 2 +150516 8202 Why `` they '' were here 2 +150517 8202 `` they '' were here 2 +150518 8202 they '' were here 2 +150519 8202 '' were here 2 +150520 8202 were here 2 +150521 8202 what `` they '' wanted and quite honestly 2 +150522 8202 `` they '' wanted and quite honestly 2 +150523 8202 they '' wanted and quite honestly 2 +150524 8202 '' wanted and quite honestly 3 +150525 8202 wanted and quite honestly 2 +150526 8202 wanted and quite 2 +150527 8202 wanted and 2 +150528 8202 , I did n't care . 1 +150529 8202 I did n't care . 1 +150530 8202 did n't care . 1 +150531 8203 Together -LRB- Time Out and Human Resources -RRB- establish Mr. Cantet as France 's foremost cinematic poet of the workplace . 3 +150532 8203 Together -LRB- Time Out and Human Resources -RRB- establish Mr. Cantet as France 's foremost cinematic poet of the workplace 4 +150533 8203 Together -LRB- Time Out and Human Resources -RRB- 2 +150534 8203 -LRB- Time Out and Human Resources -RRB- 2 +150535 8203 Time Out and Human Resources -RRB- 2 +150536 8203 Time Out and Human Resources 2 +150537 8203 Time Out and 2 +150538 8203 Human Resources 2 +150539 8203 establish Mr. Cantet as France 's foremost cinematic poet of the workplace 3 +150540 8203 establish 2 +150541 8203 Mr. Cantet as France 's foremost cinematic poet of the workplace 2 +150542 8203 Mr. Cantet 2 +150543 8203 as France 's foremost cinematic poet of the workplace 3 +150544 8203 France 's foremost cinematic poet of the workplace 2 +150545 8203 France 's foremost cinematic poet 3 +150546 8203 foremost cinematic poet 3 +150547 8203 cinematic poet 3 +150548 8203 of the workplace 2 +150549 8204 It 's mildly entertaining , especially if you find comfort in familiarity . 3 +150550 8204 's mildly entertaining , especially if you find comfort in familiarity . 2 +150551 8204 's mildly entertaining , especially if you find comfort in familiarity 2 +150552 8204 's mildly entertaining , especially 2 +150553 8204 's mildly entertaining , 3 +150554 8204 's mildly entertaining 3 +150555 8204 if you find comfort in familiarity 3 +150556 8204 you find comfort in familiarity 3 +150557 8204 find comfort in familiarity 3 +150558 8204 comfort in familiarity 3 +150559 8204 in familiarity 2 +150560 8205 The chocolate factory without Charlie . 1 +150561 8205 The chocolate factory without Charlie 2 +150562 8205 The chocolate factory 2 +150563 8205 chocolate factory 2 +150564 8205 without Charlie 2 +150565 8206 Why , you may ask , why should you buy the movie milk when the TV cow is free ? 1 +150566 8206 Why , you may ask 2 +150567 8206 Why , 2 +150568 8206 you may ask 2 +150569 8206 may ask 2 +150570 8206 , why should you buy the movie milk when the TV cow is free ? 1 +150571 8206 why should you buy the movie milk when the TV cow is free ? 1 +150572 8206 should you buy the movie milk when the TV cow is free ? 2 +150573 8206 should you buy the movie milk when the TV cow is free 1 +150574 8206 should you 2 +150575 8206 buy the movie milk when the TV cow is free 1 +150576 8206 buy the movie milk 2 +150577 8206 the movie milk 2 +150578 8206 movie milk 2 +150579 8206 when the TV cow is free 2 +150580 8206 the TV cow is free 2 +150581 8206 the TV cow 2 +150582 8206 TV cow 2 +150583 8206 cow 2 +150584 8206 is free 2 +150585 8207 The trappings of I Spy are so familiar you might as well be watching a rerun . 1 +150586 8207 The trappings of I Spy 2 +150587 8207 of I Spy 2 +150588 8207 are so familiar you might as well be watching a rerun . 2 +150589 8207 are so familiar you might as well be watching a rerun 1 +150590 8207 so familiar you might as well be watching a rerun 1 +150591 8207 familiar you might as well be watching a rerun 1 +150592 8207 you might as well be watching a rerun 0 +150593 8207 might as well be watching a rerun 0 +150594 8207 be watching a rerun 2 +150595 8207 watching a rerun 1 +150596 8208 We 've liked Klein 's other work but Rollerball left us cold . 0 +150597 8208 We 've liked Klein 's other work but Rollerball left us cold 1 +150598 8208 We 've liked Klein 's other work but 2 +150599 8208 We 've liked Klein 's other work 2 +150600 8208 've liked Klein 's other work 2 +150601 8208 liked Klein 's other work 2 +150602 8208 Klein 's other work 2 +150603 8208 Klein 's 2 +150604 8208 other work 2 +150605 8208 Rollerball left us cold 0 +150606 8208 left us cold 0 +150607 8208 us cold 2 +150608 8209 Even on its own ludicrous terms , The Sum of All Fears generates little narrative momentum , and invites unflattering comparisons to other installments in the Ryan series . 0 +150609 8209 Even on its own ludicrous terms 2 +150610 8209 on its own ludicrous terms 2 +150611 8209 its own ludicrous terms 1 +150612 8209 own ludicrous terms 2 +150613 8209 ludicrous terms 1 +150614 8209 , The Sum of All Fears generates little narrative momentum , and invites unflattering comparisons to other installments in the Ryan series . 1 +150615 8209 The Sum of All Fears generates little narrative momentum , and invites unflattering comparisons to other installments in the Ryan series . 0 +150616 8209 generates little narrative momentum , and invites unflattering comparisons to other installments in the Ryan series . 1 +150617 8209 generates little narrative momentum , and invites unflattering comparisons to other installments in the Ryan series 0 +150618 8209 generates little narrative momentum , and 1 +150619 8209 generates little narrative momentum , 1 +150620 8209 generates little narrative momentum 1 +150621 8209 little narrative momentum 1 +150622 8209 narrative momentum 2 +150623 8209 invites unflattering comparisons to other installments in the Ryan series 1 +150624 8209 invites unflattering comparisons 1 +150625 8209 invites 2 +150626 8209 unflattering comparisons 1 +150627 8209 unflattering 1 +150628 8209 comparisons 2 +150629 8209 to other installments in the Ryan series 2 +150630 8209 other installments in the Ryan series 2 +150631 8209 other installments 2 +150632 8209 installments 2 +150633 8209 in the Ryan series 2 +150634 8209 the Ryan series 2 +150635 8209 Ryan series 2 +150636 8210 But the actors make this worth a peek . 3 +150637 8210 the actors make this worth a peek . 3 +150638 8210 make this worth a peek . 3 +150639 8210 make this worth a peek 4 +150640 8210 make this 2 +150641 8210 worth a peek 3 +150642 8211 This mess of a movie is nothing short of a travesty of a transvestite comedy . 0 +150643 8211 This mess of a movie 0 +150644 8211 is nothing short of a travesty of a transvestite comedy . 1 +150645 8211 is nothing short of a travesty of a transvestite comedy 0 +150646 8211 nothing short of a travesty of a transvestite comedy 0 +150647 8211 short of a travesty of a transvestite comedy 1 +150648 8211 of a travesty of a transvestite comedy 1 +150649 8211 a travesty of a transvestite comedy 1 +150650 8211 a travesty 1 +150651 8211 of a transvestite comedy 2 +150652 8211 a transvestite comedy 2 +150653 8211 transvestite comedy 1 +150654 8211 transvestite 2 +150655 8212 A determined , ennui-hobbled slog that really does n't have much to say beyond the news flash that loneliness can make people act weird . 1 +150656 8212 A determined , ennui-hobbled slog that really does n't have much to say beyond the news 0 +150657 8212 A determined , ennui-hobbled slog 1 +150658 8212 determined , ennui-hobbled slog 1 +150659 8212 determined , ennui-hobbled 3 +150660 8212 , ennui-hobbled 2 +150661 8212 ennui-hobbled 1 +150662 8212 that really does n't have much to say beyond the news 1 +150663 8212 really does n't have much to say beyond the news 1 +150664 8212 does n't have much to say beyond the news 1 +150665 8212 have much to say beyond the news 2 +150666 8212 much to say beyond the news 2 +150667 8212 to say beyond the news 2 +150668 8212 say beyond the news 2 +150669 8212 beyond the news 2 +150670 8212 flash that loneliness can make people act weird . 2 +150671 8212 flash that loneliness can make people act weird 2 +150672 8212 that loneliness can make people act weird 2 +150673 8212 loneliness can make people act weird 1 +150674 8212 can make people act weird 1 +150675 8212 make people act weird 2 +150676 8212 people act weird 1 +150677 8212 act weird 1 +150678 8213 The satire is unfocused , while the story goes nowhere . 0 +150679 8213 is unfocused , while the story goes nowhere . 0 +150680 8213 is unfocused , while the story goes nowhere 1 +150681 8213 is unfocused , 1 +150682 8213 is unfocused 1 +150683 8213 while the story goes nowhere 1 +150684 8213 the story goes nowhere 1 +150685 8214 Easily the most thoughtful fictional examination of the root causes of anti-Semitism ever seen on screen . 4 +150686 8214 Easily the most thoughtful fictional examination of the root 3 +150687 8214 Easily the most thoughtful fictional examination 4 +150688 8214 the most thoughtful fictional examination 4 +150689 8214 most thoughtful fictional examination 4 +150690 8214 fictional examination 2 +150691 8214 of the root 2 +150692 8214 the root 2 +150693 8214 causes of anti-Semitism ever seen on screen . 0 +150694 8214 causes of anti-Semitism ever seen on screen 2 +150695 8214 causes 2 +150696 8214 of anti-Semitism ever seen on screen 1 +150697 8214 anti-Semitism ever seen on screen 2 +150698 8214 ever seen on screen 2 +150699 8214 seen on screen 2 +150700 8215 Conceptually brilliant ... Plays like a living-room War Of The Worlds , gaining most of its unsettling force from the suggested and the unknown . 3 +150701 8215 Conceptually brilliant 4 +150702 8215 Conceptually 2 +150703 8215 ... Plays like a living-room War Of The Worlds , gaining most of its unsettling force from the suggested and the unknown . 2 +150704 8215 Plays like a living-room War Of The Worlds , gaining most of its unsettling force from the suggested and the unknown . 1 +150705 8215 Plays like a living-room War Of The Worlds , gaining most of its unsettling force from the suggested and the unknown 2 +150706 8215 like a living-room War Of The Worlds , gaining most of its unsettling force from the suggested and the unknown 3 +150707 8215 like a living-room War Of The Worlds , 2 +150708 8215 like a living-room War Of The Worlds 2 +150709 8215 a living-room War Of The Worlds 2 +150710 8215 a living-room War 2 +150711 8215 living-room War 2 +150712 8215 living-room 2 +150713 8215 Of The Worlds 2 +150714 8215 The Worlds 2 +150715 8215 gaining most of its unsettling force from the suggested and the unknown 3 +150716 8215 gaining most of its unsettling force 3 +150717 8215 most of its unsettling force 2 +150718 8215 of its unsettling force 2 +150719 8215 its unsettling force 3 +150720 8215 unsettling force 2 +150721 8215 from the suggested and the unknown 2 +150722 8215 the suggested and the unknown 1 +150723 8215 the suggested and 2 +150724 8215 the suggested 2 +150725 8215 the unknown 2 +150726 8216 I have to admit I walked out of Runteldat . 0 +150727 8216 have to admit I walked out of Runteldat . 0 +150728 8216 have to admit I walked out of Runteldat 0 +150729 8216 to admit I walked out of Runteldat 0 +150730 8216 admit I walked out of Runteldat 0 +150731 8216 I walked out of Runteldat 1 +150732 8216 walked out of Runteldat 1 +150733 8216 of Runteldat 2 +150734 8217 Less worrying about covering all the drama in Frida 's life and more time spent exploring her process of turning pain into art would have made this a superior movie . 2 +150735 8217 Less worrying about covering all the drama in Frida 's life and more time 1 +150736 8217 Less worrying about covering all the drama in Frida 's life and more 2 +150737 8217 Less worrying about covering all the drama in Frida 's life and 2 +150738 8217 Less worrying about covering all the drama in Frida 's life 2 +150739 8217 worrying about covering all the drama in Frida 's life 3 +150740 8217 about covering all the drama in Frida 's life 2 +150741 8217 covering all the drama in Frida 's life 2 +150742 8217 covering all the drama 3 +150743 8217 covering 2 +150744 8217 all the drama 2 +150745 8217 in Frida 's life 2 +150746 8217 Frida 's life 2 +150747 8217 Frida 's 2 +150748 8217 spent exploring her process of turning pain into art would have made this a superior movie . 3 +150749 8217 spent exploring her process of turning pain into art would have made this a superior movie 2 +150750 8217 exploring her process of turning pain into art would have made this a superior movie 1 +150751 8217 exploring her process of turning pain into art 2 +150752 8217 her process of turning pain into art 2 +150753 8217 her process 2 +150754 8217 of turning pain into art 2 +150755 8217 turning pain into art 2 +150756 8217 turning pain 2 +150757 8217 into art 2 +150758 8217 would have made this a superior movie 1 +150759 8217 have made this a superior movie 3 +150760 8217 made this a superior movie 4 +150761 8217 this a superior movie 4 +150762 8217 a superior movie 4 +150763 8217 superior movie 3 +150764 8218 It 's excessively quirky and a little underconfident in its delivery , but otherwise this is the best ` old neighborhood ' project since Christopher Walken kinda romanced Cyndi Lauper in The Opportunists . 3 +150765 8218 It 's excessively quirky and a little underconfident in its delivery , but otherwise this is the best ` old neighborhood ' project since Christopher Walken kinda romanced Cyndi Lauper in The Opportunists 3 +150766 8218 It 's excessively quirky and a little underconfident in its delivery , but 1 +150767 8218 It 's excessively quirky and a little underconfident in its delivery , 2 +150768 8218 It 's excessively quirky and a little underconfident in its delivery 1 +150769 8218 's excessively quirky and a little underconfident in its delivery 2 +150770 8218 's excessively quirky and a little underconfident 2 +150771 8218 excessively quirky and a little underconfident 2 +150772 8218 excessively quirky and 2 +150773 8218 excessively quirky 3 +150774 8218 a little underconfident 1 +150775 8218 underconfident 1 +150776 8218 in its delivery 2 +150777 8218 otherwise this is the best ` old neighborhood ' project since Christopher Walken kinda romanced Cyndi Lauper in The Opportunists 3 +150778 8218 this is the best ` old neighborhood ' project since Christopher Walken kinda romanced Cyndi Lauper in The Opportunists 3 +150779 8218 is the best ` old neighborhood ' project since Christopher Walken kinda romanced Cyndi Lauper in The Opportunists 3 +150780 8218 is the best ` old neighborhood ' project 3 +150781 8218 the best ` old neighborhood ' project 3 +150782 8218 the best ` old neighborhood 2 +150783 8218 best ` old neighborhood 2 +150784 8218 ` old neighborhood 2 +150785 8218 old neighborhood 2 +150786 8218 ' project 2 +150787 8218 since Christopher Walken kinda romanced Cyndi Lauper in The Opportunists 2 +150788 8218 Christopher Walken kinda romanced Cyndi Lauper in The Opportunists 3 +150789 8218 Christopher Walken kinda 2 +150790 8218 Walken kinda 2 +150791 8218 Walken 2 +150792 8218 romanced Cyndi Lauper in The Opportunists 2 +150793 8218 romanced 2 +150794 8218 Cyndi Lauper in The Opportunists 2 +150795 8218 Cyndi Lauper 1 +150796 8218 Cyndi 2 +150797 8218 Lauper 2 +150798 8218 in The Opportunists 2 +150799 8218 The Opportunists 2 +150800 8218 Opportunists 3 +150801 8219 This is a movie full of grace and , ultimately , hope . 4 +150802 8219 This is a movie full of grace and , ultimately , hope 3 +150803 8219 This is a movie full of grace and , 4 +150804 8219 This is a movie full of grace and 4 +150805 8219 This is a movie full of grace 4 +150806 8219 is a movie full of grace 3 +150807 8219 a movie full of grace 4 +150808 8219 full of grace 4 +150809 8219 of grace 3 +150810 8219 ultimately , hope 2 +150811 8219 , hope 2 +150812 8220 -LRB- Ferrera -RRB- has the charisma of a young woman who knows how to hold the screen . 4 +150813 8220 -LRB- Ferrera -RRB- 1 +150814 8220 Ferrera -RRB- 2 +150815 8220 has the charisma of a young woman who knows how to hold the screen . 3 +150816 8220 has the charisma of a young woman who knows how to hold the screen 4 +150817 8220 the charisma of a young woman who knows how to hold the screen 3 +150818 8220 of a young woman who knows how to hold the screen 3 +150819 8220 a young woman who knows how to hold the screen 3 +150820 8220 who knows how to hold the screen 3 +150821 8220 knows how to hold the screen 3 +150822 8220 how to hold the screen 2 +150823 8220 to hold the screen 2 +150824 8220 hold the screen 2 +150825 8221 We get an image of Big Papa spanning history , rather than suspending it . 2 +150826 8221 get an image of Big Papa spanning history , rather than suspending it . 2 +150827 8221 get an image of Big Papa spanning history , rather than suspending it 2 +150828 8221 an image of Big Papa spanning history , rather than suspending it 2 +150829 8221 an image of Big Papa 2 +150830 8221 of Big Papa 2 +150831 8221 Big Papa 2 +150832 8221 Papa 2 +150833 8221 spanning history , rather than suspending it 2 +150834 8221 spanning history , rather than 2 +150835 8221 spanning history , 2 +150836 8221 spanning history 2 +150837 8221 suspending it 2 +150838 8221 suspending 2 +150839 8222 `` On Guard ! '' 2 +150840 8222 On Guard ! '' 2 +150841 8222 Guard ! '' 2 +150842 8222 Guard ! 2 +150843 8222 Guard 2 +150844 8223 Average , at best , I 'm afraid . 1 +150845 8223 , at best , I 'm afraid . 2 +150846 8223 at best , I 'm afraid . 1 +150847 8223 , I 'm afraid . 2 +150848 8223 I 'm afraid . 2 +150849 8223 'm afraid . 1 +150850 8223 'm afraid 2 +150851 8224 An eloquent , reflective and beautifully acted meditation on both the profoundly devastating events of one year ago and the slow , painful healing process that has followed in their wake . 4 +150852 8224 An eloquent , reflective and beautifully 4 +150853 8224 eloquent , reflective and beautifully 3 +150854 8224 , reflective and beautifully 3 +150855 8224 reflective and beautifully 4 +150856 8224 reflective and 3 +150857 8224 acted meditation on both the profoundly devastating events of one year ago and the slow , painful healing process that has followed in their wake . 2 +150858 8224 acted meditation on both the profoundly devastating events of one year ago and the slow , painful healing process that has followed in their wake 3 +150859 8224 acted meditation 2 +150860 8224 on both the profoundly devastating events of one year ago and the slow , painful healing process that has followed in their wake 2 +150861 8224 both the profoundly devastating events of one year ago and the slow , painful healing process that has followed in their wake 2 +150862 8224 the profoundly devastating events of one year ago and the slow , painful healing process that has followed in their wake 1 +150863 8224 the profoundly devastating events of one year ago and 2 +150864 8224 the profoundly devastating events of one year ago 1 +150865 8224 the profoundly devastating events 2 +150866 8224 profoundly devastating events 1 +150867 8224 profoundly devastating 2 +150868 8224 of one year ago 2 +150869 8224 one year ago 2 +150870 8224 the slow , painful healing process that has followed in their wake 2 +150871 8224 the slow , painful healing process 2 +150872 8224 slow , painful healing process 1 +150873 8224 slow , painful 2 +150874 8224 , painful 1 +150875 8224 healing process 3 +150876 8224 that has followed in their wake 2 +150877 8224 has followed in their wake 2 +150878 8224 followed in their wake 2 +150879 8224 in their wake 2 +150880 8224 their wake 2 +150881 8225 Fortunately , Elling never gets too cloying thanks to the actors ' perfect comic timing and sweet , genuine chemistry . 3 +150882 8225 , Elling never gets too cloying thanks to the actors ' perfect comic timing and sweet , genuine chemistry . 3 +150883 8225 Elling never gets too cloying thanks to the actors ' perfect comic timing and sweet , genuine chemistry . 4 +150884 8225 never gets too cloying thanks to the actors ' perfect comic timing and sweet , genuine chemistry . 4 +150885 8225 gets too cloying thanks to the actors ' perfect comic timing and sweet , genuine chemistry . 3 +150886 8225 gets too cloying thanks to the actors ' perfect comic timing and sweet , genuine chemistry 3 +150887 8225 gets too cloying 1 +150888 8225 too cloying 2 +150889 8225 thanks to the actors ' perfect comic timing and sweet , genuine chemistry 3 +150890 8225 to the actors ' perfect comic timing and sweet , genuine chemistry 4 +150891 8225 the actors ' perfect comic timing and sweet , genuine chemistry 4 +150892 8225 the actors ' perfect comic timing and 3 +150893 8225 the actors ' perfect comic timing 4 +150894 8225 perfect comic timing 4 +150895 8225 sweet , genuine chemistry 3 +150896 8225 sweet , genuine 4 +150897 8225 , genuine 4 +150898 8226 Tully is worth a look for its true-to-life characters , its sensitive acting , its unadorned view of rural life and the subtle direction of first-timer Hilary Birmingham . 4 +150899 8226 is worth a look for its true-to-life characters , its sensitive acting , its unadorned view of rural life and the subtle direction of first-timer Hilary Birmingham . 4 +150900 8226 is worth a look for its true-to-life characters , its sensitive acting , its unadorned view of rural life and the subtle direction of first-timer Hilary Birmingham 3 +150901 8226 worth a look for its true-to-life characters , its sensitive acting , its unadorned view of rural life and the subtle direction of first-timer Hilary Birmingham 4 +150902 8226 a look for its true-to-life characters , its sensitive acting , its unadorned view of rural life and the subtle direction of first-timer Hilary Birmingham 3 +150903 8226 for its true-to-life characters , its sensitive acting , its unadorned view of rural life and the subtle direction of first-timer Hilary Birmingham 4 +150904 8226 its true-to-life characters , its sensitive acting , its unadorned view of rural life and the subtle direction of first-timer Hilary Birmingham 3 +150905 8226 its true-to-life characters , its sensitive acting , its unadorned view of rural life and 3 +150906 8226 its true-to-life characters , its sensitive acting , its unadorned view of rural life 4 +150907 8226 its true-to-life characters , its sensitive acting , 3 +150908 8226 its true-to-life characters , its sensitive acting 3 +150909 8226 its true-to-life characters , 3 +150910 8226 its true-to-life characters 2 +150911 8226 true-to-life characters 3 +150912 8226 true-to-life 2 +150913 8226 its sensitive acting 2 +150914 8226 sensitive acting 3 +150915 8226 its unadorned view of rural life 2 +150916 8226 its unadorned view 1 +150917 8226 unadorned view 2 +150918 8226 unadorned 1 +150919 8226 of rural life 2 +150920 8226 rural life 2 +150921 8226 rural 2 +150922 8226 the subtle direction of first-timer Hilary Birmingham 3 +150923 8226 the subtle direction 3 +150924 8226 subtle direction 1 +150925 8226 of first-timer Hilary Birmingham 2 +150926 8226 first-timer Hilary Birmingham 2 +150927 8226 Hilary Birmingham 2 +150928 8226 Hilary 3 +150929 8226 Birmingham 2 +150930 8227 Two badly interlocked stories drowned by all too clever complexity . 1 +150931 8227 badly interlocked stories drowned by all too clever complexity . 1 +150932 8227 interlocked stories drowned by all too clever complexity . 2 +150933 8227 interlocked stories drowned by all too clever complexity 1 +150934 8227 interlocked 2 +150935 8227 stories drowned by all too clever complexity 1 +150936 8227 drowned by all too clever complexity 2 +150937 8227 by all too clever complexity 2 +150938 8227 all too clever complexity 3 +150939 8227 too clever complexity 2 +150940 8228 - I also wanted a little alien as a friend ! 3 +150941 8228 I also wanted a little alien as a friend ! 3 +150942 8228 also wanted a little alien as a friend ! 3 +150943 8228 wanted a little alien as a friend ! 2 +150944 8228 wanted a little alien as a friend 2 +150945 8228 wanted a little alien 2 +150946 8228 a little alien 2 +150947 8228 little alien 1 +150948 8228 as a friend 3 +150949 8228 a friend 3 +150950 8229 It 's immensely ambitious , different than anything that 's been done before and amazingly successful in terms of what it 's trying to do . 4 +150951 8229 's immensely ambitious , different than anything that 's been done before and amazingly successful in terms of what it 's trying to do . 4 +150952 8229 's immensely ambitious , different than anything that 's been done before and amazingly successful in terms of what it 's trying to do 3 +150953 8229 immensely ambitious , different than anything that 's been done before and amazingly successful in terms of what it 's trying to do 4 +150954 8229 immensely ambitious , different than anything that 's been done before and amazingly successful 4 +150955 8229 immensely ambitious , different than anything that 's been done before and 3 +150956 8229 immensely ambitious , different than anything that 's been done before 3 +150957 8229 immensely ambitious , 3 +150958 8229 immensely ambitious 3 +150959 8229 different than anything that 's been done before 4 +150960 8229 than anything that 's been done before 3 +150961 8229 anything that 's been done before 2 +150962 8229 that 's been done before 1 +150963 8229 's been done before 1 +150964 8229 been done before 2 +150965 8229 done before 2 +150966 8229 amazingly successful 4 +150967 8229 in terms of what it 's trying to do 2 +150968 8229 terms of what it 's trying to do 2 +150969 8229 of what it 's trying to do 2 +150970 8229 what it 's trying to do 2 +150971 8229 it 's trying to do 2 +150972 8229 's trying to do 2 +150973 8229 trying to do 2 +150974 8230 Forget the misleading title , what 's with the unexplained baboon cameo ? 1 +150975 8230 Forget the misleading title 2 +150976 8230 the misleading title 1 +150977 8230 misleading title 2 +150978 8230 misleading 1 +150979 8230 , what 's with the unexplained baboon cameo ? 1 +150980 8230 what 's with the unexplained baboon cameo ? 2 +150981 8230 's with the unexplained baboon cameo ? 2 +150982 8230 's with the unexplained baboon cameo 1 +150983 8230 with the unexplained baboon cameo 1 +150984 8230 the unexplained baboon cameo 2 +150985 8230 unexplained baboon cameo 2 +150986 8230 unexplained 2 +150987 8230 baboon cameo 2 +150988 8230 baboon 2 +150989 8231 Though an important political documentary , this does not really make the case the Kissinger should be tried as a war criminal . 1 +150990 8231 Though an important political documentary 2 +150991 8231 an important political documentary 3 +150992 8231 important political documentary 3 +150993 8231 political documentary 2 +150994 8231 , this does not really make the case the Kissinger should be tried as a war criminal . 1 +150995 8231 this does not really make the case the Kissinger should be tried as a war criminal . 1 +150996 8231 does not really make the case the Kissinger should be tried as a war criminal . 1 +150997 8231 does not really make the case the Kissinger should be tried as a war criminal 1 +150998 8231 does not really 1 +150999 8231 make the case the Kissinger should be tried as a war criminal 2 +151000 8231 the case the Kissinger should be tried as a war criminal 2 +151001 8231 the Kissinger should be tried as a war criminal 2 +151002 8231 the Kissinger 2 +151003 8231 should be tried as a war criminal 1 +151004 8231 be tried as a war criminal 1 +151005 8231 tried as a war criminal 1 +151006 8231 as a war criminal 2 +151007 8231 a war criminal 2 +151008 8231 war criminal 2 +151009 8232 Not everyone will welcome or accept The Trials of Henry Kissinger as faithful portraiture , but few can argue that the debate it joins is a necessary and timely one . 3 +151010 8232 Not everyone will welcome or accept The Trials of Henry Kissinger as faithful portraiture , but few can argue that the debate it joins is a necessary and timely one 2 +151011 8232 Not everyone will welcome or accept The Trials of Henry Kissinger as faithful portraiture , but 1 +151012 8232 Not everyone will welcome or accept The Trials of Henry Kissinger as faithful portraiture , 1 +151013 8232 Not everyone will welcome or accept The Trials of Henry Kissinger as faithful portraiture 2 +151014 8232 will welcome or accept The Trials of Henry Kissinger as faithful portraiture 3 +151015 8232 welcome or accept The Trials of Henry Kissinger as faithful portraiture 3 +151016 8232 welcome or accept The Trials of Henry Kissinger 2 +151017 8232 welcome or accept 2 +151018 8232 welcome or 2 +151019 8232 as faithful portraiture 4 +151020 8232 faithful portraiture 3 +151021 8232 portraiture 2 +151022 8232 few can argue that the debate it joins is a necessary and timely one 2 +151023 8232 can argue that the debate it joins is a necessary and timely one 3 +151024 8232 argue that the debate it joins is a necessary and timely one 2 +151025 8232 that the debate it joins is a necessary and timely one 3 +151026 8232 the debate it joins is a necessary and timely one 3 +151027 8232 the debate it joins 2 +151028 8232 the debate 2 +151029 8232 it joins 2 +151030 8232 is a necessary and timely one 2 +151031 8232 a necessary and timely one 3 +151032 8232 necessary and timely one 3 +151033 8232 necessary and timely 3 +151034 8232 necessary and 2 +151035 8233 It 's always disappointing when a documentary fails to live up to -- or offer any new insight into -- its chosen topic . 0 +151036 8233 's always disappointing when a documentary fails to live up to -- or offer any new insight into -- its chosen topic . 0 +151037 8233 's always disappointing when a documentary fails to live up to -- or offer any new insight into -- its chosen topic 0 +151038 8233 's always disappointing 0 +151039 8233 when a documentary fails to live up to -- or offer any new insight into -- its chosen topic 0 +151040 8233 a documentary fails to live up to -- or offer any new insight into -- its chosen topic 0 +151041 8233 fails to live up to -- or offer any new insight into -- its chosen topic 1 +151042 8233 to live up to -- or offer any new insight into -- its chosen topic 1 +151043 8233 live up to -- or offer any new insight into -- its chosen topic 2 +151044 8233 live up to -- or offer any new insight into -- 2 +151045 8233 live up to 2 +151046 8233 -- or offer any new insight into -- 2 +151047 8233 -- or offer any new insight into 2 +151048 8233 offer any new insight into 2 +151049 8233 offer any new insight 3 +151050 8233 any new insight 2 +151051 8233 its chosen topic 1 +151052 8233 chosen topic 2 +151053 8234 A frustrating ` tweener ' -- too slick , contrived and exploitative for the art houses and too cynical , small and decadent for the malls . 0 +151054 8234 A frustrating ` tweener ' -- too slick , 1 +151055 8234 A frustrating ` tweener ' -- too slick 1 +151056 8234 A frustrating ` tweener ' -- 0 +151057 8234 A frustrating ` tweener ' 1 +151058 8234 frustrating ` tweener ' 1 +151059 8234 ` tweener ' 2 +151060 8234 tweener ' 2 +151061 8234 tweener 2 +151062 8234 too slick 2 +151063 8234 contrived and exploitative for the art houses and too cynical , small and decadent for the malls . 1 +151064 8234 contrived and exploitative for the art houses and too cynical , small and decadent for the malls 1 +151065 8234 exploitative for the art houses and too cynical , small and decadent for the malls 2 +151066 8234 exploitative for the art houses and too cynical , small and decadent 2 +151067 8234 exploitative for the art houses and too cynical , small and 1 +151068 8234 exploitative for the art houses and too cynical , small 1 +151069 8234 exploitative for the art houses and too cynical , 1 +151070 8234 exploitative for the art houses and too cynical 1 +151071 8234 exploitative for the art houses and 1 +151072 8234 exploitative for the art houses 2 +151073 8234 for the art houses 2 +151074 8234 the art houses 2 +151075 8234 art houses 2 +151076 8234 too cynical 1 +151077 8234 for the malls 2 +151078 8234 the malls 2 +151079 8234 malls 2 +151080 8235 Muddled , simplistic and more than a little pretentious . 0 +151081 8235 Muddled , simplistic and more than a little pretentious 1 +151082 8235 simplistic and more than a little pretentious 1 +151083 8235 simplistic and 2 +151084 8235 more than a little pretentious 1 +151085 8235 more than a little 2 +151086 8235 than a little 2 +151087 8236 The Mothman Prophecies is best when illustrating the demons bedevilling the modern masculine journey . 3 +151088 8236 is best when illustrating the demons bedevilling the modern masculine journey . 3 +151089 8236 is best when illustrating the demons bedevilling the modern masculine journey 2 +151090 8236 best when illustrating the demons bedevilling the modern masculine journey 2 +151091 8236 when illustrating the demons bedevilling the modern masculine journey 2 +151092 8236 illustrating the demons bedevilling the modern masculine journey 1 +151093 8236 illustrating the demons 2 +151094 8236 bedevilling the modern masculine journey 2 +151095 8236 bedevilling 2 +151096 8236 the modern masculine journey 3 +151097 8236 modern masculine journey 3 +151098 8236 masculine journey 2 +151099 8237 An oddity , to be sure , but one that you might wind up remembering with a degree of affection rather than revulsion . 3 +151100 8237 An oddity , to be sure , but one that you might wind up remembering with a degree of affection rather than revulsion 3 +151101 8237 An oddity , to be sure , but one 2 +151102 8237 An oddity 2 +151103 8237 , to be sure , but one 2 +151104 8237 to be sure , but one 2 +151105 8237 be sure , but one 2 +151106 8237 be sure , 2 +151107 8237 but one 2 +151108 8237 that you might wind up remembering with a degree of affection rather than revulsion 2 +151109 8237 you might wind up remembering with a degree of affection rather than revulsion 3 +151110 8237 might wind up remembering with a degree of affection rather than revulsion 2 +151111 8237 wind up remembering with a degree of affection rather than revulsion 4 +151112 8237 remembering with a degree of affection rather than revulsion 2 +151113 8237 with a degree of affection rather than revulsion 2 +151114 8237 a degree of affection rather than revulsion 3 +151115 8237 a degree of affection rather than 3 +151116 8237 a degree of affection 2 +151117 8238 Although bright , well-acted and thought-provoking , Tuck Everlasting suffers from a laconic pace and a lack of traditional action . 2 +151118 8238 Although bright , well-acted and thought-provoking 3 +151119 8238 bright , well-acted and thought-provoking 4 +151120 8238 , well-acted and thought-provoking 4 +151121 8238 well-acted and thought-provoking 4 +151122 8238 , Tuck Everlasting suffers from a laconic pace and a lack of traditional action . 2 +151123 8238 Tuck Everlasting suffers from a laconic pace and a lack of traditional action . 2 +151124 8238 suffers from a laconic pace and a lack of traditional action . 0 +151125 8238 suffers from a laconic pace and a lack of traditional action 1 +151126 8238 from a laconic pace and a lack of traditional action 2 +151127 8238 a laconic pace and a lack of traditional action 1 +151128 8238 a laconic pace and 1 +151129 8238 a laconic pace 1 +151130 8238 laconic pace 1 +151131 8238 a lack of traditional action 1 +151132 8238 of traditional action 2 +151133 8238 traditional action 2 +151134 8239 Feel free to go get popcorn whenever he 's not onscreen . 0 +151135 8239 free to go get popcorn whenever he 's not onscreen . 2 +151136 8239 free to go get popcorn whenever he 's not onscreen 1 +151137 8239 to go get popcorn whenever he 's not onscreen 2 +151138 8239 go get popcorn whenever he 's not onscreen 2 +151139 8239 get popcorn whenever he 's not onscreen 1 +151140 8239 get popcorn 2 +151141 8239 whenever he 's not onscreen 2 +151142 8239 he 's not onscreen 2 +151143 8239 's not onscreen 2 +151144 8240 The very simple story seems too simple and the working out of the plot almost arbitrary . 0 +151145 8240 The very simple story 2 +151146 8240 very simple story 2 +151147 8240 very simple 2 +151148 8240 seems too simple and the working out of the plot almost arbitrary . 1 +151149 8240 seems too simple and the working out of the plot almost arbitrary 1 +151150 8240 too simple and the working out of the plot almost arbitrary 1 +151151 8240 too simple and 1 +151152 8240 too simple 1 +151153 8240 the working out of the plot almost arbitrary 1 +151154 8240 the working out 2 +151155 8240 the working 3 +151156 8240 of the plot almost arbitrary 2 +151157 8240 the plot almost arbitrary 1 +151158 8240 almost arbitrary 2 +151159 8241 -LRB- Allen -RRB- manages to breathe life into this somewhat tired premise . 3 +151160 8241 -LRB- Allen -RRB- 3 +151161 8241 Allen -RRB- 2 +151162 8241 manages to breathe life into this somewhat tired premise . 3 +151163 8241 manages to breathe life into this somewhat tired premise 2 +151164 8241 to breathe life into this somewhat tired premise 2 +151165 8241 breathe life into this somewhat tired premise 3 +151166 8241 breathe life 3 +151167 8241 into this somewhat tired premise 1 +151168 8241 this somewhat tired premise 1 +151169 8241 somewhat tired premise 1 +151170 8241 somewhat tired 1 +151171 8242 After a while , Hoffman 's quirks and mannerisms , particularly his penchant for tearing up on cue -- things that seem so real in small doses -- become annoying and artificial . 1 +151172 8242 , Hoffman 's quirks and mannerisms , particularly his penchant for tearing up on cue -- things that seem so real in small doses -- become annoying and artificial . 1 +151173 8242 Hoffman 's quirks and mannerisms , particularly his penchant for tearing up on cue -- things that seem so real in small doses -- become annoying and artificial . 0 +151174 8242 Hoffman 's quirks and mannerisms , particularly his penchant for tearing up on cue -- things that seem so real in small doses -- 3 +151175 8242 Hoffman 's quirks and mannerisms , particularly his penchant for tearing up on cue -- things that seem so real in small doses 2 +151176 8242 Hoffman 's quirks and mannerisms , 2 +151177 8242 Hoffman 's quirks and mannerisms 2 +151178 8242 quirks and mannerisms 2 +151179 8242 particularly his penchant for tearing up on cue -- things that seem so real in small doses 2 +151180 8242 his penchant for tearing up on cue -- things that seem so real in small doses 4 +151181 8242 his penchant for tearing up on cue -- 3 +151182 8242 his penchant for tearing up on cue 2 +151183 8242 for tearing up on cue 2 +151184 8242 tearing up on cue 2 +151185 8242 tearing up 2 +151186 8242 on cue 3 +151187 8242 cue 2 +151188 8242 things that seem so real in small doses 2 +151189 8242 that seem so real in small doses 3 +151190 8242 seem so real in small doses 3 +151191 8242 seem so real 3 +151192 8242 in small doses 2 +151193 8242 small doses 2 +151194 8242 become annoying and artificial . 2 +151195 8242 become annoying and artificial 0 +151196 8242 annoying and artificial 0 +151197 8242 annoying and 1 +151198 8243 There are flaws , but also stretches of impact and moments of awe ; we 're wrapped up in the characters , how they make their choices , and why . 3 +151199 8243 There are flaws , but also stretches of impact and moments of awe ; we 're wrapped up in the characters , how they make their choices , and why 3 +151200 8243 There are flaws , but also stretches of impact and moments of awe ; 3 +151201 8243 There are flaws , but also stretches of impact and moments of awe 3 +151202 8243 are flaws , but also stretches of impact and moments of awe 2 +151203 8243 flaws , but also stretches of impact and moments of awe 2 +151204 8243 flaws , but also 1 +151205 8243 flaws , 1 +151206 8243 stretches of impact and moments of awe 4 +151207 8243 stretches of impact and moments 3 +151208 8243 of impact and moments 3 +151209 8243 impact and moments 2 +151210 8243 impact and 2 +151211 8243 of awe 3 +151212 8243 we 're wrapped up in the characters , how they make their choices , and why 3 +151213 8243 're wrapped up in the characters , how they make their choices , and why 3 +151214 8243 wrapped up in the characters , how they make their choices , and why 3 +151215 8243 wrapped up in the characters , 2 +151216 8243 wrapped up in the characters 3 +151217 8243 in the characters 2 +151218 8243 how they make their choices , and why 2 +151219 8243 how they make their choices , and 3 +151220 8243 how they make their choices , 2 +151221 8243 how they make their choices 2 +151222 8243 they make their choices 2 +151223 8243 make their choices 2 +151224 8243 their choices 2 +151225 8244 Who cares ? -RRB- . 1 +151226 8244 Who cares 2 +151227 8244 -RRB- . 2 +151228 8245 While general audiences might not come away with a greater knowledge of the facts of Cuban music , they 'll be treated to an impressive and highly entertaining celebration of its sounds . 4 +151229 8245 While general audiences might not come away with a greater knowledge of the facts of Cuban music 2 +151230 8245 general audiences might not come away with a greater knowledge of the facts of Cuban music 1 +151231 8245 general audiences 2 +151232 8245 might not come away with a greater knowledge of the facts of Cuban music 2 +151233 8245 come away with a greater knowledge of the facts of Cuban music 4 +151234 8245 with a greater knowledge of the facts of Cuban music 2 +151235 8245 a greater knowledge of the facts of Cuban music 2 +151236 8245 a greater knowledge 3 +151237 8245 greater knowledge 2 +151238 8245 of the facts of Cuban music 2 +151239 8245 the facts of Cuban music 2 +151240 8245 the facts 2 +151241 8245 facts 2 +151242 8245 , they 'll be treated to an impressive and highly entertaining celebration of its sounds . 3 +151243 8245 they 'll be treated to an impressive and highly entertaining celebration of its sounds . 3 +151244 8245 'll be treated to an impressive and highly entertaining celebration of its sounds . 3 +151245 8245 'll be treated to an impressive and highly entertaining celebration of its sounds 3 +151246 8245 be treated to an impressive and highly entertaining celebration of its sounds 4 +151247 8245 treated to an impressive and highly entertaining celebration of its sounds 3 +151248 8245 to an impressive and highly entertaining celebration of its sounds 4 +151249 8245 an impressive and highly entertaining celebration of its sounds 4 +151250 8245 an impressive and highly entertaining celebration 4 +151251 8245 impressive and highly entertaining celebration 3 +151252 8245 impressive and highly entertaining 4 +151253 8245 highly entertaining 4 +151254 8245 of its sounds 2 +151255 8245 its sounds 2 +151256 8246 Exploitative and largely devoid of the depth or sophistication that would make watching such a graphic treatment of the crimes bearable . 1 +151257 8246 Exploitative and largely devoid of the depth or sophistication that would make watching such a graphic treatment of the crimes bearable 0 +151258 8246 Exploitative and largely devoid 1 +151259 8246 Exploitative and 1 +151260 8246 largely devoid 1 +151261 8246 of the depth or sophistication that would make watching such a graphic treatment of the crimes bearable 2 +151262 8246 the depth or sophistication that would make watching such a graphic treatment of the crimes bearable 2 +151263 8246 the depth or sophistication 2 +151264 8246 depth or sophistication 2 +151265 8246 that would make watching such a graphic treatment of the crimes bearable 1 +151266 8246 would make watching such a graphic treatment of the crimes bearable 2 +151267 8246 make watching such a graphic treatment of the crimes bearable 3 +151268 8246 watching such a graphic treatment of the crimes bearable 2 +151269 8246 such a graphic treatment of the crimes bearable 2 +151270 8246 such a graphic treatment of the crimes 3 +151271 8246 such a graphic treatment 2 +151272 8246 a graphic treatment 2 +151273 8246 graphic treatment 3 +151274 8246 of the crimes 2 +151275 8246 the crimes 2 +151276 8247 A sentimental but entirely irresistible portrait of three aging sisters . 3 +151277 8247 A sentimental but entirely irresistible portrait of three aging sisters 4 +151278 8247 A sentimental but entirely irresistible portrait of three 3 +151279 8247 A sentimental but entirely irresistible portrait 4 +151280 8247 sentimental but entirely irresistible portrait 3 +151281 8247 sentimental but entirely irresistible 3 +151282 8247 sentimental but 2 +151283 8247 entirely irresistible 3 +151284 8247 of three 3 +151285 8247 aging sisters 2 +151286 8248 A typically observant , carefully nuanced and intimate French coming-of-age film that is an encouraging debut feature but has a needlessly downbeat ending that is too heavy for all that has preceded it . 2 +151287 8248 A typically observant , carefully nuanced and intimate French coming-of-age film that is an encouraging debut feature but has a needlessly downbeat ending that 3 +151288 8248 typically observant , carefully nuanced and intimate French coming-of-age film that is an encouraging debut feature but has a needlessly downbeat ending that 3 +151289 8248 typically observant , carefully nuanced and intimate French 2 +151290 8248 typically observant , carefully nuanced and 3 +151291 8248 typically observant , carefully nuanced 3 +151292 8248 typically observant , 3 +151293 8248 typically observant 2 +151294 8248 typically 2 +151295 8248 carefully nuanced 3 +151296 8248 intimate French 2 +151297 8248 coming-of-age film that is an encouraging debut feature but has a needlessly downbeat ending that 2 +151298 8248 film that is an encouraging debut feature but has a needlessly downbeat ending that 2 +151299 8248 that is an encouraging debut feature but has a needlessly downbeat ending that 2 +151300 8248 is an encouraging debut feature but has a needlessly downbeat ending that 3 +151301 8248 is an encouraging debut feature but 3 +151302 8248 is an encouraging debut feature 3 +151303 8248 an encouraging debut feature 3 +151304 8248 encouraging debut feature 3 +151305 8248 has a needlessly downbeat ending that 1 +151306 8248 has a needlessly downbeat 1 +151307 8248 a needlessly downbeat 1 +151308 8248 a needlessly 2 +151309 8248 ending that 2 +151310 8248 is too heavy for all that has preceded it . 1 +151311 8248 is too heavy for all that has preceded it 1 +151312 8248 too heavy for all that has preceded it 2 +151313 8248 heavy for all that has preceded it 3 +151314 8248 for all that has preceded it 2 +151315 8248 all that has preceded it 2 +151316 8248 that has preceded it 2 +151317 8248 has preceded it 2 +151318 8249 Good , solid storytelling . 4 +151319 8249 , solid storytelling . 3 +151320 8249 solid storytelling . 3 +151321 8249 storytelling . 2 +151322 8250 As gory as the scenes of torture and self-mutilation may be , they are pitted against shimmering cinematography that lends the setting the ethereal beauty of an Asian landscape painting . 4 +151323 8250 As gory as the scenes of torture and self-mutilation may be 2 +151324 8250 gory as the scenes of torture and self-mutilation may be 1 +151325 8250 gory as the scenes of torture and self-mutilation 1 +151326 8250 as the scenes of torture and self-mutilation 1 +151327 8250 the scenes of torture and self-mutilation 1 +151328 8250 of torture and self-mutilation 1 +151329 8250 torture and self-mutilation 0 +151330 8250 torture and 1 +151331 8250 self-mutilation 2 +151332 8250 , they are pitted against shimmering cinematography that lends the setting the ethereal beauty of an Asian landscape painting . 4 +151333 8250 they are pitted against shimmering cinematography that lends the setting the ethereal beauty of an Asian landscape painting . 4 +151334 8250 are pitted against shimmering cinematography that lends the setting the ethereal beauty of an Asian landscape painting . 4 +151335 8250 are pitted against shimmering cinematography that lends the setting the ethereal beauty of an Asian landscape painting 4 +151336 8250 pitted against shimmering cinematography that lends the setting the ethereal beauty of an Asian landscape painting 3 +151337 8250 pitted 2 +151338 8250 against shimmering cinematography that lends the setting the ethereal beauty of an Asian landscape painting 3 +151339 8250 shimmering cinematography that lends the setting the ethereal beauty of an Asian landscape painting 4 +151340 8250 shimmering cinematography 4 +151341 8250 that lends the setting the ethereal beauty of an Asian landscape painting 3 +151342 8250 lends the setting the ethereal beauty of an Asian landscape painting 3 +151343 8250 lends the setting 2 +151344 8250 the ethereal beauty of an Asian landscape painting 3 +151345 8250 the ethereal beauty 4 +151346 8250 ethereal beauty 3 +151347 8250 of an Asian landscape painting 2 +151348 8250 an Asian landscape painting 3 +151349 8250 Asian landscape painting 2 +151350 8250 landscape painting 2 +151351 8251 We 're drawn in by the dark luster . 3 +151352 8251 're drawn in by the dark luster . 2 +151353 8251 're drawn in by the dark luster 3 +151354 8251 drawn in by the dark luster 2 +151355 8251 in by the dark luster 2 +151356 8251 by the dark luster 2 +151357 8251 the dark luster 2 +151358 8251 dark luster 2 +151359 8252 A pleasant , if forgettable , romp of a film . 2 +151360 8252 A pleasant , if forgettable , 2 +151361 8252 A pleasant , if forgettable 2 +151362 8252 A pleasant , 3 +151363 8252 A pleasant 3 +151364 8252 if forgettable 1 +151365 8253 A classic fairy tale that perfectly captures the wonders and worries of childhood in a way that few movies have ever approached . 4 +151366 8253 A classic fairy tale that perfectly captures the wonders and worries of childhood in a way that few movies have ever approached 4 +151367 8253 A classic fairy tale that perfectly captures the wonders and worries of childhood 4 +151368 8253 A classic fairy tale 3 +151369 8253 classic fairy tale 3 +151370 8253 that perfectly captures the wonders and worries of childhood 3 +151371 8253 perfectly captures the wonders and worries of childhood 4 +151372 8253 captures the wonders and worries of childhood 4 +151373 8253 the wonders and worries of childhood 2 +151374 8253 the wonders and worries 2 +151375 8253 wonders and worries 2 +151376 8253 wonders and 2 +151377 8253 of childhood 2 +151378 8253 in a way that few movies have ever approached 2 +151379 8253 a way that few movies have ever approached 3 +151380 8253 that few movies have ever approached 3 +151381 8253 few movies have ever approached 3 +151382 8253 have ever approached 2 +151383 8254 Congrats Disney on a job well done , I enjoyed it just as much ! 4 +151384 8254 Congrats Disney on a job well done 4 +151385 8254 Congrats Disney on a job 3 +151386 8254 Congrats Disney 4 +151387 8254 Congrats 2 +151388 8254 on a job 2 +151389 8254 , I enjoyed it just as much ! 3 +151390 8254 I enjoyed it just as much ! 4 +151391 8254 enjoyed it just as much ! 4 +151392 8254 enjoyed it just as much 4 +151393 8254 enjoyed it just 3 +151394 8255 Some movies can get by without being funny simply by structuring the scenes as if they were jokes : a setup , delivery and payoff . 2 +151395 8255 can get by without being funny simply by structuring the scenes as if they were jokes : a setup , delivery and payoff . 1 +151396 8255 can get by without being funny simply by structuring the scenes as if they were jokes : a setup , delivery and payoff 2 +151397 8255 get by without being funny simply by structuring the scenes as if they were jokes : a setup , delivery and payoff 1 +151398 8255 by without being funny simply by structuring the scenes as if they were jokes : a setup , delivery and payoff 2 +151399 8255 without being funny simply by structuring the scenes as if they were jokes : a setup , delivery and payoff 3 +151400 8255 being funny simply by structuring the scenes as if they were jokes : a setup , delivery and payoff 3 +151401 8255 being funny 3 +151402 8255 simply by structuring the scenes as if they were jokes : a setup , delivery and payoff 2 +151403 8255 by structuring the scenes as if they were jokes : a setup , delivery and payoff 2 +151404 8255 structuring the scenes as if they were jokes : a setup , delivery and payoff 2 +151405 8255 structuring the scenes 2 +151406 8255 structuring 2 +151407 8255 as if they were jokes : a setup , delivery and payoff 3 +151408 8255 if they were jokes : a setup , delivery and payoff 2 +151409 8255 they were jokes : a setup , delivery and payoff 3 +151410 8255 were jokes : a setup , delivery and payoff 2 +151411 8255 jokes : a setup , delivery and payoff 3 +151412 8255 jokes : 2 +151413 8255 a setup , delivery and payoff 2 +151414 8255 setup , delivery and payoff 2 +151415 8255 , delivery and payoff 3 +151416 8255 delivery and payoff 2 +151417 8255 delivery and 2 +151418 8256 Big time . 2 +151419 8256 time . 2 +151420 8257 I wish it would have just gone more over-the-top instead of trying to have it both ways . 1 +151421 8257 wish it would have just gone more over-the-top instead of trying to have it both ways . 1 +151422 8257 wish it would have just gone more over-the-top instead of trying to have it both ways 1 +151423 8257 it would have just gone more over-the-top instead of trying to have it both ways 1 +151424 8257 would have just gone more over-the-top instead of trying to have it both ways 1 +151425 8257 have just gone more over-the-top instead of trying to have it both ways 2 +151426 8257 have just 2 +151427 8257 gone more over-the-top instead of trying to have it both ways 1 +151428 8257 gone more over-the-top 2 +151429 8257 more over-the-top 2 +151430 8257 instead of trying to have it both ways 2 +151431 8257 of trying to have it both ways 2 +151432 8257 trying to have it both ways 1 +151433 8257 to have it both ways 2 +151434 8257 have it both ways 2 +151435 8257 it both ways 2 +151436 8257 both ways 2 +151437 8258 It just does n't have anything really interesting to say . 1 +151438 8258 just does n't have anything really interesting to say . 1 +151439 8258 does n't have anything really interesting to say . 0 +151440 8258 does n't have anything really interesting to say 1 +151441 8258 have anything really interesting to say 2 +151442 8258 anything really interesting to say 2 +151443 8258 really interesting to say 2 +151444 8258 really interesting 2 +151445 8259 ... would be a total loss if not for two supporting performances taking place at the movie 's edges . 2 +151446 8259 would be a total loss if not for two supporting performances taking place at the movie 's edges . 2 +151447 8259 would be a total loss if not for two supporting performances taking place at the movie 's edges 2 +151448 8259 be a total loss if not for two supporting performances taking place at the movie 's edges 2 +151449 8259 be a total loss 1 +151450 8259 a total loss 0 +151451 8259 total loss 1 +151452 8259 if not for two supporting performances taking place at the movie 's edges 2 +151453 8259 for two supporting performances taking place at the movie 's edges 2 +151454 8259 two supporting performances taking place at the movie 's edges 2 +151455 8259 two supporting performances 2 +151456 8259 supporting performances 2 +151457 8259 taking place at the movie 's edges 2 +151458 8259 taking place 3 +151459 8259 at the movie 's edges 2 +151460 8259 the movie 's edges 2 +151461 8260 Cox is far more concerned with aggrandizing madness , not the man , and the results might drive you crazy . 2 +151462 8260 Cox is far more concerned with aggrandizing madness , not the man , and the results might drive you crazy 1 +151463 8260 Cox is far more concerned with aggrandizing madness , not the man , and 1 +151464 8260 Cox is far more concerned with aggrandizing madness , not the man , 1 +151465 8260 Cox is far more concerned with aggrandizing madness , not the man 2 +151466 8260 is far more concerned with aggrandizing madness , not the man 2 +151467 8260 far more concerned with aggrandizing madness , not the man 2 +151468 8260 concerned with aggrandizing madness , not the man 3 +151469 8260 with aggrandizing madness , not the man 2 +151470 8260 aggrandizing madness , not the man 2 +151471 8260 aggrandizing 3 +151472 8260 madness , not the man 2 +151473 8260 madness , not 2 +151474 8260 madness , 2 +151475 8260 the results might drive you crazy 2 +151476 8260 might drive you crazy 1 +151477 8260 drive you crazy 2 +151478 8260 you crazy 2 +151479 8261 A rather brilliant little cult item : a pastiche of children 's entertainment , superhero comics , and Japanese animation . 3 +151480 8261 A rather brilliant little cult item : a pastiche of children 's entertainment , superhero comics , and Japanese animation 3 +151481 8261 A rather brilliant little cult item : 4 +151482 8261 A rather brilliant little cult item 4 +151483 8261 rather brilliant little cult item 3 +151484 8261 rather brilliant 4 +151485 8261 little cult item 2 +151486 8261 cult item 2 +151487 8261 item 2 +151488 8261 a pastiche of children 's entertainment , superhero comics , and Japanese animation 3 +151489 8261 a pastiche 2 +151490 8261 of children 's entertainment , superhero comics , and Japanese animation 2 +151491 8261 children 's entertainment , superhero comics , and Japanese animation 3 +151492 8261 children 's entertainment , superhero comics , and 2 +151493 8261 children 's entertainment , superhero comics , 3 +151494 8261 children 's entertainment , superhero comics 3 +151495 8261 children 's entertainment , 2 +151496 8261 children 's entertainment 2 +151497 8261 superhero comics 2 +151498 8262 Oozes condescension from every pore . 2 +151499 8262 condescension from every pore . 0 +151500 8262 condescension from every pore 2 +151501 8263 Clumsy , obvious , preposterous , the movie will likely set the cause of woman warriors back decades . 0 +151502 8263 , obvious , preposterous , the movie will likely set the cause of woman warriors back decades . 1 +151503 8263 obvious , preposterous , the movie will likely set the cause of woman warriors back decades . 0 +151504 8263 , preposterous , the movie will likely set the cause of woman warriors back decades . 0 +151505 8263 preposterous , the movie will likely set the cause of woman warriors back decades . 0 +151506 8263 , the movie will likely set the cause of woman warriors back decades . 1 +151507 8263 the movie will likely set the cause of woman warriors back decades . 1 +151508 8263 will likely set the cause of woman warriors back decades . 1 +151509 8263 will likely set the cause of woman warriors back decades 1 +151510 8263 set the cause of woman warriors back decades 1 +151511 8263 set the cause of woman warriors 2 +151512 8263 the cause of woman warriors 2 +151513 8263 the cause 2 +151514 8263 of woman warriors 2 +151515 8263 woman warriors 2 +151516 8263 back decades 2 +151517 8264 The result is an ` action film ' mired in stasis . 1 +151518 8264 is an ` action film ' mired in stasis . 3 +151519 8264 is an ` action film ' mired in stasis 1 +151520 8264 an ` action film ' mired in stasis 1 +151521 8264 an ` action film ' 3 +151522 8264 ` action film ' 2 +151523 8264 action film ' 2 +151524 8264 mired in stasis 1 +151525 8265 Hollywood has taken quite a nosedive from Alfred Hitchcock 's imaginative flight to Shyamalan 's self-important summer fluff . 1 +151526 8265 has taken quite a nosedive from Alfred Hitchcock 's imaginative flight to Shyamalan 's self-important summer fluff . 1 +151527 8265 has taken quite a nosedive from Alfred Hitchcock 's imaginative flight to Shyamalan 's self-important summer fluff 0 +151528 8265 taken quite a nosedive from Alfred Hitchcock 's imaginative flight to Shyamalan 's self-important summer fluff 0 +151529 8265 taken quite a nosedive from Alfred Hitchcock 's imaginative flight 1 +151530 8265 quite a nosedive from Alfred Hitchcock 's imaginative flight 2 +151531 8265 quite a nosedive 0 +151532 8265 a nosedive 2 +151533 8265 nosedive 1 +151534 8265 from Alfred Hitchcock 's imaginative flight 2 +151535 8265 Alfred Hitchcock 's imaginative flight 3 +151536 8265 imaginative flight 3 +151537 8265 to Shyamalan 's self-important summer fluff 1 +151538 8265 Shyamalan 's self-important summer fluff 2 +151539 8265 self-important summer fluff 1 +151540 8265 summer fluff 1 +151541 8266 Takes a simple premise and carries it to unexpected heights . 4 +151542 8266 Takes a simple premise and carries it to unexpected heights 4 +151543 8266 Takes a simple premise and 2 +151544 8266 Takes a simple premise 2 +151545 8266 a simple premise 1 +151546 8266 simple premise 2 +151547 8266 carries it to unexpected heights 3 +151548 8266 carries it 2 +151549 8266 to unexpected heights 3 +151550 8266 unexpected heights 3 +151551 8267 It 's lost the politics and the social observation and become just another situation romance about a couple of saps stuck in an inarticulate screenplay . 1 +151552 8267 's lost the politics and the social observation and become just another situation romance about a couple of saps stuck in an inarticulate screenplay . 1 +151553 8267 's lost the politics and the social observation and become just another situation romance about a couple of saps stuck in an inarticulate screenplay 1 +151554 8267 lost the politics and the social observation and become just another situation romance about a couple of saps stuck in an inarticulate screenplay 1 +151555 8267 lost the politics and the social observation and 2 +151556 8267 lost the politics and the social observation 1 +151557 8267 the politics and the social observation 2 +151558 8267 the politics and 2 +151559 8267 the social observation 2 +151560 8267 social observation 2 +151561 8267 become just another situation romance about a couple of saps stuck in an inarticulate screenplay 0 +151562 8267 become just another situation romance 2 +151563 8267 just another situation romance 1 +151564 8267 another situation romance 2 +151565 8267 situation romance 2 +151566 8267 about a couple of saps stuck in an inarticulate screenplay 0 +151567 8267 a couple of saps stuck in an inarticulate screenplay 0 +151568 8267 of saps stuck in an inarticulate screenplay 1 +151569 8267 saps stuck in an inarticulate screenplay 1 +151570 8267 saps 2 +151571 8267 stuck in an inarticulate screenplay 0 +151572 8267 in an inarticulate screenplay 1 +151573 8267 an inarticulate screenplay 1 +151574 8267 inarticulate screenplay 2 +151575 8267 inarticulate 1 +151576 8268 The film 's plot may be shallow , but you 've never seen the deep like you see it in these harrowing surf shots . 3 +151577 8268 The film 's plot may be shallow , but you 've never seen the deep like you see it in these harrowing surf shots 3 +151578 8268 The film 's plot may be shallow , but 1 +151579 8268 The film 's plot may be shallow , 1 +151580 8268 The film 's plot may be shallow 1 +151581 8268 The film 's plot 2 +151582 8268 may be shallow 1 +151583 8268 be shallow 1 +151584 8268 you 've never seen the deep like you see it in these harrowing surf shots 3 +151585 8268 've never seen the deep like you see it in these harrowing surf shots 3 +151586 8268 seen the deep like you see it in these harrowing surf shots 3 +151587 8268 seen the deep 2 +151588 8268 the deep 2 +151589 8268 like you see it in these harrowing surf shots 2 +151590 8268 you see it in these harrowing surf shots 3 +151591 8268 see it in these harrowing surf shots 2 +151592 8268 in these harrowing surf shots 2 +151593 8268 these harrowing surf shots 2 +151594 8268 harrowing surf shots 2 +151595 8269 This is a movie where the most notable observation is how long you 've been sitting still . 1 +151596 8269 is a movie where the most notable observation is how long you 've been sitting still . 0 +151597 8269 is a movie where the most notable observation is how long you 've been sitting still 1 +151598 8269 a movie where the most notable observation is how long you 've been sitting still 0 +151599 8269 where the most notable observation is how long you 've been sitting still 0 +151600 8269 the most notable observation is how long you 've been sitting still 1 +151601 8269 the most notable observation 2 +151602 8269 most notable observation 2 +151603 8269 most notable 3 +151604 8269 is how long you 've been sitting still 2 +151605 8269 how long you 've been sitting still 2 +151606 8269 you 've been sitting still 2 +151607 8269 've been sitting still 2 +151608 8269 been sitting still 2 +151609 8269 sitting still 2 +151610 8270 The film is hard to dismiss -- moody , thoughtful , and lit by flashes of mordant humor . 3 +151611 8270 is hard to dismiss -- moody , thoughtful , and lit by flashes of mordant humor . 3 +151612 8270 is hard to dismiss -- moody , thoughtful , and lit by flashes of mordant humor 3 +151613 8270 is hard to dismiss -- moody , thoughtful , and 3 +151614 8270 is hard to dismiss -- moody , thoughtful , 3 +151615 8270 is hard to dismiss -- moody , thoughtful 3 +151616 8270 hard to dismiss -- moody , thoughtful 3 +151617 8270 to dismiss -- moody , thoughtful 2 +151618 8270 dismiss -- moody , thoughtful 2 +151619 8270 dismiss -- moody , 1 +151620 8270 dismiss -- moody 1 +151621 8270 dismiss -- 1 +151622 8270 lit by flashes of mordant humor 2 +151623 8270 by flashes of mordant humor 3 +151624 8270 flashes of mordant humor 3 +151625 8270 of mordant humor 2 +151626 8270 mordant humor 2 +151627 8270 mordant 2 +151628 8271 If Jews were Catholics , this would be Catechism 2 +151629 8271 If Jews were Catholics 2 +151630 8271 Jews were Catholics 2 +151631 8271 were Catholics 2 +151632 8271 Catholics 2 +151633 8271 , this would be Catechism 2 +151634 8271 this would be Catechism 1 +151635 8271 would be Catechism 2 +151636 8271 be Catechism 2 +151637 8271 Catechism 2 +151638 8272 Hard , endearing , caring , warm . 4 +151639 8272 Hard , endearing , caring , 3 +151640 8272 Hard , endearing , caring 3 +151641 8272 Hard , 2 +151642 8272 endearing , caring 3 +151643 8272 , caring 3 +151644 8272 warm . 3 +151645 8273 Shanghai Ghetto , much stranger than any fiction , brings this unknown slice of history affectingly to life . 3 +151646 8273 Shanghai Ghetto , much stranger than any fiction , 2 +151647 8273 Shanghai Ghetto , much stranger than any fiction 2 +151648 8273 Shanghai Ghetto , 2 +151649 8273 much stranger than any fiction 1 +151650 8273 much stranger 2 +151651 8273 than any fiction 2 +151652 8273 any fiction 3 +151653 8273 brings this unknown slice of history affectingly to life . 4 +151654 8273 brings this unknown slice of history affectingly to life 3 +151655 8273 brings this unknown slice of history affectingly 3 +151656 8273 this unknown slice of history affectingly 2 +151657 8273 this unknown slice 2 +151658 8273 unknown slice 2 +151659 8273 of history affectingly 2 +151660 8273 history affectingly 2 +151661 8273 affectingly 3 +151662 8274 Boy , has this franchise ever run out of gas . 0 +151663 8274 Boy , 2 +151664 8274 has this franchise ever run out of gas . 2 +151665 8274 has this franchise ever run out of gas 2 +151666 8274 has this franchise ever 2 +151667 8274 this franchise ever 2 +151668 8274 run out of gas 1 +151669 8274 of gas 2 +151670 8275 I 've seen some bad singer-turned actors , but Lil Bow Wow takes the cake . 1 +151671 8275 I 've seen some bad singer-turned actors , but Lil Bow Wow takes the cake 0 +151672 8275 I 've seen some bad singer-turned actors , but 1 +151673 8275 I 've seen some bad singer-turned actors , 1 +151674 8275 I 've seen some bad singer-turned actors 1 +151675 8275 've seen some bad singer-turned actors 1 +151676 8275 seen some bad singer-turned actors 1 +151677 8275 some bad singer-turned actors 1 +151678 8275 bad singer-turned actors 1 +151679 8275 singer-turned actors 2 +151680 8275 singer-turned 2 +151681 8275 Lil Bow Wow takes the cake 3 +151682 8275 Lil Bow Wow 2 +151683 8275 takes the cake 2 +151684 8276 Follows the original film virtually scene for scene and yet manages to bleed it almost completely dry of humor , verve and fun . 1 +151685 8276 Follows the original film virtually scene for scene and yet 2 +151686 8276 the original film virtually scene for scene and yet 2 +151687 8276 the original film virtually scene for scene and 2 +151688 8276 the original film virtually scene for scene 2 +151689 8276 the original film 2 +151690 8276 original film 3 +151691 8276 virtually scene for scene 2 +151692 8276 virtually scene 2 +151693 8276 for scene 2 +151694 8276 manages to bleed it almost completely dry of humor , verve and fun . 0 +151695 8276 manages to bleed it almost completely dry of humor , verve and fun 0 +151696 8276 to bleed it almost completely dry of humor , verve and fun 0 +151697 8276 bleed it almost completely dry of humor , verve and fun 0 +151698 8276 bleed 2 +151699 8276 it almost completely dry of humor , verve and fun 1 +151700 8276 almost completely dry of humor , verve and fun 0 +151701 8276 completely dry of humor , verve and fun 2 +151702 8276 dry of humor , verve and fun 1 +151703 8276 of humor , verve and fun 3 +151704 8276 humor , verve and fun 3 +151705 8276 , verve and fun 3 +151706 8276 verve and fun 4 +151707 8276 verve and 2 +151708 8277 A pathetically inane and unimaginative cross between XXX and Vertical Limit . 1 +151709 8277 A pathetically inane and unimaginative 1 +151710 8277 A pathetically 1 +151711 8277 inane and unimaginative 0 +151712 8277 cross between XXX and Vertical Limit . 3 +151713 8277 cross between XXX and Vertical Limit 2 +151714 8277 between XXX and Vertical Limit 2 +151715 8277 XXX and Vertical Limit 2 +151716 8277 and Vertical Limit 2 +151717 8278 Arteta paints a picture of lives lived in a state of quiet desperation . 3 +151718 8278 paints a picture of lives lived in a state of quiet desperation . 2 +151719 8278 paints a picture of lives lived in a state of quiet desperation 2 +151720 8278 a picture of lives lived in a state of quiet desperation 2 +151721 8278 of lives lived in a state of quiet desperation 3 +151722 8278 lives lived in a state of quiet desperation 2 +151723 8278 lived in a state of quiet desperation 1 +151724 8278 in a state of quiet desperation 2 +151725 8278 a state of quiet desperation 2 +151726 8278 a state 2 +151727 8279 Shot largely in small rooms , the film has a gentle , unforced intimacy that never becomes claustrophobic . 4 +151728 8279 Shot largely in small rooms 2 +151729 8279 Shot largely 2 +151730 8279 in small rooms 2 +151731 8279 small rooms 2 +151732 8279 , the film has a gentle , unforced intimacy that never becomes claustrophobic . 3 +151733 8279 the film has a gentle , unforced intimacy that never becomes claustrophobic . 4 +151734 8279 has a gentle , unforced intimacy that never becomes claustrophobic . 3 +151735 8279 has a gentle , unforced intimacy that never becomes claustrophobic 3 +151736 8279 a gentle , unforced intimacy that never becomes claustrophobic 3 +151737 8279 a gentle , unforced intimacy 3 +151738 8279 gentle , unforced intimacy 3 +151739 8279 gentle , unforced 2 +151740 8279 , unforced 3 +151741 8279 that never becomes claustrophobic 2 +151742 8279 never becomes claustrophobic 3 +151743 8279 becomes claustrophobic 1 +151744 8280 But I had a lot of problems with this movie . 1 +151745 8280 I had a lot of problems with this movie . 0 +151746 8280 had a lot of problems with this movie . 0 +151747 8280 had a lot of problems with this movie 1 +151748 8280 had a lot of problems 2 +151749 8280 a lot of problems 0 +151750 8280 of problems 2 +151751 8281 Takes you by the face , strokes your cheeks and coos beseechingly at you : slow down , shake off your tensions and take this picture at its own breezy , distracted rhythms . 3 +151752 8281 Takes you by the face , strokes your cheeks and coos beseechingly at you : slow down , shake off your tensions and take this picture at its own breezy , distracted rhythms 3 +151753 8281 Takes you by the face , strokes your cheeks and coos beseechingly at you : 3 +151754 8281 Takes you by the face , strokes your cheeks and coos beseechingly at you 3 +151755 8281 Takes you by the face , strokes your cheeks and 3 +151756 8281 Takes you by the face , strokes your cheeks 3 +151757 8281 Takes you by the face , 3 +151758 8281 Takes you by the face 3 +151759 8281 by the face 2 +151760 8281 strokes your cheeks 2 +151761 8281 your cheeks 2 +151762 8281 cheeks 2 +151763 8281 coos beseechingly at you 3 +151764 8281 coos beseechingly 3 +151765 8281 coos 2 +151766 8281 beseechingly 2 +151767 8281 slow down , shake off your tensions and take this picture at its own breezy , distracted rhythms 3 +151768 8281 slow down , shake off your tensions and 2 +151769 8281 slow down , shake off your tensions 2 +151770 8281 slow down , 2 +151771 8281 slow down 1 +151772 8281 shake off your tensions 2 +151773 8281 shake off 2 +151774 8281 your tensions 2 +151775 8281 take this picture at its own breezy , distracted rhythms 2 +151776 8281 take this picture 2 +151777 8281 at its own breezy , distracted rhythms 2 +151778 8281 its own breezy , distracted rhythms 3 +151779 8281 own breezy , distracted rhythms 3 +151780 8281 breezy , distracted rhythms 1 +151781 8281 , distracted rhythms 2 +151782 8281 distracted rhythms 1 +151783 8282 ... the plot weaves us into a complex web . 3 +151784 8282 the plot weaves us into a complex web . 3 +151785 8282 weaves us into a complex web . 3 +151786 8282 weaves us into a complex web 3 +151787 8282 weaves us 2 +151788 8282 into a complex web 2 +151789 8282 a complex web 3 +151790 8282 complex web 2 +151791 8283 The messy emotions raging throughout this three-hour effort are instantly recognizable , allowing the film to paradoxically feel familiar and foreign at the same time . 2 +151792 8283 The messy emotions raging throughout this three-hour effort 1 +151793 8283 The messy emotions 2 +151794 8283 messy emotions 2 +151795 8283 raging throughout this three-hour effort 1 +151796 8283 throughout this three-hour effort 2 +151797 8283 this three-hour effort 2 +151798 8283 three-hour effort 2 +151799 8283 are instantly recognizable , allowing the film to paradoxically feel familiar and foreign at the same time . 4 +151800 8283 are instantly recognizable , allowing the film to paradoxically feel familiar and foreign at the same time 3 +151801 8283 are instantly recognizable , 3 +151802 8283 are instantly recognizable 3 +151803 8283 allowing the film to paradoxically feel familiar and foreign at the same time 2 +151804 8283 the film to paradoxically feel familiar and foreign at the same time 2 +151805 8283 film to paradoxically feel familiar and foreign at the same time 2 +151806 8283 to paradoxically feel familiar and foreign at the same time 2 +151807 8283 to paradoxically 2 +151808 8283 feel familiar and foreign at the same time 2 +151809 8283 feel familiar and foreign 2 +151810 8283 familiar and foreign 2 +151811 8284 Plods along , minus the twisted humor and eye-popping visuals that have made Miike ... a cult hero . 2 +151812 8284 , minus the twisted humor and eye-popping visuals that have made Miike ... a cult hero . 2 +151813 8284 minus the twisted humor and eye-popping visuals that have made Miike ... a cult hero . 2 +151814 8284 minus the twisted humor and eye-popping visuals that have made 2 +151815 8284 minus the twisted humor and eye-popping visuals 3 +151816 8284 the twisted humor and eye-popping visuals 3 +151817 8284 twisted humor and eye-popping visuals 3 +151818 8284 humor and eye-popping visuals 3 +151819 8284 humor and eye-popping 4 +151820 8284 that have made 2 +151821 8284 Miike ... a cult hero . 3 +151822 8284 Miike ... a cult hero 2 +151823 8284 Miike ... 2 +151824 8284 a cult hero 2 +151825 8284 cult hero 2 +151826 8285 -LRB- The Cockettes -RRB- provides a window into a subculture hell-bent on expressing itself in every way imaginable . ' 3 +151827 8285 The Cockettes -RRB- provides a window into a subculture hell-bent on expressing itself in every way imaginable . ' 3 +151828 8285 The Cockettes 2 +151829 8285 -RRB- provides a window into a subculture hell-bent on expressing itself in every way imaginable . ' 2 +151830 8285 provides a window into a subculture hell-bent on expressing itself in every way imaginable . ' 3 +151831 8285 provides a window into a subculture hell-bent on expressing itself in every way imaginable . 3 +151832 8285 provides a window into a subculture hell-bent on expressing itself in every way imaginable 3 +151833 8285 provides a window 2 +151834 8285 into a subculture hell-bent on expressing itself in every way imaginable 2 +151835 8285 a subculture hell-bent on expressing itself in every way imaginable 3 +151836 8285 a subculture hell-bent 2 +151837 8285 subculture hell-bent 2 +151838 8285 hell-bent 1 +151839 8285 on expressing itself in every way imaginable 3 +151840 8285 expressing itself in every way imaginable 3 +151841 8285 expressing itself 2 +151842 8285 in every way imaginable 2 +151843 8285 every way imaginable 2 +151844 8285 way imaginable 2 +151845 8286 An exceptionally dreary and overwrought bit of work , every bit as imperious as Katzenberg 's The Prince of Egypt from 1998 . 1 +151846 8286 An exceptionally dreary and overwrought bit of work 0 +151847 8286 An exceptionally dreary and overwrought bit 0 +151848 8286 exceptionally dreary and overwrought bit 1 +151849 8286 exceptionally dreary and overwrought 1 +151850 8286 dreary and overwrought 1 +151851 8286 , every bit as imperious as Katzenberg 's The Prince of Egypt from 1998 . 3 +151852 8286 every bit as imperious as Katzenberg 's The Prince of Egypt from 1998 . 3 +151853 8286 every bit as imperious as Katzenberg 2 +151854 8286 every bit as imperious 1 +151855 8286 bit as imperious 2 +151856 8286 as imperious 1 +151857 8286 imperious 2 +151858 8286 as Katzenberg 3 +151859 8286 Katzenberg 3 +151860 8286 's The Prince of Egypt from 1998 . 3 +151861 8286 's The Prince of Egypt from 1998 2 +151862 8286 The Prince of Egypt from 1998 2 +151863 8286 The Prince 2 +151864 8286 of Egypt from 1998 2 +151865 8286 Egypt from 1998 3 +151866 8286 Egypt 2 +151867 8286 from 1998 2 +151868 8286 1998 2 +151869 8287 In its treatment of the dehumanizing and ego-destroying process of unemployment , Time Out offers an exploration that is more accurate than anything I have seen in an American film . 3 +151870 8287 In its treatment of the dehumanizing and ego-destroying process of unemployment 1 +151871 8287 its treatment of the dehumanizing and ego-destroying process of unemployment 2 +151872 8287 its treatment 2 +151873 8287 of the dehumanizing and ego-destroying process of unemployment 2 +151874 8287 the dehumanizing and ego-destroying process of unemployment 2 +151875 8287 the dehumanizing and ego-destroying process 1 +151876 8287 dehumanizing and ego-destroying process 1 +151877 8287 dehumanizing and ego-destroying 1 +151878 8287 dehumanizing and 1 +151879 8287 dehumanizing 0 +151880 8287 ego-destroying 1 +151881 8287 of unemployment 2 +151882 8287 unemployment 1 +151883 8287 , Time Out offers an exploration that is more accurate than anything I have seen in an American film . 4 +151884 8287 Time Out offers an exploration that is more accurate than anything I have seen in an American film . 3 +151885 8287 offers an exploration that is more accurate than anything I have seen in an American film . 4 +151886 8287 offers an exploration that is more accurate than anything I have seen in an American film 4 +151887 8287 an exploration that is more accurate than anything I have seen in an American film 3 +151888 8287 that is more accurate than anything I have seen in an American film 3 +151889 8287 is more accurate than anything I have seen in an American film 4 +151890 8287 is more accurate than anything 3 +151891 8287 more accurate than anything 3 +151892 8287 accurate than anything 2 +151893 8287 I have seen in an American film 2 +151894 8287 have seen in an American film 2 +151895 8287 seen in an American film 2 +151896 8288 Renner carries much of the film with a creepy and dead-on performance . 4 +151897 8288 carries much of the film with a creepy and dead-on performance . 3 +151898 8288 carries much of the film with a creepy and dead-on performance 4 +151899 8288 much of the film with a creepy and dead-on performance 1 +151900 8288 of the film with a creepy and dead-on performance 4 +151901 8288 the film with a creepy and dead-on performance 3 +151902 8288 with a creepy and dead-on performance 3 +151903 8288 a creepy and dead-on performance 4 +151904 8288 creepy and dead-on performance 3 +151905 8288 creepy and dead-on 3 +151906 8289 ... if you 're just in the mood for a fun -- but bad -- movie , you might want to catch Freaks as a matinee . 2 +151907 8289 if you 're just in the mood for a fun -- but bad -- movie , you might want to catch Freaks as a matinee . 2 +151908 8289 if you 're just in the mood for a fun -- but bad -- movie 1 +151909 8289 you 're just in the mood for a fun -- but bad -- movie 3 +151910 8289 're just in the mood for a fun -- but bad -- movie 1 +151911 8289 in the mood for a fun -- but bad -- movie 2 +151912 8289 the mood for a fun -- but bad -- movie 3 +151913 8289 for a fun -- but bad -- movie 1 +151914 8289 a fun -- but bad -- movie 1 +151915 8289 fun -- but bad -- movie 1 +151916 8289 -- but bad -- movie 0 +151917 8289 -- but bad -- 1 +151918 8289 -- but bad 2 +151919 8289 -- but 2 +151920 8289 , you might want to catch Freaks as a matinee . 2 +151921 8289 you might want to catch Freaks as a matinee . 2 +151922 8289 might want to catch Freaks as a matinee . 2 +151923 8289 might want to catch Freaks as a matinee 2 +151924 8289 want to catch Freaks as a matinee 2 +151925 8289 to catch Freaks as a matinee 2 +151926 8289 catch Freaks as a matinee 2 +151927 8289 catch Freaks 2 +151928 8289 as a matinee 1 +151929 8290 Feels like a cold old man going through the motions . 1 +151930 8290 like a cold old man going through the motions . 1 +151931 8290 like a cold old man going through the motions 0 +151932 8290 a cold old man going through the motions 2 +151933 8290 a cold old man 2 +151934 8290 cold old man 2 +151935 8291 Vampire epic succeeds as spooky action-packed trash of the highest order . 2 +151936 8291 Vampire epic 2 +151937 8291 succeeds as spooky action-packed trash of the highest order . 2 +151938 8291 succeeds as spooky action-packed trash of the highest order 4 +151939 8291 as spooky action-packed trash of the highest order 1 +151940 8291 spooky action-packed trash of the highest order 0 +151941 8291 spooky action-packed trash 1 +151942 8291 action-packed trash 1 +151943 8291 of the highest order 4 +151944 8291 the highest order 2 +151945 8291 highest order 2 +151946 8292 The film 's images give a backbone to the company and provide an emotional edge to its ultimate demise . 3 +151947 8292 The film 's images 2 +151948 8292 give a backbone to the company and provide an emotional edge to its ultimate demise . 2 +151949 8292 give a backbone to the company and provide an emotional edge to its ultimate demise 1 +151950 8292 give a backbone to the company and 2 +151951 8292 give a backbone to the company 3 +151952 8292 give a backbone 2 +151953 8292 a backbone 3 +151954 8292 backbone 3 +151955 8292 to the company 2 +151956 8292 provide an emotional edge to its ultimate demise 2 +151957 8292 provide an emotional edge 3 +151958 8292 an emotional edge 3 +151959 8292 emotional edge 3 +151960 8292 to its ultimate demise 0 +151961 8292 its ultimate demise 1 +151962 8292 ultimate demise 1 +151963 8293 These three films form a remarkably cohesive whole , both visually and thematically , through their consistently sensitive and often exciting treatment of an ignored people . 4 +151964 8293 These three films 2 +151965 8293 form a remarkably cohesive whole , both visually and thematically , through their consistently sensitive and often exciting treatment of an ignored people . 4 +151966 8293 form a remarkably cohesive whole , both visually and thematically , through their consistently sensitive and often exciting treatment of an ignored people 3 +151967 8293 a remarkably cohesive whole , both visually and thematically , through their consistently sensitive and often exciting treatment of an ignored people 3 +151968 8293 a remarkably cohesive whole , both visually and thematically , 3 +151969 8293 a remarkably cohesive whole , both visually and thematically 4 +151970 8293 a remarkably cohesive whole , 3 +151971 8293 a remarkably cohesive whole 4 +151972 8293 remarkably cohesive whole 3 +151973 8293 remarkably cohesive 3 +151974 8293 both visually and thematically 2 +151975 8293 visually and thematically 3 +151976 8293 visually and 2 +151977 8293 through their consistently sensitive and often exciting treatment of an ignored people 3 +151978 8293 their consistently sensitive and often exciting treatment of an ignored people 3 +151979 8293 their consistently sensitive and often exciting treatment 3 +151980 8293 consistently sensitive and often exciting treatment 3 +151981 8293 consistently sensitive and often exciting 4 +151982 8293 consistently sensitive and 3 +151983 8293 consistently sensitive 3 +151984 8293 often exciting 3 +151985 8293 of an ignored people 1 +151986 8293 an ignored people 2 +151987 8293 ignored people 2 +151988 8294 Hoffman waits too long to turn his movie in an unexpected direction , and even then his tone retains a genteel , prep-school quality that feels dusty and leatherbound . 1 +151989 8294 Hoffman waits too long to turn his movie in an unexpected direction , and even then his tone retains a genteel , prep-school quality that feels dusty and leatherbound 1 +151990 8294 Hoffman waits too long to turn his movie in an unexpected direction , and 1 +151991 8294 Hoffman waits too long to turn his movie in an unexpected direction , 2 +151992 8294 Hoffman waits too long to turn his movie in an unexpected direction 2 +151993 8294 waits too long to turn his movie in an unexpected direction 2 +151994 8294 too long to turn his movie in an unexpected direction 3 +151995 8294 long to turn his movie in an unexpected direction 2 +151996 8294 to turn his movie in an unexpected direction 3 +151997 8294 turn his movie in an unexpected direction 3 +151998 8294 turn his movie 2 +151999 8294 in an unexpected direction 2 +152000 8294 an unexpected direction 2 +152001 8294 unexpected direction 2 +152002 8294 even then his tone retains a genteel , prep-school quality that feels dusty and leatherbound 2 +152003 8294 then his tone retains a genteel , prep-school quality that feels dusty and leatherbound 1 +152004 8294 his tone retains a genteel , prep-school quality that feels dusty and leatherbound 2 +152005 8294 his tone 2 +152006 8294 retains a genteel , prep-school quality that feels dusty and leatherbound 2 +152007 8294 a genteel , prep-school quality that feels dusty and leatherbound 1 +152008 8294 a genteel , prep-school quality 2 +152009 8294 genteel , prep-school quality 2 +152010 8294 , prep-school quality 2 +152011 8294 prep-school quality 2 +152012 8294 that feels dusty and leatherbound 0 +152013 8294 feels dusty and leatherbound 2 +152014 8294 dusty and leatherbound 2 +152015 8294 dusty and 2 +152016 8294 dusty 1 +152017 8294 leatherbound 3 +152018 8295 The dirty jokes provide the funniest moments in this oddly sweet comedy about jokester highway patrolmen . 3 +152019 8295 The dirty jokes 2 +152020 8295 dirty jokes 1 +152021 8295 provide the funniest moments in this oddly sweet comedy about jokester highway patrolmen . 3 +152022 8295 provide the funniest moments in this oddly sweet comedy about jokester highway patrolmen 4 +152023 8295 the funniest moments in this oddly sweet comedy about jokester highway patrolmen 3 +152024 8295 the funniest moments 3 +152025 8295 in this oddly sweet comedy about jokester highway patrolmen 3 +152026 8295 this oddly sweet comedy about jokester highway patrolmen 3 +152027 8295 this oddly sweet comedy 3 +152028 8295 oddly sweet comedy 3 +152029 8295 oddly sweet 3 +152030 8295 about jokester highway patrolmen 2 +152031 8295 jokester highway patrolmen 3 +152032 8295 jokester 2 +152033 8295 highway patrolmen 2 +152034 8295 patrolmen 2 +152035 8296 In a big corner office in Hell , Satan is throwing up his hands in surrender , is firing his R&D people , and has decided he will just screen The Master of Disguise 24\/7 . 0 +152036 8296 In a big corner office in Hell 1 +152037 8296 a big corner office in Hell 1 +152038 8296 a big corner office 2 +152039 8296 big corner office 2 +152040 8296 corner office 2 +152041 8296 in Hell 2 +152042 8296 , Satan is throwing up his hands in surrender , is firing his R&D people , and has decided he will just screen The Master of Disguise 24\/7 . 1 +152043 8296 Satan is throwing up his hands in surrender , is firing his R&D people , and has decided he will just screen The Master of Disguise 24\/7 . 0 +152044 8296 Satan 2 +152045 8296 is throwing up his hands in surrender , is firing his R&D people , and has decided he will just screen The Master of Disguise 24\/7 . 1 +152046 8296 is throwing up his hands in surrender , is firing his R&D people , and has decided he will just screen The Master of Disguise 24\/7 1 +152047 8296 is throwing up his hands in surrender , is firing his R&D people , and 1 +152048 8296 is throwing up his hands in surrender , is firing his R&D people , 1 +152049 8296 is throwing up his hands in surrender , is firing his R&D people 2 +152050 8296 is throwing up his hands in surrender , 0 +152051 8296 is throwing up his hands in surrender 2 +152052 8296 throwing up his hands in surrender 1 +152053 8296 throwing up his hands 2 +152054 8296 his hands 2 +152055 8296 in surrender 2 +152056 8296 is firing his R&D people 1 +152057 8296 firing his R&D people 2 +152058 8296 his R&D people 2 +152059 8296 R&D people 2 +152060 8296 R&D 2 +152061 8296 has decided he will just screen The Master of Disguise 24\/7 2 +152062 8296 decided he will just screen The Master of Disguise 24\/7 2 +152063 8296 he will just screen The Master of Disguise 24\/7 2 +152064 8296 will just screen The Master of Disguise 24\/7 2 +152065 8296 will just 2 +152066 8296 screen The Master of Disguise 24\/7 2 +152067 8296 The Master of Disguise 24\/7 2 +152068 8296 of Disguise 24\/7 2 +152069 8296 Disguise 24\/7 1 +152070 8296 24\/7 2 +152071 8297 A delicious , quirky movie with a terrific screenplay and fanciful direction by Michael Gondry . 4 +152072 8297 A delicious , quirky movie with a terrific screenplay and fanciful direction by Michael Gondry 4 +152073 8297 A delicious , quirky movie with a terrific screenplay and fanciful direction 4 +152074 8297 A delicious , quirky movie 4 +152075 8297 delicious , quirky movie 4 +152076 8297 , quirky movie 2 +152077 8297 quirky movie 3 +152078 8297 with a terrific screenplay and fanciful direction 3 +152079 8297 a terrific screenplay and fanciful direction 4 +152080 8297 a terrific screenplay and 4 +152081 8297 a terrific screenplay 4 +152082 8297 terrific screenplay 4 +152083 8297 fanciful direction 3 +152084 8297 by Michael Gondry 2 +152085 8297 Michael Gondry 2 +152086 8298 It does n't really know or care about the characters , and uses them as markers for a series of preordained events . 1 +152087 8298 does n't really know or care about the characters , and uses them as markers for a series of preordained events . 0 +152088 8298 does n't really know or care about the characters , and uses them as markers for a series of preordained events 1 +152089 8298 does n't really know or care about the characters , and 0 +152090 8298 does n't really know or care about the characters , 0 +152091 8298 does n't really know or care about the characters 1 +152092 8298 know or care about the characters 2 +152093 8298 know or care 2 +152094 8298 know or 2 +152095 8298 uses them as markers for a series of preordained events 2 +152096 8298 uses them 2 +152097 8298 as markers for a series of preordained events 2 +152098 8298 markers for a series of preordained events 2 +152099 8298 markers 2 +152100 8298 for a series of preordained events 2 +152101 8298 a series of preordained events 2 +152102 8298 of preordained events 2 +152103 8298 preordained events 2 +152104 8299 Jackson and co have brought back the value and respect for the term epic cinema . 3 +152105 8299 Jackson and co 2 +152106 8299 co 2 +152107 8299 have brought back the value and respect for the term epic cinema . 4 +152108 8299 have brought back the value and respect for the term epic cinema 3 +152109 8299 brought back the value and respect for the term epic cinema 4 +152110 8299 brought back 2 +152111 8299 the value and respect for the term epic cinema 3 +152112 8299 the value and respect 3 +152113 8299 value and respect 3 +152114 8299 value and 2 +152115 8299 for the term epic cinema 2 +152116 8299 the term epic cinema 3 +152117 8299 term epic cinema 3 +152118 8299 epic cinema 4 +152119 8300 The fourth `` Pokemon '' is a diverting -- if predictable -- adventure suitable for a matinee , with a message that cautions children about disturbing the world 's delicate ecological balance . 3 +152120 8300 The fourth `` Pokemon '' 2 +152121 8300 fourth `` Pokemon '' 2 +152122 8300 `` Pokemon '' 2 +152123 8300 Pokemon '' 2 +152124 8300 is a diverting -- if predictable -- adventure suitable for a matinee , with a message that cautions children about disturbing the world 's delicate ecological balance . 3 +152125 8300 is a diverting -- if predictable -- adventure suitable for a matinee , with a message that cautions children about disturbing the world 's delicate ecological balance 2 +152126 8300 is a diverting -- if predictable -- adventure suitable for a matinee , 3 +152127 8300 is a diverting -- if predictable -- adventure suitable for a matinee 2 +152128 8300 a diverting -- if predictable -- adventure suitable for a matinee 3 +152129 8300 a diverting -- if predictable -- adventure 2 +152130 8300 diverting -- if predictable -- adventure 2 +152131 8300 diverting -- if predictable -- 2 +152132 8300 -- if predictable -- 1 +152133 8300 if predictable -- 2 +152134 8300 if predictable 2 +152135 8300 suitable for a matinee 2 +152136 8300 for a matinee 2 +152137 8300 with a message that cautions children about disturbing the world 's delicate ecological balance 3 +152138 8300 a message that cautions children about disturbing the world 's delicate ecological balance 4 +152139 8300 that cautions children about disturbing the world 's delicate ecological balance 2 +152140 8300 cautions children about disturbing the world 's delicate ecological balance 2 +152141 8300 cautions children 2 +152142 8300 cautions 1 +152143 8300 about disturbing the world 's delicate ecological balance 2 +152144 8300 disturbing the world 's delicate ecological balance 2 +152145 8300 the world 's delicate ecological balance 2 +152146 8300 delicate ecological balance 2 +152147 8300 ecological balance 2 +152148 8301 Supposedly authentic account of a historical event that 's far too tragic to merit such superficial treatment . 1 +152149 8301 authentic account of a historical event that 's far too tragic to merit such superficial treatment . 1 +152150 8301 authentic account of a historical event that 's far too tragic to merit such superficial treatment 0 +152151 8301 authentic account of a historical event 3 +152152 8301 authentic account 3 +152153 8301 of a historical event 2 +152154 8301 a historical event 2 +152155 8301 that 's far too tragic to merit such superficial treatment 1 +152156 8301 's far too tragic to merit such superficial treatment 2 +152157 8301 's far too tragic 1 +152158 8301 far too tragic 1 +152159 8301 too tragic 2 +152160 8301 to merit such superficial treatment 1 +152161 8301 merit such superficial treatment 2 +152162 8301 such superficial treatment 1 +152163 8301 superficial treatment 1 +152164 8302 ... if you , like me , think an action film disguised as a war tribute is disgusting to begin with , then you 're in for a painful ride . 0 +152165 8302 if you , like me , think an action film disguised as a war tribute is disgusting to begin with , then you 're in for a painful ride . 0 +152166 8302 if you , like me , think an action film disguised as a war tribute is disgusting to begin with 0 +152167 8302 you , like me , think an action film disguised as a war tribute is disgusting to begin with 1 +152168 8302 , like me , think an action film disguised as a war tribute is disgusting to begin with 1 +152169 8302 like me , think an action film disguised as a war tribute is disgusting to begin with 0 +152170 8302 , think an action film disguised as a war tribute is disgusting to begin with 1 +152171 8302 think an action film disguised as a war tribute is disgusting to begin with 0 +152172 8302 an action film disguised as a war tribute is disgusting to begin with 1 +152173 8302 disguised as a war tribute is disgusting to begin with 1 +152174 8302 as a war tribute is disgusting to begin with 0 +152175 8302 a war tribute is disgusting to begin with 0 +152176 8302 a war tribute 3 +152177 8302 war tribute 2 +152178 8302 is disgusting to begin with 1 +152179 8302 disgusting to begin with 0 +152180 8302 , then you 're in for a painful ride . 1 +152181 8302 then you 're in for a painful ride . 1 +152182 8302 you 're in for a painful ride . 0 +152183 8302 're in for a painful ride . 1 +152184 8302 're in for a painful ride 1 +152185 8302 in for a painful ride 2 +152186 8302 for a painful ride 0 +152187 8302 a painful ride 0 +152188 8302 painful ride 0 +152189 8303 ... a somber film , almost completely unrelieved by any comedy beyond the wistful everyday ironies of the working poor . 2 +152190 8303 a somber film , almost completely unrelieved by any comedy beyond the wistful everyday ironies of the working poor . 2 +152191 8303 a somber film , almost completely 2 +152192 8303 a somber film , 1 +152193 8303 a somber film 2 +152194 8303 somber film 2 +152195 8303 unrelieved by any comedy beyond the wistful everyday ironies of the working poor . 2 +152196 8303 unrelieved by any comedy beyond the wistful everyday ironies of the working poor 2 +152197 8303 unrelieved by any comedy 1 +152198 8303 unrelieved 2 +152199 8303 by any comedy 2 +152200 8303 any comedy 2 +152201 8303 beyond the wistful everyday ironies of the working poor 2 +152202 8303 the wistful everyday ironies of the working poor 2 +152203 8303 the wistful everyday ironies 2 +152204 8303 wistful everyday ironies 3 +152205 8303 everyday ironies 2 +152206 8303 of the working poor 2 +152207 8303 the working poor 2 +152208 8303 working poor 2 +152209 8304 Journalistically dubious , inept and often lethally dull . 0 +152210 8304 Journalistically dubious , inept and often lethally dull 0 +152211 8304 Journalistically dubious , inept and 2 +152212 8304 Journalistically dubious , inept 0 +152213 8304 Journalistically dubious , 1 +152214 8304 Journalistically dubious 2 +152215 8304 Journalistically 2 +152216 8304 often lethally dull 0 +152217 8304 lethally dull 1 +152218 8304 lethally 2 +152219 8305 He 's not good with people . 1 +152220 8305 's not good with people . 2 +152221 8305 's not good with people 2 +152222 8305 good with people 2 +152223 8305 with people 2 +152224 8306 The sheer dumbness of the plot -LRB- other than its one good idea -RRB- and the movie 's inescapable air of sleaziness get you down . 0 +152225 8306 The sheer dumbness of the plot -LRB- other than its one good idea -RRB- and the movie 's inescapable air of sleaziness 0 +152226 8306 The sheer dumbness 1 +152227 8306 sheer dumbness 0 +152228 8306 of the plot -LRB- other than its one good idea -RRB- and the movie 's inescapable air of sleaziness 1 +152229 8306 the plot -LRB- other than its one good idea -RRB- and the movie 's inescapable air of sleaziness 1 +152230 8306 the plot -LRB- other than its one good idea -RRB- and 2 +152231 8306 the plot -LRB- other than its one good idea -RRB- 2 +152232 8306 -LRB- other than its one good idea -RRB- 2 +152233 8306 other than its one good idea -RRB- 2 +152234 8306 other than its one good idea 2 +152235 8306 than its one good idea 2 +152236 8306 its one good idea 3 +152237 8306 one good idea 3 +152238 8306 the movie 's inescapable air of sleaziness 0 +152239 8306 the movie 's inescapable air 2 +152240 8306 inescapable air 2 +152241 8306 of sleaziness 1 +152242 8306 sleaziness 1 +152243 8306 get you down . 2 +152244 8306 get you down 1 +152245 8307 It 's not a classic spy-action or buddy movie , but it 's entertaining enough and worth a look . 2 +152246 8307 It 's not a classic spy-action or buddy movie , but it 's entertaining enough and worth a look 2 +152247 8307 It 's not a classic spy-action or buddy movie , but 2 +152248 8307 It 's not a classic spy-action or buddy movie , 3 +152249 8307 It 's not a classic spy-action or buddy movie 2 +152250 8307 's not a classic spy-action or buddy movie 2 +152251 8307 a classic spy-action or buddy movie 3 +152252 8307 classic spy-action or buddy movie 2 +152253 8307 spy-action or buddy movie 2 +152254 8307 spy-action 2 +152255 8307 or buddy movie 2 +152256 8307 it 's entertaining enough and worth a look 3 +152257 8307 's entertaining enough and worth a look 3 +152258 8307 entertaining enough and worth a look 3 +152259 8307 entertaining enough and worth 3 +152260 8307 enough and worth 2 +152261 8307 enough and 2 +152262 8308 Priggish , lethargically paced parable of renewal . 0 +152263 8308 Priggish 1 +152264 8308 , lethargically paced parable of renewal . 2 +152265 8308 lethargically paced parable of renewal . 1 +152266 8308 lethargically 1 +152267 8308 paced parable of renewal . 2 +152268 8308 paced parable of renewal 2 +152269 8308 parable of renewal 2 +152270 8308 of renewal 2 +152271 8308 renewal 3 +152272 8309 Everything else about High Crimes is , like the military system of justice it portrays , tiresomely regimented . 2 +152273 8309 Everything else about High Crimes 2 +152274 8309 about High Crimes 2 +152275 8309 is , like the military system of justice it portrays , tiresomely regimented . 1 +152276 8309 is , like the military system of justice it portrays , tiresomely regimented 1 +152277 8309 is , like the military system of justice 2 +152278 8309 like the military system of justice 3 +152279 8309 the military system of justice 2 +152280 8309 the military system 2 +152281 8309 military system 2 +152282 8309 it portrays , tiresomely regimented 1 +152283 8309 portrays , tiresomely regimented 1 +152284 8309 portrays , tiresomely 1 +152285 8309 portrays , 2 +152286 8309 regimented 2 +152287 8310 Warm in its loving yet unforgivingly inconsistent depiction of everyday people , relaxed in its perfect quiet pace and proud in its message . 4 +152288 8310 Warm in its loving yet unforgivingly inconsistent depiction of everyday people 3 +152289 8310 in its loving yet unforgivingly inconsistent depiction of everyday people 2 +152290 8310 its loving yet unforgivingly inconsistent depiction of everyday people 2 +152291 8310 its loving yet unforgivingly inconsistent depiction 3 +152292 8310 loving yet unforgivingly inconsistent depiction 3 +152293 8310 yet unforgivingly inconsistent depiction 0 +152294 8310 yet unforgivingly inconsistent 1 +152295 8310 unforgivingly inconsistent 0 +152296 8310 unforgivingly 1 +152297 8310 of everyday people 2 +152298 8310 everyday people 2 +152299 8310 , relaxed in its perfect quiet pace and proud in its message . 4 +152300 8310 relaxed in its perfect quiet pace and proud in its message . 4 +152301 8310 relaxed in its perfect quiet pace and proud in its message 3 +152302 8310 relaxed in its perfect quiet pace and 3 +152303 8310 relaxed in its perfect quiet pace 3 +152304 8310 in its perfect quiet pace 3 +152305 8310 its perfect quiet pace 3 +152306 8310 perfect quiet pace 3 +152307 8310 quiet pace 2 +152308 8310 proud in its message 3 +152309 8310 in its message 2 +152310 8311 An eye-boggling blend of psychedelic devices , special effects and backgrounds , ` Spy Kids 2 ' is a visual treat for all audiences . 3 +152311 8311 An eye-boggling blend of psychedelic devices , special effects and backgrounds , ` Spy Kids 2 ' 3 +152312 8311 An eye-boggling blend 3 +152313 8311 eye-boggling blend 2 +152314 8311 eye-boggling 2 +152315 8311 of psychedelic devices , special effects and backgrounds , ` Spy Kids 2 ' 2 +152316 8311 psychedelic devices , special effects and backgrounds , ` Spy Kids 2 ' 2 +152317 8311 psychedelic devices , special effects and backgrounds , ` Spy Kids 2 2 +152318 8311 psychedelic devices , special effects and backgrounds , 3 +152319 8311 psychedelic devices , special effects and backgrounds 2 +152320 8311 psychedelic devices , 2 +152321 8311 psychedelic devices 2 +152322 8311 psychedelic 2 +152323 8311 special effects and backgrounds 2 +152324 8311 effects and backgrounds 2 +152325 8311 effects and 2 +152326 8311 ` Spy Kids 2 2 +152327 8311 is a visual treat for all audiences . 4 +152328 8311 is a visual treat for all audiences 4 +152329 8311 a visual treat for all audiences 4 +152330 8312 `` The Adventures of Pluto Nash '' is a big time stinker . 0 +152331 8312 The Adventures of Pluto Nash '' is a big time stinker . 0 +152332 8312 '' is a big time stinker . 0 +152333 8312 is a big time stinker . 0 +152334 8312 is a big time stinker 0 +152335 8312 a big time stinker 1 +152336 8312 big time stinker 0 +152337 8312 time stinker 0 +152338 8313 Quite frankly , I ca n't see why any actor of talent would ever work in a McCulloch production again if they looked at how this movie turned out . 0 +152339 8313 Quite frankly 2 +152340 8313 , I ca n't see why any actor of talent would ever work in a McCulloch production again if they looked at how this movie turned out . 1 +152341 8313 I ca n't see why any actor of talent would ever work in a McCulloch production again if they looked at how this movie turned out . 1 +152342 8313 ca n't see why any actor of talent would ever work in a McCulloch production again if they looked at how this movie turned out . 1 +152343 8313 ca n't see why any actor of talent would ever work in a McCulloch production again if they looked at how this movie turned out 1 +152344 8313 see why any actor of talent would ever work in a McCulloch production again if they looked at how this movie turned out 0 +152345 8313 why any actor of talent would ever work in a McCulloch production again if they looked at how this movie turned out 0 +152346 8313 any actor of talent would ever work in a McCulloch production again if they looked at how this movie turned out 0 +152347 8313 any actor of talent 2 +152348 8313 any actor 2 +152349 8313 would ever work in a McCulloch production again if they looked at how this movie turned out 0 +152350 8313 work in a McCulloch production again if they looked at how this movie turned out 2 +152351 8313 work in a McCulloch production 2 +152352 8313 in a McCulloch production 2 +152353 8313 a McCulloch production 2 +152354 8313 McCulloch production 2 +152355 8313 again if they looked at how this movie turned out 2 +152356 8313 if they looked at how this movie turned out 1 +152357 8313 they looked at how this movie turned out 2 +152358 8313 looked at how this movie turned out 2 +152359 8313 at how this movie turned out 2 +152360 8313 how this movie turned out 2 +152361 8313 this movie turned out 2 +152362 8314 It 's such a mechanical endeavor -LRB- that -RRB- it never bothers to question why somebody might devote time to see it . 1 +152363 8314 's such a mechanical endeavor -LRB- that -RRB- it never bothers to question why somebody might devote time to see it . 1 +152364 8314 's such a mechanical endeavor -LRB- that -RRB- it never bothers to question why somebody might devote time to see it 1 +152365 8314 such a mechanical endeavor -LRB- that -RRB- it never bothers to question why somebody might devote time to see it 2 +152366 8314 such a mechanical endeavor -LRB- that -RRB- 2 +152367 8314 such a mechanical endeavor -LRB- that 2 +152368 8314 such a mechanical endeavor -LRB- 3 +152369 8314 such a mechanical endeavor 2 +152370 8314 a mechanical endeavor 2 +152371 8314 mechanical endeavor 2 +152372 8314 it never bothers to question why somebody might devote time to see it 1 +152373 8314 never bothers to question why somebody might devote time to see it 1 +152374 8314 bothers to question why somebody might devote time to see it 1 +152375 8314 to question why somebody might devote time to see it 1 +152376 8314 question why somebody might devote time to see it 2 +152377 8314 why somebody might devote time to see it 2 +152378 8314 somebody might devote time to see it 1 +152379 8314 might devote time to see it 2 +152380 8314 devote time to see it 3 +152381 8314 devote time 2 +152382 8314 devote 2 +152383 8315 And second , what 's with all the shooting ? 1 +152384 8315 second , what 's with all the shooting ? 1 +152385 8315 second , what 's with all the shooting 2 +152386 8315 second , 2 +152387 8315 what 's with all the shooting 1 +152388 8315 's with all the shooting 2 +152389 8315 with all the shooting 2 +152390 8315 all the shooting 2 +152391 8315 the shooting 2 +152392 8316 Despite some strong performances , never rises above the level of a telanovela . 1 +152393 8316 Despite some strong performances 2 +152394 8316 some strong performances 4 +152395 8316 , never rises above the level of a telanovela . 1 +152396 8316 never rises above the level of a telanovela . 2 +152397 8316 rises above the level of a telanovela . 3 +152398 8316 rises above the level of a telanovela 2 +152399 8316 above the level of a telanovela 1 +152400 8316 the level of a telanovela 2 +152401 8316 of a telanovela 2 +152402 8316 a telanovela 2 +152403 8316 telanovela 2 +152404 8317 ... best seen as speculative history , as much an exploration of the paranoid impulse as a creative sequel to the Warren Report . 2 +152405 8317 best seen as speculative history , as much an exploration of the paranoid impulse as a creative sequel to the Warren Report . 2 +152406 8317 seen as speculative history , as much an exploration of the paranoid impulse as a creative sequel to the Warren Report . 2 +152407 8317 seen as speculative history , as much an exploration of the paranoid impulse as a creative sequel to the Warren Report 2 +152408 8317 seen as speculative history , as much an exploration of the paranoid impulse as a creative sequel 4 +152409 8317 seen as speculative history , as much an exploration of the paranoid impulse 2 +152410 8317 as speculative history , as much an exploration of the paranoid impulse 2 +152411 8317 speculative history , as much an exploration of the paranoid impulse 2 +152412 8317 speculative history , as much 2 +152413 8317 speculative history , as 2 +152414 8317 speculative history , 2 +152415 8317 speculative history 2 +152416 8317 an exploration of the paranoid impulse 2 +152417 8317 of the paranoid impulse 2 +152418 8317 the paranoid impulse 2 +152419 8317 paranoid impulse 1 +152420 8317 as a creative sequel 3 +152421 8317 a creative sequel 3 +152422 8317 creative sequel 3 +152423 8317 to the Warren Report 2 +152424 8317 the Warren Report 2 +152425 8317 Warren Report 2 +152426 8318 Rarely , indeed almost never , is such high-wattage brainpower coupled with pitch-perfect acting and an exquisite , unfakable sense of cinema . 4 +152427 8318 , indeed almost never , is such high-wattage brainpower coupled with pitch-perfect acting and an exquisite , unfakable sense of cinema . 4 +152428 8318 indeed almost never , is such high-wattage brainpower coupled with pitch-perfect acting and an exquisite , unfakable sense of cinema . 3 +152429 8318 indeed almost never 2 +152430 8318 indeed almost 2 +152431 8318 , is such high-wattage brainpower coupled with pitch-perfect acting and an exquisite , unfakable sense of cinema . 3 +152432 8318 is such high-wattage brainpower coupled with pitch-perfect acting and an exquisite , unfakable sense of cinema . 4 +152433 8318 is such high-wattage brainpower coupled with pitch-perfect acting and an exquisite , unfakable sense of cinema 4 +152434 8318 such high-wattage brainpower coupled with pitch-perfect acting and an exquisite , unfakable sense of cinema 4 +152435 8318 such high-wattage brainpower coupled with pitch-perfect acting and 3 +152436 8318 such high-wattage brainpower coupled with pitch-perfect acting 4 +152437 8318 such high-wattage brainpower 4 +152438 8318 high-wattage brainpower 4 +152439 8318 high-wattage 3 +152440 8318 brainpower 2 +152441 8318 coupled with pitch-perfect acting 4 +152442 8318 coupled 2 +152443 8318 with pitch-perfect acting 4 +152444 8318 pitch-perfect acting 4 +152445 8318 an exquisite , unfakable sense of cinema 3 +152446 8318 an exquisite , unfakable sense 3 +152447 8318 exquisite , unfakable sense 3 +152448 8318 , unfakable sense 2 +152449 8318 unfakable sense 2 +152450 8318 unfakable 2 +152451 8319 There 's no clear picture of who killed Bob Crane . 2 +152452 8319 's no clear picture of who killed Bob Crane . 1 +152453 8319 's no clear picture of who killed Bob Crane 2 +152454 8319 no clear picture of who killed Bob Crane 2 +152455 8319 no clear picture 1 +152456 8319 clear picture 2 +152457 8319 of who killed Bob Crane 2 +152458 8319 who killed Bob Crane 2 +152459 8319 killed Bob Crane 2 +152460 8320 Payami tries to raise some serious issues about Iran 's electoral process , but the result is a film that 's about as subtle as a party political broadcast . 1 +152461 8320 Payami tries to raise some serious issues about Iran 's electoral process , but the result is a film that 's about as subtle as a party political broadcast 1 +152462 8320 Payami tries to raise some serious issues about Iran 's electoral process , but 2 +152463 8320 Payami tries to raise some serious issues about Iran 's electoral process , 1 +152464 8320 Payami tries to raise some serious issues about Iran 's electoral process 2 +152465 8320 tries to raise some serious issues about Iran 's electoral process 2 +152466 8320 to raise some serious issues about Iran 's electoral process 2 +152467 8320 raise some serious issues about Iran 's electoral process 2 +152468 8320 some serious issues about Iran 's electoral process 2 +152469 8320 some serious issues 1 +152470 8320 serious issues 2 +152471 8320 about Iran 's electoral process 2 +152472 8320 Iran 's electoral process 2 +152473 8320 Iran 's 2 +152474 8320 electoral process 2 +152475 8320 electoral 2 +152476 8320 the result is a film that 's about as subtle as a party political broadcast 1 +152477 8320 is a film that 's about as subtle as a party political broadcast 1 +152478 8320 a film that 's about as subtle as a party political broadcast 1 +152479 8320 that 's about as subtle as a party political broadcast 1 +152480 8320 's about as subtle as a party political broadcast 2 +152481 8320 's about as subtle 2 +152482 8320 about as subtle 2 +152483 8320 as a party political broadcast 2 +152484 8320 a party political broadcast 1 +152485 8320 party political broadcast 2 +152486 8320 political broadcast 2 +152487 8320 broadcast 3 +152488 8321 The action here is unusually tame , the characters are too simplistic to maintain interest , and the plot offers few surprises . 1 +152489 8321 The action here is unusually tame , the characters are too simplistic to maintain interest , and the plot offers few surprises 0 +152490 8321 The action here is unusually tame , the characters are too simplistic to maintain interest , and 2 +152491 8321 The action here is unusually tame , the characters are too simplistic to maintain interest , 1 +152492 8321 The action here is unusually tame 1 +152493 8321 here is unusually tame 1 +152494 8321 is unusually tame 2 +152495 8321 unusually tame 1 +152496 8321 , the characters are too simplistic to maintain interest , 1 +152497 8321 the characters are too simplistic to maintain interest , 0 +152498 8321 the characters are too simplistic to maintain interest 1 +152499 8321 are too simplistic to maintain interest 1 +152500 8321 too simplistic to maintain interest 1 +152501 8321 simplistic to maintain interest 2 +152502 8321 to maintain interest 2 +152503 8321 maintain interest 2 +152504 8321 the plot offers few surprises 1 +152505 8321 offers few surprises 1 +152506 8321 few surprises 2 +152507 8322 The message is that even the most unlikely can link together to conquer all kinds of obstacles , whether they be of nature , of man or of one another . 2 +152508 8322 is that even the most unlikely can link together to conquer all kinds of obstacles , whether they be of nature , of man or of one another . 2 +152509 8322 is that even the most unlikely can link together to conquer all kinds of obstacles , whether they be of nature , of man or of one another 3 +152510 8322 that even the most unlikely can link together to conquer all kinds of obstacles , whether they be of nature , of man or of one another 3 +152511 8322 even the most unlikely can link together to conquer all kinds of obstacles , whether they be of nature , of man or of one another 3 +152512 8322 even the most unlikely 2 +152513 8322 even the 2 +152514 8322 can link together to conquer all kinds of obstacles , whether they be of nature , of man or of one another 2 +152515 8322 link together to conquer all kinds of obstacles , whether they be of nature , of man or of one another 3 +152516 8322 link together 3 +152517 8322 link 2 +152518 8322 to conquer all kinds of obstacles , whether they be of nature , of man or of one another 2 +152519 8322 conquer all kinds of obstacles , whether they be of nature , of man or of one another 3 +152520 8322 conquer all kinds of obstacles , 3 +152521 8322 conquer all kinds of obstacles 3 +152522 8322 all kinds of obstacles 1 +152523 8322 all kinds 2 +152524 8322 of obstacles 3 +152525 8322 whether they be of nature , of man or of one another 2 +152526 8322 they be of nature , of man or of one another 2 +152527 8322 be of nature , of man or of one another 2 +152528 8322 of nature , of man or of one another 2 +152529 8322 of nature 2 +152530 8322 , of man or of one another 2 +152531 8322 of man or of one another 2 +152532 8322 of man or 2 +152533 8322 of one another 2 +152534 8323 Merci pour le movie . 2 +152535 8323 Merci 2 +152536 8323 pour le movie . 2 +152537 8323 pour le movie 2 +152538 8323 pour le 2 +152539 8323 pour 2 +152540 8324 Devos and Cassel have tremendous chemistry -- their sexual and romantic tension , while never really vocalized , is palpable . 4 +152541 8324 Devos and Cassel have tremendous chemistry -- their sexual and romantic tension , while never really vocalized , is palpable 4 +152542 8324 Devos and Cassel have tremendous chemistry -- 3 +152543 8324 Devos and Cassel have tremendous chemistry 4 +152544 8324 Devos and Cassel 2 +152545 8324 Devos and 2 +152546 8324 Cassel 2 +152547 8324 have tremendous chemistry 3 +152548 8324 tremendous chemistry 4 +152549 8324 their sexual and romantic tension , while never really vocalized , is palpable 3 +152550 8324 their sexual and romantic tension 2 +152551 8324 sexual and romantic tension 3 +152552 8324 sexual and romantic 3 +152553 8324 , while never really vocalized , is palpable 2 +152554 8324 while never really vocalized , is palpable 2 +152555 8324 while never really vocalized 2 +152556 8324 never really vocalized 2 +152557 8324 really vocalized 3 +152558 8324 vocalized 2 +152559 8324 , is palpable 2 +152560 8324 is palpable 2 +152561 8325 Poignant and funny . 3 +152562 8325 Poignant and funny 4 +152563 8326 The overall vibe is druggy and self-indulgent , like a spring-break orgy for pretentious arts majors . 1 +152564 8326 The overall vibe 2 +152565 8326 overall vibe 2 +152566 8326 is druggy and self-indulgent , like a spring-break orgy for pretentious arts majors . 0 +152567 8326 is druggy and self-indulgent , like a spring-break orgy for pretentious arts majors 1 +152568 8326 druggy and self-indulgent , like a spring-break orgy for pretentious arts majors 1 +152569 8326 druggy and self-indulgent , 1 +152570 8326 druggy and self-indulgent 1 +152571 8326 druggy and 2 +152572 8326 like a spring-break orgy for pretentious arts majors 1 +152573 8326 a spring-break orgy for pretentious arts majors 2 +152574 8326 a spring-break orgy 2 +152575 8326 spring-break orgy 2 +152576 8326 spring-break 2 +152577 8326 for pretentious arts majors 1 +152578 8326 pretentious arts majors 2 +152579 8326 arts majors 2 +152580 8326 majors 2 +152581 8327 A glib but bouncy bit of sixties-style slickness in which the hero might wind up caught but the audience gets pure escapism . 3 +152582 8327 A glib but bouncy bit of sixties-style slickness in which the hero might wind up 3 +152583 8327 A glib but bouncy bit 3 +152584 8327 glib but bouncy bit 2 +152585 8327 glib but bouncy 3 +152586 8327 glib but 1 +152587 8327 of sixties-style slickness in which the hero might wind up 2 +152588 8327 sixties-style slickness in which the hero might wind up 3 +152589 8327 sixties-style slickness 3 +152590 8327 sixties-style 2 +152591 8327 slickness 2 +152592 8327 in which the hero might wind up 2 +152593 8327 the hero might wind up 2 +152594 8327 might wind up 2 +152595 8327 caught but the audience gets pure escapism . 2 +152596 8327 caught but the audience gets pure escapism 3 +152597 8327 but the audience gets pure escapism 2 +152598 8327 the audience gets pure escapism 3 +152599 8327 gets pure escapism 2 +152600 8327 pure escapism 3 +152601 8328 The storylines are woven together skilfully , the magnificent swooping aerial shots are breathtaking , and the overall experience is awesome . 4 +152602 8328 The storylines are woven together skilfully , the magnificent swooping aerial shots are breathtaking , and the overall experience is awesome 4 +152603 8328 The storylines are woven together skilfully , the magnificent swooping aerial shots are breathtaking , and 4 +152604 8328 The storylines are woven together skilfully , the magnificent swooping aerial shots are breathtaking , 4 +152605 8328 The storylines are woven together skilfully 4 +152606 8328 are woven together skilfully 4 +152607 8328 woven together skilfully 3 +152608 8328 skilfully 3 +152609 8328 , the magnificent swooping aerial shots are breathtaking , 4 +152610 8328 the magnificent swooping aerial shots are breathtaking , 3 +152611 8328 the magnificent swooping aerial shots are breathtaking 4 +152612 8328 the magnificent swooping aerial shots 4 +152613 8328 magnificent swooping aerial shots 3 +152614 8328 swooping aerial shots 2 +152615 8328 aerial shots 2 +152616 8328 aerial 2 +152617 8328 are breathtaking 4 +152618 8328 the overall experience is awesome 4 +152619 8328 the overall experience 2 +152620 8328 overall experience 2 +152621 8328 is awesome 3 +152622 8329 It finds no way to entertain or inspire its viewers . 1 +152623 8329 finds no way to entertain or inspire its viewers . 1 +152624 8329 finds no way to entertain or inspire its viewers 0 +152625 8329 no way to entertain or inspire its viewers 1 +152626 8329 way to entertain or inspire its viewers 3 +152627 8329 to entertain or inspire its viewers 3 +152628 8329 entertain or inspire its viewers 3 +152629 8329 entertain or inspire 2 +152630 8329 entertain or 3 +152631 8329 its viewers 2 +152632 8330 With an unusual protagonist -LRB- a kilt-wearing Jackson -RRB- and subject matter , the improbable `` Formula 51 '' is somewhat entertaining , but it could have been much stronger . 3 +152633 8330 With an unusual protagonist -LRB- a kilt-wearing Jackson -RRB- and subject matter , the improbable `` Formula 51 '' is somewhat entertaining , but it could have been much stronger 2 +152634 8330 With an unusual protagonist -LRB- a kilt-wearing Jackson -RRB- and subject matter , the improbable `` Formula 51 '' is somewhat entertaining , but 3 +152635 8330 With an unusual protagonist -LRB- a kilt-wearing Jackson -RRB- and subject matter , the improbable `` Formula 51 '' is somewhat entertaining , 3 +152636 8330 With an unusual protagonist -LRB- a kilt-wearing Jackson -RRB- and subject matter , the improbable `` Formula 51 '' is somewhat entertaining 3 +152637 8330 With an unusual protagonist -LRB- a kilt-wearing Jackson -RRB- and subject matter 2 +152638 8330 an unusual protagonist -LRB- a kilt-wearing Jackson -RRB- and subject matter 1 +152639 8330 an unusual protagonist -LRB- a kilt-wearing Jackson -RRB- and 2 +152640 8330 an unusual protagonist -LRB- a kilt-wearing Jackson -RRB- 2 +152641 8330 an unusual protagonist -LRB- a kilt-wearing Jackson 2 +152642 8330 an unusual protagonist -LRB- 2 +152643 8330 an unusual protagonist 2 +152644 8330 unusual protagonist 2 +152645 8330 a kilt-wearing Jackson 2 +152646 8330 kilt-wearing Jackson 1 +152647 8330 kilt-wearing 2 +152648 8330 , the improbable `` Formula 51 '' is somewhat entertaining 3 +152649 8330 the improbable `` Formula 51 '' is somewhat entertaining 3 +152650 8330 the improbable `` Formula 51 '' 2 +152651 8330 the improbable `` Formula 51 2 +152652 8330 the improbable `` 2 +152653 8330 the improbable 2 +152654 8330 is somewhat entertaining 3 +152655 8330 somewhat entertaining 2 +152656 8330 it could have been much stronger 2 +152657 8330 could have been much stronger 1 +152658 8330 have been much stronger 2 +152659 8330 been much stronger 2 +152660 8330 much stronger 3 +152661 8331 Director Elie Chouraqui , who co-wrote the script , catches the chaotic horror of war , but why bother if you 're going to subjugate truth to the tear-jerking demands of soap opera ? 1 +152662 8331 Director Elie Chouraqui , who co-wrote the script , 2 +152663 8331 Director Elie Chouraqui , who co-wrote the script 2 +152664 8331 Director Elie Chouraqui , 2 +152665 8331 Director Elie Chouraqui 2 +152666 8331 Elie Chouraqui 2 +152667 8331 Elie 2 +152668 8331 who co-wrote the script 2 +152669 8331 co-wrote the script 2 +152670 8331 co-wrote 2 +152671 8331 catches the chaotic horror of war , but why bother if you 're going to subjugate truth to the tear-jerking demands of soap opera ? 1 +152672 8331 catches the chaotic horror of war , but why bother if you 're going to subjugate truth to the tear-jerking demands of soap opera 1 +152673 8331 catches the chaotic horror 3 +152674 8331 the chaotic horror 1 +152675 8331 chaotic horror 2 +152676 8331 of war , but why bother if you 're going to subjugate truth to the tear-jerking demands of soap opera 2 +152677 8331 , but why bother if you 're going to subjugate truth to the tear-jerking demands of soap opera 1 +152678 8331 why bother if you 're going to subjugate truth to the tear-jerking demands of soap opera 1 +152679 8331 bother if you 're going to subjugate truth to the tear-jerking demands of soap opera 0 +152680 8331 if you 're going to subjugate truth to the tear-jerking demands of soap opera 1 +152681 8331 you 're going to subjugate truth to the tear-jerking demands of soap opera 1 +152682 8331 're going to subjugate truth to the tear-jerking demands of soap opera 1 +152683 8331 going to subjugate truth to the tear-jerking demands of soap opera 1 +152684 8331 to subjugate truth to the tear-jerking demands of soap opera 2 +152685 8331 subjugate truth to the tear-jerking demands of soap opera 2 +152686 8331 subjugate truth 3 +152687 8331 subjugate 2 +152688 8331 to the tear-jerking demands of soap opera 2 +152689 8331 the tear-jerking demands of soap opera 2 +152690 8331 the tear-jerking demands 3 +152691 8331 tear-jerking demands 2 +152692 8331 tear-jerking 3 +152693 8332 Is anyone else out there getting tired of the whole slo-mo , double-pistoled , ballistic-pyrotechnic Hong Kong action aesthetic ? 1 +152694 8332 Is anyone else out there getting tired of the whole slo-mo , double-pistoled , ballistic-pyrotechnic Hong Kong action aesthetic 0 +152695 8332 Is anyone else 2 +152696 8332 Is anyone 2 +152697 8332 out there getting tired of the whole slo-mo , double-pistoled , ballistic-pyrotechnic Hong Kong action aesthetic 2 +152698 8332 getting tired of the whole slo-mo , double-pistoled , ballistic-pyrotechnic Hong Kong action aesthetic 0 +152699 8332 tired of the whole slo-mo , double-pistoled , ballistic-pyrotechnic Hong Kong action aesthetic 1 +152700 8332 of the whole slo-mo , double-pistoled , ballistic-pyrotechnic Hong Kong action aesthetic 1 +152701 8332 the whole slo-mo , double-pistoled , ballistic-pyrotechnic Hong Kong action aesthetic 2 +152702 8332 the whole slo-mo , double-pistoled , ballistic-pyrotechnic Hong Kong action 1 +152703 8332 whole slo-mo , double-pistoled , ballistic-pyrotechnic Hong Kong action 1 +152704 8332 slo-mo , double-pistoled , ballistic-pyrotechnic Hong Kong action 2 +152705 8332 , double-pistoled , ballistic-pyrotechnic Hong Kong action 3 +152706 8332 double-pistoled , ballistic-pyrotechnic Hong Kong action 2 +152707 8332 double-pistoled 2 +152708 8332 , ballistic-pyrotechnic Hong Kong action 2 +152709 8332 ballistic-pyrotechnic Hong Kong action 2 +152710 8332 ballistic-pyrotechnic 2 +152711 8332 Hong Kong action 2 +152712 8332 Kong action 3 +152713 8333 It 's the humanizing stuff that will probably sink the film for anyone who does n't think about percentages all day long . 1 +152714 8333 's the humanizing stuff that will probably sink the film for anyone who does n't think about percentages all day long . 2 +152715 8333 's the humanizing stuff that will probably sink the film for anyone who does n't think about percentages all day long 2 +152716 8333 the humanizing stuff that will probably sink the film for anyone who does n't think about percentages all day long 1 +152717 8333 the humanizing stuff 2 +152718 8333 humanizing stuff 3 +152719 8333 that will probably sink the film for anyone who does n't think about percentages all day long 1 +152720 8333 will probably sink the film for anyone who does n't think about percentages all day long 1 +152721 8333 sink the film for anyone who does n't think about percentages all day long 1 +152722 8333 the film for anyone who does n't think about percentages all day long 2 +152723 8333 the film for anyone 3 +152724 8333 who does n't think about percentages all day long 3 +152725 8333 does n't think about percentages all day long 2 +152726 8333 think about percentages all day long 2 +152727 8333 think about percentages all day 2 +152728 8333 about percentages all day 2 +152729 8333 percentages all day 2 +152730 8333 percentages 2 +152731 8333 all day 2 +152732 8334 A moving essay about the specter of death , especially suicide . 3 +152733 8334 A moving essay about the specter of death , especially suicide 3 +152734 8334 A moving essay 2 +152735 8334 moving essay 2 +152736 8334 essay 2 +152737 8334 about the specter of death , especially suicide 2 +152738 8334 the specter of death , especially suicide 2 +152739 8334 the specter 2 +152740 8334 specter 2 +152741 8334 of death , especially suicide 2 +152742 8334 death , especially suicide 2 +152743 8334 death , especially 1 +152744 8334 death , 2 +152745 8334 suicide 1 +152746 8335 A disaster of a drama , saved only by its winged assailants . 1 +152747 8335 A disaster of a drama 0 +152748 8335 of a drama 2 +152749 8335 , saved only by its winged assailants . 2 +152750 8335 saved only by its winged assailants . 2 +152751 8335 saved only by its winged assailants 2 +152752 8335 saved only 2 +152753 8335 by its winged assailants 2 +152754 8335 its winged assailants 2 +152755 8335 winged assailants 2 +152756 8335 winged 2 +152757 8335 assailants 2 +152758 8336 When it comes out on video , then it 's the perfect cure for insomnia . 0 +152759 8336 , then it 's the perfect cure for insomnia . 1 +152760 8336 then it 's the perfect cure for insomnia . 0 +152761 8336 it 's the perfect cure for insomnia . 1 +152762 8336 's the perfect cure for insomnia . 0 +152763 8336 's the perfect cure for insomnia 1 +152764 8336 the perfect cure for insomnia 0 +152765 8336 the perfect cure 3 +152766 8336 perfect cure 2 +152767 8336 for insomnia 3 +152768 8337 A beguiling evocation of the quality that keeps Dickens evergreen : the exuberant openness with which he expresses our most basic emotions . 3 +152769 8337 A beguiling evocation of the quality that keeps Dickens evergreen : the exuberant openness with which he expresses our most basic emotions 4 +152770 8337 A beguiling evocation 3 +152771 8337 beguiling evocation 2 +152772 8337 of the quality that keeps Dickens evergreen : the exuberant openness with which he expresses our most basic emotions 4 +152773 8337 the quality that keeps Dickens evergreen : the exuberant openness with which he expresses our most basic emotions 4 +152774 8337 that keeps Dickens evergreen : the exuberant openness with which he expresses our most basic emotions 3 +152775 8337 keeps Dickens evergreen : the exuberant openness with which he expresses our most basic emotions 3 +152776 8337 Dickens evergreen : the exuberant openness with which he expresses our most basic emotions 4 +152777 8337 Dickens evergreen : 2 +152778 8337 Dickens evergreen 2 +152779 8337 evergreen 2 +152780 8337 the exuberant openness with which he expresses our most basic emotions 3 +152781 8337 the exuberant openness 3 +152782 8337 exuberant openness 3 +152783 8337 exuberant 4 +152784 8337 with which he expresses our most basic emotions 2 +152785 8337 he expresses our most basic emotions 3 +152786 8337 expresses our most basic emotions 3 +152787 8337 our most basic emotions 2 +152788 8337 most basic emotions 2 +152789 8338 The movie should be credited with remembering his victims . 2 +152790 8338 should be credited with remembering his victims . 2 +152791 8338 should be credited with remembering his victims 2 +152792 8338 be credited with remembering his victims 1 +152793 8338 credited with remembering his victims 2 +152794 8338 with remembering his victims 2 +152795 8338 remembering his victims 2 +152796 8339 Coupling disgracefully written dialogue with flailing bodily movements that substitute for acting , Circuit is the awkwardly paced soap opera-ish story . 1 +152797 8339 Coupling disgracefully written dialogue with flailing bodily movements that substitute for acting 1 +152798 8339 Coupling disgracefully written dialogue with flailing bodily movements 1 +152799 8339 Coupling disgracefully written dialogue 0 +152800 8339 Coupling 2 +152801 8339 disgracefully written dialogue 0 +152802 8339 disgracefully written 2 +152803 8339 disgracefully 1 +152804 8339 with flailing bodily movements 1 +152805 8339 flailing bodily movements 2 +152806 8339 bodily movements 2 +152807 8339 that substitute for acting 2 +152808 8339 that substitute 2 +152809 8339 , Circuit is the awkwardly paced soap opera-ish story . 1 +152810 8339 Circuit is the awkwardly paced soap opera-ish story . 0 +152811 8339 is the awkwardly paced soap opera-ish story . 1 +152812 8339 is the awkwardly paced soap opera-ish story 1 +152813 8339 the awkwardly paced soap opera-ish story 2 +152814 8339 awkwardly paced soap opera-ish story 0 +152815 8339 awkwardly paced 1 +152816 8339 soap opera-ish story 1 +152817 8339 opera-ish story 1 +152818 8340 Snipes relies too much on a scorchingly plotted dramatic scenario for its own good . 2 +152819 8340 relies too much on a scorchingly plotted dramatic scenario for its own good . 1 +152820 8340 relies too much on a scorchingly plotted dramatic scenario for its own good 0 +152821 8340 relies too much 2 +152822 8340 on a scorchingly plotted dramatic scenario for its own good 1 +152823 8340 a scorchingly plotted dramatic scenario for its own good 2 +152824 8340 a scorchingly plotted dramatic scenario 3 +152825 8340 scorchingly plotted dramatic scenario 1 +152826 8340 scorchingly plotted 2 +152827 8340 scorchingly 2 +152828 8340 dramatic scenario 2 +152829 8341 Kurys seems intimidated by both her subject matter and the period trappings of this debut venture into the heritage business . 1 +152830 8341 seems intimidated by both her subject matter and the period trappings of this debut venture into the heritage business . 3 +152831 8341 seems intimidated by both her subject matter and the period trappings of this debut venture into the heritage business 1 +152832 8341 intimidated by both her subject matter and the period trappings of this debut venture into the heritage business 1 +152833 8341 intimidated by both her subject matter and 1 +152834 8341 intimidated by both her subject matter 1 +152835 8341 intimidated 2 +152836 8341 by both her subject matter 2 +152837 8341 both her subject matter 2 +152838 8341 her subject matter 3 +152839 8341 the period trappings of this debut venture into the heritage business 2 +152840 8341 the period trappings of this debut venture 2 +152841 8341 the period trappings 2 +152842 8341 period trappings 1 +152843 8341 of this debut venture 2 +152844 8341 this debut venture 2 +152845 8341 debut venture 2 +152846 8341 into the heritage business 2 +152847 8341 the heritage business 2 +152848 8341 heritage business 2 +152849 8342 The Sweetest Thing , a romantic comedy with outrageous tendencies , may be a mess in a lot of ways . 2 +152850 8342 The Sweetest Thing , a romantic comedy with outrageous tendencies , 3 +152851 8342 The Sweetest Thing , a romantic comedy with outrageous tendencies 4 +152852 8342 The Sweetest Thing , 3 +152853 8342 a romantic comedy with outrageous tendencies 3 +152854 8342 with outrageous tendencies 1 +152855 8342 outrageous tendencies 1 +152856 8342 may be a mess in a lot of ways . 1 +152857 8342 may be a mess in a lot of ways 1 +152858 8342 be a mess in a lot of ways 1 +152859 8342 a mess in a lot of ways 1 +152860 8342 in a lot of ways 2 +152861 8342 a lot of ways 2 +152862 8342 of ways 2 +152863 8343 Has its moments -- and almost as many subplots . 3 +152864 8343 Has its moments -- and almost as many subplots 3 +152865 8343 Has its moments -- 2 +152866 8343 and almost as many subplots 2 +152867 8343 and almost 2 +152868 8343 as many subplots 2 +152869 8343 many subplots 3 +152870 8344 A chilly , brooding but quietly resonant psychological study of domestic tension and unhappiness . 3 +152871 8344 A chilly , brooding but quietly resonant psychological study of domestic tension and unhappiness 3 +152872 8344 A chilly , brooding but quietly 3 +152873 8344 A chilly , 2 +152874 8344 A chilly 2 +152875 8344 brooding but quietly 2 +152876 8344 brooding but 2 +152877 8344 resonant psychological study of domestic tension and unhappiness 2 +152878 8344 resonant psychological study 2 +152879 8344 of domestic tension and unhappiness 1 +152880 8344 domestic tension and unhappiness 1 +152881 8344 tension and unhappiness 2 +152882 8344 tension and 2 +152883 8344 unhappiness 2 +152884 8345 Smart and fun , but far more witty than it is wise . 3 +152885 8345 Smart and fun , but far more witty than it is wise 4 +152886 8345 Smart and fun , but far more witty 4 +152887 8345 Smart and fun 4 +152888 8345 , but far more witty 3 +152889 8345 far more witty 3 +152890 8345 than it is wise 2 +152891 8346 Succeeds where its recent predecessor miserably fails because it demands that you suffer the dreadfulness of war from both sides . 3 +152892 8346 Succeeds where its recent predecessor miserably 3 +152893 8346 where its recent predecessor miserably 1 +152894 8346 its recent predecessor miserably 1 +152895 8346 its recent predecessor 2 +152896 8346 recent predecessor 2 +152897 8346 miserably 0 +152898 8346 fails because it demands that you suffer the dreadfulness of war from both sides . 1 +152899 8346 fails because it demands that you suffer the dreadfulness of war from both sides 0 +152900 8346 because it demands that you suffer the dreadfulness of war from both sides 2 +152901 8346 it demands that you suffer the dreadfulness of war from both sides 3 +152902 8346 demands that you suffer the dreadfulness of war from both sides 1 +152903 8346 that you suffer the dreadfulness of war from both sides 2 +152904 8346 you suffer the dreadfulness of war from both sides 1 +152905 8346 suffer the dreadfulness of war from both sides 2 +152906 8346 suffer the dreadfulness of war 2 +152907 8346 the dreadfulness of war 2 +152908 8346 the dreadfulness 0 +152909 8346 dreadfulness 0 +152910 8346 from both sides 2 +152911 8347 A rare and lightly entertaining look behind the curtain that separates comics from the people laughing in the crowd . 4 +152912 8347 A rare and lightly entertaining 3 +152913 8347 rare and lightly entertaining 3 +152914 8347 lightly entertaining 3 +152915 8347 look behind the curtain that separates comics from the people laughing in the crowd . 3 +152916 8347 look behind the curtain that separates comics from the people laughing in the crowd 2 +152917 8347 behind the curtain that separates comics from the people laughing in the crowd 2 +152918 8347 the curtain that separates comics from the people laughing in the crowd 2 +152919 8347 the curtain 2 +152920 8347 curtain 2 +152921 8347 that separates comics from the people laughing in the crowd 2 +152922 8347 separates comics from the people laughing in the crowd 3 +152923 8347 separates comics 2 +152924 8347 separates 2 +152925 8347 from the people laughing in the crowd 3 +152926 8347 the people laughing in the crowd 3 +152927 8347 laughing in the crowd 3 +152928 8347 in the crowd 2 +152929 8347 the crowd 2 +152930 8348 High Crimes steals so freely from other movies and combines enough disparate types of films that it ca n't help but engage an audience . 3 +152931 8348 steals so freely from other movies and combines enough disparate types of films that it ca n't help but engage an audience . 2 +152932 8348 steals so freely from other movies and combines enough disparate types of films that it ca n't help but engage an audience 2 +152933 8348 steals so freely from other movies and combines enough disparate types of films 1 +152934 8348 steals so freely from other movies and 1 +152935 8348 steals so freely from other movies 1 +152936 8348 steals so freely 2 +152937 8348 so freely 3 +152938 8348 combines enough disparate types of films 2 +152939 8348 enough disparate types of films 2 +152940 8348 enough disparate types 2 +152941 8348 disparate types 2 +152942 8348 that it ca n't help but engage an audience 3 +152943 8348 it ca n't help but engage an audience 4 +152944 8348 ca n't help but engage an audience 3 +152945 8348 help but engage an audience 3 +152946 8348 help but engage 3 +152947 8348 help but 2 +152948 8349 Michel Piccoli 's moving performance is this films reason for being . 3 +152949 8349 Michel Piccoli 's moving performance 4 +152950 8349 Michel Piccoli 's 2 +152951 8349 moving performance 4 +152952 8349 is this films reason for being . 3 +152953 8349 is this films reason for being 2 +152954 8349 this films reason for being 2 +152955 8349 this films reason 2 +152956 8349 films reason 2 +152957 8350 Purposefully shocking in its eroticized gore , if unintentionally dull in its lack of poetic frissons . 0 +152958 8350 Purposefully shocking in its eroticized gore 2 +152959 8350 shocking in its eroticized gore 1 +152960 8350 in its eroticized gore 2 +152961 8350 its eroticized gore 2 +152962 8350 eroticized gore 2 +152963 8350 eroticized 2 +152964 8350 , if unintentionally dull in its lack of poetic frissons . 2 +152965 8350 if unintentionally dull in its lack of poetic frissons . 2 +152966 8350 if unintentionally dull in its lack of poetic frissons 1 +152967 8350 unintentionally dull in its lack of poetic frissons 2 +152968 8350 dull in its lack of poetic frissons 0 +152969 8350 in its lack of poetic frissons 1 +152970 8350 its lack of poetic frissons 1 +152971 8350 of poetic frissons 2 +152972 8350 poetic frissons 2 +152973 8351 An intimate contemplation of two marvelously messy lives . 3 +152974 8351 An intimate contemplation of two marvelously 4 +152975 8351 An intimate contemplation 3 +152976 8351 intimate contemplation 3 +152977 8351 of two marvelously 2 +152978 8351 two marvelously 3 +152979 8351 messy lives . 2 +152980 8351 lives . 2 +152981 8352 The party scenes deliver some tawdry kicks . 2 +152982 8352 The party scenes 2 +152983 8352 party scenes 2 +152984 8352 deliver some tawdry kicks . 2 +152985 8352 deliver some tawdry kicks 3 +152986 8352 some tawdry kicks 2 +152987 8352 tawdry kicks 2 +152988 8353 Meandering and glacially paced , and often just plain dull . 2 +152989 8353 Meandering and glacially paced , and often just plain dull 1 +152990 8353 glacially paced , and often just plain dull 0 +152991 8353 glacially 2 +152992 8353 paced , and often just plain dull 0 +152993 8353 paced , and often 2 +152994 8353 , and often 2 +152995 8353 just plain dull 1 +152996 8353 plain dull 2 +152997 8354 A fake street drama that keeps telling you things instead of showing them . 1 +152998 8354 A fake street drama that keeps telling you things instead of showing them 1 +152999 8354 A fake street drama that keeps telling you 1 +153000 8354 A fake street drama 1 +153001 8354 fake street drama 2 +153002 8354 street drama 2 +153003 8354 that keeps telling you 2 +153004 8354 keeps telling you 2 +153005 8354 things instead of showing them 2 +153006 8354 instead of showing them 2 +153007 8354 of showing them 2 +153008 8354 showing them 2 +153009 8355 A quietly moving look back at what it was to be Iranian-American in 1979 . 3 +153010 8355 A quietly moving 3 +153011 8355 quietly moving 3 +153012 8355 look back at what it was to be Iranian-American in 1979 . 2 +153013 8355 look back at what it was to be Iranian-American in 1979 2 +153014 8355 at what it was to be Iranian-American in 1979 2 +153015 8355 what it was to be Iranian-American in 1979 2 +153016 8355 it was to be Iranian-American in 1979 2 +153017 8355 was to be Iranian-American in 1979 2 +153018 8355 to be Iranian-American in 1979 2 +153019 8355 be Iranian-American in 1979 2 +153020 8355 Iranian-American in 1979 2 +153021 8355 Iranian-American 2 +153022 8355 in 1979 2 +153023 8355 1979 2 +153024 8356 Confuses its message with an ultimate desire to please , and contorting itself into an idea of expectation is the last thing any of these three actresses , nor their characters , deserve . 0 +153025 8356 Confuses its message with an ultimate desire to please , and contorting itself into an idea of expectation 1 +153026 8356 Confuses its message with an ultimate desire to please , and 1 +153027 8356 Confuses its message with an ultimate desire to please , 2 +153028 8356 Confuses its message with an ultimate desire to please 1 +153029 8356 Confuses its message with an ultimate desire 1 +153030 8356 Confuses its message 1 +153031 8356 Confuses 2 +153032 8356 with an ultimate desire 2 +153033 8356 an ultimate desire 2 +153034 8356 ultimate desire 2 +153035 8356 contorting itself into an idea of expectation 1 +153036 8356 contorting itself 2 +153037 8356 contorting 2 +153038 8356 into an idea of expectation 2 +153039 8356 an idea of expectation 3 +153040 8356 is the last thing any of these three actresses , nor their characters , deserve . 1 +153041 8356 is the last thing any of these three actresses , nor their characters , deserve 1 +153042 8356 the last thing any of these three actresses , nor their characters , deserve 2 +153043 8356 any of these three actresses , nor their characters , deserve 1 +153044 8356 any of these three actresses , nor their characters , 2 +153045 8356 any of these three actresses , nor their characters 2 +153046 8356 any of these three actresses , nor 2 +153047 8356 any of these three actresses , 2 +153048 8356 any of these three actresses 2 +153049 8356 of these three actresses 2 +153050 8356 these three actresses 2 +153051 8357 ... a good film that must have baffled the folks in the marketing department . 4 +153052 8357 a good film that must have baffled the folks in the marketing department . 3 +153053 8357 a good film that must have baffled the folks in the marketing department 3 +153054 8357 that must have baffled the folks in the marketing department 2 +153055 8357 must have baffled the folks in the marketing department 1 +153056 8357 have baffled the folks in the marketing department 2 +153057 8357 baffled the folks in the marketing department 1 +153058 8357 baffled the folks 2 +153059 8357 in the marketing department 2 +153060 8357 the marketing department 2 +153061 8357 marketing department 2 +153062 8357 marketing 2 +153063 8358 ... its solemn pretension prevents us from sharing the awe in which it holds itself . 1 +153064 8358 its solemn pretension prevents us from sharing the awe in which it holds itself . 2 +153065 8358 its solemn pretension 1 +153066 8358 solemn pretension 1 +153067 8358 prevents us from sharing the awe in which it holds itself . 2 +153068 8358 prevents us from sharing the awe in which it holds itself 1 +153069 8358 prevents us 2 +153070 8358 from sharing the awe in which it holds itself 1 +153071 8358 sharing the awe in which it holds itself 2 +153072 8358 the awe in which it holds itself 3 +153073 8358 the awe 3 +153074 8358 in which it holds itself 2 +153075 8358 it holds itself 3 +153076 8358 holds itself 3 +153077 8359 but ` Why ? ' 2 +153078 8359 ` Why ? ' 2 +153079 8359 Why ? ' 2 +153080 8360 Denis forges out of the theories of class - based rage and sisterly obsession a razor-sided tuning fork that rings with cultural , sexual and social discord . 2 +153081 8360 Denis forges out of the theories of class - based rage and sisterly obsession a razor-sided tuning fork that rings with cultural , sexual and social discord 2 +153082 8360 Denis forges out of the theories of class - 3 +153083 8360 Denis forges out of the theories of class 2 +153084 8360 forges out of the theories of class 2 +153085 8360 forges out 2 +153086 8360 forges 2 +153087 8360 of the theories of class 2 +153088 8360 the theories of class 2 +153089 8360 the theories 2 +153090 8360 of class 2 +153091 8360 based rage and sisterly obsession a razor-sided tuning fork that rings with cultural , sexual and social discord 3 +153092 8360 based rage and sisterly obsession 2 +153093 8360 rage and sisterly obsession 2 +153094 8360 sisterly obsession 2 +153095 8360 sisterly 2 +153096 8360 a razor-sided tuning fork that rings with cultural , sexual and social discord 1 +153097 8360 a razor-sided tuning 2 +153098 8360 razor-sided tuning 3 +153099 8360 razor-sided 2 +153100 8360 tuning 2 +153101 8360 fork that rings with cultural , sexual and social discord 2 +153102 8360 fork that rings 2 +153103 8360 that rings 2 +153104 8360 with cultural , sexual and social discord 2 +153105 8360 cultural , sexual and social discord 1 +153106 8360 cultural , sexual and social 2 +153107 8360 , sexual and social 2 +153108 8360 sexual and social 2 +153109 8361 If you value your time and money , find an escape clause and avoid seeing this trite , predictable rehash . 0 +153110 8361 If you value your time and money 2 +153111 8361 you value your time and money 3 +153112 8361 value your time and money 2 +153113 8361 your time and money 2 +153114 8361 time and money 2 +153115 8361 , find an escape clause and avoid seeing this trite , predictable rehash . 1 +153116 8361 find an escape clause and avoid seeing this trite , predictable rehash . 0 +153117 8361 find an escape clause and avoid seeing this trite , predictable rehash 1 +153118 8361 find an escape clause and 2 +153119 8361 find an escape clause 1 +153120 8361 an escape clause 2 +153121 8361 escape clause 2 +153122 8361 avoid seeing this trite , predictable rehash 0 +153123 8361 seeing this trite , predictable rehash 1 +153124 8361 this trite , predictable rehash 1 +153125 8361 trite , predictable rehash 1 +153126 8361 , predictable rehash 1 +153127 8361 predictable rehash 1 +153128 8362 While most films these days are about nothing , this film seems to be about everything that 's plaguing the human spirit in a relentlessly globalizing world . 3 +153129 8362 While most films these days are about nothing 2 +153130 8362 most films these days are about nothing 2 +153131 8362 these days are about nothing 1 +153132 8362 are about nothing 2 +153133 8362 , this film seems to be about everything that 's plaguing the human spirit in a relentlessly globalizing world . 2 +153134 8362 this film seems to be about everything that 's plaguing the human spirit in a relentlessly globalizing world . 2 +153135 8362 seems to be about everything that 's plaguing the human spirit in a relentlessly globalizing world . 2 +153136 8362 seems to be about everything that 's plaguing the human spirit in a relentlessly globalizing world 1 +153137 8362 to be about everything that 's plaguing the human spirit in a relentlessly globalizing world 2 +153138 8362 be about everything that 's plaguing the human spirit in a relentlessly globalizing world 3 +153139 8362 about everything that 's plaguing the human spirit in a relentlessly globalizing world 2 +153140 8362 everything that 's plaguing the human spirit in a relentlessly globalizing world 2 +153141 8362 that 's plaguing the human spirit in a relentlessly globalizing world 1 +153142 8362 's plaguing the human spirit in a relentlessly globalizing world 2 +153143 8362 plaguing the human spirit in a relentlessly globalizing world 3 +153144 8362 plaguing 2 +153145 8362 the human spirit in a relentlessly globalizing world 2 +153146 8362 in a relentlessly globalizing world 2 +153147 8362 a relentlessly globalizing world 3 +153148 8362 relentlessly globalizing world 2 +153149 8362 relentlessly globalizing 1 +153150 8362 globalizing 2 +153151 8363 She boxes these women 's souls right open for us . 3 +153152 8363 boxes these women 's souls right open for us . 3 +153153 8363 boxes these women 's souls right open for us 3 +153154 8363 boxes these women 's souls right open 2 +153155 8363 boxes 2 +153156 8363 these women 's souls right open 3 +153157 8363 these women 's souls 2 +153158 8363 right open 2 +153159 8364 In his U.S. debut , Mr. Schnitzler proves himself a deft pace master and stylist . 4 +153160 8364 In his U.S. debut 2 +153161 8364 his U.S. debut 2 +153162 8364 U.S. debut 2 +153163 8364 , Mr. Schnitzler proves himself a deft pace master and stylist . 4 +153164 8364 Mr. Schnitzler proves himself a deft pace master and stylist . 4 +153165 8364 Mr. Schnitzler 2 +153166 8364 proves himself a deft pace master and stylist . 4 +153167 8364 proves himself a deft pace master and stylist 3 +153168 8364 himself a deft pace master and stylist 3 +153169 8364 a deft pace master and stylist 4 +153170 8364 a deft pace master and 2 +153171 8364 a deft pace master 3 +153172 8364 deft pace master 2 +153173 8364 pace master 2 +153174 8364 stylist 2 +153175 8365 Sex With Strangers is fascinating ... 4 +153176 8365 is fascinating ... 3 +153177 8366 It made me feel unclean , and I 'm the guy who liked There 's Something About Mary and both American Pie movies . 0 +153178 8366 It made me feel unclean , and I 'm the guy who liked There 's Something About Mary and both American Pie movies 0 +153179 8366 It made me feel unclean , and 1 +153180 8366 It made me feel unclean , 1 +153181 8366 It made me feel unclean 1 +153182 8366 made me feel unclean 1 +153183 8366 me feel unclean 0 +153184 8366 feel unclean 2 +153185 8366 unclean 1 +153186 8366 I 'm the guy who liked There 's Something About Mary and both American Pie movies 2 +153187 8366 'm the guy who liked There 's Something About Mary and both American Pie movies 2 +153188 8366 the guy who liked There 's Something About Mary and both American Pie movies 2 +153189 8366 the guy 2 +153190 8366 who liked There 's Something About Mary and both American Pie movies 3 +153191 8366 liked There 's Something About Mary and both American Pie movies 2 +153192 8366 There 's Something About Mary and both American Pie movies 3 +153193 8366 's Something About Mary and both American Pie movies 3 +153194 8366 Something About Mary and both American Pie movies 2 +153195 8366 About Mary and both American Pie movies 2 +153196 8366 Mary and both American Pie movies 2 +153197 8366 Mary and 2 +153198 8366 both American Pie movies 2 +153199 8366 American Pie movies 2 +153200 8366 Pie movies 2 +153201 8367 Anyone who 's ever suffered under a martinet music instructor has no doubt fantasized about what an unhappy , repressed and twisted personal life their tormentor deserved . 2 +153202 8367 Anyone who 's ever suffered under a martinet music instructor 1 +153203 8367 who 's ever suffered under a martinet music instructor 2 +153204 8367 's ever suffered under a martinet music instructor 2 +153205 8367 suffered under a martinet music instructor 2 +153206 8367 under a martinet music instructor 2 +153207 8367 a martinet music instructor 2 +153208 8367 martinet music instructor 2 +153209 8367 martinet 2 +153210 8367 music instructor 2 +153211 8367 instructor 2 +153212 8367 has no doubt fantasized about what an unhappy , repressed and twisted personal life their tormentor deserved . 1 +153213 8367 has no doubt fantasized about what an unhappy , repressed and twisted personal life their tormentor deserved 2 +153214 8367 has no doubt 2 +153215 8367 fantasized about what an unhappy , repressed and twisted personal life their tormentor deserved 2 +153216 8367 fantasized about what 2 +153217 8367 about what 2 +153218 8367 an unhappy , repressed and twisted personal life their tormentor deserved 2 +153219 8367 an unhappy , repressed and twisted personal life 1 +153220 8367 unhappy , repressed and twisted personal life 2 +153221 8367 unhappy , repressed and twisted 1 +153222 8367 , repressed and twisted 2 +153223 8367 repressed and twisted 2 +153224 8367 repressed and 2 +153225 8367 personal life 2 +153226 8367 their tormentor deserved 2 +153227 8367 their tormentor 2 +153228 8367 tormentor 2 +153229 8368 Just a collection of this and that -- whatever fills time -- with no unified whole . 1 +153230 8368 Just a collection of this and that -- whatever fills time -- with no unified whole 0 +153231 8368 Just a collection 2 +153232 8368 of this and that -- whatever fills time -- with no unified whole 1 +153233 8368 this and that -- whatever fills time -- with no unified whole 0 +153234 8368 this and that -- whatever fills time -- 2 +153235 8368 this and that 2 +153236 8368 this and 2 +153237 8368 -- whatever fills time -- 2 +153238 8368 whatever fills time -- 1 +153239 8368 whatever fills time 2 +153240 8368 fills time 1 +153241 8368 with no unified whole 1 +153242 8368 no unified whole 2 +153243 8368 unified whole 2 +153244 8368 unified 3 +153245 8369 And it 's a lousy one at that . 0 +153246 8369 it 's a lousy one at that . 0 +153247 8369 's a lousy one at that . 1 +153248 8369 's a lousy one at that 1 +153249 8369 a lousy one at that 1 +153250 8369 a lousy one 0 +153251 8369 lousy one 1 +153252 8370 Not one moment in the enterprise did n't make me want to lie down in a dark room with something cool to my brow . 2 +153253 8370 Not one moment in the enterprise 2 +153254 8370 Not one moment 2 +153255 8370 did n't make me want to lie down in a dark room with something cool to my brow . 2 +153256 8370 did n't make me want to lie down in a dark room with something cool to my brow 2 +153257 8370 make me want to lie down in a dark room with something cool to my brow 2 +153258 8370 me want to lie down in a dark room with something cool to my brow 2 +153259 8370 want to lie down in a dark room with something cool to my brow 1 +153260 8370 to lie down in a dark room with something cool to my brow 2 +153261 8370 lie down in a dark room with something cool to my brow 2 +153262 8370 lie down in a dark room with something cool 1 +153263 8370 lie down 2 +153264 8370 in a dark room with something cool 3 +153265 8370 a dark room with something cool 3 +153266 8370 a dark room 2 +153267 8370 dark room 3 +153268 8370 with something cool 3 +153269 8370 something cool 4 +153270 8370 to my brow 2 +153271 8370 my brow 2 +153272 8371 It gets bogged down by hit-and-miss topical humour before getting to the truly good stuff . 2 +153273 8371 gets bogged down by hit-and-miss topical humour before getting to the truly good stuff . 1 +153274 8371 gets bogged down by hit-and-miss topical humour before getting to the truly good stuff 2 +153275 8371 gets bogged down by hit-and-miss topical humour 1 +153276 8371 bogged down by hit-and-miss topical humour 1 +153277 8371 down by hit-and-miss topical humour 1 +153278 8371 by hit-and-miss topical humour 2 +153279 8371 hit-and-miss topical humour 2 +153280 8371 topical humour 3 +153281 8371 before getting to the truly good stuff 3 +153282 8371 getting to the truly good stuff 3 +153283 8371 to the truly good stuff 3 +153284 8371 the truly good stuff 3 +153285 8371 truly good stuff 4 +153286 8371 truly good 4 +153287 8372 Between bursts of automatic gunfire , the story offers a trenchant critique of capitalism . 3 +153288 8372 Between bursts of automatic gunfire 2 +153289 8372 bursts of automatic gunfire 2 +153290 8372 of automatic gunfire 2 +153291 8372 automatic gunfire 2 +153292 8372 automatic 2 +153293 8372 , the story offers a trenchant critique of capitalism . 3 +153294 8372 the story offers a trenchant critique of capitalism . 2 +153295 8372 offers a trenchant critique of capitalism . 2 +153296 8372 offers a trenchant critique of capitalism 3 +153297 8372 a trenchant critique of capitalism 2 +153298 8372 a trenchant critique 2 +153299 8372 trenchant critique 2 +153300 8372 of capitalism 2 +153301 8372 capitalism 2 +153302 8373 In addition to gluing you to the edge of your seat , Changing Lanes is also a film of freshness , imagination and insight . 4 +153303 8373 In addition to gluing you to the edge of your seat 4 +153304 8373 addition to gluing you to the edge of your seat 3 +153305 8373 to gluing you to the edge of your seat 3 +153306 8373 gluing you to the edge of your seat 4 +153307 8373 gluing you 2 +153308 8373 gluing 2 +153309 8373 to the edge of your seat 3 +153310 8373 , Changing Lanes is also a film of freshness , imagination and insight . 3 +153311 8373 Changing Lanes is also a film of freshness , imagination and insight . 4 +153312 8373 is also a film of freshness , imagination and insight . 4 +153313 8373 is also a film of freshness , imagination and insight 3 +153314 8373 a film of freshness , imagination and insight 3 +153315 8373 of freshness , imagination and insight 4 +153316 8373 freshness , imagination and insight 3 +153317 8373 , imagination and insight 3 +153318 8373 imagination and insight 3 +153319 8374 Lasker 's canny , meditative script distances sex and love , as Byron and Luther ... realize they ca n't get no satisfaction without the latter . 3 +153320 8374 Lasker 's canny , meditative script distances sex and love , as Byron and Luther ... 3 +153321 8374 Lasker 's canny , meditative script distances sex and love , as Byron and Luther 3 +153322 8374 Lasker 's canny , meditative script distances sex and love , 2 +153323 8374 Lasker 's canny , meditative script distances sex and love 2 +153324 8374 Lasker 's 2 +153325 8374 Lasker 2 +153326 8374 canny , meditative script distances sex and love 2 +153327 8374 canny , meditative 3 +153328 8374 , meditative 3 +153329 8374 script distances sex and love 2 +153330 8374 distances sex and love 2 +153331 8374 sex and love 2 +153332 8374 as Byron and Luther 2 +153333 8374 Byron and Luther 3 +153334 8374 Byron and 2 +153335 8374 Byron 2 +153336 8374 Luther 2 +153337 8374 realize they ca n't get no satisfaction without the latter . 2 +153338 8374 realize they ca n't get no satisfaction without the latter 2 +153339 8374 they ca n't get no satisfaction without the latter 2 +153340 8374 ca n't get no satisfaction without the latter 1 +153341 8374 get no satisfaction without the latter 2 +153342 8374 get no satisfaction 1 +153343 8374 no satisfaction 1 +153344 8374 satisfaction 3 +153345 8374 without the latter 2 +153346 8375 This angst-ridden territory was covered earlier and much better in Ordinary People . 1 +153347 8375 This angst-ridden territory 2 +153348 8375 angst-ridden territory 2 +153349 8375 angst-ridden 1 +153350 8375 was covered earlier and much better in Ordinary People . 2 +153351 8375 was covered earlier and much better in Ordinary People 1 +153352 8375 covered earlier and much better in Ordinary People 2 +153353 8375 covered earlier and much better 1 +153354 8375 covered 2 +153355 8375 earlier and much better 2 +153356 8375 and much better 3 +153357 8375 in Ordinary People 2 +153358 8375 Ordinary People 2 +153359 8376 A smart little indie . 3 +153360 8376 smart little indie . 3 +153361 8376 little indie . 2 +153362 8376 indie . 3 +153363 8377 My only wish is that Celebi could take me back to a time before I saw this movie and I could just skip it . 0 +153364 8377 My only wish is that Celebi could take me back to a time before I saw this movie and I could just skip it 0 +153365 8377 My only wish is that Celebi could take me back to a time before I saw this movie and 1 +153366 8377 My only wish is that Celebi could take me back to a time before I saw this movie 2 +153367 8377 My only wish 2 +153368 8377 only wish 2 +153369 8377 is that Celebi could take me back to a time before I saw this movie 1 +153370 8377 that Celebi could take me back to a time before I saw this movie 1 +153371 8377 Celebi could take me back to a time before I saw this movie 2 +153372 8377 Celebi 2 +153373 8377 could take me back to a time before I saw this movie 1 +153374 8377 take me back to a time before I saw this movie 1 +153375 8377 take me back to a time 3 +153376 8377 take me 2 +153377 8377 before I saw this movie 2 +153378 8377 I saw this movie 2 +153379 8377 I could just skip it 0 +153380 8377 could just skip it 2 +153381 8378 Imagine Kevin Smith , the blasphemous bad boy of suburban Jersey , if he were stripped of most of his budget and all of his sense of humor . 0 +153382 8378 Imagine Kevin Smith , the blasphemous bad boy of suburban Jersey , if he were stripped of most of his budget and all of his sense of humor 0 +153383 8378 Imagine Kevin Smith , the blasphemous bad boy of suburban Jersey , 2 +153384 8378 Imagine Kevin Smith , the blasphemous bad boy of suburban Jersey 2 +153385 8378 Kevin Smith , the blasphemous bad boy of suburban Jersey 2 +153386 8378 Kevin Smith , 2 +153387 8378 Kevin Smith 2 +153388 8378 the blasphemous bad boy of suburban Jersey 2 +153389 8378 the blasphemous bad boy 2 +153390 8378 blasphemous bad boy 2 +153391 8378 blasphemous bad 0 +153392 8378 of suburban Jersey 2 +153393 8378 suburban Jersey 2 +153394 8378 if he were stripped of most of his budget and all of his sense of humor 2 +153395 8378 he were stripped of most of his budget and all of his sense of humor 0 +153396 8378 were stripped of most of his budget and all of his sense of humor 0 +153397 8378 stripped of most of his budget and all of his sense of humor 1 +153398 8378 of most of his budget and all of his sense of humor 2 +153399 8378 most of his budget and all of his sense of humor 2 +153400 8378 most of his budget and 2 +153401 8378 most of his budget 1 +153402 8378 of his budget 2 +153403 8378 his budget 2 +153404 8378 all of his sense of humor 2 +153405 8378 of his sense of humor 2 +153406 8379 this film is not a love letter for the slain rappers , it 's a taunt - a call for justice for two crimes from which many of us have not yet recovered . 2 +153407 8379 this film is not a love letter for the slain rappers 2 +153408 8379 is not a love letter for the slain rappers 2 +153409 8379 a love letter for the slain rappers 3 +153410 8379 a love letter 3 +153411 8379 love letter 3 +153412 8379 for the slain rappers 1 +153413 8379 the slain rappers 2 +153414 8379 slain rappers 1 +153415 8379 slain 1 +153416 8379 , it 's a taunt - a call for justice for two crimes from which many of us have not yet recovered . 1 +153417 8379 it 's a taunt - a call for justice for two crimes from which many of us have not yet recovered . 2 +153418 8379 's a taunt - a call for justice for two crimes from which many of us have not yet recovered . 2 +153419 8379 's a taunt - a call for justice for two crimes from which many of us have not yet recovered 1 +153420 8379 a taunt - a call for justice for two crimes from which many of us have not yet recovered 2 +153421 8379 a taunt - 2 +153422 8379 a taunt 1 +153423 8379 taunt 2 +153424 8379 a call for justice for two crimes from which many of us have not yet recovered 2 +153425 8379 for justice for two crimes from which many of us have not yet recovered 2 +153426 8379 justice for two crimes from which many of us have not yet recovered 2 +153427 8379 for two crimes from which many of us have not yet recovered 1 +153428 8379 two crimes from which many of us have not yet recovered 2 +153429 8379 two crimes 2 +153430 8379 from which many of us have not yet recovered 2 +153431 8379 many of us have not yet recovered 1 +153432 8379 have not yet recovered 1 +153433 8379 have not yet 2 +153434 8379 recovered 2 +153435 8380 Whether you like it or not is basically a matter of taste . 2 +153436 8380 Whether you like it or not 2 +153437 8380 you like it or not 2 +153438 8380 like it or not 2 +153439 8380 like it or 3 +153440 8380 is basically a matter of taste . 2 +153441 8380 is basically a matter of taste 2 +153442 8381 The best way to describe it is as a cross between Paul Thomas Anderson 's Magnolia and David Lynch 's Mulholland Dr. 2 +153443 8381 to describe it is as a cross between Paul Thomas Anderson 's Magnolia and David Lynch 's Mulholland Dr. 2 +153444 8381 describe it is as a cross between Paul Thomas Anderson 's Magnolia and David Lynch 's Mulholland Dr. 3 +153445 8381 it is as a cross between Paul Thomas Anderson 's Magnolia and David Lynch 's Mulholland Dr. 2 +153446 8381 is as a cross between Paul Thomas Anderson 's Magnolia and David Lynch 's Mulholland Dr. 2 +153447 8381 as a cross between Paul Thomas Anderson 's Magnolia and David Lynch 's Mulholland Dr. 2 +153448 8381 a cross between Paul Thomas Anderson 's Magnolia and David Lynch 's Mulholland Dr. 2 +153449 8381 between Paul Thomas Anderson 's Magnolia and David Lynch 's Mulholland Dr. 2 +153450 8381 Paul Thomas Anderson 's Magnolia and David Lynch 's Mulholland Dr. 2 +153451 8381 Paul Thomas Anderson 's Magnolia and 2 +153452 8381 Paul Thomas Anderson 's Magnolia 2 +153453 8381 Paul Thomas Anderson 's 2 +153454 8381 Thomas Anderson 's 2 +153455 8381 Anderson 's 2 +153456 8381 David Lynch 's Mulholland Dr. 2 +153457 8381 David Lynch 's 2 +153458 8381 Lynch 's 2 +153459 8381 Mulholland Dr. 2 +153460 8381 Mulholland 2 +153461 8382 harmlessly 3 +153462 8382 of b-ball fantasy 2 +153463 8382 b-ball fantasy 2 +153464 8382 b-ball 2 +153465 8382 fit for filling in during the real NBA 's off-season 2 +153466 8382 for filling in during the real NBA 's off-season 2 +153467 8382 filling in during the real NBA 's off-season 2 +153468 8382 filling in 2 +153469 8382 during the real NBA 's off-season 2 +153470 8382 the real NBA 's off-season 2 +153471 8382 the real NBA 's 2 +153472 8382 real NBA 's 2 +153473 8382 NBA 's 2 +153474 8382 off-season 1 +153475 8383 After a while , the only way for a reasonably intelligent person to get through The Country Bears is to ponder how a whole segment of pop-music history has been allowed to get wet , fuzzy and sticky . 1 +153476 8383 , the only way for a reasonably intelligent person to get through The Country Bears is to ponder how a whole segment of pop-music history has been allowed to get wet , fuzzy and sticky . 0 +153477 8383 the only way for a reasonably intelligent person to get through The Country Bears is to ponder how a whole segment of pop-music history has been allowed to get wet , fuzzy and sticky . 1 +153478 8383 the only way for a reasonably intelligent person to get through The Country Bears 0 +153479 8383 for a reasonably intelligent person to get through The Country Bears 1 +153480 8383 a reasonably intelligent person to get through The Country Bears 2 +153481 8383 reasonably intelligent person to get through The Country Bears 2 +153482 8383 reasonably intelligent 3 +153483 8383 person to get through The Country Bears 2 +153484 8383 to get through The Country Bears 2 +153485 8383 get through The Country Bears 2 +153486 8383 through The Country Bears 2 +153487 8383 is to ponder how a whole segment of pop-music history has been allowed to get wet , fuzzy and sticky . 1 +153488 8383 is to ponder how a whole segment of pop-music history has been allowed to get wet , fuzzy and sticky 1 +153489 8383 to ponder how a whole segment of pop-music history has been allowed to get wet , fuzzy and sticky 1 +153490 8383 ponder how a whole segment of pop-music history has been allowed to get wet , fuzzy and sticky 2 +153491 8383 how a whole segment of pop-music history has been allowed to get wet , fuzzy and sticky 2 +153492 8383 a whole segment of pop-music history has been allowed to get wet , fuzzy and sticky 1 +153493 8383 a whole segment of pop-music history 2 +153494 8383 a whole segment 2 +153495 8383 whole segment 2 +153496 8383 of pop-music history 2 +153497 8383 pop-music history 2 +153498 8383 pop-music 2 +153499 8383 has been allowed to get wet , fuzzy and sticky 1 +153500 8383 been allowed to get wet , fuzzy and sticky 1 +153501 8383 allowed to get wet , fuzzy and sticky 2 +153502 8383 to get wet , fuzzy and sticky 2 +153503 8383 get wet , fuzzy and sticky 2 +153504 8383 wet , fuzzy and sticky 2 +153505 8383 , fuzzy and sticky 2 +153506 8383 fuzzy and sticky 2 +153507 8383 fuzzy and 2 +153508 8384 A powerful performance from Mel Gibson and a brutal 90-minute battle sequence that does everything but issue you a dog-tag and an M-16 . 4 +153509 8384 A powerful performance from Mel Gibson and a brutal 90-minute battle sequence that does everything but issue you a dog-tag and an M-16 4 +153510 8384 A powerful performance 3 +153511 8384 powerful performance 4 +153512 8384 from Mel Gibson and a brutal 90-minute battle sequence that does everything but issue you a dog-tag and an M-16 3 +153513 8384 Mel Gibson and a brutal 90-minute battle sequence that does everything but issue you a dog-tag and an M-16 2 +153514 8384 Mel Gibson and 2 +153515 8384 a brutal 90-minute battle sequence that does everything but issue you a dog-tag and an M-16 3 +153516 8384 a brutal 90-minute battle sequence 3 +153517 8384 brutal 90-minute battle sequence 1 +153518 8384 90-minute battle sequence 2 +153519 8384 battle sequence 2 +153520 8384 that does everything but issue you a dog-tag and an M-16 3 +153521 8384 does everything but issue you a dog-tag and an M-16 2 +153522 8384 does everything but 2 +153523 8384 does everything 3 +153524 8384 issue you a dog-tag and an M-16 1 +153525 8384 you a dog-tag and an M-16 2 +153526 8384 a dog-tag and an M-16 2 +153527 8384 a dog-tag and 2 +153528 8384 a dog-tag 2 +153529 8384 dog-tag 2 +153530 8384 an M-16 2 +153531 8384 M-16 2 +153532 8385 So much about the film is loopy and ludicrous ... that it could have been a hoot in a bad-movie way if the laborious pacing and endless exposition had been tightened . 1 +153533 8385 much about the film is loopy and ludicrous ... that it could have been a hoot in a bad-movie way if the laborious pacing and endless exposition had been tightened . 1 +153534 8385 is loopy and ludicrous ... that it could have been a hoot in a bad-movie way if the laborious pacing and endless exposition had been tightened . 0 +153535 8385 is loopy and ludicrous ... that it could have been a hoot in a bad-movie way if the laborious pacing and endless exposition had been tightened 1 +153536 8385 is loopy and ludicrous ... 1 +153537 8385 is loopy and ludicrous 0 +153538 8385 loopy and ludicrous 2 +153539 8385 loopy and 1 +153540 8385 that it could have been a hoot in a bad-movie way if the laborious pacing and endless exposition had been tightened 1 +153541 8385 it could have been a hoot in a bad-movie way if the laborious pacing and endless exposition had been tightened 1 +153542 8385 could have been a hoot in a bad-movie way if the laborious pacing and endless exposition had been tightened 2 +153543 8385 have been a hoot in a bad-movie way if the laborious pacing and endless exposition had been tightened 2 +153544 8385 been a hoot in a bad-movie way if the laborious pacing and endless exposition had been tightened 1 +153545 8385 been a hoot in a bad-movie way 1 +153546 8385 a hoot in a bad-movie way 1 +153547 8385 in a bad-movie way 1 +153548 8385 a bad-movie way 0 +153549 8385 bad-movie way 1 +153550 8385 bad-movie 0 +153551 8385 if the laborious pacing and endless exposition had been tightened 1 +153552 8385 the laborious pacing and endless exposition had been tightened 2 +153553 8385 the laborious pacing and endless exposition 2 +153554 8385 the laborious pacing and 1 +153555 8385 the laborious pacing 1 +153556 8385 laborious pacing 0 +153557 8385 endless exposition 1 +153558 8385 had been tightened 2 +153559 8385 been tightened 2 +153560 8385 tightened 2 +153561 8386 By the time the plot grinds itself out in increasingly incoherent fashion , you might be wishing for a watch that makes time go faster rather than the other way around . 0 +153562 8386 By the time the plot grinds itself out in increasingly incoherent fashion 0 +153563 8386 the plot grinds itself out in increasingly incoherent fashion 1 +153564 8386 grinds itself out in increasingly incoherent fashion 0 +153565 8386 grinds itself out 1 +153566 8386 grinds itself 1 +153567 8386 grinds 2 +153568 8386 in increasingly incoherent fashion 0 +153569 8386 increasingly incoherent fashion 1 +153570 8386 increasingly incoherent 1 +153571 8386 , you might be wishing for a watch that makes time go faster rather than the other way around . 0 +153572 8386 you might be wishing for a watch that makes time go faster rather than the other way around . 1 +153573 8386 might be wishing for a watch that makes time go faster rather than the other way around . 0 +153574 8386 might be wishing for a watch that makes time go faster rather than the other way around 1 +153575 8386 be wishing for a watch that makes time go faster rather than the other way around 0 +153576 8386 wishing for a watch that makes time go faster rather than the other way around 2 +153577 8386 wishing for a watch that makes time go faster rather than the other way 0 +153578 8386 for a watch that makes time go faster rather than the other way 2 +153579 8386 a watch that makes time go faster rather than the other way 2 +153580 8386 a watch that makes time go faster rather than 3 +153581 8386 a watch that makes time go faster 2 +153582 8386 a watch 3 +153583 8386 that makes time go faster 2 +153584 8386 makes time go faster 2 +153585 8386 time go faster 2 +153586 8386 the other way 2 +153587 8386 other way 2 +153588 8387 Director Tom Shadyac and star Kevin Costner glumly mishandle the story 's promising premise of a physician who needs to heal himself . 1 +153589 8387 Director Tom Shadyac and star Kevin Costner 2 +153590 8387 Tom Shadyac and star Kevin Costner 2 +153591 8387 Shadyac and star Kevin Costner 2 +153592 8387 and star Kevin Costner 2 +153593 8387 star Kevin Costner 2 +153594 8387 glumly mishandle the story 's promising premise of a physician who needs to heal himself . 1 +153595 8387 mishandle the story 's promising premise of a physician who needs to heal himself . 1 +153596 8387 mishandle the story 's promising premise of a physician who needs to heal himself 1 +153597 8387 mishandle 2 +153598 8387 the story 's promising premise of a physician who needs to heal himself 2 +153599 8387 the story 's promising premise 3 +153600 8387 promising premise 3 +153601 8387 of a physician who needs to heal himself 1 +153602 8387 a physician who needs to heal himself 2 +153603 8387 a physician 2 +153604 8387 physician 2 +153605 8387 who needs to heal himself 2 +153606 8387 needs to heal himself 2 +153607 8387 to heal himself 2 +153608 8387 heal himself 2 +153609 8388 It 's a big idea , but the film itself is small and shriveled . 1 +153610 8388 It 's a big idea , but the film itself is small and shriveled 1 +153611 8388 It 's a big idea , but 2 +153612 8388 It 's a big idea , 2 +153613 8388 It 's a big idea 3 +153614 8388 's a big idea 2 +153615 8388 a big idea 2 +153616 8388 big idea 2 +153617 8388 the film itself is small and shriveled 1 +153618 8388 itself is small and shriveled 1 +153619 8388 is small and shriveled 1 +153620 8388 is small and 2 +153621 8388 is small 2 +153622 8388 shriveled 2 +153623 8389 Some fine acting , but ultimately a movie with no reason for being . 1 +153624 8389 Some fine 2 +153625 8389 acting , but ultimately a movie with no reason for being . 1 +153626 8389 acting , but ultimately a movie with no reason for being 1 +153627 8389 acting , but ultimately 2 +153628 8389 a movie with no reason for being 0 +153629 8389 with no reason for being 1 +153630 8389 no reason for being 1 +153631 8390 The movie has no respect for laws , political correctness or common decency , but it displays something more important : respect for its flawed , crazy people . 2 +153632 8390 The movie has no respect for laws , political correctness or common decency , but it displays something more important : respect for its flawed , crazy people 2 +153633 8390 The movie has no respect for laws , political correctness or common decency , but 1 +153634 8390 The movie has no respect for laws , political correctness or common decency , 1 +153635 8390 The movie has no respect for laws , political correctness or common decency 0 +153636 8390 has no respect for laws , political correctness or common decency 1 +153637 8390 no respect for laws , political correctness or common decency 1 +153638 8390 no respect 1 +153639 8390 for laws , political correctness or common decency 2 +153640 8390 laws , political correctness or common decency 2 +153641 8390 laws , political correctness or 2 +153642 8390 laws , political correctness 2 +153643 8390 laws , 2 +153644 8390 common decency 2 +153645 8390 it displays something more important : respect for its flawed , crazy people 3 +153646 8390 displays something more important : respect for its flawed , crazy people 2 +153647 8390 displays something more important : 3 +153648 8390 displays something more important 4 +153649 8390 displays something 2 +153650 8390 respect for its flawed , crazy people 2 +153651 8390 for its flawed , crazy people 2 +153652 8390 its flawed , crazy people 1 +153653 8390 flawed , crazy people 1 +153654 8390 flawed , crazy 1 +153655 8390 , crazy 2 +153656 8391 The film lapses too often into sugary sentiment and withholds delivery on the pell-mell pyrotechnics its punchy style promises . 1 +153657 8391 The film lapses 1 +153658 8391 film lapses 1 +153659 8391 too often into sugary sentiment and withholds delivery on the pell-mell pyrotechnics its punchy style promises . 0 +153660 8391 too often into sugary sentiment and withholds delivery on the pell-mell pyrotechnics its punchy style promises 1 +153661 8391 too often into sugary sentiment and withholds delivery on the pell-mell 1 +153662 8391 into sugary sentiment and withholds delivery on the pell-mell 1 +153663 8391 sugary sentiment and withholds delivery on the pell-mell 1 +153664 8391 sugary sentiment and withholds delivery 1 +153665 8391 sentiment and withholds delivery 1 +153666 8391 and withholds delivery 1 +153667 8391 withholds delivery 2 +153668 8391 withholds 2 +153669 8391 on the pell-mell 2 +153670 8391 the pell-mell 2 +153671 8391 pell-mell 2 +153672 8391 pyrotechnics its punchy style promises 3 +153673 8391 its punchy style promises 3 +153674 8391 punchy style promises 2 +153675 8391 style promises 2 +153676 8392 One well-timed explosion in a movie can be a knockout , but a hundred of them can be numbing . 1 +153677 8392 One well-timed explosion in a movie can be a knockout , but a hundred of them can be numbing 1 +153678 8392 One well-timed explosion in a movie can be a knockout , but 2 +153679 8392 One well-timed explosion in a movie can be a knockout , 3 +153680 8392 One well-timed explosion in a movie can be a knockout 3 +153681 8392 One well-timed explosion in a movie 3 +153682 8392 One well-timed explosion 2 +153683 8392 well-timed explosion 3 +153684 8392 well-timed 3 +153685 8392 can be a knockout 3 +153686 8392 be a knockout 2 +153687 8392 a hundred of them can be numbing 1 +153688 8392 a hundred of them 2 +153689 8392 a hundred 2 +153690 8392 can be numbing 1 +153691 8392 be numbing 1 +153692 8393 A dark , dull thriller with a parting shot that misfires . 2 +153693 8393 A dark , dull thriller with a parting 1 +153694 8393 A dark , dull thriller 1 +153695 8393 dark , dull thriller 0 +153696 8393 , dull thriller 1 +153697 8393 dull thriller 1 +153698 8393 with a parting 2 +153699 8393 a parting 2 +153700 8393 parting 2 +153701 8393 shot that misfires . 1 +153702 8393 shot that misfires 2 +153703 8393 that misfires 1 +153704 8393 misfires 1 +153705 8394 Audacious-impossible yet compelling ... 3 +153706 8394 Audacious-impossible yet compelling 3 +153707 8394 Audacious-impossible 1 +153708 8394 yet compelling 3 +153709 8395 In its own floundering way , it gets to you . 3 +153710 8395 In its own floundering way 2 +153711 8395 its own floundering way 2 +153712 8395 own floundering way 1 +153713 8395 floundering way 1 +153714 8395 floundering 1 +153715 8395 , it gets to you . 3 +153716 8395 it gets to you . 3 +153717 8395 gets to you . 2 +153718 8395 gets to you 2 +153719 8396 Presents nothing special and , until the final act , nothing overtly disagreeable . 1 +153720 8396 Presents nothing special and , until the final act , nothing overtly disagreeable 1 +153721 8396 Presents nothing special and , until the final act , nothing 1 +153722 8396 nothing special and , until the final act , nothing 1 +153723 8396 nothing special and , until the final act , 1 +153724 8396 nothing special and 2 +153725 8396 , until the final act , 2 +153726 8396 until the final act , 2 +153727 8396 until the final act 3 +153728 8396 the final act 2 +153729 8396 overtly disagreeable 1 +153730 8396 disagreeable 1 +153731 8397 Let 's see , a haunted house , a haunted ship , what 's next ... Ghost Blimp ? 1 +153732 8397 Let 's see , a haunted house , a haunted ship , what 's next ... Ghost Blimp 1 +153733 8397 Let 's see , a haunted house , a haunted ship , what 's next ... 2 +153734 8397 Let 's see , a haunted house , a haunted ship , what 's next 1 +153735 8397 see , a haunted house , a haunted ship , what 's next 2 +153736 8397 see , 2 +153737 8397 a haunted house , a haunted ship , what 's next 2 +153738 8397 a haunted house , a haunted ship , 2 +153739 8397 a haunted house , a haunted ship 2 +153740 8397 a haunted house , 1 +153741 8397 a haunted house 2 +153742 8397 a haunted ship 2 +153743 8397 haunted ship 2 +153744 8397 what 's next 2 +153745 8397 Ghost Blimp 2 +153746 8397 Blimp 1 +153747 8398 The material and the production itself are little more than routine . 1 +153748 8398 The material and the production 3 +153749 8398 The material and 2 +153750 8398 itself are little more than routine . 1 +153751 8398 are little more than routine . 2 +153752 8398 are little more than routine 2 +153753 8398 little more than routine 1 +153754 8398 than routine 2 +153755 8399 -LRB- Haynes ' -RRB- homage to such films as `` All That Heaven Allows '' and `` Imitation of Life '' transcends them . 2 +153756 8399 -LRB- Haynes ' -RRB- homage to such films as `` All That Heaven Allows '' and `` Imitation of Life '' 3 +153757 8399 -LRB- Haynes ' -RRB- homage to such films as `` All That Heaven Allows '' and `` Imitation of Life 3 +153758 8399 -LRB- Haynes ' -RRB- homage 2 +153759 8399 Haynes ' -RRB- homage 2 +153760 8399 to such films as `` All That Heaven Allows '' and `` Imitation of Life 2 +153761 8399 such films as `` All That Heaven Allows '' and `` Imitation of Life 2 +153762 8399 such films as `` All That Heaven Allows '' and `` Imitation 2 +153763 8399 such films 2 +153764 8399 as `` All That Heaven Allows '' and `` Imitation 2 +153765 8399 `` All That Heaven Allows '' and `` Imitation 2 +153766 8399 All That Heaven Allows '' and `` Imitation 2 +153767 8399 All That Heaven Allows '' and `` 2 +153768 8399 All That Heaven Allows '' and 2 +153769 8399 All That Heaven Allows '' 3 +153770 8399 All That Heaven Allows 2 +153771 8399 That Heaven Allows 3 +153772 8399 Heaven Allows 2 +153773 8399 transcends them . 2 +153774 8399 transcends them 3 +153775 8400 Nobody seems to have cared much about any aspect of it , from its cheesy screenplay to the grayish quality of its lighting to its last-minute , haphazard theatrical release . 0 +153776 8400 seems to have cared much about any aspect of it , from its cheesy screenplay to the grayish quality of its lighting to its last-minute , haphazard theatrical release . 0 +153777 8400 seems to have cared much about any aspect of it , from its cheesy screenplay to the grayish quality of its lighting to its last-minute , haphazard theatrical release 1 +153778 8400 to have cared much about any aspect of it , from its cheesy screenplay to the grayish quality of its lighting to its last-minute , haphazard theatrical release 0 +153779 8400 have cared much about any aspect of it , from its cheesy screenplay to the grayish quality of its lighting to its last-minute , haphazard theatrical release 0 +153780 8400 cared much about any aspect of it , from its cheesy screenplay to the grayish quality of its lighting to its last-minute , haphazard theatrical release 0 +153781 8400 cared much about any aspect of it , from its cheesy screenplay to the grayish quality of its lighting 1 +153782 8400 cared much about any aspect of it , from its cheesy screenplay 1 +153783 8400 cared 2 +153784 8400 much about any aspect of it , from its cheesy screenplay 1 +153785 8400 about any aspect of it , from its cheesy screenplay 2 +153786 8400 about any aspect of it , 2 +153787 8400 about any aspect of it 2 +153788 8400 any aspect of it 2 +153789 8400 any aspect 2 +153790 8400 from its cheesy screenplay 1 +153791 8400 its cheesy screenplay 1 +153792 8400 cheesy screenplay 1 +153793 8400 to the grayish quality of its lighting 1 +153794 8400 the grayish quality of its lighting 2 +153795 8400 the grayish quality 2 +153796 8400 grayish quality 1 +153797 8400 grayish 1 +153798 8400 of its lighting 2 +153799 8400 its lighting 2 +153800 8400 to its last-minute , haphazard theatrical release 1 +153801 8400 its last-minute , haphazard theatrical release 2 +153802 8400 last-minute , haphazard theatrical release 2 +153803 8400 last-minute 1 +153804 8400 , haphazard theatrical release 1 +153805 8400 haphazard theatrical release 1 +153806 8401 A movie that 's just plain awful but still manages to entertain on a guilty-pleasure , so-bad-it 's - funny level . 2 +153807 8401 A movie that 's just plain awful but still 0 +153808 8401 that 's just plain awful but still 0 +153809 8401 's just plain awful but still 0 +153810 8401 just plain awful but still 0 +153811 8401 just plain awful but 0 +153812 8401 just plain awful 0 +153813 8401 plain awful 0 +153814 8401 manages to entertain on a guilty-pleasure , so-bad-it 's - funny level . 2 +153815 8401 manages to entertain on a guilty-pleasure , so-bad-it 's - funny level 3 +153816 8401 to entertain on a guilty-pleasure , so-bad-it 's - funny level 3 +153817 8401 entertain on a guilty-pleasure , so-bad-it 's - funny level 2 +153818 8401 on a guilty-pleasure , so-bad-it 's - funny level 2 +153819 8401 a guilty-pleasure , so-bad-it 's - funny level 3 +153820 8401 a guilty-pleasure , 3 +153821 8401 a guilty-pleasure 3 +153822 8401 so-bad-it 's - funny level 2 +153823 8401 - funny level 3 +153824 8401 funny level 3 +153825 8402 A good documentary can make interesting a subject you thought would leave you cold . 3 +153826 8402 A good documentary 4 +153827 8402 good documentary 3 +153828 8402 can make interesting a subject you thought would leave you cold . 2 +153829 8402 can make interesting a subject you thought would leave you cold 3 +153830 8402 make interesting a subject you thought would leave you cold 3 +153831 8402 make interesting 3 +153832 8402 a subject you thought would leave you cold 2 +153833 8402 a subject 2 +153834 8402 you thought would leave you cold 1 +153835 8402 thought would leave you cold 1 +153836 8402 would leave you cold 1 +153837 8402 leave you cold 1 +153838 8402 you cold 2 +153839 8403 As self-aware movies go , Who is Cletis Tout ? 2 +153840 8403 As self-aware movies go 2 +153841 8403 self-aware movies go 2 +153842 8403 self-aware movies 2 +153843 8404 Britney Spears ' phoniness is nothing compared to the movie 's contrived , lame screenplay and listless direction . 1 +153844 8404 Britney Spears ' phoniness 1 +153845 8404 is nothing compared to the movie 's contrived , lame screenplay and listless direction . 0 +153846 8404 is nothing compared to the movie 's contrived , lame screenplay and listless direction 0 +153847 8404 nothing compared to the movie 's contrived , lame screenplay and listless direction 0 +153848 8404 compared to the movie 's contrived , lame screenplay and listless direction 1 +153849 8404 to the movie 's contrived , lame screenplay and listless direction 0 +153850 8404 the movie 's contrived , lame screenplay and listless direction 0 +153851 8404 the movie 's contrived , lame screenplay and 0 +153852 8404 the movie 's contrived , lame screenplay 0 +153853 8404 contrived , lame screenplay 1 +153854 8404 , lame screenplay 1 +153855 8404 lame screenplay 1 +153856 8404 listless direction 1 +153857 8405 Nothing can detract from the affection of that moral favorite : friends will be friends through thick and thin . 3 +153858 8405 Nothing can detract from the affection of that moral favorite : friends will be friends through thick and thin 3 +153859 8405 Nothing can detract from the affection of that moral favorite : 3 +153860 8405 Nothing can detract from the affection of that moral favorite 3 +153861 8405 can detract from the affection of that moral favorite 1 +153862 8405 detract from the affection of that moral favorite 1 +153863 8405 from the affection of that moral favorite 2 +153864 8405 the affection of that moral favorite 3 +153865 8405 the affection 2 +153866 8405 of that moral favorite 3 +153867 8405 that moral favorite 2 +153868 8405 moral favorite 3 +153869 8405 friends will be friends through thick and thin 3 +153870 8405 will be friends through thick and thin 3 +153871 8405 be friends through thick and thin 2 +153872 8405 be friends 2 +153873 8405 through thick and thin 2 +153874 8405 thick and thin 2 +153875 8405 thick and 2 +153876 8406 The film ... presents classic moral-condundrum drama : What would you have done to survive ? 3 +153877 8406 presents classic moral-condundrum drama : What would you have done to survive ? 2 +153878 8406 classic moral-condundrum drama : What would you have done to survive ? 1 +153879 8406 classic moral-condundrum drama : 2 +153880 8406 classic moral-condundrum drama 2 +153881 8406 moral-condundrum drama 2 +153882 8406 moral-condundrum 2 +153883 8406 What would you have done to survive ? 2 +153884 8406 would you have done to survive ? 2 +153885 8406 would you have done to survive 2 +153886 8406 have done to survive 2 +153887 8406 done to survive 2 +153888 8407 Terminally brain dead production . 0 +153889 8407 Terminally brain dead production 0 +153890 8407 Terminally brain 2 +153891 8407 dead production 1 +153892 8408 An interesting look behind the scenes of Chicago-based rock group Wilco ... 3 +153893 8408 An interesting look behind the scenes of Chicago-based rock group Wilco 2 +153894 8408 behind the scenes of Chicago-based rock group Wilco 3 +153895 8408 the scenes of Chicago-based rock group Wilco 2 +153896 8408 of Chicago-based rock group Wilco 2 +153897 8408 Chicago-based rock group Wilco 2 +153898 8408 Chicago-based 2 +153899 8408 rock group Wilco 2 +153900 8408 group Wilco 2 +153901 8409 Has nothing good to speak about other than the fact that it is relatively short , tries its best to hide the fact that Seagal 's overweight and out of shape . 1 +153902 8409 Has nothing good to speak about other than the fact that it is relatively short 1 +153903 8409 good to speak about other than the fact that it is relatively short 0 +153904 8409 to speak about other than the fact that it is relatively short 1 +153905 8409 speak about other than the fact that it is relatively short 2 +153906 8409 speak about other than the fact 2 +153907 8409 speak about other 2 +153908 8409 about other 2 +153909 8409 than the fact 2 +153910 8409 that it is relatively short 2 +153911 8409 it is relatively short 2 +153912 8409 is relatively short 2 +153913 8409 , tries its best to hide the fact that Seagal 's overweight and out of shape . 2 +153914 8409 tries its best to hide the fact that Seagal 's overweight and out of shape . 1 +153915 8409 tries its best to hide the fact that Seagal 's overweight and out of shape 1 +153916 8409 tries its best 3 +153917 8409 to hide the fact that Seagal 's overweight and out of shape 1 +153918 8409 hide the fact that Seagal 's overweight and out of shape 1 +153919 8409 hide the fact 2 +153920 8409 that Seagal 's overweight and out of shape 1 +153921 8409 Seagal 's overweight and out of shape 2 +153922 8409 's overweight and out of shape 2 +153923 8409 overweight and out of shape 0 +153924 8409 overweight and out 1 +153925 8409 overweight and 2 +153926 8409 overweight 2 +153927 8409 of shape 3 +153928 8410 A winning and wildly fascinating work . 3 +153929 8410 A winning and wildly fascinating work 3 +153930 8410 winning and wildly fascinating work 4 +153931 8410 winning and wildly fascinating 3 +153932 8410 winning and 2 +153933 8410 wildly fascinating 3 +153934 8411 After watching it , you can only love the players it brings to the fore for the gifted but no-nonsense human beings they are and for the still-inestimable contribution they have made to our shared history . 3 +153935 8411 After watching it 2 +153936 8411 , you can only love the players it brings to the fore for the gifted but no-nonsense human beings they are and for the still-inestimable contribution they have made to our shared history . 3 +153937 8411 you can only love the players it brings to the fore for the gifted but no-nonsense human beings they are and for the still-inestimable contribution they have made to our shared history . 3 +153938 8411 can only love the players it brings to the fore for the gifted but no-nonsense human beings they are and for the still-inestimable contribution they have made to our shared history . 3 +153939 8411 can only love the players it brings to the fore for the gifted but no-nonsense human beings they are and for the still-inestimable contribution they have made to our shared history 3 +153940 8411 love the players it brings to the fore for the gifted but no-nonsense human beings they are and for the still-inestimable contribution they have made to our shared history 4 +153941 8411 the players it brings to the fore for the gifted but no-nonsense human beings they are and for the still-inestimable contribution they have made to our shared history 3 +153942 8411 it brings to the fore for the gifted but no-nonsense human beings they are and for the still-inestimable contribution they have made to our shared history 4 +153943 8411 brings to the fore for the gifted but no-nonsense human beings they are and for the still-inestimable contribution they have made to our shared history 3 +153944 8411 to the fore for the gifted but no-nonsense human beings they are and for the still-inestimable contribution they have made to our shared history 3 +153945 8411 to the fore for the gifted 2 +153946 8411 the fore for the gifted 2 +153947 8411 the fore 2 +153948 8411 fore 2 +153949 8411 for the gifted 2 +153950 8411 the gifted 2 +153951 8411 but no-nonsense human beings they are and for the still-inestimable contribution they have made to our shared history 3 +153952 8411 but no-nonsense human beings they are and 3 +153953 8411 but no-nonsense human beings they are 2 +153954 8411 no-nonsense human beings they are 2 +153955 8411 no-nonsense human beings 2 +153956 8411 for the still-inestimable contribution they have made to our shared history 4 +153957 8411 the still-inestimable contribution they have made to our shared history 4 +153958 8411 the still-inestimable contribution 3 +153959 8411 still-inestimable contribution 4 +153960 8411 still-inestimable 2 +153961 8411 they have made to our shared history 2 +153962 8411 have made to our shared history 2 +153963 8411 made to our shared history 2 +153964 8411 to our shared history 2 +153965 8411 our shared history 2 +153966 8411 shared history 2 +153967 8412 Yet it 's not quite the genre-busting film it 's been hyped to be because it plays everything too safe . 1 +153968 8412 it 's not quite the genre-busting film it 's been hyped to be because it plays everything too safe . 1 +153969 8412 's not quite the genre-busting film it 's been hyped to be because it plays everything too safe . 1 +153970 8412 's not quite the genre-busting film it 's been hyped to be because it plays everything too safe 2 +153971 8412 quite the genre-busting film it 's been hyped to be because it plays everything too safe 2 +153972 8412 quite the genre-busting film 3 +153973 8412 the genre-busting film 2 +153974 8412 genre-busting film 4 +153975 8412 genre-busting 4 +153976 8412 it 's been hyped to be because it plays everything too safe 1 +153977 8412 's been hyped to be because it plays everything too safe 1 +153978 8412 been hyped to be because it plays everything too safe 1 +153979 8412 hyped to be because it plays everything too safe 2 +153980 8412 to be because it plays everything too safe 1 +153981 8412 be because it plays everything too safe 2 +153982 8412 because it plays everything too safe 1 +153983 8412 it plays everything too safe 1 +153984 8412 plays everything too safe 2 +153985 8412 everything too safe 1 +153986 8412 too safe 1 +153987 8413 The film is a blunt indictment , part of a perhaps surreal campaign to bring Kissinger to trial for crimes against humanity . 2 +153988 8413 is a blunt indictment , part of a perhaps surreal campaign to bring Kissinger to trial for crimes against humanity . 2 +153989 8413 is a blunt indictment , part of a perhaps surreal campaign to bring Kissinger to trial for crimes against humanity 2 +153990 8413 a blunt indictment , part of a perhaps surreal campaign to bring Kissinger to trial for crimes against humanity 2 +153991 8413 a blunt indictment , 2 +153992 8413 a blunt indictment 2 +153993 8413 blunt indictment 2 +153994 8413 part of a perhaps surreal campaign to bring Kissinger to trial for crimes against humanity 2 +153995 8413 part of a perhaps surreal campaign 2 +153996 8413 of a perhaps surreal campaign 2 +153997 8413 a perhaps surreal campaign 2 +153998 8413 perhaps surreal campaign 2 +153999 8413 surreal campaign 2 +154000 8413 to bring Kissinger to trial for crimes against humanity 2 +154001 8413 bring Kissinger to trial for crimes against humanity 2 +154002 8413 bring Kissinger 2 +154003 8413 to trial for crimes against humanity 2 +154004 8413 trial for crimes against humanity 1 +154005 8413 for crimes against humanity 3 +154006 8413 crimes against humanity 1 +154007 8413 against humanity 1 +154008 8414 Intelligent , caustic take on a great writer and dubious human being . 3 +154009 8414 Intelligent , caustic 3 +154010 8414 , caustic 2 +154011 8414 take on a great writer and dubious human being . 2 +154012 8414 take on a great writer and dubious human being 3 +154013 8414 on a great writer and dubious human being 2 +154014 8414 a great writer and dubious human being 3 +154015 8414 a great writer and 3 +154016 8414 a great writer 3 +154017 8414 great writer 4 +154018 8414 dubious human being 1 +154019 8415 The whole mildly pleasant outing -- the R rating is for brief nudity and a grisly corpse -- remains aloft not on its own self-referential hot air , but on the inspired performance of Tim Allen . 2 +154020 8415 The whole mildly pleasant outing -- the R rating is for brief nudity and a grisly corpse -- 3 +154021 8415 The whole mildly pleasant outing 3 +154022 8415 whole mildly pleasant outing 3 +154023 8415 mildly pleasant outing 3 +154024 8415 mildly pleasant 3 +154025 8415 -- the R rating is for brief nudity and a grisly corpse -- 2 +154026 8415 the R rating is for brief nudity and a grisly corpse -- 1 +154027 8415 the R rating is for brief nudity and a grisly corpse 1 +154028 8415 the R rating 2 +154029 8415 R rating 2 +154030 8415 is for brief nudity and a grisly corpse 2 +154031 8415 for brief nudity and a grisly corpse 1 +154032 8415 brief nudity and a grisly corpse 2 +154033 8415 brief nudity and 2 +154034 8415 brief nudity 2 +154035 8415 a grisly corpse 1 +154036 8415 grisly corpse 0 +154037 8415 remains aloft not on its own self-referential hot air , but on the inspired performance of Tim Allen . 3 +154038 8415 remains aloft not on its own self-referential hot air , but on the inspired performance of Tim Allen 3 +154039 8415 remains aloft 2 +154040 8415 aloft 2 +154041 8415 not on its own self-referential hot air , but on the inspired performance of Tim Allen 3 +154042 8415 on its own self-referential hot air , but on the inspired performance of Tim Allen 3 +154043 8415 on its own self-referential hot air 1 +154044 8415 its own self-referential hot air 2 +154045 8415 own self-referential hot air 1 +154046 8415 self-referential hot air 0 +154047 8415 self-referential 2 +154048 8415 hot air 1 +154049 8415 , but on the inspired performance of Tim Allen 3 +154050 8415 on the inspired performance of Tim Allen 2 +154051 8415 the inspired performance of Tim Allen 4 +154052 8415 the inspired performance 4 +154053 8415 inspired performance 4 +154054 8415 of Tim Allen 2 +154055 8415 Tim Allen 2 +154056 8416 Gondry 's direction is adequate ... but what gives Human Nature its unique feel is Kaufman 's script . 3 +154057 8416 Gondry 's direction is adequate ... but what gives Human Nature its unique feel is Kaufman 's script 3 +154058 8416 Gondry 's direction is adequate ... 2 +154059 8416 Gondry 's direction is adequate 3 +154060 8416 Gondry 's direction 2 +154061 8416 Gondry 's 2 +154062 8416 is adequate 3 +154063 8416 but what gives Human Nature its unique feel is Kaufman 's script 3 +154064 8416 what gives Human Nature its unique feel is Kaufman 's script 3 +154065 8416 what gives Human Nature its unique feel 3 +154066 8416 gives Human Nature its unique feel 3 +154067 8416 gives Human Nature 2 +154068 8416 its unique feel 3 +154069 8416 unique feel 3 +154070 8416 is Kaufman 's script 2 +154071 8417 This is a shrewd and effective film from a director who understands how to create and sustain a mood . 3 +154072 8417 is a shrewd and effective film from a director who understands how to create and sustain a mood . 3 +154073 8417 is a shrewd and effective film from a director who understands how to create and sustain a mood 3 +154074 8417 a shrewd and effective film from a director who understands how to create and sustain a mood 3 +154075 8417 a shrewd and effective film 3 +154076 8417 shrewd and effective film 3 +154077 8417 and effective film 3 +154078 8417 effective film 4 +154079 8417 from a director who understands how to create and sustain a mood 3 +154080 8417 a director who understands how to create and sustain a mood 4 +154081 8417 who understands how to create and sustain a mood 3 +154082 8417 understands how to create and sustain a mood 4 +154083 8417 how to create and sustain a mood 2 +154084 8417 to create and sustain a mood 2 +154085 8417 create and sustain a mood 3 +154086 8417 create and sustain 3 +154087 8417 create and 2 +154088 8418 If you can swallow its absurdities and crudities Lagaan really is enormously good fun . 3 +154089 8418 If you can swallow its absurdities and crudities 1 +154090 8418 you can swallow its absurdities and crudities 2 +154091 8418 can swallow its absurdities and crudities 2 +154092 8418 swallow its absurdities and crudities 1 +154093 8418 its absurdities and crudities 1 +154094 8418 absurdities and crudities 2 +154095 8418 crudities 2 +154096 8418 Lagaan really is enormously good fun . 4 +154097 8418 really is enormously good fun . 4 +154098 8418 is enormously good fun . 4 +154099 8418 is enormously good fun 4 +154100 8418 enormously good fun 4 +154101 8418 enormously good 4 +154102 8419 Cheap , vulgar dialogue and a plot that crawls along at a snail 's pace . 1 +154103 8419 Cheap , vulgar dialogue and a plot that crawls along at a snail 's pace 0 +154104 8419 Cheap , 1 +154105 8419 vulgar dialogue and a plot that crawls along at a snail 's pace 0 +154106 8419 vulgar dialogue and 1 +154107 8419 vulgar dialogue 1 +154108 8419 a plot that crawls along at a snail 's pace 0 +154109 8419 that crawls along at a snail 's pace 1 +154110 8419 crawls along at a snail 's pace 1 +154111 8419 crawls along 1 +154112 8419 crawls 2 +154113 8419 at a snail 's pace 3 +154114 8419 a snail 's pace 0 +154115 8419 a snail 's 2 +154116 8419 snail 's 2 +154117 8419 snail 2 +154118 8420 Alarms for Duvall 's throbbing sincerity and his elderly propensity for patting people while he talks . 3 +154119 8420 Alarms for Duvall 's throbbing sincerity and his elderly propensity for patting people while he talks 1 +154120 8420 Alarms 2 +154121 8420 for Duvall 's throbbing sincerity and his elderly propensity for patting people while he talks 2 +154122 8420 Duvall 's throbbing sincerity and his elderly propensity for patting people while he talks 3 +154123 8420 Duvall 's throbbing sincerity and 3 +154124 8420 Duvall 's throbbing sincerity 3 +154125 8420 Duvall 's 3 +154126 8420 throbbing sincerity 3 +154127 8420 throbbing 2 +154128 8420 his elderly propensity for patting people while he talks 2 +154129 8420 his elderly propensity 2 +154130 8420 elderly propensity 2 +154131 8420 elderly 2 +154132 8420 propensity 2 +154133 8420 for patting people while he talks 2 +154134 8420 patting people while he talks 2 +154135 8420 patting people 2 +154136 8420 patting 2 +154137 8420 while he talks 3 +154138 8420 he talks 2 +154139 8421 Rob Schneider , Dana Carvey and Sarah Michelle Gellar in The Philadelphia Story ? 2 +154140 8421 Rob Schneider , Dana Carvey and Sarah Michelle Gellar in The Philadelphia Story 2 +154141 8421 Rob Schneider , 2 +154142 8421 Dana Carvey and Sarah Michelle Gellar in The Philadelphia Story 2 +154143 8421 Dana Carvey and 2 +154144 8421 Sarah Michelle Gellar in The Philadelphia Story 2 +154145 8421 Sarah Michelle Gellar 2 +154146 8421 Michelle Gellar 2 +154147 8421 Gellar 2 +154148 8421 in The Philadelphia Story 2 +154149 8421 The Philadelphia Story 2 +154150 8421 Philadelphia Story 2 +154151 8422 The acting is n't much better . 0 +154152 8422 is n't much better . 1 +154153 8422 is n't much better 1 +154154 8423 Zoom ! 3 +154155 8423 Zoom 2 +154156 8424 I had more fun with Ben Stiller 's Zoolander , which I thought was rather clever . 2 +154157 8424 had more fun with Ben Stiller 's Zoolander , which I thought was rather clever . 3 +154158 8424 had more fun with Ben Stiller 's Zoolander , which I thought was rather clever 3 +154159 8424 had more fun 3 +154160 8424 with Ben Stiller 's Zoolander , which I thought was rather clever 3 +154161 8424 Ben Stiller 's Zoolander , which I thought was rather clever 3 +154162 8424 Ben Stiller 's Zoolander , 2 +154163 8424 Ben Stiller 's Zoolander 2 +154164 8424 Ben Stiller 's 2 +154165 8424 Stiller 's 2 +154166 8424 Stiller 2 +154167 8424 Zoolander 2 +154168 8424 which I thought was rather clever 4 +154169 8424 I thought was rather clever 3 +154170 8424 thought was rather clever 3 +154171 8424 was rather clever 3 +154172 8424 rather clever 3 +154173 8425 If the film 's vision of sport as a secular religion is a bit cloying , its through-line of family and community is heartening in the same way that each season marks a new start . 3 +154174 8425 If the film 's vision of sport as a secular religion is a bit cloying 2 +154175 8425 the film 's vision of sport as a secular religion is a bit cloying 1 +154176 8425 the film 's vision of sport as a secular religion 2 +154177 8425 the film 's vision 2 +154178 8425 of sport as a secular religion 2 +154179 8425 sport as a secular religion 2 +154180 8425 as a secular religion 2 +154181 8425 a secular religion 2 +154182 8425 secular religion 2 +154183 8425 secular 2 +154184 8425 is a bit cloying 2 +154185 8425 a bit cloying 2 +154186 8425 , its through-line of family and community is heartening in the same way that each season marks a new start . 3 +154187 8425 its through-line of family and community is heartening in the same way that each season marks a new start . 3 +154188 8425 its through-line of family and community 2 +154189 8425 its through-line 2 +154190 8425 of family and community 2 +154191 8425 family and community 3 +154192 8425 family and 2 +154193 8425 is heartening in the same way that each season marks a new start . 3 +154194 8425 is heartening in the same way that each season marks a new start 3 +154195 8425 heartening in the same way that each season marks a new start 3 +154196 8425 heartening in the same way 3 +154197 8425 in the same way 2 +154198 8425 that each season marks a new start 2 +154199 8425 each season marks a new start 2 +154200 8425 each season 2 +154201 8425 marks a new start 2 +154202 8425 a new start 2 +154203 8425 new start 2 +154204 8426 It 's pretty linear and only makeup-deep , but Bogdanovich ties it together with efficiency and an affection for the period . 3 +154205 8426 It 's pretty linear and only makeup-deep , but Bogdanovich ties it together with efficiency and an affection for the period 3 +154206 8426 It 's pretty linear and only makeup-deep , but 2 +154207 8426 It 's pretty linear and only makeup-deep , 1 +154208 8426 It 's pretty linear and only makeup-deep 2 +154209 8426 's pretty linear and only makeup-deep 1 +154210 8426 pretty linear and only makeup-deep 2 +154211 8426 pretty linear and 2 +154212 8426 pretty linear 2 +154213 8426 linear 2 +154214 8426 only makeup-deep 1 +154215 8426 makeup-deep 2 +154216 8426 Bogdanovich ties it together with efficiency and an affection for the period 3 +154217 8426 ties it together with efficiency and an affection for the period 3 +154218 8426 ties it 2 +154219 8426 together with efficiency and an affection for the period 3 +154220 8426 with efficiency and an affection for the period 4 +154221 8426 efficiency and an affection for the period 3 +154222 8426 efficiency and 3 +154223 8426 efficiency 2 +154224 8426 an affection for the period 3 +154225 8426 an affection 3 +154226 8426 for the period 2 +154227 8427 More mature than Fatal Attraction , more complete than Indecent Proposal and more relevant than 9 1\/2 Weeks , Unfaithful is at once intimate and universal cinema . 4 +154228 8427 More mature than Fatal Attraction , more complete than Indecent Proposal and more relevant than 9 1\/2 Weeks 3 +154229 8427 More mature than Fatal Attraction , more complete than Indecent Proposal and 3 +154230 8427 More mature than Fatal Attraction , more complete than Indecent Proposal 3 +154231 8427 More mature than Fatal Attraction , 3 +154232 8427 More mature than Fatal Attraction 3 +154233 8427 mature than Fatal Attraction 2 +154234 8427 than Fatal Attraction 2 +154235 8427 more complete than Indecent Proposal 3 +154236 8427 complete than Indecent Proposal 2 +154237 8427 than Indecent Proposal 3 +154238 8427 Indecent Proposal 2 +154239 8427 more relevant than 9 1\/2 Weeks 3 +154240 8427 relevant than 9 1\/2 Weeks 2 +154241 8427 than 9 1\/2 Weeks 2 +154242 8427 9 1\/2 2 +154243 8427 , Unfaithful is at once intimate and universal cinema . 3 +154244 8427 Unfaithful is at once intimate and universal cinema . 3 +154245 8427 is at once intimate and universal cinema . 3 +154246 8427 is at once intimate and universal cinema 3 +154247 8427 at once intimate and universal cinema 2 +154248 8427 once intimate and universal cinema 3 +154249 8427 intimate and universal cinema 3 +154250 8427 and universal cinema 2 +154251 8427 universal cinema 2 +154252 8428 That 's its first sign of trouble . 1 +154253 8428 's its first sign of trouble . 2 +154254 8428 's its first sign of trouble 1 +154255 8428 its first sign of trouble 2 +154256 8428 its first sign 2 +154257 8428 first sign 2 +154258 8429 A very charming and funny movie . 4 +154259 8429 A very charming and funny movie 4 +154260 8429 very charming and funny movie 3 +154261 8429 very charming and funny 4 +154262 8429 charming and funny 3 +154263 8430 A good-looking but ultimately pointless political thriller with plenty of action and almost no substance . 2 +154264 8430 A good-looking but ultimately pointless political thriller with plenty of action and almost no substance 2 +154265 8430 A good-looking but ultimately pointless political thriller 1 +154266 8430 good-looking but ultimately pointless political thriller 1 +154267 8430 good-looking but ultimately pointless 1 +154268 8430 ultimately pointless 0 +154269 8430 political thriller 2 +154270 8430 with plenty of action and almost no substance 1 +154271 8430 plenty of action and almost no substance 2 +154272 8430 of action and almost no substance 1 +154273 8430 action and almost no substance 1 +154274 8430 almost no substance 1 +154275 8430 no substance 0 +154276 8431 `` ... something appears to have been lost in the translation this time . 0 +154277 8431 `` ... something appears to have been lost in the translation this time 1 +154278 8431 ... something appears to have been lost in the translation this time 1 +154279 8431 something appears to have been lost in the translation this time 1 +154280 8431 something appears 2 +154281 8431 to have been lost in the translation this time 1 +154282 8431 have been lost in the translation this time 1 +154283 8431 been lost in the translation this time 1 +154284 8431 lost in the translation this time 1 +154285 8432 A period story about a Catholic boy who tries to help a Jewish friend get into heaven by sending the audience straight to hell . 0 +154286 8432 A period story about a Catholic boy who tries to help a Jewish friend 2 +154287 8432 A period story 2 +154288 8432 period story 2 +154289 8432 about a Catholic boy who tries to help a Jewish friend 2 +154290 8432 a Catholic boy who tries to help a Jewish friend 2 +154291 8432 a Catholic boy 2 +154292 8432 Catholic boy 2 +154293 8432 who tries to help a Jewish friend 2 +154294 8432 tries to help a Jewish friend 2 +154295 8432 to help a Jewish friend 2 +154296 8432 help a Jewish friend 2 +154297 8432 a Jewish friend 2 +154298 8432 Jewish friend 2 +154299 8432 get into heaven by sending the audience straight to hell . 2 +154300 8432 get into heaven by sending the audience straight to hell 1 +154301 8432 get into heaven 3 +154302 8432 into heaven 3 +154303 8432 by sending the audience straight to hell 1 +154304 8432 sending the audience straight to hell 0 +154305 8432 sending the audience 3 +154306 8432 straight to hell 2 +154307 8432 to hell 1 +154308 8433 A markedly inactive film , City is conversational bordering on confessional . 0 +154309 8433 A markedly inactive film , City 1 +154310 8433 A markedly inactive film , 0 +154311 8433 A markedly inactive film 1 +154312 8433 markedly inactive film 2 +154313 8433 markedly inactive 1 +154314 8433 markedly 2 +154315 8433 inactive 1 +154316 8433 is conversational bordering on confessional . 2 +154317 8433 is conversational bordering on confessional 3 +154318 8433 is conversational 2 +154319 8433 conversational 2 +154320 8433 bordering on confessional 1 +154321 8433 on confessional 2 +154322 8433 confessional 2 +154323 8434 The strong subject matter continues to shock throughout the film . 2 +154324 8434 The strong subject matter 2 +154325 8434 strong subject matter 2 +154326 8434 strong subject 2 +154327 8434 continues to shock throughout the film . 2 +154328 8434 continues to shock throughout the film 3 +154329 8434 to shock throughout the film 1 +154330 8434 shock throughout the film 2 +154331 8434 throughout the film 2 +154332 8435 A fan film that for the uninitiated plays better on video with the sound turned down . 1 +154333 8435 A fan film that for the uninitiated plays better on video with the sound 2 +154334 8435 A fan film 2 +154335 8435 fan film 2 +154336 8435 that for the uninitiated plays better on video with the sound 2 +154337 8435 for the uninitiated plays better on video with the sound 1 +154338 8435 for the uninitiated 2 +154339 8435 the uninitiated 2 +154340 8435 uninitiated 2 +154341 8435 plays better on video with the sound 2 +154342 8435 on video with the sound 2 +154343 8435 video with the sound 2 +154344 8435 with the sound 2 +154345 8435 turned down . 2 +154346 8435 turned down 1 +154347 8436 Romanek keeps adding flourishes -- artsy fantasy sequences -- that simply feel wrong . 1 +154348 8436 keeps adding flourishes -- artsy fantasy sequences -- that simply feel wrong . 1 +154349 8436 keeps adding flourishes -- artsy fantasy sequences -- that simply feel wrong 1 +154350 8436 adding flourishes -- artsy fantasy sequences -- that simply feel wrong 1 +154351 8436 flourishes -- artsy fantasy sequences -- that simply feel wrong 2 +154352 8436 flourishes -- artsy fantasy sequences -- 3 +154353 8436 -- artsy fantasy sequences -- 2 +154354 8436 artsy fantasy sequences -- 3 +154355 8436 artsy fantasy sequences 2 +154356 8436 that simply feel wrong 2 +154357 8436 simply feel wrong 1 +154358 8436 feel wrong 2 +154359 8437 The result is somewhat satisfying -- it still comes from Spielberg , who has never made anything that was n't at least watchable . 3 +154360 8437 The result is somewhat satisfying -- it still comes from Spielberg , who has never made anything that was n't at least watchable 3 +154361 8437 The result is somewhat satisfying -- 3 +154362 8437 The result is somewhat satisfying 3 +154363 8437 is somewhat satisfying 3 +154364 8437 somewhat satisfying 3 +154365 8437 it still comes from Spielberg , who has never made anything that was n't at least watchable 3 +154366 8437 still comes from Spielberg , who has never made anything that was n't at least watchable 3 +154367 8437 comes from Spielberg , who has never made anything that was n't at least watchable 3 +154368 8437 from Spielberg , who has never made anything that was n't at least watchable 2 +154369 8437 Spielberg , who has never made anything that was n't at least watchable 2 +154370 8437 Spielberg , 2 +154371 8437 who has never made anything that was n't at least watchable 1 +154372 8437 has never made anything that was n't at least watchable 3 +154373 8437 made anything that was n't at least watchable 2 +154374 8437 anything that was n't at least watchable 2 +154375 8437 that was n't at least watchable 1 +154376 8437 was n't at least watchable 0 +154377 8438 A wonderfully speculative character study that made up for its rather slow beginning by drawing me into the picture . 3 +154378 8438 A wonderfully speculative character 3 +154379 8438 wonderfully speculative character 4 +154380 8438 wonderfully speculative 4 +154381 8438 study that made up for its rather slow beginning by drawing me into the picture . 3 +154382 8438 study that made up for its rather slow beginning by drawing me into the picture 3 +154383 8438 that made up for its rather slow beginning by drawing me into the picture 3 +154384 8438 made up for its rather slow beginning by drawing me into the picture 2 +154385 8438 made up for its rather slow beginning 3 +154386 8438 for its rather slow beginning 1 +154387 8438 its rather slow beginning 1 +154388 8438 rather slow beginning 1 +154389 8438 rather slow 1 +154390 8438 by drawing me into the picture 3 +154391 8438 drawing me into the picture 2 +154392 8438 drawing me 2 +154393 8438 into the picture 2 +154394 8439 Gibney and Jarecki just want to string the bastard up . 2 +154395 8439 Gibney and Jarecki 2 +154396 8439 Gibney and 2 +154397 8439 just want to string the bastard up . 2 +154398 8439 want to string the bastard up . 0 +154399 8439 want to string the bastard up 1 +154400 8439 to string the bastard up 2 +154401 8439 string the bastard up 0 +154402 8439 string the bastard 1 +154403 8439 the bastard 1 +154404 8439 bastard 2 +154405 8440 Lazily directed by Charles Stone III ... from a leaden script by Matthew Cirulnick and novelist Thulani Davis . 1 +154406 8440 directed by Charles Stone III ... from a leaden script by Matthew Cirulnick and novelist Thulani Davis . 2 +154407 8440 directed by Charles Stone III ... from a leaden script by Matthew Cirulnick and novelist Thulani Davis 2 +154408 8440 directed by Charles Stone III ... from a leaden script 2 +154409 8440 directed by Charles Stone III ... 2 +154410 8440 directed by Charles Stone III 2 +154411 8440 by Charles Stone III 2 +154412 8440 from a leaden script 2 +154413 8440 a leaden script 2 +154414 8440 leaden script 1 +154415 8440 by Matthew Cirulnick and novelist Thulani Davis 2 +154416 8440 Matthew Cirulnick and novelist Thulani Davis 2 +154417 8440 Matthew Cirulnick and 2 +154418 8440 Matthew Cirulnick 2 +154419 8440 Cirulnick 2 +154420 8440 novelist Thulani Davis 2 +154421 8440 novelist 2 +154422 8440 Thulani Davis 2 +154423 8440 Thulani 2 +154424 8441 Nonchalantly freaky and uncommonly pleasurable , Warm Water may well be the year 's best and most unpredictable comedy . 4 +154425 8441 Nonchalantly freaky and uncommonly pleasurable 3 +154426 8441 Nonchalantly freaky and 2 +154427 8441 Nonchalantly freaky 2 +154428 8441 Nonchalantly 2 +154429 8441 uncommonly pleasurable 3 +154430 8441 , Warm Water may well be the year 's best and most unpredictable comedy . 4 +154431 8441 Warm Water may well be the year 's best and most unpredictable comedy . 4 +154432 8441 may well be the year 's best and most unpredictable comedy . 3 +154433 8441 may well be the year 's best and most unpredictable comedy 4 +154434 8441 be the year 's best and most unpredictable comedy 4 +154435 8441 the year 's best and most unpredictable comedy 4 +154436 8441 best and most unpredictable comedy 4 +154437 8441 best and most 3 +154438 8441 unpredictable comedy 4 +154439 8442 Though there 's a clarity of purpose and even-handedness to the film 's direction , the drama feels rigged and sluggish . 1 +154440 8442 Though there 's a clarity of purpose and even-handedness to the film 's direction 3 +154441 8442 there 's a clarity of purpose and even-handedness to the film 's direction 3 +154442 8442 's a clarity of purpose and even-handedness to the film 's direction 3 +154443 8442 's a clarity of purpose and even-handedness 3 +154444 8442 a clarity of purpose and even-handedness 3 +154445 8442 a clarity 2 +154446 8442 of purpose and even-handedness 3 +154447 8442 purpose and even-handedness 3 +154448 8442 even-handedness 2 +154449 8442 to the film 's direction 2 +154450 8442 the film 's direction 2 +154451 8442 , the drama feels rigged and sluggish . 0 +154452 8442 the drama feels rigged and sluggish . 2 +154453 8442 feels rigged and sluggish . 1 +154454 8442 feels rigged and sluggish 0 +154455 8442 rigged and sluggish 1 +154456 8442 rigged and 2 +154457 8442 rigged 2 +154458 8444 Sunk by way too much indulgence of scene-chewing , teeth-gnashing actorliness . 0 +154459 8444 Sunk by way too much indulgence of scene-chewing , teeth-gnashing actorliness 1 +154460 8444 Sunk 1 +154461 8444 by way too much indulgence of scene-chewing , teeth-gnashing actorliness 1 +154462 8444 way too much indulgence of scene-chewing , teeth-gnashing actorliness 1 +154463 8444 way too much 2 +154464 8444 indulgence of scene-chewing , teeth-gnashing actorliness 2 +154465 8444 of scene-chewing , teeth-gnashing actorliness 1 +154466 8444 scene-chewing , teeth-gnashing actorliness 2 +154467 8444 scene-chewing 1 +154468 8444 , teeth-gnashing actorliness 2 +154469 8444 teeth-gnashing actorliness 1 +154470 8444 teeth-gnashing 1 +154471 8444 actorliness 2 +154472 8445 What starts off as a possible Argentine American Beauty reeks like a room stacked with pungent flowers . 0 +154473 8445 starts off as a possible Argentine American Beauty reeks like a room stacked with pungent flowers . 1 +154474 8445 starts off as a possible Argentine American Beauty reeks like a room stacked with pungent flowers 1 +154475 8445 as a possible Argentine American Beauty reeks like a room stacked with pungent flowers 2 +154476 8445 a possible Argentine American Beauty reeks like a room stacked with pungent flowers 2 +154477 8445 a possible Argentine American Beauty reeks 1 +154478 8445 possible Argentine American Beauty reeks 1 +154479 8445 Argentine American Beauty reeks 0 +154480 8445 American Beauty reeks 0 +154481 8445 Beauty reeks 3 +154482 8445 like a room stacked with pungent flowers 3 +154483 8445 a room stacked with pungent flowers 2 +154484 8445 a room 2 +154485 8445 stacked with pungent flowers 2 +154486 8445 with pungent flowers 2 +154487 8445 pungent flowers 2 +154488 8446 ... by the time it 's done with us , Mira Nair 's new movie has its audience giddy with the delight of discovery , of having been immersed in a foreign culture only to find that human nature is pretty much the same all over . 4 +154489 8446 by the time it 's done with us , Mira Nair 's new movie has its audience giddy with the delight of discovery , of having been immersed in a foreign culture only to find that human nature is pretty much the same all over . 4 +154490 8446 by the time it 's done with us , Mira Nair 's new movie has its audience giddy with the delight of discovery , of having been immersed in a foreign culture only to find that human nature is pretty much the same all over 4 +154491 8446 by the time it 's done with us , Mira Nair 's new movie has its audience giddy with the delight of discovery , 4 +154492 8446 by the time it 's done with us , Mira Nair 's new movie has its audience giddy with the delight of discovery 3 +154493 8446 by the time it 's done with us , 1 +154494 8446 by the time it 's done with us 2 +154495 8446 it 's done with us 2 +154496 8446 's done with us 2 +154497 8446 done with us 2 +154498 8446 Mira Nair 's new movie has its audience giddy with the delight of discovery 3 +154499 8446 Mira Nair 's new movie 2 +154500 8446 new movie 2 +154501 8446 has its audience giddy with the delight of discovery 3 +154502 8446 its audience giddy with the delight of discovery 3 +154503 8446 its audience giddy 3 +154504 8446 audience giddy 2 +154505 8446 with the delight of discovery 3 +154506 8446 the delight of discovery 3 +154507 8446 the delight 2 +154508 8446 of discovery 3 +154509 8446 of having been immersed in a foreign culture only to find that human nature is pretty much the same all over 2 +154510 8446 having been immersed in a foreign culture only to find that human nature is pretty much the same all over 2 +154511 8446 been immersed in a foreign culture only to find that human nature is pretty much the same all over 3 +154512 8446 immersed in a foreign culture only to find that human nature is pretty much the same all over 2 +154513 8446 immersed in a foreign culture only 3 +154514 8446 in a foreign culture only 2 +154515 8446 a foreign culture only 2 +154516 8446 foreign culture only 1 +154517 8446 culture only 2 +154518 8446 to find that human nature is pretty much the same all over 2 +154519 8446 find that human nature is pretty much the same all over 2 +154520 8446 that human nature is pretty much the same all over 2 +154521 8446 human nature is pretty much the same all over 2 +154522 8446 is pretty much the same all over 1 +154523 8446 is pretty much 2 +154524 8446 the same all over 2 +154525 8446 all over 2 +154526 8447 Shot in rich , shadowy black-and-white , Devils chronicles , with increasingly amused irony , the relationship between reluctant captors and befuddled captives . 4 +154527 8447 Shot in rich , shadowy black-and-white , Devils chronicles 3 +154528 8447 in rich , shadowy black-and-white , Devils chronicles 2 +154529 8447 rich , shadowy black-and-white , Devils chronicles 2 +154530 8447 rich , shadowy black-and-white , 2 +154531 8447 rich , shadowy black-and-white 3 +154532 8447 , shadowy black-and-white 2 +154533 8447 shadowy black-and-white 2 +154534 8447 Devils chronicles 2 +154535 8447 , with increasingly amused irony , the relationship between reluctant captors and befuddled captives . 3 +154536 8447 with increasingly amused irony , the relationship between reluctant captors and befuddled captives . 3 +154537 8447 with increasingly amused irony 2 +154538 8447 increasingly amused irony 3 +154539 8447 increasingly amused 3 +154540 8447 , the relationship between reluctant captors and befuddled captives . 2 +154541 8447 the relationship between reluctant captors and befuddled captives . 2 +154542 8447 the relationship between reluctant 3 +154543 8447 between reluctant 2 +154544 8447 captors and befuddled captives . 2 +154545 8447 captors and befuddled captives 2 +154546 8447 captors and 2 +154547 8447 captors 2 +154548 8447 befuddled captives 2 +154549 8447 captives 2 +154550 8448 Bond-inspired ? 2 +154551 8448 Bond-inspired 3 +154552 8449 Staggeringly dreadful romance . 0 +154553 8449 dreadful romance . 0 +154554 8449 dreadful romance 1 +154555 8450 This method almost never fails him , and it works superbly here . 4 +154556 8450 This method almost never fails him , and it works superbly here 2 +154557 8450 This method almost never fails him , and 3 +154558 8450 This method almost never fails him , 2 +154559 8450 This method almost never fails him 3 +154560 8450 This method 2 +154561 8450 method 2 +154562 8450 almost never fails him 3 +154563 8450 never fails him 3 +154564 8450 fails him 0 +154565 8450 it works superbly here 4 +154566 8450 works superbly here 4 +154567 8450 works superbly 4 +154568 8451 Weird . 1 +154569 8452 Nolan proves that he can cross swords with the best of them and helm a more traditionally plotted popcorn thriller while surrendering little of his intellectual rigor or creative composure . 4 +154570 8452 proves that he can cross swords with the best of them and helm a more traditionally plotted popcorn thriller while surrendering little of his intellectual rigor or creative composure . 3 +154571 8452 proves that he can cross swords with the best of them and helm a more traditionally plotted popcorn thriller while surrendering little of his intellectual rigor or creative composure 3 +154572 8452 that he can cross swords with the best of them and helm a more traditionally plotted popcorn thriller while surrendering little of his intellectual rigor or creative composure 3 +154573 8452 he can cross swords with the best of them and helm a more traditionally plotted popcorn thriller while surrendering little of his intellectual rigor or creative composure 3 +154574 8452 can cross swords with the best of them and helm a more traditionally plotted popcorn thriller while surrendering little of his intellectual rigor or creative composure 3 +154575 8452 cross swords with the best of them and helm a more traditionally plotted popcorn thriller while surrendering little of his intellectual rigor or creative composure 3 +154576 8452 cross swords with the best of them and 3 +154577 8452 cross swords with the best of them 2 +154578 8452 cross swords 2 +154579 8452 swords 2 +154580 8452 helm a more traditionally plotted popcorn thriller while surrendering little of his intellectual rigor or creative composure 3 +154581 8452 helm a more traditionally plotted popcorn thriller 2 +154582 8452 a more traditionally plotted popcorn thriller 2 +154583 8452 more traditionally plotted popcorn thriller 3 +154584 8452 traditionally plotted popcorn thriller 2 +154585 8452 traditionally plotted 2 +154586 8452 popcorn thriller 3 +154587 8452 while surrendering little of his intellectual rigor or creative composure 2 +154588 8452 surrendering little of his intellectual rigor or creative composure 2 +154589 8452 surrendering 2 +154590 8452 little of his intellectual rigor or creative composure 2 +154591 8452 of his intellectual rigor or creative composure 2 +154592 8452 his intellectual rigor or creative composure 2 +154593 8452 his intellectual rigor or 3 +154594 8452 his intellectual rigor 3 +154595 8452 intellectual rigor 2 +154596 8452 creative composure 3 +154597 8452 composure 2 +154598 8453 Maybe not a classic , but a movie the kids will want to see over and over again . 4 +154599 8453 not a classic , but a movie the kids will want to see over and over again . 3 +154600 8453 not a classic , but a movie the kids 2 +154601 8453 not a classic , but a movie 2 +154602 8453 not a classic , 1 +154603 8453 not a classic 1 +154604 8453 a classic 4 +154605 8453 but a movie 2 +154606 8453 will want to see over and over again . 4 +154607 8453 will want to see over and over again 4 +154608 8453 want to see over and over again 4 +154609 8453 to see over and over again 3 +154610 8453 see over and over again 3 +154611 8453 see over and over 3 +154612 8454 The film did n't move me one way or the other , but it was an honest effort and if you want to see a flick about telemarketers this one will due . 2 +154613 8454 The film did n't move me one way or the other , but it was an honest effort and if you want to see a flick about telemarketers this one will due 2 +154614 8454 The film did n't move me one way or the other , but 2 +154615 8454 The film did n't move me one way or the other , 1 +154616 8454 The film did n't move me one way or the other 1 +154617 8454 did n't move me one way or the other 1 +154618 8454 move me one way or the other 2 +154619 8454 me one way or the other 2 +154620 8454 one way or the other 2 +154621 8454 it was an honest effort and if you want to see a flick about telemarketers this one will due 2 +154622 8454 it was an honest effort and 2 +154623 8454 it was an honest effort 3 +154624 8454 was an honest effort 3 +154625 8454 an honest effort 3 +154626 8454 honest effort 3 +154627 8454 if you want to see a flick about telemarketers this one will due 3 +154628 8454 if you want to see a flick about telemarketers 1 +154629 8454 you want to see a flick about telemarketers 2 +154630 8454 want to see a flick about telemarketers 2 +154631 8454 to see a flick about telemarketers 2 +154632 8454 see a flick about telemarketers 1 +154633 8454 a flick about telemarketers 2 +154634 8454 about telemarketers 2 +154635 8454 this one will due 2 +154636 8454 will due 2 +154637 8455 And as with most late-night bull sessions , eventually the content is n't nearly as captivating as the rowdy participants think it is . 1 +154638 8455 as with most late-night bull sessions , eventually the content is n't nearly as captivating as the rowdy participants think it is . 0 +154639 8455 as with most late-night bull sessions 2 +154640 8455 with most late-night bull sessions 2 +154641 8455 most late-night bull sessions 1 +154642 8455 late-night bull sessions 2 +154643 8455 bull sessions 1 +154644 8455 , eventually the content is n't nearly as captivating as the rowdy participants think it is . 1 +154645 8455 eventually the content is n't nearly as captivating as the rowdy participants think it is . 1 +154646 8455 the content is n't nearly as captivating as the rowdy participants think it is . 1 +154647 8455 the content 2 +154648 8455 is n't nearly as captivating as the rowdy participants think it is . 1 +154649 8455 is n't nearly as captivating as the rowdy participants think it is 2 +154650 8455 nearly as captivating as the rowdy participants think it is 3 +154651 8455 as captivating as the rowdy participants think it is 2 +154652 8455 captivating as the rowdy participants think it is 3 +154653 8455 as the rowdy participants think it is 2 +154654 8455 the rowdy participants think it is 2 +154655 8455 the rowdy participants 2 +154656 8455 rowdy participants 3 +154657 8455 think it is 2 +154658 8456 The kind of sweet-and-sour insider movie that film buffs will eat up like so much gelati . 4 +154659 8456 The kind of sweet-and-sour insider movie that film buffs will eat up like so much gelati 4 +154660 8456 of sweet-and-sour insider movie that film buffs will eat up like so much gelati 3 +154661 8456 sweet-and-sour insider movie that film buffs will eat up like so much gelati 4 +154662 8456 sweet-and-sour insider movie 2 +154663 8456 insider movie 2 +154664 8456 that film buffs will eat up like so much gelati 3 +154665 8456 film buffs will eat up like so much gelati 4 +154666 8456 will eat up like so much gelati 3 +154667 8456 eat up like so much gelati 2 +154668 8456 like so much gelati 2 +154669 8456 so much gelati 2 +154670 8456 gelati 2 +154671 8457 Ill-considered , unholy hokum . 1 +154672 8457 , unholy hokum . 1 +154673 8457 unholy hokum . 1 +154674 8457 unholy hokum 1 +154675 8458 Or that the battery on your watch has died . 2 +154676 8458 that the battery on your watch has died . 2 +154677 8458 that the battery on your watch has died 2 +154678 8458 the battery on your watch has died 1 +154679 8458 the battery on your watch 2 +154680 8458 the battery 3 +154681 8458 battery 2 +154682 8458 on your watch 2 +154683 8458 has died 1 +154684 8459 Competently directed but terminally cute drama . 3 +154685 8459 directed but terminally cute drama . 3 +154686 8459 directed but terminally cute drama 2 +154687 8459 directed but 2 +154688 8459 terminally cute drama 3 +154689 8459 cute drama 3 +154690 8460 This pathetic junk is barely an hour long . 0 +154691 8460 This pathetic junk 0 +154692 8460 pathetic junk 0 +154693 8460 is barely an hour long . 1 +154694 8460 is barely an hour long 2 +154695 8460 is barely 3 +154696 8460 an hour long 2 +154697 8461 -LRB- Taylor -RRB- takes us on a ride that 's consistently surprising , easy to watch -- but , oh , so dumb . 2 +154698 8461 -LRB- Taylor -RRB- 2 +154699 8461 Taylor -RRB- 2 +154700 8461 takes us on a ride that 's consistently surprising , easy to watch -- but , oh , so dumb . 2 +154701 8461 takes us on a ride that 's consistently surprising , easy to watch -- but , oh , so dumb 2 +154702 8461 on a ride that 's consistently surprising , easy to watch -- but , oh , so dumb 3 +154703 8461 a ride that 's consistently surprising , easy to watch -- but , oh , so dumb 3 +154704 8461 that 's consistently surprising , easy to watch -- but , oh , so dumb 1 +154705 8461 's consistently surprising , easy to watch -- but , oh , so dumb 2 +154706 8461 's consistently surprising , easy to watch -- but , 3 +154707 8461 's consistently surprising , easy to watch -- but 3 +154708 8461 's consistently surprising , easy 3 +154709 8461 consistently surprising , easy 3 +154710 8461 consistently surprising , 3 +154711 8461 consistently surprising 3 +154712 8461 to watch -- but 2 +154713 8461 watch -- but 2 +154714 8461 watch -- 2 +154715 8461 oh , so dumb 2 +154716 8461 , so dumb 0 +154717 8461 so dumb 0 +154718 8462 Feels less like a change in -LRB- Herzog 's -RRB- personal policy than a half-hearted fluke . 1 +154719 8462 Feels less 1 +154720 8462 like a change in -LRB- Herzog 's -RRB- personal policy than a half-hearted fluke . 1 +154721 8462 like a change in -LRB- Herzog 's -RRB- personal policy than a half-hearted fluke 2 +154722 8462 like a change in -LRB- Herzog 's -RRB- personal policy 3 +154723 8462 a change in -LRB- Herzog 's -RRB- personal policy 2 +154724 8462 in -LRB- Herzog 's -RRB- personal policy 2 +154725 8462 -LRB- Herzog 's -RRB- personal policy 3 +154726 8462 -LRB- Herzog 's -RRB- 2 +154727 8462 Herzog 's -RRB- 2 +154728 8462 personal policy 2 +154729 8462 than a half-hearted fluke 1 +154730 8462 a half-hearted fluke 1 +154731 8462 half-hearted fluke 1 +154732 8463 Just too silly and sophomoric to ensnare its target audience . 1 +154733 8463 Just too silly and sophomoric 2 +154734 8463 Just too silly and 1 +154735 8463 Just too silly 1 +154736 8463 to ensnare its target audience . 3 +154737 8463 to ensnare its target audience 2 +154738 8463 ensnare its target audience 2 +154739 8463 ensnare 2 +154740 8464 Familiar but utterly delightful . 3 +154741 8464 but utterly delightful . 3 +154742 8464 utterly delightful . 4 +154743 8464 delightful . 4 +154744 8465 For those of us who respond more strongly to storytelling than computer-generated effects , the new Star Wars installment has n't escaped the rut dug by the last one . 1 +154745 8465 For those of us who respond more strongly to storytelling than computer-generated effects 2 +154746 8465 those of us who respond more strongly to storytelling than computer-generated effects 2 +154747 8465 who respond more strongly to storytelling than computer-generated effects 2 +154748 8465 respond more strongly to storytelling than computer-generated effects 2 +154749 8465 respond more strongly to storytelling 2 +154750 8465 more strongly to storytelling 3 +154751 8465 more strongly 3 +154752 8465 than computer-generated effects 2 +154753 8465 computer-generated effects 2 +154754 8465 , the new Star Wars installment has n't escaped the rut dug by the last one . 1 +154755 8465 the new Star Wars installment has n't escaped the rut dug by the last one . 1 +154756 8465 the new Star Wars installment 2 +154757 8465 new Star Wars installment 2 +154758 8465 Star Wars installment 2 +154759 8465 Wars installment 2 +154760 8465 has n't escaped the rut dug by the last one . 1 +154761 8465 has n't escaped the rut dug by the last one 1 +154762 8465 escaped the rut dug by the last one 1 +154763 8465 the rut dug by the last one 1 +154764 8465 the rut 2 +154765 8465 dug by the last one 2 +154766 8465 dug 2 +154767 8465 by the last one 2 +154768 8465 the last one 2 +154769 8465 last one 2 +154770 8466 Consider it ` perfection . ' 4 +154771 8466 Consider it ` perfection . 4 +154772 8466 Consider it ` perfection 4 +154773 8466 it ` perfection 4 +154774 8466 ` perfection 4 +154775 8467 At the one-hour mark , Herzog simply runs out of ideas and the pace turns positively leaden as the movie sputters to its inevitable tragic conclusion . 0 +154776 8467 At the one-hour mark 2 +154777 8467 the one-hour mark 2 +154778 8467 one-hour mark 3 +154779 8467 , Herzog simply runs out of ideas and the pace turns positively leaden as the movie sputters to its inevitable tragic conclusion . 1 +154780 8467 Herzog simply runs out of ideas and the pace turns positively leaden as the movie sputters to its inevitable tragic conclusion . 1 +154781 8467 Herzog simply runs out of ideas and the pace turns positively leaden as the movie sputters to its inevitable tragic conclusion 0 +154782 8467 Herzog simply runs out of ideas and 1 +154783 8467 Herzog simply runs out of ideas 0 +154784 8467 simply runs out of ideas 0 +154785 8467 runs out of ideas 1 +154786 8467 the pace turns positively leaden as the movie sputters to its inevitable tragic conclusion 2 +154787 8467 turns positively leaden as the movie sputters to its inevitable tragic conclusion 2 +154788 8467 positively leaden as the movie sputters to its inevitable tragic conclusion 2 +154789 8467 leaden as the movie sputters to its inevitable tragic conclusion 1 +154790 8467 leaden as the movie sputters 1 +154791 8467 as the movie sputters 1 +154792 8467 the movie sputters 1 +154793 8467 movie sputters 1 +154794 8467 sputters 2 +154795 8467 to its inevitable tragic conclusion 1 +154796 8467 its inevitable tragic conclusion 2 +154797 8467 inevitable tragic conclusion 2 +154798 8467 tragic conclusion 2 +154799 8468 This is a more fascinating look at the future than `` Bladerunner '' and one of the most high-concept sci fi adventures attempted for the screen . 3 +154800 8468 is a more fascinating look at the future than `` Bladerunner '' and one of the most high-concept sci fi adventures attempted for the screen . 4 +154801 8468 is a more fascinating look at the future than `` Bladerunner '' and one of the most high-concept sci fi adventures attempted for the screen 4 +154802 8468 a more fascinating look at the future than `` Bladerunner '' and one of the most high-concept sci fi adventures attempted for the screen 4 +154803 8468 a more fascinating look 2 +154804 8468 more fascinating look 3 +154805 8468 at the future than `` Bladerunner '' and one of the most high-concept sci fi adventures attempted for the screen 3 +154806 8468 the future than `` Bladerunner '' and one of the most high-concept sci fi adventures attempted for the screen 3 +154807 8468 the future than `` Bladerunner '' and 2 +154808 8468 the future than `` Bladerunner '' 2 +154809 8468 than `` Bladerunner '' 2 +154810 8468 `` Bladerunner '' 2 +154811 8468 Bladerunner '' 2 +154812 8468 Bladerunner 2 +154813 8468 one of the most high-concept sci fi adventures attempted for the screen 4 +154814 8468 of the most high-concept sci fi adventures attempted for the screen 3 +154815 8468 the most high-concept sci fi adventures attempted for the screen 4 +154816 8468 the most high-concept sci fi adventures 4 +154817 8468 most high-concept sci fi adventures 2 +154818 8468 high-concept sci fi adventures 3 +154819 8468 sci fi adventures 2 +154820 8468 sci 2 +154821 8468 fi adventures 2 +154822 8468 fi 2 +154823 8468 attempted for the screen 2 +154824 8468 for the screen 2 +154825 8469 Samuel L. Jackson is one of the best actors there is . 4 +154826 8469 Samuel L. Jackson 3 +154827 8469 L. Jackson 2 +154828 8469 is one of the best actors there is . 4 +154829 8469 is one of the best actors there is 4 +154830 8469 one of the best actors there is 4 +154831 8469 of the best actors there is 3 +154832 8469 the best actors there is 3 +154833 8469 the best actors 4 +154834 8470 Huppert 's show to steal and she makes a meal of it , channeling Kathy Baker 's creepy turn as the repressed mother on Boston Public just as much as 8 Women 's Augustine . 3 +154835 8470 Huppert 's show to steal and she makes a meal of it , channeling Kathy Baker 's creepy turn as the repressed mother on Boston Public just as much as 8 Women 's Augustine 3 +154836 8470 Huppert 's show to steal and 2 +154837 8470 Huppert 's show to steal 3 +154838 8470 show to steal 3 +154839 8470 to steal 2 +154840 8470 she makes a meal of it , channeling Kathy Baker 's creepy turn as the repressed mother on Boston Public just as much as 8 Women 's Augustine 2 +154841 8470 makes a meal of it , channeling Kathy Baker 's creepy turn as the repressed mother on Boston Public just as much as 8 Women 's Augustine 2 +154842 8470 makes a meal of it , 2 +154843 8470 makes a meal of it 3 +154844 8470 a meal of it 2 +154845 8470 a meal 2 +154846 8470 channeling Kathy Baker 's creepy turn as the repressed mother on Boston Public just as much as 8 Women 's Augustine 1 +154847 8470 channeling Kathy Baker 's creepy turn as the repressed mother on Boston Public just 2 +154848 8470 Kathy Baker 's creepy turn as the repressed mother on Boston Public just 2 +154849 8470 Kathy Baker 's creepy turn 1 +154850 8470 Kathy Baker 's 2 +154851 8470 Baker 's 2 +154852 8470 Baker 2 +154853 8470 creepy turn 1 +154854 8470 as the repressed mother on Boston Public just 2 +154855 8470 the repressed mother on Boston Public just 2 +154856 8470 the repressed mother 2 +154857 8470 repressed mother 2 +154858 8470 on Boston Public just 2 +154859 8470 Boston Public just 2 +154860 8470 Boston Public 2 +154861 8470 Boston 2 +154862 8470 as much as 8 Women 's Augustine 2 +154863 8470 as much as 8 2 +154864 8470 much as 8 2 +154865 8470 as 8 2 +154866 8470 Women 's Augustine 2 +154867 8470 Augustine 2 +154868 8471 But no. . 1 +154869 8472 Even in terms of the low-grade cheese standards on which it operates , it never quite makes the grade as tawdry trash . 1 +154870 8472 Even in terms of the low-grade cheese standards on which it operates 1 +154871 8472 in terms of the low-grade cheese standards on which it operates 1 +154872 8472 terms of the low-grade cheese standards on which it operates 1 +154873 8472 of the low-grade cheese standards on which it operates 1 +154874 8472 the low-grade cheese standards on which it operates 0 +154875 8472 the low-grade cheese standards 1 +154876 8472 low-grade cheese standards 1 +154877 8472 cheese standards 2 +154878 8472 on which it operates 2 +154879 8472 it operates 2 +154880 8472 , it never quite makes the grade as tawdry trash . 1 +154881 8472 it never quite makes the grade as tawdry trash . 1 +154882 8472 never quite makes the grade as tawdry trash . 1 +154883 8472 makes the grade as tawdry trash . 1 +154884 8472 makes the grade as tawdry trash 1 +154885 8472 the grade as tawdry trash 1 +154886 8472 the grade 2 +154887 8472 as tawdry trash 0 +154888 8472 tawdry trash 0 +154889 8473 If you love him , you 'll like it . 3 +154890 8473 If you love him 2 +154891 8473 you love him 3 +154892 8473 , you 'll like it . 4 +154893 8473 you 'll like it . 3 +154894 8473 'll like it . 2 +154895 8473 'll like it 3 +154896 8474 A new film from Bill Plympton , the animation master , is always welcome . 4 +154897 8474 A new film from Bill Plympton , the animation master , 2 +154898 8474 A new film 2 +154899 8474 from Bill Plympton , the animation master , 3 +154900 8474 Bill Plympton , the animation master , 3 +154901 8474 Bill Plympton , the animation master 3 +154902 8474 Bill Plympton , 2 +154903 8474 Bill Plympton 2 +154904 8474 the animation master 3 +154905 8474 animation master 3 +154906 8474 is always welcome . 3 +154907 8474 is always welcome 3 +154908 8475 There 's no getting around the fact that this is Revenge Of The Nerds Revisited -- again . 2 +154909 8475 's no getting around the fact that this is Revenge Of The Nerds Revisited -- again . 3 +154910 8475 's no getting around the fact that this is Revenge Of The Nerds Revisited -- again 2 +154911 8475 no getting around the fact that this is Revenge Of The Nerds Revisited -- again 1 +154912 8475 getting around the fact that this is Revenge Of The Nerds Revisited -- again 1 +154913 8475 getting around the fact that this is Revenge Of The Nerds Revisited -- 1 +154914 8475 getting around the fact that this is Revenge Of The Nerds Revisited 1 +154915 8475 getting around 2 +154916 8475 the fact that this is Revenge Of The Nerds Revisited 2 +154917 8475 fact that this is Revenge Of The Nerds Revisited 3 +154918 8475 that this is Revenge Of The Nerds Revisited 1 +154919 8475 this is Revenge Of The Nerds Revisited 2 +154920 8475 is Revenge Of The Nerds Revisited 2 +154921 8475 Revenge Of The Nerds Revisited 2 +154922 8475 Of The Nerds Revisited 2 +154923 8475 The Nerds Revisited 2 +154924 8475 Nerds Revisited 2 +154925 8475 Revisited 2 +154926 8476 The idea is more interesting than the screenplay , which lags badly in the middle and lurches between not-very-funny comedy , unconvincing dramatics and some last-minute action strongly reminiscent of Run Lola Run . 1 +154927 8476 is more interesting than the screenplay , which lags badly in the middle and lurches between not-very-funny comedy , unconvincing dramatics and some last-minute action strongly reminiscent of Run Lola Run . 1 +154928 8476 is more interesting than the screenplay , which lags badly in the middle and lurches between not-very-funny comedy , unconvincing dramatics and some last-minute action strongly reminiscent of Run Lola Run 0 +154929 8476 more interesting than the screenplay , which lags badly in the middle and lurches between not-very-funny comedy , unconvincing dramatics and some last-minute action strongly reminiscent of Run Lola Run 1 +154930 8476 interesting than the screenplay , which lags badly in the middle and lurches between not-very-funny comedy , unconvincing dramatics and some last-minute action strongly reminiscent of Run Lola Run 0 +154931 8476 than the screenplay , which lags badly in the middle and lurches between not-very-funny comedy , unconvincing dramatics and some last-minute action strongly reminiscent of Run Lola Run 1 +154932 8476 the screenplay , which lags badly in the middle and lurches between not-very-funny comedy , unconvincing dramatics and some last-minute action strongly reminiscent of Run Lola Run 0 +154933 8476 which lags badly in the middle and lurches between not-very-funny comedy , unconvincing dramatics and some last-minute action strongly reminiscent of Run Lola Run 0 +154934 8476 lags badly in the middle and lurches between not-very-funny comedy , unconvincing dramatics and some last-minute action strongly reminiscent of Run Lola Run 0 +154935 8476 lags badly 0 +154936 8476 lags 2 +154937 8476 in the middle and lurches between not-very-funny comedy , unconvincing dramatics and some last-minute action strongly reminiscent of Run Lola Run 1 +154938 8476 the middle and lurches between not-very-funny comedy , unconvincing dramatics and some last-minute action strongly reminiscent of Run Lola Run 0 +154939 8476 the middle and lurches between not-very-funny comedy , unconvincing dramatics and 0 +154940 8476 the middle and lurches between not-very-funny comedy , unconvincing dramatics 1 +154941 8476 middle and lurches between not-very-funny comedy , unconvincing dramatics 1 +154942 8476 and lurches between not-very-funny comedy , unconvincing dramatics 1 +154943 8476 lurches between not-very-funny comedy , unconvincing dramatics 1 +154944 8476 lurches between not-very-funny comedy 1 +154945 8476 lurches 2 +154946 8476 between not-very-funny comedy 2 +154947 8476 not-very-funny comedy 1 +154948 8476 not-very-funny 1 +154949 8476 , unconvincing dramatics 1 +154950 8476 unconvincing dramatics 2 +154951 8476 dramatics 2 +154952 8476 some last-minute action strongly reminiscent of Run Lola Run 3 +154953 8476 some last-minute action strongly reminiscent 2 +154954 8476 some last-minute action 2 +154955 8476 last-minute action 3 +154956 8476 strongly reminiscent 1 +154957 8476 of Run Lola Run 2 +154958 8477 Woefully pretentious . 1 +154959 8478 Lacks the visual flair and bouncing bravado that characterizes better hip-hop clips and is content to recycle images and characters that were already tired 10 years ago . 1 +154960 8478 Lacks the visual flair and bouncing bravado that characterizes better hip-hop clips and is content to recycle images and characters that were already tired 10 years ago 0 +154961 8478 the visual flair and bouncing bravado that characterizes better hip-hop clips and is content to recycle images and characters that were already tired 10 years ago 0 +154962 8478 the visual flair and bouncing bravado 3 +154963 8478 visual flair and bouncing bravado 2 +154964 8478 flair and bouncing bravado 3 +154965 8478 and bouncing bravado 2 +154966 8478 bouncing bravado 3 +154967 8478 that characterizes better hip-hop clips and is content to recycle images and characters that were already tired 10 years ago 1 +154968 8478 characterizes better hip-hop clips and is content to recycle images and characters that were already tired 10 years ago 1 +154969 8478 characterizes better hip-hop clips and 2 +154970 8478 characterizes better hip-hop clips 2 +154971 8478 characterizes 2 +154972 8478 better hip-hop clips 3 +154973 8478 hip-hop clips 2 +154974 8478 is content to recycle images and characters that were already tired 10 years ago 2 +154975 8478 content to recycle images and characters that were already tired 10 years ago 0 +154976 8478 to recycle images and characters that were already tired 10 years ago 1 +154977 8478 recycle images and characters that were already tired 10 years ago 0 +154978 8478 images and characters that were already tired 10 years ago 1 +154979 8478 images and characters 2 +154980 8478 that were already tired 10 years ago 1 +154981 8478 were already tired 10 years ago 2 +154982 8478 were already tired 1 +154983 8478 already tired 1 +154984 8478 10 years ago 2 +154985 8478 10 years 2 +154986 8479 Makes one thing abundantly clear . 3 +154987 8479 Makes one thing abundantly clear 2 +154988 8479 one thing abundantly clear 2 +154989 8479 abundantly clear 2 +154990 8479 abundantly 2 +154991 8480 A flick about our infantilized culture that is n't entirely infantile . 3 +154992 8480 A flick about our infantilized culture that is n't entirely infantile 3 +154993 8480 about our infantilized culture that is n't entirely infantile 2 +154994 8480 our infantilized culture that is n't entirely infantile 1 +154995 8480 our infantilized culture 1 +154996 8480 infantilized culture 2 +154997 8480 infantilized 2 +154998 8480 that is n't entirely infantile 2 +154999 8480 is n't entirely infantile 2 +155000 8480 entirely infantile 0 +155001 8481 Still , it just sits there like a side dish no one ordered . 1 +155002 8481 , it just sits there like a side dish no one ordered . 1 +155003 8481 it just sits there like a side dish no one ordered . 0 +155004 8481 just sits there like a side dish no one ordered . 1 +155005 8481 sits there like a side dish no one ordered . 0 +155006 8481 sits there like a side dish no one ordered 1 +155007 8481 sits there 2 +155008 8481 like a side dish no one ordered 0 +155009 8481 a side dish no one ordered 1 +155010 8481 no one ordered 2 +155011 8481 ordered 2 +155012 8482 We can tell what it is supposed to be , but ca n't really call it a work of art . 1 +155013 8482 can tell what it is supposed to be , but ca n't really call it a work of art . 1 +155014 8482 can tell what it is supposed to be , but ca n't really call it a work of art 1 +155015 8482 tell what it is supposed to be , but ca n't really call it a work of art 2 +155016 8482 what it is supposed to be , but ca n't really call it a work of art 1 +155017 8482 it is supposed to be , but ca n't really call it a work of art 1 +155018 8482 is supposed to be , but ca n't really call it a work of art 1 +155019 8482 is supposed to be , but 2 +155020 8482 is supposed to be , 2 +155021 8482 ca n't really call it a work of art 1 +155022 8482 call it a work of art 3 +155023 8482 a work of art 4 +155024 8483 A ragbag of cliches . 0 +155025 8483 A ragbag of cliches 1 +155026 8483 A ragbag 1 +155027 8483 ragbag 1 +155028 8484 It made me want to get made-up and go see this movie with my sisters . 3 +155029 8484 made me want to get made-up and go see this movie with my sisters . 2 +155030 8484 made me want to get made-up and go see this movie with my sisters 3 +155031 8484 me want to get made-up and go see this movie with my sisters 3 +155032 8484 want to get made-up and go see this movie with my sisters 3 +155033 8484 to get made-up and go see this movie with my sisters 2 +155034 8484 get made-up and go see this movie with my sisters 2 +155035 8484 get made-up and 3 +155036 8484 get made-up 2 +155037 8484 go see this movie with my sisters 2 +155038 8484 see this movie with my sisters 3 +155039 8484 with my sisters 2 +155040 8484 my sisters 2 +155041 8485 Visually , ` Santa Clause 2 ' is wondrously creative . 3 +155042 8485 , ` Santa Clause 2 ' is wondrously creative . 4 +155043 8485 ` Santa Clause 2 ' is wondrously creative . 4 +155044 8485 Santa Clause 2 ' is wondrously creative . 4 +155045 8485 ' is wondrously creative . 2 +155046 8485 is wondrously creative . 3 +155047 8485 is wondrously creative 4 +155048 8485 wondrously creative 4 +155049 8486 Girlfriends are bad , wives are worse and babies are the kiss of death in this bitter Italian comedy . 1 +155050 8486 Girlfriends are bad , wives are worse and babies are the kiss of death in this bitter Italian comedy 0 +155051 8486 Girlfriends are bad , wives are worse and 2 +155052 8486 Girlfriends are bad , wives are worse 1 +155053 8486 Girlfriends are bad , 2 +155054 8486 Girlfriends are bad 2 +155055 8486 Girlfriends 2 +155056 8486 are bad 1 +155057 8486 wives are worse 1 +155058 8486 wives 2 +155059 8486 are worse 1 +155060 8486 babies are the kiss of death in this bitter Italian comedy 1 +155061 8486 babies 2 +155062 8486 are the kiss of death in this bitter Italian comedy 1 +155063 8486 the kiss of death in this bitter Italian comedy 1 +155064 8486 the kiss 2 +155065 8486 of death in this bitter Italian comedy 1 +155066 8486 death in this bitter Italian comedy 2 +155067 8486 in this bitter Italian comedy 2 +155068 8486 this bitter Italian comedy 1 +155069 8486 bitter Italian comedy 1 +155070 8486 Italian comedy 2 +155071 8487 And we do n't avert our eyes for a moment . 3 +155072 8487 we do n't avert our eyes for a moment . 3 +155073 8487 do n't avert our eyes for a moment . 3 +155074 8487 do n't avert our eyes for a moment 3 +155075 8487 avert our eyes for a moment 2 +155076 8487 avert our eyes 1 +155077 8487 avert 2 +155078 8487 our eyes 3 +155079 8487 for a moment 2 +155080 8487 a moment 2 +155081 8488 Exudes the fizz of a Busby Berkeley musical and the visceral excitement of a sports extravaganza . 4 +155082 8488 Exudes the fizz of a Busby Berkeley musical and the visceral excitement of a sports extravaganza 3 +155083 8488 the fizz of a Busby Berkeley musical and the visceral excitement of a sports extravaganza 3 +155084 8488 the fizz of a Busby Berkeley musical and 2 +155085 8488 the fizz of a Busby Berkeley musical 2 +155086 8488 the fizz 2 +155087 8488 of a Busby Berkeley musical 2 +155088 8488 a Busby Berkeley musical 2 +155089 8488 Busby Berkeley musical 2 +155090 8488 Busby 2 +155091 8488 Berkeley musical 2 +155092 8488 Berkeley 2 +155093 8488 the visceral excitement of a sports extravaganza 4 +155094 8488 the visceral excitement 3 +155095 8488 visceral excitement 3 +155096 8488 of a sports extravaganza 3 +155097 8488 a sports extravaganza 3 +155098 8488 sports extravaganza 3 +155099 8489 For all its brilliant touches , Dragon loses its fire midway , nearly flickering out by its perfunctory conclusion . 1 +155100 8489 For all its brilliant touches 3 +155101 8489 all its brilliant touches 4 +155102 8489 its brilliant touches 4 +155103 8489 brilliant touches 3 +155104 8489 , Dragon loses its fire midway , nearly flickering out by its perfunctory conclusion . 1 +155105 8489 Dragon loses its fire midway , nearly flickering out by its perfunctory conclusion . 1 +155106 8489 loses its fire midway , nearly flickering out by its perfunctory conclusion . 1 +155107 8489 loses its fire midway , nearly flickering out by its perfunctory conclusion 1 +155108 8489 loses its fire midway , 1 +155109 8489 loses its fire midway 2 +155110 8489 loses its fire 1 +155111 8489 its fire 2 +155112 8489 nearly flickering out by its perfunctory conclusion 3 +155113 8489 flickering out by its perfunctory conclusion 1 +155114 8489 flickering out 2 +155115 8489 by its perfunctory conclusion 2 +155116 8489 its perfunctory conclusion 1 +155117 8489 perfunctory conclusion 1 +155118 8490 An engaging , formulaic sports drama that carries a charge of genuine excitement . 3 +155119 8490 An engaging , formulaic sports drama that carries a charge of genuine excitement 3 +155120 8490 An engaging , 3 +155121 8490 An engaging 3 +155122 8490 formulaic sports drama that carries a charge of genuine excitement 3 +155123 8490 formulaic sports drama 2 +155124 8490 sports drama 2 +155125 8490 that carries a charge of genuine excitement 3 +155126 8490 carries a charge of genuine excitement 3 +155127 8490 a charge of genuine excitement 4 +155128 8490 a charge 2 +155129 8490 of genuine excitement 4 +155130 8490 genuine excitement 4 +155131 8491 with a couple of burnt-out cylinders 2 +155132 8491 a couple of burnt-out cylinders 1 +155133 8491 of burnt-out cylinders 2 +155134 8491 burnt-out cylinders 2 +155135 8491 burnt-out 0 +155136 8492 Tackles the difficult subject of grief and loss with such life-embracing spirit that the theme does n't drag an audience down . 3 +155137 8492 Tackles the difficult subject of grief and loss with such life-embracing spirit that the theme does n't drag an audience down 4 +155138 8492 Tackles the difficult subject of grief and loss with such life-embracing spirit 4 +155139 8492 Tackles the difficult subject of grief and loss 3 +155140 8492 the difficult subject of grief and loss 2 +155141 8492 the difficult subject 2 +155142 8492 difficult subject 2 +155143 8492 of grief and loss 1 +155144 8492 grief and loss 2 +155145 8492 with such life-embracing spirit 3 +155146 8492 such life-embracing spirit 3 +155147 8492 life-embracing spirit 3 +155148 8492 life-embracing 3 +155149 8492 that the theme does n't drag an audience down 3 +155150 8492 the theme does n't drag an audience down 3 +155151 8492 does n't drag an audience down 3 +155152 8492 drag an audience down 2 +155153 8492 drag an audience 1 +155154 8493 A moving story of determination and the human spirit . 4 +155155 8493 A moving story of determination and the human spirit 3 +155156 8493 A moving story 3 +155157 8493 of determination and the human spirit 3 +155158 8493 determination and the human spirit 3 +155159 8493 determination and 2 +155160 8494 We admire this film for its harsh objectivity and refusal to seek our tears , our sympathies . 4 +155161 8494 admire this film for its harsh objectivity and refusal to seek our tears , our sympathies . 3 +155162 8494 admire this film for its harsh objectivity and refusal to seek our tears , our sympathies 3 +155163 8494 this film for its harsh objectivity and refusal to seek our tears , our sympathies 3 +155164 8494 this film for its harsh objectivity and refusal 2 +155165 8494 for its harsh objectivity and refusal 2 +155166 8494 its harsh objectivity and refusal 2 +155167 8494 harsh objectivity and refusal 1 +155168 8494 objectivity and refusal 1 +155169 8494 objectivity and 2 +155170 8494 to seek our tears , our sympathies 3 +155171 8494 seek our tears , our sympathies 2 +155172 8494 our tears , our sympathies 2 +155173 8494 our tears , 2 +155174 8494 our tears 2 +155175 8494 our sympathies 3 +155176 8495 Disgusting . 0 +155177 8496 ` Moore is like a progressive bull in a china shop , a provocateur crashing into ideas and special-interest groups as he slaps together his own brand of liberalism . ' 1 +155178 8496 Moore is like a progressive bull in a china shop , a provocateur crashing into ideas and special-interest groups as he slaps together his own brand of liberalism . ' 2 +155179 8496 is like a progressive bull in a china shop , a provocateur crashing into ideas and special-interest groups as he slaps together his own brand of liberalism . ' 3 +155180 8496 is like a progressive bull in a china shop , a provocateur crashing into ideas and special-interest groups as he slaps together his own brand of liberalism . 2 +155181 8496 is like a progressive bull in a china shop , a provocateur crashing into ideas and special-interest groups as he slaps together his own brand of liberalism 2 +155182 8496 like a progressive bull in a china shop , a provocateur crashing into ideas and special-interest groups as he slaps together his own brand of liberalism 2 +155183 8496 a progressive bull in a china shop , a provocateur crashing into ideas and special-interest groups as he slaps together his own brand of liberalism 2 +155184 8496 a progressive bull 2 +155185 8496 progressive bull 2 +155186 8496 progressive 2 +155187 8496 in a china shop , a provocateur crashing into ideas and special-interest groups as he slaps together his own brand of liberalism 2 +155188 8496 a china shop , a provocateur crashing into ideas and special-interest groups as he slaps together his own brand of liberalism 3 +155189 8496 a china shop , 2 +155190 8496 a china shop 2 +155191 8496 china shop 2 +155192 8496 a provocateur crashing into ideas and special-interest groups as he slaps together his own brand of liberalism 2 +155193 8496 a provocateur 3 +155194 8496 provocateur 2 +155195 8496 crashing into ideas and special-interest groups as he slaps together his own brand of liberalism 2 +155196 8496 crashing into ideas and special-interest groups 2 +155197 8496 into ideas and special-interest groups 2 +155198 8496 ideas and special-interest groups 3 +155199 8496 special-interest groups 2 +155200 8496 special-interest 2 +155201 8496 as he slaps together his own brand of liberalism 2 +155202 8496 he slaps together his own brand of liberalism 1 +155203 8496 slaps together his own brand of liberalism 2 +155204 8496 slaps together 2 +155205 8496 slaps 2 +155206 8496 his own brand of liberalism 2 +155207 8496 his own brand 2 +155208 8496 own brand 2 +155209 8496 of liberalism 2 +155210 8496 liberalism 2 +155211 8497 Reno does what he can in a thankless situation , the film ricochets from humor to violence and back again , and Ryoko Hirosue makes us wonder if she is always like that . 2 +155212 8497 Reno does what he can in a thankless situation , the film ricochets from humor to violence and back again , and Ryoko Hirosue makes us wonder if she is always like that 3 +155213 8497 Reno does what he can in a thankless situation , the film ricochets from humor to violence and back again , and 3 +155214 8497 Reno does what he can in a thankless situation , the film ricochets from humor to violence and back again , 3 +155215 8497 Reno does what he can in a thankless situation , the film ricochets from humor to violence and back again 2 +155216 8497 Reno does what he can in a thankless situation , the film ricochets from humor to violence and 2 +155217 8497 Reno does what he can in a thankless situation , the film ricochets from humor to violence 2 +155218 8497 Reno does what he can in a thankless situation , 2 +155219 8497 Reno does what he can in a thankless situation 2 +155220 8497 does what he can in a thankless situation 2 +155221 8497 what he can in a thankless situation 2 +155222 8497 he can in a thankless situation 2 +155223 8497 can in a thankless situation 2 +155224 8497 in a thankless situation 2 +155225 8497 a thankless situation 2 +155226 8497 thankless situation 1 +155227 8497 thankless 1 +155228 8497 the film ricochets from humor to violence 2 +155229 8497 ricochets from humor to violence 2 +155230 8497 ricochets from humor 2 +155231 8497 ricochets 2 +155232 8497 from humor 3 +155233 8497 to violence 2 +155234 8497 back again 2 +155235 8497 Ryoko Hirosue makes us wonder if she is always like that 2 +155236 8497 Ryoko Hirosue 2 +155237 8497 Ryoko 2 +155238 8497 Hirosue 2 +155239 8497 makes us wonder if she is always like that 2 +155240 8497 us wonder if she is always like that 2 +155241 8497 wonder if she is always like that 2 +155242 8497 if she is always like that 2 +155243 8497 she is always like that 2 +155244 8497 is always like that 2 +155245 8497 like that 2 +155246 8498 The culmination of everyone 's efforts is given life when A Selection appears in its final form -LRB- in `` Last Dance '' -RRB- . 2 +155247 8498 The culmination of everyone 's efforts 3 +155248 8498 The culmination 2 +155249 8498 culmination 2 +155250 8498 of everyone 's efforts 2 +155251 8498 everyone 's efforts 2 +155252 8498 is given life when A Selection appears in its final form -LRB- in `` Last Dance '' -RRB- . 2 +155253 8498 is given life when A Selection appears in its final form -LRB- in `` Last Dance '' -RRB- 3 +155254 8498 given life when A Selection appears in its final form -LRB- in `` Last Dance '' -RRB- 2 +155255 8498 given life 2 +155256 8498 when A Selection appears in its final form -LRB- in `` Last Dance '' -RRB- 2 +155257 8498 A Selection appears in its final form -LRB- in `` Last Dance '' -RRB- 2 +155258 8498 appears in its final form -LRB- in `` Last Dance '' -RRB- 2 +155259 8498 appears in its final form 2 +155260 8498 in its final form 2 +155261 8498 its final form 2 +155262 8498 final form 2 +155263 8498 -LRB- in `` Last Dance '' -RRB- 2 +155264 8498 in `` Last Dance '' -RRB- 2 +155265 8498 in `` Last Dance '' 2 +155266 8498 `` Last Dance '' 2 +155267 8498 Last Dance '' 2 +155268 8498 Dance '' 2 +155269 8499 It goes down easy , leaving virtually no aftertaste . 3 +155270 8499 goes down easy , leaving virtually no aftertaste . 2 +155271 8499 goes down easy , leaving virtually no aftertaste 2 +155272 8499 goes down easy , 2 +155273 8499 goes down easy 1 +155274 8499 goes down 2 +155275 8499 leaving virtually no aftertaste 2 +155276 8499 virtually no aftertaste 1 +155277 8499 no aftertaste 2 +155278 8500 Crossroads feels like a teenybopper Ed Wood film , replete with the pubescent scandalous innuendo and the high-strung but flaccid drama . 0 +155279 8500 feels like a teenybopper Ed Wood film , replete with the pubescent scandalous innuendo and the high-strung but flaccid drama . 0 +155280 8500 feels like a teenybopper Ed Wood film , replete with the pubescent scandalous innuendo and the high-strung but flaccid drama 1 +155281 8500 like a teenybopper Ed Wood film , replete with the pubescent scandalous innuendo and the high-strung but flaccid drama 1 +155282 8500 a teenybopper Ed Wood film , replete with the pubescent scandalous innuendo and the high-strung but flaccid drama 1 +155283 8500 a teenybopper Ed Wood film , replete with the pubescent scandalous innuendo and 1 +155284 8500 a teenybopper Ed Wood film , replete with the pubescent scandalous innuendo 1 +155285 8500 a teenybopper Ed Wood film , 3 +155286 8500 a teenybopper Ed Wood film 2 +155287 8500 teenybopper Ed Wood film 2 +155288 8500 teenybopper 2 +155289 8500 Ed Wood film 2 +155290 8500 Wood film 2 +155291 8500 replete with the pubescent scandalous innuendo 1 +155292 8500 replete with the pubescent scandalous 1 +155293 8500 with the pubescent scandalous 1 +155294 8500 the pubescent scandalous 2 +155295 8500 pubescent scandalous 2 +155296 8500 pubescent 3 +155297 8500 scandalous 2 +155298 8500 the high-strung but flaccid drama 2 +155299 8500 high-strung but flaccid drama 1 +155300 8500 high-strung but flaccid 2 +155301 8500 high-strung but 2 +155302 8500 high-strung 1 +155303 8501 Certainly beautiful to look at , but its not very informative about its titular character and no more challenging than your average television biopic . 2 +155304 8501 Certainly beautiful 3 +155305 8501 to look at , but its not very informative about its titular character and no more challenging than your average television biopic . 2 +155306 8501 to look at , but its not very informative about its titular character and no more challenging than your average television biopic 2 +155307 8501 look at , but its not very informative about its titular character and no more challenging than your average television biopic 1 +155308 8501 at , but its not very informative about its titular character and no more challenging than your average television biopic 1 +155309 8501 , but its not very informative about its titular character and no more challenging than your average television biopic 1 +155310 8501 its not very informative about its titular character and no more challenging than your average television biopic 1 +155311 8501 its not very informative about its titular character and 1 +155312 8501 its not very informative about its titular character 2 +155313 8501 not very informative about its titular character 1 +155314 8501 not very informative about its titular 1 +155315 8501 not very informative 2 +155316 8501 very informative 4 +155317 8501 about its titular 2 +155318 8501 its titular 2 +155319 8501 no more challenging than your average television biopic 1 +155320 8501 more challenging than your average television biopic 2 +155321 8501 more challenging than your average television 2 +155322 8501 more challenging 2 +155323 8501 than your average television 2 +155324 8501 your average television 2 +155325 8501 average television 1 +155326 8502 Mike Leigh populates his movie with a wonderful ensemble cast of characters that bring the routine day to day struggles of the working class to life 4 +155327 8502 Mike Leigh 2 +155328 8502 populates his movie with a wonderful ensemble cast of characters that bring the routine day to day struggles of the working class to life 4 +155329 8502 populates his movie 2 +155330 8502 populates 2 +155331 8502 with a wonderful ensemble cast of characters that bring the routine day to day struggles of the working class to life 3 +155332 8502 a wonderful ensemble cast of characters that bring the routine day to day struggles of the working class to life 4 +155333 8502 a wonderful ensemble cast 4 +155334 8502 wonderful ensemble cast 4 +155335 8502 of characters that bring the routine day to day struggles of the working class to life 3 +155336 8502 characters that bring the routine day to day struggles of the working class to life 3 +155337 8502 that bring the routine day to day struggles of the working class to life 3 +155338 8502 bring the routine day to day struggles of the working class to life 3 +155339 8502 the routine day to day struggles of the working class to life 2 +155340 8502 the routine day to day 3 +155341 8502 the routine day 2 +155342 8502 routine day 2 +155343 8502 to day 2 +155344 8502 struggles of the working class to life 3 +155345 8502 of the working class to life 2 +155346 8502 the working class to life 3 +155347 8502 the working class 2 +155348 8502 working class 2 +155349 8503 If you open yourself up to Mr. Reggio 's theory of this imagery as the movie 's set ... it can impart an almost visceral sense of dislocation and change . 3 +155350 8503 If you open yourself up to Mr. Reggio 's theory of this imagery as the movie 's set 2 +155351 8503 you open yourself up to Mr. Reggio 's theory of this imagery as the movie 's set 3 +155352 8503 open yourself up to Mr. Reggio 's theory of this imagery as the movie 's set 3 +155353 8503 open yourself up 2 +155354 8503 open yourself 2 +155355 8503 to Mr. Reggio 's theory of this imagery as the movie 's set 2 +155356 8503 Mr. Reggio 's theory of this imagery as the movie 's set 2 +155357 8503 Mr. Reggio 's theory 2 +155358 8503 Mr. Reggio 's 2 +155359 8503 of this imagery as the movie 's set 2 +155360 8503 this imagery as the movie 's set 2 +155361 8503 this imagery 2 +155362 8503 as the movie 's set 2 +155363 8503 the movie 's set 3 +155364 8503 ... it can impart an almost visceral sense of dislocation and change . 2 +155365 8503 it can impart an almost visceral sense of dislocation and change . 3 +155366 8503 can impart an almost visceral sense of dislocation and change . 3 +155367 8503 can impart an almost visceral sense of dislocation and change 3 +155368 8503 impart an almost visceral sense of dislocation and change 4 +155369 8503 an almost visceral sense of dislocation and change 2 +155370 8503 an almost visceral sense 2 +155371 8503 almost visceral sense 2 +155372 8503 almost visceral 2 +155373 8503 of dislocation and change 2 +155374 8503 dislocation and change 2 +155375 8503 dislocation and 2 +155376 8503 dislocation 1 +155377 8504 Does not go far enough in its humor or stock ideas to stand out as particularly memorable or even all that funny . 1 +155378 8504 Does not go far enough in its humor or stock ideas to stand out as particularly memorable or even all that funny 2 +155379 8504 go far enough in its humor or stock ideas to stand out as particularly memorable or even all that funny 2 +155380 8504 go far enough in its humor or stock ideas 2 +155381 8504 go far enough 2 +155382 8504 in its humor or stock ideas 2 +155383 8504 its humor or stock ideas 2 +155384 8504 humor or stock ideas 2 +155385 8504 or stock ideas 2 +155386 8504 stock ideas 2 +155387 8504 to stand out as particularly memorable or even all that funny 1 +155388 8504 stand out as particularly memorable or even all that funny 2 +155389 8504 as particularly memorable or even all that funny 1 +155390 8504 particularly memorable or even all that funny 1 +155391 8504 particularly memorable or 2 +155392 8504 even all that funny 2 +155393 8504 all that funny 2 +155394 8505 It 's refreshing to see a romance this smart . 3 +155395 8505 's refreshing to see a romance this smart . 3 +155396 8505 's refreshing to see a romance this smart 4 +155397 8505 refreshing to see a romance this smart 3 +155398 8505 to see a romance this smart 4 +155399 8505 see a romance this smart 3 +155400 8505 a romance this smart 3 +155401 8505 this smart 3 +155402 8506 Like the chilled breath of oral storytelling frozen onto film . 3 +155403 8506 Like the chilled breath of oral storytelling frozen onto film 3 +155404 8506 the chilled breath of oral storytelling frozen onto film 3 +155405 8506 the chilled breath 2 +155406 8506 chilled breath 2 +155407 8506 chilled 2 +155408 8506 of oral storytelling frozen onto film 3 +155409 8506 oral storytelling frozen onto film 3 +155410 8506 oral storytelling 2 +155411 8506 frozen onto film 2 +155412 8506 onto film 2 +155413 8507 Shattering , devastating documentary on two maladjusted teens in a downward narcotized spiral . 3 +155414 8507 , devastating documentary on two maladjusted teens in a downward narcotized spiral . 2 +155415 8507 devastating documentary on two maladjusted teens in a downward narcotized spiral . 2 +155416 8507 devastating documentary on two 2 +155417 8507 devastating documentary 2 +155418 8507 on two 2 +155419 8507 maladjusted teens in a downward narcotized spiral . 1 +155420 8507 maladjusted teens in a downward narcotized spiral 1 +155421 8507 maladjusted teens 2 +155422 8507 maladjusted 2 +155423 8507 in a downward narcotized spiral 1 +155424 8507 a downward narcotized spiral 1 +155425 8507 downward narcotized spiral 2 +155426 8507 narcotized spiral 2 +155427 8507 narcotized 1 +155428 8508 As exciting as all this exoticism might sound to the typical Pax viewer , the rest of us will be lulled into a coma . 0 +155429 8508 As exciting as all this exoticism might sound to the typical Pax viewer 2 +155430 8508 exciting as all this exoticism might sound to the typical Pax viewer 2 +155431 8508 exciting as all this exoticism might sound to the typical Pax 2 +155432 8508 as all this exoticism might sound to the typical Pax 2 +155433 8508 all this exoticism might sound to the typical Pax 3 +155434 8508 all this exoticism 2 +155435 8508 this exoticism 2 +155436 8508 might sound to the typical Pax 2 +155437 8508 sound to the typical Pax 2 +155438 8508 to the typical Pax 2 +155439 8508 the typical Pax 2 +155440 8508 typical Pax 1 +155441 8508 Pax 2 +155442 8508 , the rest of us will be lulled into a coma . 1 +155443 8508 the rest of us will be lulled into a coma . 1 +155444 8508 will be lulled into a coma . 0 +155445 8508 will be lulled into a coma 1 +155446 8508 be lulled into a coma 0 +155447 8508 lulled into a coma 0 +155448 8508 lulled 1 +155449 8508 into a coma 2 +155450 8508 a coma 1 +155451 8509 The film is reasonably entertaining , though it begins to drag two-thirds through , when the melodramatic aspects start to overtake the comedy . 3 +155452 8509 is reasonably entertaining , though it begins to drag two-thirds through , when the melodramatic aspects start to overtake the comedy . 3 +155453 8509 is reasonably entertaining , though it begins to drag two-thirds through , when the melodramatic aspects start to overtake the comedy 2 +155454 8509 is reasonably entertaining , 3 +155455 8509 is reasonably entertaining 3 +155456 8509 though it begins to drag two-thirds through , when the melodramatic aspects start to overtake the comedy 1 +155457 8509 it begins to drag two-thirds through , when the melodramatic aspects start to overtake the comedy 1 +155458 8509 begins to drag two-thirds through , when the melodramatic aspects start to overtake the comedy 1 +155459 8509 to drag two-thirds through , when the melodramatic aspects start to overtake the comedy 1 +155460 8509 drag two-thirds through , when the melodramatic aspects start to overtake the comedy 2 +155461 8509 drag two-thirds through , 1 +155462 8509 drag two-thirds through 1 +155463 8509 drag two-thirds 2 +155464 8509 when the melodramatic aspects start to overtake the comedy 2 +155465 8509 the melodramatic aspects start to overtake the comedy 1 +155466 8509 the melodramatic aspects 2 +155467 8509 melodramatic aspects 2 +155468 8509 start to overtake the comedy 2 +155469 8509 to overtake the comedy 2 +155470 8509 overtake the comedy 2 +155471 8509 overtake 2 +155472 8510 It never rises to its clever what-if concept . 1 +155473 8510 never rises to its clever what-if concept . 1 +155474 8510 rises to its clever what-if concept . 3 +155475 8510 rises to its clever what-if concept 3 +155476 8510 to its clever what-if concept 3 +155477 8510 its clever what-if concept 2 +155478 8510 clever what-if concept 2 +155479 8510 what-if concept 2 +155480 8511 Much has been written about those years when the psychedelic '60s grooved over into the gay '70s , but words do n't really do the era justice . 3 +155481 8511 Much has been written about those years when the psychedelic '60s grooved over into the gay '70s , but words do n't really do the era justice 2 +155482 8511 Much has been written about those years when the psychedelic '60s grooved over into the gay '70s , but 2 +155483 8511 Much has been written about those years when the psychedelic '60s grooved over into the gay '70s , 2 +155484 8511 Much has been written about those years when the psychedelic '60s grooved over into the gay '70s 2 +155485 8511 has been written about those years when the psychedelic '60s grooved over into the gay '70s 2 +155486 8511 been written about those years when the psychedelic '60s grooved over into the gay '70s 2 +155487 8511 written about those years when the psychedelic '60s grooved over into the gay '70s 2 +155488 8511 written about those years 2 +155489 8511 about those years 2 +155490 8511 those years 2 +155491 8511 when the psychedelic '60s grooved over into the gay '70s 2 +155492 8511 the psychedelic '60s grooved over into the gay '70s 2 +155493 8511 the psychedelic '60s 2 +155494 8511 psychedelic '60s 2 +155495 8511 grooved over into the gay '70s 2 +155496 8511 grooved over 2 +155497 8511 grooved 2 +155498 8511 into the gay '70s 2 +155499 8511 the gay '70s 3 +155500 8511 gay '70s 2 +155501 8511 words do n't really do the era justice 2 +155502 8511 do n't really do the era justice 2 +155503 8511 do the era justice 2 +155504 8511 the era justice 2 +155505 8511 era justice 2 +155506 8512 A sly dissection of the inanities of the contemporary music business and a rather sad story of the difficulties of artistic collaboration . 2 +155507 8512 A sly dissection of the inanities of the contemporary music business and a rather sad story of the difficulties of artistic collaboration 2 +155508 8512 A sly dissection of the inanities of the contemporary music business and a rather sad story of the difficulties 2 +155509 8512 A sly dissection 3 +155510 8512 sly dissection 3 +155511 8512 dissection 2 +155512 8512 of the inanities of the contemporary music business and a rather sad story of the difficulties 2 +155513 8512 the inanities of the contemporary music business and a rather sad story of the difficulties 1 +155514 8512 the inanities of the contemporary music business and 2 +155515 8512 the inanities of the contemporary music business 1 +155516 8512 the inanities 2 +155517 8512 inanities 1 +155518 8512 of the contemporary music business 2 +155519 8512 the contemporary music business 3 +155520 8512 contemporary music business 2 +155521 8512 a rather sad story of the difficulties 1 +155522 8512 a rather sad story 1 +155523 8512 rather sad story 2 +155524 8512 rather sad 1 +155525 8512 of the difficulties 2 +155526 8512 the difficulties 1 +155527 8512 of artistic collaboration 3 +155528 8513 A gracious , eloquent film that by its end offers a ray of hope to the refugees able to look ahead and resist living in a past forever lost . 4 +155529 8513 A gracious , eloquent film that by its end offers a ray of hope to the refugees able to look ahead and resist living in a past 3 +155530 8513 A gracious , eloquent film 4 +155531 8513 gracious , eloquent film 4 +155532 8513 gracious 3 +155533 8513 , eloquent film 3 +155534 8513 eloquent film 3 +155535 8513 that by its end offers a ray of hope to the refugees able to look ahead and resist living in a past 3 +155536 8513 by its end offers a ray of hope to the refugees able to look ahead and resist living in a past 3 +155537 8513 by its end 2 +155538 8513 its end 2 +155539 8513 offers a ray of hope to the refugees able to look ahead and resist living in a past 3 +155540 8513 offers a ray of hope 3 +155541 8513 a ray of hope 3 +155542 8513 a ray 2 +155543 8513 to the refugees able to look ahead and resist living in a past 2 +155544 8513 the refugees able to look ahead and resist living in a past 3 +155545 8513 the refugees 2 +155546 8513 able to look ahead and resist living in a past 3 +155547 8513 to look ahead and resist living in a past 2 +155548 8513 look ahead and resist living in a past 3 +155549 8513 look ahead and 2 +155550 8513 look ahead 2 +155551 8513 resist living in a past 2 +155552 8513 living in a past 2 +155553 8513 in a past 2 +155554 8513 a past 2 +155555 8513 forever lost . 2 +155556 8513 lost . 1 +155557 8514 Every conceivable mistake a director could make in filming opera has been perpetrated here . 0 +155558 8514 Every conceivable mistake a director could make in filming opera 0 +155559 8514 Every conceivable mistake 1 +155560 8514 conceivable mistake 0 +155561 8514 conceivable 3 +155562 8514 a director could make in filming opera 2 +155563 8514 could make in filming opera 2 +155564 8514 make in filming opera 2 +155565 8514 in filming opera 2 +155566 8514 filming opera 2 +155567 8514 has been perpetrated here . 2 +155568 8514 has been perpetrated here 2 +155569 8514 been perpetrated here 2 +155570 8514 perpetrated here 2 +155571 8515 It 's the kind of movie that , aside from Robert Altman , Spike Lee , the Coen Brothers and a few others , our moviemakers do n't make often enough . 4 +155572 8515 's the kind of movie that , aside from Robert Altman , Spike Lee , the Coen Brothers and a few others , our moviemakers do n't make often enough . 4 +155573 8515 's the kind of movie that , aside from Robert Altman , Spike Lee , the Coen Brothers and a few others , our moviemakers do n't make often enough 3 +155574 8515 's the kind of movie 2 +155575 8515 that , aside from Robert Altman , Spike Lee , the Coen Brothers and a few others , our moviemakers do n't make often enough 2 +155576 8515 , aside from Robert Altman , Spike Lee , the Coen Brothers and a few others , our moviemakers do n't make often enough 2 +155577 8515 , aside from Robert Altman , Spike Lee , the Coen Brothers and a few others , 2 +155578 8515 aside from Robert Altman , Spike Lee , the Coen Brothers and a few others , 2 +155579 8515 from Robert Altman , Spike Lee , the Coen Brothers and a few others , 2 +155580 8515 from Robert Altman , Spike Lee , the Coen Brothers and a few others 2 +155581 8515 Robert Altman , Spike Lee , the Coen Brothers and a few others 2 +155582 8515 Robert Altman , Spike Lee , the Coen Brothers and 2 +155583 8515 Robert Altman , Spike Lee , the Coen Brothers 2 +155584 8515 Robert Altman , Spike Lee , 2 +155585 8515 Robert Altman , Spike Lee 2 +155586 8515 Robert Altman , 2 +155587 8515 Robert Altman 2 +155588 8515 a few others 2 +155589 8515 few others 2 +155590 8515 our moviemakers do n't make often enough 2 +155591 8515 our moviemakers 3 +155592 8515 do n't make often enough 2 +155593 8515 make often enough 2 +155594 8516 Williams creates a stunning , Taxi Driver-esque portrayal of a man teetering on the edge of sanity . 4 +155595 8516 creates a stunning , Taxi Driver-esque portrayal of a man teetering on the edge of sanity . 4 +155596 8516 creates a stunning , Taxi Driver-esque portrayal of a man teetering on the edge of sanity 3 +155597 8516 a stunning , Taxi Driver-esque portrayal of a man teetering on the edge of sanity 4 +155598 8516 a stunning , Taxi Driver-esque portrayal 4 +155599 8516 stunning , Taxi Driver-esque portrayal 4 +155600 8516 , Taxi Driver-esque portrayal 2 +155601 8516 Taxi Driver-esque portrayal 2 +155602 8516 Taxi 2 +155603 8516 Driver-esque portrayal 2 +155604 8516 Driver-esque 2 +155605 8516 of a man teetering on the edge of sanity 2 +155606 8516 a man teetering on the edge of sanity 2 +155607 8516 teetering on the edge of sanity 1 +155608 8516 teetering 2 +155609 8516 on the edge of sanity 2 +155610 8516 the edge of sanity 1 +155611 8516 of sanity 2 +155612 8516 sanity 2 +155613 8517 Campbell Scott finds the ideal outlet for his flick-knife diction in the role of Roger Swanson . 3 +155614 8517 Campbell Scott 2 +155615 8517 Campbell 2 +155616 8517 finds the ideal outlet for his flick-knife diction in the role of Roger Swanson . 3 +155617 8517 finds the ideal outlet for his flick-knife diction in the role of Roger Swanson 3 +155618 8517 the ideal outlet for his flick-knife diction in the role of Roger Swanson 3 +155619 8517 the ideal outlet 3 +155620 8517 ideal outlet 3 +155621 8517 outlet 2 +155622 8517 for his flick-knife diction in the role of Roger Swanson 2 +155623 8517 his flick-knife diction in the role of Roger Swanson 3 +155624 8517 his flick-knife diction 2 +155625 8517 flick-knife diction 2 +155626 8517 flick-knife 2 +155627 8517 diction 2 +155628 8517 in the role of Roger Swanson 2 +155629 8517 the role of Roger Swanson 2 +155630 8517 of Roger Swanson 2 +155631 8517 Roger Swanson 2 +155632 8517 Swanson 2 +155633 8518 Has a certain ghoulish fascination , and generates a fair amount of B-movie excitement . 3 +155634 8518 Has a certain ghoulish fascination , and generates a fair amount of B-movie excitement 3 +155635 8518 Has a certain ghoulish 2 +155636 8518 a certain ghoulish 2 +155637 8518 certain ghoulish 2 +155638 8518 ghoulish 2 +155639 8518 fascination , and generates a fair amount of B-movie excitement 3 +155640 8518 fascination , and 3 +155641 8518 fascination , 3 +155642 8518 generates a fair amount of B-movie excitement 2 +155643 8518 a fair amount of B-movie excitement 3 +155644 8518 of B-movie excitement 3 +155645 8518 B-movie excitement 2 +155646 8519 With its parade of almost perpetually wasted characters ... Margarita feels like a hazy high that takes too long to shake . 1 +155647 8519 With its parade of almost perpetually wasted characters 1 +155648 8519 its parade of almost perpetually wasted characters 1 +155649 8519 of almost perpetually wasted characters 1 +155650 8519 almost perpetually wasted characters 1 +155651 8519 almost perpetually wasted 0 +155652 8519 perpetually wasted 1 +155653 8519 perpetually 2 +155654 8519 ... Margarita feels like a hazy high that takes too long to shake . 1 +155655 8519 Margarita feels like a hazy high that takes too long to shake . 1 +155656 8519 feels like a hazy high that takes too long to shake . 1 +155657 8519 feels like a hazy high that takes too long to shake 0 +155658 8519 like a hazy high that takes too long to shake 1 +155659 8519 a hazy high that takes too long to shake 2 +155660 8519 a hazy high 3 +155661 8519 hazy high 3 +155662 8519 hazy 1 +155663 8519 that takes too long to shake 1 +155664 8519 takes too long to shake 1 +155665 8519 too long to shake 1 +155666 8519 long to shake 2 +155667 8520 Bolstered by an astonishing voice cast -LRB- excepting Love Hewitt -RRB- , an interesting racial tension , and a storyline that I have n't encountered since at least Pete 's Dragon . 3 +155668 8520 Bolstered by an astonishing voice cast -LRB- excepting Love Hewitt -RRB- , an interesting racial tension , and a storyline that I have n't encountered since at least Pete 's Dragon 3 +155669 8520 Bolstered by an astonishing voice cast -LRB- excepting Love Hewitt -RRB- , an interesting racial tension , and a storyline 3 +155670 8520 by an astonishing voice cast -LRB- excepting Love Hewitt -RRB- , an interesting racial tension , and a storyline 4 +155671 8520 an astonishing voice cast -LRB- excepting Love Hewitt -RRB- , an interesting racial tension , and a storyline 3 +155672 8520 an astonishing voice cast -LRB- excepting Love Hewitt -RRB- , an interesting racial tension , and 3 +155673 8520 an astonishing voice cast -LRB- excepting Love Hewitt -RRB- , an interesting racial tension , 2 +155674 8520 an astonishing voice cast -LRB- excepting Love Hewitt -RRB- , an interesting racial tension 3 +155675 8520 an astonishing voice cast -LRB- excepting Love Hewitt -RRB- , 3 +155676 8520 an astonishing voice cast -LRB- excepting Love Hewitt -RRB- 3 +155677 8520 an astonishing voice cast 4 +155678 8520 astonishing voice cast 3 +155679 8520 voice cast 2 +155680 8520 -LRB- excepting Love Hewitt -RRB- 2 +155681 8520 excepting Love Hewitt -RRB- 2 +155682 8520 excepting Love Hewitt 2 +155683 8520 excepting 2 +155684 8520 an interesting racial tension 3 +155685 8520 interesting racial tension 2 +155686 8520 that I have n't encountered since at least Pete 's Dragon 2 +155687 8520 I have n't encountered since at least Pete 's Dragon 2 +155688 8520 have n't encountered since at least Pete 's Dragon 2 +155689 8520 encountered since at least Pete 's Dragon 2 +155690 8520 encountered 2 +155691 8520 since at least Pete 's Dragon 2 +155692 8520 at least Pete 's Dragon 2 +155693 8520 at least Pete 's 2 +155694 8521 A witty , whimsical feature debut . 3 +155695 8521 A witty , whimsical feature debut 4 +155696 8521 A witty , whimsical feature 3 +155697 8521 witty , whimsical feature 4 +155698 8521 , whimsical feature 3 +155699 8521 whimsical feature 2 +155700 8522 Exhilarating , funny and fun . 4 +155701 8522 Exhilarating , funny and fun 4 +155702 8522 Exhilarating , 4 +155703 8522 funny and fun 3 +155704 8523 As an entertainment destination for the general public , Kung Pow sets a new benchmark for lameness . 1 +155705 8523 As an entertainment destination for the general public 3 +155706 8523 an entertainment destination for the general public 4 +155707 8523 an entertainment destination 3 +155708 8523 entertainment destination 2 +155709 8523 for the general public 2 +155710 8523 the general public 2 +155711 8523 general public 2 +155712 8523 , Kung Pow sets a new benchmark for lameness . 1 +155713 8523 Kung Pow sets a new benchmark for lameness . 0 +155714 8523 sets a new benchmark for lameness . 0 +155715 8523 sets a new benchmark for lameness 1 +155716 8523 a new benchmark for lameness 0 +155717 8523 a new benchmark 2 +155718 8523 new benchmark 3 +155719 8523 benchmark 2 +155720 8523 for lameness 1 +155721 8523 lameness 1 +155722 8524 Downbeat , period-perfect biopic hammers home a heavy-handed moralistic message . 3 +155723 8524 Downbeat , period-perfect biopic hammers home a heavy-handed moralistic message 1 +155724 8524 Downbeat , period-perfect biopic hammers 2 +155725 8524 , period-perfect biopic hammers 3 +155726 8524 period-perfect biopic hammers 2 +155727 8524 period-perfect 3 +155728 8524 biopic hammers 2 +155729 8524 hammers 2 +155730 8524 home a heavy-handed moralistic message 2 +155731 8524 a heavy-handed moralistic message 2 +155732 8524 heavy-handed moralistic message 2 +155733 8524 heavy-handed moralistic 1 +155734 8525 None of this so-called satire has any sting to it , as if Woody is afraid of biting the hand that has finally , to some extent , warmed up to him . 1 +155735 8525 None of this so-called satire 2 +155736 8525 of this so-called satire 1 +155737 8525 this so-called satire 1 +155738 8525 so-called satire 1 +155739 8525 has any sting to it , as if Woody is afraid of biting the hand that has finally , to some extent , warmed up to him . 2 +155740 8525 has any sting to it , as if Woody is afraid of biting the hand that has finally , to some extent , warmed up to him 2 +155741 8525 has any sting to it , 2 +155742 8525 has any sting to it 3 +155743 8525 has any sting 2 +155744 8525 any sting 2 +155745 8525 as if Woody is afraid of biting the hand that has finally , to some extent , warmed up to him 2 +155746 8525 if Woody is afraid of biting the hand that has finally , to some extent , warmed up to him 2 +155747 8525 Woody is afraid of biting the hand that has finally , to some extent , warmed up to him 2 +155748 8525 is afraid of biting the hand that has finally , to some extent , warmed up to him 2 +155749 8525 afraid of biting the hand that has finally , to some extent , warmed up to him 2 +155750 8525 of biting the hand that has finally , to some extent , warmed up to him 1 +155751 8525 biting the hand that has finally , to some extent , warmed up to him 2 +155752 8525 the hand that has finally , to some extent , warmed up to him 3 +155753 8525 the hand 2 +155754 8525 that has finally , to some extent , warmed up to him 3 +155755 8525 has finally , to some extent , warmed up to him 3 +155756 8525 has finally , to some extent , 2 +155757 8525 finally , to some extent , 2 +155758 8525 , to some extent , 2 +155759 8525 to some extent , 2 +155760 8525 to some extent 2 +155761 8525 some extent 2 +155762 8525 warmed up to him 3 +155763 8525 warmed up 2 +155764 8525 to him 2 +155765 8526 The Santa Clause 2 is a barely adequate babysitter for older kids , but I 've got to give it thumbs down . 2 +155766 8526 The Santa Clause 2 is a barely adequate babysitter for older kids , but I 've got to give it thumbs down 1 +155767 8526 The Santa Clause 2 is a barely adequate babysitter for older kids , but 1 +155768 8526 The Santa Clause 2 is a barely adequate babysitter for older kids , 0 +155769 8526 The Santa Clause 2 is a barely adequate babysitter for older kids 1 +155770 8526 is a barely adequate babysitter for older kids 1 +155771 8526 a barely adequate babysitter for older kids 1 +155772 8526 a barely adequate babysitter 1 +155773 8526 barely adequate babysitter 1 +155774 8526 barely adequate 3 +155775 8526 I 've got to give it thumbs down 0 +155776 8526 've got to give it thumbs down 0 +155777 8526 got to give it thumbs down 0 +155778 8526 to give it thumbs down 0 +155779 8526 give it thumbs down 0 +155780 8526 it thumbs down 0 +155781 8527 Sometimes there are very , very good reasons for certain movies to be sealed in a jar and left on a remote shelf indefinitely . 1 +155782 8527 there are very , very good reasons for certain movies to be sealed in a jar and left on a remote shelf indefinitely . 0 +155783 8527 are very , very good reasons for certain movies to be sealed in a jar and left on a remote shelf indefinitely . 0 +155784 8527 are very , very good reasons for certain movies to be sealed in a jar and left on a remote shelf indefinitely 0 +155785 8527 are very , very good reasons for certain movies 3 +155786 8527 are very , very good reasons 4 +155787 8527 very , very good reasons 3 +155788 8527 for certain movies 2 +155789 8527 certain movies 2 +155790 8527 to be sealed in a jar and left on a remote shelf indefinitely 0 +155791 8527 be sealed in a jar and left on a remote shelf indefinitely 1 +155792 8527 sealed in a jar and left on a remote shelf indefinitely 1 +155793 8527 sealed in a jar and 2 +155794 8527 sealed in a jar 1 +155795 8527 in a jar 2 +155796 8527 a jar 2 +155797 8527 left on a remote shelf indefinitely 1 +155798 8527 left on a remote shelf 1 +155799 8527 on a remote shelf 2 +155800 8527 a remote shelf 3 +155801 8527 remote shelf 2 +155802 8527 indefinitely 2 +155803 8528 It makes you believe the cast and crew thoroughly enjoyed themselves and believed in their small-budget film . 3 +155804 8528 makes you believe the cast and crew thoroughly enjoyed themselves and believed in their small-budget film . 4 +155805 8528 makes you believe the cast and crew thoroughly enjoyed themselves and believed in their small-budget film 3 +155806 8528 you believe the cast and crew thoroughly enjoyed themselves and believed in their small-budget film 3 +155807 8528 believe the cast and crew thoroughly enjoyed themselves and believed in their small-budget film 3 +155808 8528 the cast and crew thoroughly enjoyed themselves and believed in their small-budget film 3 +155809 8528 thoroughly enjoyed themselves and believed in their small-budget film 4 +155810 8528 thoroughly enjoyed themselves and 3 +155811 8528 thoroughly enjoyed themselves 3 +155812 8528 enjoyed themselves 3 +155813 8528 believed in their small-budget film 3 +155814 8528 believed 2 +155815 8528 in their small-budget film 2 +155816 8528 their small-budget film 2 +155817 8528 small-budget film 2 +155818 8528 small-budget 1 +155819 8529 The underworld urban angst is derivative of Martin Scorsese 's Taxi Driver and Goodfellas , but this film speaks for itself . 3 +155820 8529 The underworld urban angst is derivative of Martin Scorsese 's Taxi Driver and Goodfellas , but this film speaks for itself 3 +155821 8529 The underworld urban angst is derivative of Martin Scorsese 's Taxi Driver and Goodfellas , but 2 +155822 8529 The underworld urban angst is derivative of Martin Scorsese 's Taxi Driver and Goodfellas , 2 +155823 8529 The underworld urban angst is derivative of Martin Scorsese 's Taxi Driver and Goodfellas 2 +155824 8529 The underworld urban angst 2 +155825 8529 underworld urban angst 2 +155826 8529 underworld 2 +155827 8529 urban angst 2 +155828 8529 is derivative of Martin Scorsese 's Taxi Driver and Goodfellas 2 +155829 8529 derivative of Martin Scorsese 's Taxi Driver and Goodfellas 2 +155830 8529 of Martin Scorsese 's Taxi Driver and Goodfellas 3 +155831 8529 Martin Scorsese 's Taxi Driver and Goodfellas 2 +155832 8529 Taxi Driver and Goodfellas 2 +155833 8529 Driver and Goodfellas 3 +155834 8529 Driver and 2 +155835 8529 this film speaks for itself 3 +155836 8529 speaks for itself 3 +155837 8531 Even if you have no interest in the gang-infested , East-vs . 2 +155838 8531 Even if you have no interest in the gang-infested 2 +155839 8531 if you have no interest in the gang-infested 1 +155840 8531 you have no interest in the gang-infested 1 +155841 8531 have no interest in the gang-infested 1 +155842 8531 no interest in the gang-infested 1 +155843 8531 no interest 1 +155844 8531 in the gang-infested 2 +155845 8531 the gang-infested 1 +155846 8531 gang-infested 1 +155847 8531 , East-vs . 2 +155848 8531 East-vs . 2 +155849 8531 East-vs 2 +155850 8532 The film does n't really care about the thousands of Americans who die hideously , it cares about how Ryan meets his future wife and makes his start at the CIA . 1 +155851 8532 The film does n't really care about the thousands of Americans who die hideously 1 +155852 8532 does n't really care about the thousands of Americans who die hideously 1 +155853 8532 care about the thousands of Americans who die hideously 2 +155854 8532 about the thousands of Americans who die hideously 1 +155855 8532 the thousands of Americans who die hideously 1 +155856 8532 the thousands of Americans 2 +155857 8532 of Americans 2 +155858 8532 who die hideously 1 +155859 8532 die hideously 0 +155860 8532 , it cares about how Ryan meets his future wife and makes his start at the CIA . 2 +155861 8532 it cares about how Ryan meets his future wife and makes his start at the CIA . 2 +155862 8532 cares about how Ryan meets his future wife and makes his start at the CIA . 2 +155863 8532 cares about how Ryan meets his future wife and makes his start at the CIA 2 +155864 8532 about how Ryan meets his future wife and makes his start at the CIA 2 +155865 8532 how Ryan meets his future wife and makes his start at the CIA 2 +155866 8532 Ryan meets his future wife and makes his start at the CIA 2 +155867 8532 meets his future wife and makes his start at the CIA 2 +155868 8532 meets his future wife and 2 +155869 8532 meets his future wife 3 +155870 8532 his future wife 3 +155871 8532 future wife 2 +155872 8532 makes his start at the CIA 2 +155873 8532 makes his start 2 +155874 8532 his start 2 +155875 8532 at the CIA 2 +155876 8532 the CIA 2 +155877 8533 Proves a servicable World War II drama that ca n't totally hide its contrivances , but it at least calls attention to a problem Hollywood too long has ignored . 3 +155878 8533 Proves a servicable World War II drama that ca n't totally hide its contrivances 3 +155879 8533 a servicable World War II drama that ca n't totally hide its contrivances 2 +155880 8533 a servicable World War II drama 3 +155881 8533 servicable World War II drama 3 +155882 8533 servicable World War II 2 +155883 8533 servicable World War 2 +155884 8533 servicable World 2 +155885 8533 servicable 2 +155886 8533 that ca n't totally hide its contrivances 1 +155887 8533 ca n't totally hide its contrivances 2 +155888 8533 ca n't totally 2 +155889 8533 hide its contrivances 1 +155890 8533 , but it at least calls attention to a problem Hollywood too long has ignored . 3 +155891 8533 , but it at least calls attention to a problem Hollywood too long has ignored 2 +155892 8533 it at least calls attention to a problem Hollywood too long has ignored 3 +155893 8533 at least calls attention to a problem Hollywood too long has ignored 2 +155894 8533 calls attention to a problem Hollywood too long has ignored 3 +155895 8533 calls attention 2 +155896 8533 to a problem Hollywood too long has ignored 3 +155897 8533 a problem Hollywood too long has ignored 1 +155898 8533 Hollywood too long has ignored 1 +155899 8533 too long has ignored 1 +155900 8533 has ignored 2 +155901 8534 This movie ... does n't deserve the energy it takes to describe how bad it is . 1 +155902 8534 ... does n't deserve the energy it takes to describe how bad it is . 0 +155903 8534 does n't deserve the energy it takes to describe how bad it is . 0 +155904 8534 does n't deserve the energy it takes to describe how bad it is 0 +155905 8534 deserve the energy it takes to describe how bad it is 0 +155906 8534 the energy it takes to describe how bad it is 0 +155907 8534 it takes to describe how bad it is 0 +155908 8534 takes to describe how bad it is 0 +155909 8534 to describe how bad it is 0 +155910 8534 describe how bad it is 0 +155911 8534 how bad it is 1 +155912 8535 In this case zero . 1 +155913 8535 case zero . 1 +155914 8535 zero . 1 +155915 8536 Simply put , there should have been a more compelling excuse to pair Susan Sarandon and Goldie Hawn . 1 +155916 8536 , there should have been a more compelling excuse to pair Susan Sarandon and Goldie Hawn . 2 +155917 8536 there should have been a more compelling excuse to pair Susan Sarandon and Goldie Hawn . 2 +155918 8536 should have been a more compelling excuse to pair Susan Sarandon and Goldie Hawn . 1 +155919 8536 should have been a more compelling excuse to pair Susan Sarandon and Goldie Hawn 1 +155920 8536 have been a more compelling excuse to pair Susan Sarandon and Goldie Hawn 2 +155921 8536 been a more compelling excuse to pair Susan Sarandon and Goldie Hawn 3 +155922 8536 a more compelling excuse to pair Susan Sarandon and Goldie Hawn 2 +155923 8536 more compelling excuse to pair Susan Sarandon and Goldie Hawn 1 +155924 8536 excuse to pair Susan Sarandon and Goldie Hawn 2 +155925 8536 to pair Susan Sarandon and Goldie Hawn 2 +155926 8536 pair Susan Sarandon and Goldie Hawn 2 +155927 8536 Susan Sarandon and Goldie Hawn 2 +155928 8536 Susan Sarandon and 2 +155929 8536 Goldie Hawn 3 +155930 8536 Goldie 2 +155931 8537 Definitely in the guilty pleasure B-movie category , Reign of Fire is so incredibly inane that it is laughingly enjoyable . 3 +155932 8537 Definitely in the guilty pleasure B-movie category 3 +155933 8537 in the guilty pleasure B-movie category 2 +155934 8537 the guilty pleasure B-movie category 2 +155935 8537 guilty pleasure B-movie category 2 +155936 8537 pleasure B-movie category 2 +155937 8537 B-movie category 1 +155938 8537 , Reign of Fire is so incredibly inane that it is laughingly enjoyable . 2 +155939 8537 Reign of Fire is so incredibly inane that it is laughingly enjoyable . 3 +155940 8537 is so incredibly inane that it is laughingly enjoyable . 2 +155941 8537 is so incredibly inane that it is laughingly enjoyable 2 +155942 8537 is so incredibly inane 1 +155943 8537 so incredibly inane 0 +155944 8537 incredibly inane 0 +155945 8537 that it is laughingly enjoyable 3 +155946 8537 it is laughingly enjoyable 3 +155947 8537 is laughingly enjoyable 4 +155948 8537 is laughingly 1 +155949 8537 laughingly 3 +155950 8538 It 's an experience in understanding a unique culture that is presented with universal appeal . 3 +155951 8538 's an experience in understanding a unique culture that is presented with universal appeal . 3 +155952 8538 's an experience in understanding a unique culture that is presented with universal appeal 3 +155953 8538 an experience in understanding a unique culture that is presented with universal appeal 3 +155954 8538 in understanding a unique culture that is presented with universal appeal 3 +155955 8538 understanding a unique culture that is presented with universal appeal 3 +155956 8538 a unique culture that is presented with universal appeal 4 +155957 8538 a unique culture 3 +155958 8538 unique culture 3 +155959 8538 that is presented with universal appeal 3 +155960 8538 is presented with universal appeal 3 +155961 8538 presented with universal appeal 3 +155962 8538 with universal appeal 4 +155963 8538 universal appeal 3 +155964 8539 The French director has turned out nearly 21\/2 hours of unfocused , excruciatingly tedious cinema that , half an hour in , starts making water torture seem appealing . 0 +155965 8539 The French director 2 +155966 8539 has turned out nearly 21\/2 hours of unfocused , excruciatingly tedious cinema that , half an hour in , starts making water torture seem appealing . 0 +155967 8539 has turned out nearly 21\/2 hours of unfocused , excruciatingly tedious cinema that , half an hour in , starts making water torture seem appealing 1 +155968 8539 turned out nearly 21\/2 hours of unfocused , excruciatingly tedious cinema that , half an hour in , starts making water torture seem appealing 0 +155969 8539 turned out nearly 21\/2 hours of unfocused , excruciatingly tedious cinema 1 +155970 8539 nearly 21\/2 hours of unfocused , excruciatingly tedious cinema 1 +155971 8539 of unfocused , excruciatingly tedious cinema 0 +155972 8539 unfocused , excruciatingly tedious cinema 0 +155973 8539 unfocused , excruciatingly tedious 1 +155974 8539 , excruciatingly tedious 0 +155975 8539 excruciatingly tedious 1 +155976 8539 that , half an hour in , starts making water torture seem appealing 1 +155977 8539 that , half an hour in , 2 +155978 8539 that , half an hour in 2 +155979 8539 half an hour in 2 +155980 8539 starts making water torture seem appealing 1 +155981 8539 making water torture seem appealing 2 +155982 8539 water torture seem appealing 1 +155983 8539 water torture 1 +155984 8539 seem appealing 3 +155985 8540 ... either you 're willing to go with this claustrophobic concept or you 're not . 2 +155986 8540 either you 're willing to go with this claustrophobic concept or you 're not . 2 +155987 8540 either you 're willing to go with this claustrophobic concept or you 're not 2 +155988 8540 either you 're willing to go with this claustrophobic concept or 2 +155989 8540 either you 're willing to go with this claustrophobic concept 1 +155990 8540 you 're willing to go with this claustrophobic concept 2 +155991 8540 're willing to go with this claustrophobic concept 2 +155992 8540 willing to go with this claustrophobic concept 1 +155993 8540 to go with this claustrophobic concept 1 +155994 8540 go with this claustrophobic concept 1 +155995 8540 with this claustrophobic concept 2 +155996 8540 this claustrophobic concept 1 +155997 8540 claustrophobic concept 1 +155998 8541 Despite these annoyances , the capable Clayburgh and Tambor really do a great job of anchoring the characters in the emotional realities of middle age . 2 +155999 8541 Despite these annoyances 2 +156000 8541 these annoyances 1 +156001 8541 annoyances 2 +156002 8541 , the capable Clayburgh and Tambor really do a great job of anchoring the characters in the emotional realities of middle age . 3 +156003 8541 the capable Clayburgh and Tambor really do a great job of anchoring the characters in the emotional realities of middle age . 3 +156004 8541 the capable Clayburgh and Tambor 2 +156005 8541 the capable Clayburgh and 2 +156006 8541 the capable Clayburgh 3 +156007 8541 capable Clayburgh 1 +156008 8541 really do a great job of anchoring the characters in the emotional realities of middle age . 4 +156009 8541 do a great job of anchoring the characters in the emotional realities of middle age . 3 +156010 8541 do a great job of anchoring the characters in the emotional realities of middle age 3 +156011 8541 a great job of anchoring the characters in the emotional realities of middle age 4 +156012 8541 a great job 3 +156013 8541 great job 3 +156014 8541 of anchoring the characters in the emotional realities of middle age 2 +156015 8541 anchoring the characters in the emotional realities of middle age 3 +156016 8541 anchoring the characters 2 +156017 8541 in the emotional realities of middle age 2 +156018 8541 the emotional realities of middle age 2 +156019 8541 the emotional realities 2 +156020 8541 emotional realities 2 +156021 8541 of middle age 2 +156022 8542 -LRB- Tries -RRB- to parody a genre that 's already a joke in the United States . 1 +156023 8542 -LRB- Tries -RRB- to parody 1 +156024 8542 -LRB- Tries -RRB- 3 +156025 8542 Tries -RRB- 2 +156026 8542 to parody 2 +156027 8542 a genre that 's already a joke in the United States . 1 +156028 8542 a genre that 2 +156029 8542 's already a joke in the United States . 1 +156030 8542 's already a joke in the United States 1 +156031 8542 a joke in the United States 2 +156032 8543 The movie 's downfall is to substitute plot for personality . 1 +156033 8543 The movie 's downfall 1 +156034 8543 is to substitute plot for personality . 1 +156035 8543 is to substitute plot for personality 1 +156036 8543 to substitute plot for personality 2 +156037 8543 substitute plot for personality 1 +156038 8543 substitute plot 2 +156039 8543 for personality 2 +156040 8544 The film is darkly atmospheric , with Herrmann quietly suggesting the sadness and obsession beneath Hearst 's forced avuncular chortles . 2 +156041 8544 is darkly atmospheric , with Herrmann quietly suggesting the sadness and obsession beneath Hearst 's forced avuncular chortles . 2 +156042 8544 is darkly atmospheric , with Herrmann quietly suggesting the sadness and obsession beneath Hearst 's forced avuncular chortles 2 +156043 8544 is darkly atmospheric , 2 +156044 8544 is darkly atmospheric 3 +156045 8544 with Herrmann quietly suggesting the sadness and obsession beneath Hearst 's forced avuncular chortles 2 +156046 8544 Herrmann quietly suggesting the sadness and obsession beneath Hearst 's forced avuncular chortles 2 +156047 8544 Herrmann 2 +156048 8544 quietly suggesting the sadness and obsession beneath Hearst 's forced avuncular chortles 1 +156049 8544 suggesting the sadness and obsession beneath Hearst 's forced avuncular chortles 2 +156050 8544 suggesting the sadness and obsession 2 +156051 8544 the sadness and obsession 2 +156052 8544 sadness and obsession 1 +156053 8544 sadness and 1 +156054 8544 beneath Hearst 's forced avuncular chortles 2 +156055 8544 Hearst 's forced avuncular chortles 2 +156056 8544 Hearst 's 2 +156057 8544 forced avuncular chortles 1 +156058 8544 avuncular chortles 3 +156059 8544 avuncular 2 +156060 8544 chortles 2